From a766f08738c635a853fd6afb09125bc0ff53e048 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Tue, 28 Jul 2026 16:37:08 -0400 Subject: [PATCH] v2.1.23 - Caching service: descriptive error reporting, retry limit, inbox poller fix, config reload fix, PHP admin page --- .gitmodules | 3 - Dockerfile.alpine-musl | 5 +- admin/README.md | 133 +++ admin/api/status.php | 69 ++ admin/assets/style.css | 419 ++++++++ admin/config-edit.php | 99 ++ admin/follows.php | 153 +++ admin/inbox.php | 111 ++ admin/index.php | 158 +++ admin/lib/config.php | 27 + admin/lib/db.php | 44 + admin/lib/helpers.php | 191 ++++ admin/relays.php | 132 +++ api/index.html | 26 +- api/index.js | 247 ++++- caching/Makefile | 2 +- caching/build_static.sh | 5 +- caching/src/backfill.c | 599 ++++++----- caching/src/backfill.h | 73 +- caching/src/config.c | 31 +- caching/src/config.h | 14 +- caching/src/live_subscriber.c | 22 +- caching/src/live_subscriber.h | 1 + caching/src/main.c | 202 +++- caching/src/pg_config.c | 28 +- caching/src/pg_inbox.c | 992 ++++++++++++++---- caching/src/pg_inbox.h | 120 ++- deploy_lt.sh | 37 + examples/deployment/nginx-proxy/nginx.conf | 28 + make_and_restart_relay.sh | 28 +- nostr_core_lib | 1 - plans/backfill_redesign_plan.md | 368 +++++++ plans/backfill_relay_by_relay_plan.md | 307 ++++++ ...aching_error_reporting_retry_limit_plan.md | 338 ++++++ plans/caching_follows_status_plan.md | 275 +++++ plans/php_admin_page_plan.md | 305 ++++++ relay.pid | 2 +- src/api.c | 50 +- src/caching_inbox_poller.c | 2 +- src/config.c | 198 +++- src/db_ops.c | 25 + src/db_ops.h | 15 + src/db_ops_postgres.c | 172 +++ src/db_ops_postgres.h | 5 + src/default_config_event.h | 4 +- src/embedded_web_content.c | 8 +- src/main.c | 49 +- src/main.h | 4 +- src/pg_schema.h | 42 + src/pg_schema.sql | 42 + src/websockets.h | 5 +- tests/test_ws_client | Bin 0 -> 287048 bytes tests/test_ws_client.c | 181 ++++ tests/test_ws_client_makefile | 40 + tests/test_ws_raw | Bin 0 -> 67352 bytes tests/test_ws_raw.c | 142 +++ 56 files changed, 5900 insertions(+), 679 deletions(-) create mode 100644 admin/README.md create mode 100644 admin/api/status.php create mode 100644 admin/assets/style.css create mode 100644 admin/config-edit.php create mode 100644 admin/follows.php create mode 100644 admin/inbox.php create mode 100644 admin/index.php create mode 100644 admin/lib/config.php create mode 100644 admin/lib/db.php create mode 100644 admin/lib/helpers.php create mode 100644 admin/relays.php delete mode 160000 nostr_core_lib create mode 100644 plans/backfill_redesign_plan.md create mode 100644 plans/backfill_relay_by_relay_plan.md create mode 100644 plans/caching_error_reporting_retry_limit_plan.md create mode 100644 plans/caching_follows_status_plan.md create mode 100644 plans/php_admin_page_plan.md create mode 100755 tests/test_ws_client create mode 100644 tests/test_ws_client.c create mode 100644 tests/test_ws_client_makefile create mode 100755 tests/test_ws_raw create mode 100644 tests/test_ws_raw.c diff --git a/.gitmodules b/.gitmodules index 0ec9ded..0784b79 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "nostr_core_lib"] - path = nostr_core_lib - url = https://git.laantungir.net/laantungir/nostr_core_lib.git [submodule "c_utils_lib"] path = c_utils_lib url = ssh://git@git.laantungir.net:2222/laantungir/c_utils_lib.git diff --git a/Dockerfile.alpine-musl b/Dockerfile.alpine-musl index b63d820..a6ed571 100644 --- a/Dockerfile.alpine-musl +++ b/Dockerfile.alpine-musl @@ -91,12 +91,13 @@ RUN cd c_utils_lib && \ # Build nostr_core_lib with required NIPs (cached unless nostr_core_lib changes) # Disable fortification in build.sh to prevent __*_chk symbol issues -# NIPs: 001(Basic), 006(Keys), 013(PoW), 017(DMs), 019(Bech32), 044(Encryption), 059(Gift Wrap - required by NIP-17) +# NIPs: 001(Basic), 004(Encryption), 006(Keys), 013(PoW), 017(DMs), 019(Bech32), 044(Encryption), 059(Gift Wrap - required by NIP-17) +# NIP-04 is required by nostr_signer.c (NIP-46 bunker signer uses NIP-04 encryption) RUN cd nostr_core_lib && \ chmod +x build.sh && \ sed -i 's/CFLAGS="-Wall -Wextra -std=c99 -fPIC -O2"/CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 -Wall -Wextra -std=c99 -fPIC -O2"/' build.sh && \ rm -f *.o *.a 2>/dev/null || true && \ - ./build.sh --nips=1,6,13,17,19,44,59 + ./build.sh --nips=1,4,6,13,17,19,44,59 # Copy c-relay-pg source files LAST (only this layer rebuilds on source changes) COPY src/ /build/src/ diff --git a/admin/README.md b/admin/README.md new file mode 100644 index 0000000..bb2c76b --- /dev/null +++ b/admin/README.md @@ -0,0 +1,133 @@ +# C-Relay-PG PHP Admin Page + +A traditional PHP admin interface for the caching service that connects +directly to PostgreSQL, bypassing the NIP-44 64KB encryption limit of the +Nostr admin API. Handles thousands of followed pubkeys via server-side +pagination. + +## Quick Start + +### 1. Install PHP + PHP-FPM + PostgreSQL extension + +```bash +# Debian/Ubuntu +sudo apt install php-fpm php-pgsql + +# RHEL/Fedora/Alma +sudo dnf install php-fpm php-pgsql +``` + +### 2. Copy admin files to the server + +```bash +sudo mkdir -p /opt/c-relay-pg/admin +sudo cp -r admin/* /opt/c-relay-pg/admin/ +``` + +### 3. Configure database credentials + +Edit `/opt/c-relay-pg/admin/lib/config.php` and set the PostgreSQL +connection parameters to match your relay's `--db-*` flags: + +```php +return [ + 'db_host' => 'localhost', + 'db_port' => '5432', + 'db_name' => 'crelay', + 'db_user' => 'crelay', + 'db_password' => 'crelay', + // ... +]; +``` + +### 4. Set up HTTP Basic Auth + +```bash +sudo htpasswd -c /opt/c-relay-pg/admin/.htpasswd admin +# Enter a password when prompted +``` + +### 5. Add nginx location block + +Add this to your existing nginx server block (the one that proxies to +the relay on port 8888): + +```nginx +# PHP admin page for caching service +location /admin/ { + alias /opt/c-relay-pg/admin/; + index index.php; + + auth_basic "Relay Admin"; + auth_basic_user_file /opt/c-relay-pg/admin/.htpasswd; + + location ~ \.php$ { + fastcgi_pass unix:/run/php/php-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $request_filename; + } + + # Deny access to the lib/ directory (contains DB credentials) + location ^~ /admin/lib/ { + deny all; + } +} +``` + +> **Note:** The `fastcgi_pass` socket path varies by distro: +> - Debian/Ubuntu: `unix:/run/php/php8.2-fpm.sock` +> - RHEL/Fedora: `unix:/run/php-fpm/www.sock` +> +> Check with: `ls /run/php/` or `ls /run/php-fpm/` + +### 6. Reload nginx + +```bash +sudo nginx -t && sudo systemctl reload nginx +``` + +### 7. Visit the admin page + +``` +https://relay.yourdomain.com/admin/ +``` + +Enter the HTTP Basic Auth credentials you set in step 4. + +## Pages + +| Page | URL | Description | +|------|-----|-------------| +| Dashboard | `/admin/` | Service state, backfill progress, error summary, active target | +| Follows | `/admin/follows.php` | Paginated followed-pubkey table with names, event counts, relay status | +| Relays | `/admin/relays.php` | Per (author, relay) backfill progress with descriptive error statuses | +| Config | `/admin/config-edit.php` | Read/edit caching config values; bumps config generation on save | +| Inbox | `/admin/inbox.php` | Queue depth monitor for `caching_event_inbox` | + +## Security + +- **HTTP Basic Auth** protects all pages (nginx `auth_basic`) +- **`lib/` directory denied** via nginx (contains DB credentials) +- **PDO prepared statements** everywhere (no SQL injection) +- **HTTPS** via existing nginx SSL config +- **No CORS needed** — same origin as the relay + +## How It Works + +The PHP pages query PostgreSQL directly using PDO with the same +`crelay` database user the relay uses. The dashboard auto-refreshes +every 10 seconds via AJAX polling of `api/status.php`. Paginated tables +(follows, relays) use server-side pagination with `LIMIT`/`OFFSET`. + +The config editor writes to the `config` table and bumps +`caching_config_generation`, which the caching service detects and +hot-reloads — no relay restart needed. + +## Upgrading to Real-Time (Future) + +If you later need true push updates (sub-second), you can add a small +Node.js WebSocket server alongside the PHP pages that uses PostgreSQL +`LISTEN/NOTIFY` to push updates to connected browsers. The PHP pages +and JSON endpoints are reusable — the WebSocket server would just +replace the polling `fetch()` calls in the JavaScript. diff --git a/admin/api/status.php b/admin/api/status.php new file mode 100644 index 0000000..897df67 --- /dev/null +++ b/admin/api/status.php @@ -0,0 +1,69 @@ +query("SELECT * FROM caching_service_state WHERE id = 1")->fetch(); + +// Active backfill target (table may not exist yet on fresh start) +$active = ['active_pubkey' => '', 'active_relay' => '']; +try { + $active = $pdo->query("SELECT active_pubkey, active_relay FROM caching_backfill_active WHERE id = 1")->fetch() ?: $active; +} catch (PDOException $e) { /* table doesn't exist yet */ } + +// Error relay summary (consecutive_errors column may not exist yet on fresh start) +$error_stats = ['auto_completed' => 0, 'error_count' => 0, 'timeout_count' => 0]; +try { + $error_stats = $pdo->query(" + SELECT + COUNT(*) FILTER (WHERE consecutive_errors >= 3) AS auto_completed, + COUNT(*) FILTER (WHERE last_status LIKE 'error%') AS error_count, + COUNT(*) FILTER (WHERE last_status = 'timeout') AS timeout_count + FROM caching_backfill_relay_progress + ")->fetch() ?: $error_stats; +} catch (PDOException $e) { /* column/table doesn't exist yet */ } + +// Inbox stats +$inbox = $pdo->query(" + SELECT + COUNT(*) AS pending, + COUNT(*) FILTER (WHERE source_class = 'live') AS live, + COUNT(*) FILTER (WHERE source_class = 'backfill') AS backfill + FROM caching_event_inbox +")->fetch(); + +// Event count +$events = $pdo->query("SELECT COUNT(*) AS total FROM events")->fetch(); + +// Heartbeat age +$hb_age = intval($state['heartbeat_at'] ?? 0); +$hb_ago = $hb_age > 0 ? time() - $hb_age : 0; + +json_response([ + 'service_state' => $state['service_state'] ?? 'unknown', + 'heartbeat_ago' => $hb_ago > 0 ? $hb_ago . 's ago' : 'never', + 'config_generation' => intval($state['config_generation'] ?? 0), + 'followed_count' => intval($state['followed_author_count'] ?? 0), + 'selected_relays' => intval($state['selected_relay_count'] ?? 0), + 'connected_relays' => intval($state['connected_relay_count'] ?? 0), + 'bf_complete' => intval($state['backfill_authors_complete'] ?? 0), + 'bf_total' => intval($state['backfill_authors_total'] ?? 0), + 'events_fetched' => intval($state['events_fetched'] ?? 0), + 'inbox_inserts' => intval($state['inbox_inserts'] ?? 0), + 'db_events' => intval($events['total'] ?? 0), + 'inbox_pending' => intval($inbox['pending'] ?? 0), + 'inbox_live' => intval($inbox['live'] ?? 0), + 'inbox_backfill' => intval($inbox['backfill'] ?? 0), + 'error_count' => intval($error_stats['error_count'] ?? 0), + 'timeout_count' => intval($error_stats['timeout_count'] ?? 0), + 'auto_completed' => intval($error_stats['auto_completed'] ?? 0), + 'active_pubkey' => $active['active_pubkey'] ?? '', + 'active_relay' => $active['active_relay'] ?? '', +]); diff --git a/admin/assets/style.css b/admin/assets/style.css new file mode 100644 index 0000000..37e5bda --- /dev/null +++ b/admin/assets/style.css @@ -0,0 +1,419 @@ +/* + * C-Relay-PG Admin — PHP caching service admin pages. + * Styled to match the original api/index.css Nostr admin interface. + * Courier New monospace, black/white/red color scheme, dark mode by default. + */ + +:root { + /* Core Variables — matches api/index.css light mode (default) */ + --primary-color: #000000; + --secondary-color: #ffffff; + --accent-color: #ff0000; + --muted-color: #dddddd; + --border-color: var(--muted-color); + --font-family: "Courier New", Courier, monospace; + --border-radius: 5px; + --border-width: 1px; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: var(--font-family); + background-color: var(--secondary-color); + color: var(--primary-color); + padding: 0; + max-width: 1200px; + margin: 0 auto; +} + +a { + color: var(--primary-color); + text-decoration: none; +} +a:hover { color: var(--accent-color); } + +/* ================================ + SIDE NAVIGATION (matches original) + ================================ */ +.side-nav { + position: fixed; + top: 0; + left: -300px; + width: 280px; + height: 100vh; + background: var(--secondary-color); + border-right: var(--border-width) solid var(--border-color); + z-index: 1000; + transition: left 0.3s ease; + overflow-y: auto; + padding-top: 80px; +} +.side-nav.open { left: 0; } + +.side-nav-overlay { + position: fixed; + top: 0; left: 0; width: 100%; height: 100%; + background: rgba(0, 0, 0, 0.5); + z-index: 999; + display: none; +} +.side-nav-overlay.show { display: block; } + +.nav-menu { list-style: none; padding: 0; margin: 0; } +.nav-menu li { border-bottom: var(--border-width) solid var(--muted-color); } +.nav-menu li:last-child { border-bottom: none; } + +.nav-item { + display: block; + padding: 15px 20px; + color: var(--primary-color); + text-decoration: none; + font-family: var(--font-family); + font-size: 16px; + font-weight: bold; + transition: all 0.2s ease; + cursor: pointer; + border: 2px solid var(--secondary-color); + background: none; + width: 100%; + text-align: left; +} +.nav-item:hover { + background: var(--muted-color); + color: var(--accent-color); +} +.nav-item.active { + text-decoration: underline; + padding-left: 16px; +} + +.nav-footer { + position: absolute; + bottom: 20px; left: 0; right: 0; + padding: 0 20px; +} +.nav-footer-btn { + display: block; + width: 100%; + padding: 12px 20px; + margin-bottom: 8px; + color: var(--primary-color); + border: 1px solid var(--border-color); + border-radius: 4px; + font-family: var(--font-family); + font-size: 14px; + font-weight: bold; + cursor: pointer; + transition: all 0.2s ease; + background: none; +} +.nav-footer-btn:hover { + background: var(--muted-color); + border-color: var(--accent-color); +} + +/* ================================ + HEADER (matches original) + ================================ */ +.main-header { + background-color: var(--secondary-color); + padding: 15px 20px; + z-index: 100; + max-width: 1200px; + margin: 0 auto; +} +.header-content { + display: flex; + justify-content: space-between; + align-items: center; + position: relative; +} +.header-title { + margin: 0; + font-size: 24px; + font-weight: bolder; + color: var(--primary-color); + cursor: pointer; + transition: all 0.2s ease; +} +.header-title:hover { opacity: 0.8; } +.header-title .relay-letter { display: inline-block; } + +.menu-btn { + background: none; + border: var(--border-width) solid var(--border-color); + border-radius: var(--border-radius); + color: var(--primary-color); + font-family: var(--font-family); + font-size: 20px; + padding: 5px 12px; + cursor: pointer; + width: auto; + margin: 0; +} +.menu-btn:hover { border-color: var(--accent-color); } + +/* ================================ + SECTIONS (matches original) + ================================ */ +.section { + background: var(--secondary-color); + border: var(--border-width) solid var(--border-color); + border-radius: var(--border-radius); + padding: 20px; + margin-bottom: 20px; + margin-left: 5px; + margin-right: 5px; +} +.section-header { + display: flex; + justify-content: center; + align-items: center; + padding-bottom: 15px; + font-size: 16px; + font-weight: normal; + font-family: var(--font-family); + color: var(--primary-color); +} + +/* ================================ + TABLES (matches .config-table) + ================================ */ +.config-table { + border: 1px solid var(--border-color); + border-radius: var(--border-radius); + width: 100%; + border-collapse: separate; + border-spacing: 0; + margin: 10px 0; + overflow: hidden; +} +.config-table th, +.config-table td { + border: 0.1px solid var(--muted-color); + padding: 4px 8px; + text-align: left; + font-family: var(--font-family); + font-size: 10px; +} +.config-table th { + font-weight: bold; + height: 24px; + line-height: 24px; +} +.config-table tbody tr:hover { + background-color: rgba(0, 0, 0, 0.05); +} +.config-table-container { + overflow-x: auto; + max-width: 100%; +} + +/* ================================ + INPUTS / BUTTONS (matches original) + ================================ */ +input, textarea, select { + width: 100%; + padding: 8px; + background: var(--secondary-color); + color: var(--primary-color); + border: var(--border-width) solid var(--border-color); + border-radius: var(--border-radius); + font-family: var(--font-family); + font-size: 14px; + box-sizing: border-box; + transition: all 0.2s ease; +} +input:focus, textarea:focus, select:focus { + border-color: var(--accent-color); + outline: none; +} + +button { + width: 100%; + padding: 8px; + background: var(--secondary-color); + color: var(--primary-color); + border: var(--border-width) solid var(--border-color); + border-radius: var(--border-radius); + font-family: var(--font-family); + font-size: 14px; + cursor: pointer; + margin: 5px 0; + font-weight: bold; + transition: all 0.2s ease; +} +button:hover { border-color: var(--accent-color); } +button:active { + background: var(--accent-color); + color: var(--secondary-color); +} + +/* ================================ + STAT CARDS (dashboard) + ================================ */ +.cards { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); + gap: 10px; + margin-bottom: 20px; +} +.card { + background: var(--secondary-color); + border: var(--border-width) solid var(--border-color); + border-radius: var(--border-radius); + padding: 12px; +} +.card .label { + color: var(--muted-color); + font-size: 10px; + text-transform: uppercase; + letter-spacing: 0.5px; +} +.card .value { + font-size: 20px; + font-weight: bold; + margin-top: 4px; +} +.card .sub { + color: var(--muted-color); + font-size: 10px; + margin-top: 4px; +} + +/* ================================ + STATUS BADGES + ================================ */ +.badge { + display: inline-block; + padding: 2px 6px; + border-radius: 3px; + font-size: 10px; + font-weight: bold; + border: var(--border-width) solid var(--border-color); +} +.badge-success { border-color: #4caf50; color: #4caf50; } +.badge-error { border-color: var(--accent-color); color: var(--accent-color); } +.badge-warning { border-color: #ff9800; color: #ff9800; } +.badge-muted { border-color: var(--muted-color); color: var(--muted-color); } + +/* ================================ + STATUS INDICATORS + ================================ */ +.status-working { color: var(--accent-color); } +.status-complete { color: #4caf50; } +.status-error { color: var(--accent-color); } + +/* ================================ + PAGINATION + ================================ */ +.pagination { + display: flex; + justify-content: space-between; + align-items: center; + padding: 12px 0; + gap: 16px; +} +.pagination a { + padding: 6px 14px; + background: var(--secondary-color); + border: var(--border-width) solid var(--border-color); + border-radius: var(--border-radius); + color: var(--primary-color); + font-size: 14px; + width: auto; +} +.pagination a:hover { + border-color: var(--accent-color); + color: var(--accent-color); + text-decoration: none; +} +.pagination span { color: var(--muted-color); font-size: 12px; } + +/* ================================ + FILTERS BAR + ================================ */ +.filters { + display: flex; + gap: 10px; + margin-bottom: 16px; + flex-wrap: wrap; + align-items: center; +} +.filters select, .filters input { + width: auto; + min-width: 120px; +} +.filters input[type="text"] { min-width: 250px; } +.filters button { + width: auto; + margin: 0; + min-width: 80px; +} + +/* ================================ + CONFIG EDITOR FORM + ================================ */ +.config-form .row { + display: grid; + grid-template-columns: 250px 1fr; + gap: 12px; + padding: 12px 0; + border-bottom: 0.1px solid var(--muted-color); + align-items: start; +} +.config-form .row label { + font-weight: bold; + color: var(--primary-color); + font-size: 12px; +} +.config-form .row .hint { + color: var(--muted-color); + font-size: 10px; + margin-top: 4px; +} +.config-form button { + width: auto; + margin-top: 16px; + padding: 10px 24px; +} + +/* ================================ + MISC + ================================ */ +.pubkey { + font-family: var(--font-family); + font-size: 10px; + color: var(--muted-color); +} +.npub-link { + font-family: var(--font-family); + font-size: 10px; + color: var(--primary-color); + text-decoration: none; +} +.npub-link:hover { color: var(--accent-color); } + +h2 { + font-weight: normal; + text-align: center; + font-size: 16px; + font-family: var(--font-family); + color: var(--primary-color); + margin-bottom: 16px; +} + +/* ================================ + RESPONSIVE + ================================ */ +@media (max-width: 768px) { + .cards { grid-template-columns: 1fr 1fr; } + .config-form .row { grid-template-columns: 1fr; } + .filters { flex-direction: column; align-items: stretch; } + .filters select, .filters input, .filters button { width: 100%; } +} diff --git a/admin/config-edit.php b/admin/config-edit.php new file mode 100644 index 0000000..66acc7e --- /dev/null +++ b/admin/config-edit.php @@ -0,0 +1,99 @@ +beginTransaction(); + foreach ($fields as $key) { + $val = $_POST[$key] ?? null; + if ($val === null) continue; + $pdo->prepare("UPDATE config SET value = ? WHERE key = ?")->execute([$val, $key]); + } + $gen = $pdo->query("SELECT value FROM config WHERE key = 'caching_config_generation'")->fetchColumn(); + $new_gen = intval($gen) + 1; + $pdo->prepare("UPDATE config SET value = ? WHERE key = 'caching_config_generation'")->execute([$new_gen]); + $pdo->commit(); + $message = "Configuration saved. Config generation bumped to $new_gen. The caching service will reload automatically."; + } catch (Exception $e) { + $pdo->rollBack(); + $error = 'Failed to save: ' . $e->getMessage(); + } +} + +$config_keys = [ + 'caching_root_npubs' => 'Root npubs (comma-separated npub... values)', + 'caching_bootstrap_relays' => 'Bootstrap relays (comma-separated wss://... URLs)', + 'caching_kinds' => 'Kinds to cache (comma-separated integers)', + 'caching_admin_kinds' => 'Admin kinds (* for all, or comma-separated)', + 'caching_live_enabled' => 'Live subscription enabled (true/false)', + 'caching_backfill_enabled' => 'Backfill enabled (true/false)', + 'caching_backfill_page_size' => 'Backfill page size (events per tick)', + 'caching_backfill_tick_interval_ms' => 'Backfill tick interval (ms)', + 'caching_follow_graph_refresh_seconds' => 'Follow graph refresh interval (seconds)', + 'caching_relay_discovery_refresh_seconds' => 'Relay discovery refresh (seconds)', + 'caching_max_followed_pubkeys' => 'Max followed pubkeys', + 'caching_max_upstream_relays' => 'Max upstream relays', + 'caching_max_relays_per_pubkey' => 'Max relays per pubkey', + 'caching_query_timeout_ms' => 'Query timeout (ms)', + 'caching_live_resubscribe_seconds' => 'Live resubscribe interval (seconds)', +]; + +$values = []; +foreach (array_keys($config_keys) as $key) { + $stmt = $pdo->prepare("SELECT value FROM config WHERE key = ?"); + $stmt->execute([$key]); + $values[$key] = $stmt->fetchColumn() ?: ''; +} + +admin_header('config', 'C-Relay-PG Admin — Config'); +?> + +
+
CACHING CONFIGURATION
+ + +

+ + +

+ + +
+ $label): ?> +
+
+ +
+
+
+ +
+
+ + +
+ +

+ Saving bumps caching_config_generation so the caching service + detects the change and hot-reloads. No relay restart needed. +

+
+ + diff --git a/admin/follows.php b/admin/follows.php new file mode 100644 index 0000000..3c6e390 --- /dev/null +++ b/admin/follows.php @@ -0,0 +1,153 @@ +>\'name\' ILIKE ? OR e.content::json->>\'display_name\' ILIKE ?)'; + $params[] = "%$search%"; $params[] = "%$search%"; $params[] = "%$search%"; +} +$where_sql = $where ? 'WHERE ' . implode(' AND ', $where) : ''; + +$sort_map = [ + 'events' => 'fp.events_fetched DESC', + 'name' => "COALESCE(e.content::json->>'display_name', e.content::json->>'name') ASC NULLS LAST", + 'recent' => 'fp.last_seen DESC', + 'complete' => 'fp.backfill_complete ASC, fp.events_fetched DESC', +]; +$sort_sql = $sort_map[$sort] ?? $sort_map['events']; + +$stmt = $pdo->prepare("SELECT COUNT(*) FROM caching_followed_pubkeys fp LEFT JOIN LATERAL (SELECT content FROM events WHERE pubkey = fp.pubkey AND kind = 0 ORDER BY created_at DESC LIMIT 1) e ON true $where_sql"); +$stmt->execute($params); +$total = intval($stmt->fetchColumn()); + +$sql = " + SELECT fp.pubkey, fp.is_root, fp.backfill_complete, fp.events_fetched, + fp.first_seen, fp.last_seen, + e.content::json->>'name' AS name, + e.content::json->>'display_name' AS display_name, + e.content::json->>'picture' AS picture, + e.content::json->>'nip05' AS nip05, + (SELECT COUNT(*) FROM events WHERE pubkey = fp.pubkey) AS total_events + FROM caching_followed_pubkeys fp + LEFT JOIN LATERAL (SELECT content FROM events WHERE pubkey = fp.pubkey AND kind = 0 ORDER BY created_at DESC LIMIT 1) e ON true + $where_sql + ORDER BY $sort_sql + LIMIT $per OFFSET $offset +"; +$stmt = $pdo->prepare($sql); +$stmt->execute($params); +$follows = $stmt->fetchAll(); + +admin_header('follows', 'C-Relay-PG Admin — Follows'); +?> + +
+
FOLLOWED PUBKEYS ( total)
+ +
+ + + + + + Clear + +
+ +
+ + + + + + + + + + + + + + 0, 'incomplete' => 0, 'errors' => 0]; + try { + $relay_count = $pdo->prepare("SELECT COUNT(*) AS total, COUNT(*) FILTER (WHERE complete = false) AS incomplete, COUNT(*) FILTER (WHERE last_status LIKE 'error%') AS errors FROM caching_backfill_relay_progress WHERE author_pubkey = ?"); + $relay_count->execute([$f['pubkey']]); + $rc = $relay_count->fetch() ?: $rc; + } catch (PDOException $ex) {} + ?> + + + + + + + + + + + + + + +
NamenpubRoot?Events in DBBackfillLast SeenRelays
+ + + +
+ + + unknown + +
root' : '' ?>✓ complete' + : 'in progress' ?> + 0): ?> + relays ( incomplete + 0): ?> + , errors + ) +
View relay details → + + + +
No followed pubkeys found.
+
+ + +
+ + diff --git a/admin/inbox.php b/admin/inbox.php new file mode 100644 index 0000000..901a617 --- /dev/null +++ b/admin/inbox.php @@ -0,0 +1,111 @@ +query(" + SELECT + COUNT(*) AS pending, + COUNT(*) FILTER (WHERE source_class = 'live') AS live, + COUNT(*) FILTER (WHERE source_class = 'backfill') AS backfill, + COUNT(*) FILTER (WHERE source_class = 'discovery') AS discovery, + COUNT(*) FILTER (WHERE priority = 0) AS high_priority, + COALESCE(EXTRACT(EPOCH FROM NOW())::BIGINT - MIN(received_at), 0) AS oldest_age + FROM caching_event_inbox +")->fetch() ?: ['pending' => 0, 'live' => 0, 'backfill' => 0, 'discovery' => 0, 'high_priority' => 0, 'oldest_age' => 0]; + +$recent = $pdo->query(" + SELECT event_id, event_json->>'pubkey' AS pubkey, event_json->>'kind' AS kind, + source_relay, source_class, priority, received_at + FROM caching_event_inbox + ORDER BY received_at DESC + LIMIT 20 +")->fetchAll(); + +admin_header('inbox', 'C-Relay-PG Admin — Inbox'); +?> + +
+
INBOX QUEUE MONITOR
+ +
+
+
Pending Events
+
+
live, backfill, discovery
+
+
+
High Priority
+
+
priority = 0 (live events)
+
+
+
Oldest Pending
+
s
+
age of oldest event in queue
+
+
+ + 300): ?> +

+ ⚠ Oldest pending event is s old — the inbox poller may not be keeping up. + Check that caching_inbox_enabled = true in the config table and the relay is running. +

+ +
+ +
+
RECENT EVENTS IN QUEUE (last 20)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Event IDPubkeyKindSource RelayClassPriorityReceived
Inbox is empty — all events have been dequeued.
+
+
+ + + + diff --git a/admin/index.php b/admin/index.php new file mode 100644 index 0000000..29a6715 --- /dev/null +++ b/admin/index.php @@ -0,0 +1,158 @@ +query("SELECT * FROM caching_service_state WHERE id = 1")->fetch() ?: []; + +// Active backfill target (table may not exist yet on fresh start) +$active = ['active_pubkey' => '', 'active_relay' => '']; +try { + $active = $pdo->query("SELECT active_pubkey, active_relay FROM caching_backfill_active WHERE id = 1")->fetch() ?: $active; +} catch (PDOException $e) {} + +// Error relay summary +$error_stats = ['auto_completed' => 0, 'error_count' => 0, 'timeout_count' => 0, 'incomplete' => 0, 'total' => 0]; +try { + $error_stats = $pdo->query(" + SELECT + COUNT(*) FILTER (WHERE consecutive_errors >= 3) AS auto_completed, + COUNT(*) FILTER (WHERE last_status LIKE 'error%') AS error_count, + COUNT(*) FILTER (WHERE last_status = 'timeout') AS timeout_count, + COUNT(*) FILTER (WHERE complete = false) AS incomplete, + COUNT(*) AS total + FROM caching_backfill_relay_progress + ")->fetch() ?: $error_stats; +} catch (PDOException $e) {} + +// Inbox stats +$inbox = $pdo->query(" + SELECT + COUNT(*) AS pending, + COUNT(*) FILTER (WHERE source_class = 'live') AS live, + COUNT(*) FILTER (WHERE source_class = 'backfill') AS backfill, + COALESCE(EXTRACT(EPOCH FROM NOW())::BIGINT - MIN(received_at), 0) AS oldest_age + FROM caching_event_inbox +")->fetch() ?: ['pending' => 0, 'live' => 0, 'backfill' => 0, 'oldest_age' => 0]; + +// Event counts +$event_stats = $pdo->query("SELECT COUNT(*) AS total, COUNT(DISTINCT pubkey) AS authors FROM events")->fetch() ?: ['total' => 0, 'authors' => 0]; +$kind_stats = $pdo->query("SELECT kind, COUNT(*) AS cnt FROM events GROUP BY kind ORDER BY cnt DESC LIMIT 10")->fetchAll(); + +admin_header('dashboard', 'C-Relay-PG Admin — Dashboard'); +?> + +
+
CACHING SERVICE STATUS
+
+
+
Service State
+
+
Heartbeat:
+
+
+
Followed Authors
+
+
relays, connected
+
+
+
Backfill Progress
+
/
+
0 ? round(intval($state['backfill_authors_complete'] ?? 0) / intval($state['backfill_authors_total']) * 100) : 0 ?>% complete
+
+
+
Events Fetched
+
+
inbox inserts
+
+
+
Events in DB
+
+
authors
+
+
+
Inbox Pending
+
+
live, backfill
+
+
+
Error Relays
+
+
auto-completed
+
+
+
Config Generation
+
+
Updated
+
+
+
+ +
+
ACTIVE BACKFILL TARGET
+
+ +

⚡ Working on: @

+ +

✓ Caching complete — no active backfill target

+ +
+
+ +
+
TOP EVENT KINDS
+
+ + + + + + + +
KindCount
+
+
+ + + diff --git a/admin/lib/config.php b/admin/lib/config.php new file mode 100644 index 0000000..86cfab6 --- /dev/null +++ b/admin/lib/config.php @@ -0,0 +1,27 @@ + 'localhost', + 'db_port' => '5432', + 'db_name' => 'crelay', + 'db_user' => 'crelay', + 'db_password' => 'crelay', + + // Page sizes for paginated tables. + 'follows_per_page' => 50, + 'relays_per_page' => 50, + + // Auto-refresh interval for dashboard polling (milliseconds). + 'refresh_ms' => 10000, +]; diff --git a/admin/lib/db.php b/admin/lib/db.php new file mode 100644 index 0000000..8c6de96 --- /dev/null +++ b/admin/lib/db.php @@ -0,0 +1,44 @@ + PDO::ERRMODE_EXCEPTION, + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, + PDO::ATTR_EMULATE_PREPARES => false, + ]); + } catch (PDOException $e) { + http_response_code(500); + die('Database connection failed: ' . htmlspecialchars($e->getMessage())); + } + } + return $pdo; +} + +/** Get a config value from the admin config file. */ +function cfg(string $key, $default = null) { + static $cfg = null; + if ($cfg === null) { + $cfg = require __DIR__ . '/config.php'; + } + return $cfg[$key] ?? $default; +} diff --git a/admin/lib/helpers.php b/admin/lib/helpers.php new file mode 100644 index 0000000..032366c --- /dev/null +++ b/admin/lib/helpers.php @@ -0,0 +1,191 @@ += 5) { + $conv[] = ($buffer >> ($bits - 5)) & 31; + $bits -= 5; + } + } + if ($bits > 0) { + $conv[] = ($buffer << (5 - $bits)) & 31; + } + + // Compute checksum — HRP values are positions of each char in the charset. + $values = array_merge( + array_map(function($c) { + return strpos('qpzry9x8gf2tvdw0s3jn54khce6mua7l', $c); + }, str_split('npub')), + $conv + ); + $gen = [0x3b6a57b2, 0x26508e6d, 0x1ea119fa, 0x3d4233dd, 0x2a1462b3]; + $chk = 1; + foreach ($values as $v) { + $top = $chk >> 25; + $chk = (($chk & 0x1ffffff) << 5) ^ $v; + for ($i = 0; $i < 5; $i++) { + if (($top >> $i) & 1) $chk ^= $gen[$i]; + } + } + $chk ^= 1; + $checksum = []; + for ($i = 0; $i < 6; $i++) { + $checksum[] = ($chk >> (5 * (5 - $i))) & 31; + } + + $result = 'npub1'; + foreach (array_merge($conv, $checksum) as $v) { + $result .= $charset[$v]; + } + return $result; +} + +/** Truncate a string to $len chars with ellipsis. */ +function trunc(string $s, int $len = 16): string { + if (strlen($s) <= $len) return $s; + return substr($s, 0, $len) . '…'; +} + +/** Build pagination links HTML. */ +function pagination(int $page, int $per_page, int $total, string $base_url): string { + $total_pages = max(1, ceil($total / $per_page)); + if ($total_pages <= 1) return ''; + + $html = ''; + return $html; +} + +/** Get the current page number from the query string. */ +function current_page(): int { + $p = intval($_GET['page'] ?? 1); + return max(1, $p); +} + +/** JSON response helper for AJAX endpoints. */ +function json_response($data): void { + header('Content-Type: application/json'); + echo json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); + exit; +} + +/** Get a query parameter with a default. */ +function query_param(string $key, $default = null) { + return $_GET[$key] ?? $default; +} + +/** + * Render the shared HTML header with side navigation. + * Pass the active page name to highlight the current nav item. + */ +function admin_header(string $active = '', string $title = 'C-Relay-PG Admin'): void { + $pages = [ + 'dashboard' => ['index.php', 'Dashboard'], + 'follows' => ['follows.php', 'Follows'], + 'relays' => ['relays.php', 'Relays'], + 'config' => ['config-edit.php', 'Config'], + 'inbox' => ['inbox.php', 'Inbox'], + ]; +?> + + + + + + <?= e($title) ?> + + + + + +
+ + +
+
+ +
+ RELAY +
+
+
+
+ + + + + +prepare("SELECT COUNT(*) FROM caching_backfill_relay_progress rp $where_sql"); + $stmt->execute($params); + $total = intval($stmt->fetchColumn()); + + $sql = " + SELECT rp.author_pubkey, rp.relay_url, rp.until_cursor, rp.complete, + rp.events_fetched, + COALESCE(rp.consecutive_errors, 0) AS consecutive_errors, + rp.last_status, rp.updated_at, + e.content::json->>'name' AS name, + e.content::json->>'display_name' AS display_name + FROM caching_backfill_relay_progress rp + LEFT JOIN LATERAL (SELECT content FROM events WHERE pubkey = rp.author_pubkey AND kind = 0 ORDER BY created_at DESC LIMIT 1) e ON true + $where_sql + ORDER BY rp.complete ASC, COALESCE(rp.consecutive_errors, 0) DESC, rp.updated_at DESC + LIMIT $per OFFSET $offset + "; + $stmt = $pdo->prepare($sql); + $stmt->execute($params); + $relays = $stmt->fetchAll(); +} catch (PDOException $ex) {} + +function status_badge(string $status): string { + if ($status === 'eose') return 'eose'; + if ($status === 'timeout') return 'timeout'; + if (str_starts_with($status, 'error')) return '' . e($status) . ''; + if (str_starts_with($status, 'NOTICE')) return '' . e($status) . ''; + if (str_starts_with($status, 'CLOSED')) return '' . e($status) . ''; + if ($status === '') return ''; + return '' . e($status) . ''; +} + +admin_header('relays', 'C-Relay-PG Admin — Relay Progress'); +?> + +
+
PER-RELAY BACKFILL PROGRESS ( total)
+ +
+ + + + Filtered by: + Clear + +
+ +
+ + + + + + + + + + + + + + + = 3 ? 'style="background:rgba(255,0,0,0.05)"' : '' ?>> + + + + + + + + + + + + + +
AuthorRelay URLCompleteEventsErrorsLast StatusUpdated
+ + + + unknown + +
+
✓' : '' ?> 0 + ? '' . intval($r['consecutive_errors']) . '' + : '0' ?>
No relay progress rows found.
+
+ + +
+ + diff --git a/api/index.html b/api/index.html index 5759aaf..7431fb9 100644 --- a/api/index.html +++ b/api/index.html @@ -204,6 +204,7 @@ Rank + Name Pubkey Event Count Percentage @@ -211,7 +212,7 @@ - No data loaded + No data loaded @@ -676,7 +677,7 @@ wss://laantungir.net/relay
- +
@@ -715,6 +716,27 @@ wss://laantungir.net/relay
+ +
+

Followed Pubkeys

+

Pubkeys being cached with their profile names, event counts, outbox relays, and backfill status.

+
+ + + + + + + + + + + + + + +
NamenpubRoot?Events in DBBackfillRelays (status, events fetched)
Loading follows status...
+
diff --git a/api/index.js b/api/index.js index 4a07d6e..1f744b9 100644 --- a/api/index.js +++ b/api/index.js @@ -2092,6 +2092,11 @@ function handleSystemCommandResponse(responseData) { } } + // Handle caching follows status response + if (responseData.command === 'caching_follows_status') { + handleCachingFollowsResponse(responseData); + } + if (typeof logTestEvent === 'function') { logTestEvent('RECV', `System command response: ${responseData.command} - ${responseData.status}`, 'SYSTEM_CMD'); } @@ -4849,7 +4854,7 @@ function populateStatsPubkeys(data) { if (data.top_pubkeys.length === 0) { const row = document.createElement('tr'); - row.innerHTML = 'No pubkey data'; + row.innerHTML = 'No pubkey data'; tableBody.appendChild(row); return; } @@ -4868,8 +4873,12 @@ function populateStatsPubkeys(data) { } catch (error) { console.log('Failed to encode pubkey to npub:', error.message); } + // Name from kind-0 metadata (enriched by backend) + const name = pubkey.name || ''; + const nameDisplay = name ? escapeHtml(name) : 'unknown'; row.innerHTML = ` ${index + 1} + ${nameDisplay} ${npubLink} ${pubkey.event_count} ${pubkey.percentage}% @@ -4887,7 +4896,7 @@ function populateStatsPubkeysFromMonitoring(pubkeysData, totalEvents) { if (pubkeysData.length === 0) { const row = document.createElement('tr'); - row.innerHTML = 'No pubkey data'; + row.innerHTML = 'No pubkey data'; tableBody.appendChild(row); return; } @@ -4910,8 +4919,13 @@ function populateStatsPubkeysFromMonitoring(pubkeysData, totalEvents) { // Calculate percentage using totalEvents parameter const percentage = totalEvents > 0 ? ((pubkey.event_count / totalEvents) * 100).toFixed(1) : '0.0'; + // Name from kind-0 metadata (enriched by backend) + const name = pubkey.name || ''; + const nameDisplay = name ? escapeHtml(name) : 'unknown'; + row.innerHTML = ` ${index + 1} + ${nameDisplay} ${npubLink} ${pubkey.event_count} ${percentage}% @@ -5446,6 +5460,9 @@ function switchPage(pageName) { fetchCachingStatus().catch(error => { console.log('Failed to refresh caching status on page switch: ' + error.message); }); + fetchCachingFollowsStatus().catch(error => { + console.log('Failed to refresh caching follows status on page switch: ' + error.message); + }); // Start periodic refresh every 10 seconds while the caching page is visible if (cachingRefreshInterval) { clearInterval(cachingRefreshInterval); @@ -5455,6 +5472,9 @@ function switchPage(pageName) { fetchCachingStatus().catch(error => { console.log('Periodic caching status refresh failed: ' + error.message); }); + fetchCachingFollowsStatus().catch(error => { + console.log('Periodic caching follows refresh failed: ' + error.message); + }); } }, 10000); } else { @@ -6882,7 +6902,14 @@ async function fetchCachingStatus() { waited += 200; } - // Populate form fields from currentConfig + // Populate form fields from currentConfig. + // IMPORTANT: skip fields the user is actively editing so the periodic + // auto-refresh (every 10s via cachingRefreshInterval) does not clobber + // in-progress edits before "Apply configuration" is pressed. A field is + // considered "being edited" if it currently has focus OR it has been + // modified by the user since the last populate (dirty). Dirty state is + // tracked by the input/change listeners installed in + // initCachingEventListeners() via markCachingFieldDirty(). CACHING_CONFIG_FIELDS.forEach(field => { const value = getCachingConfigValue(field.key); const el = document.getElementById(field.field); @@ -6892,6 +6919,15 @@ async function fetchCachingStatus() { return; } + // Don't stomp on a field the user is currently focused on. + if (document.activeElement === el) { + return; + } + // Don't stomp on a field the user has edited but not yet applied. + if (el.dataset.cachingDirty === '1') { + return; + } + if (field.type === 'textarea-list') { // Config stores comma-separated; display as newline-separated el.value = String(value).split(',').map(s => s.trim()).filter(s => s.length > 0).join('\n'); @@ -6965,20 +7001,28 @@ async function applyCachingConfig() { // Convert newlines back to comma-separated for storage value = value.split('\n').map(s => s.trim()).filter(s => s.length > 0).join(','); } else if (field.type === 'integer') { - // Normalize empty to 0 + // Trim whitespace; leave empty for the skip check below. + // Do NOT coerce empty to '0' — the backend validates numeric + // ranges (e.g. caching_inbox_batch_size 1-500) and rejects 0, + // and config_update is atomic, so a single rejected field + // rolls back the entire batch (including unrelated boolean + // toggles like caching_enabled). Empty here means the form + // field was not populated, so we skip it and preserve the + // existing stored value. value = String(value).trim(); - if (value === '') value = '0'; } else { value = String(value).trim(); } - // Skip empty values for optional string/textarea-list fields. + // Skip empty values for optional string/textarea-list/integer fields. // The backend (update_config_in_table) rejects empty strings to // prevent accidental data loss, and config_update is atomic — // one rejected field rolls back the entire batch. Fields like // caching_root_npubs and caching_bootstrap_relays are optional - // and may legitimately be empty until configured. - if (value === '' && (field.type === 'textarea-list' || field.type === 'string')) { + // and may legitimately be empty until configured. Integer fields + // are also skipped when empty so their existing DB value is + // preserved instead of being overwritten with an out-of-range 0. + if (value === '' && (field.type === 'textarea-list' || field.type === 'string' || field.type === 'integer')) { return; } @@ -7022,6 +7066,10 @@ async function applyCachingConfig() { } log('Caching configuration applied successfully', 'INFO'); + // Clear dirty flags so the upcoming refresh can repopulate fields from + // the freshly-applied DB values without skipping user-edited fields. + clearCachingFieldsDirty(); + // Refresh status to reflect applied values setTimeout(() => fetchCachingStatus().catch(() => {}), 1500); @@ -7101,12 +7149,18 @@ function handleCachingStatusResponse(responseData) { const running = pick(service.running, data.running); const connectedRelays = pick(service.connected_relays, data.connected_relays); const eventsCached = pick(service.events_cached, data.events_cached); + // Per-author until-cursor drain backfill progress. + const bfComplete = pick(service.backfill_authors_complete, data.backfill_authors_complete); + const bfTotal = pick(service.backfill_authors_total, data.backfill_authors_total); let html = ''; serviceStatusEl.innerHTML = html; } @@ -7149,6 +7203,156 @@ function handleCachingStatusResponse(responseData) { } } +// Fetch caching follows status (per-follow detail with usernames, event counts, relays) +async function fetchCachingFollowsStatus() { + try { + if (!isLoggedIn || !userPubkey) { + throw new Error('Must be logged in to fetch caching follows status'); + } + await sendAdminCommand(['system_command', 'caching_follows_status']); + } catch (e) { + console.log('caching_follows_status command failed: ' + e.message); + const tbody = document.getElementById('caching-follows-table-body'); + if (tbody) { + tbody.innerHTML = `Failed to load: ${escapeHtml(e.message || 'Unknown error')}`; + } + } +} + +// Handle caching_follows_status response and render the follows table +function handleCachingFollowsResponse(responseData) { + const tbody = document.getElementById('caching-follows-table-body'); + const statusEl = document.getElementById('caching-follows-status'); + if (!tbody) return; + + if (responseData.status !== 'success') { + tbody.innerHTML = `Error: ${escapeHtml(responseData.message || 'Unknown error')}`; + return; + } + + const follows = responseData.follows || []; + const totalFollows = responseData.total_follows || follows.length; + const totalEvents = responseData.total_events_in_db || 0; + + // Active backfill target (written by the caching_relay process to PG). + const activePk = responseData.active_backfill_pubkey || ''; + const activeRelay = responseData.active_backfill_relay || ''; + + if (statusEl) { + let html = `${totalFollows} follows, ${totalEvents} total events in DB`; + if (activePk && activeRelay) { + html += `
⚡ Working on: ${escapeHtml(activeRelay)}`; + } else if (activePk) { + html += `
⚡ Working on: ${escapeHtml(activePk.substring(0,12))}...`; + } else { + // No active backfill target — check if all follows are complete. + const allComplete = follows.length > 0 && follows.every(f => f.backfill_complete); + if (allComplete) { + html += `
✓ Caching complete`; + } + } + statusEl.innerHTML = html; + } + + if (follows.length === 0) { + tbody.innerHTML = 'No followed pubkeys found.'; + return; + } + + // Sort by total_events_in_db descending (most active first) + follows.sort((a, b) => (b.total_events_in_db || 0) - (a.total_events_in_db || 0)); + + tbody.innerHTML = ''; + follows.forEach((follow, index) => { + const row = document.createElement('tr'); + row.style.borderBottom = '1px solid var(--border-color, #333)'; + + // Highlight the row if this is the currently-active backfill target. + const isActiveAuthor = activePk && follow.pubkey === activePk; + if (isActiveAuthor) { + row.style.borderLeft = '4px solid red'; + row.style.borderRight = '4px solid red'; + row.style.borderTop = '2px solid red'; + row.style.borderBottom = '2px solid red'; + } + + // Name column + const name = follow.name || ''; + const nameDisplay = name ? escapeHtml(name) : 'unknown'; + + // npub column (convert hex to npub) + let npubLink = follow.pubkey ? follow.pubkey.substring(0, 12) + '...' : '-'; + try { + if (follow.pubkey && follow.pubkey.length === 64 && /^[0-9a-fA-F]+$/.test(follow.pubkey)) { + const npub = window.NostrTools.nip19.npubEncode(follow.pubkey); + npubLink = `${npub.substring(0, 20)}...`; + } + } catch (e) { /* keep short hex */ } + + // Root badge + const rootBadge = follow.is_root + ? '★ Root' + : ''; + + // Events in DB + const totalInDb = follow.total_events_in_db || 0; + + // Backfill status + const relayProgress = follow.relay_progress || []; + const doneRelays = relayProgress.filter(r => r.complete).length; + const totalRelays = relayProgress.length; + const bfStatus = follow.backfill_complete + ? `✓ Complete` + : `${doneRelays}/${totalRelays} relays`; + + // Outbox relays with per-relay event counts from relay_progress. + // Normalize URLs by stripping trailing slashes for dedup. + const normUrl = u => u ? u.replace(/\/+$/, '') : u; + const relayProgressMap = {}; + (follow.relay_progress || []).forEach(rp => { + relayProgressMap[normUrl(rp.relay_url)] = rp; + }); + const outboxRelays = (follow.outbox_relays || []).map(normUrl); + // Merge outbox relays with relay_progress relays, deduplicating by + // normalized URL. Relays in relay_progress that aren't in outbox_relays + // are bootstrap relays that were queried but aren't outbox relays. + const allRelays = [...new Set([...outboxRelays, ...Object.keys(relayProgressMap)])]; + const outboxDisplay = allRelays.length > 0 + ? allRelays.map(r => { + const short = escapeHtml(r.replace('wss://', '').replace('https://', '').replace('ws://', '')); + const rp = relayProgressMap[r]; + // Highlight if this is the relay currently being queried. + const isActiveRelay = isActiveAuthor && activeRelay && r === normUrl(activeRelay); + const activePrefix = isActiveRelay ? '⚡ ' : ''; + if (rp) { + const evCount = rp.events_fetched || 0; + const done = rp.complete ? '✓' : '⏳'; + const status = rp.last_status || ''; + const statusDisplay = status ? ` [${escapeHtml(status)}]` : ''; + const color = isActiveRelay + ? 'color: red; font-weight: bold;' + : (evCount > 0 ? 'color: green;' : 'color: var(--text-muted, #888);'); + return `${activePrefix}${done} ${short} (${evCount})${statusDisplay}`; + } + const color = isActiveRelay + ? 'color: red; font-weight: bold;' + : 'color: var(--text-muted, #888);'; + return `${activePrefix}${short}`; + }).join('
') + : 'none'; + + row.innerHTML = ` + ${nameDisplay} + ${npubLink} + ${rootBadge} + ${totalInDb} + ${bfStatus} + ${outboxDisplay} + `; + tbody.appendChild(row); + }); +} + // Start the external caching service async function startCachingService() { const statusDiv = document.getElementById('caching-service-control-status'); @@ -7199,6 +7403,21 @@ async function stopCachingService() { } } +// Mark a caching config field as dirty (user-modified) so the periodic +// fetchCachingStatus() refresh does not overwrite in-progress edits. +function markCachingFieldDirty() { + this.dataset.cachingDirty = '1'; +} + +// Clear the dirty flag on all caching config fields. Called after a successful +// apply so subsequent refreshes can repopulate fields from the DB again. +function clearCachingFieldsDirty() { + CACHING_CONFIG_FIELDS.forEach(field => { + const el = document.getElementById(field.field); + if (el) delete el.dataset.cachingDirty; + }); +} + // Initialize Caching page event listeners function initCachingEventListeners() { const applyBtn = document.getElementById('caching-apply-btn'); @@ -7219,6 +7438,18 @@ function initCachingEventListeners() { stopServiceBtn.addEventListener('click', stopCachingService); } + // Track user edits to caching config fields so the 10s auto-refresh + // (fetchCachingStatus -> populate form) does not clobber in-progress + // edits before "Apply configuration" is pressed. Both 'input' (fires + // on every keystroke) and 'change' (fires on blur/commit for selects + // and number inputs) are tracked. + CACHING_CONFIG_FIELDS.forEach(field => { + const el = document.getElementById(field.field); + if (!el) return; + el.addEventListener('input', markCachingFieldDirty); + el.addEventListener('change', markCachingFieldDirty); + }); + console.log('Caching page event listeners initialized'); } diff --git a/caching/Makefile b/caching/Makefile index 35707a6..566f37c 100644 --- a/caching/Makefile +++ b/caching/Makefile @@ -6,7 +6,7 @@ SHELL := /bin/bash CC = gcc CFLAGS = -Wall -Wextra -std=c99 -g -O2 -# nostr_core_lib is a sibling of c-relay-pg (one dir up from caching/). +# nostr_core_lib is inside the c-relay-pg project root (one dir up from caching/). NOSTR_CORE_DIR = ../nostr_core_lib INCLUDES = -I. -Isrc -I$(NOSTR_CORE_DIR) -I$(NOSTR_CORE_DIR)/nostr_core \ diff --git a/caching/build_static.sh b/caching/build_static.sh index b5cdd74..7ede5cd 100755 --- a/caching/build_static.sh +++ b/caching/build_static.sh @@ -83,9 +83,8 @@ else fi echo "" -# nostr_core_lib is a sibling directory; copy it into the build context. -# Docker cannot follow symlinks outside the context, so we do a real copy -# (excluding .git and build artifacts) and clean up afterwards. +# nostr_core_lib is inside the c-relay-pg project root (one dir up from caching/). +# Copy it into the Docker build context (excluding .git and build artifacts). NOSTR_CORE_DIR="$SCRIPT_DIR/../nostr_core_lib" if [ ! -d "$NOSTR_CORE_DIR" ]; then echo "ERROR: nostr_core_lib not found at $NOSTR_CORE_DIR" diff --git a/caching/src/backfill.c b/caching/src/backfill.c index d8a5d24..92043b6 100644 --- a/caching/src/backfill.c +++ b/caching/src/backfill.c @@ -1,10 +1,16 @@ /* - * caching_relay - progressive window-expansion backfill + * caching_relay - relay-by-relay per-author until-cursor drain backfill. * - * Uses until-based pagination so authors with more events than the page size - * are fully drained across multiple ticks instead of being skipped. In - * PostgreSQL mode, per-author/window progress is persisted to the - * caching_backfill_progress table so the service can resume after restart. + * Each (author, relay) pair has its own persistent until_cursor stored in + * the caching_backfill_relay_progress table. Each backfill tick picks the + * next author that still has at least one incomplete relay (round-robin), + * then queries each incomplete relay one at a time with + * since=0 & until=cursor & limit=page_size + * publishes the page, and advances that relay's cursor to + * oldest_event_created_at - 1. A relay is marked complete when a page + * returns fewer than page_size events (the relay is drained for this + * author). An author is marked complete in caching_followed_pubkeys when + * all their relay progress rows are complete. */ #define _GNU_SOURCE #include "backfill.h" @@ -18,6 +24,84 @@ #include #include +/* ------------------------------------------------------------------ */ +/* Global access for status reporting */ +/* ------------------------------------------------------------------ */ + +/* Singleton pointer set in cr_backfill_init, used by the accessor + * functions below so the main loop / status reporter can see what + * the backfill is currently working on. */ +static cr_backfill_t *g_bf = NULL; + +const char *cr_backfill_active_pubkey(void) { + return g_bf ? g_bf->active_pubkey : ""; +} +const char *cr_backfill_active_relay(void) { + return g_bf ? g_bf->active_relay : ""; +} +int cr_backfill_active_got_eose(void) { + return g_bf ? g_bf->active_relay_got_eose : 0; +} + +/* ------------------------------------------------------------------ */ +/* EOSE callback for synchronous_query_relays_with_progress */ +/* ------------------------------------------------------------------ */ + +/* Context passed to the query callback. Records whether the relay sent + * EOSE (we got everything) or timed out (partial result). */ +typedef struct { + int got_eose; /* 1 if EOSE received, 0 if timed out/errored */ + int events_count; /* events reported by callback */ + char last_status[256]; /* last status string from callback (may include message) */ +} backfill_query_ctx_t; + +static void backfill_query_callback(const char *relay_url, const char *status, + const char *event_id, int events_received, + int total_relays, int completed_relays, + void *user_data) { + (void)relay_url; (void)total_relays; (void)completed_relays; + backfill_query_ctx_t *ctx = (backfill_query_ctx_t *)user_data; + if (!ctx || !status) return; + + /* Ignore the synthetic "all_complete" status from core_relays.c — it + * is sent AFTER the real EOSE/timeout and would overwrite the real + * status with a misleading "all_complete" string, and clobber + * events_count with total_unique_events. The real per-relay status + * (eose/timeout/error) is what we need for completion decisions. */ + if (strcmp(status, "all_complete") == 0) { + return; + } + + /* For NOTICE/CLOSED/error, event_id carries the descriptive message + * content (relay's own text for NOTICE/CLOSED, or our transport-level + * diagnosis for error). Include it in the status for display. + * Priority: relay's own response (NOTICE/CLOSED) > our error > bare + * status string. */ + if ((strcmp(status, "NOTICE") == 0 || strcmp(status, "CLOSED") == 0) && + event_id && event_id[0] != '\0') { + snprintf(ctx->last_status, sizeof(ctx->last_status), "%s: %s", status, event_id); + } else if (strcmp(status, "error") == 0) { + if (event_id && event_id[0] != '\0') { + snprintf(ctx->last_status, sizeof(ctx->last_status), "error: %s", event_id); + } else { + snprintf(ctx->last_status, sizeof(ctx->last_status), "error"); + } + } else { + snprintf(ctx->last_status, sizeof(ctx->last_status), "%s", status); + } + + if (strcmp(status, "eose") == 0) { + ctx->got_eose = 1; + } else if (strcmp(status, "timeout") == 0) { + ctx->got_eose = 0; + } else if (strcmp(status, "error") == 0) { + ctx->got_eose = 0; + } + /* NOTICE/CLOSED don't change got_eose — the relay might still send + * events or EOSE after a NOTICE. */ + ctx->events_count = events_received; +} + /* ------------------------------------------------------------------ */ /* Helpers */ /* ------------------------------------------------------------------ */ @@ -50,16 +134,6 @@ static int find_oldest_created_at(cJSON **events, int count, long *out_oldest) { return found; } -/* Count how many events in the array have created_at == ts. */ -static int count_at_timestamp(cJSON **events, int count, long ts) { - int n = 0; - for (int i = 0; i < count; i++) { - cJSON *ca = cJSON_GetObjectItem(events[i], "created_at"); - if (ca && cJSON_IsNumber(ca) && (long)ca->valuedouble == ts) n++; - } - return n; -} - /* Build the kinds array for a given pubkey (admin vs regular). * Returns NULL if no kinds filter should be applied (admin_all_kinds). */ static cJSON *build_kinds(cr_config_t *cfg, const char *pk) { @@ -89,146 +163,90 @@ static int resolve_relays(nostr_relay_pool_t *upstream, *out_urls = NULL; *out_n = 0; + /* Collect outbox relays for this author (from kind-10002). */ + int outbox_count = 0; + const cr_outbox_entry_t *oe = NULL; if (relay_map) { - const cr_outbox_entry_t *oe = cr_relay_map_get_outbox(relay_map, pk); - if (oe && oe->relay_count > 0) { - const char **urls = malloc(oe->relay_count * sizeof(char *)); - if (!urls) return -1; - for (int j = 0; j < oe->relay_count; j++) urls[j] = oe->relays[j]; - *out_urls = urls; - *out_n = oe->relay_count; - return 0; + oe = cr_relay_map_get_outbox(relay_map, pk); + if (oe) outbox_count = oe->relay_count; + } + + /* Also collect all upstream (bootstrap) relays. We query BOTH the + * author's outbox relays AND the bootstrap relays to maximize coverage. + * Different relays may have different subsets of the author's events. */ + char **listed = NULL; + nostr_pool_relay_status_t *statuses = NULL; + int upstream_count = nostr_relay_pool_list_relays(upstream, &listed, &statuses); + + /* Merge outbox + upstream, deduplicating by URL. */ + int max_total = outbox_count + upstream_count; + if (max_total <= 0) { + free(listed); + free(statuses); + return 0; + } + + const char **urls = malloc(max_total * sizeof(char *)); + if (!urls) { free(listed); free(statuses); return -1; } + + int n = 0; + + /* Add outbox relays first. */ + if (oe) { + for (int j = 0; j < oe->relay_count && n < max_total; j++) { + urls[n++] = oe->relays[j]; } } - /* Fallback: all upstream relays. */ - char **listed = NULL; - nostr_pool_relay_status_t *statuses = NULL; - int n = nostr_relay_pool_list_relays(upstream, &listed, &statuses); - if (n > 0) { - const char **urls = malloc(n * sizeof(char *)); - if (!urls) { free(listed); free(statuses); return -1; } - for (int j = 0; j < n; j++) urls[j] = listed[j]; - *out_urls = urls; - *out_n = n; + /* Add upstream relays, skipping duplicates. */ + for (int j = 0; j < upstream_count && n < max_total; j++) { + int dup = 0; + for (int k = 0; k < n; k++) { + if (strcmp(urls[k], listed[j]) == 0) { dup = 1; break; } + } + if (!dup) { + urls[n++] = listed[j]; + } } + free(listed); free(statuses); + + *out_urls = urls; + *out_n = n; return 0; } -/* Issue a query_sync for one author with the given since/until/limit. - * Returns the events array (caller frees each event + the array) or NULL. - * Sets *out_count. */ -static cJSON **query_author(nostr_relay_pool_t *upstream, - const cr_relay_map_t *relay_map, - cr_config_t *cfg, const char *pk, - long since, long until, int limit, - int *out_count) { - cJSON *filter = cJSON_CreateObject(); - cJSON *authors = cJSON_CreateArray(); - cJSON_AddItemToArray(authors, cJSON_CreateString(pk)); - cJSON_AddItemToObject(filter, "authors", authors); - - cJSON *kinds = build_kinds(cfg, pk); - if (kinds) cJSON_AddItemToObject(filter, "kinds", kinds); - - cJSON_AddItemToObject(filter, "since", cJSON_CreateNumber((double)since)); - cJSON_AddItemToObject(filter, "until", cJSON_CreateNumber((double)until)); - cJSON_AddItemToObject(filter, "limit", cJSON_CreateNumber((double)limit)); - - const char **urls = NULL; - int n = 0; - resolve_relays(upstream, relay_map, pk, &urls, &n); - - cJSON **events = nostr_relay_pool_query_sync(upstream, urls, n, filter, - out_count, 15000); - free(urls); - cJSON_Delete(filter); - return events; -} - -/* ------------------------------------------------------------------ */ -/* Window advancement */ -/* ------------------------------------------------------------------ */ - -static void advance_window(cr_backfill_t *bf, cr_config_t *cfg) { - /* Record that we've backfilled up to (now - current_window). */ - cfg->state.backfilled_until = (long)time(NULL) - bf->current_window_s; - cfg->state.current_window_index = bf->window_index + 1; - cfg->state.backfill_cursor = 0; - if (!pg_mode_active()) { - cr_config_save_state(cfg); - } - - DEBUG_INFO("backfill: window %d complete (%ld events). backfilled_until=%ld", - bf->window_index, bf->events_this_window, cfg->state.backfilled_until); - - bf->window_index++; - if (bf->window_index >= cfg->backfill.window_count) { - DEBUG_INFO("backfill: all windows complete, entering steady-state"); - bf->in_progress = 0; - return; - } - bf->current_window_s = cfg->backfill.window_schedule_seconds[bf->window_index]; - bf->cursor = 0; - bf->until_cursor = 0; - bf->author_complete = 0; - bf->blocked = 0; - bf->blocked_until_ts = 0; - bf->events_this_window = 0; - bf->window_started = time(NULL); - DEBUG_INFO("backfill: advancing to window %d (%ld seconds)", - bf->window_index, bf->current_window_s); -} - -/* Persist the current cursor state. In PG mode we rely on the per-author - * progress table; in legacy mode we write the .jsonc state. */ -static void persist_cursor(cr_backfill_t *bf, cr_config_t *cfg) { - cfg->state.backfill_cursor = bf->cursor; - if (!pg_mode_active()) { - cr_config_save_state(cfg); - } -} - -/* Save progress for the current author to PG (no-op outside PG mode). */ -static void pg_save_current(cr_backfill_t *bf, cr_config_t *cfg, - const char *pk, int complete) { - (void)cfg; /* window anchor is derived from bf + time(), cfg not needed */ - if (!pg_mode_active() || !pk) return; - long anchor = (long)time(NULL) - bf->current_window_s; - pg_inbox_save_backfill_progress(pk, bf->window_index, anchor, - bf->until_cursor, complete); -} - /* ------------------------------------------------------------------ */ /* Init */ /* ------------------------------------------------------------------ */ void cr_backfill_init(cr_backfill_t *bf, cr_config_t *cfg) { + (void)cfg; memset(bf, 0, sizeof(*bf)); - bf->window_index = cfg->state.current_window_index; - if (bf->window_index >= cfg->backfill.window_count) { - /* Already done; steady state. */ - bf->in_progress = 0; - DEBUG_INFO("backfill: already complete (window index %d >= %d), steady-state", - bf->window_index, cfg->backfill.window_count); + g_bf = bf; /* Set singleton for status accessors */ + + /* In PG mode, check whether any incomplete authors remain in the DB. + * If so, backfill is in progress; otherwise we're in steady state. + * Outside PG mode there is no per-author table, so we just start. */ + if (pg_mode_active()) { + int complete = 0, total = 0; + if (pg_inbox_count_backfill_progress(&complete, &total) == 0) { + bf->in_progress = (total > 0 && complete < total) ? 1 : 0; + DEBUG_INFO("backfill: init complete=%d/%d -> in_progress=%d", + complete, total, bf->in_progress); + return; + } + /* Count query failed - assume in progress so we keep trying. */ + bf->in_progress = 1; + DEBUG_WARN("backfill: init could not read progress counts, " + "defaulting to in_progress=1"); return; } - bf->current_window_s = cfg->backfill.window_schedule_seconds[bf->window_index]; - bf->cursor = cfg->state.backfill_cursor; - bf->until_cursor = 0; - bf->author_complete = 0; - bf->blocked = 0; - bf->blocked_until_ts = 0; - bf->in_progress = 1; - bf->window_started = time(NULL); - /* In PG mode, per-author restore is deferred to the first tick (the - * followed set is not resolved yet at init time). The tick loop skips - * already-complete authors via the progress table. */ - DEBUG_INFO("backfill: starting at window %d (%ld seconds), cursor %d", - bf->window_index, bf->current_window_s, bf->cursor); + /* Legacy (non-PG) mode: no per-author table; just start. */ + bf->in_progress = 1; + DEBUG_INFO("backfill: init (legacy mode) in_progress=1"); } /* ------------------------------------------------------------------ */ @@ -236,196 +254,177 @@ void cr_backfill_init(cr_backfill_t *bf, cr_config_t *cfg) { /* ------------------------------------------------------------------ */ int cr_backfill_tick(cr_backfill_t *bf, cr_config_t *cfg, - nostr_relay_pool_t *upstream, cr_pubkey_set_t *followed, + nostr_relay_pool_t *upstream, + cr_pubkey_set_t *followed, cr_sink_t *sink, const cr_relay_map_t *relay_map) { + (void)followed; /* followed set is tracked in the DB now */ + (void)relay_map; /* relays are tracked per-author in the DB */ + if (!cfg->backfill.enabled) return -2; if (!bf->in_progress) return -2; - if (followed->count == 0) return 0; - /* Throttle: only one query per tick_interval. */ + /* Throttle: one query per tick_interval. */ time_t now = time(NULL); - if (bf->last_tick && (now - bf->last_tick) < cfg->backfill.tick_interval_seconds) { + if (bf->last_tick && (now - bf->last_tick) < cfg->backfill.tick_interval_seconds) return 0; - } - /* In PG mode, skip past authors already marked complete for this window - * (resume case). Restore the until_cursor for the first incomplete author. */ - if (pg_mode_active()) { - while (bf->cursor < followed->count) { - const char *pk = followed->items[bf->cursor]; - long uc = 0; - int complete = 0, found = 0; - if (pg_inbox_load_backfill_progress(pk, bf->window_index, - &uc, &complete, &found) == 0 - && found && complete) { - DEBUG_TRACE("backfill: author[%d] %s already complete, skipping", - bf->cursor, pk); - bf->cursor++; - cfg->state.backfill_cursor = bf->cursor; - continue; - } - if (found && uc > 0 && bf->until_cursor == 0) { - bf->until_cursor = uc; - DEBUG_TRACE("backfill: resumed author[%d] %s at until=%ld", - bf->cursor, pk, bf->until_cursor); - } - break; - } - if (bf->cursor >= followed->count) { - advance_window(bf, cfg); - return 1; - } + /* Pick the next author that has at least one incomplete relay progress + * row (round-robin). */ + char pk[CR_HEX_LEN]; + if (pg_inbox_pick_next_author_with_incomplete_relays(pk, sizeof(pk), + &bf->author_round_cursor) != 0) { + /* No incomplete authors - steady state. */ + bf->in_progress = 0; + DEBUG_INFO("backfill: no authors with incomplete relays, steady-state"); + return -2; } - const char *pk = followed->items[bf->cursor]; - - /* Determine the until cursor for this query. First query for an author: - * until = now. Subsequent queries: until = oldest event created_at - 1 - * from the previous page (set at the end of the previous tick). */ - long until = bf->until_cursor; - if (until == 0) { - until = (long)now; - } - long since = (long)now - bf->current_window_s; - int page_size = cfg->backfill.events_per_tick; - if (page_size < 1) page_size = 50; - int max_cap = CR_BACKFILL_MAX_PAGE_CAP; - if (max_cap < page_size) max_cap = page_size; + if (page_size < 1) page_size = 500; bf->last_tick = now; - DEBUG_TRACE("backfill: querying %s (window %ld, since %ld, until %ld, limit %d)", - pk, bf->current_window_s, since, until, page_size); - - int ev_count = 0; - cJSON **events = query_author(upstream, relay_map, cfg, pk, - since, until, page_size, &ev_count); - - /* Saturation handling: if we got exactly page_size events, the page may - * be truncated. Bump the limit up to max_cap and retry once. */ - int limit_used = page_size; - if (events && ev_count == page_size && page_size < max_cap) { - for (int k = 0; k < ev_count; k++) cJSON_Delete(events[k]); - free(events); - - DEBUG_TRACE("backfill: saturated page for %s, retrying with limit %d", - pk, max_cap); - events = query_author(upstream, relay_map, cfg, pk, - since, until, max_cap, &ev_count); - limit_used = max_cap; - } - - /* If still saturated at the cap, we cannot safely paginate past the - * oldest timestamp (the relay may have more events at that exact ts). - * Mark the author blocked at that timestamp and move on; it will be - * retried in a later window sweep. */ - if (events && ev_count == max_cap && max_cap > page_size) { - long oldest = 0; - find_oldest_created_at(events, ev_count, &oldest); - int at_oldest = count_at_timestamp(events, ev_count, oldest); - - DEBUG_WARN("backfill: author %s saturated at limit %d (oldest ts %ld, " - "%d events at that ts) - marking blocked, will retry next window", - pk, max_cap, oldest, at_oldest); - - /* Publish what we have. */ - cr_sink_set_source_class(sink, CR_SINK_CLASS_BACKFILL); - for (int k = 0; k < ev_count; k++) { - cr_sink_publish(sink, events[k]); - cJSON_Delete(events[k]); - bf->events_this_window++; - bf->events_total++; - } - free(events); - - bf->blocked = 1; - bf->blocked_until_ts = oldest; - bf->until_cursor = oldest; /* resume point for next window */ - pg_save_current(bf, cfg, pk, 0); /* not complete - retry next window */ - - bf->cursor++; - persist_cursor(bf, cfg); - if (bf->cursor >= followed->count) { - advance_window(bf, cfg); - } + /* Get the incomplete relays for this author. */ + cJSON *relays = pg_inbox_get_incomplete_relays(pk); + if (!relays) { + DEBUG_WARN("backfill: no incomplete relays returned for %s", pk); + /* Author has no relay rows - mark complete so we don't loop. */ + pg_inbox_check_and_mark_author_complete(pk); return 1; } - /* Normal page processing. Capture the oldest timestamp BEFORE publishing - * so we can paginate if saturated. */ - long oldest_ts = 0; - int have_oldest = 0; - if (events && ev_count > 0) { - have_oldest = find_oldest_created_at(events, ev_count, &oldest_ts); - } + int relay_count = cJSON_GetArraySize(relays); + DEBUG_TRACE("backfill: author %s has %d incomplete relay(s)", pk, relay_count); + + cr_sink_set_source_class(sink, CR_SINK_CLASS_BACKFILL); + + /* Query each incomplete relay one at a time. */ + for (int r = 0; r < relay_count; r++) { + cJSON *entry = cJSON_GetArrayItem(relays, r); + if (!entry) continue; + cJSON *url_node = cJSON_GetObjectItem(entry, "relay_url"); + cJSON *cur_node = cJSON_GetObjectItem(entry, "until_cursor"); + if (!url_node || !cJSON_IsString(url_node)) continue; + const char *relay_url = cJSON_GetStringValue(url_node); + long until_cursor = (cur_node && cJSON_IsNumber(cur_node)) + ? (long)cur_node->valuedouble : 0; + if (until_cursor == 0) until_cursor = (long)now; + + /* Build the filter for this single relay. */ + cJSON *filter = cJSON_CreateObject(); + cJSON *authors = cJSON_CreateArray(); + cJSON_AddItemToArray(authors, cJSON_CreateString(pk)); + cJSON_AddItemToObject(filter, "authors", authors); + cJSON *kinds = build_kinds(cfg, pk); + if (kinds) cJSON_AddItemToObject(filter, "kinds", kinds); + cJSON_AddItemToObject(filter, "since", cJSON_CreateNumber(0.0)); + cJSON_AddItemToObject(filter, "until", cJSON_CreateNumber((double)until_cursor)); + cJSON_AddItemToObject(filter, "limit", cJSON_CreateNumber((double)page_size)); + + DEBUG_TRACE("backfill: %s @ %s (until=%ld, limit=%d)", + pk, relay_url, until_cursor, page_size); + + /* Record the active target for UI status display (both + * in-memory for local accessors and in PG for the relay). */ + strncpy(bf->active_pubkey, pk, sizeof(bf->active_pubkey) - 1); + bf->active_pubkey[sizeof(bf->active_pubkey) - 1] = '\0'; + strncpy(bf->active_relay, relay_url, sizeof(bf->active_relay) - 1); + bf->active_relay[sizeof(bf->active_relay) - 1] = '\0'; + bf->active_relay_got_eose = 0; + pg_inbox_set_active_target(pk, relay_url); + + /* Query this single relay using synchronous_query_relays_with_progress + * which gives us an EOSE/timeout callback — the relay's own signal + * of whether it sent everything or we timed out. */ + backfill_query_ctx_t qctx = {0, 0}; + const char *one_url = relay_url; + int ev_count = 0; + cJSON **events = synchronous_query_relays_with_progress( + &one_url, 1, filter, RELAY_QUERY_ALL_RESULTS, + &ev_count, 30, /* timeout in seconds */ + backfill_query_callback, &qctx, + 0, NULL /* nip42 disabled, no private key */); + cJSON_Delete(filter); + + bf->active_relay_got_eose = qctx.got_eose; + + if (!events || ev_count == 0) { + /* No events from this relay - it is drained for this author. + * (ev_count == 0 with EOSE means truly empty; without EOSE it + * means a connection failure — keep incomplete to retry. + * The pg_inbox_update_relay_progress SQL will auto-mark + * complete once consecutive_errors reaches 3.) */ + int mark_complete = qctx.got_eose ? 1 : 0; + pg_inbox_update_relay_progress(pk, relay_url, until_cursor, + mark_complete, 0, qctx.last_status); + free(events); + if (!qctx.got_eose) { + /* Error or timeout with no events — surface the + * descriptive status at WARN so operators can see why. */ + DEBUG_WARN("backfill: %s @ %s failed: %s (will auto-complete after 3 consecutive errors)", + pk, relay_url, qctx.last_status); + } else { + DEBUG_LOG("backfill: %s @ %s complete (no events, eose)", + pk, relay_url); + } + continue; + } + + /* Find oldest timestamp, then publish every event. */ + long oldest_ts = 0; + find_oldest_created_at(events, ev_count, &oldest_ts); - if (events && ev_count > 0) { - cr_sink_set_source_class(sink, CR_SINK_CLASS_BACKFILL); for (int k = 0; k < ev_count; k++) { cr_sink_publish(sink, events[k]); cJSON_Delete(events[k]); - bf->events_this_window++; - bf->events_total++; } free(events); + bf->events_total += ev_count; + + DEBUG_LOG("backfill: %s @ %s -> %d events (until=%ld, oldest=%ld, eose=%d)", + pk, relay_url, ev_count, until_cursor, oldest_ts, qctx.got_eose); + + /* Completion decision based on EOSE status: + * - ev_count >= page_size: saturated, advance cursor, keep incomplete + * - ev_count < page_size AND got EOSE: relay is truly drained + * - ev_count < page_size AND no EOSE (timeout): partial result, + * advance cursor but keep incomplete to retry next tick + * - Guard: if cursor didn't advance (oldest_ts >= until_cursor), + * mark complete to avoid infinite loop on identical timestamps. */ + long next_cursor = (oldest_ts > 0) ? oldest_ts - 1 : 0; + int cursor_advanced = (oldest_ts > 0 && oldest_ts < until_cursor); + + if (ev_count >= page_size) { + pg_inbox_update_relay_progress(pk, relay_url, next_cursor, 0, ev_count, qctx.last_status); + } else if (qctx.got_eose) { + /* Relay sent EOSE with < page_size events — truly drained. */ + pg_inbox_update_relay_progress(pk, relay_url, next_cursor, 1, ev_count, qctx.last_status); + } else { + /* Timed out before EOSE — partial result. Keep incomplete + * to retry, unless the cursor didn't advance (stall guard). + * Timeouts DO count toward the consecutive_errors limit + * (a relay that consistently times out is effectively dead + * for backfill purposes), so the SQL will auto-mark + * complete after 3 consecutive timeouts/errors. */ + int mark_complete = cursor_advanced ? 0 : 1; + pg_inbox_update_relay_progress(pk, relay_url, next_cursor, + mark_complete, ev_count, qctx.last_status); + DEBUG_WARN("backfill: %s @ %s partial: %s (%d events, will auto-complete after 3 consecutive timeouts/errors)", + pk, relay_url, qctx.last_status, ev_count); + } } - DEBUG_LOG("backfill: pubkey[%d/%d] %s -> %d events (until=%ld)", - bf->cursor, followed->count, pk, ev_count, until); + /* Clear active target — done with this author. */ + bf->active_relay[0] = '\0'; + pg_inbox_set_active_target(pk, ""); - int saturated = (ev_count == limit_used) && (ev_count > 0); + cJSON_Delete(relays); - if (ev_count == 0) { - /* No more events for this author in the window. */ - bf->author_complete = 1; - bf->until_cursor = 0; - pg_save_current(bf, cfg, pk, 1); - bf->cursor++; - persist_cursor(bf, cfg); - if (bf->cursor >= followed->count) { - advance_window(bf, cfg); - } - } else if (!saturated) { - /* Last page for this author. */ - bf->author_complete = 1; - bf->until_cursor = 0; - pg_save_current(bf, cfg, pk, 1); - bf->cursor++; - persist_cursor(bf, cfg); - if (bf->cursor >= followed->count) { - advance_window(bf, cfg); - } - } else { - /* Saturated: paginate. Set until = oldest - 1 and keep the same - * author for the next tick. The `until` parameter is inclusive, so - * subtracting 1 avoids re-fetching the oldest event. */ - if (have_oldest) { - bf->until_cursor = oldest_ts - 1; - if (bf->until_cursor < since) { - /* Walked back past the window start; author is done. */ - bf->author_complete = 1; - bf->until_cursor = 0; - pg_save_current(bf, cfg, pk, 1); - bf->cursor++; - persist_cursor(bf, cfg); - if (bf->cursor >= followed->count) { - advance_window(bf, cfg); - } - } else { - pg_save_current(bf, cfg, pk, 0); - } - } else { - /* Could not determine oldest (no valid created_at); mark done. */ - bf->author_complete = 1; - bf->until_cursor = 0; - pg_save_current(bf, cfg, pk, 1); - bf->cursor++; - persist_cursor(bf, cfg); - if (bf->cursor >= followed->count) { - advance_window(bf, cfg); - } - } + /* After querying all incomplete relays for this author, check whether + * the author is now fully complete. */ + int crc = pg_inbox_check_and_mark_author_complete(pk); + if (crc == 1) { + DEBUG_LOG("backfill: author %s fully complete (all relays drained)", pk); } return 1; diff --git a/caching/src/backfill.h b/caching/src/backfill.h index a44d2f0..9399fa5 100644 --- a/caching/src/backfill.h +++ b/caching/src/backfill.h @@ -1,17 +1,13 @@ /* - * caching_relay - progressive window-expansion backfill. + * caching_relay - per-author until-cursor drain backfill. * - * Round-robin through the followed-pubkey set, issuing query_sync per pubkey - * for the current window (since = now - window_seconds). When a full pass - * completes, advance the window and persist state to the config file. - * - * Pagination: each author is queried with an `until` cursor that walks - * backwards in time. If a query returns exactly `page_size` events (saturated), - * the limit is bumped up to a configurable cap and retried; if still saturated - * the author is marked "blocked" at that timestamp and retried in a later - * window sweep. Otherwise the until cursor advances to - * (oldest_event_created_at - 1) and the same author is queried again on the - * next tick until no more events are returned. + * Each followed author has a single persistent cursor (starting at `now`) + * stored in the caching_followed_pubkeys table. Each backfill tick picks + * the next incomplete author (round-robin), queries + * since=0 & until=cursor & limit=page_size + * publishes the page, and sets cursor = oldest_event_created_at - 1. + * Repeat until a page returns fewer than page_size events (beginning of + * the author's history reached), then mark the author complete. */ #ifndef CACHING_RELAY_BACKFILL_H #define CACHING_RELAY_BACKFILL_H @@ -22,44 +18,41 @@ #include "relay_discovery.h" #include "../nostr_core_lib/nostr_core/nostr_core.h" -/* Maximum limit we will bump a saturated page to before marking an author - * blocked at a timestamp. Keeps a single query bounded. */ -#define CR_BACKFILL_MAX_PAGE_CAP 1000 - typedef struct { - int window_index; - long current_window_s; - int cursor; /* current index into followed set */ - long until_cursor; /* current until timestamp for the current author */ - int in_progress; /* 1 if a window pass is in progress */ - long events_this_window; /* events pulled in current window */ - long events_total; /* events pulled across all windows */ - time_t last_tick; /* last time a pubkey was queried */ - time_t window_started; /* when current window pass started */ - int author_complete; /* 1 when current author is done, advance cursor */ - int blocked; /* 1 when current author is blocked at a saturated timestamp */ - long blocked_until_ts; /* timestamp where the author is blocked */ + int in_progress; /* 1 if any incomplete authors remain */ + long events_total; /* events pulled across all ticks (diagnostic) */ + time_t last_tick; /* last time an author was queried (throttle) */ + int author_round_cursor;/* round-robin cursor for author selection */ + /* Current backfill target (for UI status display). */ + char active_pubkey[65]; /* pubkey currently being backfilled (or "") */ + char active_relay[256]; /* relay URL currently being queried (or "") */ + int active_relay_got_eose; /* 1 if last query got EOSE, 0 if timed out */ } cr_backfill_t; -/* Initialize backfill state from the persisted config state. - * In PostgreSQL mode (pg_inbox initialized), restores per-author progress - * for the current window from the caching_backfill_progress table. */ +/* Global access to the current backfill target for status reporting. + * Returns pointers to static storage in the singleton cr_backfill_t. + * Safe to call from the main loop; not thread-safe but backfill is + * single-threaded. */ +const char *cr_backfill_active_pubkey(void); +const char *cr_backfill_active_relay(void); +int cr_backfill_active_got_eose(void); + +/* Initialize backfill state. Checks the caching_followed_pubkeys table for + * any incomplete authors; sets in_progress accordingly. */ void cr_backfill_init(cr_backfill_t *bf, cr_config_t *cfg); -/* Perform one backfill tick. This queries ONE followed pubkey (the one at - * cfg->state.backfill_cursor) and publishes results to the sink. Uses - * until-based pagination so authors with more events than the page size are - * fully drained across multiple ticks. When a full round-robin pass completes, - * advances the window and saves state. +/* Perform one backfill tick. Picks the next incomplete author from the DB + * (round-robin), queries one page of history, publishes it to the sink, and + * updates the per-author cursor in the DB. * * Returns: - * 1 if a tick was performed (a pubkey was queried) + * 1 if a tick was performed (an author was queried) * 0 if throttled (tick_interval not elapsed) - caller should pump pools - * -1 on hard error - * -2 if backfill is complete (all windows done) - caller should go steady-state + * -2 if backfill is complete (no incomplete authors) - caller goes steady-state */ int cr_backfill_tick(cr_backfill_t *bf, cr_config_t *cfg, - nostr_relay_pool_t *upstream, cr_pubkey_set_t *followed, + nostr_relay_pool_t *upstream, + cr_pubkey_set_t *followed, cr_sink_t *sink, const cr_relay_map_t *relay_map); #endif /* CACHING_RELAY_BACKFILL_H */ diff --git a/caching/src/config.c b/caching/src/config.c index 101c345..ecf499a 100644 --- a/caching/src/config.c +++ b/caching/src/config.c @@ -146,15 +146,10 @@ int cr_config_load(cr_config_t *cfg, const char *path) { cJSON *bf = cJSON_GetObjectItem(root, "backfill"); if (bf) { cfg->backfill.enabled = cJSON_IsTrue(cJSON_GetObjectItem(bf, "enabled")); - copy_long_array(cJSON_GetObjectItem(bf, "window_schedule_seconds"), - cfg->backfill.window_schedule_seconds, CR_MAX_WINDOWS, - &cfg->backfill.window_count); cJSON *ept = cJSON_GetObjectItem(bf, "events_per_tick"); if (ept) cfg->backfill.events_per_tick = (int)cJSON_GetNumberValue(ept); cJSON *tis = cJSON_GetObjectItem(bf, "tick_interval_seconds"); if (tis) cfg->backfill.tick_interval_seconds = (int)cJSON_GetNumberValue(tis); - cJSON *wcs = cJSON_GetObjectItem(bf, "window_cooldown_seconds"); - if (wcs) cfg->backfill.window_cooldown_seconds = (int)cJSON_GetNumberValue(wcs); } /* live */ @@ -174,25 +169,13 @@ int cr_config_load(cr_config_t *cfg, const char *path) { if (st) { cJSON *bu = cJSON_GetObjectItem(st, "backfilled_until"); if (bu) cfg->state.backfilled_until = (long)cJSON_GetNumberValue(bu); - cJSON *cwi = cJSON_GetObjectItem(st, "current_window_index"); - if (cwi) cfg->state.current_window_index = (int)cJSON_GetNumberValue(cwi); - cJSON *bc = cJSON_GetObjectItem(st, "backfill_cursor"); - if (bc) cfg->state.backfill_cursor = (int)cJSON_GetNumberValue(bc); } cJSON_Delete(root); /* Defaults if missing. */ - if (cfg->backfill.window_count == 0) { - static const long def_windows[] = {86400, 604800, 2592000, 7776000, 31536000}; - int n = (int)(sizeof(def_windows) / sizeof(def_windows[0])); - if (n > CR_MAX_WINDOWS) n = CR_MAX_WINDOWS; - for (int i = 0; i < n; i++) cfg->backfill.window_schedule_seconds[i] = def_windows[i]; - cfg->backfill.window_count = n; - } - if (cfg->backfill.events_per_tick == 0) cfg->backfill.events_per_tick = 50; + if (cfg->backfill.events_per_tick == 0) cfg->backfill.events_per_tick = 500; if (cfg->backfill.tick_interval_seconds == 0) cfg->backfill.tick_interval_seconds = 5; - if (cfg->backfill.window_cooldown_seconds == 0) cfg->backfill.window_cooldown_seconds = 60; if (cfg->live.resubscribe_interval_seconds == 0) cfg->live.resubscribe_interval_seconds = 300; if (cfg->follow_graph_refresh_seconds == 0) cfg->follow_graph_refresh_seconds = 600; @@ -253,13 +236,8 @@ int cr_config_save_state(cr_config_t *cfg) { cJSON *bf = cJSON_CreateObject(); cJSON_AddItemToObject(bf, "enabled", cJSON_CreateBool(cfg->backfill.enabled)); - cJSON *ws = cJSON_CreateArray(); - for (int i = 0; i < cfg->backfill.window_count; i++) - cJSON_AddItemToArray(ws, cJSON_CreateNumber(cfg->backfill.window_schedule_seconds[i])); - cJSON_AddItemToObject(bf, "window_schedule_seconds", ws); cJSON_AddItemToObject(bf, "events_per_tick", cJSON_CreateNumber(cfg->backfill.events_per_tick)); cJSON_AddItemToObject(bf, "tick_interval_seconds", cJSON_CreateNumber(cfg->backfill.tick_interval_seconds)); - cJSON_AddItemToObject(bf, "window_cooldown_seconds", cJSON_CreateNumber(cfg->backfill.window_cooldown_seconds)); cJSON_AddItemToObject(root, "backfill", bf); cJSON *lv = cJSON_CreateObject(); @@ -272,8 +250,6 @@ int cr_config_save_state(cr_config_t *cfg) { cJSON *st = cJSON_CreateObject(); cJSON_AddItemToObject(st, "backfilled_until", cJSON_CreateNumber(cfg->state.backfilled_until)); - cJSON_AddItemToObject(st, "current_window_index", cJSON_CreateNumber(cfg->state.current_window_index)); - cJSON_AddItemToObject(st, "backfill_cursor", cJSON_CreateNumber(cfg->state.backfill_cursor)); cJSON_AddItemToObject(root, "state", st); char *json = cJSON_Print(root); @@ -304,9 +280,8 @@ int cr_config_save_state(cr_config_t *cfg) { DEBUG_ERROR("config save: rename failed: %s", strerror(errno)); return -1; } - DEBUG_LOG("config state saved: backfilled_until=%ld window=%d cursor=%d", - cfg->state.backfilled_until, cfg->state.current_window_index, - cfg->state.backfill_cursor); + DEBUG_LOG("config state saved: backfilled_until=%ld", + cfg->state.backfilled_until); return 0; } diff --git a/caching/src/config.h b/caching/src/config.h index f90babf..abd3adf 100644 --- a/caching/src/config.h +++ b/caching/src/config.h @@ -11,18 +11,14 @@ #define CR_MAX_ROOT_NPUBS 16 #define CR_MAX_UPSTREAM 32 #define CR_MAX_KINDS 32 -#define CR_MAX_WINDOWS 16 #define CR_NPUB_LEN 64 /* npub1... bech32, generous */ #define CR_URL_LEN 256 #define CR_HEX_PUBKEY_LEN 65 /* 64 hex chars + NUL */ typedef struct { int enabled; - long window_schedule_seconds[CR_MAX_WINDOWS]; - int window_count; - int events_per_tick; + int events_per_tick; /* per-query page size (default 500) */ int tick_interval_seconds; - int window_cooldown_seconds; } cr_backfill_config_t; typedef struct { @@ -30,10 +26,12 @@ typedef struct { int resubscribe_interval_seconds; } cr_live_config_t; +/* Persistent state. The per-author until-cursor drain model stores all + * backfill progress in the caching_followed_pubkeys table, so the only + * state kept here is the legacy-mode first-time flag (used to drive relay + * discovery caching behavior). */ typedef struct { - long backfilled_until; /* unix ts; 0 = nothing backfilled yet */ - int current_window_index; /* index into window_schedule */ - int backfill_cursor; /* round-robin cursor over followed pubkeys */ + long backfilled_until; /* legacy: 0 = first-time startup */ } cr_state_t; typedef struct { diff --git a/caching/src/live_subscriber.c b/caching/src/live_subscriber.c index 47e0a8d..16b7568 100644 --- a/caching/src/live_subscriber.c +++ b/caching/src/live_subscriber.c @@ -12,8 +12,9 @@ /* Context passed as user_data to the subscription callbacks. */ typedef struct { - cr_sink_t *sink; - cr_live_t *live; + cr_sink_t *sink; + cr_live_t *live; + cr_config_t *cfg; } cr_live_ctx_t; static cr_live_ctx_t g_live_ctx; @@ -23,6 +24,22 @@ static void live_on_event(cJSON *event, const char *relay_url, void *user_data) (void)relay_url; ctx->live->events_received++; cr_sink_publish(ctx->sink, event); + + /* Detect admin kind-3 (contact list) changes from a root pubkey and + * signal the main loop to refresh the follow graph immediately. */ + if (ctx->cfg) { + cJSON *kind = cJSON_GetObjectItem(event, "kind"); + cJSON *pubkey = cJSON_GetObjectItem(event, "pubkey"); + if (kind && cJSON_IsNumber(kind) && kind->valuedouble == 3.0 && + pubkey && cJSON_IsString(pubkey)) { + if (cr_follow_is_root(ctx->cfg, cJSON_GetStringValue(pubkey))) { + ctx->live->follow_graph_changed = 1; + DEBUG_INFO("live: root kind-3 detected from %s, " + "signaling follow graph refresh", + cJSON_GetStringValue(pubkey)); + } + } + } } static void live_on_eose(cJSON **events, int event_count, void *user_data) { @@ -102,6 +119,7 @@ static int open_subs(cr_live_t *live, cr_config_t *cfg, nostr_relay_pool_t *upst cr_pubkey_set_t *followed, cr_sink_t *sink) { g_live_ctx.sink = sink; g_live_ctx.live = live; + g_live_ctx.cfg = cfg; int admin_count = 0; int follows_count = 0; diff --git a/caching/src/live_subscriber.h b/caching/src/live_subscriber.h index deb0548..511037c 100644 --- a/caching/src/live_subscriber.h +++ b/caching/src/live_subscriber.h @@ -21,6 +21,7 @@ typedef struct { nostr_pool_subscription_t *admin_sub; /* admin pubkeys, admin_kinds */ long events_received; time_t last_resubscribe; + int follow_graph_changed; /* set when a root npub publishes a kind-3 */ } cr_live_t; /* Open the live subscription(s). Returns 0 on success. */ diff --git a/caching/src/main.c b/caching/src/main.c index 4741ec6..0034cb3 100644 --- a/caching/src/main.c +++ b/caching/src/main.c @@ -50,6 +50,65 @@ static void nostr_log_forwarder(int level, const char *component, } } +/* Initialize per-relay backfill progress rows for every followed pubkey. + * For each author, merges its discovered outbox relays (from relay_map) + * with the bootstrap (upstream) relays from cfg, then inserts one + * caching_backfill_relay_progress row per relay (ON CONFLICT DO NOTHING). + * Safe to call repeatedly - existing rows are left untouched. */ +static void init_relay_progress_for_all(const cr_config_t *cfg, + const cr_relay_map_t *relay_map, + const cr_pubkey_set_t *followed) { + if (!followed || followed->count <= 0) return; + + /* Bootstrap relay URLs from cfg->upstream_relays. */ + const char **bootstrap = NULL; + int bootstrap_n = cfg->upstream_count; + if (bootstrap_n > 0) { + bootstrap = malloc(bootstrap_n * sizeof(char *)); + if (!bootstrap) return; + for (int i = 0; i < bootstrap_n; i++) + bootstrap[i] = cfg->upstream_relays[i]; + } + + for (int i = 0; i < followed->count; i++) { + const char *pk = followed->items[i]; + if (!pk || !*pk) continue; + + /* Collect this author's outbox relays. */ + const cr_outbox_entry_t *oe = NULL; + int outbox_n = 0; + if (relay_map) { + oe = cr_relay_map_get_outbox(relay_map, pk); + if (oe) outbox_n = oe->relay_count; + } + + int total = outbox_n + bootstrap_n; + if (total <= 0) continue; + + const char **urls = malloc(total * sizeof(char *)); + if (!urls) continue; + int n = 0; + if (oe) { + for (int j = 0; j < oe->relay_count && n < total; j++) + urls[n++] = oe->relays[j]; + } + for (int j = 0; j < bootstrap_n && n < total; j++) { + int dup = 0; + for (int k = 0; k < n; k++) { + if (strcmp(urls[k], bootstrap[j]) == 0) { dup = 1; break; } + } + if (!dup) urls[n++] = bootstrap[j]; + } + + if (n > 0) { + pg_inbox_init_relay_progress_for_author(pk, urls, n); + } + free(urls); + } + + free(bootstrap); +} + volatile sig_atomic_t g_shutdown = 0; static volatile sig_atomic_t g_reload = 0; @@ -175,10 +234,10 @@ int main(int argc, char **argv) { if (restart) { DEBUG_INFO("RESTART: resetting state to first-time startup"); cfg.state.backfilled_until = 0; - cfg.state.current_window_index = 0; - cfg.state.backfill_cursor = 0; if (pg_conn) { - /* Clear per-author backfill progress so the next run starts fresh. */ + /* Reset per-author backfill progress (caching_followed_pubkeys) + * so the next run starts fresh. The followed set itself is + * preserved; only cursor/completion state is reset. */ pg_inbox_reset_backfill_progress(); } else { cr_config_save_state(&cfg); @@ -242,6 +301,20 @@ int main(int argc, char **argv) { return 1; } + /* Sync the followed set to the DB so the backfill tick can iterate + * over it (per-author until-cursor drain). Also run the one-time + * migration from the old caching_backfill_progress table. */ + if (pg_conn) { + pg_inbox_migrate_backfill_progress(); + const char **root_pks = malloc(cfg.root_npub_count * sizeof(char *)); + for (int i = 0; i < cfg.root_npub_count; i++) + root_pks[i] = cfg.root_hex[i]; + pg_inbox_sync_followed_pubkeys((const char **)followed.items, + followed.count, root_pks, + cfg.root_npub_count); + free(root_pks); + } + if (g_shutdown) goto shutdown; /* Discover outbox relays (NIP-65) and compute minimum covering set. */ @@ -287,6 +360,13 @@ int main(int argc, char **argv) { free(statuses); } + /* Create per-relay backfill progress rows for every followed pubkey + * (outbox relays + bootstrap relays). Existing rows are left untouched + * so cursor/completion state is preserved across restarts. */ + if (pg_conn) { + init_relay_progress_for_all(&cfg, &relay_map, &followed); + } + /* Open live subscription. */ cr_live_t live; if (cfg.live.enabled) { @@ -307,10 +387,11 @@ int main(int argc, char **argv) { /* Initial status heartbeat in PostgreSQL mode. */ if (pg_conn) { + int bf_complete = 0, bf_total = 0; + pg_inbox_count_backfill_progress(&bf_complete, &bf_total); pg_inbox_update_status("starting", config_generation, (long)time(NULL), followed.count, relay_map.selected_count, 0, - cfg.state.current_window_index, - cfg.state.backfill_cursor, 0, 0, NULL, 0); + bf_complete, bf_total, 0, 0, NULL, 0); } DEBUG_INFO("entering main loop"); @@ -322,7 +403,8 @@ int main(int argc, char **argv) { cr_config_t newcfg; int reload_ok = 0; if (pg_conn) { - if (pg_config_load(&newcfg) == 0) reload_ok = 1; + if (pg_config_load(&newcfg) == 0 && + cr_follow_decode_roots(&newcfg) == 0) reload_ok = 1; } else if (config_path) { if (cr_config_load(&newcfg, config_path) == 0) reload_ok = 1; } @@ -332,6 +414,9 @@ int main(int argc, char **argv) { cr_config_free(&cfg); cfg = newcfg; DEBUG_INFO("config reloaded"); + /* Force an immediate follow-graph refresh so any new + * root npubs are picked up right away. */ + last_follow_refresh = 0; } else { DEBUG_ERROR("config reload failed, keeping old config"); } @@ -346,14 +431,29 @@ int main(int argc, char **argv) { config_generation, new_gen); cr_config_t newcfg; if (pg_config_load(&newcfg) == 0) { - newcfg.state = cfg.state; - cr_config_free(&cfg); - cfg = newcfg; - config_generation = new_gen; - DEBUG_INFO("config reloaded from PostgreSQL"); - /* Resubscribe live with new config. */ - if (cfg.live.enabled) { - cr_live_resubscribe(&live, &cfg, upstream, &followed, &sink); + /* Decode root npubs to hex — pg_config_load fills + * root_npubs[] but NOT root_hex[] / root_hex_ready. + * Without this, cr_follow_is_root() returns 0 for + * everything and the new root's follows are never + * resolved. */ + if (cr_follow_decode_roots(&newcfg) != 0) { + DEBUG_ERROR("config reload: failed to decode root npubs, keeping old config"); + cr_config_free(&newcfg); + } else { + newcfg.state = cfg.state; + cr_config_free(&cfg); + cfg = newcfg; + config_generation = new_gen; + DEBUG_INFO("config reloaded from PostgreSQL"); + /* Force an immediate follow-graph refresh so the + * new root npub's follows are picked up right + * away (instead of waiting up to + * follow_graph_refresh_seconds). */ + last_follow_refresh = 0; + /* Resubscribe live with new config. */ + if (cfg.live.enabled) { + cr_live_resubscribe(&live, &cfg, upstream, &followed, &sink); + } } } else { DEBUG_ERROR("PostgreSQL config reload failed, keeping old config"); @@ -373,6 +473,49 @@ int main(int argc, char **argv) { int brc = cr_backfill_tick(&bf, &cfg, upstream, &followed, &sink, &relay_map); (void)brc; + /* Immediate follow-graph refresh when a root npub publishes a new + * kind-3 contact list (detected by the live subscriber). */ + if (cfg.live.enabled && live.follow_graph_changed) { + live.follow_graph_changed = 0; + DEBUG_INFO("live: admin kind-3 detected, refreshing follow graph immediately"); + cr_pubkey_set_t new_followed; + cr_pubkey_set_init(&new_followed); + if (cr_follow_resolve(&cfg, upstream, &new_followed) == 0) { + int changed = (new_followed.count != followed.count); + if (!changed) { + for (int i = 0; i < followed.count; i++) { + if (!cr_pubkey_set_contains(&new_followed, followed.items[i])) { + changed = 1; break; + } + } + } + cr_pubkey_set_free(&followed); + followed = new_followed; + if (pg_conn) { + const char **root_pks = malloc(cfg.root_npub_count * sizeof(char *)); + for (int i = 0; i < cfg.root_npub_count; i++) + root_pks[i] = cfg.root_hex[i]; + pg_inbox_sync_followed_pubkeys((const char **)followed.items, + followed.count, root_pks, + cfg.root_npub_count); + free(root_pks); + /* Create relay progress rows for newly added follows. + * Existing rows are preserved (ON CONFLICT DO NOTHING). */ + init_relay_progress_for_all(&cfg, &relay_map, &followed); + } + if (changed && cfg.live.enabled) { + cr_live_resubscribe(&live, &cfg, upstream, &followed, &sink); + } + /* Reset the backfill in_progress flag in case we had entered + * steady-state; new follows need to be drained. */ + bf.in_progress = 1; + last_follow_refresh = time(NULL); + } else { + DEBUG_WARN("immediate follow graph refresh failed"); + cr_pubkey_set_free(&new_followed); + } + } + /* Periodic follow-graph refresh. */ time_t now = time(NULL); if (cfg.follow_graph_refresh_seconds > 0 && @@ -392,9 +535,30 @@ int main(int argc, char **argv) { } cr_pubkey_set_free(&followed); followed = new_followed; + /* Sync the refreshed followed set to the DB so newly added + * follows get backfilled and dropped follows stop. Existing + * cursor/completion state is preserved (upsert only touches + * is_root and last_seen). */ + if (pg_conn) { + const char **root_pks = malloc(cfg.root_npub_count * sizeof(char *)); + for (int i = 0; i < cfg.root_npub_count; i++) + root_pks[i] = cfg.root_hex[i]; + pg_inbox_sync_followed_pubkeys((const char **)followed.items, + followed.count, root_pks, + cfg.root_npub_count); + free(root_pks); + /* Create relay progress rows for newly added follows. + * Existing rows are preserved (ON CONFLICT DO NOTHING). */ + init_relay_progress_for_all(&cfg, &relay_map, &followed); + } if (changed && cfg.live.enabled) { cr_live_resubscribe(&live, &cfg, upstream, &followed, &sink); } + /* Reset the backfill in_progress flag in case we had entered + * steady-state; new follows need to be drained. The backfill + * tick will quickly re-enter steady-state if there are no + * incomplete authors, so this is cheap. */ + bf.in_progress = 1; } else { DEBUG_WARN("follow graph refresh failed"); cr_pubkey_set_free(&new_followed); @@ -429,10 +593,11 @@ int main(int argc, char **argv) { free(listed); free(statuses); } + int bf_complete = 0, bf_total = 0; + pg_inbox_count_backfill_progress(&bf_complete, &bf_total); pg_inbox_update_status("running", config_generation, (long)now, followed.count, relay_map.selected_count, - connected, cfg.state.current_window_index, - cfg.state.backfill_cursor, + connected, bf_complete, bf_total, events_fetched, inbox_inserts, NULL, 0); last_status_heartbeat = now; } @@ -444,10 +609,11 @@ int main(int argc, char **argv) { cr_live_close(&live); if (!pg_conn) cr_config_save_state(&cfg); if (pg_conn) { + int bf_complete = 0, bf_total = 0; + pg_inbox_count_backfill_progress(&bf_complete, &bf_total); pg_inbox_update_status("stopped", config_generation, (long)time(NULL), followed.count, relay_map.selected_count, 0, - cfg.state.current_window_index, - cfg.state.backfill_cursor, + bf_complete, bf_total, live.events_received + bf.events_total, sink.published_ok, NULL, 0); } diff --git a/caching/src/pg_config.c b/caching/src/pg_config.c index 11078d1..6af7f92 100644 --- a/caching/src/pg_config.c +++ b/caching/src/pg_config.c @@ -166,49 +166,31 @@ int pg_config_load(cr_config_t *cfg) { /* backfill */ cfg->backfill.enabled = get_bool("caching_backfill_enabled", 1); - char *windows = get_key("caching_backfill_windows"); - split_csv_long(windows, cfg->backfill.window_schedule_seconds, - CR_MAX_WINDOWS, &cfg->backfill.window_count); - free(windows); cfg->backfill.events_per_tick = - get_int("caching_backfill_page_size", 50); + get_int("caching_backfill_page_size", 500); /* tick interval is stored in ms in the config table; convert to seconds. */ int tick_ms = get_int("caching_backfill_tick_interval_ms", 5000); cfg->backfill.tick_interval_seconds = (tick_ms + 999) / 1000; if (cfg->backfill.tick_interval_seconds < 1) cfg->backfill.tick_interval_seconds = 1; - cfg->backfill.window_cooldown_seconds = - get_int("caching_backfill_window_cooldown_seconds", 60); /* follow graph refresh */ cfg->follow_graph_refresh_seconds = get_int("caching_follow_graph_refresh_seconds", 600); - /* Defaults if missing (mirror cr_config_load). */ - if (cfg->backfill.window_count == 0) { - static const long def_windows[] = {86400, 604800, 2592000, 7776000, 31536000}; - int n = (int)(sizeof(def_windows) / sizeof(def_windows[0])); - if (n > CR_MAX_WINDOWS) n = CR_MAX_WINDOWS; - for (int i = 0; i < n; i++) - cfg->backfill.window_schedule_seconds[i] = def_windows[i]; - cfg->backfill.window_count = n; - } + /* Defaults if missing. */ if (cfg->backfill.events_per_tick == 0) - cfg->backfill.events_per_tick = 50; + cfg->backfill.events_per_tick = 500; if (cfg->backfill.tick_interval_seconds == 0) cfg->backfill.tick_interval_seconds = 5; - if (cfg->backfill.window_cooldown_seconds == 0) - cfg->backfill.window_cooldown_seconds = 60; if (cfg->live.resubscribe_interval_seconds == 0) cfg->live.resubscribe_interval_seconds = 300; if (cfg->follow_graph_refresh_seconds == 0) cfg->follow_graph_refresh_seconds = 600; - /* State: initialize to defaults for this phase. Phase 7 will read - * caching_backfill_progress / caching_service_state. */ + /* State: per-author backfill progress lives in caching_followed_pubkeys. + * backfilled_until is only used as a first-time flag in legacy mode. */ cfg->state.backfilled_until = 0; - cfg->state.current_window_index = 0; - cfg->state.backfill_cursor = 0; /* Validation. */ if (cfg->root_npub_count == 0) { diff --git a/caching/src/pg_inbox.c b/caching/src/pg_inbox.c index a005414..596470d 100644 --- a/caching/src/pg_inbox.c +++ b/caching/src/pg_inbox.c @@ -148,8 +148,8 @@ int pg_inbox_update_status(const char *service_state, int followed_author_count, int selected_relay_count, int connected_relay_count, - int current_window_index, - int backfill_cursor, + int backfill_authors_complete, + int backfill_authors_total, long events_fetched, long inbox_inserts, const char *last_error, @@ -160,15 +160,15 @@ int pg_inbox_update_status(const char *service_state, } char gen_buf[32], hb_buf[32], fac_buf[16], src_buf[16], crc_buf[16]; - char cwi_buf[16], bc_buf[16], ef_buf[32], ii_buf[32], lea_buf[32]; + char bac_buf[16], bat_buf[16], ef_buf[32], ii_buf[32], lea_buf[32]; snprintf(gen_buf, sizeof(gen_buf), "%ld", config_generation); snprintf(hb_buf, sizeof(hb_buf), "%ld", heartbeat_at); snprintf(fac_buf, sizeof(fac_buf), "%d", followed_author_count); snprintf(src_buf, sizeof(src_buf), "%d", selected_relay_count); snprintf(crc_buf, sizeof(crc_buf), "%d", connected_relay_count); - snprintf(cwi_buf, sizeof(cwi_buf), "%d", current_window_index); - snprintf(bc_buf, sizeof(bc_buf), "%d", backfill_cursor); + snprintf(bac_buf, sizeof(bac_buf), "%d", backfill_authors_complete); + snprintf(bat_buf, sizeof(bat_buf), "%d", backfill_authors_total); snprintf(ef_buf, sizeof(ef_buf), "%ld", events_fetched); snprintf(ii_buf, sizeof(ii_buf), "%ld", inbox_inserts); if (last_error_at > 0) { @@ -194,10 +194,10 @@ int pg_inbox_update_status(const char *service_state, vals[n] = src_buf; lens[n] = (int)strlen(src_buf); fmts[n] = 0; n++; /* $6 connected_relay_count */ vals[n] = crc_buf; lens[n] = (int)strlen(crc_buf); fmts[n] = 0; n++; - /* $7 current_window_index */ - vals[n] = cwi_buf; lens[n] = (int)strlen(cwi_buf); fmts[n] = 0; n++; - /* $8 backfill_cursor */ - vals[n] = bc_buf; lens[n] = (int)strlen(bc_buf); fmts[n] = 0; n++; + /* $7 backfill_authors_complete */ + vals[n] = bac_buf; lens[n] = (int)strlen(bac_buf); fmts[n] = 0; n++; + /* $8 backfill_authors_total */ + vals[n] = bat_buf; lens[n] = (int)strlen(bat_buf); fmts[n] = 0; n++; /* $9 events_fetched */ vals[n] = ef_buf; lens[n] = (int)strlen(ef_buf); fmts[n] = 0; n++; /* $10 inbox_inserts */ @@ -211,7 +211,7 @@ int pg_inbox_update_status(const char *service_state, "INSERT INTO caching_service_state " "(id, service_state, config_generation, heartbeat_at, " " followed_author_count, selected_relay_count, connected_relay_count, " - " current_window_index, backfill_cursor, events_fetched, inbox_inserts, " + " backfill_authors_complete, backfill_authors_total, events_fetched, inbox_inserts, " " last_error, last_error_at, updated_at) " "VALUES (1, $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, " " CASE WHEN $12 = '' THEN NULL ELSE $12::BIGINT END, " @@ -223,8 +223,8 @@ int pg_inbox_update_status(const char *service_state, " followed_author_count= EXCLUDED.followed_author_count, " " selected_relay_count = EXCLUDED.selected_relay_count, " " connected_relay_count= EXCLUDED.connected_relay_count, " - " current_window_index = EXCLUDED.current_window_index, " - " backfill_cursor = EXCLUDED.backfill_cursor, " + " backfill_authors_complete = EXCLUDED.backfill_authors_complete, " + " backfill_authors_total = EXCLUDED.backfill_authors_total, " " events_fetched = EXCLUDED.events_fetched, " " inbox_inserts = EXCLUDED.inbox_inserts, " " last_error = COALESCE(EXCLUDED.last_error, caching_service_state.last_error), " @@ -288,190 +288,21 @@ long pg_inbox_get_config_generation(void) { } /* ------------------------------------------------------------------ */ -/* Backfill progress persistence */ +/* Per-author until-cursor drain backfill model */ /* ------------------------------------------------------------------ */ -int pg_inbox_save_backfill_progress(const char *author_pubkey, - int window_index, - long window_anchor, - long until_cursor, - int complete) { - if (!g_pg) { - DEBUG_ERROR("pg_inbox: not initialized"); - return -1; - } - if (!author_pubkey) { - DEBUG_WARN("pg_inbox: save_backfill_progress called with NULL author"); - return -1; - } - - char wi_buf[16], wa_buf[32], uc_buf[32], cmp_buf[8]; - snprintf(wi_buf, sizeof(wi_buf), "%d", window_index); - snprintf(wa_buf, sizeof(wa_buf), "%ld", window_anchor); - snprintf(uc_buf, sizeof(uc_buf), "%ld", until_cursor); - snprintf(cmp_buf, sizeof(cmp_buf), "%d", complete ? 1 : 0); - - const char *vals[5] = { author_pubkey, wi_buf, wa_buf, uc_buf, cmp_buf }; - int lens[5] = { - (int)strlen(author_pubkey), - (int)strlen(wi_buf), - (int)strlen(wa_buf), - (int)strlen(uc_buf), - (int)strlen(cmp_buf), - }; - int fmts[5] = { 0, 0, 0, 0, 0 }; - - const char *sql = - "INSERT INTO caching_backfill_progress " - "(author_pubkey, window_index, window_anchor, until_cursor, complete, updated_at) " - "VALUES ($1, $2, $3, $4, $5::BOOLEAN, EXTRACT(EPOCH FROM NOW())::BIGINT) " - "ON CONFLICT (author_pubkey, window_index) DO UPDATE SET " - " until_cursor = EXCLUDED.until_cursor, " - " complete = EXCLUDED.complete, " - " updated_at = EXCLUDED.updated_at"; - - PGresult *res = PQexecParams(g_pg, sql, 5, NULL, vals, lens, fmts, 0); - if (!res) { - DEBUG_ERROR("pg_inbox: save_backfill_progress returned NULL result"); - return -1; - } - ExecStatusType st = PQresultStatus(res); - if (st != PGRES_COMMAND_OK) { - DEBUG_ERROR("pg_inbox: save_backfill_progress failed: %s", - PQresultErrorMessage(res)); - PQclear(res); - return -1; - } - PQclear(res); - return 0; -} - -int pg_inbox_load_backfill_progress(const char *author_pubkey, - int window_index, - long *out_until_cursor, - int *out_complete, - int *out_found) { - if (out_found) *out_found = 0; - if (!g_pg) { - DEBUG_ERROR("pg_inbox: not initialized"); - return -1; - } - if (!author_pubkey) return -1; - - char wi_buf[16]; - snprintf(wi_buf, sizeof(wi_buf), "%d", window_index); - - const char *vals[2] = { author_pubkey, wi_buf }; - int lens[2] = { (int)strlen(author_pubkey), (int)strlen(wi_buf) }; - int fmts[2] = { 0, 0 }; - - const char *sql = - "SELECT until_cursor, complete FROM caching_backfill_progress " - "WHERE author_pubkey = $1 AND window_index = $2"; - - PGresult *res = PQexecParams(g_pg, sql, 2, NULL, vals, lens, fmts, 0); - if (!res) { - DEBUG_ERROR("pg_inbox: load_backfill_progress returned NULL result"); - return -1; - } - if (PQresultStatus(res) != PGRES_TUPLES_OK) { - DEBUG_ERROR("pg_inbox: load_backfill_progress failed: %s", - PQresultErrorMessage(res)); - PQclear(res); - return -1; - } - if (PQntuples(res) < 1) { - /* Not found - not an error. */ - PQclear(res); - return 0; - } - - if (out_until_cursor) { - if (PQgetisnull(res, 0, 0)) { - *out_until_cursor = 0; - } else { - *out_until_cursor = strtol(PQgetvalue(res, 0, 0), NULL, 10); - } - } - if (out_complete) { - if (PQgetisnull(res, 0, 1)) { - *out_complete = 0; - } else { - const char *v = PQgetvalue(res, 0, 1); - /* boolean comes back as 't'/'f' or '1'/'0' depending on output mode. */ - *out_complete = (v && (v[0] == 't' || v[0] == 'T' || v[0] == '1')) ? 1 : 0; - } - } - if (out_found) *out_found = 1; - PQclear(res); - return 0; -} - -cJSON *pg_inbox_load_incomplete_progress(int window_index) { - if (!g_pg) { - DEBUG_ERROR("pg_inbox: not initialized"); - return NULL; - } - - char wi_buf[16]; - snprintf(wi_buf, sizeof(wi_buf), "%d", window_index); - - const char *vals[1] = { wi_buf }; - int lens[1] = { (int)strlen(wi_buf) }; - int fmts[1] = { 0 }; - - const char *sql = - "SELECT author_pubkey, until_cursor, complete FROM caching_backfill_progress " - "WHERE window_index = $1 AND complete = FALSE"; - - PGresult *res = PQexecParams(g_pg, sql, 1, NULL, vals, lens, fmts, 0); - if (!res) { - DEBUG_ERROR("pg_inbox: load_incomplete_progress returned NULL result"); - return NULL; - } - if (PQresultStatus(res) != PGRES_TUPLES_OK) { - DEBUG_ERROR("pg_inbox: load_incomplete_progress failed: %s", - PQresultErrorMessage(res)); - PQclear(res); - return NULL; - } - - int n = PQntuples(res); - if (n <= 0) { - PQclear(res); - return NULL; - } - - cJSON *arr = cJSON_CreateArray(); - if (!arr) { - PQclear(res); - return NULL; - } - for (int i = 0; i < n; i++) { - cJSON *obj = cJSON_CreateObject(); - if (!obj) continue; - const char *pk = PQgetisnull(res, i, 0) ? "" : PQgetvalue(res, i, 0); - long uc = PQgetisnull(res, i, 1) ? 0 : strtol(PQgetvalue(res, i, 1), NULL, 10); - int cmp = 0; - if (!PQgetisnull(res, i, 1)) { - const char *v = PQgetvalue(res, i, 2); - cmp = (v && (v[0] == 't' || v[0] == 'T' || v[0] == '1')) ? 1 : 0; - } - cJSON_AddStringToObject(obj, "author_pubkey", pk); - cJSON_AddNumberToObject(obj, "until_cursor", (double)uc); - cJSON_AddBoolToObject(obj, "complete", cmp ? 1 : 0); - cJSON_AddItemToArray(arr, obj); - } - PQclear(res); - return arr; -} - int pg_inbox_reset_backfill_progress(void) { if (!g_pg) { DEBUG_ERROR("pg_inbox: not initialized"); return -1; } - PGresult *res = PQexec(g_pg, "DELETE FROM caching_backfill_progress"); + /* Per-author drain model: reset cursor/completion state for all rows + * in caching_followed_pubkeys (do NOT delete the rows themselves, so + * the followed set is preserved across a reset). */ + PGresult *res = PQexec(g_pg, + "UPDATE caching_followed_pubkeys " + "SET until_cursor = 0, backfill_complete = FALSE, events_fetched = 0, " + " updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT"); if (!res) { DEBUG_ERROR("pg_inbox: reset_backfill_progress returned NULL result"); return -1; @@ -486,3 +317,786 @@ int pg_inbox_reset_backfill_progress(void) { PQclear(res); return 0; } + +int pg_inbox_sync_followed_pubkeys(const char **pubkeys, int count, + const char **root_pubkeys, int root_count) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!pubkeys || count <= 0) { + /* Nothing to sync - not an error. */ + return 0; + } + + /* Open a transaction so a failure mid-way rolls back all upserts. */ + PGresult *begin = PQexec(g_pg, "BEGIN"); + if (!begin || PQresultStatus(begin) != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: sync_followed_pubkeys BEGIN failed: %s", + begin ? PQresultErrorMessage(begin) : "NULL result"); + if (begin) PQclear(begin); + return -1; + } + PQclear(begin); + + const char *sql = + "INSERT INTO caching_followed_pubkeys (pubkey, is_root, last_seen, updated_at) " + "VALUES ($1, $2::BOOLEAN, EXTRACT(EPOCH FROM NOW())::BIGINT, " + " EXTRACT(EPOCH FROM NOW())::BIGINT) " + "ON CONFLICT (pubkey) DO UPDATE SET " + " is_root = EXCLUDED.is_root, " + " last_seen = EXCLUDED.last_seen, " + " updated_at = EXCLUDED.updated_at"; + + int rc = 0; + for (int i = 0; i < count; i++) { + const char *pk = pubkeys[i]; + if (!pk || !*pk) continue; + + /* Determine is_root by scanning the root_pubkeys array. */ + int is_root = 0; + if (root_pubkeys && root_count > 0) { + for (int r = 0; r < root_count; r++) { + if (root_pubkeys[r] && strcmp(root_pubkeys[r], pk) == 0) { + is_root = 1; + break; + } + } + } + const char *ir_buf = is_root ? "TRUE" : "FALSE"; + + const char *vals[2] = { pk, ir_buf }; + int lens[2] = { (int)strlen(pk), (int)strlen(ir_buf) }; + int fmts[2] = { 0, 0 }; + + PGresult *res = PQexecParams(g_pg, sql, 2, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: sync_followed_pubkeys returned NULL result for %s", pk); + rc = -1; + break; + } + ExecStatusType st = PQresultStatus(res); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: sync_followed_pubkeys failed for %s: %s", + pk, PQresultErrorMessage(res)); + PQclear(res); + rc = -1; + break; + } + PQclear(res); + } + + PGresult *end = PQexec(g_pg, rc == 0 ? "COMMIT" : "ROLLBACK"); + if (!end || PQresultStatus(end) != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: sync_followed_pubkeys %s failed: %s", + rc == 0 ? "COMMIT" : "ROLLBACK", + end ? PQresultErrorMessage(end) : "NULL result"); + if (end) PQclear(end); + return -1; + } + PQclear(end); + return rc; +} + +int pg_inbox_pick_next_backfill_author(char *out_pk, int pk_len, + long *out_until_cursor, + int *out_is_root, + int *round_cursor) { + if (out_pk) out_pk[0] = '\0'; + if (out_until_cursor) *out_until_cursor = 0; + if (out_is_root) *out_is_root = 0; + if (!round_cursor) *round_cursor = 0; + + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!out_pk || pk_len <= 0 || !round_cursor) { + DEBUG_WARN("pg_inbox: pick_next_backfill_author called with bad args"); + return -1; + } + + /* First, count incomplete authors so we can wrap the round-robin cursor. */ + PGresult *cnt_res = PQexec(g_pg, + "SELECT COUNT(*) FROM caching_followed_pubkeys WHERE backfill_complete = FALSE"); + if (!cnt_res) { + DEBUG_ERROR("pg_inbox: pick_next_backfill_author count returned NULL result"); + return -1; + } + if (PQresultStatus(cnt_res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: pick_next_backfill_author count failed: %s", + PQresultErrorMessage(cnt_res)); + PQclear(cnt_res); + return -1; + } + if (PQntuples(cnt_res) < 1 || PQgetisnull(cnt_res, 0, 0)) { + PQclear(cnt_res); + return -1; + } + long incomplete = strtol(PQgetvalue(cnt_res, 0, 0), NULL, 10); + PQclear(cnt_res); + if (incomplete <= 0) { + return -1; + } + + /* Wrap the round-robin cursor into range. */ + if (*round_cursor < 0) *round_cursor = 0; + long offset = (*round_cursor) % incomplete; + + char off_buf[32]; + snprintf(off_buf, sizeof(off_buf), "%ld", offset); + + const char *vals[1] = { off_buf }; + int lens[1] = { (int)strlen(off_buf) }; + int fmts[1] = { 0 }; + + const char *sql = + "SELECT pubkey, until_cursor, is_root FROM caching_followed_pubkeys " + "WHERE backfill_complete = FALSE " + "ORDER BY pubkey " + "LIMIT 1 OFFSET ($1 % (SELECT COUNT(*) FROM caching_followed_pubkeys " + " WHERE backfill_complete = FALSE))"; + + PGresult *res = PQexecParams(g_pg, sql, 1, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: pick_next_backfill_author returned NULL result"); + return -1; + } + if (PQresultStatus(res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: pick_next_backfill_author failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + if (PQntuples(res) < 1) { + PQclear(res); + return -1; + } + + const char *pk = PQgetisnull(res, 0, 0) ? "" : PQgetvalue(res, 0, 0); + if ((int)strlen(pk) >= pk_len) { + DEBUG_WARN("pg_inbox: pick_next_backfill_author pubkey buffer too small"); + PQclear(res); + return -1; + } + strcpy(out_pk, pk); + + if (out_until_cursor) { + *out_until_cursor = PQgetisnull(res, 0, 1) ? 0 + : strtol(PQgetvalue(res, 0, 1), NULL, 10); + } + if (out_is_root) { + if (PQgetisnull(res, 0, 2)) { + *out_is_root = 0; + } else { + const char *v = PQgetvalue(res, 0, 2); + *out_is_root = (v && (v[0] == 't' || v[0] == 'T' || v[0] == '1')) ? 1 : 0; + } + } + PQclear(res); + + /* Advance the round-robin cursor. */ + (*round_cursor)++; + return 0; +} + +int pg_inbox_update_backfill_progress(const char *pk, long until_cursor, + int complete, int events_this_page) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!pk) { + DEBUG_WARN("pg_inbox: update_backfill_progress called with NULL pk"); + return -1; + } + + char uc_buf[32], cmp_buf[8], ep_buf[16]; + snprintf(uc_buf, sizeof(uc_buf), "%ld", until_cursor); + snprintf(cmp_buf, sizeof(cmp_buf), "%d", complete ? 1 : 0); + snprintf(ep_buf, sizeof(ep_buf), "%d", events_this_page); + + const char *vals[4] = { pk, uc_buf, cmp_buf, ep_buf }; + int lens[4] = { + (int)strlen(pk), + (int)strlen(uc_buf), + (int)strlen(cmp_buf), + (int)strlen(ep_buf), + }; + int fmts[4] = { 0, 0, 0, 0 }; + + const char *sql = + "UPDATE caching_followed_pubkeys " + "SET until_cursor = $2::BIGINT, backfill_complete = $3::BOOLEAN, " + " events_fetched = events_fetched + $4::INTEGER, " + " updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT " + "WHERE pubkey = $1"; + + PGresult *res = PQexecParams(g_pg, sql, 4, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: update_backfill_progress returned NULL result"); + return -1; + } + ExecStatusType st = PQresultStatus(res); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: update_backfill_progress failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + PQclear(res); + return 0; +} + +int pg_inbox_migrate_backfill_progress(void) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + + /* Only migrate if the new table is empty and the old table has rows. */ + PGresult *new_cnt = PQexec(g_pg, + "SELECT COUNT(*) FROM caching_followed_pubkeys"); + if (!new_cnt) { + DEBUG_ERROR("pg_inbox: migrate returned NULL result (new count)"); + return -1; + } + if (PQresultStatus(new_cnt) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: migrate new count failed: %s", + PQresultErrorMessage(new_cnt)); + PQclear(new_cnt); + return -1; + } + long new_rows = PQntuples(new_cnt) < 1 || PQgetisnull(new_cnt, 0, 0) + ? 0 : strtol(PQgetvalue(new_cnt, 0, 0), NULL, 10); + PQclear(new_cnt); + if (new_rows > 0) { + DEBUG_INFO("pg_inbox: migrate skipped, caching_followed_pubkeys not empty"); + return 0; + } + + PGresult *old_cnt = PQexec(g_pg, + "SELECT COUNT(*) FROM caching_backfill_progress"); + if (!old_cnt) { + DEBUG_ERROR("pg_inbox: migrate returned NULL result (old count)"); + return -1; + } + if (PQresultStatus(old_cnt) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: migrate old count failed: %s", + PQresultErrorMessage(old_cnt)); + PQclear(old_cnt); + return -1; + } + long old_rows = PQntuples(old_cnt) < 1 || PQgetisnull(old_cnt, 0, 0) + ? 0 : strtol(PQgetvalue(old_cnt, 0, 0), NULL, 10); + PQclear(old_cnt); + if (old_rows <= 0) { + DEBUG_INFO("pg_inbox: migrate skipped, caching_backfill_progress empty"); + return 0; + } + + const char *sql = + "INSERT INTO caching_followed_pubkeys " + " (pubkey, is_root, until_cursor, backfill_complete, " + " first_seen, last_seen, updated_at) " + "SELECT DISTINCT author_pubkey, FALSE, 0, FALSE, " + " EXTRACT(EPOCH FROM NOW())::BIGINT, " + " EXTRACT(EPOCH FROM NOW())::BIGINT, " + " EXTRACT(EPOCH FROM NOW())::BIGINT " + "FROM caching_backfill_progress " + "ON CONFLICT (pubkey) DO NOTHING"; + + PGresult *res = PQexec(g_pg, sql); + if (!res) { + DEBUG_ERROR("pg_inbox: migrate returned NULL result"); + return -1; + } + ExecStatusType st = PQresultStatus(res); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: migrate failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + PQclear(res); + DEBUG_INFO("pg_inbox: migrated %ld author(s) from caching_backfill_progress", old_rows); + return 0; +} + +int pg_inbox_count_backfill_progress(int *out_complete, int *out_total) { + if (out_complete) *out_complete = 0; + if (out_total) *out_total = 0; + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + + PGresult *cmp_res = PQexec(g_pg, + "SELECT COUNT(*) FROM caching_followed_pubkeys WHERE backfill_complete = TRUE"); + if (!cmp_res) { + DEBUG_ERROR("pg_inbox: count_backfill_progress complete returned NULL result"); + return -1; + } + if (PQresultStatus(cmp_res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: count_backfill_progress complete failed: %s", + PQresultErrorMessage(cmp_res)); + PQclear(cmp_res); + return -1; + } + if (out_complete) { + *out_complete = PQntuples(cmp_res) < 1 || PQgetisnull(cmp_res, 0, 0) + ? 0 : (int)strtol(PQgetvalue(cmp_res, 0, 0), NULL, 10); + } + PQclear(cmp_res); + + PGresult *tot_res = PQexec(g_pg, + "SELECT COUNT(*) FROM caching_followed_pubkeys"); + if (!tot_res) { + DEBUG_ERROR("pg_inbox: count_backfill_progress total returned NULL result"); + return -1; + } + if (PQresultStatus(tot_res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: count_backfill_progress total failed: %s", + PQresultErrorMessage(tot_res)); + PQclear(tot_res); + return -1; + } + if (out_total) { + *out_total = PQntuples(tot_res) < 1 || PQgetisnull(tot_res, 0, 0) + ? 0 : (int)strtol(PQgetvalue(tot_res, 0, 0), NULL, 10); + } + PQclear(tot_res); + return 0; +} + +/* ------------------------------------------------------------------ */ +/* Per-relay backfill progress (relay-by-relay drain model) */ +/* ------------------------------------------------------------------ */ + +int pg_inbox_init_relay_progress_for_author(const char *pk, + const char **relay_urls, + int relay_count) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!pk || !relay_urls || relay_count <= 0) { + /* Nothing to do - not an error. */ + return 0; + } + + const char *sql = + "INSERT INTO caching_backfill_relay_progress " + " (author_pubkey, relay_url, until_cursor, complete, events_fetched, updated_at) " + "VALUES ($1, $2, 0, FALSE, 0, EXTRACT(EPOCH FROM NOW())::BIGINT) " + "ON CONFLICT (author_pubkey, relay_url) DO NOTHING"; + + int rc = 0; + for (int i = 0; i < relay_count; i++) { + const char *url = relay_urls[i]; + if (!url || !*url) continue; + + const char *vals[2] = { pk, url }; + int lens[2] = { (int)strlen(pk), (int)strlen(url) }; + int fmts[2] = { 0, 0 }; + + PGresult *res = PQexecParams(g_pg, sql, 2, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: init_relay_progress returned NULL result for %s @ %s", + pk, url); + rc = -1; + break; + } + ExecStatusType st = PQresultStatus(res); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: init_relay_progress failed for %s @ %s: %s", + pk, url, PQresultErrorMessage(res)); + PQclear(res); + rc = -1; + break; + } + PQclear(res); + } + return rc; +} + +int pg_inbox_pick_next_author_with_incomplete_relays(char *out_pk, int pk_len, + int *round_cursor) { + if (out_pk) out_pk[0] = '\0'; + if (round_cursor && *round_cursor < 0) *round_cursor = 0; + + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!out_pk || pk_len <= 0 || !round_cursor) { + DEBUG_WARN("pg_inbox: pick_next_author_with_incomplete_relays bad args"); + return -1; + } + + /* Count distinct authors that still have at least one incomplete relay. */ + PGresult *cnt_res = PQexec(g_pg, + "SELECT COUNT(DISTINCT author_pubkey) FROM caching_backfill_relay_progress " + "WHERE complete = FALSE"); + if (!cnt_res) { + DEBUG_ERROR("pg_inbox: pick_next_author_with_incomplete_relays count NULL"); + return -1; + } + if (PQresultStatus(cnt_res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: pick_next_author_with_incomplete_relays count failed: %s", + PQresultErrorMessage(cnt_res)); + PQclear(cnt_res); + return -1; + } + if (PQntuples(cnt_res) < 1 || PQgetisnull(cnt_res, 0, 0)) { + PQclear(cnt_res); + return -1; + } + long incomplete = strtol(PQgetvalue(cnt_res, 0, 0), NULL, 10); + PQclear(cnt_res); + if (incomplete <= 0) { + return -1; + } + + long offset = (*round_cursor) % incomplete; + char off_buf[32]; + snprintf(off_buf, sizeof(off_buf), "%ld", offset); + + const char *vals[1] = { off_buf }; + int lens[1] = { (int)strlen(off_buf) }; + int fmts[1] = { 0 }; + + const char *sql = + "SELECT DISTINCT author_pubkey FROM caching_backfill_relay_progress " + "WHERE complete = FALSE " + "ORDER BY author_pubkey " + "LIMIT 1 OFFSET ($1 % (SELECT COUNT(DISTINCT author_pubkey) " + " FROM caching_backfill_relay_progress " + " WHERE complete = FALSE))"; + + PGresult *res = PQexecParams(g_pg, sql, 1, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: pick_next_author_with_incomplete_relays NULL result"); + return -1; + } + if (PQresultStatus(res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: pick_next_author_with_incomplete_relays failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + if (PQntuples(res) < 1) { + PQclear(res); + return -1; + } + + const char *pk = PQgetisnull(res, 0, 0) ? "" : PQgetvalue(res, 0, 0); + if ((int)strlen(pk) >= pk_len) { + DEBUG_WARN("pg_inbox: pick_next_author_with_incomplete_relays pk buffer too small"); + PQclear(res); + return -1; + } + strcpy(out_pk, pk); + PQclear(res); + + (*round_cursor)++; + return 0; +} + +cJSON *pg_inbox_get_incomplete_relays(const char *pk) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return NULL; + } + if (!pk) { + DEBUG_WARN("pg_inbox: get_incomplete_relays called with NULL pk"); + return NULL; + } + + const char *vals[1] = { pk }; + int lens[1] = { (int)strlen(pk) }; + int fmts[1] = { 0 }; + + const char *sql = + "SELECT relay_url, until_cursor FROM caching_backfill_relay_progress " + "WHERE author_pubkey = $1 AND complete = FALSE " + "ORDER BY relay_url"; + + PGresult *res = PQexecParams(g_pg, sql, 1, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: get_incomplete_relays NULL result"); + return NULL; + } + if (PQresultStatus(res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: get_incomplete_relays failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return NULL; + } + + cJSON *arr = cJSON_CreateArray(); + int n = PQntuples(res); + for (int i = 0; i < n; i++) { + const char *url = PQgetisnull(res, i, 0) ? "" : PQgetvalue(res, i, 0); + long until = PQgetisnull(res, i, 1) ? 0 + : strtol(PQgetvalue(res, i, 1), NULL, 10); + cJSON *obj = cJSON_CreateObject(); + cJSON_AddStringToObject(obj, "relay_url", url); + cJSON_AddNumberToObject(obj, "until_cursor", (double)until); + cJSON_AddItemToArray(arr, obj); + } + PQclear(res); + return arr; +} + +int pg_inbox_update_relay_progress(const char *pk, const char *relay_url, + long until_cursor, int complete, + int events_this_page, + const char *last_status) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!pk || !relay_url) { + DEBUG_WARN("pg_inbox: update_relay_progress called with NULL pk/relay"); + return -1; + } + + /* Ensure the last_status and consecutive_errors columns exist + * (idempotent ALTER TABLE). */ + static int s_ensured_last_status = 0; + if (!s_ensured_last_status) { + PGresult *alter = PQexec(g_pg, + "ALTER TABLE caching_backfill_relay_progress " + "ADD COLUMN IF NOT EXISTS last_status TEXT NOT NULL DEFAULT ''"); + if (alter) { PQclear(alter); } + PGresult *alter2 = PQexec(g_pg, + "ALTER TABLE caching_backfill_relay_progress " + "ADD COLUMN IF NOT EXISTS consecutive_errors INTEGER NOT NULL DEFAULT 0"); + if (alter2) { PQclear(alter2); } + s_ensured_last_status = 1; + } + + char uc_buf[32], cmp_buf[8], ep_buf[16]; + snprintf(uc_buf, sizeof(uc_buf), "%ld", until_cursor); + snprintf(cmp_buf, sizeof(cmp_buf), "%d", complete ? 1 : 0); + snprintf(ep_buf, sizeof(ep_buf), "%d", events_this_page); + + const char *status_val = last_status ? last_status : ""; + const char *vals[6] = { pk, relay_url, uc_buf, cmp_buf, ep_buf, status_val }; + int lens[6] = { + (int)strlen(pk), + (int)strlen(relay_url), + (int)strlen(uc_buf), + (int)strlen(cmp_buf), + (int)strlen(ep_buf), + (int)strlen(status_val), + }; + int fmts[6] = { 0, 0, 0, 0, 0, 0 }; + + /* Update the relay progress row. + * + * consecutive_errors semantics: + * - Increment when the new last_status starts with 'error' OR is + * exactly 'timeout' (relay failed to deliver a full page in + * time, or never connected at all). + * - Reset to 0 otherwise (eose, NOTICE, CLOSED, etc. — the relay + * is responsive). + * + * complete semantics: + * - Set to $4 (caller's decision) OR auto-mark complete when the + * incremented consecutive_errors would reach 3. This stops + * backfill from retrying a permanently-dead or perpetually-slow + * relay forever. The pre-increment value is used in the + * comparison, so the row is marked complete on the SAME tick + * that records the 3rd consecutive error/timeout. + * + * Note: 'complete = $4 OR (...)' means a caller that explicitly + * passes complete=1 (e.g. EOSE with a partial page) still wins, + * and the error-limit only ever forces complete=true (never + * forces it false when the caller wanted true). */ + const char *sql = + "UPDATE caching_backfill_relay_progress " + "SET until_cursor = $3::BIGINT, " + " complete = $4::BOOLEAN OR (" + " ($6 LIKE 'error%' OR $6 = 'timeout') AND " + " consecutive_errors + 1 >= 3" + " ), " + " events_fetched = events_fetched + $5::INTEGER, " + " last_status = CASE WHEN $6 = '' THEN caching_backfill_relay_progress.last_status ELSE $6 END, " + " consecutive_errors = CASE " + " WHEN $6 LIKE 'error%' OR $6 = 'timeout' THEN consecutive_errors + 1 " + " ELSE 0 " + " END, " + " updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT " + "WHERE author_pubkey = $1 AND relay_url = $2"; + + PGresult *res = PQexecParams(g_pg, sql, 6, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: update_relay_progress NULL result"); + return -1; + } + ExecStatusType st = PQresultStatus(res); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: update_relay_progress failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + PQclear(res); + return 0; +} + +int pg_inbox_check_and_mark_author_complete(const char *pk) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: not initialized"); + return -1; + } + if (!pk) { + DEBUG_WARN("pg_inbox: check_and_mark_author_complete called with NULL pk"); + return -1; + } + + const char *vals[1] = { pk }; + int lens[1] = { (int)strlen(pk) }; + int fmts[1] = { 0 }; + + /* Count incomplete relay rows for this author. */ + PGresult *res = PQexecParams(g_pg, + "SELECT COUNT(*) FROM caching_backfill_relay_progress " + "WHERE author_pubkey = $1 AND complete = FALSE", + 1, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: check_and_mark_author_complete NULL result"); + return -1; + } + if (PQresultStatus(res) != PGRES_TUPLES_OK) { + DEBUG_ERROR("pg_inbox: check_and_mark_author_complete count failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + long incomplete = PQntuples(res) < 1 || PQgetisnull(res, 0, 0) + ? 0 : strtol(PQgetvalue(res, 0, 0), NULL, 10); + PQclear(res); + + if (incomplete > 0) { + return 0; /* still incomplete */ + } + + /* All relays complete (or no relay rows at all) - mark the author. */ + const char *sql = + "UPDATE caching_followed_pubkeys " + "SET backfill_complete = TRUE, " + " updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT " + "WHERE pubkey = $1 AND backfill_complete = FALSE"; + PGresult *upd = PQexecParams(g_pg, sql, 1, NULL, vals, lens, fmts, 0); + if (!upd) { + DEBUG_ERROR("pg_inbox: check_and_mark_author_complete update NULL"); + return -1; + } + ExecStatusType st = PQresultStatus(upd); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: check_and_mark_author_complete update failed: %s", + PQresultErrorMessage(upd)); + PQclear(upd); + return -1; + } + PQclear(upd); + return 1; +} + +/* ------------------------------------------------------------------ */ +/* Active backfill target (for UI status display) */ +/* ------------------------------------------------------------------ */ + +int pg_inbox_set_active_target(const char *pubkey, const char *relay_url) { + if (!g_pg) { + DEBUG_ERROR("pg_inbox: set_active_target: not initialized"); + return -1; + } + + /* Create the table if it doesn't exist (idempotent). */ + PGresult *create = PQexec(g_pg, + "CREATE TABLE IF NOT EXISTS caching_backfill_active (" + " id INT PRIMARY KEY DEFAULT 1," + " active_pubkey TEXT NOT NULL DEFAULT ''," + " active_relay TEXT NOT NULL DEFAULT ''," + " updated_at BIGINT NOT NULL DEFAULT 0," + " CONSTRAINT singleton_row CHECK (id = 1)" + ")"); + if (create) { + PQresultStatus(create); /* ignore result — table may already exist */ + PQclear(create); + } + + const char *vals[2]; + int lens[2]; + int fmts[2]; + int n = 0; + + /* $1 active_pubkey (may be empty) */ + vals[n] = pubkey ? pubkey : ""; lens[n] = (int)strlen(vals[n]); fmts[n] = 0; n++; + /* $2 active_relay (may be empty) */ + vals[n] = relay_url ? relay_url : ""; lens[n] = (int)strlen(vals[n]); fmts[n] = 0; n++; + + const char *sql = + "INSERT INTO caching_backfill_active (id, active_pubkey, active_relay, updated_at) " + "VALUES (1, $1, $2, EXTRACT(EPOCH FROM NOW())::BIGINT) " + "ON CONFLICT (id) DO UPDATE SET " + " active_pubkey = EXCLUDED.active_pubkey, " + " active_relay = EXCLUDED.active_relay, " + " updated_at = EXCLUDED.updated_at"; + + PGresult *res = PQexecParams(g_pg, sql, n, NULL, vals, lens, fmts, 0); + if (!res) { + DEBUG_ERROR("pg_inbox: set_active_target returned NULL result"); + return -1; + } + ExecStatusType st = PQresultStatus(res); + if (st != PGRES_COMMAND_OK) { + DEBUG_ERROR("pg_inbox: set_active_target failed: %s", + PQresultErrorMessage(res)); + PQclear(res); + return -1; + } + PQclear(res); + return 0; +} + +int pg_inbox_get_active_target(char *out_pubkey, int pk_len, + char *out_relay, int relay_len) { + if (!g_pg) { + if (out_pubkey && pk_len > 0) out_pubkey[0] = '\0'; + if (out_relay && relay_len > 0) out_relay[0] = '\0'; + return -1; + } + + PGresult *res = PQexec(g_pg, + "SELECT active_pubkey, active_relay FROM caching_backfill_active WHERE id = 1"); + if (!res || PQresultStatus(res) != PGRES_TUPLES_OK) { + if (res) PQclear(res); + if (out_pubkey && pk_len > 0) out_pubkey[0] = '\0'; + if (out_relay && relay_len > 0) out_relay[0] = '\0'; + return -1; + } + + if (PQntuples(res) > 0) { + const char *pk = PQgetisnull(res, 0, 0) ? "" : PQgetvalue(res, 0, 0); + const char *rl = PQgetisnull(res, 0, 1) ? "" : PQgetvalue(res, 0, 1); + if (out_pubkey && pk_len > 0) { + strncpy(out_pubkey, pk, pk_len - 1); + out_pubkey[pk_len - 1] = '\0'; + } + if (out_relay && relay_len > 0) { + strncpy(out_relay, rl, relay_len - 1); + out_relay[relay_len - 1] = '\0'; + } + } else { + if (out_pubkey && pk_len > 0) out_pubkey[0] = '\0'; + if (out_relay && relay_len > 0) out_relay[0] = '\0'; + } + + PQclear(res); + return 0; +} diff --git a/caching/src/pg_inbox.h b/caching/src/pg_inbox.h index 0909738..20bbb20 100644 --- a/caching/src/pg_inbox.h +++ b/caching/src/pg_inbox.h @@ -38,8 +38,8 @@ int pg_inbox_update_status(const char *service_state, int followed_author_count, int selected_relay_count, int connected_relay_count, - int current_window_index, - int backfill_cursor, + int backfill_authors_complete, + int backfill_authors_total, long events_fetched, long inbox_inserts, const char *last_error, @@ -54,35 +54,99 @@ char *pg_inbox_get_config_value(const char *key); long pg_inbox_get_config_generation(void); /* ------------------------------------------------------------------ */ -/* Backfill progress persistence */ +/* Per-author until-cursor drain backfill model */ /* ------------------------------------------------------------------ */ -/* Save backfill progress for a specific author+window (UPSERT). - * Returns 0 on success, -1 on error. */ -int pg_inbox_save_backfill_progress(const char *author_pubkey, - int window_index, - long window_anchor, - long until_cursor, - int complete); - -/* Load backfill progress for a specific author+window. - * Returns 0 on success (found), -1 on error. - * Sets *out_until_cursor and *out_complete. If not found, sets *out_found = 0 - * and returns 0. */ -int pg_inbox_load_backfill_progress(const char *author_pubkey, - int window_index, - long *out_until_cursor, - int *out_complete, - int *out_found); - -/* Load all incomplete backfill progress rows for a given window. - * Returns a cJSON array of objects with "author_pubkey", "until_cursor" and - * "complete" fields. Caller must cJSON_Delete the result. - * Returns NULL on error or empty. */ -cJSON *pg_inbox_load_incomplete_progress(int window_index); - -/* Reset all backfill progress (delete all rows). +/* Reset all backfill progress: set until_cursor=0 and backfill_complete=FALSE + * for all rows in caching_followed_pubkeys (the followed set itself is + * preserved). Used by the "Reset Backfill" API button and --restart. * Returns 0 on success, -1 on error. */ int pg_inbox_reset_backfill_progress(void); +/* Upsert all followed pubkeys into caching_followed_pubkeys. + * For each pubkey: INSERT if new (until_cursor=0, backfill_complete=FALSE), + * or UPDATE is_root and last_seen if existing (until_cursor and + * backfill_complete are NOT touched). root_pubkeys marks which entries are + * root follows. Returns 0 on success, -1 on error. */ +int pg_inbox_sync_followed_pubkeys(const char **pubkeys, int count, + const char **root_pubkeys, int root_count); + +/* Pick the next incomplete author for backfill, round-robin. + * On success fills out_pk, out_until_cursor and out_is_root, advances + * *round_cursor, and returns 0. Returns -1 if no incomplete authors or + * on error. */ +int pg_inbox_pick_next_backfill_author(char *out_pk, int pk_len, + long *out_until_cursor, + int *out_is_root, + int *round_cursor); + +/* Update the cursor and completion state for an author. + * events_this_page is added to the running events_fetched counter. + * Returns 0 on success, -1 on error. */ +int pg_inbox_update_backfill_progress(const char *pk, long until_cursor, + int complete, int events_this_page); + +/* One-time migration from the old caching_backfill_progress table to the + * new caching_followed_pubkeys table. Only runs if the new table is empty + * and the old table has rows. Returns 0 on success (including no-op), + * -1 on error. */ +int pg_inbox_migrate_backfill_progress(void); + +/* Count complete/total authors for status reporting. + * Returns 0 on success, -1 on error. */ +int pg_inbox_count_backfill_progress(int *out_complete, int *out_total); + +/* ------------------------------------------------------------------ */ +/* Per-relay backfill progress (relay-by-relay drain model) */ +/* ------------------------------------------------------------------ */ + +/* Initialize relay progress rows for an author. Creates one row per relay + * URL with until_cursor=0, complete=FALSE. Skips rows that already exist + * (ON CONFLICT DO NOTHING). Returns 0 on success, -1 on error. */ +int pg_inbox_init_relay_progress_for_author(const char *pk, + const char **relay_urls, + int relay_count); + +/* Pick the next author that has at least one incomplete relay progress row. + * Round-robin via *round_cursor. On success fills out_pk and returns 0. + * Returns -1 if no incomplete authors or on error. */ +int pg_inbox_pick_next_author_with_incomplete_relays(char *out_pk, int pk_len, + int *round_cursor); + +/* Get incomplete relays for an author. Returns a cJSON array of + * {relay_url, until_cursor} objects (caller frees with cJSON_Delete). + * Returns NULL on error or if no incomplete relays. */ +cJSON *pg_inbox_get_incomplete_relays(const char *pk); + +/* Update relay progress: advance cursor and/or mark complete. + * events_this_page is added to the running events_fetched counter. + * last_status is a short string like "eose", "timeout", "error", or NULL + * to leave unchanged. Returns 0 on success, -1 on error. */ +int pg_inbox_update_relay_progress(const char *pk, const char *relay_url, + long until_cursor, int complete, + int events_this_page, + const char *last_status); + +/* Check if all relays for an author are complete. If so, mark the author + * as backfill_complete=TRUE in caching_followed_pubkeys. + * Returns 1 if marked complete, 0 if still incomplete, -1 on error. */ +int pg_inbox_check_and_mark_author_complete(const char *pk); + +/* ------------------------------------------------------------------ */ +/* Active backfill target (for UI status display) */ +/* ------------------------------------------------------------------ */ + +/* Set the currently-active backfill target (pubkey + relay being queried). + * Either parameter may be NULL/empty to clear. Creates the + * caching_backfill_active table if needed (single-row singleton). + * Returns 0 on success, -1 on error. */ +int pg_inbox_set_active_target(const char *pubkey, const char *relay_url); + +/* Read the active backfill target. Fills out_pubkey/out_relay with + * the current values (or empty strings if none). Buffers must be + * at least 65 and 256 bytes respectively. + * Returns 0 on success, -1 on error. */ +int pg_inbox_get_active_target(char *out_pubkey, int pk_len, + char *out_relay, int relay_len); + #endif /* CACHING_RELAY_PG_INBOX_H */ diff --git a/deploy_lt.sh b/deploy_lt.sh index 61ee49d..414e62d 100755 --- a/deploy_lt.sh +++ b/deploy_lt.sh @@ -8,8 +8,10 @@ set -euo pipefail # Configuration REMOTE_HOST="ubuntu@laantungir.net" LOCAL_BINARY="build/c_relay_pg_static_x86_64" +LOCAL_CACHING_BINARY="build/caching_relay" REMOTE_BINARY_DIR="/usr/local/bin/c_relay_pg" REMOTE_BINARY_PATH="/usr/local/bin/c_relay_pg/c_relay_pg" +REMOTE_CACHING_BINARY_PATH="/opt/c-relay-pg/caching_relay" SERVICE_NAME="c-relay-pg" LOCAL_SERVICE_FILE="systemd/c-relay.service" @@ -35,6 +37,15 @@ echo "==> Uploading artifacts to $REMOTE_HOST" scp "$LOCAL_BINARY" "$REMOTE_HOST:/tmp/c_relay_pg.tmp" scp "$LOCAL_SERVICE_FILE" "$REMOTE_HOST:/tmp/c-relay-pg.service" scp "$LOCAL_PG_SETUP_SCRIPT" "$REMOTE_HOST:/tmp/setup_postgres_18.sh" +# Upload the caching_relay binary if it was built locally. The caching +# service is NOT started by this deploy (the systemd unit does not pass +# --start-caching), but the binary is placed in the relay's WorkingDirectory +# so it is ready for when caching is enabled via event-based config. +if [ -f "$LOCAL_CACHING_BINARY" ]; then + scp "$LOCAL_CACHING_BINARY" "$REMOTE_HOST:/tmp/caching_relay.tmp" +else + echo "WARNING: caching_relay binary not found locally ($LOCAL_CACHING_BINARY) — skipping caching binary upload" +fi echo "==> Running remote install/configuration" ssh "$REMOTE_HOST" 'bash -s' <<'EOF' @@ -44,6 +55,7 @@ SERVICE_NAME="c-relay-pg" RELAY_USER="c-relay-pg" REMOTE_BINARY_DIR="/usr/local/bin/c_relay_pg" REMOTE_BINARY_PATH="/usr/local/bin/c_relay_pg/c_relay_pg" +REMOTE_CACHING_BINARY_PATH="/opt/c-relay-pg/caching_relay" echo "[remote] Ensuring service user exists" if ! id "$RELAY_USER" >/dev/null 2>&1; then @@ -80,11 +92,36 @@ sudo mv /tmp/c_relay_pg.tmp "$REMOTE_BINARY_PATH" sudo chown "$RELAY_USER:$RELAY_USER" "$REMOTE_BINARY_PATH" sudo chmod +x "$REMOTE_BINARY_PATH" +echo "[remote] Installing caching_relay binary (if uploaded)" +if [ -f /tmp/caching_relay.tmp ]; then + sudo mv /tmp/caching_relay.tmp "$REMOTE_CACHING_BINARY_PATH" + sudo chown "$RELAY_USER:$RELAY_USER" "$REMOTE_CACHING_BINARY_PATH" + sudo chmod +x "$REMOTE_CACHING_BINARY_PATH" + echo " -> caching_relay installed at $REMOTE_CACHING_BINARY_PATH (not started; enable via config when ready)" +else + echo " -> no caching_relay binary uploaded, skipping" +fi + echo "[remote] Installing systemd unit" sudo mv /tmp/c-relay-pg.service /etc/systemd/system/c-relay-pg.service sudo chown root:root /etc/systemd/system/c-relay-pg.service sudo chmod 644 /etc/systemd/system/c-relay-pg.service +echo "[remote] Killing stale caching_relay processes (safety)" +# The caching service is forked by the relay with setsid(), so it detaches +# from the relay's process group and survives when the relay is killed. +# Without this, every restart orphans the previous caching_relay child and +# a new relay forks another, leading to many stale processes with dead PG +# connections spamming errors. Kill them here so the new relay starts clean. +CACHING_PIDS=$(pgrep -f "caching_relay" || echo "") +if [ -n "$CACHING_PIDS" ]; then + echo " -> killing stale caching_relay PIDs: $CACHING_PIDS" + kill -9 $CACHING_PIDS 2>/dev/null || true + sleep 1 +else + echo " -> no stale caching_relay processes found" +fi + echo "[remote] Reloading and restarting service" sudo systemctl daemon-reload sudo systemctl enable "$SERVICE_NAME" diff --git a/examples/deployment/nginx-proxy/nginx.conf b/examples/deployment/nginx-proxy/nginx.conf index e825778..b493aaa 100644 --- a/examples/deployment/nginx-proxy/nginx.conf +++ b/examples/deployment/nginx-proxy/nginx.conf @@ -155,6 +155,34 @@ http { log_not_found off; } + # PHP admin page for caching service (direct PostgreSQL access). + # Bypasses the NIP-44 64KB encryption limit of the Nostr admin API. + # Requires: php-fpm + php-pgsql installed and configured. + location /admin/ { + alias /opt/c-relay-pg/admin/; + index index.php; + + # HTTP Basic Auth + auth_basic "Relay Admin"; + auth_basic_user_file /opt/c-relay-pg/admin/.htpasswd; + + # Pass .php files to PHP-FPM + location ~ \.php$ { + # Adjust socket path for your distro: + # Debian/Ubuntu: unix:/run/php/php8.2-fpm.sock + # RHEL/Fedora: unix:/run/php-fpm/www.sock + fastcgi_pass unix:/run/php/php8.2-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $request_filename; + } + + # Deny access to the lib/ directory (contains DB credentials) + location ^~ /admin/lib/ { + deny all; + } + } + # Optional: Metrics endpoint (if implemented) location /metrics { proxy_pass http://c_relay_pg_backend/metrics; diff --git a/make_and_restart_relay.sh b/make_and_restart_relay.sh index 9558eaf..ec19699 100755 --- a/make_and_restart_relay.sh +++ b/make_and_restart_relay.sh @@ -494,6 +494,21 @@ else echo "No existing relay processes found" fi +# Kill any stale caching_relay processes from previous runs. +# The caching service is forked by the relay with setsid(), so it detaches +# from the relay's process group and survives when the relay is killed -9. +# Without this, every restart orphans the previous caching_relay child and +# a new relay forks another, leading to many stale processes with dead PG +# connections spamming errors. Kill them here so the new relay starts fresh. +CACHING_PIDS=$(pgrep -f "caching_relay" || echo "") +if [ -n "$CACHING_PIDS" ]; then + echo "Killing stale caching_relay processes: $CACHING_PIDS" + kill -9 $CACHING_PIDS 2>/dev/null || true + sleep 1 +else + echo "No existing caching_relay processes found" +fi + # Ensure port 8888 is completely free with retry loop echo "Ensuring port 8888 is available..." for attempt in {1..15}; do @@ -524,14 +539,21 @@ for attempt in {1..15}; do fi done -# Final safety check - ensure no relay processes remain +# Final safety check - ensure no relay or caching processes remain FINAL_PIDS=$(pgrep -f "c_relay_pg_" || echo "") if [ -n "$FINAL_PIDS" ]; then - echo "Final cleanup: killing processes $FINAL_PIDS" + echo "Final cleanup: killing relay processes $FINAL_PIDS" kill -9 $FINAL_PIDS 2>/dev/null || true sleep 1 fi +FINAL_CACHING_PIDS=$(pgrep -f "caching_relay" || echo "") +if [ -n "$FINAL_CACHING_PIDS" ]; then + echo "Final cleanup: killing stale caching_relay processes $FINAL_CACHING_PIDS" + kill -9 $FINAL_CACHING_PIDS 2>/dev/null || true + sleep 1 +fi + # Clean up PID file rm -f relay.pid @@ -682,8 +704,10 @@ if ps -p "$RELAY_PID" >/dev/null 2>&1; then echo "Configuration: Event-based (kind 33334 Nostr events)" echo "Database: Automatically created with relay pubkey naming" echo "To kill relay: pkill -f 'c_relay_pg_'" + echo "To kill caching service: pkill -f 'caching_relay'" echo "To check status: ps aux | grep c_relay_pg_" echo "To view logs: tail -f relay.log" + echo "To view caching logs: tail -f build/caching_relay.log" echo "Binary: $BINARY_PATH (zero configuration needed)" echo "Ready for Nostr client connections!" else diff --git a/nostr_core_lib b/nostr_core_lib deleted file mode 160000 index 61581af..0000000 --- a/nostr_core_lib +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 61581afcc9511456a3aa1e01d0d2b3789cfb44d3 diff --git a/plans/backfill_redesign_plan.md b/plans/backfill_redesign_plan.md new file mode 100644 index 0000000..74fa5fc --- /dev/null +++ b/plans/backfill_redesign_plan.md @@ -0,0 +1,368 @@ +# Backfill Redesign: Per-Author Until-Cursor Drain (Option B) + +## Problem + +The current window-expansion backfill (`caching/src/backfill.c`) has four +compounding structural defects that make cache coverage unacceptably poor +(~10-28% of upstream availability even for a 7-pubkey follow set): + +1. **Overlapping windows re-fetch the same events.** Window N+1's time range + fully contains window N's range. The only dedup is a 4096-entry in-memory + ring + inbox `ON CONFLICT DO NOTHING`, which overflows for high-volume + authors, wasting query budget on duplicates. +2. **Broken saturation detection.** When a relay caps at 500 events, the code + retries with `limit=5000`, still gets 500, compares `500 == 5000` (false), + and incorrectly concludes the page was not saturated — marking the author + complete without paginating. +3. **`until`-cursor walk-back never triggers** because it's gated on the + broken saturation check. +4. **Window 4 (full history) was skipped for 5/7 pubkeys** and the loop won't + retry once `current_window_index` advances past the last window. + +## Solution + +Replace the window-expansion model with a **per-author `until`-cursor drain**: +each followed author has a single persistent cursor (starting at `now`). Each +backfill tick queries `since=0&until=cursor&limit=500` for one author, +publishes the page, and sets `cursor = oldest_event_created_at - 1`. Repeat +until a page returns fewer than the relay's cap (beginning of history reached). +The live subscriber stays as-is (it's already correct). + +## Architecture + +```mermaid +flowchart TD + A[cr_follow_resolve] --> B[caching_followed_pubkeys table] + B --> C[Backfill tick: pick next incomplete author] + C --> D[Query since=0 and until=cursor and limit=500] + D --> E{ev_count == relay_cap?} + E -- yes --> F[Publish page, set cursor = oldest - 1] + F --> D + E -- no < relay_cap --> G[Publish page, mark backfill_complete = true] + G --> H{More incomplete authors?} + H -- yes --> C + H -- no --> I[Steady state: live sub only] + J[Live subscriber] --> K[caching_event_inbox] + K --> L[c-relay-pg inbox poller] + L --> M[events table] +``` + +## Changes + +### 1. New table: `caching_followed_pubkeys` + +Replaces both the ephemeral in-memory `cr_pubkey_set_t` (for persistence) and +the window-coupled `caching_backfill_progress` (for cursor state). + +**Schema** (add to `src/pg_schema.sql`): + +```sql +CREATE TABLE IF NOT EXISTS caching_followed_pubkeys ( + pubkey TEXT PRIMARY KEY, + is_root BOOLEAN NOT NULL DEFAULT FALSE, + until_cursor BIGINT NOT NULL DEFAULT 0, + backfill_complete BOOLEAN NOT NULL DEFAULT FALSE, + events_fetched INTEGER NOT NULL DEFAULT 0, + first_seen BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT, + last_seen BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT, + updated_at BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT +); + +CREATE INDEX IF NOT EXISTS idx_caching_followed_incomplete + ON caching_followed_pubkeys(backfill_complete, last_seen) + WHERE backfill_complete = FALSE; +``` + +- `until_cursor`: the `until` timestamp for the next backfill query. `0` means + "not started yet" (treat as `now` on first query). After each page, set to + `oldest_event_created_at - 1`. +- `backfill_complete`: set true when a page returns fewer than the relay cap + (we've reached the beginning of the author's history). +- `is_root`: true for root/admin npubs (used to apply `admin_kinds`). +- `events_fetched`: cumulative count for diagnostics. +- `last_seen`: updated each follow-graph refresh (prune stale follows). + +**Migration**: On startup, if `caching_followed_pubkeys` is empty but +`caching_backfill_progress` has rows, migrate: for each distinct +`author_pubkey` in the old table, insert a row with `until_cursor = 0`, +`backfill_complete = FALSE` (re-backfill from scratch — the old data was +incomplete anyway). Drop `caching_backfill_progress` after migration. + +### 2. Follow graph resolver: persist to `caching_followed_pubkeys` + +**File**: `caching/src/follow_graph.c` + `caching/src/pg_inbox.c` + +After `cr_follow_resolve()` builds the in-memory set, sync it to the table: + +```c +/* For each pubkey in the followed set: */ +/* INSERT INTO caching_followed_pubkeys (pubkey, is_root, last_seen) + * VALUES ($1, $2, now) + * ON CONFLICT (pubkey) DO UPDATE SET + * is_root = EXCLUDED.is_root, + * last_seen = EXCLUDED.last_seen; + * + * Mark follows not seen this refresh as stale (for pruning / diagnostics). + * Do NOT touch until_cursor or backfill_complete on existing rows. */ +``` + +New function: `pg_inbox_sync_followed_pubkeys(cr_pubkey_set_t *followed, +cr_config_t *cfg)` — upserts all followed pubkeys, updates `last_seen`, sets +`is_root` based on `cr_follow_is_root()`. + +New function: `pg_inbox_prune_stale_follows(long threshold_seconds)` — +optionally deletes follows not seen in `threshold_seconds` (e.g. 24h). This is +off by default; stale follows just stop getting backfilled. + +The in-memory `cr_pubkey_set_t followed` stays as the runtime working set +(used by the live subscriber). The table is the durable source of truth for +backfill iteration. + +### 3. Rewrite `cr_backfill_tick` — per-author until-cursor drain + +**File**: `caching/src/backfill.c` + +Replace the entire window-expansion logic. New `cr_backfill_tick`: + +```c +int cr_backfill_tick(cr_backfill_t *bf, cr_config_t *cfg, + nostr_relay_pool_t *upstream, + cr_sink_t *sink, const cr_relay_map_t *relay_map) { + if (!cfg->backfill.enabled) return -2; + + /* Throttle: one query per tick_interval. */ + time_t now = time(NULL); + if (bf->last_tick && (now - bf->last_tick) < cfg->backfill.tick_interval_seconds) + return 0; + bf->last_tick = now; + + /* Pick the next incomplete author from the DB (round-robin via + * last_seen ordering, or a cursor we persist in bf). */ + char pk[CR_HEX_LEN]; + long until_cursor = 0; + int is_root = 0; + if (pg_inbox_pick_next_backfill_author(pk, &until_cursor, &is_root, + &bf->author_round_cursor) != 0) { + /* No incomplete authors — steady state. */ + bf->in_progress = 0; + return -2; + } + + /* First-time: cursor 0 means start from now. */ + if (until_cursor == 0) until_cursor = (long)now; + + int page_size = 500; /* matches typical relay cap */ + int ev_count = 0; + cJSON **events = query_author(upstream, relay_map, cfg, pk, + 0 /* since=0 full history */, + until_cursor, page_size, &ev_count); + + if (!events || ev_count == 0) { + /* No events at all (or no more) — author is complete. */ + pg_inbox_update_backfill_progress(pk, 0, 1 /* complete */, 0); + free(events); + return 1; + } + + /* Find oldest timestamp BEFORE publishing. */ + long oldest_ts = 0; + find_oldest_created_at(events, ev_count, &oldest_ts); + + /* Publish all events. */ + cr_sink_set_source_class(sink, CR_SINK_CLASS_BACKFILL); + for (int k = 0; k < ev_count; k++) { + cr_sink_publish(sink, events[k]); + cJSON_Delete(events[k]); + } + free(events); + bf->events_total += ev_count; + + /* Saturation check: if we got exactly page_size, the page may be + * truncated. Set cursor = oldest - 1 and keep going next tick. + * If we got fewer than page_size, we've reached the beginning. */ + if (ev_count >= page_size) { + /* Saturated — more history likely exists. Advance cursor. */ + long next_cursor = (oldest_ts > 0) ? oldest_ts - 1 : 0; + pg_inbox_update_backfill_progress(pk, next_cursor, 0 /* not complete */, + ev_count); + } else { + /* Not saturated — beginning of history reached. */ + pg_inbox_update_backfill_progress(pk, until_cursor, 1 /* complete */, + ev_count); + } + + return 1; +} +``` + +Key differences from the old code: +- **No windows.** Single `since=0` query per author, always full history. +- **Saturation check compares against `page_size` (500)**, not `max_cap` + (5000). This fixes Defect 2 — if the relay returns 500, we paginate. +- **Cursor persisted per-author** in `caching_followed_pubkeys.until_cursor`, + not in a window-coupled table. This fixes Defect 4 — no window to skip. +- **No overlapping queries.** Each event is fetched exactly once as the cursor + walks backwards. This fixes Defect 1. +- **`pg_inbox_pick_next_backfill_author`** selects the next + `backfill_complete = FALSE` author, round-robin, so all authors get fair + backfill time. + +### 4. New PG inbox functions + +**File**: `caching/src/pg_inbox.c` + `caching/src/pg_inbox.h` + +```c +/* Sync the followed set to the DB (upsert + update last_seen). + * Does NOT touch until_cursor or backfill_complete on existing rows. */ +int pg_inbox_sync_followed_pubkeys(const cr_pubkey_set_t *followed, + const cr_config_t *cfg); + +/* Pick the next incomplete author for backfill (round-robin). + * Sets out_pk, out_until_cursor, out_is_root. + * Returns 0 on success, -1 if no incomplete authors remain. */ +int pg_inbox_pick_next_backfill_author(char *out_pk, + long *out_until_cursor, + int *out_is_root, + int *round_cursor); + +/* Update backfill progress for an author. */ +int pg_inbox_update_backfill_progress(const char *pk, + long until_cursor, + int complete, + int events_this_page); + +/* Migrate old caching_backfill_progress rows to caching_followed_pubkeys. + * Called once on startup if the new table is empty and the old one has rows. */ +int pg_inbox_migrate_backfill_progress(void); + +/* Reset all backfill progress (set until_cursor=0, backfill_complete=FALSE + * for all followed pubkeys). Used by the "Reset Backfill" API button. */ +int pg_inbox_reset_backfill_progress(void); +``` + +### 5. Simplify `cr_backfill_t` and `cr_config_t` state + +**File**: `caching/src/backfill.h`, `caching/src/config.h` + +Remove from `cr_backfill_t`: +- `window_index`, `current_window_s`, `events_this_window`, `window_started` +- `author_complete`, `blocked`, `blocked_until_ts` + +Keep: +- `cursor` (now: round-robin index into followed set, for fair scheduling) +- `until_cursor` (transient, per-tick — not persisted here, read from DB) +- `in_progress` (1 if any incomplete authors remain) +- `events_total` (cumulative diagnostic) +- `last_tick` (throttle) + +Remove from `cr_config_t` state: +- `state.backfilled_until` (no longer meaningful) +- `state.current_window_index` (no windows) + +Remove from `cr_config_t` backfill config: +- `backfill.window_schedule_seconds[]`, `backfill.window_count` +- `backfill.window_cooldown_seconds` +- `backfill.events_per_tick` → rename to `backfill.page_size` (default 500) + +Keep: +- `backfill.enabled` +- `backfill.page_size` (was `events_per_tick`) +- `backfill.tick_interval_seconds` + +### 6. Update `caching_service_state` table + +**File**: `src/pg_schema.sql` + +The `current_window_index` and `backfill_cursor` columns are no longer +meaningful. Replace with: + +```sql +ALTER TABLE caching_service_state + DROP COLUMN IF EXISTS current_window_index, + DROP COLUMN IF EXISTS backfill_cursor, + ADD COLUMN IF NOT EXISTS backfill_authors_complete INTEGER NOT NULL DEFAULT 0, + ADD COLUMN IF NOT EXISTS backfill_authors_total INTEGER NOT NULL DEFAULT 0; +``` + +Update `pg_inbox_update_status()` to report +`backfill_authors_complete / backfill_authors_total` instead of +`current_window_index / backfill_cursor`. The API status panel shows this as a +progress bar (e.g. "Backfill: 3/7 authors complete"). + +### 7. Update main loop + +**File**: `caching/src/main.c` + +- Remove `advance_window` calls (no windows). +- After `cr_follow_resolve()`, call `pg_inbox_sync_followed_pubkeys()`. +- On startup, call `pg_inbox_migrate_backfill_progress()` if needed. +- `cr_backfill_init` just sets `in_progress = 1` (check if any incomplete + authors exist in the DB). +- The follow-graph refresh at [`main.c:378`](caching/src/main.c:378) now also + calls `pg_inbox_sync_followed_pubkeys()` so new follows get backfilled and + unfollowed pubkeys stop getting backfilled. + +### 8. Update API status display + +**File**: `api/index.js`, `src/config.c` (caching_status handler) + +- Show "Backfill: X/Y authors complete" instead of "Window N, cursor M". +- The "Reset Backfill Progress" button now calls + `pg_inbox_reset_backfill_progress()` which sets + `until_cursor=0, backfill_complete=FALSE` for all rows in + `caching_followed_pubkeys`. + +### 9. Config changes + +**File**: `src/pg_schema.sql` (default config inserts), `caching/src/pg_config.c` + +Remove config keys: +- `caching_backfill_windows` (no window schedule) +- `caching_backfill_window_cooldown_seconds` (no windows) + +Add config key: +- `caching_backfill_page_size` already exists (value 500) — repurpose as the + per-query limit (was already used this way, just rename in docs). + +Keep: +- `caching_backfill_enabled` +- `caching_backfill_tick_interval_ms` (throttle between queries) +- `caching_backfill_page_size` (per-query limit, default 500) + +## Implementation Order + +1. **Schema**: Add `caching_followed_pubkeys` table + alter + `caching_service_state` in `src/pg_schema.sql`. +2. **PG inbox functions**: Add `pg_inbox_sync_followed_pubkeys`, + `pg_inbox_pick_next_backfill_author`, `pg_inbox_update_backfill_progress`, + `pg_inbox_migrate_backfill_progress`, `pg_inbox_reset_backfill_progress` + in `caching/src/pg_inbox.c` + `.h`. +3. **Follow graph sync**: Call `pg_inbox_sync_followed_pubkeys()` after + `cr_follow_resolve()` in `caching/src/main.c`. +4. **Rewrite backfill**: Replace `cr_backfill_tick` in + `caching/src/backfill.c`. Simplify `cr_backfill_t` in `backfill.h`. +5. **Config cleanup**: Remove window config from `caching/src/pg_config.c` + and `caching/src/config.c`. Update defaults in `src/pg_schema.sql`. +6. **State reporting**: Update `pg_inbox_update_status()` in + `caching/src/pg_inbox.c` to report authors complete/total. +7. **API status**: Update `api/index.js` and `src/config.c` status handler + to show backfill author progress. +8. **Migration**: Implement `pg_inbox_migrate_backfill_progress()` and call + on startup. +9. **Test**: Rebuild, restart with `--reset-backfill`, verify 100% coverage + for all 7 followed pubkeys via `nak req` comparison against upstream. + +## Risk and Mitigation + +- **Relays that don't honor `until`**: If a relay ignores the `until` filter, + the cursor won't advance and we'll re-fetch the same page. Mitigation: + detect when `oldest_ts` doesn't decrease between consecutive pages for the + same author and mark the author complete (or skip to a different relay). +- **High-volume authors take many ticks**: At 500 events/tick and 5s + tick_interval, a 10,000-event author takes ~100s. This is acceptable — the + live subscriber keeps you current, and the backfill makes steady progress. + If faster backfill is needed later, Option C (parallel workers) can be added + on top of this design. +- **Follow graph churn**: If follows change frequently, the sync upsert is + O(N) per refresh (every 10 min). Fine for personal-scale (hundreds of + follows). For thousands, batch the upsert. diff --git a/plans/backfill_relay_by_relay_plan.md b/plans/backfill_relay_by_relay_plan.md new file mode 100644 index 0000000..2110cc4 --- /dev/null +++ b/plans/backfill_relay_by_relay_plan.md @@ -0,0 +1,307 @@ +# Backfill v2: Relay-by-Relay Per-Author Until-Cursor Drain + +## Overview + +Refine the per-author until-cursor backfill to query each relay **one at a +time** with **per-relay cursor tracking**, and pick up new follows +**immediately** when the admin's kind-3 contact list changes. + +## Problem with the current implementation + +The current backfill (`caching/src/backfill.c`) calls `nostr_relay_pool_query_sync` +with **all relay URLs at once**. This function: + +1. Sends the same REQ to all connected relays +2. Collects and deduplicates events from all relays into one merged set +3. Waits until ALL relays send EOSE, or the timeout (now 30s) expires +4. Returns the merged set — but **does not tell the caller whether it exited + via all-EOSE or timeout** + +If one relay is slow (e.g. nos.lol streaming 500+ events), the timeout can +expire before that relay sends EOSE. The result is a partial event set, but +the backfill code can't distinguish "partial due to timeout" from "complete +because the author only has 225 events." This causes premature completion +marking. + +Additionally, the current design has a single `until_cursor` per author in +`caching_followed_pubkeys`, which doesn't track per-relay progress. And new +follows are only discovered on the 10-minute follow-graph refresh cycle. + +## Solution + +### 1. Per-relay cursor tracking + +Add a new table to track the backfill cursor for each author on each relay +independently: + +```sql +CREATE TABLE IF NOT EXISTS caching_backfill_relay_progress ( + author_pubkey TEXT NOT NULL, + relay_url TEXT NOT NULL, + until_cursor BIGINT NOT NULL DEFAULT 0, + complete BOOLEAN NOT NULL DEFAULT FALSE, + events_fetched INTEGER NOT NULL DEFAULT 0, + updated_at BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT, + PRIMARY KEY (author_pubkey, relay_url) +); + +CREATE INDEX IF NOT EXISTS idx_caching_relay_progress_incomplete + ON caching_backfill_relay_progress(author_pubkey) + WHERE complete = FALSE; +``` + +- `until_cursor`: the `until` timestamp for the next query to this specific + relay for this author. `0` means "not started" (treat as `now`). +- `complete`: set true when this relay returns < page_size events for the + current cursor range (this relay is drained for this author). +- `events_fetched`: cumulative count for diagnostics. + +The existing `caching_followed_pubkeys.backfill_complete` becomes a derived +value: an author is complete when all their relay progress rows are complete +(or when they have no relay progress rows at all — no relays to query). + +### 2. Relay-by-relay querying + +Instead of one `query_sync` call with N relays, make N `query_sync` calls +with 1 relay each. Each call waits for that single relay's EOSE (or timeout). +No merge/dedup needed — publish every event directly to the inbox; the +database handles deduplication (`ON CONFLICT DO NOTHING`). + +### 3. Immediate new-follow detection + +When the admin publishes a new kind-3 contact list, the live subscriber's +`on_event` callback receives it in real-time. We detect this and trigger an +immediate follow-graph refresh, which: +- Resolves the new follow set +- Syncs new pubkeys to `caching_followed_pubkeys` +- Creates relay progress rows for new follows (cursor=0, complete=false) +- The backfill loop picks them up on the next tick + +## Algorithm + +### Per backfill tick: + +``` +1. Pick next author that has at least one incomplete relay progress row + (round-robin from caching_followed_pubkeys WHERE backfill_complete=FALSE) +2. Get incomplete relays for this author: + SELECT relay_url, until_cursor FROM caching_backfill_relay_progress + WHERE author_pubkey = $1 AND complete = FALSE +3. For each incomplete relay (one at a time): + a. cursor = until_cursor (0 = now) + b. query_sync(pool, &relay_url, 1, filter, &ev_count, 30000) + filter = {authors: [pk], kinds: [configured], since: 0, + until: cursor, limit: 500} + c. Publish every event directly to inbox (cr_sink_publish) + d. Find oldest_ts in this batch + e. If ev_count == 0: + - Mark this relay complete for this author + (UPDATE caching_backfill_relay_progress SET complete=TRUE) + f. If ev_count >= page_size (saturated): + - Advance this relay's cursor: cursor = oldest_ts - 1 + (UPDATE caching_backfill_relay_progress SET until_cursor = oldest-1) + g. If ev_count < page_size but > 0: + - This relay is drained for this cursor range + - Advance cursor to oldest_ts - 1 AND mark complete + (the next query at this lower cursor would return 0 anyway, + but we mark complete to avoid an extra round-trip) +4. After querying all incomplete relays for this author: + Check if ALL relays for this author are now complete: + SELECT COUNT(*) WHERE author_pubkey=$1 AND complete=FALSE + If 0: mark author complete in caching_followed_pubkeys +``` + +### Why per-relay cursors are better + +- **Relay A has 500+ events, relay B has 50**: Relay A gets paginated across + multiple ticks (cursor walks back 500 at a time). Relay B is drained in one + query and marked complete. The author stays incomplete until relay A is + also drained. With a single shared cursor, we'd advance the cursor based on + the oldest across both relays, potentially skipping events on relay A. + +- **Resume after restart**: each relay's cursor is persisted independently. + On restart, we resume each relay exactly where it left off. + +- **Relay goes offline**: if a relay is unreachable, its progress row stays + incomplete. The author stays incomplete. When the relay comes back, we + resume querying it. No events are lost. + +### Completion criteria + +An author is marked `backfill_complete = TRUE` in `caching_followed_pubkeys` +when ALL their relay progress rows in `caching_backfill_relay_progress` are +marked `complete = TRUE`. This means every known relay has been queried down +to the beginning of the author's history. + +### New follow detection + +In `caching/src/live_subscriber.c`, the `live_on_event` callback currently +just publishes events. We add a check: + +```c +static void live_on_event(cJSON *event, const char *relay_url, void *user_data) { + cr_live_ctx_t *ctx = (cr_live_ctx_t *)user_data; + ctx->live->events_received++; + cr_sink_publish(ctx->sink, event); + + /* Detect admin kind-3 (contact list) changes → trigger follow refresh */ + cJSON *kind = cJSON_GetObjectItem(event, "kind"); + cJSON *pubkey = cJSON_GetObjectItem(event, "pubkey"); + if (kind && cJSON_IsNumber(kind) && kind->valuedouble == 3 && + pubkey && cJSON_IsString(pubkey)) { + if (cr_follow_is_root(ctx->cfg, cJSON_GetStringValue(pubkey))) { + ctx->live->follow_graph_changed = 1; /* signal to main loop */ + } + } +} +``` + +The main loop checks this flag each iteration: + +```c +if (live.follow_graph_changed) { + live.follow_graph_changed = 0; + /* Immediate follow-graph refresh */ + cr_pubkey_set_t new_followed; + cr_pubkey_set_init(&new_followed); + if (cr_follow_resolve(&cfg, upstream, &new_followed) == 0) { + /* Sync to DB — new follows get relay progress rows automatically */ + pg_inbox_sync_followed_pubkeys(...); + /* Create relay progress rows for new follows */ + pg_inbox_init_relay_progress_for_new_follows(&new_followed, &relay_map); + /* Resubscribe live with new follow set */ + cr_live_resubscribe(&live, &cfg, upstream, &new_followed, &sink); + cr_pubkey_set_free(&followed); + followed = new_followed; + } +} +``` + +### Relay progress row creation + +When a new follow is discovered, we need to create relay progress rows for +it. The relays to query are determined by the relay discovery phase (NIP-65 +outbox relays + bootstrap relays). New function: + +```c +int pg_inbox_init_relay_progress_for_author(const char *pk, + const char **relay_urls, + int relay_count); +``` + +For each relay URL, insert a row with `until_cursor=0, complete=FALSE` (if +not already present). This is called: +- After follow-graph resolution for new follows +- After relay discovery for newly discovered outbox relays + +## Database schema changes + +### New table: `caching_backfill_relay_progress` + +(see SQL above) + +### `caching_followed_pubkeys` — unchanged + +The `until_cursor` and `backfill_complete` columns remain. `until_cursor` +becomes less important (per-relay cursors are the source of truth), but we +keep it for backward compatibility and as a quick "has this author started" +flag. `backfill_complete` is updated when all relay progress rows are +complete. + +## New PG inbox functions + +### `caching/src/pg_inbox.c` + `.h` + +```c +/* Initialize relay progress rows for an author. Creates one row per relay + * with until_cursor=0, complete=FALSE. Skips rows that already exist. */ +int pg_inbox_init_relay_progress_for_author(const char *pk, + const char **relay_urls, + int relay_count); + +/* Pick the next author that has at least one incomplete relay progress row. + * Round-robin via round_cursor. Returns 0 on success, -1 if none. */ +int pg_inbox_pick_next_author_with_incomplete_relays(char *out_pk, int pk_len, + int *round_cursor); + +/* Get incomplete relays for an author. Returns a JSON array of + * {relay_url, until_cursor} objects. Caller frees. */ +cJSON *pg_inbox_get_incomplete_relays(const char *pk); + +/* Update relay progress: advance cursor and/or mark complete. */ +int pg_inbox_update_relay_progress(const char *pk, const char *relay_url, + long until_cursor, int complete, + int events_this_page); + +/* Check if all relays for an author are complete. Returns 1 if all complete, + * 0 if some incomplete, -1 on error. */ +int pg_inbox_check_author_relays_complete(const char *pk); + +/* Mark author complete in caching_followed_pubkeys if all relay progress + * rows are complete. Called after each relay update. */ +int pg_inbox_check_and_mark_author_complete(const char *pk); +``` + +## Changes + +### 1. `src/pg_schema.sql` + `src/pg_schema.h` + +Add the `caching_backfill_relay_progress` table and index. + +### 2. `caching/src/pg_inbox.c` + `.h` + +Add the new relay progress functions listed above. + +### 3. `caching/src/backfill.c` — rewrite `cr_backfill_tick` + +Replace the single `query_author` call with a relay-by-relay loop using +per-relay cursors from the database. + +### 4. `caching/src/live_subscriber.c` — detect admin kind-3 changes + +Add `follow_graph_changed` flag to `cr_live_t`. Set it in `live_on_event` +when a root npub publishes a kind-3. + +### 5. `caching/src/live_subscriber.h` — add flag to struct + +Add `int follow_graph_changed;` to `cr_live_t`. + +### 6. `caching/src/main.c` — handle follow_graph_changed signal + +Check `live.follow_graph_changed` each main loop iteration. If set, trigger +immediate follow-graph refresh + relay progress initialization for new +follows. + +### 7. `caching/src/main.c` — create relay progress rows after relay discovery + +After `cr_relay_discovery_run()`, call `pg_inbox_init_relay_progress_for_author` +for each followed pubkey with its discovered outbox relays + bootstrap relays. + +## Implementation order + +1. Schema: add `caching_backfill_relay_progress` table +2. PG inbox functions: relay progress CRUD +3. Backfill rewrite: relay-by-relay loop with per-relay cursors +4. Live subscriber: kind-3 detection + `follow_graph_changed` flag +5. Main loop: handle `follow_graph_changed`, create relay progress rows +6. Build and test + +## Testing + +1. Rebuild: `cd caching && make` +2. Reset backfill: restart relay with `--reset-backfill` +3. Monitor relay progress: + ```sql + SELECT author_pubkey, relay_url, until_cursor, complete, events_fetched + FROM caching_backfill_relay_progress + ORDER BY author_pubkey, relay_url; + ``` +4. Monitor author completion: + ```sql + SELECT pubkey, backfill_complete + FROM caching_followed_pubkeys ORDER BY pubkey; + ``` +5. Compare coverage: `nak req -k 1 -a ws://localhost:7777` vs upstream +6. Test new-follow detection: follow a new pubkey from the admin account, + verify it appears in `caching_followed_pubkeys` and gets backfilled within + seconds (not 10 minutes) diff --git a/plans/caching_error_reporting_retry_limit_plan.md b/plans/caching_error_reporting_retry_limit_plan.md new file mode 100644 index 0000000..d5d8de4 --- /dev/null +++ b/plans/caching_error_reporting_retry_limit_plan.md @@ -0,0 +1,338 @@ +# Caching Service: Descriptive Errors + Retry Limit + +## Problem Summary + +Two issues with the caching service backfill: + +1. **Errors recorded as just "Error"** — When a relay fails, the + `caching_backfill_relay_progress.last_status` column stores the literal + string `"error"` with no detail. Investigation with `nak` showed the + relays currently flagged as `error` actually fail for **three different + reasons** that we conflate: + - TCP/connect timeout (e.g. `wss://relay.orly.dev`, + `wss://relay.snort.social` — "connection took too long") + - Query timeout (relay connected, REQ sent, but no EOSE within 30s — + e.g. `wss://nostr.wine`, `wss://nostr.land` which actually work fine + via `nak` but our 30s timeout is too aggressive) + - Connection refused / TLS handshake failure + + Root cause: [`nostr_core_lib/nostr_core/core_relays.c:140-147`](../nostr_core_lib/nostr_core/core_relays.c:140) + invokes the progress callback with `status="error"`, `message=NULL` + for **all** failure paths (connect failure, REQ send failure). The + underlying [`nostr_ws_connect()`](../nostr_core_lib/nostr_websocket/nostr_websocket_openssl.c:146) + returns `NULL` with no error string surfaced. The caching callback in + [`caching/src/backfill.c:88`](../caching/src/backfill.c:88) just stores + `"error"` verbatim. + +2. **No retry limit — infinite retry loop** — + [`caching/src/backfill.c:342-354`](../caching/src/backfill.c:342) keeps + `complete=false` when a relay errors with no events, so the next tick + [`pg_inbox_pick_next_author_with_incomplete_relays`](../caching/src/pg_inbox.c) + picks the same author+relay again. The schema + `caching_backfill_relay_progress` has no `attempt_count` / + `consecutive_errors` / `last_attempt_at` column, so a permanently-dead + relay (e.g. `relay.orly.dev`) is retried **every tick forever**. The DB + confirms this — error rows have `updated_at` bumped repeatedly within + the same minute. + +## Goals + +1. Surface **descriptive error messages** from the relay (or our end) all + the way to the `last_status` column so an operator can see *why* a + relay is failing. +2. Stop retrying a (author, relay) pair after **3 consecutive errors**, + marking it `complete=true` so backfill moves on. Log a `WARN`. +3. The existing **"Reset Backfill Progress"** button (UI + + `caching_reset_progress` admin command) must also clear the new error + counters so a manual re-run starts fresh. (Duplicates are deduped by + the inbox, so re-running is safe — this matches the user's mental + model: "once we cache everyone's back events we never have to do it + again, but if a relay was down we can re-run".) + +## Architecture + +```mermaid +flowchart LR + A[backfill_tick] --> B[nostr_ws_connect] + B -->|fail| C[core_relays callback] + C -->|status=error, msg=descriptive| D[backfill_query_callback] + D --> E[pg_inbox_update_relay_progress] + E --> F{consecutive_errors >= 3?} + F -->|yes| G[mark complete=true, WARN log] + F -->|no| H[keep incomplete, retry next tick] + I[Reset Backfill button] --> J[caching_reset_progress] + J --> K[clear consecutive_errors=0, complete=false, until_cursor=0] +``` + +## Error Message Priority Order + +The `last_status` column should reflect the **most descriptive** failure +reason available, in this priority order: + +1. **Relay's own response text** (highest priority) — when a relay sends + a `NOTICE` or `CLOSED` message with content like + `"auth-required: subscribers only"`, `"private relay"`, + `"rate-limited: please slow down"`, etc. This **already works today**: + [`core_relays.c:326-342`](../nostr_core_lib/nostr_core/core_relays.c:326) + captures the message and + [`backfill.c:75-82`](../caching/src/backfill.c:75) formats it as + `"NOTICE: "` / `"CLOSED: "` into `last_status`. No change + needed for this path. + + **DB verification (2026-07-28):** Querying the live DB shows only + `eose` (49 rows) and `error` (6 rows) — **zero NOTICE/CLOSED rows**. + So the relay-response path is wired but not currently firing for the + followed set. The 6 `error` rows are all connection/timeout failures + (confirmed by `nak`: `relay.orly.dev` and `relay.snort.social` + genuinely time out at TCP; the others work via `nak` but hit our + 30s query timeout). This means **the descriptive-transport-error + work in Steps 1-3 is what will actually populate `last_status` for + the errors we see today**. The NOTICE/CLOSED path remains as a + ready fallback for when a relay does respond with a restriction + message. +2. **Our connection/transport error** (this plan, Steps 1-3) — when the + relay never responds at all (TCP timeout, TLS handshake failure, + connection refused), surface a descriptive string like + `"error: connect failed: Connection refused"` instead of just + `"error"`. +3. **Generic fallback** — `"error"` / `"timeout"` only if no more + specific information is available. + +So after this change, an operator querying the DB will see: +- `NOTICE: auth-required: please authenticate` (relay spoke, we listened) +- `CLOSED: rate-limited: too many requests` (relay spoke, we listened) +- `error: connect failed: Connection timed out` (relay never responded) +- `error: tls handshake failed` (relay never responded) +- `timeout` (relay connected but didn't send EOSE in 30s) + +The relay's own words are always preferred over our transport-level +diagnosis. + +## Implementation Plan + +### Step 1 — Surface descriptive errors from `nostr_ws_connect` + +**File:** [`nostr_core_lib/nostr_websocket/nostr_websocket_openssl.c`](../nostr_core_lib/nostr_websocket/nostr_websocket_openssl.c) +**File:** [`nostr_core_lib/nostr_websocket/nostr_websocket_tls.h`](../nostr_core_lib/nostr_websocket/nostr_websocket_tls.h) + +Add a new variant that fills an error buffer: + +```c +/* Connect and on failure write a short descriptive error into err_buf + * (at most err_buf_len-1 bytes, always null-terminated). err_buf may be + * NULL. Returns client handle or NULL. */ +nostr_ws_client_t* nostr_ws_connect_with_error(const char* url, + char* err_buf, + size_t err_buf_len); +``` + +Implementation reuses the existing `nostr_ws_connect` body but, on each +early-return failure path, writes a descriptive string: +- URL parse failure → `"invalid url"` +- TCP connect failure → `"connect failed: "` +- TLS handshake failure → `"tls handshake failed"` +- WebSocket handshake failure → `"ws handshake failed"` +- Memory allocation failure → `"out of memory"` + +Keep `nostr_ws_connect()` as a thin wrapper that calls the new function +with `err_buf=NULL` (no behaviour change for existing callers). + +### Step 2 — Pass descriptive error through `core_relays.c` + +**File:** [`nostr_core_lib/nostr_core/core_relays.c`](../nostr_core_lib/nostr_core/core_relays.c) + +In `synchronous_query_relays_with_progress` (lines 125-148), replace: + +```c +relays[i].client = nostr_ws_connect(relays[i].url); +``` + +with: + +```c +char connect_err[128] = {0}; +relays[i].client = nostr_ws_connect_with_error(relays[i].url, + connect_err, sizeof(connect_err)); +``` + +Then on the error paths, pass the descriptive string as the `message` +(4th) argument to the callback instead of `NULL`: + +```c +if (callback) { + callback(relays[i].url, "error", + connect_err[0] ? connect_err : "connect failed", + 0, relay_count, 0, user_data); +} +``` + +Also distinguish the REQ-send-failure path (line 138-142) with message +`"req send failed"`. + +For the **timeout** path (line 184-189), the callback already sends +`status="timeout"` with `message=NULL` — leave that as-is (the caching +callback already records `"timeout"` distinctly, which is the right +semantic). + +### Step 3 — Capture descriptive error in caching backfill callback + +**File:** [`caching/src/backfill.c`](../caching/src/backfill.c) + +Update `backfill_query_callback` (lines 58-94) so that when +`status == "error"`, the `event_id` parameter (which now carries the +descriptive message from Step 2) is included in `last_status`, the same +way NOTICE/CLOSED already are: + +```c +if (strcmp(status, "error") == 0) { + ctx->got_eose = 0; + if (event_id && event_id[0] != '\0') { + snprintf(ctx->last_status, sizeof(ctx->last_status), + "error: %s", event_id); + } else { + snprintf(ctx->last_status, sizeof(ctx->last_status), "error"); + } +} +``` + +This makes `last_status` store e.g. `"error: connect failed: Connection refused"` +or `"error: tls handshake failed"` instead of just `"error"`. + +### Step 4 — Add error counter column to the schema + +**File:** [`caching/src/pg_inbox.c`](../caching/src/pg_inbox.c) + +In `pg_inbox_update_relay_progress` (around line 866, where +`last_status` is already ensured via `ALTER TABLE ... ADD COLUMN IF NOT +EXISTS`), add the same idempotent ALTER for the new column: + +```c +"ALTER TABLE caching_backfill_relay_progress " +"ADD COLUMN IF NOT EXISTS consecutive_errors INTEGER NOT NULL DEFAULT 0" +``` + +Extend the UPDATE statement to bump `consecutive_errors` on error and +reset it to 0 on success (eose/timeout-with-events). The cleanest +approach: add a new parameter `int is_error` to +`pg_inbox_update_relay_progress` (or infer from `last_status` starting +with `"error"` — simpler, no signature change). We'll infer from +`last_status`: + +```sql +UPDATE caching_backfill_relay_progress +SET until_cursor = $3, + complete = $4 OR (consecutive_errors >= 3), + events_fetched = events_fetched + $5, + last_status = CASE WHEN $6 = '' THEN last_status ELSE $6 END, + consecutive_errors = CASE + WHEN $6 LIKE 'error%' THEN consecutive_errors + 1 + ELSE 0 + END, + updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT +WHERE author_pubkey = $1 AND relay_url = $2 +``` + +The `complete = $4 OR (consecutive_errors >= 3)` clause auto-marks +complete once the threshold is hit, **without** requiring the caller to +know the count. This keeps the backfill.c logic simple. + +> Note: `consecutive_errors >= 3` in the SET refers to the **pre-update** +> value (the value before this tick's increment). To mark complete on +> the *same* tick that the 3rd error is recorded, we want +> `consecutive_errors + 1 >= 3` when `$6 LIKE 'error%'`. So the clause +> becomes: +> ```sql +> complete = $4 OR ($6 LIKE 'error%' AND consecutive_errors + 1 >= 3) +> ``` + +### Step 5 — Log a WARN when a relay is auto-completed by error limit + +**File:** [`caching/src/backfill.c`](../caching/src/backfill.c) + +After each `pg_inbox_update_relay_progress` call in `cr_backfill_tick`, +check the returned status. The simplest approach: after the loop over +incomplete relays, re-query `pg_inbox_get_incomplete_relays` is not +needed — instead, in the per-relay branch where we currently log +`"complete"` vs `"incomplete (will retry)"` (lines 350-353 and 381-391), +detect the auto-complete case: + +```c +int will_auto_complete = (strncmp(qctx.last_status, "error", 5) == 0); +/* The SQL will mark complete if consecutive_errors+1 >= 3. We can't + * see the count from here without an extra query, so log at WARN + * whenever an error path leaves the row incomplete — and at WARN + * when the row would be auto-completed. Simplest: just log WARN + * for every error result with the descriptive status. */ +if (will_auto_complete) { + DEBUG_WARN("backfill: %s @ %s error: %s (will auto-complete after 3 consecutive)", + pk, relay_url, qctx.last_status); +} +``` + +Optionally, add a `pg_inbox_get_relay_error_count(pk, relay_url)` helper +to log the exact count. This is a nice-to-have, not required for the +fix. + +### Step 6 — Reset error counters in "Reset Backfill" + +**File:** [`caching/src/pg_inbox.c`](../caching/src/pg_inbox.c) — `pg_inbox_reset_backfill_progress` + +The existing UPDATE on `caching_followed_pubkeys` is fine, but we also +need to reset the per-relay table. The relay-side admin command in +[`src/config.c:4411`](../src/config.c:4411) already does +`DELETE FROM caching_backfill_relay_progress` — which clears the new +column too (since the rows are gone). So **no change needed** here: +when the user clicks "Reset Backfill Progress", the relay progress +rows are deleted, and `cr_backfill_tick` will re-create them via +`pg_inbox_init_relay_progress_for_author` with +`consecutive_errors=0` (column default). + +Verify this by re-reading +[`caching/src/pg_inbox.c`](../caching/src/pg_inbox.c) +`pg_inbox_init_relay_progress_for_author` — the INSERT must not +explicitly set `consecutive_errors` so the DEFAULT 0 applies. (If it +uses an explicit column list, add `consecutive_errors` omission +check.) + +### Step 7 — Build and verify + +1. Build nostr_core_lib: `cd nostr_core_lib && make` +2. Build caching: `cd caching && make` +3. Build relay: `./make_and_restart_relay.sh --start-caching --reset-backfill` +4. Watch `build/caching_relay.log` for `WARN` lines mentioning + `auto-complete after 3 consecutive`. +5. Query the DB: + ```sql + SELECT author_pubkey, relay_url, complete, consecutive_errors, last_status + FROM caching_backfill_relay_progress + WHERE last_status LIKE 'error%' + ORDER BY consecutive_errors DESC; + ``` + Expect `last_status` values like `error: connect failed: ...` and + rows with `consecutive_errors >= 3` marked `complete=true`. +6. Manually verify a known-dead relay (`wss://relay.orly.dev`) hits the + limit and stops being retried (no more `updated_at` bumps on + subsequent ticks). +7. Click "Reset Backfill Progress" in the UI → confirm + `caching_backfill_relay_progress` is emptied and backfill restarts + from scratch. + +## Files Touched + +| File | Change | +|------|--------| +| `nostr_core_lib/nostr_websocket/nostr_websocket_tls.h` | Add `nostr_ws_connect_with_error()` decl | +| `nostr_core_lib/nostr_websocket/nostr_websocket_openssl.c` | Implement `nostr_ws_connect_with_error()`, make `nostr_ws_connect()` a wrapper | +| `nostr_core_lib/nostr_core/core_relays.c` | Use new connect variant, pass descriptive msg in error callback | +| `caching/src/backfill.c` | Capture descriptive msg in `last_status` for error status; WARN log on error | +| `caching/src/pg_inbox.c` | Add `consecutive_errors` column (idempotent ALTER); extend UPDATE to auto-complete at 3 | + +## Out of Scope (deliberately) + +- No exponential backoff — the user explicitly chose "3 errors then + stop". Backoff can be added later if needed. +- No change to the 30s query timeout — separate concern; could be + raised in a follow-up if `nostr.wine`/`nostr.land` keep timing out + despite actually being reachable. +- No new UI button — the existing "Reset Backfill Progress" button + already covers the "re-run the whole cache" use case. diff --git a/plans/caching_follows_status_plan.md b/plans/caching_follows_status_plan.md new file mode 100644 index 0000000..0e7d4e9 --- /dev/null +++ b/plans/caching_follows_status_plan.md @@ -0,0 +1,275 @@ +# Caching Follows Status UI with Username Resolution + +## Goal + +Show a list of all followed/cached pubkeys with their **usernames**, **event counts by kind**, **outbox relays**, and **backfill status** in the relay admin web UI. Also add username resolution to the existing stats top-pubkeys table. + +## Architecture Overview + +```mermaid +graph LR + A[Admin Web UI] -->|system_command: caching_follows_status| B[relay config.c] + B -->|SQL query| C[(PostgreSQL)] + C -->|caching_followed_pubkeys| D[follows + backfill status] + C -->|events kind=0| E[metadata: name, picture, about] + C -->|events kind=10002| F[outbox relay URLs] + C -->|events GROUP BY kind| G[event counts per kind] + B -->|JSON response| A +``` + +The relay already has DB access and an admin command pipeline. We add one new admin command that joins the caching tables with the events table to produce a rich per-follow status response. + +## Data Sources + +All data is already in PostgreSQL — no new tables needed: + +| Data | Source Table | Query | +|---|---|---| +| Followed pubkeys + backfill status | `caching_followed_pubkeys` | `SELECT pubkey, is_root, backfill_complete, events_fetched, first_seen, last_seen` | +| Per-relay backfill progress | `caching_backfill_relay_progress` | `SELECT relay_url, until_cursor, complete, events_fetched WHERE author_pubkey = $1` | +| Username / profile metadata | `events` (kind=0) | `SELECT content FROM events WHERE pubkey = $1 AND kind = 0 ORDER BY created_at DESC LIMIT 1` — content is JSON with `name`, `picture`, `about`, `nip05` | +| Outbox relays | `events` (kind=10002) | `SELECT content, tags FROM events WHERE pubkey = $1 AND kind = 10002 ORDER BY created_at DESC LIMIT 1` — tags contain `["r", "wss://..."]` entries | +| Event counts by kind | `events` | `SELECT kind, count(*) FROM events WHERE pubkey = $1 GROUP BY kind ORDER BY kind` | + +## Implementation Steps + +### Step 1: Username/Profile Resolution Helper + +**File:** `src/db_ops_postgres.c` (and `src/db_ops.h` for the declaration) + +Add a reusable function that, given a pubkey, returns the most recent kind-0 metadata as a JSON object with `name`, `picture`, `about`, `nip05`, `display_name` fields parsed from the event content. + +```c +// Returns a cJSON object: {"name":"...", "picture":"...", "about":"...", "nip05":"...", "display_name":"..."} +// Returns NULL if no kind-0 event exists for this pubkey. +cJSON* db_get_profile_metadata(const char* pubkey); +``` + +**SQL:** +```sql +SELECT content FROM events + WHERE pubkey = $1 AND kind = 0 + ORDER BY created_at DESC LIMIT 1 +``` + +The `content` column is a JSON string (NIP-01 metadata). Parse it with cJSON and extract the fields. This function will be used by both the caching follows command and the stats top-pubkeys enrichment. + +**Also add to SQLite backend** (`src/db_ops_sqlite.c`) for parity, though the primary target is PostgreSQL. + +### Step 2: Outbox Relay Resolution Helper + +**File:** `src/db_ops_postgres.c` (and `src/db_ops.h`) + +Add a function that returns the outbox relay URLs from the most recent kind-10002 event for a pubkey. + +```c +// Returns a cJSON array of relay URL strings: ["wss://relay1", "wss://relay2", ...] +// Returns NULL if no kind-10002 event exists. +cJSON* db_get_outbox_relays(const char* pubkey); +``` + +**SQL:** +```sql +SELECT tags FROM events + WHERE pubkey = $1 AND kind = 10002 + ORDER BY created_at DESC LIMIT 1 +``` + +The `tags` column is JSONB. Extract all `["r", "url"]` tag entries. In PostgreSQL this can be done in SQL: +```sql +SELECT tag->>1 AS relay_url + FROM events e, + jsonb_array_elements(e.tags) AS tag + WHERE e.pubkey = $1 AND e.kind = 10002 + AND jsonb_typeof(tag) = 'array' + AND jsonb_array_length(tag) >= 2 + AND tag->>0 = 'r' + ORDER BY e.created_at DESC + LIMIT 1 +``` +Actually, simpler: fetch the tags JSONB for the latest kind-10002 and parse in C with cJSON (consistent with how the rest of the codebase works). + +### Step 3: New Admin Command `caching_follows_status` + +**File:** `src/config.c` (in `handle_system_command_unified()`, near the existing `caching_status` handler at line 4128) + +Add a new command `caching_follows_status` that: + +1. Queries `caching_followed_pubkeys` for all followed pubkeys +2. For each pubkey, calls `db_get_profile_metadata()` to get the username +3. For each pubkey, queries event counts by kind: `SELECT kind, count(*) FROM events WHERE pubkey = $1 GROUP BY kind ORDER BY kind` +4. For each pubkey, calls `db_get_outbox_relays()` to get outbox relay list +5. For each pubkey, queries `caching_backfill_relay_progress` for per-relay status +6. Builds a JSON response: + +```json +{ + "command": "caching_follows_status", + "status": "success", + "timestamp": 1785234000, + "follows": [ + { + "pubkey": "4d7842051782...", + "npub": "npub1f4uyypgh...", + "name": "username_or_null", + "picture": "url_or_null", + "is_root": false, + "backfill_complete": false, + "events_fetched": 6965, + "first_seen": 1785233973, + "last_seen": 1785233973, + "event_counts": [ + {"kind": 0, "count": 1}, + {"kind": 1, "count": 658}, + {"kind": 6, "count": 1} + ], + "total_events_in_db": 660, + "outbox_relays": [ + "wss://nostr-01.yakihonne.com", + "wss://nostr.land", + "wss://relay.snort.social" + ], + "relay_progress": [ + {"relay_url": "wss://nos.lol", "until_cursor": 1782686796, "complete": false, "events_fetched": 1000}, + {"relay_url": "wss://relay.damus.io", "until_cursor": 1785234229, "complete": true, "events_fetched": 0} + ] + } + ], + "total_follows": 8, + "total_events_in_db": 9843 +} +``` + +**Performance consideration:** With up to 5000 followed pubkeys (`caching_max_followed_pubkeys`), running per-pubkey queries in a loop could be slow. Two approaches: + +- **Option A (simple, fine for <100 follows):** Loop in C, call the helper functions per pubkey. With 8-50 follows this is fast enough. +- **Option B (scalable, for large follow sets):** Use a single SQL query with CTEs and LEFT JOINs to get everything in one round-trip. This is more complex but handles 5000 follows. + +**Recommendation:** Start with Option A. If follow counts grow large, optimize to Option B later. The per-pubkey queries are all indexed (`idx_events_pubkey_kind`, `idx_events_pubkey`). + +### Step 4: Frontend — Caching Follows Table + +**File:** `api/index.html` + +Add a new section to the caching page (below the existing config form and service/inbox status), containing a table: + +```html +
+

Followed Pubkeys

+ + + + + + + + + + + + + + + + +
NamenpubRoot?Events in DBBackfillOutbox RelaysEvent Counts by KindLast Seen
Loading...
+
+``` + +**File:** `api/index.js` + +1. Add a `fetchCachingFollowsStatus()` function that sends `['system_command', 'caching_follows_status']` via the admin WebSocket. + +2. Add a `handleCachingFollowsResponse(responseData)` function that renders the table: + - Each row shows: name (or "unknown" with a muted style), npub (as a clickable njump.me link), root badge, total events in DB, backfill status (complete/pending with relay count), outbox relays (comma-separated or expandable), event counts by kind (e.g. "k0:1, k1:658, k6:1"), last seen timestamp. + - Sort by total_events_in_db descending (most active first). + +3. Hook into the existing caching page auto-refresh: in the `if (pageName === 'caching')` block at line 5445, also call `fetchCachingFollowsStatus()` and add it to the `cachingRefreshInterval` polling. + +4. Add response routing in `handleSystemCommandResponse()` near line 2082: + ```js + if (responseData.command === 'caching_follows_status') { + handleCachingFollowsResponse(responseData); + } + ``` + +### Step 5: Frontend — Username in Stats Top-Pubkeys Table + +**File:** `api/index.js` + +Modify `populateStatsPubkeysFromMonitoring()` (line 4882) and `populateStatsPubkeys()` (line 4844) to add a "Name" column. + +**Challenge:** The top-pubkeys monitoring data (`src/api.c:470` `query_top_pubkeys()`) currently returns only `{pubkey, event_count}`. To add usernames, we have two options: + +- **Option A (backend enrichment):** Modify `query_top_pubkeys()` in `src/api.c` to also call `db_get_profile_metadata()` for each of the top 10 pubkeys and include `name` in the response. This is the cleanest approach — 10 extra queries on a 30-second polling cycle is negligible. + +- **Option B (frontend enrichment):** The frontend separately queries kind-0 metadata for each pubkey. This is messier and adds latency. + +**Recommendation:** Option A. Modify `query_top_pubkeys()` to include `name` and `picture` fields. + +**Changes:** +1. `src/api.c:470` — in `query_top_pubkeys()`, after getting each pubkey row, call `db_get_profile_metadata(pubkey)` and add `name` to the pubkey object. +2. `api/index.js:4882` — in `populateStatsPubkeysFromMonitoring()`, add a "Name" column before the npub column. Display `pubkey.name || 'unknown'`. +3. `api/index.js:4844` — same change in `populateStatsPubkeys()`. +4. `api/index.html` — add a `Name` column to the top-pubkeys table header. + +### Step 6: npub Conversion + +The frontend already has `window.NostrTools.nip19.npubEncode()` available (used at `api/index.js:4902`). The backend `caching_follows_status` response should include both the hex pubkey and the npub for convenience, but the frontend can also convert. Including npub in the backend response is preferred since the backend has access to the same nostr library. + +**File:** `src/config.c` — use `nostr_bytes_to_hex` / `nostr_decode_npub` from nostr_core_lib, or simply return the hex pubkey and let the frontend convert (it already does this in the stats page). **Recommendation: let the frontend convert** — it already has the pattern at line 4902, and it avoids adding nostr_core_lib dependency to the config.c command handler. + +## File Change Summary + +| File | Change | +|---|---| +| `src/db_ops.h` | Declare `db_get_profile_metadata()` and `db_get_outbox_relays()` | +| `src/db_ops_postgres.c` | Implement both functions (PostgreSQL) | +| `src/db_ops_sqlite.c` | Implement both functions (SQLite, for parity) | +| `src/db_ops.c` | Wire up dispatch for both functions | +| `src/config.c` | Add `caching_follows_status` command handler in `handle_system_command_unified()` | +| `src/api.c` | Enrich `query_top_pubkeys()` with `name` field | +| `api/index.html` | Add follows table to caching page; add Name column to stats top-pubkeys table | +| `api/index.js` | Add `fetchCachingFollowsStatus()`, `handleCachingFollowsResponse()`, route the response, add Name column to pubkey tables, hook into caching page auto-refresh | + +## Mermaid: Data Flow + +```mermaid +sequenceDiagram + participant UI as Admin Web UI + participant Relay as relay config.c + participant DB as PostgreSQL + participant Cache as caching_relay process + + UI->>Relay: system_command: caching_follows_status + Relay->>DB: SELECT * FROM caching_followed_pubkeys + DB-->>Relay: 8 rows + loop each pubkey + Relay->>DB: SELECT content FROM events WHERE kind=0 AND pubkey=$1 + DB-->>Relay: metadata JSON + Relay->>DB: SELECT kind,count(*) FROM events WHERE pubkey=$1 GROUP BY kind + DB-->>Relay: event counts + Relay->>DB: SELECT tags FROM events WHERE kind=10002 AND pubkey=$1 + DB-->>Relay: outbox relay tags + Relay->>DB: SELECT * FROM caching_backfill_relay_progress WHERE author_pubkey=$1 + DB-->>Relay: per-relay status + end + Relay-->>UI: JSON response with follows array + UI->>UI: render table with usernames, event counts, relays +``` + +## Edge Cases + +- **No kind-0 metadata for a pubkey:** Show "unknown" in the name column with muted styling. The pubkey is still followed and being cached; we just don't have their profile yet. The backfill should eventually fetch their kind-0. +- **No kind-10002 for a pubkey:** Show "none" in the outbox relays column. The caching service falls back to bootstrap relays for these authors. +- **Large follow sets (5000):** The per-pubkey loop could be slow. Add a `LIMIT` parameter to the command (default 100, configurable). The UI can paginate or show "showing first 100 of 5000". +- **Kind-0 content is not valid JSON:** Parse defensively — if cJSON parsing fails, treat as no metadata. +- **Replaceable events:** Kind 0 is replaceable, so `ORDER BY created_at DESC LIMIT 1` gets the latest. The unique index `uq_events_replaceable_pubkey_kind` ensures only one kind-0 per pubkey is stored, so this is already handled at the DB level. + +## Future Enhancements (not in this plan) + +- Add/remove follows manually via admin commands (currently follows come from root npub's kind-3) +- Delete individual events via admin command +- Real-time backfill tick log streaming +- Per-follow detail view (click a row to see all events for that author) +- Search/filter the follows table by name or npub diff --git a/plans/php_admin_page_plan.md b/plans/php_admin_page_plan.md new file mode 100644 index 0000000..647e0eb --- /dev/null +++ b/plans/php_admin_page_plan.md @@ -0,0 +1,305 @@ +# PHP Admin Page for Caching Service + +## Problem + +The existing Nostr-based admin API (`caching_follows_status` kind-23456 +command) encrypts its JSON response with NIP-44, which has a hard 64KB +plaintext limit. With 679+ followed pubkeys, the response exceeds this +limit by ~2-4×, causing `Encryption result code: -15` +(`NOSTR_ERROR_NIP44_BUFFER_TOO_SMALL`) and the UI shows +"Failed to load". + +Rather than paginating the NIP-44 admin command (complex, still limited), +we build a **separate traditional admin page** using PHP + nginx that +queries PostgreSQL directly. This bypasses the NIP-44 limit entirely, +scales to thousands of follows, and runs in parallel with the existing +Nostr admin API (no changes to the relay binary needed). + +## Architecture + +```mermaid +flowchart LR + Browser[Admin Browser] -->|HTTPS| Nginx + Nginx -->|/admin/ *.php| PHP_FPM[PHP-FPM] + Nginx -->|/ and /api| Relay[C-Relay-PG :8888] + PHP_FPM -->|PDO| PostgreSQL[(PostgreSQL crelay)] + Relay -->|libpq| PostgreSQL +``` + +- **nginx** fronts everything on 443 (existing SSL setup). + - `/` and `/api` → proxy to C-Relay-PG (existing, unchanged) + - `/admin/` → PHP-FPM (new) +- **PHP-FPM** runs as a pool (e.g. `www` or a dedicated `relay-admin` + pool). PHP files live in `/opt/c-relay-pg/admin/` (or similar). +- **PDO** connects to PostgreSQL using the same `crelay` credentials + the relay uses. Read-only queries for display; write queries only for + config updates (with auth guard). +- **No relay restart needed** — this is purely nginx + PHP-FPM + configuration + static files. + +## Tech Stack + +- **PHP 8.x** with PDO PostgreSQL extension (`php-pgsql`) +- **PHP-FPM** managed by systemd (or the existing nginx PHP-FPM pool) +- **nginx** `location /admin/` block with `fastcgi_pass` to PHP-FPM +- **Frontend**: vanilla HTML + JS (no build step), same visual style as + the existing `api/index.html` admin page. Optionally use HTMX or + Alpine.js for lightweight interactivity, but vanilla JS is sufficient. + +## Authentication + +The PHP admin page needs its own auth since it's not going through the +Nostr admin command path. Options (in order of simplicity): + +1. **HTTP Basic Auth** (nginx-level) — simplest, sufficient for a + single-admin relay. Add `auth_basic` to the `/admin/` location block + with a `.htpasswd` file. +2. **Session-based login** — PHP login form, password hash in a config + file, session cookie. More flexible but more code. +3. **Nostr login (NIP-07 extension)** — the page could verify a signed + auth event from the admin's browser extension, matching against the + `admin_pubkey` in the config table. Most aligned with the existing + system but most complex. + +**Recommendation:** Start with HTTP Basic Auth (option 1) for the MVP, +upgrade to Nostr login later if desired. + +## Database Access + +PHP connects via PDO with the same credentials the relay uses: +``` +host=localhost port=5432 dbname=crelay user=crelay password=crelay +``` + +Store the connection string in a PHP config file +(`/opt/c-relay-pg/admin/config.php`) that is NOT web-accessible (outside +the document root or protected by nginx). + +## Pages / Endpoints + +### 1. Dashboard (`/admin/index.php`) +Overview cards: +- Service state, heartbeat age, config generation (from + `caching_service_state`) +- Followed author count, selected relay count, connected relay count +- Events fetched, inbox inserts, inbox pending count +- Backfill progress: X/Y authors complete +- Active backfill target (pubkey + relay) from `caching_backfill_active` +- Error relays summary (count of rows with `consecutive_errors >= 3`) + +### 2. Follows (`/admin/follows.php`) +The main table that was failing via NIP-44. Paginated server-side: +- Page size: 50 or 100 follows per page +- Columns: Name (from kind-0), npub, Root?, Events in DB, Backfill + Complete, Relays (expandable), Last Seen +- JOIN with `events` table for kind-0 profile metadata (name, + display_name, picture, nip05) +- JOIN with `caching_backfill_relay_progress` for per-relay status +- Filter: all / incomplete only / root only / error relays only +- Search by name or pubkey prefix +- Sort by: events_fetched desc, name, last_seen, backfill_complete + +SQL (paginated): +```sql +SELECT fp.pubkey, fp.is_root, fp.backfill_complete, fp.events_fetched, + fp.first_seen, fp.last_seen, + e.content::json->>'name' AS name, + e.content::json->>'display_name' AS display_name, + e.content::json->>'picture' AS picture, + e.content::json->>'nip05' AS nip05, + (SELECT COUNT(*) FROM events WHERE pubkey = fp.pubkey) AS total_events +FROM caching_followed_pubkeys fp +LEFT JOIN LATERAL ( + SELECT content FROM events + WHERE pubkey = fp.pubkey AND kind = 0 + ORDER BY created_at DESC LIMIT 1 +) e ON true +ORDER BY fp.is_root DESC, fp.events_fetched DESC +LIMIT $page_size OFFSET $offset; +``` + +### 3. Relay Progress (`/admin/relays.php`) +Per (author, relay) backfill status from +`caching_backfill_relay_progress`: +- Columns: Author (name + npub), Relay URL, Until Cursor, Complete, + Events Fetched, Consecutive Errors, Last Status, Updated At +- Filter: incomplete only / error relays / complete / all +- Highlight rows with `consecutive_errors >= 3` +- Show `last_status` (now descriptive: `error: tls/ws handshake failed`, + `eose`, `timeout`, etc.) + +### 4. Config (`/admin/config.php`) +Read and edit caching config values from the `config` table: +- Read: `caching_root_npubs`, `caching_bootstrap_relays`, + `caching_kinds`, `caching_admin_kinds`, all `caching_*` keys +- Edit: form to update values, bumps `caching_config_generation` on + save (so the caching service hot-reloads) +- This replaces the "Apply Configuration" button for caching settings + +### 5. Inbox (`/admin/inbox.php`) +Monitor the `caching_event_inbox` queue: +- Pending count by source_class (live / backfill / discovery) +- Oldest pending age +- Recent events preview (last 20, with kind + pubkey + source) +- This helps diagnose if the poller is keeping up + +## File Structure + +``` +/opt/c-relay-pg/admin/ # PHP document root (or symlink) +├── config.php # DB connection config (NOT web-served) +├── index.php # Dashboard +├── follows.php # Followed pubkeys table (paginated) +├── relays.php # Per-relay backfill progress +├── config.php # Caching config editor +├── inbox.php # Inbox queue monitor +├── api/ +│ ├── follows.php # JSON endpoint for follows (AJAX) +│ ├── relays.php # JSON endpoint for relay progress +│ ├── status.php # JSON endpoint for dashboard stats +│ └── config.php # JSON endpoint for config get/set +├── assets/ +│ ├── style.css # Shared CSS (match existing admin theme) +│ └── app.js # Shared JS (pagination, search, refresh) +└── .htpasswd # HTTP Basic Auth passwords +``` + +In the repo, these live under `admin/` (new top-level directory, +parallel to `api/`). + +## nginx Configuration + +Add to the existing `server` block in +[`examples/deployment/nginx-proxy/nginx.conf`](../examples/deployment/nginx-proxy/nginx.conf): + +```nginx +# PHP admin page for caching service (direct PostgreSQL access) +location /admin/ { + root /opt/c-relay-pg; + index index.php; + + # HTTP Basic Auth + auth_basic "Relay Admin"; + auth_basic_user_file /opt/c-relay-pg/admin/.htpasswd; + + # Pass .php files to PHP-FPM + location ~ \.php$ { + fastcgi_pass unix:/run/php/php8.2-fpm.sock; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + } + + # Deny access to config.php (contains DB credentials) + location = /admin/config.php { + deny all; + } +} +``` + +## Implementation Plan + +### Step 1 — Server setup (one-time) +- Install PHP 8.x + PHP-FPM + `php-pgsql` on the relay server +- Create `/opt/c-relay-pg/admin/` directory +- Configure PHP-FPM pool (or use default `www` pool) +- Add the nginx `location /admin/` block +- Create `.htpasswd` with `htpasswd` / `openssl passwd` +- Reload nginx + +### Step 2 — PHP config + DB connection helper +- `admin/lib/db.php` — PDO connection helper, read-only by default +- `admin/config.php` — connection string (protected from web access) +- Test: `php -r "echo 'ok';"` + simple `SELECT 1` query + +### Step 3 — Dashboard page (`index.php`) +- Query `caching_service_state` for overview stats +- Query `caching_backfill_active` for active target +- Query `caching_backfill_relay_progress` for error summary +- Display as cards + summary table +- Auto-refresh every 15s via JS `setInterval` + `fetch()` + +### Step 4 — Follows page (`follows.php`) +- Server-side pagination (page param in URL) +- JOIN with `events` for kind-0 profile metadata +- Sub-query for per-pubkey event count +- Expandable relay progress per follow (AJAX load on click) +- Search + filter controls +- This is the page that replaces the broken NIP-44 `caching_follows_status` + +### Step 5 — Relay progress page (`relays.php`) +- Full `caching_backfill_relay_progress` table with pagination +- Filter by complete/incomplete/error +- Show `last_status` and `consecutive_errors` columns +- Color-code: green=eose, yellow=timeout, red=error, gray=complete + +### Step 6 — Config editor page (`config.php` → `admin/config-edit.php`) +- Read all `caching_*` config keys +- Form to edit `caching_root_npubs`, `caching_bootstrap_relays`, + `caching_kinds`, etc. +- On save: `UPDATE config SET value = $1 WHERE key = $2` + bump + `caching_config_generation` +- Confirmation dialog before applying + +### Step 7 — Inbox monitor page (`inbox.php`) +- Pending counts by source_class +- Oldest pending age +- Recent 20 events preview +- Poller stats (from relay log or a new stats table) + +### Step 8 — Styling + polish +- Match the existing `api/index.css` dark theme +- Responsive layout (works on mobile) +- Auto-refresh for dashboard and follows pages + +## Security Considerations + +1. **HTTP Basic Auth** on `/admin/` — minimum barrier +2. **`config.php` denied** via nginx `location` block (contains DB password) +3. **PDO prepared statements** everywhere — no SQL injection +4. **Read-only DB user** for display pages (optional: create a + `crelay_readonly` role with SELECT-only on caching tables; use the + full `crelay` user only for the config editor) +5. **HTTPS only** — the existing nginx SSL config covers this +6. **No CORS needed** — same origin as the relay + +## Out of Scope (for MVP) + +- Nostr NIP-07 extension login (use HTTP Basic Auth first) +- Write operations beyond config editing (reset backfill, etc. — those + stay on the Nostr admin API) +- Real-time WebSocket updates (use polling instead — 15s interval is + sufficient for a monitoring dashboard) +- Multi-user / role-based access + +## Files to Create + +| File | Purpose | +|------|---------| +| `admin/config.php` | DB connection config (protected) | +| `admin/lib/db.php` | PDO connection helper | +| `admin/lib/helpers.php` | Shared helpers (pagination, formatting) | +| `admin/index.php` | Dashboard | +| `admin/follows.php` | Followed pubkeys table (paginated) | +| `admin/relays.php` | Per-relay backfill progress | +| `admin/config-edit.php` | Caching config editor | +| `admin/inbox.php` | Inbox queue monitor | +| `admin/api/status.php` | JSON: dashboard stats | +| `admin/api/follows.php` | JSON: paginated follows | +| `admin/api/relays.php` | JSON: relay progress | +| `admin/assets/style.css` | Shared CSS | +| `admin/assets/app.js` | Shared JS | +| `admin/.htpasswd` | HTTP Basic Auth passwords | +| `examples/deployment/nginx-proxy/nginx.conf` | Add `/admin/` location block | + +## Deployment + +1. Copy `admin/` to `/opt/c-relay-pg/admin/` on the server +2. Install `php8.2-fpm php8.2-pgsql` (or distro-equivalent) +3. Create `.htpasswd`: `htpasswd -c /opt/c-relay-pg/admin/.htpasswd admin` +4. Edit `admin/config.php` with the PostgreSQL connection string +5. Add the nginx `/admin/` location block, reload nginx +6. Visit `https://relay.yourdomain.com/admin/` + +No relay restart required. The PHP admin page runs entirely in parallel +with the existing relay and Nostr admin API. diff --git a/relay.pid b/relay.pid index bdaa10d..4e75187 100644 --- a/relay.pid +++ b/relay.pid @@ -1 +1 @@ -594859 +3125854 diff --git a/src/api.c b/src/api.c index 3c32c3f..72dd8e5 100644 --- a/src/api.c +++ b/src/api.c @@ -493,10 +493,34 @@ cJSON* query_top_pubkeys(void) { cJSON* pubkey_item = cJSON_GetObjectItemCaseSensitive(row, "pubkey"); cJSON* count_item = cJSON_GetObjectItemCaseSensitive(row, "count"); - cJSON_AddStringToObject(pubkey_obj, "pubkey", - cJSON_IsString(pubkey_item) ? pubkey_item->valuestring : ""); + const char* pk_str = cJSON_IsString(pubkey_item) ? pubkey_item->valuestring : ""; + cJSON_AddStringToObject(pubkey_obj, "pubkey", pk_str); cJSON_AddNumberToObject(pubkey_obj, "event_count", cJSON_IsNumber(count_item) ? count_item->valuedouble : 0.0); + + // Enrich with profile name from kind-0 metadata. + if (pk_str[0] != '\0') { + cJSON* metadata = db_get_profile_metadata(pk_str); + if (metadata) { + cJSON* name = cJSON_GetObjectItemCaseSensitive(metadata, "name"); + cJSON* display_name = cJSON_GetObjectItemCaseSensitive(metadata, "display_name"); + const char* display = NULL; + if (display_name && cJSON_IsString(display_name) && display_name->valuestring[0]) + display = display_name->valuestring; + else if (name && cJSON_IsString(name) && name->valuestring[0]) + display = name->valuestring; + cJSON_AddStringToObject(pubkey_obj, "name", display ? display : ""); + cJSON* picture = cJSON_GetObjectItemCaseSensitive(metadata, "picture"); + if (picture && cJSON_IsString(picture) && picture->valuestring[0]) + cJSON_AddStringToObject(pubkey_obj, "picture", picture->valuestring); + cJSON_Delete(metadata); + } else { + cJSON_AddStringToObject(pubkey_obj, "name", ""); + } + } else { + cJSON_AddStringToObject(pubkey_obj, "name", ""); + } + cJSON_AddItemToArray(pubkeys_array, pubkey_obj); } cJSON_Delete(rows); @@ -1613,9 +1637,29 @@ char* generate_stats_json(void) { double count_val = cJSON_IsNumber(count_item) ? count_item->valuedouble : 0.0; double pct = (total_events > 0) ? ((count_val * 100.0) / (double)total_events) : 0.0; - cJSON_AddStringToObject(pubkey_obj, "pubkey", cJSON_IsString(pubkey_item) ? pubkey_item->valuestring : ""); + const char* pk_str = cJSON_IsString(pubkey_item) ? pubkey_item->valuestring : ""; + cJSON_AddStringToObject(pubkey_obj, "pubkey", pk_str); cJSON_AddNumberToObject(pubkey_obj, "event_count", count_val); cJSON_AddNumberToObject(pubkey_obj, "percentage", pct); + // Enrich with profile name from kind-0 metadata. + if (pk_str[0] != '\0') { + cJSON* metadata = db_get_profile_metadata(pk_str); + if (metadata) { + cJSON* name = cJSON_GetObjectItemCaseSensitive(metadata, "name"); + cJSON* display_name = cJSON_GetObjectItemCaseSensitive(metadata, "display_name"); + const char* display = NULL; + if (display_name && cJSON_IsString(display_name) && display_name->valuestring[0]) + display = display_name->valuestring; + else if (name && cJSON_IsString(name) && name->valuestring[0]) + display = name->valuestring; + cJSON_AddStringToObject(pubkey_obj, "name", display ? display : ""); + cJSON_Delete(metadata); + } else { + cJSON_AddStringToObject(pubkey_obj, "name", ""); + } + } else { + cJSON_AddStringToObject(pubkey_obj, "name", ""); + } cJSON_AddItemToArray(top_pubkeys, pubkey_obj); } cJSON_Delete(pubkey_rows); diff --git a/src/caching_inbox_poller.c b/src/caching_inbox_poller.c index 464af14..0663fdd 100644 --- a/src/caching_inbox_poller.c +++ b/src/caching_inbox_poller.c @@ -36,7 +36,7 @@ // ---- Defaults ---------------------------------------------------------------- -#define DEFAULT_BATCH_SIZE 25 +#define DEFAULT_BATCH_SIZE 150 #define DEFAULT_ACTIVE_POLL_MS 200 #define DEFAULT_IDLE_POLL_MS 5000 diff --git a/src/config.c b/src/config.c index bd70890..d0ad0d2 100644 --- a/src/config.c +++ b/src/config.c @@ -4197,6 +4197,17 @@ int handle_system_command_unified(cJSON* event, const char* command, char* error int svc_live = 0, svc_backfill = 0, svc_oldest = 0; db_caching_inbox_pending_counts(&svc_live, &svc_backfill); (void)svc_live; (void)svc_backfill; (void)svc_oldest; + + // Backfill author progress (per-author until-cursor drain model). + // The caching_service_state table carries backfill_authors_complete + // and backfill_authors_total columns (altered in via pg_schema.sql). + // Surface them on the service object so the frontend can render + // "Backfill: X/Y authors complete". + int bf_complete = 0, bf_total = 0; + if (db_caching_backfill_author_counts(&bf_complete, &bf_total) == DB_OK) { + cJSON_AddNumberToObject(service_obj, "backfill_authors_complete", bf_complete); + cJSON_AddNumberToObject(service_obj, "backfill_authors_total", bf_total); + } } #endif @@ -4218,6 +4229,174 @@ int handle_system_command_unified(cJSON* event, const char* command, char* error snprintf(error_message, error_size, "failed to send caching status response"); return -1; } + else if (strcmp(command, "caching_follows_status") == 0) { + // Build per-follow status response with usernames, event counts, + // outbox relays, and backfill progress. + cJSON* response = cJSON_CreateObject(); + cJSON_AddStringToObject(response, "command", "caching_follows_status"); + cJSON_AddStringToObject(response, "status", "success"); + cJSON_AddNumberToObject(response, "timestamp", (double)time(NULL)); + + // Read the active backfill target from the caching_backfill_active + // table (written by the caching_relay process) so the UI can + // highlight which author/relay is currently being queried. + { + char active_pk[65] = {0}; + char active_relay[256] = {0}; + db_stmt_t* at_stmt = NULL; + if (db_prepare("SELECT active_pubkey, active_relay " + "FROM caching_backfill_active WHERE id = 1", &at_stmt) == DB_OK) { + if (db_step_stmt(at_stmt) == DB_ROW) { + const char* apk = db_column_text_value(at_stmt, 0); + const char* arl = db_column_text_value(at_stmt, 1); + cJSON_AddStringToObject(response, "active_backfill_pubkey", + apk ? apk : ""); + cJSON_AddStringToObject(response, "active_backfill_relay", + arl ? arl : ""); + } + db_finalize_stmt(at_stmt); + } + // If the table doesn't exist or query fails, just omit the fields. + } + + cJSON* follows_array = cJSON_CreateArray(); + long total_events_in_db = 0; + + // Query all followed pubkeys from caching_followed_pubkeys. + db_stmt_t* stmt = NULL; + if (db_prepare("SELECT pubkey, is_root, backfill_complete, events_fetched, " + "first_seen, last_seen FROM caching_followed_pubkeys " + "ORDER BY is_root DESC, pubkey", &stmt) == DB_OK) { + while (db_step_stmt(stmt) == DB_ROW) { + const char* pk = db_column_text_value(stmt, 0); + if (!pk || pk[0] == '\0') continue; + + cJSON* follow = cJSON_CreateObject(); + cJSON_AddStringToObject(follow, "pubkey", pk); + + // is_root (column 1) - boolean + const char* is_root_str = db_column_text_value(stmt, 1); + int is_root = (is_root_str && (is_root_str[0] == 't' || is_root_str[0] == 'T' || is_root_str[0] == '1')); + cJSON_AddBoolToObject(follow, "is_root", is_root); + + // backfill_complete (column 2) - boolean + const char* bf_complete_str = db_column_text_value(stmt, 2); + int bf_complete = (bf_complete_str && (bf_complete_str[0] == 't' || bf_complete_str[0] == 'T' || bf_complete_str[0] == '1')); + cJSON_AddBoolToObject(follow, "backfill_complete", bf_complete); + + // events_fetched (column 3) - int + long long events_fetched = db_column_int64_value(stmt, 3); + cJSON_AddNumberToObject(follow, "events_fetched", (double)events_fetched); + + // first_seen / last_seen (columns 4, 5) + long long first_seen = db_column_int64_value(stmt, 4); + long long last_seen = db_column_int64_value(stmt, 5); + cJSON_AddNumberToObject(follow, "first_seen", (double)first_seen); + cJSON_AddNumberToObject(follow, "last_seen", (double)last_seen); + + // Profile metadata (kind-0) for username. + cJSON* metadata = db_get_profile_metadata(pk); + if (metadata) { + cJSON* name = cJSON_GetObjectItemCaseSensitive(metadata, "name"); + cJSON* display_name = cJSON_GetObjectItemCaseSensitive(metadata, "display_name"); + cJSON* picture = cJSON_GetObjectItemCaseSensitive(metadata, "picture"); + cJSON* nip05 = cJSON_GetObjectItemCaseSensitive(metadata, "nip05"); + // Prefer display_name, fall back to name. + const char* display = NULL; + if (display_name && cJSON_IsString(display_name) && display_name->valuestring[0]) + display = display_name->valuestring; + else if (name && cJSON_IsString(name) && name->valuestring[0]) + display = name->valuestring; + cJSON_AddStringToObject(follow, "name", display ? display : ""); + if (picture && cJSON_IsString(picture) && picture->valuestring[0]) + cJSON_AddStringToObject(follow, "picture", picture->valuestring); + if (nip05 && cJSON_IsString(nip05) && nip05->valuestring[0]) + cJSON_AddStringToObject(follow, "nip05", nip05->valuestring); + cJSON_Delete(metadata); + } else { + cJSON_AddStringToObject(follow, "name", ""); + } + + // Event counts by kind for this pubkey. + cJSON* event_counts = cJSON_CreateArray(); + long long total_for_pubkey = 0; + db_stmt_t* kind_stmt = NULL; + const char* kind_params[1] = { pk }; + // Use db_prepare with parameterized query. + if (db_prepare("SELECT kind, COUNT(*) FROM events WHERE pubkey = ? " + "GROUP BY kind ORDER BY kind", &kind_stmt) == DB_OK) { + if (db_bind_text_param(kind_stmt, 1, pk) == DB_OK) { + while (db_step_stmt(kind_stmt) == DB_ROW) { + int kind = db_column_int_value(kind_stmt, 0); + long long count = db_column_int64_value(kind_stmt, 1); + cJSON* kc = cJSON_CreateObject(); + cJSON_AddNumberToObject(kc, "kind", (double)kind); + cJSON_AddNumberToObject(kc, "count", (double)count); + cJSON_AddItemToArray(event_counts, kc); + total_for_pubkey += count; + } + } + db_finalize_stmt(kind_stmt); + } + cJSON_AddItemToObject(follow, "event_counts", event_counts); + cJSON_AddNumberToObject(follow, "total_events_in_db", (double)total_for_pubkey); + total_events_in_db += total_for_pubkey; + + // Outbox relays from kind-10002. + cJSON* outbox = db_get_outbox_relays(pk); + if (outbox) { + cJSON_AddItemToObject(follow, "outbox_relays", outbox); + } else { + cJSON_AddItemToObject(follow, "outbox_relays", cJSON_CreateArray()); + } + + // Per-relay backfill progress. + cJSON* relay_progress = cJSON_CreateArray(); + db_stmt_t* rp_stmt = NULL; + if (db_prepare("SELECT relay_url, until_cursor, complete, events_fetched, " + "COALESCE(last_status, '') AS last_status " + "FROM caching_backfill_relay_progress " + "WHERE author_pubkey = ? ORDER BY relay_url", &rp_stmt) == DB_OK) { + if (db_bind_text_param(rp_stmt, 1, pk) == DB_OK) { + while (db_step_stmt(rp_stmt) == DB_ROW) { + const char* relay_url = db_column_text_value(rp_stmt, 0); + long long until_cursor = db_column_int64_value(rp_stmt, 1); + const char* complete_str = db_column_text_value(rp_stmt, 2); + long long rp_events = db_column_int64_value(rp_stmt, 3); + const char* rp_status = db_column_text_value(rp_stmt, 4); + int rp_complete = (complete_str && (complete_str[0] == 't' || complete_str[0] == 'T' || complete_str[0] == '1')); + + cJSON* rp = cJSON_CreateObject(); + cJSON_AddStringToObject(rp, "relay_url", relay_url ? relay_url : ""); + cJSON_AddNumberToObject(rp, "until_cursor", (double)until_cursor); + cJSON_AddBoolToObject(rp, "complete", rp_complete); + cJSON_AddNumberToObject(rp, "events_fetched", (double)rp_events); + cJSON_AddStringToObject(rp, "last_status", rp_status ? rp_status : ""); + cJSON_AddItemToArray(relay_progress, rp); + } + } + db_finalize_stmt(rp_stmt); + } + cJSON_AddItemToObject(follow, "relay_progress", relay_progress); + + cJSON_AddItemToArray(follows_array, follow); + } + db_finalize_stmt(stmt); + } + + cJSON_AddItemToObject(response, "follows", follows_array); + cJSON_AddNumberToObject(response, "total_follows", (double)cJSON_GetArraySize(follows_array)); + cJSON_AddNumberToObject(response, "total_events_in_db", (double)total_events_in_db); + + if (send_admin_response_event(response, sender_pubkey, wsi) == 0) { + cJSON_Delete(response); + return 0; + } + + cJSON_Delete(response); + snprintf(error_message, error_size, "failed to send caching follows status response"); + return -1; + } else if (strcmp(command, "caching_reset_progress") == 0) { // Reset backfill progress DEBUG_INFO("Admin requested caching backfill progress reset"); @@ -4227,8 +4406,23 @@ int handle_system_command_unified(cJSON* event, const char* command, char* error cJSON_AddNumberToObject(response, "timestamp", (double)time(NULL)); #ifdef DB_BACKEND_POSTGRES - // Clear the caching_backfill_progress table - if (db_exec_sql("DELETE FROM caching_backfill_progress") == 0) { + // Clear the backfill progress tables and mark all authors incomplete. + // 1. caching_backfill_progress (legacy window table — may be empty) + // 2. caching_backfill_relay_progress (per-relay drain table) + // 3. caching_followed_pubkeys: reset backfill_complete=FALSE, until_cursor=0 + int reset_ok = (db_exec_sql("DELETE FROM caching_backfill_progress") == 0); + if (reset_ok) { + reset_ok = (db_exec_sql("DELETE FROM caching_backfill_relay_progress") == 0); + } + if (reset_ok) { + /* Mark all followed authors as incomplete so the backfill picks them + * up again. Reset until_cursor to 0 so each relay starts fresh. */ + reset_ok = (db_exec_sql( + "UPDATE caching_followed_pubkeys " + "SET backfill_complete = FALSE, until_cursor = 0, events_fetched = 0, " + " updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT") == 0); + } + if (reset_ok) { cJSON_AddStringToObject(response, "status", "success"); cJSON_AddStringToObject(response, "message", "Backfill progress reset. The caching service will restart backfill from the beginning."); DEBUG_INFO("Caching backfill progress reset successfully"); diff --git a/src/db_ops.c b/src/db_ops.c index 984875d..765c3c5 100644 --- a/src/db_ops.c +++ b/src/db_ops.c @@ -178,11 +178,20 @@ int db_caching_inbox_pending_counts(int* out_live_count, int* out_backfill_count int db_caching_inbox_oldest_age(int* out_oldest_age_seconds) { return postgres_db_caching_inbox_oldest_age(out_oldest_age_seconds); } +int db_caching_backfill_author_counts(int* out_complete, int* out_total) { + return postgres_db_caching_backfill_author_counts(out_complete, out_total); +} int db_caching_inbox_insert(const char* event_id, const char* event_json, const char* source_relay, const char* source_class, int priority) { return postgres_db_caching_inbox_insert(event_id, event_json, source_relay, source_class, priority); } +cJSON* db_get_profile_metadata(const char* pubkey) { + return postgres_db_get_profile_metadata(pubkey); +} +cJSON* db_get_outbox_relays(const char* pubkey) { + return postgres_db_get_outbox_relays(pubkey); +} #else @@ -365,6 +374,11 @@ int db_caching_inbox_oldest_age(int* out_oldest_age_seconds) { if (out_oldest_age_seconds) *out_oldest_age_seconds = 0; return DB_ERROR; } +int db_caching_backfill_author_counts(int* out_complete, int* out_total) { + if (out_complete) *out_complete = 0; + if (out_total) *out_total = 0; + return DB_ERROR; +} int db_caching_inbox_insert(const char* event_id, const char* event_json, const char* source_relay, const char* source_class, int priority) { @@ -372,4 +386,15 @@ int db_caching_inbox_insert(const char* event_id, const char* event_json, return DB_ERROR; } +cJSON* db_get_profile_metadata(const char* pubkey) { + /* SQLite backend: kind-0 metadata not supported in this context. + * The caching follows feature is PostgreSQL-only. */ + (void)pubkey; + return NULL; +} +cJSON* db_get_outbox_relays(const char* pubkey) { + (void)pubkey; + return NULL; +} + #endif diff --git a/src/db_ops.h b/src/db_ops.h index 8289378..6c93ec0 100644 --- a/src/db_ops.h +++ b/src/db_ops.h @@ -133,8 +133,23 @@ int db_wal_checkpoint_truncate(void); cJSON* db_caching_inbox_dequeue_batch(int batch_size, int* out_count); int db_caching_inbox_pending_counts(int* out_live_count, int* out_backfill_count); int db_caching_inbox_oldest_age(int* out_oldest_age_seconds); + +// Backfill author progress from caching_service_state (per-author until-cursor +// drain model). Returns DB_OK and fills out_complete/out_total, or DB_ERROR. +int db_caching_backfill_author_counts(int* out_complete, int* out_total); int db_caching_inbox_insert(const char* event_id, const char* event_json, const char* source_relay, const char* source_class, int priority); +// Profile metadata and outbox relay helpers. +// db_get_profile_metadata: returns the most recent kind-0 metadata for a pubkey +// as a cJSON object with name/picture/about/nip05/display_name fields parsed +// from the event content JSON. Returns NULL if no kind-0 event exists. +// Caller must cJSON_Delete() the result. +cJSON* db_get_profile_metadata(const char* pubkey); +// db_get_outbox_relays: returns relay URLs from the most recent kind-10002 +// event for a pubkey, as a cJSON array of strings. Returns NULL if no +// kind-10002 event exists. Caller must cJSON_Delete() the result. +cJSON* db_get_outbox_relays(const char* pubkey); + #endif // DB_OPS_H diff --git a/src/db_ops_postgres.c b/src/db_ops_postgres.c index 2f340c6..e378d94 100644 --- a/src/db_ops_postgres.c +++ b/src/db_ops_postgres.c @@ -2470,3 +2470,175 @@ int postgres_db_caching_inbox_insert(const char* event_id, const char* event_jso return DB_ERROR; #endif } + +int postgres_db_caching_backfill_author_counts(int* out_complete, int* out_total) { +#if defined(DB_BACKEND_POSTGRES) && defined(HAVE_LIBPQ) + if (out_complete) *out_complete = 0; + if (out_total) *out_total = 0; + + PGconn* conn = postgres_db_active_connection(); + if (!conn || PQstatus(conn) != CONNECTION_OK) return DB_ERROR; + + PGresult* res = PQexec(conn, + "SELECT backfill_authors_complete, backfill_authors_total " + "FROM caching_service_state WHERE id = 1"); + if (!res || PQresultStatus(res) != PGRES_TUPLES_OK) { + if (res) { + postgres_set_error_text(PQresultErrorMessage(res)); + PQclear(res); + } else { + postgres_set_error_from_conn(conn, "postgres_db_caching_backfill_author_counts failed"); + } + return DB_ERROR; + } + + if (PQntuples(res) > 0) { + if (out_complete) { + *out_complete = PQgetisnull(res, 0, 0) ? 0 + : (int)strtol(PQgetvalue(res, 0, 0), NULL, 10); + } + if (out_total) { + *out_total = PQgetisnull(res, 0, 1) ? 0 + : (int)strtol(PQgetvalue(res, 0, 1), NULL, 10); + } + } + + PQclear(res); + return DB_OK; +#else + if (out_complete) *out_complete = 0; + if (out_total) *out_total = 0; + return DB_ERROR; +#endif +} + +/* ------------------------------------------------------------------ */ +/* Profile metadata and outbox relay helpers */ +/* ------------------------------------------------------------------ */ + +/* Returns the most recent kind-0 metadata for a pubkey as a cJSON object + * with name/picture/about/nip05/display_name fields parsed from the event + * content JSON. Returns NULL if no kind-0 event exists or on error. + * Caller must cJSON_Delete() the result. */ +cJSON* postgres_db_get_profile_metadata(const char* pubkey) { +#if defined(DB_BACKEND_POSTGRES) && defined(HAVE_LIBPQ) + if (!pubkey || pubkey[0] == '\0') return NULL; + PGconn* conn = postgres_db_active_connection(); + if (!conn || PQstatus(conn) != CONNECTION_OK) return NULL; + + const char* params[1] = { pubkey }; + PGresult* res = PQexecParams(conn, + "SELECT content FROM events WHERE pubkey = $1 AND kind = 0 " + "ORDER BY created_at DESC LIMIT 1", + 1, NULL, params, NULL, NULL, 0); + if (!res || PQresultStatus(res) != PGRES_TUPLES_OK) { + if (res) PQclear(res); + return NULL; + } + + cJSON* result = NULL; + if (PQntuples(res) > 0 && !PQgetisnull(res, 0, 0)) { + const char* content = PQgetvalue(res, 0, 0); + if (content && content[0] != '\0') { + /* Parse the kind-0 content JSON and extract known fields. */ + cJSON* parsed = cJSON_Parse(content); + if (parsed) { + result = cJSON_CreateObject(); + if (!result) { + cJSON_Delete(parsed); + PQclear(res); + return NULL; + } + /* Extract standard NIP-01 metadata fields. */ + const char* fields[] = {"name", "display_name", "picture", + "about", "nip05", "website", "lud16", "lud06"}; + for (size_t i = 0; i < sizeof(fields) / sizeof(fields[0]); i++) { + cJSON* val = cJSON_GetObjectItemCaseSensitive(parsed, fields[i]); + if (val && cJSON_IsString(val) && val->valuestring[0] != '\0') { + cJSON_AddStringToObject(result, fields[i], val->valuestring); + } + } + cJSON_Delete(parsed); + } + } + } + + PQclear(res); + return result; +#else + (void)pubkey; + return NULL; +#endif +} + +/* Returns relay URLs from the most recent kind-10002 event for a pubkey, + * as a cJSON array of strings. Returns NULL if no kind-10002 event exists + * or on error. Caller must cJSON_Delete() the result. */ +cJSON* postgres_db_get_outbox_relays(const char* pubkey) { +#if defined(DB_BACKEND_POSTGRES) && defined(HAVE_LIBPQ) + if (!pubkey || pubkey[0] == '\0') return NULL; + PGconn* conn = postgres_db_active_connection(); + if (!conn || PQstatus(conn) != CONNECTION_OK) return NULL; + + const char* params[1] = { pubkey }; + PGresult* res = PQexecParams(conn, + "SELECT tags FROM events WHERE pubkey = $1 AND kind = 10002 " + "ORDER BY created_at DESC LIMIT 1", + 1, NULL, params, NULL, NULL, 0); + if (!res || PQresultStatus(res) != PGRES_TUPLES_OK) { + if (res) PQclear(res); + return NULL; + } + + cJSON* result = NULL; + if (PQntuples(res) > 0 && !PQgetisnull(res, 0, 0)) { + const char* tags_json = PQgetvalue(res, 0, 0); + if (tags_json && tags_json[0] != '\0') { + cJSON* tags = cJSON_Parse(tags_json); + if (tags && cJSON_IsArray(tags)) { + result = cJSON_CreateArray(); + if (!result) { + cJSON_Delete(tags); + PQclear(res); + return NULL; + } + int n = cJSON_GetArraySize(tags); + for (int i = 0; i < n; i++) { + cJSON* tag = cJSON_GetArrayItem(tags, i); + if (!tag || !cJSON_IsArray(tag)) continue; + int tag_len = cJSON_GetArraySize(tag); + if (tag_len < 2) continue; + cJSON* tag_name = cJSON_GetArrayItem(tag, 0); + cJSON* tag_val = cJSON_GetArrayItem(tag, 1); + if (tag_name && cJSON_IsString(tag_name) && + strcmp(tag_name->valuestring, "r") == 0 && + tag_val && cJSON_IsString(tag_val) && + tag_val->valuestring[0] != '\0') { + /* Check for a marker (3rd element) - skip "read" only + * relays, keep "write" and unmarked (both) relays. */ + int is_write = 1; + if (tag_len >= 3) { + cJSON* marker = cJSON_GetArrayItem(tag, 2); + if (marker && cJSON_IsString(marker) && + strcmp(marker->valuestring, "read") == 0) { + is_write = 0; + } + } + if (is_write) { + cJSON_AddItemToArray(result, + cJSON_CreateString(tag_val->valuestring)); + } + } + } + cJSON_Delete(tags); + } + } + } + + PQclear(res); + return result; +#else + (void)pubkey; + return NULL; +#endif +} diff --git a/src/db_ops_postgres.h b/src/db_ops_postgres.h index 3086601..1e99bf1 100644 --- a/src/db_ops_postgres.h +++ b/src/db_ops_postgres.h @@ -102,8 +102,13 @@ int postgres_db_wal_checkpoint_truncate(void); cJSON* postgres_db_caching_inbox_dequeue_batch(int batch_size, int* out_count); int postgres_db_caching_inbox_pending_counts(int* out_live_count, int* out_backfill_count); int postgres_db_caching_inbox_oldest_age(int* out_oldest_age_seconds); +int postgres_db_caching_backfill_author_counts(int* out_complete, int* out_total); int postgres_db_caching_inbox_insert(const char* event_id, const char* event_json, const char* source_relay, const char* source_class, int priority); +// Profile metadata and outbox relay helpers. +cJSON* postgres_db_get_profile_metadata(const char* pubkey); +cJSON* postgres_db_get_outbox_relays(const char* pubkey); + #endif // DB_OPS_POSTGRES_H diff --git a/src/default_config_event.h b/src/default_config_event.h index 63bb9c5..db1e64f 100644 --- a/src/default_config_event.h +++ b/src/default_config_event.h @@ -148,7 +148,7 @@ static const struct { {"caching_live_resubscribe_seconds", "300"}, // Live subscription resubscribe interval {"caching_backfill_enabled", "true"}, // Enable historical backfill {"caching_backfill_windows", "86400,604800,2592000,7776000,31536000"}, // Backfill window schedule in seconds - {"caching_backfill_page_size", "200"}, // Initial backfill query page size + {"caching_backfill_page_size", "500"}, // Initial backfill query page size {"caching_backfill_tick_interval_ms", "5000"}, // Minimum delay between backfill queries {"caching_backfill_window_cooldown_seconds", "60"}, // Delay between completed windows {"caching_follow_graph_refresh_seconds", "600"}, // Kind-3 follow graph refresh interval @@ -158,7 +158,7 @@ static const struct { {"caching_max_relays_per_pubkey", "5"}, // Maximum outbox relays per author {"caching_query_timeout_ms", "15000"}, // Upstream query timeout {"caching_inbox_enabled", "false"}, // Enable inbox poller in c-relay-pg - {"caching_inbox_batch_size", "25"}, // Inbox dequeue batch size + {"caching_inbox_batch_size", "150"}, // Inbox dequeue batch size {"caching_inbox_active_poll_ms", "200"}, // Poll interval when inbox has events {"caching_inbox_idle_poll_ms", "5000"}, // Poll interval when inbox is empty {"caching_max_event_json_bytes", "65536"}, // Maximum event JSON size for inbox insert diff --git a/src/embedded_web_content.c b/src/embedded_web_content.c index ffd8431..431120e 100644 --- a/src/embedded_web_content.c +++ b/src/embedded_web_content.c @@ -11,8 +11,8 @@ static const size_t embedded_html_size = 1299; // Auto-generated from api/index.html static const unsigned char index_html_data[] = { -0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x65,0x6e,0x22,0x3e,0x0a,0x0a,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x55,0x54,0x46,0x2d,0x38,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2e,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x20,0x41,0x64,0x6d,0x69,0x6e,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x63,0x73,0x73,0x22,0x3e,0x0a,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x0a,0x0a,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x69,0x64,0x65,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x65,0x6e,0x75,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6e,0x61,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x6d,0x65,0x6e,0x75,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x22,0x3e,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x41,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x22,0x3e,0x49,0x50,0x20,0x42,0x41,0x4e,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x22,0x3e,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x22,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x64,0x6d,0x22,0x3e,0x44,0x4d,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x22,0x3e,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x51,0x75,0x65,0x72,0x79,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x2d,0x62,0x74,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x2d,0x62,0x74,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x4c,0x4f,0x47,0x4f,0x55,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x69,0x64,0x65,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x48,0x65,0x61,0x64,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x69,0x74,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x69,0x74,0x6c,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x69,0x74,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x52,0x22,0x3e,0x52,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x45,0x22,0x3e,0x45,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x4c,0x22,0x3e,0x4c,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x41,0x22,0x3e,0x41,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x59,0x22,0x3e,0x59,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3e,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x61,0x72,0x65,0x61,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x61,0x72,0x65,0x61,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3e,0x61,0x64,0x6d,0x69,0x6e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6d,0x67,0x20,0x69,0x64,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x22,0x20,0x61,0x6c,0x74,0x3d,0x22,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x65,0x6e,0x75,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x4d,0x6f,0x64,0x61,0x6c,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x63,0x63,0x65,0x73,0x73,0x20,0x44,0x65,0x6e,0x69,0x65,0x64,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x28,0x73,0x68,0x6f,0x77,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x20,0x75,0x73,0x65,0x72,0x20,0x6c,0x6f,0x67,0x73,0x20,0x69,0x6e,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,0xe2,0x9b,0x94,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x32,0x3e,0x41,0x43,0x43,0x45,0x53,0x53,0x20,0x44,0x45,0x4e,0x49,0x45,0x44,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x54,0x68,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x72,0x65,0x73,0x74,0x72,0x69,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x73,0x75,0x62,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x54,0x68,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x2d,0x69,0x6e,0x20,0x61,0x63,0x63,0x6f,0x75,0x6e,0x74,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x72,0x69,0x76,0x69,0x6c,0x65,0x67,0x65,0x73,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x22,0x3e,0x4c,0x4f,0x47,0x4f,0x55,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x41,0x54,0x41,0x42,0x41,0x53,0x45,0x20,0x53,0x54,0x41,0x54,0x49,0x53,0x54,0x49,0x43,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x44,0x41,0x54,0x41,0x42,0x41,0x53,0x45,0x20,0x53,0x54,0x41,0x54,0x49,0x53,0x54,0x49,0x43,0x53,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x52,0x61,0x74,0x65,0x20,0x47,0x72,0x61,0x70,0x68,0x20,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x4f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x4d,0x65,0x74,0x72,0x69,0x63,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x56,0x61,0x6c,0x75,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x53,0x69,0x7a,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x64,0x62,0x2d,0x73,0x69,0x7a,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x74,0x6f,0x74,0x61,0x6c,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x49,0x44,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2d,0x69,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x77,0x65,0x62,0x73,0x6f,0x63,0x6b,0x65,0x74,0x2d,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x55,0x73,0x61,0x67,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x2d,0x75,0x73,0x61,0x67,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x43,0x50,0x55,0x20,0x55,0x73,0x61,0x67,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x63,0x70,0x75,0x2d,0x75,0x73,0x61,0x67,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x43,0x50,0x55,0x20,0x43,0x6f,0x72,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x63,0x70,0x75,0x2d,0x63,0x6f,0x72,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4f,0x6c,0x64,0x65,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6f,0x6c,0x64,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4e,0x65,0x77,0x65,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6e,0x65,0x77,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x6f,0x75,0x6e,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x54,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x54,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x74,0x69,0x6d,0x65,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x65,0x72,0x69,0x6f,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x74,0x69,0x6d,0x65,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4c,0x61,0x73,0x74,0x20,0x32,0x34,0x20,0x48,0x6f,0x75,0x72,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x32,0x34,0x68,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4c,0x61,0x73,0x74,0x20,0x37,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x37,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4c,0x61,0x73,0x74,0x20,0x33,0x30,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x33,0x30,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x54,0x6f,0x70,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x54,0x6f,0x70,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x62,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x43,0x6f,0x75,0x6e,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x52,0x61,0x6e,0x6b,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x75,0x62,0x6b,0x65,0x79,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x43,0x6f,0x75,0x6e,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x20,0x44,0x45,0x54,0x41,0x49,0x4c,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x41,0x64,0x6d,0x69,0x6e,0x20,0x4f,0x6e,0x6c,0x79,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x41,0x43,0x54,0x49,0x56,0x45,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x20,0x44,0x45,0x54,0x41,0x49,0x4c,0x53,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x56,0x61,0x6c,0x75,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x66,0x65,0x74,0x63,0x68,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x4d,0x61,0x6e,0x61,0x67,0x65,0x6d,0x65,0x6e,0x74,0x20,0x2d,0x20,0x4d,0x6f,0x76,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x20,0x53,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x52,0x75,0x6c,0x65,0x20,0x54,0x79,0x70,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x54,0x79,0x70,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x56,0x61,0x6c,0x75,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x49,0x6e,0x70,0x75,0x74,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x22,0x3e,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4b,0x65,0x79,0x20,0x28,0x6e,0x70,0x75,0x62,0x20,0x6f,0x72,0x20,0x68,0x65,0x78,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x20,0x6f,0x72,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x78,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x57,0x41,0x52,0x4e,0x49,0x4e,0x47,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x72,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x6f,0x6e,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x75,0x73,0x65,0x72,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x22,0x3e,0x41,0x44,0x44,0x20,0x54,0x4f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x48,0x49,0x54,0x45,0x4c,0x49,0x53,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x61,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x22,0x3e,0x41,0x44,0x44,0x20,0x54,0x4f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x42,0x4c,0x41,0x43,0x4b,0x4c,0x49,0x53,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x45,0x42,0x20,0x4f,0x46,0x20,0x54,0x52,0x55,0x53,0x54,0x20,0x53,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x57,0x45,0x42,0x20,0x4f,0x46,0x20,0x54,0x52,0x55,0x53,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x33,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4b,0x69,0x6e,0x64,0x33,0x53,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x72,0x6f,0x77,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x41,0x64,0x6d,0x69,0x6e,0x20,0x43,0x6f,0x6e,0x74,0x61,0x63,0x74,0x20,0x4c,0x69,0x73,0x74,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x33,0x29,0x3a,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x6f,0x74,0x2d,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x3e,0x43,0x68,0x65,0x63,0x6b,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x6f,0x54,0x20,0x4c,0x65,0x76,0x65,0x6c,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x57,0x6f,0x54,0x20,0x4c,0x65,0x76,0x65,0x6c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x30,0x42,0x74,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x30,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4f,0x46,0x46,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x31,0x42,0x74,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x31,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x52,0x49,0x54,0x45,0x20,0x4f,0x4e,0x4c,0x59,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x32,0x42,0x74,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x32,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x46,0x55,0x4c,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4c,0x65,0x76,0x65,0x6c,0x20,0x30,0x3a,0x20,0x4f,0x70,0x65,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0xe2,0x80,0x94,0x20,0x61,0x6e,0x79,0x6f,0x6e,0x65,0x20,0x63,0x61,0x6e,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x6e,0x64,0x20,0x77,0x72,0x69,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x6f,0x54,0x20,0x53,0x74,0x61,0x74,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x72,0x6f,0x77,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x3a,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x22,0x3e,0xe2,0x80,0x94,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x79,0x6e,0x63,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x53,0x79,0x6e,0x63,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x79,0x6e,0x63,0x57,0x6f,0x74,0x28,0x29,0x22,0x3e,0x53,0x59,0x4e,0x43,0x20,0x46,0x52,0x4f,0x4d,0x20,0x4b,0x49,0x4e,0x44,0x20,0x33,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x20,0x53,0x54,0x41,0x54,0x55,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x49,0x52,0x45,0x43,0x54,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x32,0x3e,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x49,0x52,0x45,0x43,0x54,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x53,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4f,0x75,0x74,0x62,0x6f,0x78,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x64,0x6d,0x2d,0x6f,0x75,0x74,0x62,0x6f,0x78,0x22,0x3e,0x53,0x65,0x6e,0x64,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x52,0x65,0x6c,0x61,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x64,0x6d,0x2d,0x6f,0x75,0x74,0x62,0x6f,0x78,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x45,0x6e,0x74,0x65,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x65,0x6e,0x64,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x6e,0x64,0x2d,0x64,0x6d,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x53,0x45,0x4e,0x44,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x52,0x65,0x6c,0x61,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x64,0x6d,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x70,0x61,0x6e,0x65,0x6c,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x32,0x30,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x22,0x3e,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x49,0x50,0x20,0x42,0x41,0x4e,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x42,0x61,0x6e,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x49,0x50,0x20,0x42,0x41,0x4e,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x43,0x61,0x72,0x64,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x49,0x50,0x73,0x20,0x54,0x72,0x61,0x63,0x6b,0x65,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x42,0x61,0x6e,0x73,0x20,0x49,0x73,0x73,0x75,0x65,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x6f,0x74,0x61,0x6c,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x69,0x73,0x73,0x75,0x65,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x64,0x64,0x20,0x42,0x61,0x6e,0x20,0x46,0x6f,0x72,0x6d,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4d,0x61,0x6e,0x75,0x61,0x6c,0x6c,0x79,0x20,0x42,0x61,0x6e,0x20,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x3e,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x39,0x32,0x2e,0x31,0x36,0x38,0x2e,0x31,0x2e,0x31,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3e,0x42,0x61,0x6e,0x20,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x33,0x36,0x30,0x30,0x22,0x3e,0x31,0x20,0x48,0x6f,0x75,0x72,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x38,0x36,0x34,0x30,0x30,0x22,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x3e,0x32,0x34,0x20,0x48,0x6f,0x75,0x72,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x36,0x30,0x34,0x38,0x30,0x30,0x22,0x3e,0x37,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x32,0x35,0x39,0x32,0x30,0x30,0x30,0x22,0x3e,0x33,0x30,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x33,0x31,0x35,0x33,0x36,0x30,0x30,0x30,0x22,0x3e,0x31,0x20,0x59,0x65,0x61,0x72,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x22,0x3e,0x50,0x65,0x72,0x6d,0x61,0x6e,0x65,0x6e,0x74,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x42,0x41,0x4e,0x20,0x49,0x50,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x4d,0x61,0x6e,0x61,0x67,0x65,0x6d,0x65,0x6e,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x49,0x50,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x28,0x4e,0x65,0x76,0x65,0x72,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x33,0x70,0x78,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x2e,0x38,0x3b,0x22,0x3e,0x49,0x50,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6c,0x69,0x73,0x74,0x20,0x61,0x72,0x65,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x69,0x64,0x6c,0x65,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x2e,0x20,0x43,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x3e,0x41,0x64,0x64,0x20,0x49,0x50,0x20,0x74,0x6f,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x30,0x33,0x2e,0x38,0x31,0x2e,0x32,0x33,0x31,0x2e,0x32,0x32,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x41,0x44,0x44,0x20,0x54,0x4f,0x20,0x57,0x48,0x49,0x54,0x45,0x4c,0x49,0x53,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x38,0x70,0x78,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x33,0x70,0x78,0x3b,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x61,0x6c,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0x41,0x6c,0x6c,0x20,0x49,0x50,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x22,0x3e,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x22,0x3e,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x49,0x50,0x20,0x42,0x61,0x6e,0x73,0x20,0x4c,0x69,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x65,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x55,0x6e,0x74,0x69,0x6c,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x46,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x75,0x74,0x68,0x65,0x64,0x20,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x37,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x43,0x6c,0x69,0x63,0x6b,0x20,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x45,0x56,0x45,0x4e,0x54,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x45,0x56,0x45,0x4e,0x54,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x69,0x76,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x46,0x65,0x65,0x64,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4c,0x69,0x76,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x46,0x65,0x65,0x64,0x20,0x28,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x6c,0x69,0x76,0x65,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x54,0x69,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x4b,0x69,0x6e,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x75,0x62,0x6b,0x65,0x79,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x49,0x44,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x50,0x72,0x65,0x76,0x69,0x65,0x77,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x6c,0x69,0x76,0x65,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x6c,0x69,0x76,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x3a,0x20,0x55,0x73,0x65,0x72,0x20,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4b,0x69,0x6e,0x64,0x20,0x30,0x3a,0x20,0x55,0x73,0x65,0x72,0x20,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3e,0x4e,0x61,0x6d,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x52,0x65,0x6c,0x61,0x79,0x20,0x4e,0x61,0x6d,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x22,0x3e,0x41,0x62,0x6f,0x75,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x33,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x52,0x65,0x6c,0x61,0x79,0x20,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x22,0x3e,0x50,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x55,0x52,0x4c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x6c,0x6f,0x67,0x6f,0x2e,0x70,0x6e,0x67,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x22,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x72,0x20,0x55,0x52,0x4c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x62,0x61,0x6e,0x6e,0x65,0x72,0x2e,0x70,0x6e,0x67,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x22,0x3e,0x4e,0x49,0x50,0x2d,0x30,0x35,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x40,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x22,0x3e,0x57,0x65,0x62,0x73,0x69,0x74,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x4d,0x45,0x54,0x41,0x44,0x41,0x54,0x41,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x3a,0x20,0x44,0x4d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x3a,0x20,0x44,0x4d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x3e,0x52,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x73,0x20,0x28,0x6f,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x6c,0x69,0x6e,0x65,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x31,0x2e,0x63,0x6f,0x6d,0x26,0x23,0x31,0x30,0x3b,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x32,0x2e,0x63,0x6f,0x6d,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x44,0x4d,0x20,0x52,0x45,0x4c,0x41,0x59,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x3a,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x3a,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x68,0x65,0x72,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x41,0x44,0x44,0x20,0x52,0x45,0x4c,0x41,0x59,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x52,0x45,0x4c,0x41,0x59,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x28,0x72,0x65,0x61,0x64,0x2d,0x6f,0x6e,0x6c,0x79,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x68,0x65,0x72,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x28,0x72,0x65,0x61,0x64,0x2d,0x6f,0x6e,0x6c,0x79,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x52,0x65,0x6c,0x61,0x79,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x68,0x65,0x72,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x6f,0x6f,0x74,0x2d,0x6e,0x70,0x75,0x62,0x73,0x22,0x3e,0x52,0x6f,0x6f,0x74,0x20,0x4e,0x70,0x75,0x62,0x73,0x20,0x28,0x6f,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x6c,0x69,0x6e,0x65,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x6f,0x6f,0x74,0x2d,0x6e,0x70,0x75,0x62,0x73,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x22,0x3e,0x6e,0x70,0x75,0x62,0x31,0x33,0x6c,0x6d,0x35,0x77,0x66,0x38,0x64,0x76,0x73,0x64,0x6e,0x63,0x32,0x38,0x39,0x34,0x70,0x6b,0x68,0x63,0x68,0x39,0x75,0x66,0x38,0x70,0x68,0x76,0x77,0x39,0x76,0x61,0x72,0x72,0x76,0x38,0x7a,0x66,0x34,0x73,0x63,0x38,0x38,0x35,0x68,0x68,0x64,0x6d,0x63,0x38,0x71,0x36,0x6c,0x78,0x37,0x6b,0x73,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x3e,0x42,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x20,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x28,0x6f,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x6c,0x69,0x6e,0x65,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x64,0x61,0x6d,0x75,0x73,0x2e,0x69,0x6f,0x22,0x3e,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x64,0x61,0x6d,0x75,0x73,0x2e,0x69,0x6f,0x0a,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x6e,0x6f,0x73,0x2e,0x6c,0x6f,0x6c,0x0a,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x70,0x72,0x69,0x6d,0x61,0x6c,0x2e,0x6e,0x65,0x74,0x0a,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x6c,0x61,0x61,0x6e,0x74,0x75,0x6e,0x67,0x69,0x72,0x2e,0x6e,0x65,0x74,0x2f,0x72,0x65,0x6c,0x61,0x79,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x3e,0x4b,0x69,0x6e,0x64,0x73,0x20,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x2c,0x33,0x2c,0x36,0x2c,0x31,0x30,0x30,0x30,0x30,0x2c,0x33,0x30,0x30,0x32,0x33,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x30,0x2c,0x31,0x2c,0x33,0x2c,0x36,0x2c,0x31,0x30,0x30,0x30,0x30,0x2c,0x31,0x30,0x30,0x30,0x32,0x2c,0x33,0x30,0x30,0x32,0x33,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x3e,0x41,0x64,0x6d,0x69,0x6e,0x20,0x4b,0x69,0x6e,0x64,0x73,0x20,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2c,0x20,0x2a,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x2a,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6c,0x69,0x76,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x4c,0x69,0x76,0x65,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6c,0x69,0x76,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x38,0x36,0x34,0x30,0x30,0x2c,0x36,0x30,0x34,0x38,0x30,0x30,0x2c,0x32,0x35,0x39,0x32,0x30,0x30,0x30,0x2c,0x37,0x37,0x37,0x36,0x30,0x30,0x30,0x2c,0x33,0x31,0x35,0x33,0x36,0x30,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x70,0x61,0x67,0x65,0x2d,0x73,0x69,0x7a,0x65,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x50,0x61,0x67,0x65,0x20,0x53,0x69,0x7a,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x70,0x61,0x67,0x65,0x2d,0x73,0x69,0x7a,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x35,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x74,0x69,0x63,0x6b,0x2d,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x54,0x69,0x63,0x6b,0x20,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x28,0x6d,0x73,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x74,0x69,0x63,0x6b,0x2d,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x35,0x30,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x62,0x61,0x74,0x63,0x68,0x2d,0x73,0x69,0x7a,0x65,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x42,0x61,0x74,0x63,0x68,0x20,0x53,0x69,0x7a,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x62,0x61,0x74,0x63,0x68,0x2d,0x73,0x69,0x7a,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x32,0x35,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x50,0x6f,0x6c,0x6c,0x20,0x28,0x6d,0x73,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x32,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x69,0x64,0x6c,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x49,0x64,0x6c,0x65,0x20,0x50,0x6f,0x6c,0x6c,0x20,0x28,0x6d,0x73,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x69,0x64,0x6c,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x35,0x30,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x69,0x6e,0x61,0x72,0x79,0x2d,0x70,0x61,0x74,0x68,0x22,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x42,0x69,0x6e,0x61,0x72,0x79,0x20,0x50,0x61,0x74,0x68,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x69,0x6e,0x61,0x72,0x79,0x2d,0x70,0x61,0x74,0x68,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x2e,0x2f,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x6c,0x61,0x79,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2e,0x2f,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x70,0x67,0x2d,0x63,0x6f,0x6e,0x6e,0x22,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x50,0x47,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x70,0x67,0x2d,0x63,0x6f,0x6e,0x6e,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x6f,0x73,0x74,0x3d,0x6c,0x6f,0x63,0x61,0x6c,0x68,0x6f,0x73,0x74,0x20,0x70,0x6f,0x72,0x74,0x3d,0x35,0x34,0x33,0x32,0x20,0x64,0x62,0x6e,0x61,0x6d,0x65,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x65,0x72,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x68,0x6f,0x73,0x74,0x3d,0x6c,0x6f,0x63,0x61,0x6c,0x68,0x6f,0x73,0x74,0x20,0x70,0x6f,0x72,0x74,0x3d,0x35,0x34,0x33,0x32,0x20,0x64,0x62,0x6e,0x61,0x6d,0x65,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x65,0x72,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x70,0x70,0x6c,0x79,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x41,0x50,0x50,0x4c,0x59,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x65,0x73,0x65,0x74,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x52,0x45,0x53,0x45,0x54,0x20,0x42,0x41,0x43,0x4b,0x46,0x49,0x4c,0x4c,0x20,0x50,0x52,0x4f,0x47,0x52,0x45,0x53,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x53,0x74,0x61,0x72,0x74,0x20,0x6f,0x72,0x20,0x73,0x74,0x6f,0x70,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2e,0x20,0x53,0x65,0x74,0x20,0x3c,0x63,0x6f,0x64,0x65,0x3e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x62,0x69,0x6e,0x61,0x72,0x79,0x5f,0x70,0x61,0x74,0x68,0x3c,0x2f,0x63,0x6f,0x64,0x65,0x3e,0x20,0x61,0x6e,0x64,0x20,0x3c,0x63,0x6f,0x64,0x65,0x3e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x70,0x67,0x5f,0x63,0x6f,0x6e,0x6e,0x3c,0x2f,0x63,0x6f,0x64,0x65,0x3e,0x20,0x61,0x62,0x6f,0x76,0x65,0x20,0x61,0x6e,0x64,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x41,0x50,0x50,0x4c,0x59,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x53,0x54,0x41,0x52,0x54,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x53,0x45,0x52,0x56,0x49,0x43,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x6f,0x70,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x53,0x54,0x4f,0x50,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x53,0x45,0x52,0x56,0x49,0x43,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x32,0x3e,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x43,0x4f,0x4e,0x53,0x4f,0x4c,0x45,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x3e,0x51,0x75,0x69,0x63,0x6b,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x26,0x20,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x22,0x3e,0x2d,0x2d,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x2d,0x2d,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x72,0x65,0x63,0x65,0x6e,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x22,0x3e,0x52,0x65,0x63,0x65,0x6e,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x22,0x3e,0x54,0x6f,0x70,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x22,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x73,0x20,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x3e,0x54,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x49,0x50,0x20,0x42,0x61,0x6e,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x22,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x49,0x50,0x73,0x20,0x53,0x75,0x6d,0x6d,0x61,0x72,0x79,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x6c,0x69,0x73,0x74,0x22,0x3e,0x41,0x6c,0x6c,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x65,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x51,0x75,0x65,0x72,0x79,0x20,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x22,0x20,0x69,0x64,0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x45,0x64,0x69,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x3e,0x53,0x51,0x4c,0x20,0x51,0x75,0x65,0x72,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x35,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x4c,0x49,0x4d,0x49,0x54,0x20,0x31,0x30,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x45,0x58,0x45,0x43,0x55,0x54,0x45,0x20,0x51,0x55,0x45,0x52,0x59,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x43,0x4c,0x45,0x41,0x52,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x2d,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x43,0x4c,0x45,0x41,0x52,0x20,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x66,0x6f,0x2d,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x62,0x75,0x6e,0x64,0x6c,0x65,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6c,0x61,0x61,0x6e,0x74,0x75,0x6e,0x67,0x69,0x72,0x2e,0x6e,0x65,0x74,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6c,0x69,0x74,0x65,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x61,0x64,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x6d,0x61,0x69,0x6e,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6c,0x61,0x61,0x6e,0x74,0x75,0x6e,0x67,0x69,0x72,0x2e,0x6e,0x65,0x74,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6c,0x69,0x74,0x65,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x69,0x74,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x69,0x74,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x61,0x64,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,}; -static const size_t index_html_size = 33062; +0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x0a,0x3c,0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x65,0x6e,0x22,0x3e,0x0a,0x0a,0x3c,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x55,0x54,0x46,0x2d,0x38,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2e,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x74,0x6c,0x65,0x3e,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x20,0x41,0x64,0x6d,0x69,0x6e,0x3c,0x2f,0x74,0x69,0x74,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x63,0x73,0x73,0x22,0x3e,0x0a,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x0a,0x0a,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x69,0x64,0x65,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x65,0x6e,0x75,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x6e,0x61,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x6d,0x65,0x6e,0x75,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x22,0x3e,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x41,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x22,0x3e,0x49,0x50,0x20,0x42,0x41,0x4e,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x22,0x3e,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x22,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x64,0x6d,0x22,0x3e,0x44,0x4d,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x69,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x3d,0x22,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x22,0x3e,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x51,0x75,0x65,0x72,0x79,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x2d,0x62,0x74,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x66,0x6f,0x6f,0x74,0x65,0x72,0x2d,0x62,0x74,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x76,0x2d,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x4c,0x4f,0x47,0x4f,0x55,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x69,0x64,0x65,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x48,0x65,0x61,0x64,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x69,0x74,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x69,0x74,0x6c,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x69,0x74,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x52,0x22,0x3e,0x52,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x45,0x22,0x3e,0x45,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x4c,0x22,0x3e,0x4c,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x41,0x22,0x3e,0x41,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x22,0x20,0x64,0x61,0x74,0x61,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x3d,0x22,0x59,0x22,0x3e,0x59,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3e,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x61,0x72,0x65,0x61,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x61,0x72,0x65,0x61,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6c,0x61,0x62,0x65,0x6c,0x22,0x3e,0x61,0x64,0x6d,0x69,0x6e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6d,0x67,0x20,0x69,0x64,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x22,0x20,0x61,0x6c,0x74,0x3d,0x22,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x65,0x6e,0x75,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x4d,0x6f,0x64,0x61,0x6c,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x63,0x63,0x65,0x73,0x73,0x20,0x44,0x65,0x6e,0x69,0x65,0x64,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x28,0x73,0x68,0x6f,0x77,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x20,0x75,0x73,0x65,0x72,0x20,0x6c,0x6f,0x67,0x73,0x20,0x69,0x6e,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x3e,0xe2,0x9b,0x94,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x32,0x3e,0x41,0x43,0x43,0x45,0x53,0x53,0x20,0x44,0x45,0x4e,0x49,0x45,0x44,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x54,0x68,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x73,0x20,0x72,0x65,0x73,0x74,0x72,0x69,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x73,0x75,0x62,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x54,0x68,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x2d,0x69,0x6e,0x20,0x61,0x63,0x63,0x6f,0x75,0x6e,0x74,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x72,0x69,0x76,0x69,0x6c,0x65,0x67,0x65,0x73,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x22,0x3e,0x4c,0x4f,0x47,0x4f,0x55,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x41,0x54,0x41,0x42,0x41,0x53,0x45,0x20,0x53,0x54,0x41,0x54,0x49,0x53,0x54,0x49,0x43,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x44,0x41,0x54,0x41,0x42,0x41,0x53,0x45,0x20,0x53,0x54,0x41,0x54,0x49,0x53,0x54,0x49,0x43,0x53,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x52,0x61,0x74,0x65,0x20,0x47,0x72,0x61,0x70,0x68,0x20,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x4f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x4d,0x65,0x74,0x72,0x69,0x63,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x56,0x61,0x6c,0x75,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x53,0x69,0x7a,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x64,0x62,0x2d,0x73,0x69,0x7a,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x74,0x6f,0x74,0x61,0x6c,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x49,0x44,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2d,0x69,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x77,0x65,0x62,0x73,0x6f,0x63,0x6b,0x65,0x74,0x2d,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x55,0x73,0x61,0x67,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x2d,0x75,0x73,0x61,0x67,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x43,0x50,0x55,0x20,0x55,0x73,0x61,0x67,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x63,0x70,0x75,0x2d,0x75,0x73,0x61,0x67,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x43,0x50,0x55,0x20,0x43,0x6f,0x72,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x63,0x70,0x75,0x2d,0x63,0x6f,0x72,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4f,0x6c,0x64,0x65,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6f,0x6c,0x64,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4e,0x65,0x77,0x65,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x6e,0x65,0x77,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x6f,0x75,0x6e,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x54,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x54,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x74,0x69,0x6d,0x65,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x65,0x72,0x69,0x6f,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x74,0x69,0x6d,0x65,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4c,0x61,0x73,0x74,0x20,0x32,0x34,0x20,0x48,0x6f,0x75,0x72,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x32,0x34,0x68,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4c,0x61,0x73,0x74,0x20,0x37,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x37,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x4c,0x61,0x73,0x74,0x20,0x33,0x30,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x33,0x30,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x54,0x6f,0x70,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x54,0x6f,0x70,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x62,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x43,0x6f,0x75,0x6e,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x52,0x61,0x6e,0x6b,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x75,0x62,0x6b,0x65,0x79,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x43,0x6f,0x75,0x6e,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x20,0x44,0x45,0x54,0x41,0x49,0x4c,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x41,0x64,0x6d,0x69,0x6e,0x20,0x4f,0x6e,0x6c,0x79,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x41,0x43,0x54,0x49,0x56,0x45,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x20,0x44,0x45,0x54,0x41,0x49,0x4c,0x53,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x56,0x61,0x6c,0x75,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x66,0x65,0x74,0x63,0x68,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x4d,0x61,0x6e,0x61,0x67,0x65,0x6d,0x65,0x6e,0x74,0x20,0x2d,0x20,0x4d,0x6f,0x76,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x20,0x53,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x54,0x61,0x62,0x6c,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x52,0x75,0x6c,0x65,0x20,0x54,0x79,0x70,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x54,0x79,0x70,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x56,0x61,0x6c,0x75,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x49,0x6e,0x70,0x75,0x74,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x22,0x3e,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4b,0x65,0x79,0x20,0x28,0x6e,0x70,0x75,0x62,0x20,0x6f,0x72,0x20,0x68,0x65,0x78,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x20,0x6f,0x72,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x78,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x57,0x41,0x52,0x4e,0x49,0x4e,0x47,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x62,0x65,0x68,0x61,0x76,0x69,0x6f,0x72,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x6f,0x6e,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x75,0x73,0x65,0x72,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x22,0x3e,0x41,0x44,0x44,0x20,0x54,0x4f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x48,0x49,0x54,0x45,0x4c,0x49,0x53,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x61,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x22,0x3e,0x41,0x44,0x44,0x20,0x54,0x4f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x42,0x4c,0x41,0x43,0x4b,0x4c,0x49,0x53,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x45,0x42,0x20,0x4f,0x46,0x20,0x54,0x52,0x55,0x53,0x54,0x20,0x53,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x65,0x78,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x57,0x45,0x42,0x20,0x4f,0x46,0x20,0x54,0x52,0x55,0x53,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x33,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4b,0x69,0x6e,0x64,0x33,0x53,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x72,0x6f,0x77,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x41,0x64,0x6d,0x69,0x6e,0x20,0x43,0x6f,0x6e,0x74,0x61,0x63,0x74,0x20,0x4c,0x69,0x73,0x74,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x33,0x29,0x3a,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x6f,0x74,0x2d,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x22,0x3e,0x43,0x68,0x65,0x63,0x6b,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x6f,0x54,0x20,0x4c,0x65,0x76,0x65,0x6c,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x57,0x6f,0x54,0x20,0x4c,0x65,0x76,0x65,0x6c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x30,0x42,0x74,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x30,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4f,0x46,0x46,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x31,0x42,0x74,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x31,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x52,0x49,0x54,0x45,0x20,0x4f,0x4e,0x4c,0x59,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x32,0x42,0x74,0x6e,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x32,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x46,0x55,0x4c,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4c,0x65,0x76,0x65,0x6c,0x20,0x30,0x3a,0x20,0x4f,0x70,0x65,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0xe2,0x80,0x94,0x20,0x61,0x6e,0x79,0x6f,0x6e,0x65,0x20,0x63,0x61,0x6e,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x6e,0x64,0x20,0x77,0x72,0x69,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x6f,0x54,0x20,0x53,0x74,0x61,0x74,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x6f,0x74,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x72,0x6f,0x77,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x3a,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x22,0x3e,0xe2,0x80,0x94,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x79,0x6e,0x63,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x53,0x79,0x6e,0x63,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x79,0x6e,0x63,0x57,0x6f,0x74,0x28,0x29,0x22,0x3e,0x53,0x59,0x4e,0x43,0x20,0x46,0x52,0x4f,0x4d,0x20,0x4b,0x49,0x4e,0x44,0x20,0x33,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x6f,0x74,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x20,0x53,0x54,0x41,0x54,0x55,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x49,0x52,0x45,0x43,0x54,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x32,0x3e,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x49,0x52,0x45,0x43,0x54,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x53,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4f,0x75,0x74,0x62,0x6f,0x78,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x64,0x6d,0x2d,0x6f,0x75,0x74,0x62,0x6f,0x78,0x22,0x3e,0x53,0x65,0x6e,0x64,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x52,0x65,0x6c,0x61,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x64,0x6d,0x2d,0x6f,0x75,0x74,0x62,0x6f,0x78,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x45,0x6e,0x74,0x65,0x72,0x20,0x79,0x6f,0x75,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x65,0x6e,0x64,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x6e,0x64,0x2d,0x64,0x6d,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x53,0x45,0x4e,0x44,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x52,0x65,0x6c,0x61,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x64,0x6d,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x70,0x61,0x6e,0x65,0x6c,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x32,0x30,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x22,0x3e,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x49,0x50,0x20,0x42,0x41,0x4e,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x42,0x61,0x6e,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x49,0x50,0x20,0x42,0x41,0x4e,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x43,0x61,0x72,0x64,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x49,0x50,0x73,0x20,0x54,0x72,0x61,0x63,0x6b,0x65,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x42,0x61,0x6e,0x73,0x20,0x49,0x73,0x73,0x75,0x65,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x6f,0x74,0x61,0x6c,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x69,0x73,0x73,0x75,0x65,0x64,0x22,0x3e,0x2d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x41,0x64,0x64,0x20,0x42,0x61,0x6e,0x20,0x46,0x6f,0x72,0x6d,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4d,0x61,0x6e,0x75,0x61,0x6c,0x6c,0x79,0x20,0x42,0x61,0x6e,0x20,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x3e,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x39,0x32,0x2e,0x31,0x36,0x38,0x2e,0x31,0x2e,0x31,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3e,0x42,0x61,0x6e,0x20,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x62,0x61,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x33,0x36,0x30,0x30,0x22,0x3e,0x31,0x20,0x48,0x6f,0x75,0x72,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x38,0x36,0x34,0x30,0x30,0x22,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x3e,0x32,0x34,0x20,0x48,0x6f,0x75,0x72,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x36,0x30,0x34,0x38,0x30,0x30,0x22,0x3e,0x37,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x32,0x35,0x39,0x32,0x30,0x30,0x30,0x22,0x3e,0x33,0x30,0x20,0x44,0x61,0x79,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x33,0x31,0x35,0x33,0x36,0x30,0x30,0x30,0x22,0x3e,0x31,0x20,0x59,0x65,0x61,0x72,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x22,0x3e,0x50,0x65,0x72,0x6d,0x61,0x6e,0x65,0x6e,0x74,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x42,0x41,0x4e,0x20,0x49,0x50,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x4d,0x61,0x6e,0x61,0x67,0x65,0x6d,0x65,0x6e,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x49,0x50,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x28,0x4e,0x65,0x76,0x65,0x72,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x33,0x70,0x78,0x3b,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3a,0x30,0x2e,0x38,0x3b,0x22,0x3e,0x49,0x50,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6c,0x69,0x73,0x74,0x20,0x61,0x72,0x65,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x69,0x64,0x6c,0x65,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x2e,0x20,0x43,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x3e,0x41,0x64,0x64,0x20,0x49,0x50,0x20,0x74,0x6f,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x30,0x33,0x2e,0x38,0x31,0x2e,0x32,0x33,0x31,0x2e,0x32,0x32,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x41,0x44,0x44,0x20,0x54,0x4f,0x20,0x57,0x48,0x49,0x54,0x45,0x4c,0x49,0x53,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x38,0x70,0x78,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x33,0x70,0x78,0x3b,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x61,0x6c,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x63,0x74,0x69,0x76,0x65,0x22,0x3e,0x41,0x6c,0x6c,0x20,0x49,0x50,0x73,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x22,0x3e,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x22,0x3e,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x49,0x50,0x20,0x42,0x61,0x6e,0x73,0x20,0x4c,0x69,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x65,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x55,0x6e,0x74,0x69,0x6c,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x46,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x75,0x74,0x68,0x65,0x64,0x20,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x37,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x43,0x6c,0x69,0x63,0x6b,0x20,0x52,0x45,0x46,0x52,0x45,0x53,0x48,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x45,0x56,0x45,0x4e,0x54,0x53,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x45,0x56,0x45,0x4e,0x54,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x69,0x76,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x46,0x65,0x65,0x64,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4c,0x69,0x76,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x46,0x65,0x65,0x64,0x20,0x28,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x69,0x64,0x3d,0x22,0x6c,0x69,0x76,0x65,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x54,0x69,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x4b,0x69,0x6e,0x64,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x50,0x75,0x62,0x6b,0x65,0x79,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x49,0x44,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x3e,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x50,0x72,0x65,0x76,0x69,0x65,0x77,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x6c,0x69,0x76,0x65,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x6c,0x69,0x76,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x3a,0x20,0x55,0x73,0x65,0x72,0x20,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4b,0x69,0x6e,0x64,0x20,0x30,0x3a,0x20,0x55,0x73,0x65,0x72,0x20,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x3e,0x4e,0x61,0x6d,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x52,0x65,0x6c,0x61,0x79,0x20,0x4e,0x61,0x6d,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x22,0x3e,0x41,0x62,0x6f,0x75,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x33,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x52,0x65,0x6c,0x61,0x79,0x20,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x22,0x3e,0x50,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x55,0x52,0x4c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x6c,0x6f,0x67,0x6f,0x2e,0x70,0x6e,0x67,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x22,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x72,0x20,0x55,0x52,0x4c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x62,0x61,0x6e,0x6e,0x65,0x72,0x2e,0x70,0x6e,0x67,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x22,0x3e,0x4e,0x49,0x50,0x2d,0x30,0x35,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x40,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x22,0x3e,0x57,0x65,0x62,0x73,0x69,0x74,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x4d,0x45,0x54,0x41,0x44,0x41,0x54,0x41,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x3a,0x20,0x44,0x4d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x3a,0x20,0x44,0x4d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x3e,0x52,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x73,0x20,0x28,0x6f,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x6c,0x69,0x6e,0x65,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x31,0x2e,0x63,0x6f,0x6d,0x26,0x23,0x31,0x30,0x3b,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x32,0x2e,0x63,0x6f,0x6d,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x44,0x4d,0x20,0x52,0x45,0x4c,0x41,0x59,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x3a,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x3a,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x68,0x65,0x72,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x64,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x41,0x44,0x44,0x20,0x52,0x45,0x4c,0x41,0x59,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x52,0x45,0x4c,0x41,0x59,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x28,0x72,0x65,0x61,0x64,0x2d,0x6f,0x6e,0x6c,0x79,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x68,0x65,0x72,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x28,0x72,0x65,0x61,0x64,0x2d,0x6f,0x6e,0x6c,0x79,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x52,0x65,0x6c,0x61,0x79,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x20,0x68,0x65,0x72,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x29,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x43,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x72,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x6f,0x6f,0x74,0x2d,0x6e,0x70,0x75,0x62,0x73,0x22,0x3e,0x52,0x6f,0x6f,0x74,0x20,0x4e,0x70,0x75,0x62,0x73,0x20,0x28,0x6f,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x6c,0x69,0x6e,0x65,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x6f,0x6f,0x74,0x2d,0x6e,0x70,0x75,0x62,0x73,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x22,0x3e,0x6e,0x70,0x75,0x62,0x31,0x33,0x6c,0x6d,0x35,0x77,0x66,0x38,0x64,0x76,0x73,0x64,0x6e,0x63,0x32,0x38,0x39,0x34,0x70,0x6b,0x68,0x63,0x68,0x39,0x75,0x66,0x38,0x70,0x68,0x76,0x77,0x39,0x76,0x61,0x72,0x72,0x76,0x38,0x7a,0x66,0x34,0x73,0x63,0x38,0x38,0x35,0x68,0x68,0x64,0x6d,0x63,0x38,0x71,0x36,0x6c,0x78,0x37,0x6b,0x73,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x3e,0x42,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x20,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x28,0x6f,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x6c,0x69,0x6e,0x65,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x34,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x64,0x61,0x6d,0x75,0x73,0x2e,0x69,0x6f,0x22,0x3e,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x64,0x61,0x6d,0x75,0x73,0x2e,0x69,0x6f,0x0a,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x6e,0x6f,0x73,0x2e,0x6c,0x6f,0x6c,0x0a,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x70,0x72,0x69,0x6d,0x61,0x6c,0x2e,0x6e,0x65,0x74,0x0a,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x6c,0x61,0x61,0x6e,0x74,0x75,0x6e,0x67,0x69,0x72,0x2e,0x6e,0x65,0x74,0x2f,0x72,0x65,0x6c,0x61,0x79,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x3e,0x4b,0x69,0x6e,0x64,0x73,0x20,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x2c,0x33,0x2c,0x36,0x2c,0x31,0x30,0x30,0x30,0x30,0x2c,0x33,0x30,0x30,0x32,0x33,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x30,0x2c,0x31,0x2c,0x33,0x2c,0x36,0x2c,0x31,0x30,0x30,0x30,0x30,0x2c,0x31,0x30,0x30,0x30,0x32,0x2c,0x33,0x30,0x30,0x32,0x33,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x3e,0x41,0x64,0x6d,0x69,0x6e,0x20,0x4b,0x69,0x6e,0x64,0x73,0x20,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x2c,0x20,0x2a,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x2a,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6c,0x69,0x76,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x4c,0x69,0x76,0x65,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6c,0x69,0x76,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x72,0x75,0x65,0x22,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x38,0x36,0x34,0x30,0x30,0x2c,0x36,0x30,0x34,0x38,0x30,0x30,0x2c,0x32,0x35,0x39,0x32,0x30,0x30,0x30,0x2c,0x37,0x37,0x37,0x36,0x30,0x30,0x30,0x2c,0x33,0x31,0x35,0x33,0x36,0x30,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x70,0x61,0x67,0x65,0x2d,0x73,0x69,0x7a,0x65,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x50,0x61,0x67,0x65,0x20,0x53,0x69,0x7a,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x70,0x61,0x67,0x65,0x2d,0x73,0x69,0x7a,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x35,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x74,0x69,0x63,0x6b,0x2d,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x54,0x69,0x63,0x6b,0x20,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x28,0x6d,0x73,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x74,0x69,0x63,0x6b,0x2d,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x35,0x30,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x62,0x61,0x74,0x63,0x68,0x2d,0x73,0x69,0x7a,0x65,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x42,0x61,0x74,0x63,0x68,0x20,0x53,0x69,0x7a,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x62,0x61,0x74,0x63,0x68,0x2d,0x73,0x69,0x7a,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x31,0x35,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x50,0x6f,0x6c,0x6c,0x20,0x28,0x6d,0x73,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x32,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x69,0x64,0x6c,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x49,0x64,0x6c,0x65,0x20,0x50,0x6f,0x6c,0x6c,0x20,0x28,0x6d,0x73,0x29,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x69,0x64,0x6c,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x35,0x30,0x30,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x69,0x6e,0x61,0x72,0x79,0x2d,0x70,0x61,0x74,0x68,0x22,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x42,0x69,0x6e,0x61,0x72,0x79,0x20,0x50,0x61,0x74,0x68,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x69,0x6e,0x61,0x72,0x79,0x2d,0x70,0x61,0x74,0x68,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x2e,0x2f,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x6c,0x61,0x79,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x2e,0x2f,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x70,0x67,0x2d,0x63,0x6f,0x6e,0x6e,0x22,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x50,0x47,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x70,0x67,0x2d,0x63,0x6f,0x6e,0x6e,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x68,0x6f,0x73,0x74,0x3d,0x6c,0x6f,0x63,0x61,0x6c,0x68,0x6f,0x73,0x74,0x20,0x70,0x6f,0x72,0x74,0x3d,0x35,0x34,0x33,0x32,0x20,0x64,0x62,0x6e,0x61,0x6d,0x65,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x65,0x72,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x68,0x6f,0x73,0x74,0x3d,0x6c,0x6f,0x63,0x61,0x6c,0x68,0x6f,0x73,0x74,0x20,0x70,0x6f,0x72,0x74,0x3d,0x35,0x34,0x33,0x32,0x20,0x64,0x62,0x6e,0x61,0x6d,0x65,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x65,0x72,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3d,0x63,0x72,0x65,0x6c,0x61,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x70,0x70,0x6c,0x79,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x41,0x50,0x50,0x4c,0x59,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x65,0x73,0x65,0x74,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x52,0x45,0x53,0x45,0x54,0x20,0x42,0x41,0x43,0x4b,0x46,0x49,0x4c,0x4c,0x20,0x50,0x52,0x4f,0x47,0x52,0x45,0x53,0x53,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x53,0x74,0x61,0x72,0x74,0x20,0x6f,0x72,0x20,0x73,0x74,0x6f,0x70,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2e,0x20,0x53,0x65,0x74,0x20,0x3c,0x63,0x6f,0x64,0x65,0x3e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x62,0x69,0x6e,0x61,0x72,0x79,0x5f,0x70,0x61,0x74,0x68,0x3c,0x2f,0x63,0x6f,0x64,0x65,0x3e,0x20,0x61,0x6e,0x64,0x20,0x3c,0x63,0x6f,0x64,0x65,0x3e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x70,0x67,0x5f,0x63,0x6f,0x6e,0x6e,0x3c,0x2f,0x63,0x6f,0x64,0x65,0x3e,0x20,0x61,0x62,0x6f,0x76,0x65,0x20,0x61,0x6e,0x64,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x41,0x50,0x50,0x4c,0x59,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x53,0x54,0x41,0x52,0x54,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x53,0x45,0x52,0x56,0x49,0x43,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x6f,0x70,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x53,0x54,0x4f,0x50,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x53,0x45,0x52,0x56,0x49,0x43,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x3e,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x73,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x73,0x2c,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x3a,0x20,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x33,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x32,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x34,0x34,0x34,0x29,0x3b,0x20,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x6c,0x65,0x66,0x74,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x6e,0x70,0x75,0x62,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x52,0x6f,0x6f,0x74,0x3f,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x69,0x6e,0x20,0x44,0x42,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x68,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x34,0x30,0x25,0x3b,0x22,0x3e,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x29,0x3c,0x2f,0x74,0x68,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x62,0x6f,0x64,0x79,0x20,0x69,0x64,0x3d,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x36,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x32,0x3e,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x43,0x4f,0x4e,0x53,0x4f,0x4c,0x45,0x3c,0x2f,0x68,0x32,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x3e,0x51,0x75,0x69,0x63,0x6b,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x26,0x20,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x69,0x64,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x68,0x61,0x6e,0x67,0x65,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x22,0x3e,0x2d,0x2d,0x20,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x2d,0x2d,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x72,0x65,0x63,0x65,0x6e,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x22,0x3e,0x52,0x65,0x63,0x65,0x6e,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x22,0x3e,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x22,0x3e,0x54,0x6f,0x70,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x22,0x3e,0x45,0x76,0x65,0x6e,0x74,0x20,0x4b,0x69,0x6e,0x64,0x73,0x20,0x44,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x3e,0x54,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x49,0x50,0x20,0x42,0x61,0x6e,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x22,0x3e,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x49,0x50,0x73,0x20,0x53,0x75,0x6d,0x6d,0x61,0x72,0x79,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x6c,0x69,0x73,0x74,0x22,0x3e,0x41,0x6c,0x6c,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x49,0x50,0x20,0x41,0x64,0x64,0x72,0x65,0x73,0x73,0x65,0x73,0x3c,0x2f,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x20,0x6c,0x61,0x62,0x65,0x6c,0x3d,0x22,0x51,0x75,0x65,0x72,0x79,0x20,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x22,0x20,0x69,0x64,0x3d,0x22,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6f,0x70,0x74,0x67,0x72,0x6f,0x75,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x65,0x6c,0x65,0x63,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x45,0x64,0x69,0x74,0x6f,0x72,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x3e,0x53,0x51,0x4c,0x20,0x51,0x75,0x65,0x72,0x79,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x69,0x64,0x3d,0x22,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x22,0x20,0x72,0x6f,0x77,0x73,0x3d,0x22,0x35,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x4c,0x49,0x4d,0x49,0x54,0x20,0x31,0x30,0x22,0x3e,0x3c,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x45,0x58,0x45,0x43,0x55,0x54,0x45,0x20,0x51,0x55,0x45,0x52,0x59,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x43,0x4c,0x45,0x41,0x52,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x2d,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x62,0x74,0x6e,0x22,0x3e,0x43,0x4c,0x45,0x41,0x52,0x20,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x70,0x75,0x74,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x66,0x6f,0x2d,0x62,0x6f,0x78,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x62,0x75,0x6e,0x64,0x6c,0x65,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6c,0x61,0x61,0x6e,0x74,0x75,0x6e,0x67,0x69,0x72,0x2e,0x6e,0x65,0x74,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6c,0x69,0x74,0x65,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x61,0x64,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x6d,0x61,0x69,0x6e,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6c,0x61,0x61,0x6e,0x74,0x75,0x6e,0x67,0x69,0x72,0x2e,0x6e,0x65,0x74,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6c,0x69,0x74,0x65,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x69,0x74,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x6c,0x69,0x74,0x65,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x21,0x2d,0x2d,0x20,0x4c,0x6f,0x61,0x64,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x2d,0x2d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x2f,0x61,0x70,0x69,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x0a,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x0a,0x0a,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,}; +static const size_t index_html_size = 34351; // Auto-generated from api/template.html static const unsigned char template_html_data[] = { @@ -26,8 +26,8 @@ static const size_t index_css_size = 31731; // Auto-generated from api/index.js static const unsigned char index_js_data[] = { -0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x73,0x0a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x63,0x61,0x75,0x67,0x68,0x74,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x69,0x6e,0x65,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x6c,0x69,0x6e,0x65,0x6e,0x6f,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x75,0x6e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x55,0x6e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x70,0x72,0x6f,0x6d,0x69,0x73,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x2f,0x2f,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x0a,0x6c,0x65,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x67,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x73,0x69,0x6d,0x75,0x6c,0x74,0x61,0x6e,0x65,0x6f,0x75,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x67,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x2d,0x65,0x6e,0x74,0x72,0x79,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x75,0x70,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x28,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x73,0x20,0x44,0x4f,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x20,0x3d,0x20,0x7b,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x27,0x27,0x20,0x7d,0x3b,0x0a,0x2f,0x2f,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x6c,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x53,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3d,0x20,0x31,0x30,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x6c,0x65,0x74,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x51,0x4c,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x28,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x6c,0x65,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x30,0x3b,0x20,0x2f,0x2f,0x20,0x54,0x72,0x61,0x63,0x6b,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x66,0x6f,0x72,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x49,0x64,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x20,0x6c,0x69,0x76,0x65,0x20,0x66,0x65,0x65,0x64,0x20,0x72,0x6f,0x77,0x73,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x6d,0x70,0x6f,0x72,0x61,0x72,0x79,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x65,0x70,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x20,0x69,0x6e,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x0a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x5f,0x53,0x49,0x4d,0x50,0x4c,0x45,0x5f,0x50,0x4f,0x4f,0x4c,0x5f,0x44,0x45,0x42,0x55,0x47,0x5f,0x5f,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x2d,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x6d,0x61,0x69,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x4f,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x61,0x72,0x65,0x61,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x61,0x62,0x6f,0x75,0x74,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x66,0x65,0x74,0x63,0x68,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x64,0x6d,0x2d,0x6f,0x75,0x74,0x62,0x6f,0x78,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x64,0x6d,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x6e,0x64,0x44,0x6d,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x65,0x6e,0x64,0x2d,0x64,0x6d,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x54,0x27,0x29,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2e,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x60,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x6c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x73,0x65,0x20,0x6c,0x6f,0x67,0x73,0x20,0x6f,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x49,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x6f,0x6e,0x6c,0x79,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x3d,0x20,0x75,0x72,0x6c,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x3d,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x20,0x2b,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x55,0x52,0x4c,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x2f,0x2b,0x2f,0x67,0x2c,0x20,0x27,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x65,0x6e,0x64,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x2d,0x31,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x6f,0x72,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x38,0x30,0x27,0x20,0x26,0x26,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x73,0x3a,0x27,0x29,0x20,0x7c,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x6f,0x72,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x34,0x34,0x33,0x27,0x20,0x26,0x26,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x73,0x73,0x3a,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x6f,0x72,0x74,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x72,0x61,0x6d,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x68,0x61,0x73,0x68,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x3a,0x27,0x2c,0x20,0x75,0x72,0x6c,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x72,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x90,0x20,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x41,0x55,0x54,0x48,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x3a,0x60,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x6e,0x6f,0x73,0x74,0x72,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x32,0x2e,0x6d,0x61,0x6b,0x65,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x41,0x55,0x54,0x48,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x61,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x41,0x55,0x54,0x48,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x3a,0x60,0x2c,0x20,0x61,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x54,0x27,0x29,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2e,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x60,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x6c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x73,0x65,0x20,0x6c,0x6f,0x67,0x73,0x20,0x6f,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x49,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x6f,0x6e,0x6c,0x79,0x0a,0x7d,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x77,0x61,0x72,0x74,0x20,0x74,0x69,0x6d,0x65,0x2d,0x61,0x6e,0x61,0x6c,0x79,0x73,0x69,0x73,0x20,0x28,0x70,0x61,0x73,0x74,0x20,0x32,0x20,0x64,0x61,0x79,0x73,0x29,0x0a,0x2f,0x2f,0x20,0x54,0x45,0x4d,0x50,0x4f,0x52,0x41,0x52,0x49,0x4c,0x59,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x3a,0x20,0x55,0x73,0x69,0x6e,0x67,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x4e,0x6f,0x77,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x54,0x57,0x4f,0x5f,0x44,0x41,0x59,0x53,0x20,0x3d,0x20,0x32,0x20,0x2a,0x20,0x32,0x34,0x20,0x2a,0x20,0x36,0x30,0x20,0x2a,0x20,0x36,0x30,0x3b,0x20,0x2f,0x2f,0x20,0x31,0x37,0x32,0x38,0x30,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x77,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x6f,0x77,0x3b,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x6e,0x6f,0x77,0x20,0x2d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x20,0x2a,0x20,0x54,0x57,0x4f,0x5f,0x44,0x41,0x59,0x53,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x66,0x65,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x66,0x65,0x4a,0x73,0x6f,0x6e,0x50,0x61,0x72,0x73,0x65,0x28,0x6a,0x73,0x6f,0x6e,0x53,0x74,0x72,0x69,0x6e,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x6a,0x73,0x6f,0x6e,0x53,0x74,0x72,0x69,0x6e,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x4a,0x53,0x4f,0x4e,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x43,0x4f,0x4e,0x4e,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x55,0x52,0x4c,0x20,0x74,0x6f,0x20,0x48,0x54,0x54,0x50,0x20,0x55,0x52,0x4c,0x20,0x66,0x6f,0x72,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x73,0x54,0x6f,0x48,0x74,0x74,0x70,0x55,0x72,0x6c,0x28,0x77,0x73,0x55,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x73,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x77,0x73,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x55,0x72,0x6c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x65,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x55,0x52,0x4c,0x20,0x74,0x6f,0x20,0x48,0x54,0x54,0x50,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x20,0x3d,0x20,0x77,0x73,0x54,0x6f,0x48,0x74,0x74,0x70,0x55,0x72,0x6c,0x28,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x6b,0x65,0x20,0x48,0x54,0x54,0x50,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x28,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x47,0x45,0x54,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x3a,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x41,0x63,0x63,0x65,0x70,0x74,0x27,0x3a,0x20,0x27,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2b,0x6a,0x73,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x55,0x73,0x65,0x72,0x2d,0x41,0x67,0x65,0x6e,0x74,0x27,0x3a,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x2d,0x41,0x64,0x6d,0x69,0x6e,0x2d,0x41,0x50,0x49,0x2f,0x31,0x2e,0x30,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x20,0x31,0x30,0x30,0x30,0x30,0x20,0x2f,0x2f,0x20,0x31,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x6f,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x48,0x54,0x54,0x50,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x2e,0x67,0x65,0x74,0x28,0x27,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x27,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2b,0x6a,0x73,0x6f,0x6e,0x27,0x29,0x20,0x26,0x26,0x20,0x21,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x55,0x6e,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x7d,0x3b,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x69,0x6e,0x67,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x77,0x61,0x79,0x60,0x2c,0x20,0x27,0x57,0x41,0x52,0x4e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x69,0x66,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x73,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x28,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x20,0x79,0x65,0x74,0x29,0x20,0x62,0x75,0x74,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x7c,0x7c,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x69,0x6e,0x66,0x6f,0x20,0x2d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x20,0x79,0x65,0x74,0x2c,0x20,0x77,0x69,0x6c,0x6c,0x20,0x75,0x73,0x65,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x2d,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x76,0x61,0x6c,0x69,0x64,0x2c,0x20,0x63,0x61,0x6c,0x6c,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x21,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x7b,0x36,0x34,0x7d,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x2e,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3f,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x27,0x6e,0x6f,0x74,0x20,0x73,0x65,0x74,0x27,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x77,0x73,0x55,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x3a,0x20,0x24,0x7b,0x77,0x73,0x55,0x72,0x6c,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x77,0x73,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x28,0x31,0x30,0x73,0x29,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x6f,0x6e,0x6f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x6f,0x6e,0x63,0x6c,0x6f,0x73,0x65,0x20,0x3d,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x64,0x65,0x20,0x21,0x3d,0x3d,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x7b,0x20,0x2f,0x2f,0x20,0x31,0x30,0x30,0x30,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x63,0x6c,0x6f,0x73,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x75,0x6e,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x6c,0x79,0x3a,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x64,0x65,0x7d,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x66,0x6f,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x41,0x50,0x49,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x74,0x72,0x79,0x20,0x6c,0x6f,0x67,0x69,0x63,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x57,0x69,0x74,0x68,0x52,0x65,0x74,0x72,0x69,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x74,0x72,0x79,0x20,0x6c,0x6f,0x67,0x69,0x63,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x20,0x3d,0x20,0x33,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x32,0x30,0x30,0x3b,0x20,0x2f,0x2f,0x20,0x6d,0x73,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x20,0x28,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x35,0x30,0x30,0x6d,0x73,0x29,0x0a,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x6c,0x65,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3d,0x20,0x31,0x3b,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3c,0x3d,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x3b,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x2b,0x2b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x24,0x7b,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7d,0x2f,0x24,0x7b,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x31,0x3a,0x20,0x54,0x72,0x79,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x79,0x69,0x6e,0x67,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x6c,0x79,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x74,0x72,0x65,0x61,0x74,0x20,0x61,0x73,0x20,0x73,0x74,0x61,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x66,0x6f,0x75,0x6e,0x64,0x2c,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x69,0x6e,0x67,0x20,0x6c,0x69,0x76,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x53,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x69,0x73,0x20,0x73,0x74,0x61,0x6c,0x65,0x20,0x28,0x6e,0x6f,0x20,0x6c,0x69,0x76,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x29,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x63,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x63,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x68,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x61,0x75,0x74,0x68,0x20,0x73,0x74,0x61,0x74,0x65,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x7c,0x7c,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x32,0x3a,0x20,0x54,0x72,0x79,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x79,0x69,0x6e,0x67,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3a,0x27,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x2d,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x33,0x3a,0x20,0x54,0x72,0x79,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x20,0x28,0x4e,0x49,0x50,0x2d,0x30,0x37,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x79,0x69,0x6e,0x67,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3a,0x27,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x34,0x3a,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x5f,0x44,0x41,0x54,0x41,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x3a,0x27,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x2d,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x24,0x7b,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7d,0x3a,0x20,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x61,0x6e,0x79,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x28,0x65,0x78,0x63,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x6c,0x61,0x73,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3c,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x64,0x65,0x6c,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x24,0x7b,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7d,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3c,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x64,0x65,0x6c,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x4e,0x4f,0x20,0x53,0x54,0x4f,0x52,0x45,0x44,0x20,0x53,0x45,0x53,0x53,0x49,0x4f,0x4e,0x20,0x46,0x4f,0x55,0x4e,0x44,0x20,0x28,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8d,0x20,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x6c,0x6c,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x84,0x20,0x52,0x65,0x73,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6d,0x61,0x69,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x55,0x73,0x65,0x72,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x62,0x75,0x74,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x79,0x65,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x74,0x75,0x70,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x2d,0x61,0x75,0x74,0x68,0x2d,0x73,0x74,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x70,0x61,0x73,0x73,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x50,0x41,0x53,0x53,0x45,0x44,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x29,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x29,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x55,0x52,0x4c,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x75,0x70,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x45,0x54,0x55,0x50,0x20,0x41,0x55,0x54,0x4f,0x4d,0x41,0x54,0x49,0x43,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x43,0x4f,0x4e,0x4e,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x43,0x41,0x4c,0x4c,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x6c,0x6c,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x27,0x2c,0x20,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3a,0x27,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3f,0x20,0x27,0x45,0x58,0x49,0x53,0x54,0x53,0x27,0x20,0x3a,0x20,0x27,0x4e,0x55,0x4c,0x4c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x3a,0x27,0x2c,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x55,0x52,0x4c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x6c,0x6f,0x63,0x61,0x6c,0x68,0x6f,0x73,0x74,0x3a,0x38,0x38,0x38,0x38,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x61,0x74,0x68,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x6a,0x75,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x62,0x61,0x73,0x65,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x52,0x49,0x54,0x49,0x43,0x41,0x4c,0x3a,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x61,0x64,0x64,0x20,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67,0x20,0x73,0x6c,0x61,0x73,0x68,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x20,0x55,0x52,0x4c,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x55,0x52,0x4c,0x28,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x60,0x24,0x7b,0x75,0x72,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x7d,0x2f,0x2f,0x24,0x7b,0x75,0x72,0x6c,0x2e,0x68,0x6f,0x73,0x74,0x7d,0x2f,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x97,0x20,0x41,0x75,0x74,0x6f,0x2d,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x74,0x6f,0x3a,0x27,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x27,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x73,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3f,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x6d,0x75,0x73,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x74,0x68,0x65,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x65,0x78,0x70,0x6f,0x73,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x65,0x39,0x61,0x61,0x35,0x30,0x64,0x65,0x63,0x66,0x66,0x30,0x31,0x66,0x32,0x63,0x65,0x63,0x31,0x65,0x63,0x32,0x62,0x32,0x65,0x30,0x62,0x33,0x34,0x33,0x33,0x32,0x63,0x66,0x39,0x63,0x39,0x32,0x63,0x61,0x66,0x64,0x61,0x63,0x35,0x61,0x37,0x63,0x63,0x30,0x38,0x38,0x31,0x61,0x36,0x64,0x32,0x36,0x62,0x35,0x39,0x38,0x35,0x34,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x28,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x29,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x73,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x2f,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3f,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x91,0x20,0x41,0x75,0x74,0x6f,0x2d,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x55,0x73,0x69,0x6e,0x67,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x2c,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x27,0x65,0x39,0x61,0x61,0x35,0x30,0x64,0x65,0x63,0x66,0x66,0x30,0x31,0x66,0x32,0x63,0x65,0x63,0x31,0x65,0x63,0x32,0x62,0x32,0x65,0x30,0x62,0x33,0x34,0x33,0x33,0x32,0x63,0x66,0x39,0x63,0x39,0x32,0x63,0x61,0x66,0x64,0x61,0x63,0x35,0x61,0x37,0x63,0x63,0x30,0x38,0x38,0x31,0x61,0x36,0x64,0x32,0x36,0x62,0x35,0x39,0x38,0x35,0x34,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x75,0x70,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x74,0x65,0x3a,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x69,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x93,0xa1,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x73,0x68,0x6f,0x77,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x69,0x66,0x20,0x65,0x78,0x70,0x6c,0x69,0x63,0x69,0x74,0x6c,0x79,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x75,0x70,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x75,0x70,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x69,0x6c,0x6c,0x20,0x6d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x62,0x61,0x73,0x69,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x65,0x67,0x61,0x63,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x57,0x69,0x74,0x68,0x52,0x65,0x74,0x72,0x69,0x65,0x73,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x41,0x70,0x70,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x69,0x6e,0x69,0x74,0x28,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x65,0x6d,0x65,0x3a,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73,0x3a,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x65,0x64,0x70,0x68,0x72,0x61,0x73,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6d,0x6f,0x74,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x74,0x70,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x54,0x61,0x62,0x3a,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x66,0x6f,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x73,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x73,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x73,0x65,0x72,0x20,0x77,0x61,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x2c,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x65,0x64,0x20,0x62,0x79,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x63,0x61,0x6c,0x6c,0x73,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x29,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x75,0x6e,0x64,0x2c,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x73,0x74,0x65,0x6e,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6e,0x6c,0x4d,0x65,0x74,0x68,0x6f,0x64,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x27,0x2c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6e,0x6c,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x27,0x2c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x7b,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x7d,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x64,0x65,0x74,0x61,0x69,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x21,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x55,0x73,0x65,0x72,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x6f,0x77,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x74,0x75,0x70,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x79,0x65,0x74,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x27,0x61,0x75,0x74,0x68,0x2d,0x65,0x76,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x70,0x61,0x73,0x73,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x50,0x41,0x53,0x53,0x45,0x44,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x61,0x6e,0x79,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x69,0x66,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x55,0x49,0x20,0x2d,0x20,0x68,0x69,0x64,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x62,0x79,0x20,0x73,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x6e,0x64,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x3d,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x56,0x45,0x52,0x49,0x46,0x59,0x49,0x4e,0x47,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x41,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x42,0x59,0x50,0x41,0x53,0x53,0x20,0x4d,0x4f,0x44,0x45,0x29,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x27,0x55,0x73,0x65,0x72,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x72,0x65,0x61,0x64,0x79,0x20,0x79,0x65,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x64,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x41,0x43,0x43,0x45,0x53,0x53,0x20,0x44,0x45,0x4e,0x49,0x45,0x44,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x73,0x74,0x69,0x6c,0x6c,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x20,0x64,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x3a,0x20,0x74,0x72,0x75,0x65,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x45,0x4d,0x50,0x4f,0x52,0x41,0x52,0x59,0x20,0x42,0x59,0x50,0x41,0x53,0x53,0x3a,0x20,0x53,0x6b,0x69,0x70,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x67,0x72,0x61,0x6e,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x4f,0x44,0x4f,0x3a,0x20,0x52,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6f,0x6e,0x63,0x65,0x20,0x69,0x64,0x6c,0x65,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x5f,0x73,0x65,0x63,0x20,0x69,0x73,0x20,0x69,0x6e,0x63,0x72,0x65,0x61,0x73,0x65,0x64,0x20,0x74,0x6f,0x20,0x31,0x32,0x30,0x2b,0x0a,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x27,0x42,0x79,0x70,0x61,0x73,0x73,0x20,0x6d,0x6f,0x64,0x65,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x74,0x65,0x6d,0x70,0x6f,0x72,0x61,0x72,0x79,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x20,0x62,0x79,0x70,0x61,0x73,0x73,0x3a,0x20,0x74,0x72,0x75,0x65,0x20,0x7d,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x69,0x64,0x20,0x3d,0x20,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x56,0x65,0x72,0x69,0x66,0x79,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x63,0x63,0x65,0x73,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x79,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x3e,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x20,0x75,0x73,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x68,0x69,0x64,0x65,0x20,0x61,0x6e,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x62,0x65,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x6c,0x6c,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x6c,0x6c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x6c,0x6c,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x6f,0x66,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x53,0x68,0x6f,0x77,0x20,0x3d,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x26,0x26,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x26,0x26,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x2c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x2c,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x75,0x6c,0x64,0x53,0x68,0x6f,0x77,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x64,0x61,0x74,0x61,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x6c,0x6c,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x6e,0x6f,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x6f,0x70,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x64,0x61,0x74,0x61,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x20,0x28,0x6e,0x6f,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x6c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x6c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x61,0x67,0x65,0x73,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x6e,0x65,0x65,0x64,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x20,0x26,0x26,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x55,0x49,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x65,0x6d,0x62,0x65,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x65,0x6d,0x62,0x65,0x64,0x28,0x27,0x23,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x61,0x6d,0x6c,0x65,0x73,0x73,0x3a,0x20,0x74,0x72,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x2f,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x55,0x49,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x28,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x4c,0x6f,0x67,0x69,0x6e,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x55,0x49,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x61,0x6e,0x64,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6e,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x64,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x6c,0x20,0x69,0x74,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6d,0x61,0x69,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x28,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6e,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x64,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x6c,0x20,0x69,0x74,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x70,0x6f,0x6f,0x6c,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x55,0x73,0x65,0x72,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x28,0x6e,0x65,0x77,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x28,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x5b,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x64,0x61,0x6d,0x75,0x73,0x2e,0x69,0x6f,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x61,0x6e,0x64,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x6e,0x6f,0x73,0x2e,0x6c,0x6f,0x6c,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x70,0x72,0x69,0x6d,0x61,0x6c,0x2e,0x6e,0x65,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x73,0x6e,0x6f,0x72,0x74,0x2e,0x73,0x6f,0x63,0x69,0x61,0x6c,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x30,0x29,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x5f,0x2c,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x29,0x20,0x3d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x29,0x29,0x2c,0x20,0x35,0x30,0x30,0x30,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x79,0x6e,0x63,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x30,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x31,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x61,0x63,0x65,0x28,0x5b,0x71,0x75,0x65,0x72,0x79,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2c,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x3a,0x27,0x2c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x28,0x6e,0x65,0x77,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x41,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x20,0x55,0x73,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x28,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x41,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x20,0x55,0x73,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4e,0x6f,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x74,0x68,0x65,0x20,0x6e,0x70,0x75,0x62,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x70,0x65,0x72,0x6c,0x79,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x69,0x76,0x65,0x20,0x74,0x69,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x65,0x61,0x6e,0x75,0x70,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x31,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x63,0x6c,0x6f,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x28,0x6e,0x6f,0x6e,0x2d,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x3a,0x27,0x2c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x28,0x6e,0x65,0x77,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x28,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x74,0x68,0x65,0x20,0x6e,0x70,0x75,0x62,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x5f,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x41,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x20,0x55,0x73,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x61,0x62,0x6f,0x75,0x74,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x7c,0x7c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x69,0x6d,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x26,0x26,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x27,0x29,0x20,0x7c,0x7c,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x27,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x73,0x72,0x63,0x20,0x3d,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x3a,0x27,0x2c,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x65,0x72,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x28,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x62,0x6f,0x75,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x26,0x26,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x69,0x6d,0x67,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6d,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6d,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x69,0x6d,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x75,0x73,0x65,0x72,0x2d,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x69,0x6d,0x61,0x67,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x61,0x6c,0x74,0x20,0x3d,0x20,0x60,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x7d,0x27,0x73,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x69,0x6d,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x73,0x72,0x63,0x20,0x3d,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x6e,0x6f,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6d,0x67,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6d,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6d,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x7d,0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x6f,0x75,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x70,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x64,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x6f,0x70,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x6e,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6c,0x6f,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x6f,0x6f,0x6c,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x28,0x6e,0x6f,0x6e,0x2d,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x55,0x49,0x20,0x2d,0x20,0x68,0x69,0x64,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x67,0x65,0x64,0x20,0x6f,0x75,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x6c,0x6f,0x61,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x61,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x49,0x44,0x20,0x28,0x61,0x76,0x6f,0x69,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6c,0x6f,0x6e,0x73,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x61,0x72,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x75,0x62,0x49,0x64,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x61,0x6c,0x70,0x68,0x61,0x6e,0x75,0x6d,0x65,0x72,0x69,0x63,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x2c,0x20,0x75,0x6e,0x64,0x65,0x72,0x73,0x63,0x6f,0x72,0x65,0x73,0x2c,0x20,0x68,0x79,0x70,0x68,0x65,0x6e,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x68,0x61,0x72,0x73,0x20,0x3d,0x20,0x27,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x5f,0x2d,0x2c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x6c,0x65,0x74,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x31,0x32,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x2b,0x3d,0x20,0x63,0x68,0x61,0x72,0x73,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x20,0x2a,0x20,0x63,0x68,0x61,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x20,0x74,0x6f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2c,0x20,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8d,0x20,0x41,0x74,0x74,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x73,0x74,0x6f,0x72,0x65,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x69,0x6e,0x20,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x20,0x6f,0x6e,0x6c,0x79,0x3a,0x20,0x69,0x6e,0x73,0x70,0x65,0x63,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x6d,0x75,0x74,0x61,0x74,0x69,0x6e,0x67,0x20,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x5b,0x75,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x93,0xa1,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x55,0x52,0x4c,0x3a,0x27,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x20,0x26,0x26,0x20,0x21,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x2e,0x5f,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x2e,0x5f,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x93,0xa1,0x20,0x4e,0x6f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x79,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x55,0x52,0x4c,0x3a,0x27,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x77,0x73,0x2c,0x20,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x8e,0xaf,0x20,0x41,0x74,0x74,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x70,0x65,0x6e,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x93,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x4f,0x50,0x45,0x4e,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x77,0x73,0x2e,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x69,0x6e,0x67,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x75,0x6c,0x6c,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x20,0x66,0x72,0x6f,0x6d,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x3a,0x20,0x64,0x61,0x74,0x61,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x73,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x66,0x6f,0x72,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x5b,0x74,0x79,0x70,0x65,0x2c,0x20,0x2e,0x2e,0x2e,0x61,0x72,0x67,0x73,0x5d,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x60,0x2c,0x20,0x61,0x72,0x67,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x4a,0x53,0x4f,0x4e,0x3a,0x60,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x52,0x61,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x28,0x6e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x29,0x3a,0x60,0x2c,0x20,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x6f,0x73,0x65,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x92,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x43,0x4c,0x4f,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x64,0x65,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x64,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x61,0x73,0x43,0x6c,0x65,0x61,0x6e,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x77,0x61,0x73,0x43,0x6c,0x65,0x61,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x65,0x72,0x72,0x6f,0x72,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x75,0x6c,0x6c,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x45,0x52,0x52,0x4f,0x52,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x75,0x66,0x66,0x65,0x72,0x65,0x64,0x41,0x6d,0x6f,0x75,0x6e,0x74,0x3a,0x20,0x77,0x73,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x65,0x64,0x41,0x6d,0x6f,0x75,0x6e,0x74,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x77,0x73,0x2e,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x69,0x6e,0x61,0x72,0x79,0x54,0x79,0x70,0x65,0x3a,0x20,0x77,0x73,0x2e,0x62,0x69,0x6e,0x61,0x72,0x79,0x54,0x79,0x70,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x76,0x65,0x72,0x72,0x69,0x64,0x65,0x20,0x73,0x65,0x6e,0x64,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x67,0x20,0x6f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x65,0x6e,0x64,0x20,0x3d,0x20,0x77,0x73,0x2e,0x73,0x65,0x6e,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x73,0x65,0x6e,0x64,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x53,0x45,0x4e,0x44,0x20,0x74,0x6f,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x3a,0x20,0x64,0x61,0x74,0x61,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x6f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x5b,0x74,0x79,0x70,0x65,0x2c,0x20,0x2e,0x2e,0x2e,0x61,0x72,0x67,0x73,0x5d,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x4f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x60,0x2c,0x20,0x61,0x72,0x67,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x4f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x4a,0x53,0x4f,0x4e,0x3a,0x60,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x4f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x72,0x61,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x28,0x6e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x29,0x3a,0x60,0x2c,0x20,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x65,0x6e,0x64,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x42,0x45,0x20,0x54,0x4f,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x6c,0x6c,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x20,0x77,0x65,0x27,0x72,0x65,0x20,0x64,0x6f,0x6e,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x26,0x26,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x20,0x72,0x65,0x75,0x73,0x69,0x6e,0x67,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x70,0x6f,0x6f,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x69,0x6e,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x8c,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x4f,0x4e,0x4c,0x59,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0xa8,0x20,0x43,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x4e,0x45,0x57,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x74,0x74,0x61,0x63,0x68,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x20,0x70,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x99,0xbb,0xef,0xb8,0x8f,0x20,0x52,0x65,0x75,0x73,0x69,0x6e,0x67,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x75,0x62,0x49,0x64,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0x9d,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x49,0x44,0x3a,0x20,0x24,0x7b,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x91,0xa4,0x20,0x55,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x8e,0xaf,0x20,0x41,0x62,0x6f,0x75,0x74,0x20,0x74,0x6f,0x20,0x63,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x55,0x52,0x4c,0x3a,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3f,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0x8a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x3a,0x60,0x2c,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x55,0x52,0x4c,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x61,0x77,0x55,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x70,0x72,0x65,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x54,0x79,0x70,0x65,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x42,0x45,0x46,0x4f,0x52,0x45,0x20,0x63,0x61,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x63,0x65,0x20,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x20,0x34,0x20,0x28,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x73,0x29,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x20,0x31,0x30,0x35,0x39,0x20,0x28,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x29,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x28,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x2c,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x73,0x20,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x94,0x20,0x43,0x61,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x5b,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2d,0x20,0x35,0x2c,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x6f,0x6b,0x20,0x62,0x61,0x63,0x6b,0x20,0x35,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x74,0x6f,0x20,0x61,0x76,0x6f,0x69,0x64,0x20,0x72,0x61,0x63,0x65,0x20,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x32,0x33,0x34,0x35,0x37,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x70,0x22,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x75,0x73,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x34,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x69,0x72,0x65,0x63,0x74,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x44,0x4d,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x70,0x22,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x44,0x4d,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x75,0x73,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2d,0x20,0x28,0x32,0x20,0x2a,0x20,0x32,0x34,0x20,0x2a,0x20,0x36,0x30,0x20,0x2a,0x20,0x36,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x6f,0x6b,0x20,0x62,0x61,0x63,0x6b,0x20,0x32,0x20,0x64,0x61,0x79,0x73,0x20,0x66,0x6f,0x72,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x31,0x30,0x35,0x39,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x70,0x22,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x75,0x73,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,0x69,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x32,0x34,0x35,0x36,0x37,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x64,0x22,0x3a,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3f,0x20,0x5b,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x22,0x2c,0x20,0x22,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x2c,0x20,0x22,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x22,0x2c,0x20,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x22,0x2c,0x20,0x22,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x22,0x5d,0x20,0x3a,0x20,0x5b,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x22,0x2c,0x20,0x22,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x2c,0x20,0x22,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x22,0x2c,0x20,0x22,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x22,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x63,0x6c,0x75,0x64,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x2c,0x20,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2d,0x20,0x28,0x32,0x34,0x20,0x2a,0x20,0x36,0x30,0x20,0x2a,0x20,0x36,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x6f,0x6b,0x20,0x62,0x61,0x63,0x6b,0x20,0x32,0x34,0x20,0x68,0x6f,0x75,0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2c,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x73,0x20,0x6f,0x77,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x31,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x76,0x65,0x20,0x66,0x65,0x65,0x64,0x20,0x75,0x73,0x65,0x73,0x20,0x61,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x32,0x30,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x5d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x6f,0x6e,0x65,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x69,0x66,0x69,0x65,0x64,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x2d,0x20,0x6f,0x6e,0x65,0x20,0x6c,0x69,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x54,0x61,0x67,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x69,0x6e,0x64,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x64,0x54,0x61,0x67,0x20,0x3f,0x20,0x64,0x54,0x61,0x67,0x5b,0x31,0x5d,0x20,0x3a,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0x8a,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x3a,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x44,0x4d,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x30,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x27,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x2c,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x44,0x4d,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x31,0x30,0x35,0x39,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x52,0x45,0x43,0x45,0x49,0x56,0x45,0x44,0x20,0x4b,0x49,0x4e,0x44,0x20,0x31,0x30,0x35,0x39,0x20,0x45,0x56,0x45,0x4e,0x54,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x30,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x31,0x3a,0x20,0x55,0x6e,0x77,0x72,0x61,0x70,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x73,0x65,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x61,0x6c,0x4a,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x93,0x20,0x53,0x54,0x45,0x50,0x20,0x31,0x20,0x2d,0x20,0x55,0x6e,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x3a,0x60,0x2c,0x20,0x73,0x65,0x61,0x6c,0x4a,0x73,0x6f,0x6e,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x30,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x61,0x6c,0x20,0x3d,0x20,0x73,0x61,0x66,0x65,0x4a,0x73,0x6f,0x6e,0x50,0x61,0x72,0x73,0x65,0x28,0x73,0x65,0x61,0x6c,0x4a,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x65,0x61,0x6c,0x20,0x7c,0x7c,0x20,0x73,0x65,0x61,0x6c,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x31,0x33,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x55,0x6e,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x73,0x65,0x61,0x6c,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x33,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x53,0x65,0x61,0x6c,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x3a,0x60,0x2c,0x20,0x7b,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x73,0x65,0x61,0x6c,0x2e,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x73,0x65,0x61,0x6c,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x32,0x3a,0x20,0x55,0x6e,0x73,0x65,0x61,0x6c,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x4a,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x73,0x65,0x61,0x6c,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x73,0x65,0x61,0x6c,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x93,0x20,0x53,0x54,0x45,0x50,0x20,0x32,0x20,0x2d,0x20,0x55,0x6e,0x73,0x65,0x61,0x6c,0x65,0x64,0x20,0x72,0x75,0x6d,0x6f,0x72,0x3a,0x60,0x2c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x4a,0x73,0x6f,0x6e,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x30,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x3d,0x20,0x73,0x61,0x66,0x65,0x4a,0x73,0x6f,0x6e,0x50,0x61,0x72,0x73,0x65,0x28,0x72,0x75,0x6d,0x6f,0x72,0x4a,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x75,0x6d,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x31,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x55,0x6e,0x73,0x65,0x61,0x6c,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x34,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x52,0x75,0x6d,0x6f,0x72,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x3a,0x60,0x2c,0x20,0x7b,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x27,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x2c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x55,0x4e,0x57,0x52,0x41,0x50,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x3a,0x60,0x2c,0x20,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x6e,0x77,0x72,0x61,0x70,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x6e,0x77,0x72,0x61,0x70,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x41,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x2d,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x28,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x64,0x6f,0x6e,0x65,0x20,0x61,0x62,0x6f,0x76,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x73,0x20,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x5b,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6c,0x69,0x76,0x65,0x20,0x66,0x65,0x65,0x64,0x20,0x76,0x69,0x61,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x20,0x74,0x72,0x61,0x66,0x66,0x69,0x63,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x26,0x26,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x37,0x20,0x26,0x26,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x36,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x54,0x6f,0x4c,0x69,0x76,0x65,0x46,0x65,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x65,0x6f,0x73,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x4f,0x53,0x45,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x2d,0x20,0x45,0x6e,0x64,0x20,0x6f,0x66,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x45,0x4f,0x53,0x45,0x3a,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x55,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x61,0x75,0x74,0x68,0x55,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x20,0x3f,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3a,0x20,0x5b,0x72,0x65,0x61,0x73,0x6f,0x6e,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x6f,0x6e,0x63,0x6c,0x6f,0x73,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x6c,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x72,0x20,0x3d,0x3e,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x72,0x29,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x29,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x63,0x6c,0x6f,0x73,0x65,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x63,0x6c,0x6f,0x73,0x65,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x69,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x2e,0x2e,0x2e,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x73,0x6f,0x20,0x61,0x6e,0x79,0x20,0x63,0x6c,0x6f,0x73,0x65,0x2f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x68,0x65,0x72,0x65,0x20,0x6d,0x75,0x73,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x63,0x65,0x20,0x63,0x6c,0x65,0x61,0x6e,0x20,0x72,0x65,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x2f,0x74,0x69,0x6d,0x65,0x64,0x20,0x6f,0x75,0x74,0x20,0x2d,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x65,0x74,0x27,0x2c,0x20,0x27,0x57,0x41,0x52,0x4e,0x49,0x4e,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x72,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x65,0x61,0x6e,0x75,0x70,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x41,0x66,0x74,0x65,0x72,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3f,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x70,0x6f,0x73,0x74,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x3a,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x41,0x66,0x74,0x65,0x72,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x54,0x79,0x70,0x65,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x50,0x52,0x4f,0x43,0x45,0x53,0x53,0x49,0x4e,0x47,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x21,0x3d,0x3d,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x46,0x72,0x6f,0x6d,0x52,0x65,0x6c,0x61,0x79,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x27,0x2c,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x73,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x66,0x69,0x72,0x73,0x74,0x2c,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x66,0x61,0x69,0x6c,0x73,0x20,0x74,0x72,0x65,0x61,0x74,0x20,0x61,0x73,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x2d,0x20,0x74,0x72,0x65,0x61,0x74,0x20,0x61,0x73,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x69,0x73,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6c,0x61,0x69,0x6e,0x5f,0x74,0x65,0x78,0x74,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x7d,0x60,0x2c,0x20,0x27,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x74,0x79,0x70,0x65,0x73,0x20,0x6f,0x66,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x49,0x5a,0x49,0x4e,0x47,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x52,0x41,0x54,0x45,0x20,0x43,0x48,0x41,0x52,0x54,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x74,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x73,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x65,0x63,0x6b,0x69,0x6e,0x67,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x3a,0x27,0x2c,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x3a,0x27,0x2c,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x2d,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x20,0x6d,0x61,0x79,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x20,0x6d,0x6f,0x72,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x29,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x68,0x65,0x63,0x6b,0x3a,0x20,0x2f,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2f,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x76,0x69,0x73,0x75,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x6e,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x3c,0x2f,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x69,0x6e,0x66,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x53,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x20,0x41,0x50,0x49,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x78,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x31,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x20,0x69,0x6e,0x20,0x6c,0x69,0x6e,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x78,0x44,0x61,0x74,0x61,0x50,0x6f,0x69,0x6e,0x74,0x73,0x3a,0x20,0x37,0x36,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x61,0x73,0x74,0x20,0x37,0x36,0x20,0x62,0x69,0x6e,0x73,0x20,0x28,0x35,0x2b,0x20,0x6d,0x69,0x6e,0x75,0x74,0x65,0x73,0x20,0x6f,0x66,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x20,0x27,0x4e,0x65,0x77,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x74,0x69,0x74,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x41,0x78,0x69,0x73,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x20,0x27,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x58,0x2d,0x61,0x78,0x69,0x73,0x20,0x6c,0x61,0x62,0x65,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x79,0x41,0x78,0x69,0x73,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x20,0x27,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x59,0x2d,0x61,0x78,0x69,0x73,0x20,0x6c,0x61,0x62,0x65,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x6f,0x46,0x69,0x74,0x57,0x69,0x64,0x74,0x68,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76,0x65,0x20,0x66,0x6f,0x6e,0x74,0x20,0x73,0x69,0x7a,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x42,0x69,0x6e,0x4d,0x6f,0x64,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x69,0x6d,0x65,0x20,0x62,0x69,0x6e,0x20,0x61,0x67,0x67,0x72,0x65,0x67,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x69,0x6e,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x34,0x30,0x30,0x30,0x2c,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x34,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x20,0x62,0x69,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x41,0x78,0x69,0x73,0x4c,0x61,0x62,0x65,0x6c,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x27,0x65,0x6c,0x61,0x70,0x73,0x65,0x64,0x27,0x2c,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x6c,0x61,0x70,0x73,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x20,0x6c,0x61,0x62,0x65,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x62,0x75,0x67,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x62,0x75,0x67,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x63,0x65,0x20,0x61,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x6f,0x72,0x63,0x69,0x6e,0x67,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x65,0x72,0x72,0x6f,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x66,0x66,0x36,0x62,0x36,0x62,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x29,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe2,0x9d,0x8c,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x43,0x68,0x65,0x63,0x6b,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x3c,0x2f,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x69,0x6e,0x66,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x53,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x75,0x62,0x49,0x64,0x73,0x20,0x3d,0x20,0x5b,0x27,0x76,0x61,0x6c,0x75,0x65,0x73,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x2d,0x76,0x61,0x6c,0x75,0x65,0x27,0x2c,0x20,0x27,0x73,0x63,0x61,0x6c,0x65,0x27,0x2c,0x20,0x27,0x63,0x6f,0x75,0x6e,0x74,0x27,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x75,0x62,0x49,0x64,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x69,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x69,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x69,0x64,0x20,0x3d,0x20,0x69,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x2d,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x21,0x3d,0x3d,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x64,0x2d,0x74,0x61,0x67,0x20,0x74,0x6f,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x74,0x79,0x70,0x65,0x20,0x6f,0x66,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x54,0x61,0x67,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x69,0x6e,0x64,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x54,0x61,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x72,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x4a,0x53,0x4f,0x4e,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x6f,0x75,0x74,0x65,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72,0x69,0x61,0x74,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x64,0x2d,0x74,0x61,0x67,0x20,0x28,0x6e,0x6f,0x20,0x76,0x65,0x72,0x62,0x6f,0x73,0x65,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x64,0x54,0x61,0x67,0x5b,0x31,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x69,0x6d,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x6f,0x70,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x69,0x66,0x20,0x75,0x73,0x65,0x72,0x20,0x69,0x73,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x43,0x70,0x75,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x74,0x79,0x70,0x65,0x73,0x20,0x6f,0x66,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x48,0x41,0x4e,0x44,0x4c,0x49,0x4e,0x47,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x44,0x41,0x54,0x41,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x28,0x66,0x72,0x6f,0x6d,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x6c,0x61,0x69,0x6e,0x5f,0x74,0x65,0x78,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x48,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x69,0x66,0x20,0x77,0x65,0x27,0x72,0x65,0x20,0x6f,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x6b,0x69,0x6e,0x64,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x4b,0x69,0x6e,0x64,0x3a,0x20,0x30,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x4b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x30,0x30,0x35,0x30,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x4b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x30,0x30,0x30,0x32,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x2d,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x74,0x79,0x70,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x26,0x26,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x20,0x7c,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x75,0x74,0x68,0x27,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x61,0x6c,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x2d,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x74,0x79,0x70,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x26,0x26,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x29,0x20,0x7c,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x27,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x79,0x73,0x74,0x65,0x6d,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x73,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x71,0x6c,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x73,0x69,0x6e,0x67,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x47,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x7d,0x60,0x2c,0x20,0x27,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x6f,0x74,0x61,0x6c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x5f,0x27,0x20,0x2b,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x6f,0x20,0x74,0x61,0x67,0x73,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x65,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x6b,0x65,0x79,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x6f,0x72,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x46,0x72,0x6f,0x6d,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x61,0x74,0x61,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x6c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x7d,0x2c,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x56,0x41,0x4c,0x55,0x45,0x53,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x65,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x60,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x7c,0x7c,0x20,0x27,0x67,0x65,0x6e,0x65,0x72,0x61,0x6c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x76,0x61,0x6c,0x75,0x65,0x7d,0x20,0x28,0x24,0x7b,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x7d,0x2c,0x20,0x24,0x7b,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x7d,0x29,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x56,0x41,0x4c,0x55,0x45,0x53,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x41,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x5f,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3a,0x20,0x24,0x7b,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x41,0x70,0x70,0x6c,0x69,0x65,0x64,0x7d,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x93,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x20,0x28,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x7d,0x29,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x97,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x75,0x73,0x65,0x72,0x20,0x63,0x61,0x6e,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x6c,0x79,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x22,0x46,0x65,0x74,0x63,0x68,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x97,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x20,0x3f,0x20,0x27,0xe2,0x9c,0x93,0x27,0x20,0x3a,0x20,0x27,0xe2,0x9c,0x97,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x20,0x3f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x60,0x20,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x27,0x7d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x24,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x41,0x55,0x54,0x48,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x6f,0x74,0x61,0x6c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x20,0x27,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x77,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x6e,0x6f,0x20,0x56,0x49,0x45,0x57,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x61,0x6e,0x79,0x6d,0x6f,0x72,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x77,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x64,0x61,0x74,0x61,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x4c,0x6f,0x61,0x64,0x65,0x64,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x61,0x74,0x61,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x28,0x6e,0x6f,0x20,0x56,0x49,0x45,0x57,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x61,0x6e,0x79,0x6d,0x6f,0x72,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x64,0x61,0x74,0x61,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x7d,0x2c,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x52,0x75,0x6c,0x65,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x52,0x55,0x4c,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x79,0x73,0x74,0x65,0x6d,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x59,0x53,0x54,0x45,0x4d,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x61,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6c,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x66,0x69,0x72,0x65,0x64,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x20,0x77,0x61,0x73,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x6c,0x6f,0x61,0x64,0x29,0x2e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x20,0x26,0x26,0x20,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x28,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x26,0x26,0x20,0x21,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x2d,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x69,0x66,0x20,0x73,0x74,0x69,0x6c,0x6c,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x61,0x6e,0x64,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x28,0x69,0x6e,0x20,0x63,0x61,0x73,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x73,0x68,0x6f,0x77,0x65,0x64,0x20,0x69,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x6e,0x6f,0x77,0x20,0x74,0x68,0x61,0x74,0x20,0x77,0x65,0x27,0x72,0x65,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6c,0x6f,0x67,0x73,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x6f,0x45,0x6e,0x61,0x62,0x6c,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x64,0x65,0x6c,0x65,0x74,0x65,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x61,0x6c,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x6c,0x65,0x61,0x72,0x5f,0x61,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x73,0x43,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x73,0x5f,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x43,0x6c,0x65,0x61,0x72,0x65,0x64,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x79,0x6e,0x63,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x6f,0x74,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x6f,0x74,0x5f,0x73,0x79,0x6e,0x63,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x73,0x65,0x74,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x60,0x2c,0x20,0x27,0x53,0x59,0x53,0x54,0x45,0x4d,0x5f,0x43,0x4d,0x44,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x57,0x45,0x42,0x20,0x4f,0x46,0x20,0x54,0x52,0x55,0x53,0x54,0x20,0x28,0x57,0x6f,0x54,0x29,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x76,0x69,0x61,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x77,0x6f,0x74,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x76,0x69,0x61,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x6c,0x65,0x76,0x65,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x74,0x6f,0x20,0x24,0x7b,0x6c,0x65,0x76,0x65,0x6c,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x22,0x2c,0x20,0x22,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6c,0x65,0x76,0x65,0x6c,0x29,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x73,0x65,0x74,0x20,0x74,0x6f,0x20,0x24,0x7b,0x6c,0x65,0x76,0x65,0x6c,0x7d,0x20,0x2d,0x20,0x73,0x79,0x6e,0x63,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x73,0x79,0x6e,0x63,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x63,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x64,0x6d,0x69,0x6e,0x27,0x73,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x79,0x6e,0x63,0x57,0x6f,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x79,0x6e,0x63,0x20,0x57,0x6f,0x54,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x77,0x6f,0x74,0x5f,0x73,0x79,0x6e,0x63,0x22,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x20,0x64,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x79,0x6e,0x63,0x20,0x57,0x6f,0x54,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x55,0x49,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x57,0x6f,0x54,0x20,0x53,0x54,0x41,0x54,0x55,0x53,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x4b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x46,0x6f,0x75,0x6e,0x64,0x20,0xe2,0x9c,0x93,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x77,0x6f,0x74,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x6f,0x74,0x2d,0x66,0x6f,0x75,0x6e,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4e,0x6f,0x74,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0xe2,0x9c,0x97,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x77,0x6f,0x74,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x6f,0x74,0x2d,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x3f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3a,0x20,0x27,0xe2,0x80,0x94,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x3f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x5b,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x30,0x42,0x74,0x6e,0x27,0x2c,0x20,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x31,0x42,0x74,0x6e,0x27,0x2c,0x20,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x32,0x42,0x74,0x6e,0x27,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x69,0x64,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x69,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x62,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x20,0x3d,0x3d,0x3d,0x20,0x6c,0x65,0x76,0x65,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x74,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x74,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x4c,0x65,0x76,0x65,0x6c,0x20,0x30,0x3a,0x20,0x4f,0x70,0x65,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0xe2,0x80,0x94,0x20,0x61,0x6e,0x79,0x6f,0x6e,0x65,0x20,0x63,0x61,0x6e,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x6e,0x64,0x20,0x77,0x72,0x69,0x74,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x4c,0x65,0x76,0x65,0x6c,0x20,0x31,0x3a,0x20,0x57,0x72,0x69,0x74,0x65,0x2d,0x6f,0x6e,0x6c,0x79,0x20,0xe2,0x80,0x94,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x63,0x61,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x4c,0x65,0x76,0x65,0x6c,0x20,0x32,0x3a,0x20,0x46,0x75,0x6c,0x6c,0x20,0xe2,0x80,0x94,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x63,0x61,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x41,0x4e,0x44,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x28,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x29,0x27,0x0a,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x6c,0x65,0x76,0x65,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x2f,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x73,0x79,0x6e,0x63,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x6e,0x63,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x79,0x6e,0x63,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x53,0x79,0x6e,0x63,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x79,0x6e,0x63,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x79,0x6e,0x63,0x42,0x74,0x6e,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x21,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x6c,0x65,0x76,0x65,0x6c,0x3d,0x24,0x7b,0x6c,0x65,0x76,0x65,0x6c,0x7d,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x3d,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x7d,0x2c,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x3d,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x4d,0x4f,0x44,0x49,0x46,0x49,0x43,0x41,0x54,0x49,0x4f,0x4e,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x2f,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x73,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x73,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x21,0x3d,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x52,0x55,0x4c,0x45,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x5f,0x72,0x75,0x6c,0x65,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x5f,0x72,0x75,0x6c,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x72,0x75,0x6c,0x65,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x52,0x55,0x4c,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x46,0x72,0x6f,0x6d,0x52,0x65,0x6c,0x61,0x79,0x28,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x73,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x46,0x45,0x54,0x43,0x48,0x49,0x4e,0x47,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x56,0x49,0x41,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x41,0x50,0x49,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x62,0x6f,0x74,0x68,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x69,0x72,0x73,0x74,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x69,0x72,0x73,0x74,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x28,0x6f,0x6e,0x6c,0x79,0x20,0x69,0x66,0x20,0x6e,0x6f,0x74,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x61,0x20,0x6d,0x6f,0x6d,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x28,0x6f,0x6e,0x6c,0x79,0x20,0x69,0x66,0x20,0x77,0x65,0x20,0x6a,0x75,0x73,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x69,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x35,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x69,0x66,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x26,0x26,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x2c,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x6e,0x74,0x3a,0x20,0x27,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x63,0x61,0x6e,0x20,0x62,0x65,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x20,0x66,0x61,0x69,0x6c,0x20,0x28,0x77,0x72,0x6f,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6b,0x65,0x79,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x2d,0x73,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6f,0x72,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x2e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x2d,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x61,0x74,0x63,0x68,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x44,0x49,0x53,0x50,0x4c,0x41,0x59,0x49,0x4e,0x47,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x61,0x67,0x73,0x20,0x28,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x6f,0x6e,0x6c,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x74,0x61,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x67,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x32,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x65,0x79,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x66,0x6f,0x72,0x20,0x76,0x61,0x6c,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x76,0x61,0x6c,0x75,0x65,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x72,0x6f,0x77,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x69,0x6e,0x64,0x65,0x78,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x20,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x63,0x65,0x6c,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2d,0x63,0x65,0x6c,0x6c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x72,0x6f,0x77,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x69,0x6e,0x64,0x65,0x78,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x6c,0x79,0x20,0x68,0x69,0x64,0x65,0x20,0x74,0x68,0x65,0x20,0x53,0x41,0x56,0x45,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x53,0x41,0x56,0x45,0x20,0x74,0x65,0x78,0x74,0x20,0x61,0x6e,0x64,0x20,0x6d,0x61,0x6b,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x68,0x69,0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x74,0x68,0x69,0x73,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x61,0x76,0x65,0x49,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6b,0x65,0x79,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x63,0x65,0x6c,0x6c,0x73,0x5b,0x31,0x5d,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x6e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x49,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6b,0x65,0x79,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x61,0x76,0x65,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x68,0x61,0x73,0x6e,0x27,0x74,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x20,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x79,0x70,0x65,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6b,0x65,0x79,0x20,0x6e,0x61,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x5b,0x27,0x6d,0x61,0x78,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x27,0x70,0x6f,0x77,0x5f,0x6d,0x69,0x6e,0x5f,0x64,0x69,0x66,0x66,0x69,0x63,0x75,0x6c,0x74,0x79,0x27,0x2c,0x20,0x27,0x6e,0x69,0x70,0x34,0x32,0x5f,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x5f,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x70,0x65,0x72,0x5f,0x63,0x6c,0x69,0x65,0x6e,0x74,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x74,0x61,0x67,0x73,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x5f,0x6c,0x65,0x6e,0x67,0x74,0x68,0x27,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x5b,0x27,0x61,0x75,0x74,0x68,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x27,0x6e,0x69,0x70,0x34,0x32,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x6e,0x69,0x70,0x34,0x30,0x5f,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6b,0x65,0x79,0x20,0x6e,0x61,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x67,0x65,0x6e,0x65,0x72,0x61,0x6c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x69,0x70,0x34,0x30,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x69,0x70,0x34,0x32,0x5f,0x27,0x29,0x20,0x7c,0x7c,0x20,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x61,0x75,0x74,0x68,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x70,0x6f,0x77,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x70,0x72,0x6f,0x6f,0x66,0x5f,0x6f,0x66,0x5f,0x77,0x6f,0x72,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6d,0x61,0x78,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x6c,0x69,0x6d,0x69,0x74,0x73,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x65,0x6c,0x6c,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x49,0x4e,0x47,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x74,0x2d,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x65,0x6c,0x6c,0x73,0x5b,0x31,0x5d,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x53,0x41,0x56,0x45,0x20,0x74,0x65,0x78,0x74,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6e,0x6f,0x77,0x20,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x44,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x70,0x75,0x74,0x20,0x26,0x26,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x20,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x61,0x76,0x65,0x49,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6b,0x65,0x79,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x65,0x6c,0x6c,0x73,0x5b,0x31,0x5d,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x77,0x69,0x74,0x68,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x20,0x28,0x69,0x6e,0x6e,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x22,0x2c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x20,0x28,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x7d,0x29,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x61,0x72,0x65,0x61,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x61,0x6e,0x64,0x20,0x64,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x77,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x20,0x66,0x6f,0x6f,0x74,0x65,0x72,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x20,0x63,0x6f,0x70,0x79,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x21,0x3d,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x66,0x75,0x6c,0x6c,0x20,0x6e,0x70,0x75,0x62,0x20,0x28,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6c,0x6c,0x20,0x77,0x68,0x69,0x74,0x65,0x73,0x70,0x61,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,0x73,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x75,0x6c,0x6c,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x73,0x2f,0x67,0x2c,0x20,0x27,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x2e,0x77,0x72,0x69,0x74,0x65,0x54,0x65,0x78,0x74,0x28,0x66,0x75,0x6c,0x6c,0x4e,0x70,0x75,0x62,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x66,0x6f,0x72,0x20,0x76,0x69,0x73,0x75,0x61,0x6c,0x20,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x63,0x6f,0x70,0x69,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x63,0x6f,0x70,0x69,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x6e,0x70,0x75,0x62,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x6f,0x70,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x4f,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x72,0x65,0x61,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x73,0x68,0x6f,0x77,0x20,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x63,0x68,0x65,0x63,0x6b,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x68,0x69,0x64,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x28,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x2d,0x6f,0x70,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x76,0x69,0x61,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x61,0x6c,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x61,0x75,0x74,0x68,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x72,0x75,0x6c,0x65,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x44,0x49,0x53,0x50,0x4c,0x41,0x59,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x75,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x27,0x2c,0x20,0x72,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x75,0x6c,0x65,0x73,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x27,0x2c,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x3f,0x20,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3a,0x20,0x27,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3f,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3a,0x20,0x27,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x3a,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x75,0x6c,0x65,0x73,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2c,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x36,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x72,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x72,0x75,0x6c,0x65,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x60,0x2c,0x20,0x72,0x75,0x6c,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x6e,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x26,0x26,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x20,0x62,0x72,0x65,0x61,0x6b,0x2d,0x61,0x6c,0x6c,0x3b,0x20,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x32,0x30,0x30,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x3f,0x20,0x27,0x41,0x63,0x74,0x69,0x76,0x65,0x27,0x20,0x3a,0x20,0x27,0x49,0x6e,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x65,0x64,0x69,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x32,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x34,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x45,0x44,0x49,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x32,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x34,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x44,0x45,0x4c,0x45,0x54,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x54,0x6f,0x74,0x61,0x6c,0x20,0x52,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x2c,0x20,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x52,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x72,0x20,0x3d,0x3e,0x20,0x72,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x44,0x49,0x53,0x50,0x4c,0x41,0x59,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x28,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x63,0x61,0x6c,0x6c,0x65,0x64,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x48,0x4f,0x57,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x54,0x41,0x42,0x4c,0x45,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x73,0x74,0x79,0x6c,0x65,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3f,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3a,0x20,0x27,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x77,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x2c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x6d,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x3a,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x20,0x27,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x72,0x75,0x6c,0x65,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x72,0x75,0x6c,0x65,0x73,0x2c,0x20,0x6c,0x6f,0x61,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x2c,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x2d,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x3a,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x53,0x48,0x4f,0x57,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x54,0x41,0x42,0x4c,0x45,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x41,0x64,0x64,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x2e,0x72,0x65,0x73,0x65,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4f,0x70,0x65,0x6e,0x65,0x64,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x64,0x69,0x74,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x64,0x69,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x64,0x65,0x78,0x20,0x3c,0x20,0x30,0x20,0x7c,0x7c,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x3e,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x5b,0x69,0x6e,0x64,0x65,0x78,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x7b,0x20,0x2e,0x2e,0x2e,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x3a,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x45,0x64,0x69,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x41,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x61,0x6c,0x6c,0x6f,0x77,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x20,0x28,0x69,0x6e,0x6e,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x64,0x65,0x78,0x20,0x3c,0x20,0x30,0x20,0x7c,0x7c,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x3e,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x5b,0x69,0x6e,0x64,0x65,0x78,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x4d,0x73,0x67,0x20,0x3d,0x20,0x60,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x3f,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x4d,0x73,0x67,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x44,0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x22,0x2c,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x22,0x2c,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x55,0x49,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76,0x65,0x6e,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x69,0x6e,0x64,0x65,0x78,0x2c,0x20,0x31,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x41,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x72,0x75,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x74,0x79,0x70,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x61,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x6e,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x28,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x29,0x20,0x26,0x26,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x36,0x34,0x20,0x68,0x65,0x78,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x78,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x28,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x3d,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x65,0x78,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x2e,0x74,0x65,0x73,0x74,0x28,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x6d,0x75,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x68,0x65,0x78,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x28,0x30,0x2d,0x39,0x2c,0x20,0x61,0x2d,0x66,0x2c,0x20,0x41,0x2d,0x46,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x28,0x61,0x64,0x64,0x20,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x41,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20,0x74,0x72,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x55,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x4f,0x44,0x4f,0x3a,0x20,0x49,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x72,0x75,0x6c,0x65,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x76,0x69,0x61,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x20,0x6e,0x6f,0x77,0x2c,0x20,0x6a,0x75,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x5b,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x5d,0x20,0x3d,0x20,0x7b,0x20,0x2e,0x2e,0x2e,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2c,0x20,0x69,0x64,0x3a,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x28,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x6e,0x65,0x77,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x4f,0x44,0x4f,0x3a,0x20,0x49,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x72,0x75,0x6c,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x61,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x20,0x6e,0x6f,0x77,0x2c,0x20,0x6a,0x75,0x73,0x74,0x20,0x61,0x64,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x20,0x2e,0x2e,0x2e,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2c,0x20,0x69,0x64,0x3a,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x28,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x61,0x75,0x74,0x6f,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x73,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x6f,0x45,0x6e,0x61,0x62,0x6c,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x3b,0x0a,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x3d,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x44,0x4d,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x61,0x6e,0x64,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x22,0x3e,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x3b,0x0a,0x7d,0x3b,0x0a,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x3d,0x20,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x3b,0x0a,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x63,0x61,0x6c,0x6c,0x20,0x2d,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x0a,0x7d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x69,0x66,0x20,0x28,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x27,0x2c,0x20,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x69,0x66,0x20,0x28,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x53,0x54,0x52,0x45,0x41,0x4d,0x4c,0x49,0x4e,0x45,0x44,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x73,0x65,0x63,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6f,0x72,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x73,0x65,0x63,0x54,0x6f,0x48,0x65,0x78,0x28,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x20,0x7c,0x7c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x69,0x74,0x27,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x20,0x68,0x65,0x78,0x2c,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x73,0x2d,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x7b,0x36,0x34,0x7d,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x69,0x74,0x20,0x73,0x74,0x61,0x72,0x74,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x73,0x65,0x63,0x31,0x2c,0x20,0x74,0x72,0x79,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x73,0x65,0x63,0x31,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6e,0x73,0x65,0x63,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x73,0x20,0x6f,0x66,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x31,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x68,0x65,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x32,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x62,0x20,0x3d,0x3e,0x20,0x62,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x28,0x32,0x2c,0x20,0x27,0x30,0x27,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x20,0x6e,0x73,0x65,0x63,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x69,0x74,0x20,0x73,0x74,0x61,0x72,0x74,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x70,0x75,0x62,0x31,0x2c,0x20,0x74,0x72,0x79,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x70,0x75,0x62,0x31,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6e,0x70,0x75,0x62,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x73,0x20,0x6f,0x66,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x31,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x68,0x65,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x32,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x62,0x20,0x3d,0x3e,0x20,0x62,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x28,0x32,0x2c,0x20,0x27,0x30,0x27,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x28,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x70,0x75,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6f,0x72,0x20,0x6e,0x73,0x65,0x63,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x73,0x65,0x63,0x20,0x6f,0x72,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x69,0x66,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x73,0x65,0x63,0x54,0x6f,0x48,0x65,0x78,0x28,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x20,0x6f,0x72,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x78,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2e,0x20,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x36,0x34,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x64,0x65,0x6e,0x79,0x27,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x71,0x75,0x65,0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x56,0x69,0x61,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x24,0x7b,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x21,0x3d,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x28,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x70,0x75,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6f,0x72,0x20,0x6e,0x73,0x65,0x63,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x73,0x65,0x63,0x20,0x6f,0x72,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x69,0x66,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x73,0x65,0x63,0x54,0x6f,0x48,0x65,0x78,0x28,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x20,0x6f,0x72,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x78,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2e,0x20,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x36,0x34,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x44,0x69,0x76,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x44,0x69,0x76,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x61,0x6c,0x6c,0x6f,0x77,0x27,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x71,0x75,0x65,0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x56,0x69,0x61,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x24,0x7b,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x21,0x3d,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x2d,0x20,0x46,0x49,0x58,0x45,0x44,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x56,0x69,0x61,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x70,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2d,0x73,0x69,0x64,0x65,0x20,0x72,0x75,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x73,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x28,0x6d,0x61,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x74,0x65,0x73,0x74,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x68,0x61,0x73,0x68,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x68,0x61,0x73,0x68,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x75,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x61,0x73,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x74,0x65,0x73,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x5b,0x22,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x61,0x62,0x63,0x31,0x32,0x33,0x2e,0x2e,0x2e,0x22,0x5d,0x20,0x6f,0x72,0x20,0x5b,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x64,0x65,0x66,0x34,0x35,0x36,0x2e,0x2e,0x2e,0x22,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x2c,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x4c,0x6f,0x67,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x28,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x29,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x52,0x75,0x6c,0x65,0x20,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x41,0x72,0x72,0x61,0x79,0x3a,0x27,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x28,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x29,0x3a,0x27,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x32,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x41,0x64,0x64,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x64,0x64,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x54,0x45,0x53,0x54,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x20,0x46,0x4f,0x52,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x41,0x50,0x49,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x2d,0x6c,0x6f,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x54,0x27,0x29,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2e,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x53,0x45,0x4e,0x54,0x27,0x20,0x3f,0x20,0x27,0x23,0x30,0x30,0x37,0x62,0x66,0x66,0x27,0x20,0x3a,0x20,0x27,0x23,0x32,0x38,0x61,0x37,0x34,0x35,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x22,0x3e,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x7d,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x36,0x36,0x36,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x20,0x3d,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x27,0x5b,0x22,0x61,0x75,0x74,0x68,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x64,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x6c,0x6c,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x6c,0x6c,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x27,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x63,0x6c,0x65,0x61,0x72,0x5f,0x61,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x73,0x22,0x5d,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x64,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3f,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x61,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x6e,0x6f,0x6e,0x65,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x27,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x55,0x73,0x69,0x6e,0x67,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x64,0x69,0x6e,0x67,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x60,0x5b,0x22,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x22,0x5d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3f,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x61,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x6e,0x6f,0x6e,0x65,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x27,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x55,0x73,0x69,0x6e,0x67,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x64,0x69,0x6e,0x67,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x60,0x5b,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x22,0x5d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x27,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x50,0x6f,0x73,0x74,0x20,0x42,0x61,0x73,0x69,0x63,0x20,0x45,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x6f,0x73,0x74,0x69,0x6e,0x67,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x6f,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x20,0x73,0x69,0x6d,0x70,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x31,0x20,0x74,0x65,0x78,0x74,0x20,0x6e,0x6f,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x74,0x22,0x2c,0x20,0x22,0x74,0x65,0x73,0x74,0x22,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x22,0x2c,0x20,0x22,0x63,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x61,0x70,0x69,0x22,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x61,0x74,0x20,0x24,0x7b,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x28,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x29,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x74,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x74,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x53,0x69,0x67,0x6e,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6d,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x21,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x62,0x6f,0x76,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x77,0x65,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x74,0x6f,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x61,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x2d,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x75,0x73,0x65,0x72,0x27,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x65,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x73,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x60,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x20,0x54,0x72,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x69,0x66,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x66,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x69,0x6e,0x67,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x65,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x27,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x2c,0x20,0x62,0x75,0x74,0x20,0x77,0x65,0x20,0x63,0x61,0x6e,0x27,0x74,0x20,0x67,0x65,0x74,0x20,0x69,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x73,0x65,0x63,0x75,0x72,0x69,0x74,0x79,0x20,0x6c,0x69,0x6d,0x69,0x74,0x61,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x77,0x65,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x75,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x43,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x75,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x69,0x72,0x65,0x63,0x74,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x20,0x6c,0x61,0x79,0x65,0x72,0x69,0x6e,0x67,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x4e,0x49,0x50,0x31,0x37,0x44,0x4d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x44,0x4d,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x44,0x4d,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x70,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x63,0x68,0x65,0x63,0x6b,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x20,0x61,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x65,0x63,0x72,0x65,0x74,0x4b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x20,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x20,0x69,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x31,0x3a,0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x34,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x34,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6e,0x6f,0x6e,0x69,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x72,0x75,0x6d,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x4f,0x54,0x45,0x3a,0x20,0x52,0x75,0x6d,0x6f,0x72,0x20,0x72,0x65,0x6d,0x61,0x69,0x6e,0x73,0x20,0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x70,0x65,0x72,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x75,0x6d,0x6f,0x72,0x20,0x62,0x75,0x69,0x6c,0x74,0x20,0x28,0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,0x29,0x2c,0x20,0x63,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x65,0x61,0x6c,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x32,0x3a,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x65,0x61,0x6c,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x33,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x61,0x6c,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x33,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x4e,0x6f,0x77,0x28,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x45,0x6d,0x70,0x74,0x79,0x20,0x74,0x61,0x67,0x73,0x20,0x70,0x65,0x72,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x72,0x75,0x6d,0x6f,0x72,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x73,0x65,0x61,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x6c,0x6f,0x6e,0x67,0x2d,0x74,0x65,0x72,0x6d,0x20,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x73,0x65,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x67,0x6e,0x20,0x73,0x65,0x61,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x61,0x6c,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x2c,0x20,0x63,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x33,0x3a,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x30,0x35,0x39,0x29,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x65,0x63,0x72,0x65,0x74,0x4b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x67,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x30,0x35,0x39,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x75,0x62,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x4e,0x6f,0x77,0x28,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x28,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6e,0x76,0x65,0x72,0x73,0x61,0x74,0x69,0x6f,0x6e,0x4b,0x65,0x79,0x28,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x66,0x69,0x6e,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x28,0x67,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2c,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x67,0x6e,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x4c,0x6f,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x43,0x52,0x45,0x41,0x54,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x75,0x6c,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x32,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x27,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x63,0x61,0x6c,0x20,0x64,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x2c,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x20,0x64,0x6d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x27,0x73,0x65,0x6e,0x74,0x27,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x65,0x6e,0x74,0x27,0x20,0x3f,0x20,0x27,0x23,0x30,0x30,0x37,0x62,0x66,0x66,0x27,0x20,0x3a,0x20,0x27,0x23,0x32,0x38,0x61,0x37,0x34,0x35,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x73,0x20,0x74,0x6f,0x20,0x3c,0x62,0x72,0x3e,0x20,0x74,0x61,0x67,0x73,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x20,0x48,0x54,0x4d,0x4c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x6e,0x2f,0x67,0x2c,0x20,0x27,0x3c,0x62,0x72,0x3e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x60,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x36,0x36,0x36,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x70,0x78,0x3b,0x22,0x3e,0x28,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x29,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x22,0x3e,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x7d,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x70,0x72,0x65,0x2d,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x24,0x7b,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x22,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x3d,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x26,0x26,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x2e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x74,0x6f,0x70,0x0a,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x69,0x6e,0x73,0x65,0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x2c,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x6d,0x69,0x74,0x20,0x74,0x6f,0x20,0x6c,0x61,0x73,0x74,0x20,0x35,0x30,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x28,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x35,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x6c,0x61,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x2f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x6f,0x72,0x20,0x75,0x73,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x69,0x6e,0x74,0x6f,0x20,0x33,0x20,0x6c,0x69,0x6e,0x65,0x73,0x20,0x6f,0x66,0x20,0x32,0x31,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x65,0x61,0x63,0x68,0x2c,0x20,0x77,0x69,0x74,0x68,0x20,0x73,0x70,0x61,0x63,0x65,0x73,0x20,0x64,0x69,0x76,0x69,0x64,0x69,0x6e,0x67,0x20,0x65,0x61,0x63,0x68,0x20,0x6c,0x69,0x6e,0x65,0x20,0x69,0x6e,0x74,0x6f,0x20,0x33,0x20,0x67,0x72,0x6f,0x75,0x70,0x73,0x20,0x6f,0x66,0x20,0x37,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x33,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x6e,0x65,0x31,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x37,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x37,0x2c,0x20,0x31,0x34,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x34,0x2c,0x20,0x32,0x31,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x6e,0x65,0x32,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x32,0x31,0x2c,0x20,0x32,0x38,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x32,0x38,0x2c,0x20,0x33,0x35,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x35,0x2c,0x20,0x34,0x32,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x6e,0x65,0x33,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x34,0x32,0x2c,0x20,0x34,0x39,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x34,0x39,0x2c,0x20,0x35,0x36,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x35,0x36,0x2c,0x20,0x36,0x33,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x6c,0x69,0x6e,0x65,0x31,0x20,0x2b,0x20,0x27,0x5c,0x6e,0x27,0x20,0x2b,0x20,0x6c,0x69,0x6e,0x65,0x32,0x20,0x2b,0x20,0x27,0x5c,0x6e,0x27,0x20,0x2b,0x20,0x6c,0x69,0x6e,0x65,0x33,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x3f,0x20,0x60,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7d,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x7d,0x60,0x20,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x69,0x74,0x6c,0x65,0x20,0x3d,0x20,0x60,0x24,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7d,0x20,0x41,0x64,0x6d,0x69,0x6e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x72,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x69,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x6f,0x72,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x69,0x6e,0x64,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x69,0x74,0x65,0x6d,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x69,0x6e,0x64,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x69,0x74,0x65,0x6d,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x69,0x6e,0x64,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x69,0x74,0x65,0x6d,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x79,0x6e,0x61,0x6d,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x2d,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x66,0x69,0x72,0x73,0x74,0x2e,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x6e,0x68,0x61,0x6e,0x63,0x65,0x64,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x74,0x65,0x73,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6e,0x68,0x61,0x6e,0x63,0x65,0x50,0x6f,0x6f,0x6c,0x46,0x6f,0x72,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x70,0x61,0x72,0x73,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x2c,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x6a,0x75,0x73,0x74,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x6f,0x75,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x20,0x6c,0x6f,0x67,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72,0x69,0x61,0x74,0x65,0x6c,0x79,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x64,0x6f,0x6e,0x65,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x65,0x6e,0x68,0x61,0x6e,0x63,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x2d,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x33,0x32,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x28,0x36,0x34,0x20,0x68,0x65,0x78,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x29,0x20,0x66,0x6f,0x72,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x42,0x79,0x74,0x65,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x28,0x33,0x32,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x72,0x79,0x70,0x74,0x6f,0x2e,0x67,0x65,0x74,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x56,0x61,0x6c,0x75,0x65,0x73,0x28,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x42,0x79,0x74,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x42,0x79,0x74,0x65,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x62,0x20,0x3d,0x3e,0x20,0x62,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x28,0x32,0x2c,0x20,0x27,0x30,0x27,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x66,0x69,0x65,0x6c,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x4b,0x45,0x59,0x47,0x45,0x4e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x44,0x41,0x54,0x41,0x42,0x41,0x53,0x45,0x20,0x53,0x54,0x41,0x54,0x49,0x53,0x54,0x49,0x43,0x53,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x61,0x6e,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x73,0x68,0x6f,0x72,0x74,0x6c,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x74,0x6f,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x52,0x45,0x53,0x54,0x41,0x52,0x54,0x49,0x4e,0x47,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x20,0x61,0x6e,0x64,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x72,0x65,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x64,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x20,0x28,0x69,0x6e,0x6e,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x73,0x75,0x72,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x61,0x6c,0x69,0x76,0x65,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x61,0x64,0x79,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x61,0x64,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x72,0x65,0x61,0x64,0x79,0x20,0x28,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x61,0x79,0x20,0x68,0x61,0x76,0x65,0x20,0x74,0x69,0x6d,0x65,0x64,0x20,0x6f,0x75,0x74,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x2c,0x20,0x27,0x51,0x75,0x65,0x72,0x79,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x73,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x73,0x74,0x61,0x74,0x73,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3f,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x70,0x72,0x65,0x2d,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x54,0x79,0x70,0x65,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x61,0x6e,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x6e,0x74,0x3a,0x20,0x27,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x63,0x61,0x6e,0x20,0x62,0x65,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x20,0x66,0x61,0x69,0x6c,0x20,0x28,0x77,0x72,0x6f,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6b,0x65,0x79,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x2d,0x73,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6f,0x72,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x2e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x27,0x2c,0x20,0x27,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x20,0x63,0x61,0x74,0x63,0x68,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x6e,0x2d,0x73,0x74,0x61,0x74,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x2c,0x20,0x27,0x57,0x41,0x52,0x4e,0x49,0x4e,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x6b,0x20,0x72,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x20,0x3d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x74,0x6f,0x74,0x61,0x6c,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x6c,0x61,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x20,0x2d,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x24,0x7b,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x7d,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x28,0x24,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x7d,0x29,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x2e,0x61,0x64,0x64,0x56,0x61,0x6c,0x75,0x65,0x28,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x66,0x6f,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x63,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x69,0x6d,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x20,0x3d,0x20,0x7b,0x20,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x3a,0x20,0x30,0x2c,0x20,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x3a,0x20,0x30,0x2c,0x20,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x3a,0x20,0x30,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x27,0x29,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x20,0x3d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x27,0x29,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x20,0x3d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x27,0x29,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x20,0x3d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x28,0x7b,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x3a,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x74,0x69,0x6d,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x6f,0x70,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x73,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x7c,0x7c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x4c,0x6f,0x67,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x61,0x74,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x77,0x65,0x62,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x32,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x3a,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x43,0x50,0x55,0x20,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x43,0x70,0x75,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x43,0x50,0x55,0x20,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x69,0x64,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2d,0x69,0x64,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x69,0x64,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x77,0x65,0x62,0x73,0x6f,0x63,0x6b,0x65,0x74,0x2d,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x75,0x73,0x61,0x67,0x65,0x5f,0x6d,0x62,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x2d,0x75,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x75,0x73,0x61,0x67,0x65,0x5f,0x6d,0x62,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x2b,0x20,0x27,0x20,0x4d,0x42,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x45,0x4d,0x25,0x20,0x62,0x61,0x72,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x6d,0x50,0x63,0x74,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x31,0x30,0x30,0x2c,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x30,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x2d,0x75,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x6d,0x61,0x6b,0x65,0x41,0x73,0x63,0x69,0x69,0x42,0x61,0x72,0x28,0x6d,0x65,0x6d,0x50,0x63,0x74,0x29,0x20,0x2b,0x20,0x27,0x20,0x20,0x27,0x20,0x2b,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x75,0x73,0x61,0x67,0x65,0x5f,0x6d,0x62,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x2b,0x20,0x27,0x20,0x4d,0x42,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5f,0x63,0x70,0x75,0x5f,0x63,0x6f,0x72,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x63,0x70,0x75,0x2d,0x63,0x6f,0x72,0x65,0x27,0x2c,0x20,0x27,0x43,0x6f,0x72,0x65,0x20,0x27,0x20,0x2b,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5f,0x63,0x70,0x75,0x5f,0x63,0x6f,0x72,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x50,0x55,0x25,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x64,0x65,0x6c,0x74,0x61,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x73,0x61,0x6d,0x70,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x63,0x44,0x65,0x6c,0x74,0x61,0x20,0x3d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x2d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x70,0x72,0x6f,0x63,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x79,0x73,0x44,0x65,0x6c,0x74,0x61,0x20,0x3d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x2d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x73,0x79,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x79,0x73,0x44,0x65,0x6c,0x74,0x61,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x70,0x75,0x50,0x63,0x74,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x31,0x30,0x30,0x2c,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x30,0x2c,0x20,0x28,0x70,0x72,0x6f,0x63,0x44,0x65,0x6c,0x74,0x61,0x20,0x2f,0x20,0x73,0x79,0x73,0x44,0x65,0x6c,0x74,0x61,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x63,0x70,0x75,0x2d,0x75,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x6d,0x61,0x6b,0x65,0x41,0x73,0x63,0x69,0x69,0x42,0x61,0x72,0x28,0x63,0x70,0x75,0x50,0x63,0x74,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x63,0x3a,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x79,0x73,0x3a,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x43,0x50,0x55,0x20,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x6b,0x69,0x6e,0x64,0x73,0x44,0x61,0x74,0x61,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x69,0x6e,0x64,0x73,0x44,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x28,0x6b,0x69,0x6e,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x20,0x2f,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x3a,0x20,0x27,0x30,0x2e,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x6b,0x69,0x6e,0x64,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x61,0x74,0x61,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x65,0x6c,0x6c,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x64,0x62,0x2d,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x73,0x69,0x7a,0x65,0x5f,0x62,0x79,0x74,0x65,0x73,0x20,0x3f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x46,0x69,0x6c,0x65,0x53,0x69,0x7a,0x65,0x28,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x73,0x69,0x7a,0x65,0x5f,0x62,0x79,0x74,0x65,0x73,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x74,0x6f,0x74,0x61,0x6c,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6f,0x6c,0x64,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x28,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6e,0x65,0x77,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x6c,0x61,0x74,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x61,0x74,0x20,0x3f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x28,0x64,0x61,0x74,0x61,0x2e,0x6c,0x61,0x74,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x61,0x74,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x64,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x6b,0x69,0x6e,0x64,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x61,0x74,0x61,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x63,0x63,0x65,0x73,0x73,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x20,0x3d,0x20,0x64,0x61,0x74,0x61,0x2e,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x65,0x6c,0x6c,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x32,0x34,0x68,0x27,0x2c,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x20,0x7c,0x7c,0x20,0x27,0x30,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x37,0x64,0x27,0x2c,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x20,0x7c,0x7c,0x20,0x27,0x30,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x33,0x30,0x64,0x27,0x2c,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x20,0x7c,0x7c,0x20,0x27,0x30,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x20,0x62,0x72,0x65,0x61,0x6b,0x2d,0x61,0x6c,0x6c,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x20,0x7c,0x7c,0x20,0x21,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x2f,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x3a,0x20,0x27,0x30,0x2e,0x30,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x20,0x62,0x72,0x65,0x61,0x6b,0x2d,0x61,0x6c,0x6c,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x20,0x7c,0x7c,0x20,0x21,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x72,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x2f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x72,0x65,0x62,0x75,0x69,0x6c,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x47,0x72,0x6f,0x75,0x70,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x29,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x47,0x72,0x6f,0x75,0x70,0x73,0x2e,0x61,0x64,0x64,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x6f,0x72,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x62,0x79,0x20,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x74,0x6f,0x20,0x67,0x72,0x6f,0x75,0x70,0x20,0x74,0x68,0x65,0x6d,0x20,0x74,0x6f,0x67,0x65,0x74,0x68,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28,0x61,0x2c,0x20,0x62,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x41,0x20,0x3d,0x20,0x61,0x2e,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x42,0x20,0x3d,0x20,0x62,0x2e,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x69,0x41,0x2e,0x6c,0x6f,0x63,0x61,0x6c,0x65,0x43,0x6f,0x6d,0x70,0x61,0x72,0x65,0x28,0x77,0x73,0x69,0x42,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x72,0x6f,0x75,0x70,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x62,0x79,0x20,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x75,0x62,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x4b,0x65,0x79,0x20,0x3d,0x20,0x73,0x75,0x62,0x2e,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x2f,0x41,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x77,0x73,0x69,0x4b,0x65,0x79,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x77,0x73,0x69,0x4b,0x65,0x79,0x5d,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x77,0x73,0x69,0x4b,0x65,0x79,0x5d,0x2e,0x70,0x75,0x73,0x68,0x28,0x73,0x75,0x62,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x72,0x6f,0x77,0x73,0x20,0x66,0x6f,0x72,0x20,0x65,0x61,0x63,0x68,0x20,0x67,0x72,0x6f,0x75,0x70,0x0a,0x20,0x20,0x20,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x28,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x5b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2c,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x67,0x72,0x6f,0x75,0x70,0x20,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x77,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x2e,0x2e,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x6e,0x6f,0x77,0x20,0x2d,0x20,0x73,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x20,0x3d,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x73,0x75,0x6d,0x2c,0x20,0x73,0x29,0x20,0x3d,0x3e,0x20,0x73,0x75,0x6d,0x20,0x2b,0x20,0x28,0x73,0x2e,0x64,0x62,0x5f,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x5f,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x29,0x2c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x73,0x75,0x6d,0x2c,0x20,0x73,0x29,0x20,0x3d,0x3e,0x20,0x73,0x75,0x6d,0x20,0x2b,0x20,0x28,0x73,0x2e,0x64,0x62,0x5f,0x72,0x6f,0x77,0x73,0x5f,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x29,0x2c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x76,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x74,0x65,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x30,0x5d,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x72,0x61,0x74,0x65,0x5f,0x70,0x65,0x72,0x5f,0x6d,0x69,0x6e,0x20,0x7c,0x7c,0x20,0x30,0x29,0x20,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x49,0x70,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x30,0x5d,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x5f,0x69,0x70,0x20,0x7c,0x7c,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x29,0x20,0x3a,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x72,0x6f,0x77,0x20,0x28,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x2c,0x20,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3d,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x47,0x72,0x6f,0x75,0x70,0x73,0x2e,0x68,0x61,0x73,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x2c,0x20,0x77,0x61,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3f,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x20,0x3a,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x32,0x30,0x70,0x78,0x3b,0x20,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x30,0x2e,0x32,0x73,0x3b,0x22,0x3e,0xe2,0x96,0xb6,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x49,0x50,0x3a,0x20,0x24,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x49,0x70,0x7d,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x36,0x36,0x36,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x53,0x3a,0x20,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x53,0x75,0x62,0x73,0x3a,0x20,0x24,0x7b,0x73,0x75,0x62,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x3a,0x20,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x6f,0x77,0x73,0x3a,0x20,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x61,0x74,0x65,0x3a,0x20,0x24,0x7b,0x61,0x76,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x74,0x65,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x7d,0x20,0x71,0x2f,0x6d,0x69,0x6e,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x24,0x7b,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x74,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x65,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x47,0x72,0x6f,0x75,0x70,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x20,0x72,0x6f,0x77,0x73,0x20,0x28,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x6c,0x79,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x72,0x6f,0x77,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x67,0x72,0x6f,0x75,0x70,0x27,0x2c,0x20,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x6e,0x6f,0x77,0x20,0x2d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x20,0x3d,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x4e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x20,0x26,0x26,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x5b,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x27,0x29,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x6f,0x72,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x31,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x72,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x5b,0x30,0x5d,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x38,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x5b,0x24,0x7b,0x73,0x68,0x6f,0x72,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x5b,0x24,0x7b,0x61,0x75,0x74,0x68,0x6f,0x72,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x69,0x64,0x73,0x3a,0x5b,0x24,0x7b,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x20,0x65,0x76,0x65,0x6e,0x74,0x24,0x7b,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x31,0x20,0x3f,0x20,0x27,0x73,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x73,0x69,0x6e,0x63,0x65,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x73,0x69,0x6e,0x63,0x65,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x6e,0x63,0x65,0x44,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x73,0x69,0x6e,0x63,0x65,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x73,0x69,0x6e,0x63,0x65,0x3a,0x24,0x7b,0x73,0x69,0x6e,0x63,0x65,0x44,0x61,0x74,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x75,0x6e,0x74,0x69,0x6c,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x6e,0x74,0x69,0x6c,0x44,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x75,0x6e,0x74,0x69,0x6c,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x75,0x6e,0x74,0x69,0x6c,0x3a,0x24,0x7b,0x75,0x6e,0x74,0x69,0x6c,0x44,0x61,0x74,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6c,0x69,0x6d,0x69,0x74,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6c,0x69,0x6d,0x69,0x74,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6c,0x69,0x6d,0x69,0x74,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x74,0x61,0x67,0x73,0x3a,0x5b,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x31,0x20,0x3f,0x20,0x27,0x73,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x72,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x70,0x61,0x72,0x74,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x27,0x65,0x6d,0x70,0x74,0x79,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x20,0x7c,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x70,0x72,0x65,0x66,0x69,0x78,0x22,0x3e,0xe2,0x94,0x94,0xe2,0x94,0x80,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x69,0x64,0x22,0x3e,0x24,0x7b,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x2f,0x41,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x24,0x7b,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x22,0x3e,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x74,0x6f,0x72,0x65,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x2f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x64,0x64,0x69,0x6e,0x67,0x20,0x61,0x6c,0x6c,0x20,0x72,0x6f,0x77,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x60,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x72,0x6f,0x77,0x5b,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3d,0x22,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x22,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0xe2,0x96,0xbc,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x27,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x39,0x30,0x64,0x65,0x67,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x69,0x6e,0x67,0x2f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x20,0x67,0x72,0x6f,0x75,0x70,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x47,0x72,0x6f,0x75,0x70,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x60,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x5b,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3d,0x22,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x22,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x60,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x72,0x6f,0x77,0x5b,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3d,0x22,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x22,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x29,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0xe2,0x96,0xb6,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x27,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x30,0x64,0x65,0x67,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x70,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0xe2,0x96,0xbc,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x27,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x39,0x30,0x64,0x65,0x67,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x68,0x75,0x6d,0x61,0x6e,0x2d,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3c,0x20,0x36,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x7d,0x73,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3c,0x20,0x33,0x36,0x30,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x2f,0x20,0x36,0x30,0x29,0x7d,0x6d,0x20,0x24,0x7b,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x25,0x20,0x36,0x30,0x7d,0x73,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3c,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x2f,0x20,0x33,0x36,0x30,0x30,0x29,0x7d,0x68,0x20,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x25,0x20,0x33,0x36,0x30,0x30,0x29,0x20,0x2f,0x20,0x36,0x30,0x29,0x7d,0x6d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x2f,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x7d,0x64,0x20,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x25,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x20,0x2f,0x20,0x33,0x36,0x30,0x30,0x29,0x7d,0x68,0x60,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x28,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x2d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x27,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x55,0x49,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x69,0x6c,0x65,0x20,0x73,0x69,0x7a,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x46,0x69,0x6c,0x65,0x53,0x69,0x7a,0x65,0x28,0x62,0x79,0x74,0x65,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x62,0x79,0x74,0x65,0x73,0x20,0x7c,0x7c,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x30,0x20,0x42,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x20,0x3d,0x20,0x31,0x30,0x32,0x34,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x7a,0x65,0x73,0x20,0x3d,0x20,0x5b,0x27,0x42,0x27,0x2c,0x20,0x27,0x4b,0x42,0x27,0x2c,0x20,0x27,0x4d,0x42,0x27,0x2c,0x20,0x27,0x47,0x42,0x27,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x4d,0x61,0x74,0x68,0x2e,0x6c,0x6f,0x67,0x28,0x62,0x79,0x74,0x65,0x73,0x29,0x20,0x2f,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6c,0x6f,0x67,0x28,0x6b,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,0x28,0x62,0x79,0x74,0x65,0x73,0x20,0x2f,0x20,0x4d,0x61,0x74,0x68,0x2e,0x70,0x6f,0x77,0x28,0x6b,0x2c,0x20,0x69,0x29,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x73,0x69,0x7a,0x65,0x73,0x5b,0x69,0x5d,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x28,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x61,0x74,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x41,0x53,0x43,0x49,0x49,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x62,0x61,0x72,0x3a,0x20,0x5b,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2e,0x2e,0x2e,0x2e,0x2e,0x5d,0x20,0x37,0x35,0x25,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x61,0x6b,0x65,0x41,0x73,0x63,0x69,0x69,0x42,0x61,0x72,0x28,0x70,0x63,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x6c,0x65,0x64,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x70,0x63,0x74,0x20,0x2f,0x20,0x35,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x32,0x30,0x20,0x63,0x68,0x61,0x72,0x73,0x20,0x3d,0x20,0x31,0x30,0x30,0x25,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x3d,0x20,0x32,0x30,0x20,0x2d,0x20,0x66,0x69,0x6c,0x6c,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x5b,0x27,0x20,0x2b,0x20,0x27,0x23,0x27,0x2e,0x72,0x65,0x70,0x65,0x61,0x74,0x28,0x66,0x69,0x6c,0x6c,0x65,0x64,0x29,0x20,0x2b,0x20,0x27,0x2e,0x27,0x2e,0x72,0x65,0x70,0x65,0x61,0x74,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x20,0x2b,0x20,0x27,0x5d,0x20,0x27,0x20,0x2b,0x20,0x70,0x63,0x74,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x2b,0x20,0x27,0x25,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x63,0x65,0x6c,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x63,0x65,0x6c,0x6c,0x49,0x64,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x65,0x6c,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x63,0x65,0x6c,0x6c,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x65,0x6c,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x73,0x68,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x2d,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x66,0x6c,0x61,0x73,0x68,0x2d,0x76,0x61,0x6c,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x66,0x6c,0x61,0x73,0x68,0x2d,0x76,0x61,0x6c,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x31,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x55,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x70,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x6c,0x6f,0x6e,0x67,0x65,0x72,0x20,0x73,0x74,0x61,0x72,0x74,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x70,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x6f,0x70,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x6f,0x70,0x70,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x4e,0x6f,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x73,0x68,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x72,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x61,0x73,0x68,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x4e,0x6f,0x20,0x66,0x6c,0x61,0x73,0x68,0x69,0x6e,0x67,0x20,0x77,0x68,0x65,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x67,0x65,0x74,0x2d,0x61,0x75,0x74,0x68,0x2d,0x72,0x75,0x6c,0x65,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x63,0x6c,0x65,0x61,0x72,0x2d,0x61,0x75,0x74,0x68,0x2d,0x72,0x75,0x6c,0x65,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x61,0x64,0x64,0x2d,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x61,0x64,0x64,0x2d,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x71,0x75,0x65,0x72,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x6f,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x65,0x73,0x74,0x4c,0x6f,0x67,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x65,0x61,0x72,0x2d,0x74,0x65,0x73,0x74,0x2d,0x6c,0x6f,0x67,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x2d,0x74,0x65,0x73,0x74,0x2d,0x6b,0x65,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6c,0x65,0x61,0x72,0x54,0x65,0x73,0x74,0x4c,0x6f,0x67,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x65,0x73,0x74,0x4c,0x6f,0x67,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x2d,0x6c,0x6f,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x22,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x22,0x3e,0x53,0x59,0x53,0x54,0x45,0x4d,0x3a,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x54,0x65,0x73,0x74,0x20,0x6c,0x6f,0x67,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x65,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x53,0x74,0x61,0x74,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x53,0x74,0x61,0x74,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x53,0x74,0x61,0x74,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x61,0x6c,0x77,0x61,0x79,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x6e,0x64,0x44,0x6d,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x6e,0x64,0x44,0x6d,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x65,0x6e,0x64,0x4e,0x49,0x50,0x31,0x37,0x44,0x4d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x51,0x4c,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x65,0x61,0x72,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x65,0x61,0x72,0x2d,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6c,0x65,0x61,0x72,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x20,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x64,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x69,0x67,0x68,0x74,0x20,0x6d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x64,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3f,0x20,0x27,0x4c,0x49,0x47,0x48,0x54,0x20,0x4d,0x4f,0x44,0x45,0x27,0x20,0x3a,0x20,0x27,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x61,0x76,0x65,0x64,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x64,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x44,0x61,0x72,0x6b,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6d,0x61,0x74,0x63,0x68,0x4d,0x65,0x64,0x69,0x61,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6d,0x61,0x74,0x63,0x68,0x4d,0x65,0x64,0x69,0x61,0x28,0x27,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x73,0x63,0x68,0x65,0x6d,0x65,0x3a,0x20,0x64,0x61,0x72,0x6b,0x29,0x27,0x29,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x65,0x44,0x61,0x72,0x6b,0x20,0x3d,0x20,0x73,0x61,0x76,0x65,0x64,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x20,0x7c,0x7c,0x20,0x28,0x73,0x61,0x76,0x65,0x64,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x26,0x26,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x44,0x61,0x72,0x6b,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x65,0x44,0x61,0x72,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x73,0x68,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x73,0x68,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x73,0x68,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x20,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x74,0x65,0x6d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x74,0x65,0x6d,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x27,0x29,0x20,0x3d,0x3d,0x3d,0x20,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x74,0x65,0x6d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x6c,0x6c,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x69,0x70,0x42,0x61,0x6e,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x67,0x65,0x4d,0x61,0x70,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x3a,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x27,0x3a,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3a,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x27,0x3a,0x20,0x27,0x69,0x70,0x42,0x61,0x6e,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x3a,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x6d,0x27,0x3a,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x27,0x3a,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x68,0x6f,0x77,0x73,0x20,0x62,0x6f,0x74,0x68,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x70,0x61,0x67,0x65,0x4d,0x61,0x70,0x5b,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x70,0x65,0x63,0x69,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x2d,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x61,0x74,0x61,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x70,0x65,0x63,0x69,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x2d,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x31,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x73,0x65,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x77,0x68,0x65,0x6e,0x20,0x6c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x6f,0x73,0x65,0x20,0x73,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x67,0x65,0x3a,0x20,0x24,0x7b,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x61,0x70,0x70,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x64,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x20,0x3f,0x20,0x27,0x4c,0x49,0x47,0x48,0x54,0x20,0x4d,0x4f,0x44,0x45,0x27,0x20,0x3a,0x20,0x27,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x72,0x74,0x52,0x65,0x6c,0x61,0x79,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x20,0x69,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x73,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x73,0x75,0x72,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x72,0x65,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x20,0x62,0x79,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x6c,0x6f,0x61,0x64,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x41,0x70,0x70,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x68,0x61,0x6e,0x63,0x65,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x6e,0x68,0x61,0x6e,0x63,0x65,0x50,0x6f,0x6f,0x6c,0x46,0x6f,0x72,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x73,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x65,0x61,0x64,0x65,0x72,0x20,0x74,0x69,0x74,0x6c,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x54,0x69,0x74,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x69,0x74,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x54,0x69,0x74,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x54,0x69,0x74,0x6c,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x74,0x65,0x6d,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x74,0x65,0x6d,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x65,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x6f,0x74,0x65,0x72,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x65,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x20,0x3f,0x20,0x27,0x4c,0x49,0x47,0x48,0x54,0x20,0x4d,0x4f,0x44,0x45,0x27,0x20,0x3a,0x20,0x27,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x65,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x72,0x65,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x53,0x51,0x4c,0x5f,0x51,0x55,0x45,0x52,0x59,0x5f,0x54,0x45,0x4d,0x50,0x4c,0x41,0x54,0x45,0x53,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x72,0x65,0x63,0x65,0x6e,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x69,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x20,0x31,0x2c,0x20,0x35,0x30,0x29,0x20,0x61,0x73,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x44,0x45,0x53,0x43,0x20,0x4c,0x49,0x4d,0x49,0x54,0x20,0x32,0x30,0x22,0x2c,0x0a,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x73,0x74,0x61,0x74,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x2c,0x0a,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x6c,0x6f,0x67,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x44,0x45,0x53,0x43,0x22,0x2c,0x0a,0x20,0x20,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x5f,0x76,0x69,0x65,0x77,0x22,0x2c,0x0a,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x5f,0x76,0x69,0x65,0x77,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x44,0x45,0x53,0x43,0x22,0x2c,0x0a,0x20,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x74,0x6f,0x74,0x61,0x6c,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x55,0x4e,0x49,0x4f,0x4e,0x20,0x41,0x4c,0x4c,0x20,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x32,0x34,0x68,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3e,0x3d,0x20,0x28,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x2d,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x20,0x55,0x4e,0x49,0x4f,0x4e,0x20,0x41,0x4c,0x4c,0x20,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x37,0x64,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3e,0x3d,0x20,0x28,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x2d,0x20,0x36,0x30,0x34,0x38,0x30,0x30,0x29,0x20,0x55,0x4e,0x49,0x4f,0x4e,0x20,0x41,0x4c,0x4c,0x20,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x33,0x30,0x64,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3e,0x3d,0x20,0x28,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x2d,0x20,0x32,0x35,0x39,0x32,0x30,0x30,0x30,0x29,0x22,0x2c,0x0a,0x20,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x69,0x70,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x43,0x41,0x53,0x45,0x20,0x57,0x48,0x45,0x4e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x54,0x48,0x45,0x4e,0x20,0x31,0x20,0x45,0x4e,0x44,0x29,0x20,0x61,0x73,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x2c,0x20,0x53,0x55,0x4d,0x28,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x2c,0x20,0x53,0x55,0x4d,0x28,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x53,0x55,0x4d,0x28,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x62,0x61,0x6e,0x73,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x22,0x2c,0x0a,0x20,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x6c,0x69,0x73,0x74,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x69,0x70,0x2c,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x66,0x69,0x72,0x73,0x74,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x6c,0x61,0x73,0x74,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x5f,0x61,0x74,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x6c,0x61,0x73,0x74,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x65,0x73,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x44,0x45,0x53,0x43,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x44,0x45,0x53,0x43,0x22,0x0a,0x7d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x6d,0x61,0x6e,0x61,0x67,0x65,0x6d,0x65,0x6e,0x74,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x29,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x20,0x3d,0x20,0x27,0x63,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x67,0x5f,0x73,0x71,0x6c,0x5f,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x27,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x4d,0x41,0x58,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x49,0x54,0x45,0x4d,0x53,0x20,0x3d,0x20,0x32,0x30,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3f,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x27,0x2c,0x20,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x6f,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x51,0x75,0x65,0x72,0x79,0x54,0x6f,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x71,0x75,0x65,0x72,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x71,0x75,0x65,0x72,0x79,0x20,0x7c,0x7c,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x6c,0x6f,0x61,0x64,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x20,0x69,0x66,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x71,0x20,0x3d,0x3e,0x20,0x71,0x20,0x21,0x3d,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x28,0x71,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x6d,0x69,0x74,0x20,0x73,0x69,0x7a,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x4d,0x41,0x58,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x49,0x54,0x45,0x4d,0x53,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x4d,0x41,0x58,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x49,0x54,0x45,0x4d,0x53,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x27,0x2c,0x20,0x65,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x27,0x43,0x6c,0x65,0x61,0x72,0x20,0x61,0x6c,0x6c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x49,0x74,0x65,0x6d,0x28,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x67,0x72,0x6f,0x75,0x70,0x27,0x29,0x3b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x6c,0x6f,0x61,0x64,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x28,0x6e,0x6f,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x60,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x5f,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x75,0x6e,0x63,0x61,0x74,0x65,0x20,0x6c,0x6f,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x51,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x36,0x30,0x20,0x3f,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x36,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x51,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x6c,0x65,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x69,0x74,0x27,0x73,0x20,0x61,0x20,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x53,0x51,0x4c,0x5f,0x51,0x55,0x45,0x52,0x59,0x5f,0x54,0x45,0x4d,0x50,0x4c,0x41,0x54,0x45,0x53,0x5b,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x53,0x51,0x4c,0x5f,0x51,0x55,0x45,0x52,0x59,0x5f,0x54,0x45,0x4d,0x50,0x4c,0x41,0x54,0x45,0x53,0x5b,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x5d,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x69,0x74,0x27,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x49,0x6e,0x64,0x65,0x78,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x71,0x75,0x65,0x72,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x0a,0x20,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x70,0x75,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x76,0x69,0x61,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x71,0x75,0x65,0x72,0x79,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0xe2,0x9d,0x8c,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x22,0x3e,0x45,0x78,0x65,0x63,0x75,0x74,0x69,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x2e,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x74,0x6f,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x28,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x20,0x69,0x74,0x27,0x73,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x69,0x66,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x66,0x61,0x69,0x6c,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x73,0x61,0x76,0x65,0x51,0x75,0x65,0x72,0x79,0x54,0x6f,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x71,0x75,0x65,0x72,0x79,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x61,0x73,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x20,0x5b,0x22,0x73,0x71,0x6c,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x72,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x6f,0x72,0x20,0x77,0x68,0x65,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x26,0x26,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x71,0x75,0x65,0x72,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x74,0x65,0x3a,0x20,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x61,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x20,0x77,0x68,0x65,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0xe2,0x9d,0x8c,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x41,0x72,0x72,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x41,0x72,0x72,0x61,0x79,0x29,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x41,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x61,0x75,0x74,0x68,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x3b,0x20,0x2f,0x2f,0x20,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x49,0x44,0x20,0x74,0x72,0x61,0x63,0x6b,0x69,0x6e,0x67,0x0a,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x66,0x6f,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x66,0x6f,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0xe2,0x9d,0x8c,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x7d,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x49,0x44,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x65,0x63,0x54,0x69,0x6d,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x69,0x6d,0x65,0x5f,0x6d,0x73,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x20,0x3f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x38,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x69,0x6e,0x66,0x6f,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0xe2,0x9c,0x85,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x52,0x6f,0x77,0x73,0x3a,0x20,0x24,0x7b,0x72,0x6f,0x77,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x45,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x20,0x54,0x69,0x6d,0x65,0x3a,0x20,0x24,0x7b,0x65,0x78,0x65,0x63,0x54,0x69,0x6d,0x65,0x7d,0x6d,0x73,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x2d,0x69,0x64,0x22,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x27,0x7d,0x22,0x3e,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a,0x20,0x24,0x7b,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x73,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x71,0x6c,0x2d,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x63,0x6f,0x6c,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x74,0x68,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x63,0x6f,0x6c,0x29,0x7d,0x3c,0x2f,0x74,0x68,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x62,0x6f,0x64,0x79,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x63,0x65,0x6c,0x6c,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x65,0x6c,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x65,0x6c,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x3f,0x20,0x27,0x3c,0x65,0x6d,0x3e,0x4e,0x55,0x4c,0x4c,0x3c,0x2f,0x65,0x6d,0x3e,0x27,0x20,0x3a,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x63,0x65,0x6c,0x6c,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x63,0x65,0x6c,0x6c,0x56,0x61,0x6c,0x75,0x65,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x6f,0x2d,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x22,0x3e,0x4e,0x6f,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x3c,0x2f,0x70,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x28,0x63,0x61,0x6c,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x48,0x41,0x4e,0x44,0x4c,0x49,0x4e,0x47,0x20,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x52,0x6f,0x75,0x74,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x71,0x75,0x65,0x72,0x79,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x71,0x75,0x65,0x72,0x79,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x70,0x42,0x61,0x6e,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x0a,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x6e,0x20,0x75,0x70,0x20,0x61,0x6e,0x79,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x20,0x26,0x26,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x68,0x61,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x20,0x48,0x54,0x4d,0x4c,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x74,0x65,0x78,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x64,0x69,0x76,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x65,0x78,0x74,0x3b,0x0a,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x6c,0x6f,0x61,0x64,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x52,0x65,0x6c,0x61,0x79,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x20,0x66,0x69,0x72,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x3d,0x3e,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x20,0x74,0x6f,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x5b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x5b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x5d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x6f,0x76,0x65,0x20,0x74,0x6f,0x20,0x6e,0x65,0x78,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x2b,0x2b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x77,0x65,0x27,0x76,0x65,0x20,0x67,0x6f,0x6e,0x65,0x20,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2c,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6c,0x6c,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x77,0x61,0x69,0x74,0x20,0x34,0x30,0x30,0x30,0x6d,0x73,0x20,0x74,0x68,0x65,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x20,0x3e,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6c,0x6c,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x75,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x3d,0x3e,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x34,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x20,0x74,0x6f,0x20,0x6e,0x65,0x78,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x32,0x30,0x30,0x6d,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x2c,0x20,0x31,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x43,0x4f,0x4d,0x50,0x4f,0x4e,0x45,0x4e,0x54,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x28,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x72,0x69,0x2d,0x73,0x74,0x61,0x74,0x65,0x20,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x73,0x0a,0x63,0x6c,0x61,0x73,0x73,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x7d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x69,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x62,0x79,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x3a,0x20,0x27,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x27,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x2e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x2e,0x73,0x65,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x2c,0x20,0x74,0x68,0x69,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x52,0x45,0x4e,0x44,0x45,0x52,0x49,0x4e,0x47,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x62,0x75,0x74,0x74,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d,0x62,0x74,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x6b,0x65,0x79,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x73,0x74,0x61,0x74,0x65,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x74,0x69,0x74,0x6c,0x65,0x27,0x2c,0x20,0x60,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x24,0x7b,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x63,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x61,0x70,0x70,0x65,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x20,0x61,0x66,0x74,0x65,0x72,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x44,0x4f,0x4d,0x3a,0x27,0x2c,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x63,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x63,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3a,0x20,0x27,0x49,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x3a,0x20,0x27,0x30,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x3a,0x20,0x27,0xe2,0x9f,0xb3,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x69,0x63,0x6f,0x6e,0x73,0x5b,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x5d,0x20,0x7c,0x7c,0x20,0x27,0x3f,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x5b,0x27,0x74,0x72,0x75,0x65,0x27,0x2c,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x2c,0x20,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x73,0x74,0x61,0x74,0x65,0x27,0x2c,0x20,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x63,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x43,0x4c,0x49,0x43,0x4b,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x2d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x74,0x72,0x75,0x65,0x20,0x61,0x6e,0x64,0x20,0x66,0x61,0x6c,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x20,0x3f,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x20,0x3a,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x74,0x6f,0x20,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x68,0x69,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x74,0x68,0x69,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x3a,0x27,0x2c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x73,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x48,0x41,0x4e,0x44,0x4c,0x45,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x27,0x2c,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x63,0x74,0x75,0x61,0x6c,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x27,0x2c,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x20,0x2d,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x27,0x2c,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x2d,0x20,0x72,0x65,0x76,0x65,0x72,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x2d,0x20,0x72,0x65,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x61,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x65,0x64,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x2e,0x67,0x65,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x73,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x4d,0x4f,0x4e,0x49,0x54,0x4f,0x52,0x49,0x4e,0x47,0x20,0x49,0x53,0x20,0x4e,0x4f,0x57,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x2d,0x42,0x41,0x53,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x20,0x2d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x3d,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3b,0x0a,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x48,0x41,0x4e,0x44,0x4c,0x45,0x52,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x6c,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x7d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x46,0x72,0x6f,0x6d,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x4d,0x4f,0x4e,0x49,0x54,0x4f,0x52,0x49,0x4e,0x47,0x20,0x49,0x53,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x2d,0x42,0x41,0x53,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x20,0x2d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x2d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x61,0x64,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x45,0x56,0x45,0x4e,0x54,0x53,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x54,0x6f,0x4c,0x69,0x76,0x65,0x46,0x65,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x49,0x64,0x73,0x2e,0x68,0x61,0x73,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x49,0x64,0x73,0x2e,0x61,0x64,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x69,0x76,0x65,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x76,0x69,0x65,0x77,0x20,0x3d,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x32,0x30,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x32,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x7c,0x7c,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x54,0x69,0x6d,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3f,0x3f,0x20,0x27,0x2d,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x7d,0x22,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x29,0x7d,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x7d,0x22,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x29,0x7d,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x70,0x72,0x65,0x76,0x69,0x65,0x77,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x52,0x6f,0x77,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x74,0x72,0x20,0x74,0x64,0x5b,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x5d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x52,0x6f,0x77,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x73,0x65,0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x72,0x6f,0x77,0x2c,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x28,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x31,0x30,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x61,0x73,0x74,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x6c,0x61,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x61,0x73,0x74,0x20,0x26,0x26,0x20,0x6c,0x61,0x73,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x74,0x64,0x3a,0x6e,0x74,0x68,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x34,0x29,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x64,0x54,0x65,0x78,0x74,0x20,0x3d,0x20,0x6c,0x61,0x73,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x74,0x64,0x3a,0x6e,0x74,0x68,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x34,0x29,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x64,0x54,0x65,0x78,0x74,0x2e,0x65,0x6e,0x64,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6b,0x65,0x65,0x70,0x20,0x73,0x65,0x74,0x20,0x62,0x6f,0x75,0x6e,0x64,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x72,0x75,0x6e,0x63,0x61,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x69,0x64,0x20,0x72,0x65,0x6d,0x61,0x69,0x6e,0x73,0x20,0x69,0x6e,0x20,0x53,0x65,0x74,0x20,0x75,0x6e,0x74,0x69,0x6c,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x28,0x61,0x63,0x63,0x65,0x70,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x55,0x49,0x20,0x73,0x63,0x6f,0x70,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x6c,0x61,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x48,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x30,0x35,0x30,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x30,0x30,0x32,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x28,0x55,0x73,0x65,0x72,0x20,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x77,0x69,0x74,0x68,0x3a,0x27,0x2c,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x62,0x6f,0x75,0x74,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x61,0x6e,0x6e,0x65,0x72,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x69,0x70,0x30,0x35,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x6d,0x65,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x6e,0x61,0x6d,0x65,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x62,0x6f,0x75,0x74,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x61,0x62,0x6f,0x75,0x74,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x61,0x62,0x6f,0x75,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x62,0x61,0x6e,0x6e,0x65,0x72,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x62,0x61,0x6e,0x6e,0x65,0x72,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x69,0x70,0x30,0x35,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x6e,0x69,0x70,0x30,0x35,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x6e,0x69,0x70,0x30,0x35,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x66,0x6f,0x72,0x6d,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x28,0x44,0x4d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x61,0x67,0x73,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x22,0x72,0x65,0x6c,0x61,0x79,0x22,0x20,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x73,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x27,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x5c,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x66,0x6f,0x72,0x6d,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x66,0x6f,0x72,0x6d,0x20,0x28,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x66,0x6f,0x72,0x6d,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x61,0x67,0x73,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x22,0x72,0x22,0x20,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x27,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x32,0x5d,0x20,0x7c,0x7c,0x20,0x27,0x72,0x65,0x61,0x64,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x69,0x66,0x20,0x6e,0x6f,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x64,0x20,0x3d,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x72,0x65,0x61,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x3d,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x77,0x72,0x69,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x75,0x72,0x6c,0x2c,0x20,0x72,0x65,0x61,0x64,0x2c,0x20,0x77,0x72,0x69,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x66,0x6f,0x72,0x6d,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x75,0x62,0x6d,0x69,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x20,0x66,0x6f,0x72,0x6d,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x62,0x6f,0x75,0x74,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x6e,0x6e,0x65,0x72,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x69,0x70,0x30,0x35,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x65,0x79,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x5b,0x6b,0x65,0x79,0x5d,0x29,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x5b,0x6b,0x65,0x79,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x4e,0x61,0x6d,0x65,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x30,0x2c,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x75,0x62,0x6d,0x69,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x72,0x73,0x65,0x20,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x54,0x65,0x78,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x54,0x65,0x78,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x5c,0x6e,0x27,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x75,0x72,0x6c,0x20,0x3d,0x3e,0x20,0x75,0x72,0x6c,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x75,0x72,0x6c,0x20,0x3d,0x3e,0x20,0x75,0x72,0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x75,0x72,0x6c,0x20,0x3d,0x3e,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x41,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x6f,0x6e,0x65,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x7b,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x75,0x62,0x6d,0x69,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x65,0x6e,0x74,0x72,0x79,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x75,0x72,0x6c,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x64,0x20,0x3d,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x72,0x65,0x61,0x64,0x27,0x29,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x3d,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x77,0x72,0x69,0x74,0x65,0x27,0x29,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x72,0x6c,0x20,0x26,0x26,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x3a,0x20,0x72,0x65,0x61,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x72,0x69,0x74,0x65,0x3a,0x20,0x77,0x72,0x69,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x41,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x6f,0x6e,0x65,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x31,0x30,0x30,0x30,0x32,0x2c,0x20,0x7b,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x7d,0x2e,0x2e,0x2e,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x22,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x44,0x61,0x74,0x61,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x7d,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x65,0x77,0x20,0x55,0x52,0x4c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x20,0x7c,0x7c,0x20,0x75,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x49,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x49,0x64,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x65,0x6d,0x6f,0x6a,0x69,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x6e,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x36,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x36,0x34,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x33,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x35,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x36,0x38,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x36,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x31,0x45,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x31,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x32,0x36,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x32,0x36,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x32,0x37,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x32,0x37,0x42,0x46,0x7d,0x5d,0x2f,0x67,0x75,0x2c,0x20,0x27,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x63,0x6c,0x65,0x61,0x6e,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x73,0x75,0x72,0x65,0x20,0x69,0x74,0x27,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x79,0x70,0x65,0x2d,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x20,0x73,0x74,0x79,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x74,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x2d,0x68,0x69,0x64,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x35,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x75,0x72,0x6c,0x20,0x3d,0x20,0x27,0x27,0x2c,0x20,0x72,0x65,0x61,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x66,0x6c,0x65,0x78,0x3b,0x20,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x67,0x61,0x70,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x75,0x72,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6c,0x65,0x78,0x3a,0x20,0x31,0x3b,0x20,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x33,0x30,0x30,0x70,0x78,0x3b,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x61,0x75,0x74,0x6f,0x3b,0x20,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x74,0x65,0x78,0x74,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x66,0x6c,0x65,0x78,0x3b,0x20,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x67,0x61,0x70,0x3a,0x20,0x35,0x70,0x78,0x3b,0x20,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x72,0x65,0x61,0x64,0x22,0x20,0x24,0x7b,0x72,0x65,0x61,0x64,0x20,0x3f,0x20,0x27,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x65,0x61,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x66,0x6c,0x65,0x78,0x3b,0x20,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x67,0x61,0x70,0x3a,0x20,0x35,0x70,0x78,0x3b,0x20,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x77,0x72,0x69,0x74,0x65,0x22,0x20,0x24,0x7b,0x77,0x72,0x69,0x74,0x65,0x20,0x3f,0x20,0x27,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x72,0x69,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x74,0x68,0x69,0x73,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x34,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x52,0x65,0x6d,0x6f,0x76,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x3d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x6e,0x74,0x72,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x44,0x4f,0x4d,0x20,0x43,0x4f,0x4e,0x54,0x45,0x4e,0x54,0x20,0x4c,0x4f,0x41,0x44,0x45,0x44,0x20,0x2d,0x20,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x49,0x5a,0x49,0x4e,0x47,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x45,0x54,0x54,0x49,0x4d,0x45,0x4f,0x55,0x54,0x20,0x43,0x41,0x4c,0x4c,0x42,0x41,0x43,0x4b,0x20,0x2d,0x20,0x43,0x41,0x4c,0x4c,0x49,0x4e,0x47,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x66,0x75,0x6c,0x6c,0x79,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x28,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x75,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6f,0x6e,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x62,0x79,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x66,0x6f,0x72,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6f,0x6e,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x65,0x64,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x66,0x6f,0x72,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x49,0x50,0x20,0x42,0x41,0x4e,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x6c,0x65,0x74,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x20,0x27,0x61,0x6c,0x6c,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x27,0x61,0x6c,0x6c,0x27,0x2c,0x20,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x0a,0x6c,0x65,0x74,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x20,0x2f,0x2f,0x20,0x43,0x61,0x63,0x68,0x65,0x20,0x6c,0x61,0x73,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2d,0x73,0x69,0x64,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x69,0x70,0x2c,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x2c,0x20,0x68,0x61,0x73,0x5f,0x61,0x75,0x74,0x68,0x65,0x64,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x2c,0x20,0x6c,0x61,0x73,0x74,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x5f,0x61,0x74,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x65,0x73,0x2c,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x4d,0x41,0x58,0x28,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x29,0x20,0x44,0x45,0x53,0x43,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x44,0x45,0x53,0x43,0x22,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x5f,0x6c,0x6f,0x61,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x61,0x6e,0x64,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x49,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x71,0x6c,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x49,0x64,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x53,0x51,0x4c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x70,0x42,0x61,0x6e,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x72,0x6f,0x77,0x73,0x2b,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x6f,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x6f,0x66,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x6f,0x77,0x73,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x6f,0x77,0x73,0x2e,0x6d,0x61,0x70,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6c,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x20,0x6f,0x62,0x6a,0x5b,0x63,0x6f,0x6c,0x5d,0x20,0x3d,0x20,0x72,0x6f,0x77,0x5b,0x69,0x5d,0x3b,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x62,0x6a,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x62,0x6f,0x64,0x79,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x37,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x6f,0x74,0x61,0x6c,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x69,0x73,0x73,0x75,0x65,0x64,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x77,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x49,0x50,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x42,0x61,0x6e,0x73,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x69,0x73,0x20,0x74,0x68,0x69,0x73,0x20,0x72,0x6f,0x77,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x61,0x75,0x74,0x68,0x20,0x6f,0x72,0x20,0x69,0x64,0x6c,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x29,0x20,0x7c,0x7c,0x20,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x52,0x6f,0x77,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x21,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x28,0x72,0x6f,0x77,0x29,0x20,0x26,0x26,0x20,0x28,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x20,0x7c,0x7c,0x20,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x69,0x73,0x52,0x6f,0x77,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x28,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x20,0x62,0x6f,0x74,0x68,0x20,0x61,0x75,0x74,0x68,0x20,0x61,0x6e,0x64,0x20,0x69,0x64,0x6c,0x65,0x20,0x62,0x61,0x6e,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x74,0x61,0x6c,0x42,0x61,0x6e,0x73,0x20,0x2b,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x30,0x29,0x20,0x2b,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x28,0x72,0x6f,0x77,0x29,0x29,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x42,0x61,0x6e,0x6e,0x65,0x64,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x6f,0x74,0x61,0x6c,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x49,0x50,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x42,0x61,0x6e,0x6e,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x69,0x73,0x73,0x75,0x65,0x64,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x42,0x61,0x6e,0x73,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x63,0x68,0x65,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2d,0x73,0x69,0x64,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x20,0x3d,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x49,0x50,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6e,0x64,0x65,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x62,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x49,0x64,0x6c,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x41,0x75,0x74,0x68,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x3d,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x49,0x50,0x73,0x2e,0x68,0x61,0x73,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xe2,0xad,0x90,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x41,0x75,0x74,0x68,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x69,0x73,0x49,0x64,0x6c,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x94,0xb4,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x61,0x75,0x74,0x68,0x2b,0x69,0x64,0x6c,0x65,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x41,0x75,0x74,0x68,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x94,0xb4,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x61,0x75,0x74,0x68,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x49,0x64,0x6c,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x94,0xb4,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x69,0x64,0x6c,0x65,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x20,0x7c,0x7c,0x20,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x9f,0xa1,0x20,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x9f,0xa2,0x20,0x43,0x6c,0x65,0x61,0x6e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,0x74,0x65,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x74,0x77,0x6f,0x20,0x62,0x61,0x6e,0x20,0x65,0x78,0x70,0x69,0x72,0x79,0x20,0x74,0x69,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x69,0x76,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x7c,0x7c,0x20,0x30,0x2c,0x20,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x7c,0x7c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x69,0x76,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x66,0x66,0x65,0x63,0x74,0x69,0x76,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x65,0x64,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x68,0x61,0x73,0x5f,0x61,0x75,0x74,0x68,0x65,0x64,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x3f,0x20,0x27,0xe2,0x9c,0x85,0x20,0x59,0x65,0x73,0x27,0x20,0x3a,0x20,0x27,0xe2,0x9d,0x8c,0x20,0x4e,0x6f,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x61,0x75,0x74,0x68,0x65,0x64,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x7b,0x69,0x73,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x21,0x69,0x73,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x3f,0x20,0x60,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x75,0x6e,0x62,0x61,0x6e,0x49,0x70,0x28,0x27,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x7d,0x27,0x29,0x22,0x3e,0x55,0x6e,0x62,0x61,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x60,0x20,0x3a,0x20,0x27,0x27,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x49,0x70,0x42,0x61,0x6e,0x28,0x27,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x7d,0x27,0x29,0x22,0x3e,0x44,0x65,0x6c,0x65,0x74,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x42,0x61,0x6e,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x61,0x6e,0x49,0x70,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x62,0x61,0x6e,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x62,0x61,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x20,0x3d,0x20,0x69,0x70,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x49,0x50,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x28,0x62,0x61,0x73,0x69,0x63,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x29,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x52,0x65,0x67,0x65,0x78,0x20,0x3d,0x20,0x2f,0x5e,0x28,0x5c,0x64,0x7b,0x31,0x2c,0x33,0x7d,0x5c,0x2e,0x29,0x7b,0x33,0x7d,0x5c,0x64,0x7b,0x31,0x2c,0x33,0x7d,0x24,0x2f,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x70,0x52,0x65,0x67,0x65,0x78,0x2e,0x74,0x65,0x73,0x74,0x28,0x69,0x70,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2b,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x60,0x49,0x4e,0x53,0x45,0x52,0x54,0x20,0x4f,0x52,0x20,0x52,0x45,0x50,0x4c,0x41,0x43,0x45,0x20,0x49,0x4e,0x54,0x4f,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x28,0x69,0x70,0x2c,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x2c,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x29,0x20,0x56,0x41,0x4c,0x55,0x45,0x53,0x20,0x28,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x2c,0x20,0x24,0x7b,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x7d,0x2c,0x20,0x43,0x4f,0x41,0x4c,0x45,0x53,0x43,0x45,0x28,0x28,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x29,0x2c,0x20,0x30,0x29,0x20,0x2b,0x20,0x31,0x2c,0x20,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x2c,0x20,0x43,0x4f,0x41,0x4c,0x45,0x53,0x43,0x45,0x28,0x28,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x29,0x2c,0x20,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x29,0x29,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x5f,0x61,0x64,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x49,0x50,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x6e,0x62,0x61,0x6e,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x6e,0x62,0x61,0x6e,0x49,0x70,0x28,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x60,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x6e,0x62,0x61,0x6e,0x20,0x24,0x7b,0x69,0x70,0x7d,0x3f,0x60,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x60,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x53,0x45,0x54,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x30,0x2c,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x5f,0x75,0x6e,0x62,0x61,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x20,0x72,0x65,0x63,0x6f,0x72,0x64,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x49,0x70,0x42,0x61,0x6e,0x28,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x60,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x62,0x61,0x6e,0x20,0x72,0x65,0x63,0x6f,0x72,0x64,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x69,0x70,0x7d,0x3f,0x60,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x60,0x44,0x45,0x4c,0x45,0x54,0x45,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x5f,0x64,0x65,0x6c,0x65,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x2d,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x61,0x63,0x68,0x65,0x20,0x28,0x6e,0x6f,0x20,0x72,0x65,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x61,0x6c,0x6c,0x27,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x2c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x61,0x6c,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x2c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x2c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x2d,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x61,0x63,0x68,0x65,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x66,0x65,0x74,0x63,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x70,0x42,0x61,0x6e,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x7b,0x20,0x72,0x6f,0x77,0x73,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x73,0x63,0x61,0x70,0x65,0x20,0x48,0x54,0x4d,0x4c,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x58,0x53,0x53,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x74,0x65,0x78,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x78,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x69,0x76,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x65,0x78,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x49,0x50,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x54,0x6f,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x70,0x29,0x20,0x7b,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x45,0x6e,0x74,0x65,0x72,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x3d,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x73,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x69,0x70,0x29,0x29,0x20,0x7b,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x6f,0x72,0x61,0x6e,0x67,0x65,0x22,0x3e,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x69,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x70,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x27,0x2c,0x20,0x27,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x85,0x20,0x24,0x7b,0x69,0x70,0x7d,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x63,0x61,0x63,0x68,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x69,0x76,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x73,0x20,0x3d,0x20,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x65,0x6d,0x3e,0x4e,0x6f,0x20,0x49,0x50,0x73,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x3c,0x2f,0x65,0x6d,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x69,0x70,0x73,0x2e,0x6d,0x61,0x70,0x28,0x69,0x70,0x20,0x3d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x29,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x77,0x68,0x69,0x74,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x70,0x78,0x20,0x36,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x33,0x70,0x78,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x32,0x70,0x78,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x69,0x70,0x29,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x46,0x72,0x6f,0x6d,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x27,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x69,0x70,0x29,0x7d,0x27,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x77,0x68,0x69,0x74,0x65,0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x34,0x70,0x78,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x31,0x70,0x78,0x22,0x3e,0xe2,0x9c,0x95,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x49,0x50,0x20,0x66,0x72,0x6f,0x6d,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x46,0x72,0x6f,0x6d,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x3d,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x73,0x20,0x21,0x3d,0x3d,0x20,0x69,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x70,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x27,0x2c,0x20,0x27,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x49,0x50,0x20,0x42,0x61,0x6e,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x64,0x42,0x61,0x6e,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x41,0x6c,0x6c,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x61,0x6c,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x42,0x61,0x6e,0x6e,0x65,0x64,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x64,0x42,0x61,0x6e,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x42,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x62,0x61,0x6e,0x49,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x41,0x6c,0x6c,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x41,0x6c,0x6c,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x27,0x61,0x6c,0x6c,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x42,0x61,0x6e,0x6e,0x65,0x64,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x42,0x61,0x6e,0x6e,0x65,0x64,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x61,0x64,0x64,0x54,0x6f,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x6c,0x6f,0x61,0x64,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x50,0x20,0x42,0x61,0x6e,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x69,0x6e,0x69,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x50,0x41,0x47,0x45,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x20,0x6f,0x66,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6b,0x65,0x79,0x73,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x69,0x64,0x73,0x20,0x61,0x6e,0x64,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x6f,0x6f,0x74,0x5f,0x6e,0x70,0x75,0x62,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x6f,0x6f,0x74,0x2d,0x6e,0x70,0x75,0x62,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6c,0x69,0x76,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x70,0x61,0x67,0x65,0x5f,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x70,0x61,0x67,0x65,0x2d,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x74,0x69,0x63,0x6b,0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x5f,0x6d,0x73,0x27,0x2c,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x74,0x69,0x63,0x6b,0x2d,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x27,0x2c,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x62,0x61,0x74,0x63,0x68,0x2d,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x70,0x6f,0x6c,0x6c,0x5f,0x6d,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x27,0x2c,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x69,0x64,0x6c,0x65,0x5f,0x70,0x6f,0x6c,0x6c,0x5f,0x6d,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x69,0x64,0x6c,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x62,0x69,0x6e,0x61,0x72,0x79,0x5f,0x70,0x61,0x74,0x68,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x69,0x6e,0x61,0x72,0x79,0x2d,0x70,0x61,0x74,0x68,0x27,0x2c,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x70,0x67,0x5f,0x63,0x6f,0x6e,0x6e,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x70,0x67,0x2d,0x63,0x6f,0x6e,0x6e,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x20,0x7d,0x0a,0x5d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x28,0x77,0x68,0x69,0x63,0x68,0x20,0x73,0x74,0x6f,0x72,0x65,0x73,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x61,0x67,0x73,0x20,0x61,0x73,0x20,0x5b,0x6b,0x65,0x79,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x5d,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x56,0x61,0x6c,0x75,0x65,0x28,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x7c,0x7c,0x20,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x61,0x67,0x73,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x67,0x20,0x6f,0x66,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x61,0x67,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x61,0x67,0x29,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x32,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x73,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x61,0x6e,0x64,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2f,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x66,0x72,0x61,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x73,0x65,0x6e,0x64,0x73,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x62,0x75,0x74,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x20,0x28,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x61,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x6f,0x75,0x73,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x69,0x61,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x2d,0x3e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x2e,0x20,0x57,0x65,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x63,0x61,0x6e,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x76,0x43,0x6f,0x6e,0x66,0x69,0x67,0x49,0x64,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3f,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x6c,0x6c,0x20,0x66,0x6f,0x72,0x20,0x75,0x70,0x20,0x74,0x6f,0x20,0x35,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x20,0x6e,0x65,0x77,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x28,0x6f,0x72,0x20,0x61,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x20,0x69,0x64,0x29,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x77,0x61,0x69,0x74,0x65,0x64,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x28,0x77,0x61,0x69,0x74,0x65,0x64,0x20,0x3c,0x20,0x35,0x30,0x30,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x49,0x64,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3f,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x49,0x64,0x20,0x21,0x3d,0x3d,0x20,0x70,0x72,0x65,0x76,0x43,0x6f,0x6e,0x66,0x69,0x67,0x49,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x32,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x61,0x69,0x74,0x65,0x64,0x20,0x2b,0x3d,0x20,0x32,0x30,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x66,0x69,0x65,0x6c,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x67,0x65,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x56,0x61,0x6c,0x75,0x65,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x7c,0x7c,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x73,0x74,0x6f,0x72,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x3b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x5c,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2f,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x76,0x69,0x61,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x20,0x6e,0x65,0x75,0x74,0x72,0x61,0x6c,0x20,0x22,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x29,0x20,0x77,0x69,0x6c,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x20,0x69,0x74,0x20,0x77,0x68,0x65,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x73,0x20,0x28,0x65,0x2e,0x67,0x2e,0x20,0x61,0x64,0x6d,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x73,0x75,0x72,0x66,0x61,0x63,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x70,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x70,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x70,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x70,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x65,0x73,0x74,0x2d,0x65,0x66,0x66,0x6f,0x72,0x74,0x3a,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x20,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x79,0x73,0x74,0x65,0x6d,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x29,0x20,0x2d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x29,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x2c,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x4d,0x73,0x67,0x20,0x3d,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x74,0x65,0x63,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x61,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x65,0x76,0x65,0x72,0x20,0x72,0x75,0x6e,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x41,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x2f,0x75,0x6e,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x65,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7c,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x7c,0x6e,0x6f,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x4e,0x6f,0x74,0x65,0x20,0x3d,0x20,0x69,0x73,0x41,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x27,0x20,0x3c,0x65,0x6d,0x3e,0x28,0x59,0x6f,0x75,0x72,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x20,0x4c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x29,0x3c,0x2f,0x65,0x6d,0x3e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x4d,0x73,0x67,0x7d,0x24,0x7b,0x61,0x75,0x74,0x68,0x4e,0x6f,0x74,0x65,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x4d,0x73,0x67,0x7d,0x24,0x7b,0x61,0x75,0x74,0x68,0x4e,0x6f,0x74,0x65,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x63,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x20,0x66,0x6f,0x72,0x6d,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x79,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x66,0x69,0x65,0x6c,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x73,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x73,0x74,0x6f,0x72,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x5c,0x6e,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x74,0x6f,0x20,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x27,0x29,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x6b,0x69,0x70,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x65,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x28,0x75,0x70,0x64,0x61,0x74,0x65,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x69,0x6e,0x5f,0x74,0x61,0x62,0x6c,0x65,0x29,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x73,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x73,0x20,0x74,0x6f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x63,0x63,0x69,0x64,0x65,0x6e,0x74,0x61,0x6c,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x73,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x73,0x20,0x61,0x74,0x6f,0x6d,0x69,0x63,0x20,0xe2,0x80,0x94,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6f,0x6e,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x72,0x6f,0x6c,0x6c,0x73,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x74,0x69,0x72,0x65,0x20,0x62,0x61,0x74,0x63,0x68,0x2e,0x20,0x46,0x69,0x65,0x6c,0x64,0x73,0x20,0x6c,0x69,0x6b,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x6f,0x6f,0x74,0x5f,0x6e,0x70,0x75,0x62,0x73,0x20,0x61,0x6e,0x64,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x61,0x72,0x65,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x6e,0x64,0x20,0x6d,0x61,0x79,0x20,0x6c,0x65,0x67,0x69,0x74,0x69,0x6d,0x61,0x74,0x65,0x6c,0x79,0x20,0x62,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x75,0x6e,0x74,0x69,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x27,0x20,0x26,0x26,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x20,0x7c,0x7c,0x20,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x66,0x69,0x65,0x6c,0x64,0x2e,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x29,0x22,0x3e,0x41,0x70,0x70,0x6c,0x79,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x61,0x6c,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6b,0x65,0x79,0x73,0x20,0x69,0x6e,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x63,0x72,0x65,0x6d,0x65,0x6e,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x70,0x69,0x63,0x6b,0x73,0x20,0x75,0x70,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x20,0x3d,0x20,0x67,0x65,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x56,0x61,0x6c,0x75,0x65,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x65,0x78,0x74,0x47,0x65,0x6e,0x20,0x3d,0x20,0x31,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x26,0x26,0x20,0x21,0x69,0x73,0x4e,0x61,0x4e,0x28,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x2c,0x20,0x31,0x30,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x65,0x78,0x74,0x47,0x65,0x6e,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x2c,0x20,0x31,0x30,0x29,0x20,0x2b,0x20,0x31,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6e,0x65,0x78,0x74,0x47,0x65,0x6e,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x6c,0x65,0x63,0x74,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x7d,0x29,0x2c,0x20,0x31,0x35,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x76,0x69,0x61,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x65,0x64,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x27,0x52,0x65,0x73,0x65,0x74,0x20,0x61,0x6c,0x6c,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3f,0x20,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x61,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x29,0x22,0x3e,0x52,0x65,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x2c,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x73,0x65,0x74,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x2b,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x73,0x67,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6d,0x73,0x67,0x29,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6d,0x73,0x67,0x29,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x70,0x69,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x61,0x6e,0x64,0x69,0x64,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x73,0x2f,0x70,0x61,0x74,0x68,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x69,0x63,0x6b,0x28,0x2e,0x2e,0x2e,0x76,0x61,0x6c,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x20,0x6f,0x66,0x20,0x76,0x61,0x6c,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x76,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x28,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x3d,0x20,0x64,0x61,0x74,0x61,0x2e,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x7c,0x7c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x3a,0x20,0x66,0x61,0x6c,0x6c,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x20,0x66,0x6c,0x61,0x74,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x69,0x66,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x61,0x62,0x73,0x65,0x6e,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x27,0x3c,0x75,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x22,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x52,0x65,0x6c,0x61,0x79,0x73,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x73,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x43,0x61,0x63,0x68,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x75,0x6c,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6f,0x77,0x6e,0x65,0x64,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x70,0x6f,0x6c,0x6c,0x65,0x72,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x3d,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x20,0x7c,0x7c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x3a,0x20,0x64,0x65,0x72,0x69,0x76,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x66,0x6c,0x61,0x74,0x20,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x20,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x2a,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x69,0x66,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x61,0x62,0x73,0x65,0x6e,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x75,0x65,0x44,0x65,0x70,0x74,0x68,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x71,0x75,0x65,0x75,0x65,0x5f,0x64,0x65,0x70,0x74,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x28,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x29,0x20,0x2b,0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x61,0x73,0x74,0x50,0x6f,0x6c,0x6c,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x70,0x6f,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x61,0x73,0x74,0x42,0x61,0x74,0x63,0x68,0x53,0x69,0x7a,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x6c,0x61,0x73,0x74,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x69,0x76,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x41,0x67,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x61,0x67,0x65,0x5f,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x61,0x67,0x65,0x5f,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x27,0x3c,0x75,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x22,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x69,0x6e,0x62,0x6f,0x78,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x69,0x6e,0x62,0x6f,0x78,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x71,0x75,0x65,0x75,0x65,0x44,0x65,0x70,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x51,0x75,0x65,0x75,0x65,0x20,0x44,0x65,0x70,0x74,0x68,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x71,0x75,0x65,0x75,0x65,0x44,0x65,0x70,0x74,0x68,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x61,0x73,0x74,0x50,0x6f,0x6c,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x4c,0x61,0x73,0x74,0x20,0x50,0x6f,0x6c,0x6c,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6c,0x61,0x73,0x74,0x50,0x6f,0x6c,0x6c,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x61,0x73,0x74,0x42,0x61,0x74,0x63,0x68,0x53,0x69,0x7a,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x4c,0x61,0x73,0x74,0x20,0x42,0x61,0x74,0x63,0x68,0x20,0x53,0x69,0x7a,0x65,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6c,0x61,0x73,0x74,0x42,0x61,0x74,0x63,0x68,0x53,0x69,0x7a,0x65,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x69,0x76,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x28,0x4c,0x69,0x76,0x65,0x29,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x69,0x76,0x65,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x28,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6f,0x6c,0x64,0x65,0x73,0x74,0x41,0x67,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x4f,0x6c,0x64,0x65,0x73,0x74,0x20,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x41,0x67,0x65,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6f,0x6c,0x64,0x65,0x73,0x74,0x41,0x67,0x65,0x29,0x29,0x7d,0x73,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x75,0x6c,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x62,0x6c,0x75,0x65,0x22,0x3e,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x72,0x74,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x22,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0xe2,0x9c,0x97,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x70,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x6f,0x70,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x27,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x62,0x6c,0x75,0x65,0x22,0x3e,0x53,0x74,0x6f,0x70,0x70,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x6f,0x70,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x22,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x6f,0x70,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x6f,0x70,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0xe2,0x9c,0x97,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x70,0x70,0x6c,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x70,0x70,0x6c,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x65,0x73,0x65,0x74,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x6f,0x70,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x6f,0x70,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x70,0x70,0x6c,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x70,0x70,0x6c,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x61,0x70,0x70,0x6c,0x79,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x65,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x72,0x74,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x74,0x61,0x72,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x6f,0x70,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x6f,0x70,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x74,0x6f,0x70,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x69,0x6e,0x69,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x29,0x3b,}; -static const size_t index_js_size = 280667; +0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x73,0x0a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x63,0x61,0x75,0x67,0x68,0x74,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x69,0x6e,0x65,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x6c,0x69,0x6e,0x65,0x6e,0x6f,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x75,0x6e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x55,0x6e,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x70,0x72,0x6f,0x6d,0x69,0x73,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x2f,0x2f,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x0a,0x6c,0x65,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x67,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x73,0x69,0x6d,0x75,0x6c,0x74,0x61,0x6e,0x65,0x6f,0x75,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x67,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x2d,0x65,0x6e,0x74,0x72,0x79,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x75,0x70,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x28,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x73,0x20,0x44,0x4f,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x20,0x3d,0x20,0x7b,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x27,0x27,0x20,0x7d,0x3b,0x0a,0x2f,0x2f,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x6c,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x53,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3d,0x20,0x31,0x30,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x6c,0x65,0x74,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x51,0x4c,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x28,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x6c,0x65,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x30,0x3b,0x20,0x2f,0x2f,0x20,0x54,0x72,0x61,0x63,0x6b,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x66,0x6f,0x72,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x49,0x64,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x20,0x6c,0x69,0x76,0x65,0x20,0x66,0x65,0x65,0x64,0x20,0x72,0x6f,0x77,0x73,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x6d,0x70,0x6f,0x72,0x61,0x72,0x79,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x65,0x70,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x20,0x69,0x6e,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x0a,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x5f,0x53,0x49,0x4d,0x50,0x4c,0x45,0x5f,0x50,0x4f,0x4f,0x4c,0x5f,0x44,0x45,0x42,0x55,0x47,0x5f,0x5f,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x2d,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x6d,0x61,0x69,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x4f,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x61,0x72,0x65,0x61,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x61,0x62,0x6f,0x75,0x74,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x66,0x65,0x74,0x63,0x68,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x64,0x6d,0x2d,0x6f,0x75,0x74,0x62,0x6f,0x78,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x64,0x6d,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x6e,0x64,0x44,0x6d,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x65,0x6e,0x64,0x2d,0x64,0x6d,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x54,0x27,0x29,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2e,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x60,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x6c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x73,0x65,0x20,0x6c,0x6f,0x67,0x73,0x20,0x6f,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x49,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x6f,0x6e,0x6c,0x79,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x3d,0x20,0x75,0x72,0x6c,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x3d,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x20,0x2b,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x55,0x52,0x4c,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x2f,0x2b,0x2f,0x67,0x2c,0x20,0x27,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x65,0x6e,0x64,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x61,0x74,0x68,0x6e,0x61,0x6d,0x65,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x2d,0x31,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x6f,0x72,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x38,0x30,0x27,0x20,0x26,0x26,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x73,0x3a,0x27,0x29,0x20,0x7c,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x6f,0x72,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x34,0x34,0x33,0x27,0x20,0x26,0x26,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x73,0x73,0x3a,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x70,0x6f,0x72,0x74,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x73,0x65,0x61,0x72,0x63,0x68,0x50,0x61,0x72,0x61,0x6d,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x68,0x61,0x73,0x68,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x3a,0x27,0x2c,0x20,0x75,0x72,0x6c,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x72,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x90,0x20,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x41,0x55,0x54,0x48,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x3a,0x60,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x6e,0x6f,0x73,0x74,0x72,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x32,0x2e,0x6d,0x61,0x6b,0x65,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x41,0x55,0x54,0x48,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x61,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x41,0x55,0x54,0x48,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x78,0x74,0x7d,0x3a,0x60,0x2c,0x20,0x61,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x54,0x27,0x29,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2e,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x60,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x6c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x6c,0x6f,0x73,0x65,0x20,0x6c,0x6f,0x67,0x73,0x20,0x6f,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x6c,0x6f,0x67,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x49,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x6f,0x6e,0x6c,0x79,0x0a,0x7d,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x77,0x61,0x72,0x74,0x20,0x74,0x69,0x6d,0x65,0x2d,0x61,0x6e,0x61,0x6c,0x79,0x73,0x69,0x73,0x20,0x28,0x70,0x61,0x73,0x74,0x20,0x32,0x20,0x64,0x61,0x79,0x73,0x29,0x0a,0x2f,0x2f,0x20,0x54,0x45,0x4d,0x50,0x4f,0x52,0x41,0x52,0x49,0x4c,0x59,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x3a,0x20,0x55,0x73,0x69,0x6e,0x67,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x4e,0x6f,0x77,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x54,0x57,0x4f,0x5f,0x44,0x41,0x59,0x53,0x20,0x3d,0x20,0x32,0x20,0x2a,0x20,0x32,0x34,0x20,0x2a,0x20,0x36,0x30,0x20,0x2a,0x20,0x36,0x30,0x3b,0x20,0x2f,0x2f,0x20,0x31,0x37,0x32,0x38,0x30,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x77,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x6f,0x77,0x3b,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x6e,0x6f,0x77,0x20,0x2d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x20,0x2a,0x20,0x54,0x57,0x4f,0x5f,0x44,0x41,0x59,0x53,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x66,0x65,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x66,0x65,0x4a,0x73,0x6f,0x6e,0x50,0x61,0x72,0x73,0x65,0x28,0x6a,0x73,0x6f,0x6e,0x53,0x74,0x72,0x69,0x6e,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x6a,0x73,0x6f,0x6e,0x53,0x74,0x72,0x69,0x6e,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x4a,0x53,0x4f,0x4e,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x43,0x4f,0x4e,0x4e,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x55,0x52,0x4c,0x20,0x74,0x6f,0x20,0x48,0x54,0x54,0x50,0x20,0x55,0x52,0x4c,0x20,0x66,0x6f,0x72,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x73,0x54,0x6f,0x48,0x74,0x74,0x70,0x55,0x72,0x6c,0x28,0x77,0x73,0x55,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x73,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x77,0x73,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x55,0x72,0x6c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x65,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x55,0x52,0x4c,0x20,0x74,0x6f,0x20,0x48,0x54,0x54,0x50,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x20,0x3d,0x20,0x77,0x73,0x54,0x6f,0x48,0x74,0x74,0x70,0x55,0x72,0x6c,0x28,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x6b,0x65,0x20,0x48,0x54,0x54,0x50,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x28,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x47,0x45,0x54,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x3a,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x41,0x63,0x63,0x65,0x70,0x74,0x27,0x3a,0x20,0x27,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2b,0x6a,0x73,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x55,0x73,0x65,0x72,0x2d,0x41,0x67,0x65,0x6e,0x74,0x27,0x3a,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x2d,0x41,0x64,0x6d,0x69,0x6e,0x2d,0x41,0x50,0x49,0x2f,0x31,0x2e,0x30,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x20,0x31,0x30,0x30,0x30,0x30,0x20,0x2f,0x2f,0x20,0x31,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x6f,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x48,0x54,0x54,0x50,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x68,0x65,0x61,0x64,0x65,0x72,0x73,0x2e,0x67,0x65,0x74,0x28,0x27,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2d,0x74,0x79,0x70,0x65,0x27,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6e,0x6f,0x73,0x74,0x72,0x2b,0x6a,0x73,0x6f,0x6e,0x27,0x29,0x20,0x26,0x26,0x20,0x21,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,0x6a,0x73,0x6f,0x6e,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x55,0x6e,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x54,0x79,0x70,0x65,0x7d,0x3b,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x69,0x6e,0x67,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x77,0x61,0x79,0x60,0x2c,0x20,0x27,0x57,0x41,0x52,0x4e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x69,0x66,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x73,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x28,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x20,0x79,0x65,0x74,0x29,0x20,0x62,0x75,0x74,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x7c,0x7c,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x69,0x6e,0x66,0x6f,0x20,0x2d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x20,0x79,0x65,0x74,0x2c,0x20,0x77,0x69,0x6c,0x6c,0x20,0x75,0x73,0x65,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x2d,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x76,0x61,0x6c,0x69,0x64,0x2c,0x20,0x63,0x61,0x6c,0x6c,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x21,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x7b,0x36,0x34,0x7d,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x2e,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3f,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x27,0x6e,0x6f,0x74,0x20,0x73,0x65,0x74,0x27,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x77,0x73,0x55,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x3a,0x20,0x24,0x7b,0x77,0x73,0x55,0x72,0x6c,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x77,0x73,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x28,0x31,0x30,0x73,0x29,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x6f,0x6e,0x6f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x6f,0x6e,0x63,0x6c,0x6f,0x73,0x65,0x20,0x3d,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x64,0x65,0x20,0x21,0x3d,0x3d,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x7b,0x20,0x2f,0x2f,0x20,0x31,0x30,0x30,0x30,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x63,0x6c,0x6f,0x73,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x75,0x6e,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x6c,0x79,0x3a,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x64,0x65,0x7d,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x66,0x6f,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x41,0x50,0x49,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x74,0x72,0x79,0x20,0x6c,0x6f,0x67,0x69,0x63,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x57,0x69,0x74,0x68,0x52,0x65,0x74,0x72,0x69,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x74,0x72,0x79,0x20,0x6c,0x6f,0x67,0x69,0x63,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x20,0x3d,0x20,0x33,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x32,0x30,0x30,0x3b,0x20,0x2f,0x2f,0x20,0x6d,0x73,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x20,0x28,0x72,0x65,0x64,0x75,0x63,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x35,0x30,0x30,0x6d,0x73,0x29,0x0a,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x6c,0x65,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3d,0x20,0x31,0x3b,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3c,0x3d,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x3b,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x2b,0x2b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x24,0x7b,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7d,0x2f,0x24,0x7b,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x31,0x3a,0x20,0x54,0x72,0x79,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x79,0x69,0x6e,0x67,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x6c,0x79,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x74,0x72,0x65,0x61,0x74,0x20,0x61,0x73,0x20,0x73,0x74,0x61,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x66,0x6f,0x75,0x6e,0x64,0x2c,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x69,0x6e,0x67,0x20,0x6c,0x69,0x76,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x45,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x41,0x75,0x74,0x68,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x53,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x69,0x73,0x20,0x73,0x74,0x61,0x6c,0x65,0x20,0x28,0x6e,0x6f,0x20,0x6c,0x69,0x76,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x29,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x63,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x63,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x68,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x67,0x65,0x74,0x41,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x28,0x29,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x61,0x75,0x74,0x68,0x20,0x73,0x74,0x61,0x74,0x65,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x7c,0x7c,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x61,0x75,0x74,0x68,0x53,0x74,0x61,0x74,0x65,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x32,0x3a,0x20,0x54,0x72,0x79,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x79,0x69,0x6e,0x67,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3a,0x27,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x2d,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x33,0x3a,0x20,0x54,0x72,0x79,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x20,0x28,0x4e,0x49,0x50,0x2d,0x30,0x37,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x79,0x69,0x6e,0x67,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x29,0x3a,0x27,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x20,0x34,0x3a,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x5f,0x44,0x41,0x54,0x41,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x69,0x6e,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x3a,0x27,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x73,0x65,0x73,0x73,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x2d,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x24,0x7b,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7d,0x3a,0x20,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x76,0x69,0x61,0x20,0x61,0x6e,0x79,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x6e,0x65,0x78,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x28,0x65,0x78,0x63,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x6c,0x61,0x73,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3c,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x64,0x65,0x6c,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x24,0x7b,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7d,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x3c,0x20,0x6d,0x61,0x78,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x64,0x65,0x6c,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x4e,0x4f,0x20,0x53,0x54,0x4f,0x52,0x45,0x44,0x20,0x53,0x45,0x53,0x53,0x49,0x4f,0x4e,0x20,0x46,0x4f,0x55,0x4e,0x44,0x20,0x28,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8d,0x20,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x6c,0x6c,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x84,0x20,0x52,0x65,0x73,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6d,0x61,0x69,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x55,0x73,0x65,0x72,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x62,0x75,0x74,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x79,0x65,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x74,0x75,0x70,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x27,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x2d,0x61,0x75,0x74,0x68,0x2d,0x73,0x74,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x70,0x61,0x73,0x73,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x50,0x41,0x53,0x53,0x45,0x44,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x29,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x29,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x55,0x52,0x4c,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x75,0x70,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x45,0x54,0x55,0x50,0x20,0x41,0x55,0x54,0x4f,0x4d,0x41,0x54,0x49,0x43,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x43,0x4f,0x4e,0x4e,0x45,0x43,0x54,0x49,0x4f,0x4e,0x20,0x43,0x41,0x4c,0x4c,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x6c,0x6c,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x27,0x2c,0x20,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3a,0x27,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3f,0x20,0x27,0x45,0x58,0x49,0x53,0x54,0x53,0x27,0x20,0x3a,0x20,0x27,0x4e,0x55,0x4c,0x4c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x3a,0x27,0x2c,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x20,0x55,0x52,0x4c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x68,0x72,0x65,0x66,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x76,0x65,0x6c,0x6f,0x70,0x6d,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x6c,0x6f,0x63,0x61,0x6c,0x68,0x6f,0x73,0x74,0x3a,0x38,0x38,0x38,0x38,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x61,0x74,0x68,0x20,0x63,0x6f,0x6d,0x70,0x6f,0x6e,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x6a,0x75,0x73,0x74,0x20,0x74,0x68,0x65,0x20,0x62,0x61,0x73,0x65,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x52,0x49,0x54,0x49,0x43,0x41,0x4c,0x3a,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x61,0x64,0x64,0x20,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67,0x20,0x73,0x6c,0x61,0x73,0x68,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x20,0x55,0x52,0x4c,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x55,0x52,0x4c,0x28,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x20,0x3d,0x20,0x60,0x24,0x7b,0x75,0x72,0x6c,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x7d,0x2f,0x2f,0x24,0x7b,0x75,0x72,0x6c,0x2e,0x68,0x6f,0x73,0x74,0x7d,0x2f,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x97,0x20,0x41,0x75,0x74,0x6f,0x2d,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x74,0x6f,0x3a,0x27,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x27,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x73,0x27,0x2c,0x20,0x27,0x68,0x74,0x74,0x70,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x68,0x74,0x74,0x70,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3f,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x6d,0x75,0x73,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x74,0x68,0x65,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x65,0x78,0x70,0x6f,0x73,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x65,0x39,0x61,0x61,0x35,0x30,0x64,0x65,0x63,0x66,0x66,0x30,0x31,0x66,0x32,0x63,0x65,0x63,0x31,0x65,0x63,0x32,0x62,0x32,0x65,0x30,0x62,0x33,0x34,0x33,0x33,0x32,0x63,0x66,0x39,0x63,0x39,0x32,0x63,0x61,0x66,0x64,0x61,0x63,0x35,0x61,0x37,0x63,0x63,0x30,0x38,0x38,0x31,0x61,0x36,0x64,0x32,0x36,0x62,0x35,0x39,0x38,0x35,0x34,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x28,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x29,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x73,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x2f,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3f,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x3f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x91,0x20,0x41,0x75,0x74,0x6f,0x2d,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x55,0x73,0x69,0x6e,0x67,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x2c,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x27,0x65,0x39,0x61,0x61,0x35,0x30,0x64,0x65,0x63,0x66,0x66,0x30,0x31,0x66,0x32,0x63,0x65,0x63,0x31,0x65,0x63,0x32,0x62,0x32,0x65,0x30,0x62,0x33,0x34,0x33,0x33,0x32,0x63,0x66,0x39,0x63,0x39,0x32,0x63,0x61,0x66,0x64,0x61,0x63,0x35,0x61,0x37,0x63,0x63,0x30,0x38,0x38,0x31,0x61,0x36,0x64,0x32,0x36,0x62,0x35,0x39,0x38,0x35,0x34,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x75,0x70,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x74,0x65,0x3a,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x69,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x93,0xa1,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x73,0x68,0x6f,0x77,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x69,0x66,0x20,0x65,0x78,0x70,0x6c,0x69,0x63,0x69,0x74,0x6c,0x79,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x75,0x70,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x75,0x70,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x69,0x6c,0x6c,0x20,0x6d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x62,0x61,0x73,0x69,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x77,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x65,0x67,0x61,0x63,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x57,0x69,0x74,0x68,0x52,0x65,0x74,0x72,0x69,0x65,0x73,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x41,0x70,0x70,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x69,0x6e,0x69,0x74,0x28,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x65,0x6d,0x65,0x3a,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x73,0x3a,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x65,0x64,0x70,0x68,0x72,0x61,0x73,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x6f,0x6e,0x6c,0x79,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6d,0x6f,0x74,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x74,0x70,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6c,0x6f,0x61,0x74,0x69,0x6e,0x67,0x54,0x61,0x62,0x3a,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x66,0x6f,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x73,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x63,0x68,0x65,0x63,0x6b,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x73,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x73,0x65,0x72,0x20,0x77,0x61,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x2c,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x65,0x64,0x20,0x62,0x79,0x20,0x72,0x65,0x73,0x74,0x6f,0x72,0x65,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x63,0x61,0x6c,0x6c,0x73,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x29,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x75,0x6e,0x64,0x2c,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x73,0x74,0x65,0x6e,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6e,0x6c,0x4d,0x65,0x74,0x68,0x6f,0x64,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x27,0x2c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6e,0x6c,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x27,0x2c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x7b,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x7d,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x64,0x65,0x74,0x61,0x69,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x21,0x20,0x4d,0x65,0x74,0x68,0x6f,0x64,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x55,0x73,0x65,0x72,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x6f,0x77,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x74,0x75,0x70,0x41,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x79,0x65,0x74,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x27,0x61,0x75,0x74,0x68,0x2d,0x65,0x76,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x70,0x61,0x73,0x73,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x50,0x41,0x53,0x53,0x45,0x44,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x50,0x4f,0x53,0x54,0x2d,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x48,0x45,0x43,0x4b,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x3a,0x27,0x2c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x43,0x68,0x65,0x63,0x6b,0x52,0x65,0x73,0x75,0x6c,0x74,0x3f,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x4c,0x4f,0x47,0x49,0x4e,0x20,0x41,0x54,0x54,0x45,0x4d,0x50,0x54,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x69,0x6e,0x74,0x65,0x72,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x29,0x27,0x2c,0x20,0x7b,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x61,0x6e,0x79,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x69,0x66,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x55,0x49,0x20,0x2d,0x20,0x68,0x69,0x64,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x62,0x79,0x20,0x73,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x6e,0x64,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x41,0x64,0x6d,0x69,0x6e,0x41,0x63,0x63,0x65,0x73,0x73,0x28,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x3d,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x56,0x45,0x52,0x49,0x46,0x59,0x49,0x4e,0x47,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x41,0x43,0x43,0x45,0x53,0x53,0x20,0x28,0x42,0x59,0x50,0x41,0x53,0x53,0x20,0x4d,0x4f,0x44,0x45,0x29,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x27,0x55,0x73,0x65,0x72,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x72,0x65,0x61,0x64,0x79,0x20,0x79,0x65,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x64,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x41,0x43,0x43,0x45,0x53,0x53,0x20,0x44,0x45,0x4e,0x49,0x45,0x44,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x73,0x74,0x69,0x6c,0x6c,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x20,0x64,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x3a,0x20,0x74,0x72,0x75,0x65,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x45,0x4d,0x50,0x4f,0x52,0x41,0x52,0x59,0x20,0x42,0x59,0x50,0x41,0x53,0x53,0x3a,0x20,0x53,0x6b,0x69,0x70,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x67,0x72,0x61,0x6e,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x4f,0x44,0x4f,0x3a,0x20,0x52,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6f,0x6e,0x63,0x65,0x20,0x69,0x64,0x6c,0x65,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x5f,0x73,0x65,0x63,0x20,0x69,0x73,0x20,0x69,0x6e,0x63,0x72,0x65,0x61,0x73,0x65,0x64,0x20,0x74,0x6f,0x20,0x31,0x32,0x30,0x2b,0x0a,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x27,0x42,0x79,0x70,0x61,0x73,0x73,0x20,0x6d,0x6f,0x64,0x65,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x74,0x65,0x6d,0x70,0x6f,0x72,0x61,0x72,0x79,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x7b,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x20,0x70,0x61,0x73,0x73,0x65,0x64,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x75,0x72,0x63,0x65,0x2c,0x20,0x62,0x79,0x70,0x61,0x73,0x73,0x3a,0x20,0x74,0x72,0x75,0x65,0x20,0x7d,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x76,0x65,0x72,0x69,0x66,0x79,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x69,0x64,0x20,0x3d,0x20,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x70,0x69,0x6e,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x68,0x33,0x3e,0x56,0x65,0x72,0x69,0x66,0x79,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x63,0x63,0x65,0x73,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x68,0x33,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x20,0x69,0x64,0x3d,0x22,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x79,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x3e,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x3c,0x2f,0x70,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x20,0x75,0x73,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x68,0x69,0x64,0x65,0x20,0x61,0x6e,0x79,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x62,0x65,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x6c,0x6c,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x63,0x63,0x65,0x73,0x73,0x2d,0x64,0x65,0x6e,0x69,0x65,0x64,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x6c,0x6c,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x6c,0x6c,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x6f,0x66,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x53,0x68,0x6f,0x77,0x20,0x3d,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x26,0x26,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x26,0x26,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x2c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x61,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x2c,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x75,0x6c,0x64,0x53,0x68,0x6f,0x77,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x64,0x61,0x74,0x61,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x6c,0x6c,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x6e,0x6f,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x6f,0x70,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x64,0x61,0x74,0x61,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x44,0x61,0x74,0x61,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x20,0x28,0x6e,0x6f,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x6c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x6c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x61,0x67,0x65,0x73,0x20,0x64,0x6f,0x6e,0x27,0x74,0x20,0x6e,0x65,0x65,0x64,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x20,0x26,0x26,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x55,0x49,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x65,0x6d,0x62,0x65,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x4f,0x53,0x54,0x52,0x5f,0x4c,0x4f,0x47,0x49,0x4e,0x5f,0x4c,0x49,0x54,0x45,0x2e,0x65,0x6d,0x62,0x65,0x64,0x28,0x27,0x23,0x6c,0x6f,0x67,0x69,0x6e,0x2d,0x6d,0x6f,0x64,0x61,0x6c,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x61,0x6d,0x6c,0x65,0x73,0x73,0x3a,0x20,0x74,0x72,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x4c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x4d,0x6f,0x64,0x61,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x66,0x6c,0x65,0x78,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x41,0x72,0x65,0x61,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x2f,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x55,0x49,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x28,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x4c,0x6f,0x67,0x69,0x6e,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x55,0x49,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x61,0x6e,0x64,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6e,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x64,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x6c,0x20,0x69,0x74,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6d,0x61,0x69,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x28,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x73,0x68,0x6f,0x77,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6e,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x64,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x6d,0x69,0x67,0x68,0x74,0x20,0x63,0x61,0x6c,0x6c,0x20,0x69,0x74,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x70,0x6f,0x6f,0x6c,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x55,0x73,0x65,0x72,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x28,0x6e,0x65,0x77,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x28,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x5b,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x64,0x61,0x6d,0x75,0x73,0x2e,0x69,0x6f,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x61,0x6e,0x64,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x6e,0x6f,0x73,0x2e,0x6c,0x6f,0x6c,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x70,0x72,0x69,0x6d,0x61,0x6c,0x2e,0x6e,0x65,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x73,0x6e,0x6f,0x72,0x74,0x2e,0x73,0x6f,0x63,0x69,0x61,0x6c,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x30,0x29,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x28,0x5f,0x2c,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x29,0x20,0x3d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x28,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x29,0x29,0x2c,0x20,0x35,0x30,0x30,0x30,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x79,0x6e,0x63,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x30,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x31,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x72,0x61,0x63,0x65,0x28,0x5b,0x71,0x75,0x65,0x72,0x79,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2c,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x5b,0x30,0x5d,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x3a,0x27,0x2c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x28,0x6e,0x65,0x77,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x41,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x20,0x55,0x73,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x28,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x41,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x20,0x55,0x73,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4e,0x6f,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x74,0x68,0x65,0x20,0x6e,0x70,0x75,0x62,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x70,0x65,0x72,0x6c,0x79,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x69,0x76,0x65,0x20,0x74,0x69,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x65,0x61,0x6e,0x75,0x70,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x31,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x63,0x6c,0x6f,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x28,0x6e,0x6f,0x6e,0x2d,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x3a,0x27,0x2c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x28,0x6e,0x65,0x77,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x28,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x74,0x68,0x65,0x20,0x6e,0x70,0x75,0x62,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x28,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x5f,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x41,0x6e,0x6f,0x6e,0x79,0x6d,0x6f,0x75,0x73,0x20,0x55,0x73,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x61,0x62,0x6f,0x75,0x74,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x7c,0x7c,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2e,0x69,0x6d,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x26,0x26,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x27,0x29,0x20,0x7c,0x7c,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x27,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x73,0x72,0x63,0x20,0x3d,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x3a,0x27,0x2c,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x55,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x65,0x72,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x28,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x29,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x4e,0x61,0x6d,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x29,0x20,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x55,0x73,0x65,0x72,0x41,0x62,0x6f,0x75,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x62,0x6f,0x75,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6c,0x65,0x67,0x61,0x63,0x79,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x65,0x72,0x73,0x69,0x73,0x74,0x65,0x6e,0x74,0x2d,0x75,0x73,0x65,0x72,0x2d,0x69,0x6d,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x26,0x26,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x74,0x74,0x70,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x69,0x6d,0x67,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6d,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6d,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x69,0x6d,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x75,0x73,0x65,0x72,0x2d,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x2d,0x69,0x6d,0x61,0x67,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x61,0x6c,0x74,0x20,0x3d,0x20,0x60,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x7d,0x27,0x73,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x6f,0x6e,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x69,0x6d,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x73,0x72,0x63,0x20,0x3d,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x6e,0x6f,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6d,0x67,0x20,0x3d,0x20,0x75,0x73,0x65,0x72,0x49,0x6d,0x61,0x67,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6d,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6d,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6d,0x67,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x7d,0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x6f,0x75,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x70,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x64,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x6f,0x70,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x6e,0x20,0x75,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6c,0x6f,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x6f,0x6f,0x6c,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x28,0x6e,0x6f,0x6e,0x2d,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x29,0x3a,0x27,0x2c,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x6c,0x4c,0x69,0x74,0x65,0x2e,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x55,0x49,0x20,0x2d,0x20,0x68,0x69,0x64,0x65,0x20,0x70,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x6d,0x6f,0x64,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x46,0x72,0x6f,0x6d,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x67,0x65,0x64,0x20,0x6f,0x75,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x6c,0x6f,0x61,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x6f,0x61,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x49,0x44,0x20,0x28,0x61,0x76,0x6f,0x69,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6c,0x6f,0x6e,0x73,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x61,0x72,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x75,0x62,0x49,0x64,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x61,0x6c,0x70,0x68,0x61,0x6e,0x75,0x6d,0x65,0x72,0x69,0x63,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x2c,0x20,0x75,0x6e,0x64,0x65,0x72,0x73,0x63,0x6f,0x72,0x65,0x73,0x2c,0x20,0x68,0x79,0x70,0x68,0x65,0x6e,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x68,0x61,0x72,0x73,0x20,0x3d,0x20,0x27,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x5f,0x2d,0x2c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x6c,0x65,0x74,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x31,0x32,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x20,0x2b,0x3d,0x20,0x63,0x68,0x61,0x72,0x73,0x2e,0x63,0x68,0x61,0x72,0x41,0x74,0x28,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x4d,0x61,0x74,0x68,0x2e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x28,0x29,0x20,0x2a,0x20,0x63,0x68,0x61,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x20,0x74,0x6f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2c,0x20,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8d,0x20,0x41,0x74,0x74,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x73,0x74,0x6f,0x72,0x65,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x69,0x6e,0x20,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x20,0x6f,0x6e,0x6c,0x79,0x3a,0x20,0x69,0x6e,0x73,0x70,0x65,0x63,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x6d,0x75,0x74,0x61,0x74,0x69,0x6e,0x67,0x20,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x69,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x5b,0x75,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x93,0xa1,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x55,0x52,0x4c,0x3a,0x27,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x20,0x26,0x26,0x20,0x21,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x2e,0x5f,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x6e,0x2e,0x77,0x73,0x2e,0x5f,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x93,0xa1,0x20,0x4e,0x6f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x79,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x55,0x52,0x4c,0x3a,0x27,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x77,0x73,0x2c,0x20,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x8e,0xaf,0x20,0x41,0x74,0x74,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x70,0x65,0x6e,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x93,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x4f,0x50,0x45,0x4e,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x77,0x73,0x2e,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x69,0x6e,0x67,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x75,0x6c,0x6c,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x4d,0x45,0x53,0x53,0x41,0x47,0x45,0x20,0x66,0x72,0x6f,0x6d,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x3a,0x20,0x64,0x61,0x74,0x61,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x73,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x66,0x6f,0x72,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x5b,0x74,0x79,0x70,0x65,0x2c,0x20,0x2e,0x2e,0x2e,0x61,0x72,0x67,0x73,0x5d,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x60,0x2c,0x20,0x61,0x72,0x67,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x4a,0x53,0x4f,0x4e,0x3a,0x60,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x52,0x61,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x28,0x6e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x29,0x3a,0x60,0x2c,0x20,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x6f,0x73,0x65,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x92,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x43,0x4c,0x4f,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x64,0x65,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x64,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x61,0x73,0x43,0x6c,0x65,0x61,0x6e,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x77,0x61,0x73,0x43,0x6c,0x65,0x61,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x65,0x72,0x72,0x6f,0x72,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x75,0x6c,0x6c,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x45,0x52,0x52,0x4f,0x52,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x75,0x66,0x66,0x65,0x72,0x65,0x64,0x41,0x6d,0x6f,0x75,0x6e,0x74,0x3a,0x20,0x77,0x73,0x2e,0x62,0x75,0x66,0x66,0x65,0x72,0x65,0x64,0x41,0x6d,0x6f,0x75,0x6e,0x74,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x77,0x73,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x77,0x73,0x2e,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x69,0x6e,0x61,0x72,0x79,0x54,0x79,0x70,0x65,0x3a,0x20,0x77,0x73,0x2e,0x62,0x69,0x6e,0x61,0x72,0x79,0x54,0x79,0x70,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x76,0x65,0x72,0x72,0x69,0x64,0x65,0x20,0x73,0x65,0x6e,0x64,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x67,0x20,0x6f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x65,0x6e,0x64,0x20,0x3d,0x20,0x77,0x73,0x2e,0x73,0x65,0x6e,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x77,0x73,0x2e,0x73,0x65,0x6e,0x64,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x53,0x45,0x4e,0x44,0x20,0x74,0x6f,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x3a,0x20,0x64,0x61,0x74,0x61,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x4c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x20,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x77,0x73,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x6f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x5b,0x74,0x79,0x70,0x65,0x2c,0x20,0x2e,0x2e,0x2e,0x61,0x72,0x67,0x73,0x5d,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x4f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3a,0x60,0x2c,0x20,0x61,0x72,0x67,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x4f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x4a,0x53,0x4f,0x4e,0x3a,0x60,0x2c,0x20,0x70,0x61,0x72,0x73,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa4,0x20,0x4f,0x75,0x74,0x67,0x6f,0x69,0x6e,0x67,0x20,0x72,0x61,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x28,0x6e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x29,0x3a,0x60,0x2c,0x20,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x65,0x6e,0x64,0x2e,0x63,0x61,0x6c,0x6c,0x28,0x74,0x68,0x69,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x42,0x45,0x20,0x54,0x4f,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x6c,0x6c,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x29,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x20,0x77,0x65,0x27,0x72,0x65,0x20,0x64,0x6f,0x6e,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x26,0x26,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x20,0x72,0x65,0x75,0x73,0x69,0x6e,0x67,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x70,0x6f,0x6f,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x69,0x6e,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x8c,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x70,0x6f,0x6f,0x6c,0x20,0x4f,0x4e,0x4c,0x59,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0xa8,0x20,0x43,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x4e,0x45,0x57,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x74,0x74,0x61,0x63,0x68,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x20,0x70,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2c,0x20,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x99,0xbb,0xef,0xb8,0x8f,0x20,0x52,0x65,0x75,0x73,0x69,0x6e,0x67,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x75,0x62,0x49,0x64,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0x9d,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x49,0x44,0x3a,0x20,0x24,0x7b,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x49,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x91,0xa4,0x20,0x55,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x8e,0xaf,0x20,0x41,0x62,0x6f,0x75,0x74,0x20,0x74,0x6f,0x20,0x63,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x55,0x52,0x4c,0x3a,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3f,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0x8a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x3a,0x60,0x2c,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x55,0x52,0x4c,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x61,0x77,0x55,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x70,0x72,0x65,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x54,0x79,0x70,0x65,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x70,0x72,0x65,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x42,0x45,0x46,0x4f,0x52,0x45,0x20,0x63,0x61,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x63,0x65,0x20,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x20,0x34,0x20,0x28,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x73,0x29,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x20,0x31,0x30,0x35,0x39,0x20,0x28,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x29,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x28,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x2c,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x73,0x20,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x94,0x20,0x43,0x61,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x5b,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2d,0x20,0x35,0x2c,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x6f,0x6b,0x20,0x62,0x61,0x63,0x6b,0x20,0x35,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x74,0x6f,0x20,0x61,0x76,0x6f,0x69,0x64,0x20,0x72,0x61,0x63,0x65,0x20,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x32,0x33,0x34,0x35,0x37,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x70,0x22,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x75,0x73,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x34,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x69,0x72,0x65,0x63,0x74,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x44,0x4d,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x70,0x22,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x44,0x4d,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x75,0x73,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2d,0x20,0x28,0x32,0x20,0x2a,0x20,0x32,0x34,0x20,0x2a,0x20,0x36,0x30,0x20,0x2a,0x20,0x36,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x6f,0x6b,0x20,0x62,0x61,0x63,0x6b,0x20,0x32,0x20,0x64,0x61,0x79,0x73,0x20,0x66,0x6f,0x72,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x31,0x30,0x35,0x39,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x70,0x22,0x3a,0x20,0x5b,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x75,0x73,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x74,0x69,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x32,0x34,0x35,0x36,0x37,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x23,0x64,0x22,0x3a,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x3f,0x20,0x5b,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x22,0x2c,0x20,0x22,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x2c,0x20,0x22,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x22,0x2c,0x20,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x22,0x2c,0x20,0x22,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x22,0x5d,0x20,0x3a,0x20,0x5b,0x22,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x22,0x2c,0x20,0x22,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x2c,0x20,0x22,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x22,0x2c,0x20,0x22,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x22,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x63,0x6c,0x75,0x64,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x2c,0x20,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x35,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2d,0x20,0x28,0x32,0x34,0x20,0x2a,0x20,0x36,0x30,0x20,0x2a,0x20,0x36,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x6f,0x6b,0x20,0x62,0x61,0x63,0x6b,0x20,0x32,0x34,0x20,0x68,0x6f,0x75,0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x5b,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2c,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x5b,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x73,0x20,0x6f,0x77,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x31,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x76,0x65,0x20,0x66,0x65,0x65,0x64,0x20,0x75,0x73,0x65,0x73,0x20,0x61,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x6e,0x63,0x65,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x20,0x32,0x30,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x5d,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x6f,0x6e,0x65,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x69,0x66,0x69,0x65,0x64,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x2d,0x20,0x6f,0x6e,0x65,0x20,0x6c,0x69,0x6e,0x65,0x20,0x70,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x54,0x61,0x67,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x69,0x6e,0x64,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x64,0x54,0x61,0x67,0x20,0x3f,0x20,0x64,0x54,0x61,0x67,0x5b,0x31,0x5d,0x20,0x3a,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0x8a,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x3a,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x44,0x4d,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x30,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x27,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x2c,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x4e,0x49,0x50,0x2d,0x30,0x34,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x44,0x4d,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x31,0x30,0x35,0x39,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x93,0xa8,0x20,0x52,0x45,0x43,0x45,0x49,0x56,0x45,0x44,0x20,0x4b,0x49,0x4e,0x44,0x20,0x31,0x30,0x35,0x39,0x20,0x45,0x56,0x45,0x4e,0x54,0x3a,0x60,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x30,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x31,0x3a,0x20,0x55,0x6e,0x77,0x72,0x61,0x70,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x73,0x65,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x61,0x6c,0x4a,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x93,0x20,0x53,0x54,0x45,0x50,0x20,0x31,0x20,0x2d,0x20,0x55,0x6e,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x3a,0x60,0x2c,0x20,0x73,0x65,0x61,0x6c,0x4a,0x73,0x6f,0x6e,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x30,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x61,0x6c,0x20,0x3d,0x20,0x73,0x61,0x66,0x65,0x4a,0x73,0x6f,0x6e,0x50,0x61,0x72,0x73,0x65,0x28,0x73,0x65,0x61,0x6c,0x4a,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x65,0x61,0x6c,0x20,0x7c,0x7c,0x20,0x73,0x65,0x61,0x6c,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x31,0x33,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x55,0x6e,0x77,0x72,0x61,0x70,0x70,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x73,0x65,0x61,0x6c,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x33,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x53,0x65,0x61,0x6c,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x3a,0x60,0x2c,0x20,0x7b,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x73,0x65,0x61,0x6c,0x2e,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x73,0x65,0x61,0x6c,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x32,0x3a,0x20,0x55,0x6e,0x73,0x65,0x61,0x6c,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x4a,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x73,0x65,0x61,0x6c,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x73,0x65,0x61,0x6c,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xf0,0x9f,0x94,0x93,0x20,0x53,0x54,0x45,0x50,0x20,0x32,0x20,0x2d,0x20,0x55,0x6e,0x73,0x65,0x61,0x6c,0x65,0x64,0x20,0x72,0x75,0x6d,0x6f,0x72,0x3a,0x60,0x2c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x4a,0x73,0x6f,0x6e,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x30,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x3d,0x20,0x73,0x61,0x66,0x65,0x4a,0x73,0x6f,0x6e,0x50,0x61,0x72,0x73,0x65,0x28,0x72,0x75,0x6d,0x6f,0x72,0x4a,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x75,0x6d,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x31,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x55,0x6e,0x73,0x65,0x61,0x6c,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x34,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x52,0x75,0x6d,0x6f,0x72,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64,0x3a,0x60,0x2c,0x20,0x7b,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x27,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x2c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2c,0x20,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6d,0x6f,0x72,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x55,0x4e,0x57,0x52,0x41,0x50,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x3a,0x60,0x2c,0x20,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x6e,0x77,0x72,0x61,0x70,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x6e,0x77,0x72,0x61,0x70,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x75,0x6e,0x77,0x72,0x61,0x70,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x44,0x4d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x41,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x2d,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x28,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x64,0x6f,0x6e,0x65,0x20,0x61,0x62,0x6f,0x76,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x73,0x20,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x5b,0x30,0x2c,0x20,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x31,0x30,0x30,0x30,0x32,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6c,0x69,0x76,0x65,0x20,0x66,0x65,0x65,0x64,0x20,0x76,0x69,0x61,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x78,0x63,0x6c,0x75,0x64,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x20,0x74,0x72,0x61,0x66,0x66,0x69,0x63,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x26,0x26,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x37,0x20,0x26,0x26,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x36,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x54,0x6f,0x4c,0x69,0x76,0x65,0x46,0x65,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x65,0x6f,0x73,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x4f,0x53,0x45,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x2d,0x20,0x45,0x6e,0x64,0x20,0x6f,0x66,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x45,0x4f,0x53,0x45,0x3a,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x55,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x61,0x75,0x74,0x68,0x55,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x63,0x6c,0x6f,0x73,0x65,0x28,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x6f,0x73,0x65,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x20,0x3f,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3a,0x20,0x5b,0x72,0x65,0x61,0x73,0x6f,0x6e,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x6f,0x6e,0x63,0x6c,0x6f,0x73,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x6c,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x73,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x72,0x20,0x3d,0x3e,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x72,0x29,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x29,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x63,0x6c,0x6f,0x73,0x65,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x63,0x6c,0x6f,0x73,0x65,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x63,0x6c,0x6f,0x73,0x65,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x69,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x4d,0x61,0x6e,0x79,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x2e,0x2e,0x2e,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x73,0x6f,0x20,0x61,0x6e,0x79,0x20,0x63,0x6c,0x6f,0x73,0x65,0x2f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x68,0x65,0x72,0x65,0x20,0x6d,0x75,0x73,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x63,0x65,0x20,0x63,0x6c,0x65,0x61,0x6e,0x20,0x72,0x65,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x2f,0x74,0x69,0x6d,0x65,0x64,0x20,0x6f,0x75,0x74,0x20,0x2d,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x65,0x74,0x27,0x2c,0x20,0x27,0x57,0x41,0x52,0x4e,0x49,0x4e,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x72,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x65,0x61,0x6e,0x75,0x70,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x41,0x66,0x74,0x65,0x72,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3f,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x53,0x55,0x42,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x70,0x6f,0x73,0x74,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x3a,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x41,0x66,0x74,0x65,0x72,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x41,0x66,0x74,0x65,0x72,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x54,0x79,0x70,0x65,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x70,0x6f,0x73,0x74,0x53,0x75,0x62,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x50,0x52,0x4f,0x43,0x45,0x53,0x53,0x49,0x4e,0x47,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x37,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x33,0x34,0x35,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x6e,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x21,0x3d,0x3d,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x46,0x72,0x6f,0x6d,0x52,0x65,0x6c,0x61,0x79,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x27,0x2c,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x73,0x65,0x20,0x61,0x73,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x66,0x69,0x72,0x73,0x74,0x2c,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x66,0x61,0x69,0x6c,0x73,0x20,0x74,0x72,0x65,0x61,0x74,0x20,0x61,0x73,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x61,0x72,0x73,0x65,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x70,0x61,0x72,0x73,0x65,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x20,0x2d,0x20,0x74,0x72,0x65,0x61,0x74,0x20,0x61,0x73,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x69,0x73,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x4a,0x53,0x4f,0x4e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6c,0x61,0x69,0x6e,0x5f,0x74,0x65,0x78,0x74,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x7d,0x60,0x2c,0x20,0x27,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x74,0x79,0x70,0x65,0x73,0x20,0x6f,0x66,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x49,0x5a,0x49,0x4e,0x47,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x52,0x41,0x54,0x45,0x20,0x43,0x48,0x41,0x52,0x54,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x74,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x73,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x65,0x63,0x6b,0x69,0x6e,0x67,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x3a,0x27,0x2c,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x3a,0x27,0x2c,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x2d,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x20,0x6d,0x61,0x79,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x20,0x6d,0x6f,0x72,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x29,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe2,0x9a,0xa0,0xef,0xb8,0x8f,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6e,0x6f,0x74,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x68,0x65,0x63,0x6b,0x3a,0x20,0x2f,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2f,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x76,0x69,0x73,0x75,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x6e,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x3c,0x2f,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x69,0x6e,0x66,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x53,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x20,0x41,0x50,0x49,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x78,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x31,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x20,0x69,0x6e,0x20,0x6c,0x69,0x6e,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x78,0x44,0x61,0x74,0x61,0x50,0x6f,0x69,0x6e,0x74,0x73,0x3a,0x20,0x37,0x36,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x61,0x73,0x74,0x20,0x37,0x36,0x20,0x62,0x69,0x6e,0x73,0x20,0x28,0x35,0x2b,0x20,0x6d,0x69,0x6e,0x75,0x74,0x65,0x73,0x20,0x6f,0x66,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x20,0x27,0x4e,0x65,0x77,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x74,0x69,0x74,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x41,0x78,0x69,0x73,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x20,0x27,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x58,0x2d,0x61,0x78,0x69,0x73,0x20,0x6c,0x61,0x62,0x65,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x79,0x41,0x78,0x69,0x73,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x20,0x27,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x59,0x2d,0x61,0x78,0x69,0x73,0x20,0x6c,0x61,0x62,0x65,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x6f,0x46,0x69,0x74,0x57,0x69,0x64,0x74,0x68,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76,0x65,0x20,0x66,0x6f,0x6e,0x74,0x20,0x73,0x69,0x7a,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x42,0x69,0x6e,0x4d,0x6f,0x64,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x69,0x6d,0x65,0x20,0x62,0x69,0x6e,0x20,0x61,0x67,0x67,0x72,0x65,0x67,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x69,0x6e,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x34,0x30,0x30,0x30,0x2c,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x34,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x20,0x62,0x69,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x41,0x78,0x69,0x73,0x4c,0x61,0x62,0x65,0x6c,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x27,0x65,0x6c,0x61,0x70,0x73,0x65,0x64,0x27,0x2c,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x6c,0x61,0x70,0x73,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x20,0x6c,0x61,0x62,0x65,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x62,0x75,0x67,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x62,0x75,0x67,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x63,0x65,0x20,0x61,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x20,0x26,0x26,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x6f,0x72,0x63,0x69,0x6e,0x67,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x3a,0x27,0x2c,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x74,0x61,0x63,0x6b,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x73,0x74,0x61,0x63,0x6b,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x2d,0x72,0x61,0x74,0x65,0x2d,0x63,0x68,0x61,0x72,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x68,0x61,0x72,0x74,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x65,0x72,0x72,0x6f,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x66,0x66,0x36,0x62,0x36,0x62,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x29,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe2,0x9d,0x8c,0x20,0x43,0x68,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x3c,0x62,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x43,0x68,0x65,0x63,0x6b,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x3c,0x2f,0x73,0x6d,0x61,0x6c,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x41,0x53,0x43,0x49,0x49,0x42,0x61,0x72,0x43,0x68,0x61,0x72,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x69,0x6e,0x66,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x53,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x75,0x62,0x49,0x64,0x73,0x20,0x3d,0x20,0x5b,0x27,0x76,0x61,0x6c,0x75,0x65,0x73,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x2d,0x76,0x61,0x6c,0x75,0x65,0x27,0x2c,0x20,0x27,0x73,0x63,0x61,0x6c,0x65,0x27,0x2c,0x20,0x27,0x63,0x6f,0x75,0x6e,0x74,0x27,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x75,0x62,0x49,0x64,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x69,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x69,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x69,0x64,0x20,0x3d,0x20,0x69,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x73,0x74,0x75,0x62,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x68,0x61,0x72,0x74,0x20,0x73,0x74,0x75,0x62,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x2d,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x21,0x3d,0x3d,0x20,0x32,0x34,0x35,0x36,0x37,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x65,0x72,0x69,0x66,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x21,0x3d,0x3d,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x64,0x2d,0x74,0x61,0x67,0x20,0x74,0x6f,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x74,0x79,0x70,0x65,0x20,0x6f,0x66,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x54,0x61,0x67,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x69,0x6e,0x64,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x54,0x61,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x72,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x4a,0x53,0x4f,0x4e,0x2c,0x20,0x6e,0x6f,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x6f,0x75,0x74,0x65,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72,0x69,0x61,0x74,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x64,0x2d,0x74,0x61,0x67,0x20,0x28,0x6e,0x6f,0x20,0x76,0x65,0x72,0x62,0x6f,0x73,0x65,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x64,0x54,0x61,0x67,0x5b,0x31,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x69,0x6d,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x6f,0x70,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x6e,0x6c,0x79,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x69,0x66,0x20,0x75,0x73,0x65,0x72,0x20,0x69,0x73,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x43,0x70,0x75,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x74,0x79,0x70,0x65,0x73,0x20,0x6f,0x66,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x64,0x6d,0x69,0x6e,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x48,0x41,0x4e,0x44,0x4c,0x49,0x4e,0x47,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x44,0x41,0x54,0x41,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x28,0x66,0x72,0x6f,0x6d,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x6c,0x61,0x69,0x6e,0x5f,0x74,0x65,0x78,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x48,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x70,0x6c,0x61,0x69,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x69,0x66,0x20,0x77,0x65,0x27,0x72,0x65,0x20,0x6f,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x79,0x20,0x74,0x6f,0x20,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x6b,0x69,0x6e,0x64,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x4b,0x69,0x6e,0x64,0x3a,0x20,0x30,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x4b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x30,0x30,0x35,0x30,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x4b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x30,0x30,0x30,0x32,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x2d,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x74,0x79,0x70,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x26,0x26,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x20,0x7c,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x61,0x75,0x74,0x68,0x27,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x61,0x6c,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x2d,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x74,0x79,0x70,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x26,0x26,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x29,0x20,0x7c,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x27,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x79,0x73,0x74,0x65,0x6d,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x73,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x71,0x6c,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x6f,0x75,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x73,0x69,0x6e,0x67,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x47,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x7d,0x60,0x2c,0x20,0x27,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x6f,0x74,0x61,0x6c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x5f,0x27,0x20,0x2b,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x6f,0x20,0x74,0x61,0x67,0x73,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x65,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x5b,0x6b,0x65,0x79,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x73,0x79,0x6e,0x74,0x68,0x65,0x74,0x69,0x63,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x6f,0x72,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x46,0x72,0x6f,0x6d,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x61,0x74,0x61,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x6c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x7d,0x2c,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x56,0x41,0x4c,0x55,0x45,0x53,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x65,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x60,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x7c,0x7c,0x20,0x27,0x67,0x65,0x6e,0x65,0x72,0x61,0x6c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x76,0x61,0x6c,0x75,0x65,0x7d,0x20,0x28,0x24,0x7b,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x7d,0x2c,0x20,0x24,0x7b,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x7d,0x29,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x56,0x41,0x4c,0x55,0x45,0x53,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x41,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x5f,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3a,0x20,0x24,0x7b,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x41,0x70,0x70,0x6c,0x69,0x65,0x64,0x7d,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x93,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x20,0x28,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x7d,0x29,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x97,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x75,0x73,0x65,0x72,0x20,0x63,0x61,0x6e,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x6c,0x79,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x2e,0x20,0x43,0x6c,0x69,0x63,0x6b,0x20,0x22,0x46,0x65,0x74,0x63,0x68,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x22,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x97,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x20,0x3f,0x20,0x27,0xe2,0x9c,0x93,0x27,0x20,0x3a,0x20,0x27,0xe2,0x9c,0x97,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x20,0x3f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x60,0x20,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x27,0x7d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x24,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x41,0x55,0x54,0x48,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x79,0x70,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x6f,0x74,0x61,0x6c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x20,0x27,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x77,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x6e,0x6f,0x20,0x56,0x49,0x45,0x57,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x61,0x6e,0x79,0x6d,0x6f,0x72,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x77,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x64,0x61,0x74,0x61,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x4c,0x6f,0x61,0x64,0x65,0x64,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x61,0x74,0x61,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x28,0x6e,0x6f,0x20,0x56,0x49,0x45,0x57,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x61,0x6e,0x79,0x6d,0x6f,0x72,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x6f,0x2d,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x64,0x61,0x74,0x61,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x7d,0x2c,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x7d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x52,0x75,0x6c,0x65,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x52,0x55,0x4c,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x51,0x55,0x45,0x52,0x59,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x79,0x73,0x74,0x65,0x6d,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x59,0x53,0x54,0x45,0x4d,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x61,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x6c,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x66,0x69,0x72,0x65,0x64,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x20,0x77,0x61,0x73,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x6c,0x6f,0x61,0x64,0x29,0x2e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x20,0x26,0x26,0x20,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x28,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x26,0x26,0x20,0x21,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe2,0x9c,0x85,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x2d,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x69,0x66,0x20,0x73,0x74,0x69,0x6c,0x6c,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x61,0x6e,0x64,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x64,0x65,0x6e,0x69,0x65,0x64,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x28,0x69,0x6e,0x20,0x63,0x61,0x73,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x73,0x68,0x6f,0x77,0x65,0x64,0x20,0x69,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x64,0x6d,0x69,0x6e,0x56,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x63,0x63,0x65,0x73,0x73,0x44,0x65,0x6e,0x69,0x65,0x64,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x6e,0x6f,0x77,0x20,0x74,0x68,0x61,0x74,0x20,0x77,0x65,0x27,0x72,0x65,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6c,0x6f,0x67,0x73,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x6f,0x45,0x6e,0x61,0x62,0x6c,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x76,0x65,0x72,0x69,0x66,0x69,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x64,0x65,0x6c,0x65,0x74,0x65,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x61,0x6c,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x6c,0x65,0x61,0x72,0x5f,0x61,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x73,0x43,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x73,0x5f,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x43,0x6c,0x65,0x61,0x72,0x65,0x64,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x79,0x6e,0x63,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x6f,0x74,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x77,0x6f,0x74,0x5f,0x73,0x79,0x6e,0x63,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x73,0x65,0x74,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x60,0x2c,0x20,0x27,0x53,0x59,0x53,0x54,0x45,0x4d,0x5f,0x43,0x4d,0x44,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x57,0x45,0x42,0x20,0x4f,0x46,0x20,0x54,0x52,0x55,0x53,0x54,0x20,0x28,0x57,0x6f,0x54,0x29,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x76,0x69,0x61,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x77,0x6f,0x74,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x76,0x69,0x61,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x57,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x28,0x6c,0x65,0x76,0x65,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x74,0x6f,0x20,0x24,0x7b,0x6c,0x65,0x76,0x65,0x6c,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x20,0x66,0x6f,0x72,0x20,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x22,0x2c,0x20,0x22,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x2c,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6c,0x65,0x76,0x65,0x6c,0x29,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x73,0x65,0x74,0x20,0x74,0x6f,0x20,0x24,0x7b,0x6c,0x65,0x76,0x65,0x6c,0x7d,0x20,0x2d,0x20,0x73,0x79,0x6e,0x63,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x61,0x6c,0x6c,0x6f,0x77,0x20,0x73,0x79,0x6e,0x63,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x57,0x6f,0x54,0x20,0x6c,0x65,0x76,0x65,0x6c,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x63,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x64,0x6d,0x69,0x6e,0x27,0x73,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x79,0x6e,0x63,0x57,0x6f,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x54,0x72,0x69,0x67,0x67,0x65,0x72,0x69,0x6e,0x67,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x79,0x6e,0x63,0x20,0x57,0x6f,0x54,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x77,0x6f,0x74,0x5f,0x73,0x79,0x6e,0x63,0x22,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x79,0x6e,0x63,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x20,0x64,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x79,0x6e,0x63,0x20,0x57,0x6f,0x54,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x55,0x49,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x57,0x6f,0x54,0x20,0x53,0x54,0x41,0x54,0x55,0x53,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x4b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x46,0x6f,0x75,0x6e,0x64,0x20,0xe2,0x9c,0x93,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x77,0x6f,0x74,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x6f,0x74,0x2d,0x66,0x6f,0x75,0x6e,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x4e,0x6f,0x74,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0xe2,0x9c,0x97,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x33,0x49,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x77,0x6f,0x74,0x2d,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x77,0x6f,0x74,0x2d,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x43,0x6f,0x75,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x3f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3a,0x20,0x27,0xe2,0x80,0x94,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x3f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x5b,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x30,0x42,0x74,0x6e,0x27,0x2c,0x20,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x31,0x42,0x74,0x6e,0x27,0x2c,0x20,0x27,0x77,0x6f,0x74,0x4c,0x65,0x76,0x65,0x6c,0x32,0x42,0x74,0x6e,0x27,0x5d,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x69,0x64,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x69,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x62,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x20,0x3d,0x3d,0x3d,0x20,0x6c,0x65,0x76,0x65,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x74,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x74,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x4c,0x65,0x76,0x65,0x6c,0x20,0x30,0x3a,0x20,0x4f,0x70,0x65,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0xe2,0x80,0x94,0x20,0x61,0x6e,0x79,0x6f,0x6e,0x65,0x20,0x63,0x61,0x6e,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x6e,0x64,0x20,0x77,0x72,0x69,0x74,0x65,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x4c,0x65,0x76,0x65,0x6c,0x20,0x31,0x3a,0x20,0x57,0x72,0x69,0x74,0x65,0x2d,0x6f,0x6e,0x6c,0x79,0x20,0xe2,0x80,0x94,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x63,0x61,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x4c,0x65,0x76,0x65,0x6c,0x20,0x32,0x3a,0x20,0x46,0x75,0x6c,0x6c,0x20,0xe2,0x80,0x94,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x63,0x61,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x41,0x4e,0x44,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x28,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x29,0x27,0x0a,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x76,0x65,0x6c,0x44,0x65,0x73,0x63,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x6c,0x65,0x76,0x65,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x2f,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x20,0x73,0x79,0x6e,0x63,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6b,0x69,0x6e,0x64,0x20,0x33,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x6e,0x63,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x79,0x6e,0x63,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x53,0x79,0x6e,0x63,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x79,0x6e,0x63,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x79,0x6e,0x63,0x42,0x74,0x6e,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x21,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x57,0x6f,0x54,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x6c,0x65,0x76,0x65,0x6c,0x3d,0x24,0x7b,0x6c,0x65,0x76,0x65,0x6c,0x7d,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x3d,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x33,0x5f,0x65,0x78,0x69,0x73,0x74,0x73,0x7d,0x2c,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x3d,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x77,0x6f,0x74,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x4d,0x4f,0x44,0x49,0x46,0x49,0x43,0x41,0x54,0x49,0x4f,0x4e,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x2f,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x73,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x73,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x74,0x68,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x21,0x3d,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x7d,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x52,0x55,0x4c,0x45,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x5f,0x72,0x75,0x6c,0x65,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x5f,0x72,0x75,0x6c,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x52,0x45,0x43,0x56,0x27,0x2c,0x20,0x60,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x65,0x64,0x20,0x72,0x75,0x6c,0x65,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x41,0x55,0x54,0x48,0x5f,0x52,0x55,0x4c,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x46,0x72,0x6f,0x6d,0x52,0x65,0x6c,0x61,0x79,0x28,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x73,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x64,0x65,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x46,0x45,0x54,0x43,0x48,0x49,0x4e,0x47,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x56,0x49,0x41,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x41,0x50,0x49,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x62,0x6f,0x74,0x68,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x69,0x72,0x73,0x74,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x69,0x72,0x73,0x74,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x28,0x6f,0x6e,0x6c,0x79,0x20,0x69,0x66,0x20,0x6e,0x6f,0x74,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x61,0x20,0x6d,0x6f,0x6d,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x28,0x6f,0x6e,0x6c,0x79,0x20,0x69,0x66,0x20,0x77,0x65,0x20,0x6a,0x75,0x73,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x69,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x35,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x69,0x66,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x26,0x26,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x2c,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x6e,0x74,0x3a,0x20,0x27,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x63,0x61,0x6e,0x20,0x62,0x65,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x20,0x66,0x61,0x69,0x6c,0x20,0x28,0x77,0x72,0x6f,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6b,0x65,0x79,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x2d,0x73,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6f,0x72,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x2e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x2d,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x74,0x61,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x61,0x74,0x63,0x68,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x44,0x49,0x53,0x50,0x4c,0x41,0x59,0x49,0x4e,0x47,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x41,0x54,0x49,0x4f,0x4e,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x61,0x67,0x73,0x20,0x28,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x6f,0x6e,0x6c,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x74,0x61,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x67,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x32,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x65,0x79,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x66,0x6f,0x72,0x20,0x76,0x61,0x6c,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x76,0x61,0x6c,0x75,0x65,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x72,0x6f,0x77,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x69,0x6e,0x64,0x65,0x78,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x20,0x41,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x63,0x65,0x6c,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2d,0x63,0x65,0x6c,0x6c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x72,0x6f,0x77,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x69,0x6e,0x64,0x65,0x78,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x6c,0x79,0x20,0x68,0x69,0x64,0x65,0x20,0x74,0x68,0x65,0x20,0x53,0x41,0x56,0x45,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x53,0x41,0x56,0x45,0x20,0x74,0x65,0x78,0x74,0x20,0x61,0x6e,0x64,0x20,0x6d,0x61,0x6b,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x68,0x69,0x73,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x74,0x68,0x69,0x73,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x61,0x76,0x65,0x49,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6b,0x65,0x79,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x63,0x65,0x6c,0x6c,0x73,0x5b,0x31,0x5d,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x76,0x61,0x6c,0x75,0x65,0x49,0x6e,0x70,0x75,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x69,0x66,0x20,0x6e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x49,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6b,0x65,0x79,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x61,0x76,0x65,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x68,0x61,0x73,0x6e,0x27,0x74,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x61,0x76,0x69,0x6e,0x67,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x20,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x79,0x70,0x65,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6b,0x65,0x79,0x20,0x6e,0x61,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x5b,0x27,0x6d,0x61,0x78,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x27,0x70,0x6f,0x77,0x5f,0x6d,0x69,0x6e,0x5f,0x64,0x69,0x66,0x66,0x69,0x63,0x75,0x6c,0x74,0x79,0x27,0x2c,0x20,0x27,0x6e,0x69,0x70,0x34,0x32,0x5f,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x5f,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x5f,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x70,0x65,0x72,0x5f,0x63,0x6c,0x69,0x65,0x6e,0x74,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x74,0x61,0x67,0x73,0x27,0x2c,0x20,0x27,0x6d,0x61,0x78,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x5f,0x6c,0x65,0x6e,0x67,0x74,0x68,0x27,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x5b,0x27,0x61,0x75,0x74,0x68,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x27,0x6e,0x69,0x70,0x34,0x32,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x6e,0x69,0x70,0x34,0x30,0x5f,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x65,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x6b,0x65,0x79,0x20,0x6e,0x61,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x67,0x65,0x6e,0x65,0x72,0x61,0x6c,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x69,0x70,0x34,0x30,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x69,0x70,0x34,0x32,0x5f,0x27,0x29,0x20,0x7c,0x7c,0x20,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x61,0x75,0x74,0x68,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x70,0x6f,0x77,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x70,0x72,0x6f,0x6f,0x66,0x5f,0x6f,0x66,0x5f,0x77,0x6f,0x72,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6d,0x61,0x78,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x20,0x3d,0x20,0x27,0x6c,0x69,0x6d,0x69,0x74,0x73,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x65,0x6c,0x6c,0x20,0x64,0x75,0x72,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x49,0x4e,0x47,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x74,0x2d,0x61,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x65,0x6c,0x6c,0x73,0x5b,0x31,0x5d,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x53,0x41,0x56,0x45,0x20,0x74,0x65,0x78,0x74,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6e,0x6f,0x77,0x20,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x44,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4b,0x65,0x65,0x70,0x20,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x70,0x75,0x74,0x20,0x26,0x26,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x74,0x72,0x61,0x6e,0x73,0x70,0x61,0x72,0x65,0x6e,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x3a,0x20,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x24,0x7b,0x6b,0x65,0x79,0x7d,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x53,0x41,0x56,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x3d,0x20,0x27,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x20,0x3d,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x61,0x76,0x65,0x49,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x6b,0x65,0x79,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x2e,0x70,0x61,0x72,0x65,0x6e,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x65,0x6c,0x6c,0x73,0x5b,0x31,0x5d,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x2c,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x43,0x65,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x77,0x69,0x74,0x68,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x20,0x28,0x69,0x6e,0x6e,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x22,0x2c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x28,0x73,0x29,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x55,0x50,0x44,0x41,0x54,0x45,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x6b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x76,0x61,0x6c,0x75,0x65,0x7d,0x20,0x28,0x24,0x7b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x7d,0x29,0x60,0x2c,0x20,0x27,0x43,0x4f,0x4e,0x46,0x49,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x72,0x6f,0x66,0x69,0x6c,0x65,0x20,0x61,0x72,0x65,0x61,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x61,0x6e,0x64,0x20,0x64,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x77,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x20,0x66,0x6f,0x6f,0x74,0x65,0x72,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x20,0x63,0x6f,0x70,0x79,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x26,0x26,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x21,0x3d,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x66,0x75,0x6c,0x6c,0x20,0x6e,0x70,0x75,0x62,0x20,0x28,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6c,0x6c,0x20,0x77,0x68,0x69,0x74,0x65,0x73,0x70,0x61,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,0x73,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x75,0x6c,0x6c,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x73,0x2f,0x67,0x2c,0x20,0x27,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x6f,0x72,0x2e,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x2e,0x77,0x72,0x69,0x74,0x65,0x54,0x65,0x78,0x74,0x28,0x66,0x75,0x6c,0x6c,0x4e,0x70,0x75,0x62,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x66,0x6f,0x72,0x20,0x76,0x69,0x73,0x75,0x61,0x6c,0x20,0x66,0x65,0x65,0x64,0x62,0x61,0x63,0x6b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x63,0x6f,0x70,0x69,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x63,0x6f,0x70,0x69,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x6e,0x70,0x75,0x62,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x6f,0x70,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x63,0x6c,0x69,0x70,0x62,0x6f,0x61,0x72,0x64,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x6c,0x65,0x74,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x4f,0x4d,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x6c,0x6f,0x67,0x69,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x72,0x65,0x61,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x73,0x68,0x6f,0x77,0x20,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x63,0x68,0x65,0x63,0x6b,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x73,0x6f,0x20,0x68,0x69,0x64,0x65,0x20,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x57,0x6f,0x54,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x28,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x2d,0x6f,0x70,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x76,0x69,0x61,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x61,0x6c,0x6c,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x61,0x75,0x74,0x68,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x72,0x75,0x6c,0x65,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x44,0x49,0x53,0x50,0x4c,0x41,0x59,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x75,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x27,0x2c,0x20,0x72,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x75,0x6c,0x65,0x73,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3a,0x27,0x2c,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x3f,0x20,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3a,0x20,0x27,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3f,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3a,0x20,0x27,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x3a,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6c,0x65,0x61,0x72,0x65,0x64,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x75,0x6c,0x65,0x73,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x2c,0x20,0x73,0x68,0x6f,0x77,0x69,0x6e,0x67,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x36,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x72,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x72,0x75,0x6c,0x65,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3a,0x60,0x2c,0x20,0x72,0x75,0x6c,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x6e,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x26,0x26,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x20,0x62,0x72,0x65,0x61,0x6b,0x2d,0x61,0x6c,0x6c,0x3b,0x20,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x32,0x30,0x30,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x3f,0x20,0x27,0x41,0x63,0x74,0x69,0x76,0x65,0x27,0x20,0x3a,0x20,0x27,0x49,0x6e,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x65,0x64,0x69,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x32,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x34,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x45,0x44,0x49,0x54,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x32,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x34,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x44,0x45,0x4c,0x45,0x54,0x45,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x54,0x6f,0x74,0x61,0x6c,0x20,0x52,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x2c,0x20,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x52,0x75,0x6c,0x65,0x73,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x72,0x20,0x3d,0x3e,0x20,0x72,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x44,0x49,0x53,0x50,0x4c,0x41,0x59,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x28,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x63,0x61,0x6c,0x6c,0x65,0x64,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x48,0x4f,0x57,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x54,0x41,0x42,0x4c,0x45,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x73,0x74,0x79,0x6c,0x65,0x3a,0x27,0x2c,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3f,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3a,0x20,0x27,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x74,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x77,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x68,0x61,0x76,0x65,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x2c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x74,0x68,0x65,0x6d,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x3a,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2c,0x20,0x27,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x24,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x72,0x75,0x6c,0x65,0x73,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x72,0x75,0x6c,0x65,0x73,0x2c,0x20,0x6c,0x6f,0x61,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x63,0x61,0x63,0x68,0x65,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x2c,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x65,0x64,0x20,0x2d,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x3a,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x6e,0x6f,0x74,0x20,0x66,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x53,0x48,0x4f,0x57,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x53,0x20,0x54,0x41,0x42,0x4c,0x45,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x41,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x41,0x64,0x64,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x2e,0x72,0x65,0x73,0x65,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4f,0x70,0x65,0x6e,0x65,0x64,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x64,0x69,0x74,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x64,0x69,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x64,0x65,0x78,0x20,0x3c,0x20,0x30,0x20,0x7c,0x7c,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x3e,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x5b,0x69,0x6e,0x64,0x65,0x78,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x7b,0x20,0x2e,0x2e,0x2e,0x72,0x75,0x6c,0x65,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x3a,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x54,0x69,0x74,0x6c,0x65,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x45,0x64,0x69,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x41,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x61,0x63,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x61,0x6c,0x6c,0x6f,0x77,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x20,0x28,0x69,0x6e,0x6e,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x64,0x65,0x78,0x20,0x3c,0x20,0x30,0x20,0x7c,0x7c,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x3e,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x5b,0x69,0x6e,0x64,0x65,0x78,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x4d,0x73,0x67,0x20,0x3d,0x20,0x60,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x3f,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x4d,0x73,0x67,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x44,0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x6c,0x65,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x22,0x2c,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x20,0x7c,0x7c,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x75,0x6c,0x65,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x61,0x72,0x67,0x65,0x74,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x22,0x2c,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x2c,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x55,0x49,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x69,0x76,0x65,0x6e,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x73,0x70,0x6c,0x69,0x63,0x65,0x28,0x69,0x6e,0x64,0x65,0x78,0x2c,0x20,0x31,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x41,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x72,0x75,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x74,0x79,0x70,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x76,0x61,0x6c,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x61,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x61,0x6e,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x28,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x29,0x20,0x26,0x26,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x36,0x34,0x20,0x68,0x65,0x78,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x78,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x28,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x20,0x7c,0x7c,0x20,0x72,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x20,0x3d,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x65,0x78,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x2e,0x74,0x65,0x73,0x74,0x28,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x6d,0x75,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x68,0x65,0x78,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x28,0x30,0x2d,0x39,0x2c,0x20,0x61,0x2d,0x66,0x2c,0x20,0x41,0x2d,0x46,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x28,0x61,0x64,0x64,0x20,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x56,0x61,0x6c,0x75,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x41,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20,0x74,0x72,0x75,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x55,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x4f,0x44,0x4f,0x3a,0x20,0x49,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x72,0x75,0x6c,0x65,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x76,0x69,0x61,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x20,0x6e,0x6f,0x77,0x2c,0x20,0x6a,0x75,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x5b,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x2e,0x69,0x6e,0x64,0x65,0x78,0x5d,0x20,0x3d,0x20,0x7b,0x20,0x2e,0x2e,0x2e,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2c,0x20,0x69,0x64,0x3a,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x28,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x6e,0x65,0x77,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x4f,0x44,0x4f,0x3a,0x20,0x49,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x72,0x75,0x6c,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x61,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x20,0x6e,0x6f,0x77,0x2c,0x20,0x6a,0x75,0x73,0x74,0x20,0x61,0x64,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x20,0x2e,0x2e,0x2e,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2c,0x20,0x69,0x64,0x3a,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x28,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x69,0x6d,0x70,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x29,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x61,0x75,0x74,0x6f,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x73,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x75,0x74,0x6f,0x45,0x6e,0x61,0x62,0x6c,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x3d,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x3b,0x0a,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x20,0x3d,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x44,0x4d,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x61,0x6e,0x64,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x22,0x3e,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x3b,0x0a,0x7d,0x3b,0x0a,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x3d,0x20,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x3b,0x0a,0x73,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x53,0x68,0x6f,0x77,0x4d,0x61,0x69,0x6e,0x49,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x73,0x68,0x6f,0x77,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x63,0x61,0x6c,0x6c,0x20,0x2d,0x20,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x6e,0x6f,0x77,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x0a,0x7d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x69,0x66,0x20,0x28,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x27,0x2c,0x20,0x73,0x61,0x76,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x69,0x66,0x20,0x28,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x61,0x6e,0x63,0x65,0x6c,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x64,0x65,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x46,0x6f,0x72,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x53,0x54,0x52,0x45,0x41,0x4d,0x4c,0x49,0x4e,0x45,0x44,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x73,0x65,0x63,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6f,0x72,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x73,0x65,0x63,0x54,0x6f,0x48,0x65,0x78,0x28,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x20,0x7c,0x7c,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x69,0x74,0x27,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x20,0x68,0x65,0x78,0x2c,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x61,0x73,0x2d,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x7b,0x36,0x34,0x7d,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x69,0x74,0x20,0x73,0x74,0x61,0x72,0x74,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x73,0x65,0x63,0x31,0x2c,0x20,0x74,0x72,0x79,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x73,0x65,0x63,0x31,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6e,0x73,0x65,0x63,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x73,0x20,0x6f,0x66,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x31,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x68,0x65,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x32,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x62,0x20,0x3d,0x3e,0x20,0x62,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x28,0x32,0x2c,0x20,0x27,0x30,0x27,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x20,0x6e,0x73,0x65,0x63,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x69,0x74,0x20,0x73,0x74,0x61,0x72,0x74,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x70,0x75,0x62,0x31,0x2c,0x20,0x74,0x72,0x79,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x6e,0x70,0x75,0x62,0x31,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x64,0x65,0x63,0x6f,0x64,0x65,0x28,0x74,0x72,0x69,0x6d,0x6d,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6e,0x70,0x75,0x62,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x74,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x73,0x20,0x6f,0x66,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x31,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x68,0x65,0x78,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x32,0x20,0x73,0x74,0x79,0x6c,0x65,0x20,0x2d,0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x73,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x2e,0x64,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x62,0x20,0x3d,0x3e,0x20,0x62,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x28,0x32,0x2c,0x20,0x27,0x30,0x27,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x28,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x70,0x75,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6f,0x72,0x20,0x6e,0x73,0x65,0x63,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x73,0x65,0x63,0x20,0x6f,0x72,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x69,0x66,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x73,0x65,0x63,0x54,0x6f,0x48,0x65,0x78,0x28,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x20,0x6f,0x72,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x78,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2e,0x20,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x36,0x34,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x64,0x65,0x6e,0x79,0x27,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x71,0x75,0x65,0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x56,0x69,0x61,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x24,0x7b,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x21,0x3d,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x20,0x28,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x63,0x6f,0x6d,0x62,0x69,0x6e,0x65,0x64,0x20,0x69,0x6e,0x70,0x75,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x52,0x75,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x50,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6f,0x72,0x20,0x6e,0x73,0x65,0x63,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x73,0x65,0x63,0x20,0x6f,0x72,0x20,0x6e,0x70,0x75,0x62,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x69,0x66,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x73,0x65,0x63,0x54,0x6f,0x48,0x65,0x78,0x28,0x69,0x6e,0x70,0x75,0x74,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x6e,0x70,0x75,0x62,0x31,0x2e,0x2e,0x2e,0x20,0x6f,0x72,0x20,0x36,0x34,0x2d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x78,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x36,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2e,0x20,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20,0x36,0x34,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x44,0x69,0x76,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x61,0x72,0x6e,0x69,0x6e,0x67,0x44,0x69,0x76,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x61,0x6c,0x6c,0x6f,0x77,0x27,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x71,0x75,0x65,0x75,0x65,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x56,0x69,0x61,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x74,0x68,0x65,0x6e,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x24,0x7b,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x66,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x54,0x61,0x62,0x6c,0x65,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x21,0x3d,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x2d,0x20,0x46,0x49,0x58,0x45,0x44,0x20,0x74,0x6f,0x20,0x6d,0x61,0x74,0x63,0x68,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x56,0x69,0x61,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x70,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2d,0x73,0x69,0x64,0x65,0x20,0x72,0x75,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x73,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x28,0x6d,0x61,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x74,0x65,0x73,0x74,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x68,0x61,0x73,0x68,0x5f,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x68,0x61,0x73,0x68,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x75,0x6c,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x24,0x7b,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x75,0x6c,0x65,0x5f,0x74,0x79,0x70,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x61,0x73,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x74,0x65,0x73,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x20,0x5b,0x22,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x61,0x62,0x63,0x31,0x32,0x33,0x2e,0x2e,0x2e,0x22,0x5d,0x20,0x6f,0x72,0x20,0x5b,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x64,0x65,0x66,0x34,0x35,0x36,0x2e,0x2e,0x2e,0x22,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x75,0x6c,0x65,0x54,0x79,0x70,0x65,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x50,0x61,0x74,0x74,0x65,0x72,0x6e,0x54,0x79,0x70,0x65,0x2c,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x2e,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x75,0x65,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x4c,0x6f,0x67,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x28,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x29,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x52,0x75,0x6c,0x65,0x20,0x44,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x75,0x6c,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x41,0x72,0x72,0x61,0x79,0x3a,0x27,0x2c,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x28,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x29,0x3a,0x27,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x32,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x41,0x55,0x54,0x48,0x20,0x52,0x55,0x4c,0x45,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x41,0x64,0x64,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x64,0x64,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x28,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x29,0x3a,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x64,0x64,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x54,0x45,0x53,0x54,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x20,0x46,0x4f,0x52,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x41,0x50,0x49,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x6f,0x67,0x67,0x69,0x6e,0x67,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x2d,0x6c,0x6f,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x54,0x27,0x29,0x5b,0x31,0x5d,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2e,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x53,0x45,0x4e,0x54,0x27,0x20,0x3f,0x20,0x27,0x23,0x30,0x30,0x37,0x62,0x66,0x66,0x27,0x20,0x3a,0x20,0x27,0x23,0x32,0x38,0x61,0x37,0x34,0x35,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x22,0x3e,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x7d,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x36,0x36,0x36,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x74,0x79,0x70,0x65,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6c,0x6f,0x67,0x45,0x6e,0x74,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x54,0x6f,0x70,0x20,0x3d,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x48,0x65,0x69,0x67,0x68,0x74,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x27,0x5b,0x22,0x61,0x75,0x74,0x68,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x61,0x75,0x74,0x68,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x64,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x47,0x65,0x74,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x6c,0x6c,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x6c,0x6c,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x65,0x61,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x27,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x63,0x6c,0x65,0x61,0x72,0x5f,0x61,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x5f,0x72,0x75,0x6c,0x65,0x73,0x22,0x5d,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x64,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x43,0x6c,0x65,0x61,0x72,0x20,0x41,0x75,0x74,0x68,0x20,0x52,0x75,0x6c,0x65,0x73,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3f,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x61,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x6e,0x6f,0x6e,0x65,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x27,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x55,0x73,0x69,0x6e,0x67,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x64,0x69,0x6e,0x67,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x60,0x5b,0x22,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x22,0x5d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3f,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x61,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x6e,0x6f,0x6e,0x65,0x20,0x70,0x72,0x6f,0x76,0x69,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x27,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x61,0x62,0x63,0x64,0x65,0x66,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x55,0x73,0x69,0x6e,0x67,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x61,0x64,0x64,0x69,0x6e,0x67,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x72,0x75,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x60,0x5b,0x22,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x22,0x2c,0x20,0x22,0x70,0x75,0x62,0x6b,0x65,0x79,0x22,0x2c,0x20,0x22,0x24,0x7b,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x22,0x5d,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x75,0x74,0x68,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x41,0x64,0x64,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x67,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x27,0x5b,0x22,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x3a,0x20,0x50,0x6f,0x73,0x74,0x20,0x42,0x61,0x73,0x69,0x63,0x20,0x45,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x6f,0x73,0x74,0x69,0x6e,0x67,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x69,0x63,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x6f,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x54,0x45,0x53,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x61,0x20,0x73,0x69,0x6d,0x70,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x31,0x20,0x74,0x65,0x78,0x74,0x20,0x6e,0x6f,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x74,0x22,0x2c,0x20,0x22,0x74,0x65,0x73,0x74,0x22,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5b,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x22,0x2c,0x20,0x22,0x63,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x61,0x70,0x69,0x22,0x5d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x61,0x74,0x20,0x24,0x7b,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x49,0x53,0x4f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x28,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x29,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x74,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x74,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x53,0x45,0x4e,0x54,0x27,0x2c,0x20,0x60,0x53,0x69,0x67,0x6e,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x29,0x7d,0x60,0x2c,0x20,0x27,0x45,0x56,0x45,0x4e,0x54,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6d,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x77,0x69,0x74,0x68,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6e,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x54,0x65,0x73,0x74,0x20,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x6f,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x54,0x65,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x21,0x27,0x2c,0x20,0x27,0x53,0x55,0x43,0x43,0x45,0x53,0x53,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x70,0x70,0x65,0x61,0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x61,0x62,0x6f,0x76,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x50,0x6f,0x73,0x74,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x74,0x65,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x7d,0x60,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x77,0x65,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x74,0x6f,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x76,0x69,0x61,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x2d,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x75,0x73,0x65,0x72,0x27,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x65,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x73,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x60,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3a,0x20,0x54,0x72,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x69,0x66,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x66,0x61,0x69,0x6c,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x27,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x69,0x6e,0x67,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x44,0x45,0x42,0x55,0x47,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x6e,0x6f,0x73,0x74,0x72,0x2d,0x74,0x6f,0x6f,0x6c,0x73,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x65,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x27,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x2c,0x20,0x62,0x75,0x74,0x20,0x77,0x65,0x20,0x63,0x61,0x6e,0x27,0x74,0x20,0x67,0x65,0x74,0x20,0x69,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x73,0x65,0x63,0x75,0x72,0x69,0x74,0x79,0x20,0x6c,0x69,0x6d,0x69,0x74,0x61,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x77,0x65,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x75,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x43,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x2d,0x20,0x75,0x73,0x65,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x45,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x2c,0x20,0x60,0x46,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x45,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x69,0x72,0x65,0x63,0x74,0x20,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x20,0x6c,0x61,0x79,0x65,0x72,0x69,0x6e,0x67,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x4e,0x49,0x50,0x31,0x37,0x44,0x4d,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x44,0x4d,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x44,0x4d,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x70,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x63,0x68,0x65,0x63,0x6b,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x20,0x61,0x20,0x4e,0x49,0x50,0x2d,0x30,0x37,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x20,0x61,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x65,0x63,0x72,0x65,0x74,0x4b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x21,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x20,0x6f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x27,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x20,0x6c,0x69,0x62,0x72,0x61,0x72,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x62,0x75,0x6e,0x64,0x6c,0x65,0x2e,0x6a,0x73,0x20,0x69,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x3a,0x20,0x24,0x7b,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x35,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x31,0x3a,0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x34,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6d,0x6f,0x72,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x34,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6e,0x6f,0x6e,0x69,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x72,0x75,0x6d,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x4f,0x54,0x45,0x3a,0x20,0x52,0x75,0x6d,0x6f,0x72,0x20,0x72,0x65,0x6d,0x61,0x69,0x6e,0x73,0x20,0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x70,0x65,0x72,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x75,0x6d,0x6f,0x72,0x20,0x62,0x75,0x69,0x6c,0x74,0x20,0x28,0x75,0x6e,0x73,0x69,0x67,0x6e,0x65,0x64,0x29,0x2c,0x20,0x63,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x65,0x61,0x6c,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x32,0x3a,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x65,0x61,0x6c,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x33,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x61,0x6c,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x33,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x4e,0x6f,0x77,0x28,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5d,0x2c,0x20,0x2f,0x2f,0x20,0x45,0x6d,0x70,0x74,0x79,0x20,0x74,0x61,0x67,0x73,0x20,0x70,0x65,0x72,0x20,0x4e,0x49,0x50,0x2d,0x35,0x39,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x72,0x75,0x6d,0x6f,0x72,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x73,0x65,0x61,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x6c,0x6f,0x6e,0x67,0x2d,0x74,0x65,0x72,0x6d,0x20,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x73,0x65,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x67,0x6e,0x20,0x73,0x65,0x61,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x61,0x6c,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x2c,0x20,0x63,0x72,0x65,0x61,0x74,0x69,0x6e,0x67,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x65,0x70,0x20,0x33,0x3a,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x31,0x30,0x35,0x39,0x29,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x53,0x65,0x63,0x72,0x65,0x74,0x4b,0x65,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x67,0x65,0x74,0x50,0x75,0x62,0x6c,0x69,0x63,0x4b,0x65,0x79,0x28,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x67,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x31,0x30,0x35,0x39,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x75,0x62,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x4e,0x6f,0x77,0x28,0x29,0x2c,0x20,0x2f,0x2f,0x20,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x69,0x7a,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x28,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x53,0x65,0x61,0x6c,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x34,0x34,0x2e,0x67,0x65,0x74,0x43,0x6f,0x6e,0x76,0x65,0x72,0x73,0x61,0x74,0x69,0x6f,0x6e,0x4b,0x65,0x79,0x28,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x66,0x69,0x6e,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x66,0x69,0x6e,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x28,0x67,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2c,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x50,0x72,0x69,0x76,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x69,0x67,0x6e,0x20,0x67,0x69,0x66,0x74,0x20,0x77,0x72,0x61,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x4c,0x6f,0x67,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x43,0x52,0x45,0x41,0x54,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x75,0x6c,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x32,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x27,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x63,0x61,0x6c,0x20,0x64,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x45,0x4e,0x44,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x45,0x56,0x45,0x4e,0x54,0x20,0x44,0x45,0x42,0x55,0x47,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x65,0x70,0x68,0x65,0x6d,0x65,0x72,0x61,0x6c,0x20,0x6b,0x65,0x79,0x2c,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x47,0x69,0x66,0x74,0x57,0x72,0x61,0x70,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x20,0x64,0x6d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x61,0x6e,0x64,0x20,0x73,0x68,0x6f,0x77,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x4f,0x75,0x74,0x62,0x6f,0x78,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x27,0x73,0x65,0x6e,0x74,0x27,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x54,0x6f,0x49,0x6e,0x62,0x6f,0x78,0x28,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x65,0x6e,0x74,0x27,0x20,0x3f,0x20,0x27,0x23,0x30,0x30,0x37,0x62,0x66,0x66,0x27,0x20,0x3a,0x20,0x27,0x23,0x32,0x38,0x61,0x37,0x34,0x35,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x73,0x20,0x74,0x6f,0x20,0x3c,0x62,0x72,0x3e,0x20,0x74,0x61,0x67,0x73,0x20,0x66,0x6f,0x72,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x20,0x48,0x54,0x4d,0x4c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x6e,0x2f,0x67,0x2c,0x20,0x27,0x3c,0x62,0x72,0x3e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x60,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x36,0x36,0x36,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x70,0x78,0x3b,0x22,0x3e,0x28,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x29,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x22,0x3e,0x24,0x7b,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x43,0x6f,0x6c,0x6f,0x72,0x7d,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x74,0x6f,0x55,0x70,0x70,0x65,0x72,0x43,0x61,0x73,0x65,0x28,0x29,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x70,0x72,0x65,0x2d,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x24,0x7b,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x22,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x3d,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x20,0x26,0x26,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x4e,0x6f,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x79,0x65,0x74,0x2e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6e,0x65,0x77,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x74,0x6f,0x70,0x0a,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x69,0x6e,0x73,0x65,0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x44,0x69,0x76,0x2c,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x6d,0x69,0x74,0x20,0x74,0x6f,0x20,0x6c,0x61,0x73,0x74,0x20,0x35,0x30,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x28,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x35,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x64,0x6d,0x49,0x6e,0x62,0x6f,0x78,0x2e,0x6c,0x61,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x6e,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x2f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x6f,0x72,0x20,0x75,0x73,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x2e,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x69,0x6e,0x74,0x6f,0x20,0x33,0x20,0x6c,0x69,0x6e,0x65,0x73,0x20,0x6f,0x66,0x20,0x32,0x31,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,0x65,0x61,0x63,0x68,0x2c,0x20,0x77,0x69,0x74,0x68,0x20,0x73,0x70,0x61,0x63,0x65,0x73,0x20,0x64,0x69,0x76,0x69,0x64,0x69,0x6e,0x67,0x20,0x65,0x61,0x63,0x68,0x20,0x6c,0x69,0x6e,0x65,0x20,0x69,0x6e,0x74,0x6f,0x20,0x33,0x20,0x67,0x72,0x6f,0x75,0x70,0x73,0x20,0x6f,0x66,0x20,0x37,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x33,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x6e,0x65,0x31,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x37,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x37,0x2c,0x20,0x31,0x34,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x34,0x2c,0x20,0x32,0x31,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x6e,0x65,0x32,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x32,0x31,0x2c,0x20,0x32,0x38,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x32,0x38,0x2c,0x20,0x33,0x35,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x33,0x35,0x2c,0x20,0x34,0x32,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x69,0x6e,0x65,0x33,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x34,0x32,0x2c,0x20,0x34,0x39,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x34,0x39,0x2c,0x20,0x35,0x36,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x35,0x36,0x2c,0x20,0x36,0x33,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4e,0x70,0x75,0x62,0x20,0x3d,0x20,0x6c,0x69,0x6e,0x65,0x31,0x20,0x2b,0x20,0x27,0x5c,0x6e,0x27,0x20,0x2b,0x20,0x6c,0x69,0x6e,0x65,0x32,0x20,0x2b,0x20,0x27,0x5c,0x6e,0x27,0x20,0x2b,0x20,0x6c,0x69,0x6e,0x65,0x33,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x3f,0x20,0x60,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7d,0x20,0x24,0x7b,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x7d,0x60,0x20,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x69,0x74,0x6c,0x65,0x20,0x3d,0x20,0x60,0x24,0x7b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x7d,0x20,0x41,0x64,0x6d,0x69,0x6e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x74,0x65,0x64,0x4e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x72,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x4e,0x49,0x50,0x2d,0x31,0x31,0x20,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x0a,0x6c,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x69,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x6f,0x72,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x69,0x6e,0x64,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x69,0x74,0x65,0x6d,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x69,0x6e,0x64,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x69,0x74,0x65,0x6d,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x27,0x29,0x3f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x66,0x69,0x6e,0x64,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x69,0x74,0x65,0x6d,0x2e,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x5f,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3f,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x6f,0x73,0x74,0x72,0x20,0x52,0x65,0x6c,0x61,0x79,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x44,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x4e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x69,0x6d,0x6d,0x65,0x64,0x69,0x61,0x74,0x65,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x49,0x6e,0x66,0x6f,0x49,0x6e,0x48,0x65,0x61,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x64,0x79,0x6e,0x61,0x6d,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x66,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x2d,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x20,0x69,0x66,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2e,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x66,0x69,0x72,0x73,0x74,0x2e,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x6e,0x68,0x61,0x6e,0x63,0x65,0x64,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x74,0x65,0x73,0x74,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x6e,0x68,0x61,0x6e,0x63,0x65,0x50,0x6f,0x6f,0x6c,0x46,0x6f,0x72,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x70,0x61,0x72,0x73,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x2c,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x6a,0x75,0x73,0x74,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x6f,0x75,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x20,0x6c,0x6f,0x67,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72,0x69,0x61,0x74,0x65,0x6c,0x79,0x2e,0x20,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x64,0x6f,0x6e,0x65,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x65,0x6e,0x68,0x61,0x6e,0x63,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x2d,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x33,0x32,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x28,0x36,0x34,0x20,0x68,0x65,0x78,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x29,0x20,0x66,0x6f,0x72,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x42,0x79,0x74,0x65,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79,0x28,0x33,0x32,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x72,0x79,0x70,0x74,0x6f,0x2e,0x67,0x65,0x74,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x56,0x61,0x6c,0x75,0x65,0x73,0x28,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x42,0x79,0x74,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x68,0x65,0x78,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x42,0x79,0x74,0x65,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x62,0x20,0x3d,0x3e,0x20,0x62,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x31,0x36,0x29,0x2e,0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74,0x28,0x32,0x2c,0x20,0x27,0x30,0x27,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x66,0x69,0x65,0x6c,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x54,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x28,0x27,0x49,0x4e,0x46,0x4f,0x27,0x2c,0x20,0x60,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x20,0x74,0x65,0x73,0x74,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x24,0x7b,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x7d,0x2e,0x2e,0x2e,0x60,0x2c,0x20,0x27,0x4b,0x45,0x59,0x47,0x45,0x4e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x65,0x78,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x44,0x41,0x54,0x41,0x42,0x41,0x53,0x45,0x20,0x53,0x54,0x41,0x54,0x49,0x53,0x54,0x49,0x43,0x53,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x61,0x6e,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x73,0x68,0x6f,0x72,0x74,0x6c,0x79,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x74,0x6f,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x65,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x52,0x45,0x53,0x54,0x41,0x52,0x54,0x49,0x4e,0x47,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x77,0x69,0x6c,0x6c,0x20,0x64,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x20,0x61,0x6e,0x64,0x20,0x6e,0x65,0x65,0x64,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x72,0x65,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x57,0x65,0x62,0x53,0x6f,0x63,0x6b,0x65,0x74,0x20,0x64,0x69,0x73,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x41,0x64,0x6d,0x69,0x6e,0x69,0x73,0x74,0x72,0x61,0x74,0x6f,0x72,0x20,0x41,0x50,0x49,0x20,0x28,0x69,0x6e,0x6e,0x65,0x72,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x74,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x27,0x4e,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x73,0x75,0x72,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x61,0x6c,0x69,0x76,0x65,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x61,0x64,0x79,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x54,0x6f,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x52,0x65,0x61,0x64,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x72,0x65,0x61,0x64,0x79,0x20,0x28,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x61,0x79,0x20,0x68,0x61,0x76,0x65,0x20,0x74,0x69,0x6d,0x65,0x64,0x20,0x6f,0x75,0x74,0x29,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x27,0x2c,0x20,0x27,0x51,0x75,0x65,0x72,0x79,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x66,0x6f,0x72,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x22,0x61,0x6c,0x6c,0x22,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x73,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x73,0x74,0x61,0x74,0x73,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x20,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x46,0x6f,0x72,0x50,0x6f,0x6f,0x6c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3f,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x66,0x72,0x6f,0x6d,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6b,0x65,0x79,0x73,0x28,0x29,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x75,0x72,0x6c,0x5d,0x20,0x7c,0x7c,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x5f,0x63,0x6f,0x6e,0x6e,0x3f,0x2e,0x5b,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x3f,0x2e,0x72,0x65,0x6c,0x61,0x79,0x73,0x3f,0x2e,0x67,0x65,0x74,0x3f,0x2e,0x28,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xf0,0x9f,0x94,0x8e,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x50,0x55,0x42,0x4c,0x49,0x53,0x48,0x20,0x44,0x49,0x41,0x47,0x3a,0x20,0x70,0x72,0x65,0x2d,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6e,0x61,0x70,0x73,0x68,0x6f,0x74,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x55,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x4d,0x61,0x70,0x4b,0x65,0x79,0x73,0x42,0x65,0x66,0x6f,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x43,0x6f,0x6e,0x6e,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x6e,0x54,0x79,0x70,0x65,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x3f,0x2e,0x6e,0x61,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x57,0x73,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x52,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x55,0x72,0x6c,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x73,0x50,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x43,0x6f,0x6e,0x6e,0x3f,0x2e,0x77,0x73,0x3f,0x2e,0x70,0x72,0x6f,0x74,0x6f,0x63,0x6f,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x73,0x52,0x65,0x6c,0x61,0x79,0x4f,0x62,0x6a,0x3a,0x20,0x21,0x21,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x52,0x65,0x6c,0x61,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x3a,0x20,0x70,0x72,0x65,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x52,0x65,0x6c,0x61,0x79,0x3f,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x52,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x73,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x61,0x6e,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x6e,0x74,0x3a,0x20,0x27,0x4c,0x6f,0x67,0x69,0x6e,0x20,0x63,0x61,0x6e,0x20,0x62,0x65,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x20,0x66,0x61,0x69,0x6c,0x20,0x28,0x77,0x72,0x6f,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6b,0x65,0x79,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x2d,0x73,0x69,0x64,0x65,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x6f,0x72,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x2e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x2d,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x27,0x2c,0x20,0x27,0x57,0x61,0x69,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x77,0x61,0x72,0x6e,0x28,0x27,0xe2,0x9d,0x8c,0x20,0x41,0x44,0x4d,0x49,0x4e,0x20,0x43,0x4f,0x4d,0x4d,0x41,0x4e,0x44,0x20,0x52,0x45,0x53,0x55,0x4c,0x54,0x3a,0x20,0x46,0x41,0x49,0x4c,0x45,0x44,0x20,0x28,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x20,0x63,0x61,0x74,0x63,0x68,0x29,0x27,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x3a,0x20,0x65,0x72,0x72,0x6f,0x72,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x74,0x61,0x74,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x73,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x6e,0x6f,0x6e,0x2d,0x73,0x74,0x61,0x74,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x2c,0x20,0x27,0x57,0x41,0x52,0x4e,0x49,0x4e,0x47,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x2c,0x20,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x6b,0x20,0x72,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x20,0x3d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x74,0x6f,0x74,0x61,0x6c,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x6c,0x61,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x20,0x2d,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x41,0x64,0x64,0x69,0x6e,0x67,0x20,0x24,0x7b,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x7d,0x20,0x6e,0x65,0x77,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x74,0x6f,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x20,0x28,0x24,0x7b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x7d,0x20,0x2d,0x20,0x24,0x7b,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x7d,0x29,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x2e,0x61,0x64,0x64,0x56,0x61,0x6c,0x75,0x65,0x28,0x6e,0x65,0x77,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x66,0x6f,0x72,0x20,0x6e,0x65,0x78,0x74,0x20,0x63,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x54,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x54,0x6f,0x74,0x61,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x69,0x6d,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x65,0x78,0x70,0x65,0x63,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x20,0x3d,0x20,0x7b,0x20,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x3a,0x20,0x30,0x2c,0x20,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x3a,0x20,0x30,0x2c,0x20,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x3a,0x20,0x30,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x27,0x29,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x20,0x3d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x27,0x29,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x20,0x3d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x70,0x65,0x72,0x69,0x6f,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x27,0x29,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x20,0x3d,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x28,0x7b,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x3a,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x74,0x69,0x6d,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x54,0x6f,0x70,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x73,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x7c,0x7c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x45,0x42,0x55,0x47,0x3a,0x20,0x4c,0x6f,0x67,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x74,0x68,0x61,0x74,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x77,0x65,0x62,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2c,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x32,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x64,0x65,0x63,0x6f,0x64,0x65,0x64,0x3a,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x43,0x50,0x55,0x20,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x46,0x72,0x6f,0x6d,0x43,0x70,0x75,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x63,0x70,0x75,0x5f,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x43,0x50,0x55,0x20,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x69,0x64,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x2d,0x69,0x64,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x69,0x64,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x77,0x65,0x62,0x73,0x6f,0x63,0x6b,0x65,0x74,0x2d,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x75,0x73,0x61,0x67,0x65,0x5f,0x6d,0x62,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x2d,0x75,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x75,0x73,0x61,0x67,0x65,0x5f,0x6d,0x62,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x2b,0x20,0x27,0x20,0x4d,0x42,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x45,0x4d,0x25,0x20,0x62,0x61,0x72,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x6d,0x50,0x63,0x74,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x31,0x30,0x30,0x2c,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x30,0x2c,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x2d,0x75,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x6d,0x61,0x6b,0x65,0x41,0x73,0x63,0x69,0x69,0x42,0x61,0x72,0x28,0x6d,0x65,0x6d,0x50,0x63,0x74,0x29,0x20,0x2b,0x20,0x27,0x20,0x20,0x27,0x20,0x2b,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x6d,0x6f,0x72,0x79,0x5f,0x75,0x73,0x61,0x67,0x65,0x5f,0x6d,0x62,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x2b,0x20,0x27,0x20,0x4d,0x42,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5f,0x63,0x70,0x75,0x5f,0x63,0x6f,0x72,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x63,0x70,0x75,0x2d,0x63,0x6f,0x72,0x65,0x27,0x2c,0x20,0x27,0x43,0x6f,0x72,0x65,0x20,0x27,0x20,0x2b,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x5f,0x63,0x70,0x75,0x5f,0x63,0x6f,0x72,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x50,0x55,0x25,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x64,0x65,0x6c,0x74,0x61,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x73,0x61,0x6d,0x70,0x6c,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x6f,0x63,0x44,0x65,0x6c,0x74,0x61,0x20,0x3d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x2d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x70,0x72,0x6f,0x63,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x79,0x73,0x44,0x65,0x6c,0x74,0x61,0x20,0x3d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x20,0x2d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x73,0x79,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x79,0x73,0x44,0x65,0x6c,0x74,0x61,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x70,0x75,0x50,0x63,0x74,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x69,0x6e,0x28,0x31,0x30,0x30,0x2c,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x30,0x2c,0x20,0x28,0x70,0x72,0x6f,0x63,0x44,0x65,0x6c,0x74,0x61,0x20,0x2f,0x20,0x73,0x79,0x73,0x44,0x65,0x6c,0x74,0x61,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x63,0x70,0x75,0x2d,0x75,0x73,0x61,0x67,0x65,0x27,0x2c,0x20,0x6d,0x61,0x6b,0x65,0x41,0x73,0x63,0x69,0x69,0x42,0x61,0x72,0x28,0x63,0x70,0x75,0x50,0x63,0x74,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x5f,0x70,0x72,0x65,0x76,0x43,0x70,0x75,0x53,0x61,0x6d,0x70,0x6c,0x65,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x63,0x3a,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x79,0x73,0x3a,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x44,0x61,0x74,0x61,0x2e,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x70,0x75,0x5f,0x74,0x69,0x6d,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x43,0x50,0x55,0x20,0x6d,0x65,0x74,0x72,0x69,0x63,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x6b,0x69,0x6e,0x64,0x73,0x44,0x61,0x74,0x61,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x69,0x6e,0x64,0x73,0x44,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x73,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x28,0x6b,0x69,0x6e,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x20,0x2f,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x3a,0x20,0x27,0x30,0x2e,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x6b,0x69,0x6e,0x64,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x6f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4f,0x76,0x65,0x72,0x76,0x69,0x65,0x77,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x61,0x74,0x61,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x6e,0x64,0x69,0x76,0x69,0x64,0x75,0x61,0x6c,0x20,0x63,0x65,0x6c,0x6c,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x64,0x62,0x2d,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x73,0x69,0x7a,0x65,0x5f,0x62,0x79,0x74,0x65,0x73,0x20,0x3f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x46,0x69,0x6c,0x65,0x53,0x69,0x7a,0x65,0x28,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x73,0x69,0x7a,0x65,0x5f,0x62,0x79,0x74,0x65,0x73,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x74,0x6f,0x74,0x61,0x6c,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6f,0x6c,0x64,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x28,0x64,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x5f,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x6e,0x65,0x77,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x27,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x6c,0x61,0x74,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x61,0x74,0x20,0x3f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x28,0x64,0x61,0x74,0x61,0x2e,0x6c,0x61,0x74,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x61,0x74,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x73,0x20,0x64,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x4b,0x69,0x6e,0x64,0x73,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x33,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x69,0x6e,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x6b,0x69,0x6e,0x64,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x2e,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x69,0x6d,0x65,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x54,0x69,0x6d,0x65,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x61,0x74,0x61,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x63,0x63,0x65,0x73,0x73,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x20,0x3d,0x20,0x64,0x61,0x74,0x61,0x2e,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x65,0x6c,0x6c,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x32,0x34,0x68,0x27,0x2c,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x32,0x34,0x68,0x20,0x7c,0x7c,0x20,0x27,0x30,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x37,0x64,0x27,0x2c,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x37,0x64,0x20,0x7c,0x7c,0x20,0x27,0x30,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x27,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x33,0x30,0x64,0x27,0x2c,0x20,0x74,0x69,0x6d,0x65,0x53,0x74,0x61,0x74,0x73,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x33,0x30,0x64,0x20,0x7c,0x7c,0x20,0x27,0x30,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x28,0x64,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x2e,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x61,0x6d,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6b,0x69,0x6e,0x64,0x2d,0x30,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x28,0x65,0x6e,0x72,0x69,0x63,0x68,0x65,0x64,0x20,0x62,0x79,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3f,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6e,0x61,0x6d,0x65,0x29,0x20,0x3a,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x20,0x62,0x72,0x65,0x61,0x6b,0x2d,0x61,0x6c,0x6c,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x70,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x50,0x75,0x62,0x6b,0x65,0x79,0x73,0x46,0x72,0x6f,0x6d,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x74,0x73,0x2d,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x20,0x7c,0x7c,0x20,0x21,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x64,0x61,0x74,0x61,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x6e,0x70,0x75,0x62,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x6f,0x64,0x65,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x28,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x2f,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x3a,0x20,0x27,0x30,0x2e,0x30,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x61,0x6d,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6b,0x69,0x6e,0x64,0x2d,0x30,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x28,0x65,0x6e,0x72,0x69,0x63,0x68,0x65,0x64,0x20,0x62,0x79,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3f,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6e,0x61,0x6d,0x65,0x29,0x20,0x3a,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x31,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x6f,0x72,0x64,0x2d,0x62,0x72,0x65,0x61,0x6b,0x3a,0x20,0x62,0x72,0x65,0x61,0x6b,0x2d,0x61,0x6c,0x6c,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x65,0x76,0x65,0x6e,0x74,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x70,0x65,0x72,0x63,0x65,0x6e,0x74,0x61,0x67,0x65,0x7d,0x25,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x54,0x61,0x62,0x6c,0x65,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x7c,0x7c,0x20,0x21,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x20,0x7c,0x7c,0x20,0x21,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x72,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x2f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x72,0x65,0x62,0x75,0x69,0x6c,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x47,0x72,0x6f,0x75,0x70,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x29,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x47,0x72,0x6f,0x75,0x70,0x73,0x2e,0x61,0x64,0x64,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x6f,0x72,0x74,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x62,0x79,0x20,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x74,0x6f,0x20,0x67,0x72,0x6f,0x75,0x70,0x20,0x74,0x68,0x65,0x6d,0x20,0x74,0x6f,0x67,0x65,0x74,0x68,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28,0x61,0x2c,0x20,0x62,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x41,0x20,0x3d,0x20,0x61,0x2e,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x42,0x20,0x3d,0x20,0x62,0x2e,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x77,0x73,0x69,0x41,0x2e,0x6c,0x6f,0x63,0x61,0x6c,0x65,0x43,0x6f,0x6d,0x70,0x61,0x72,0x65,0x28,0x77,0x73,0x69,0x42,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x72,0x6f,0x75,0x70,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x62,0x79,0x20,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x75,0x62,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x73,0x69,0x4b,0x65,0x79,0x20,0x3d,0x20,0x73,0x75,0x62,0x2e,0x77,0x73,0x69,0x5f,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x2f,0x41,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x77,0x73,0x69,0x4b,0x65,0x79,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x77,0x73,0x69,0x4b,0x65,0x79,0x5d,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x77,0x73,0x69,0x4b,0x65,0x79,0x5d,0x2e,0x70,0x75,0x73,0x68,0x28,0x73,0x75,0x62,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x72,0x6f,0x77,0x73,0x20,0x66,0x6f,0x72,0x20,0x65,0x61,0x63,0x68,0x20,0x67,0x72,0x6f,0x75,0x70,0x0a,0x20,0x20,0x20,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x28,0x67,0x72,0x6f,0x75,0x70,0x65,0x64,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x5b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2c,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5d,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x67,0x72,0x6f,0x75,0x70,0x20,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x77,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x2e,0x2e,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x6e,0x6f,0x77,0x20,0x2d,0x20,0x73,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x20,0x3d,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x73,0x75,0x6d,0x2c,0x20,0x73,0x29,0x20,0x3d,0x3e,0x20,0x73,0x75,0x6d,0x20,0x2b,0x20,0x28,0x73,0x2e,0x64,0x62,0x5f,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x5f,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x29,0x2c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x72,0x65,0x64,0x75,0x63,0x65,0x28,0x28,0x73,0x75,0x6d,0x2c,0x20,0x73,0x29,0x20,0x3d,0x3e,0x20,0x73,0x75,0x6d,0x20,0x2b,0x20,0x28,0x73,0x2e,0x64,0x62,0x5f,0x72,0x6f,0x77,0x73,0x5f,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x29,0x2c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x76,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x74,0x65,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x30,0x5d,0x2e,0x71,0x75,0x65,0x72,0x79,0x5f,0x72,0x61,0x74,0x65,0x5f,0x70,0x65,0x72,0x5f,0x6d,0x69,0x6e,0x20,0x7c,0x7c,0x20,0x30,0x29,0x20,0x3a,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x49,0x70,0x20,0x3d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x30,0x5d,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x5f,0x69,0x70,0x20,0x7c,0x7c,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x29,0x20,0x3a,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x72,0x6f,0x77,0x20,0x28,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x27,0x2c,0x20,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3d,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x47,0x72,0x6f,0x75,0x70,0x73,0x2e,0x68,0x61,0x73,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x2c,0x20,0x77,0x61,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3f,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x20,0x3a,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x34,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x32,0x30,0x70,0x78,0x3b,0x20,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x30,0x2e,0x32,0x73,0x3b,0x22,0x3e,0xe2,0x96,0xb6,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x49,0x50,0x3a,0x20,0x24,0x7b,0x63,0x6c,0x69,0x65,0x6e,0x74,0x49,0x70,0x7d,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x36,0x36,0x36,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x53,0x3a,0x20,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x53,0x75,0x62,0x73,0x3a,0x20,0x24,0x7b,0x73,0x75,0x62,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x3a,0x20,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x6f,0x77,0x73,0x3a,0x20,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x61,0x74,0x65,0x3a,0x20,0x24,0x7b,0x61,0x76,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x74,0x65,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x7d,0x20,0x71,0x2f,0x6d,0x69,0x6e,0x20,0x7c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x24,0x7b,0x6f,0x6c,0x64,0x65,0x73,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x74,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x65,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x47,0x72,0x6f,0x75,0x70,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x20,0x72,0x6f,0x77,0x73,0x20,0x28,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x6c,0x79,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x72,0x6f,0x77,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x67,0x72,0x6f,0x75,0x70,0x27,0x2c,0x20,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x6e,0x6f,0x77,0x20,0x2d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x20,0x3d,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x4e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x20,0x26,0x26,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x72,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x5b,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6b,0x69,0x6e,0x64,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x27,0x29,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x6f,0x72,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x31,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x72,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x5b,0x30,0x5d,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x38,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x5b,0x24,0x7b,0x73,0x68,0x6f,0x72,0x74,0x50,0x75,0x62,0x6b,0x65,0x79,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x5b,0x24,0x7b,0x61,0x75,0x74,0x68,0x6f,0x72,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x69,0x64,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x69,0x64,0x73,0x3a,0x5b,0x24,0x7b,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x20,0x65,0x76,0x65,0x6e,0x74,0x24,0x7b,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x31,0x20,0x3f,0x20,0x27,0x73,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x73,0x69,0x6e,0x63,0x65,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x73,0x69,0x6e,0x63,0x65,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x6e,0x63,0x65,0x44,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x73,0x69,0x6e,0x63,0x65,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x73,0x69,0x6e,0x63,0x65,0x3a,0x24,0x7b,0x73,0x69,0x6e,0x63,0x65,0x44,0x61,0x74,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x75,0x6e,0x74,0x69,0x6c,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x6e,0x74,0x69,0x6c,0x44,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x75,0x6e,0x74,0x69,0x6c,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x75,0x6e,0x74,0x69,0x6c,0x3a,0x24,0x7b,0x75,0x6e,0x74,0x69,0x6c,0x44,0x61,0x74,0x65,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x74,0x69,0x6d,0x65,0x50,0x61,0x72,0x74,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6c,0x69,0x6d,0x69,0x74,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6c,0x69,0x6d,0x69,0x74,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x6c,0x69,0x6d,0x69,0x74,0x3a,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x6c,0x69,0x6d,0x69,0x74,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x20,0x26,0x26,0x20,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x29,0x20,0x26,0x26,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x60,0x74,0x61,0x67,0x73,0x3a,0x5b,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x7d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x2e,0x74,0x61,0x67,0x5f,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x31,0x20,0x3f,0x20,0x27,0x73,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x72,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x70,0x61,0x72,0x74,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x27,0x65,0x6d,0x70,0x74,0x79,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x20,0x7c,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x70,0x72,0x65,0x66,0x69,0x78,0x22,0x3e,0xe2,0x94,0x94,0xe2,0x94,0x80,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x69,0x64,0x22,0x3e,0x24,0x7b,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x4e,0x2f,0x41,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x3e,0x24,0x7b,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x74,0x72,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x22,0x3e,0x24,0x7b,0x66,0x69,0x6c,0x74,0x65,0x72,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x74,0x6f,0x72,0x65,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x2f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x64,0x64,0x69,0x6e,0x67,0x20,0x61,0x6c,0x6c,0x20,0x72,0x6f,0x77,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x60,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x72,0x6f,0x77,0x5b,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3d,0x22,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x22,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0xe2,0x96,0xbc,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x27,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x39,0x30,0x64,0x65,0x67,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x69,0x6e,0x67,0x2f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x69,0x6e,0x67,0x20,0x67,0x72,0x6f,0x75,0x70,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x47,0x72,0x6f,0x75,0x70,0x28,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x60,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x67,0x72,0x6f,0x75,0x70,0x2d,0x68,0x65,0x61,0x64,0x65,0x72,0x5b,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3d,0x22,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x22,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x60,0x2e,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x64,0x65,0x74,0x61,0x69,0x6c,0x2d,0x72,0x6f,0x77,0x5b,0x64,0x61,0x74,0x61,0x2d,0x77,0x73,0x69,0x2d,0x67,0x72,0x6f,0x75,0x70,0x3d,0x22,0x24,0x7b,0x77,0x73,0x69,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x7d,0x22,0x5d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x65,0x78,0x70,0x61,0x6e,0x64,0x2d,0x69,0x63,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x20,0x3d,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x29,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x45,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0xe2,0x96,0xb6,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x27,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x30,0x64,0x65,0x67,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x70,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x52,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x74,0x61,0x62,0x6c,0x65,0x2d,0x72,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0xe2,0x96,0xbc,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x70,0x61,0x6e,0x64,0x49,0x63,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x20,0x3d,0x20,0x27,0x72,0x6f,0x74,0x61,0x74,0x65,0x28,0x39,0x30,0x64,0x65,0x67,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x52,0x6f,0x77,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x27,0x2c,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x68,0x75,0x6d,0x61,0x6e,0x2d,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x44,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3c,0x20,0x36,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x7d,0x73,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3c,0x20,0x33,0x36,0x30,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x2f,0x20,0x36,0x30,0x29,0x7d,0x6d,0x20,0x24,0x7b,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x25,0x20,0x36,0x30,0x7d,0x73,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x3c,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x2f,0x20,0x33,0x36,0x30,0x30,0x29,0x7d,0x68,0x20,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x25,0x20,0x33,0x36,0x30,0x30,0x29,0x20,0x2f,0x20,0x36,0x30,0x29,0x7d,0x6d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x2f,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x7d,0x64,0x20,0x24,0x7b,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x28,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x25,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x20,0x2f,0x20,0x33,0x36,0x30,0x30,0x29,0x7d,0x68,0x60,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x69,0x6e,0x64,0x69,0x63,0x61,0x74,0x6f,0x72,0x20,0x28,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x2d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x27,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x55,0x49,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x66,0x69,0x6c,0x65,0x20,0x73,0x69,0x7a,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x46,0x69,0x6c,0x65,0x53,0x69,0x7a,0x65,0x28,0x62,0x79,0x74,0x65,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x62,0x79,0x74,0x65,0x73,0x20,0x7c,0x7c,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x30,0x20,0x42,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x20,0x3d,0x20,0x31,0x30,0x32,0x34,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x7a,0x65,0x73,0x20,0x3d,0x20,0x5b,0x27,0x42,0x27,0x2c,0x20,0x27,0x4b,0x42,0x27,0x2c,0x20,0x27,0x4d,0x42,0x27,0x2c,0x20,0x27,0x47,0x42,0x27,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x4d,0x61,0x74,0x68,0x2e,0x6c,0x6f,0x67,0x28,0x62,0x79,0x74,0x65,0x73,0x29,0x20,0x2f,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6c,0x6f,0x67,0x28,0x6b,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,0x28,0x62,0x79,0x74,0x65,0x73,0x20,0x2f,0x20,0x4d,0x61,0x74,0x68,0x2e,0x70,0x6f,0x77,0x28,0x6b,0x2c,0x20,0x69,0x29,0x29,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x29,0x20,0x2b,0x20,0x27,0x20,0x27,0x20,0x2b,0x20,0x73,0x69,0x7a,0x65,0x73,0x5b,0x69,0x5d,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x74,0x69,0x6c,0x69,0x74,0x79,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x54,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x28,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x61,0x74,0x65,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x20,0x41,0x53,0x43,0x49,0x49,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x62,0x61,0x72,0x3a,0x20,0x5b,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2e,0x2e,0x2e,0x2e,0x2e,0x5d,0x20,0x37,0x35,0x25,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x61,0x6b,0x65,0x41,0x73,0x63,0x69,0x69,0x42,0x61,0x72,0x28,0x70,0x63,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x6c,0x65,0x64,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x70,0x63,0x74,0x20,0x2f,0x20,0x35,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x32,0x30,0x20,0x63,0x68,0x61,0x72,0x73,0x20,0x3d,0x20,0x31,0x30,0x30,0x25,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x3d,0x20,0x32,0x30,0x20,0x2d,0x20,0x66,0x69,0x6c,0x6c,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x5b,0x27,0x20,0x2b,0x20,0x27,0x23,0x27,0x2e,0x72,0x65,0x70,0x65,0x61,0x74,0x28,0x66,0x69,0x6c,0x6c,0x65,0x64,0x29,0x20,0x2b,0x20,0x27,0x2e,0x27,0x2e,0x72,0x65,0x70,0x65,0x61,0x74,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x20,0x2b,0x20,0x27,0x5d,0x20,0x27,0x20,0x2b,0x20,0x70,0x63,0x74,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,0x28,0x31,0x29,0x20,0x2b,0x20,0x27,0x25,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x63,0x65,0x6c,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x53,0x74,0x61,0x74,0x73,0x43,0x65,0x6c,0x6c,0x28,0x63,0x65,0x6c,0x6c,0x49,0x64,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x65,0x6c,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x63,0x65,0x6c,0x6c,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x65,0x6c,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x73,0x68,0x20,0x69,0x66,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x56,0x61,0x6c,0x75,0x65,0x20,0x21,0x3d,0x3d,0x20,0x27,0x2d,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x66,0x6c,0x61,0x73,0x68,0x2d,0x76,0x61,0x6c,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6c,0x6c,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x66,0x6c,0x61,0x73,0x68,0x2d,0x76,0x61,0x6c,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x31,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x55,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x70,0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x6c,0x6f,0x6e,0x67,0x65,0x72,0x20,0x73,0x74,0x61,0x72,0x74,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x70,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x6f,0x70,0x53,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x73,0x41,0x75,0x74,0x6f,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x6f,0x70,0x70,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x4e,0x6f,0x20,0x63,0x6f,0x75,0x6e,0x74,0x64,0x6f,0x77,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x6c,0x61,0x73,0x68,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x72,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x6c,0x61,0x73,0x68,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x49,0x53,0x41,0x42,0x4c,0x45,0x44,0x20,0x2d,0x20,0x4e,0x6f,0x20,0x66,0x6c,0x61,0x73,0x68,0x69,0x6e,0x67,0x20,0x77,0x68,0x65,0x6e,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x6b,0x65,0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x20,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x65,0x73,0x74,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x67,0x65,0x74,0x2d,0x61,0x75,0x74,0x68,0x2d,0x72,0x75,0x6c,0x65,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x63,0x6c,0x65,0x61,0x72,0x2d,0x61,0x75,0x74,0x68,0x2d,0x72,0x75,0x6c,0x65,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x61,0x64,0x64,0x2d,0x62,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x61,0x64,0x64,0x2d,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x71,0x75,0x65,0x72,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x70,0x6f,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x65,0x73,0x74,0x4c,0x6f,0x67,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x65,0x61,0x72,0x2d,0x74,0x65,0x73,0x74,0x2d,0x6c,0x6f,0x67,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x2d,0x74,0x65,0x73,0x74,0x2d,0x6b,0x65,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x47,0x65,0x74,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x43,0x6c,0x65,0x61,0x72,0x41,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x42,0x6c,0x61,0x63,0x6b,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x41,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x65,0x73,0x74,0x50,0x6f,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6c,0x65,0x61,0x72,0x54,0x65,0x73,0x74,0x4c,0x6f,0x67,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x54,0x65,0x73,0x74,0x4c,0x6f,0x67,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x65,0x76,0x65,0x6e,0x74,0x2d,0x6c,0x6f,0x67,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x4c,0x6f,0x67,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x65,0x6e,0x74,0x72,0x79,0x22,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x67,0x2d,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x22,0x3e,0x53,0x59,0x53,0x54,0x45,0x4d,0x3a,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x54,0x65,0x73,0x74,0x20,0x6c,0x6f,0x67,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x52,0x61,0x6e,0x64,0x6f,0x6d,0x54,0x65,0x73,0x74,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x65,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x65,0x73,0x74,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x65,0x73,0x74,0x2d,0x69,0x6e,0x70,0x75,0x74,0x2d,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x65,0x73,0x74,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x73,0x74,0x49,0x6e,0x70,0x75,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x53,0x74,0x61,0x74,0x73,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x73,0x74,0x61,0x74,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x53,0x74,0x61,0x74,0x73,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x53,0x74,0x61,0x74,0x73,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x65,0x6e,0x64,0x53,0x74,0x61,0x74,0x73,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x20,0x61,0x6c,0x77,0x61,0x79,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x49,0x50,0x2d,0x31,0x37,0x20,0x44,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x6e,0x64,0x44,0x6d,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x6e,0x64,0x44,0x6d,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x65,0x6e,0x64,0x4e,0x49,0x50,0x31,0x37,0x44,0x4d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x51,0x4c,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x65,0x61,0x72,0x2d,0x73,0x71,0x6c,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x72,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x65,0x61,0x72,0x2d,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6c,0x65,0x61,0x72,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x63,0x6c,0x65,0x61,0x72,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x20,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x64,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x69,0x67,0x68,0x74,0x20,0x6d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x64,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x53,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x69,0x73,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3f,0x20,0x27,0x4c,0x49,0x47,0x48,0x54,0x20,0x4d,0x4f,0x44,0x45,0x27,0x20,0x3a,0x20,0x27,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x61,0x76,0x65,0x64,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x27,0x64,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x44,0x61,0x72,0x6b,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6d,0x61,0x74,0x63,0x68,0x4d,0x65,0x64,0x69,0x61,0x20,0x26,0x26,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6d,0x61,0x74,0x63,0x68,0x4d,0x65,0x64,0x69,0x61,0x28,0x27,0x28,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2d,0x73,0x63,0x68,0x65,0x6d,0x65,0x3a,0x20,0x64,0x61,0x72,0x6b,0x29,0x27,0x29,0x2e,0x6d,0x61,0x74,0x63,0x68,0x65,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x65,0x44,0x61,0x72,0x6b,0x20,0x3d,0x20,0x73,0x61,0x76,0x65,0x64,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x20,0x7c,0x7c,0x20,0x28,0x73,0x61,0x76,0x65,0x64,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x26,0x26,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x73,0x44,0x61,0x72,0x6b,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x68,0x6f,0x75,0x6c,0x64,0x42,0x65,0x44,0x61,0x72,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x73,0x68,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x73,0x68,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x6f,0x70,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x73,0x68,0x6f,0x77,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x69,0x64,0x65,0x4e,0x61,0x76,0x4f,0x70,0x65,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x20,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x74,0x65,0x6d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x74,0x65,0x6d,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x27,0x29,0x20,0x3d,0x3d,0x3d,0x20,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x74,0x65,0x6d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x64,0x65,0x20,0x61,0x6c,0x6c,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x69,0x70,0x42,0x61,0x6e,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x28,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x67,0x65,0x4d,0x61,0x70,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x27,0x3a,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x53,0x74,0x61,0x74,0x69,0x73,0x74,0x69,0x63,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x27,0x3a,0x20,0x27,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x3a,0x20,0x27,0x64,0x69,0x76,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x27,0x3a,0x20,0x27,0x69,0x70,0x42,0x61,0x6e,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x3a,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x6d,0x27,0x3a,0x20,0x27,0x6e,0x69,0x70,0x31,0x37,0x44,0x4d,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x27,0x3a,0x20,0x27,0x73,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x68,0x6f,0x77,0x73,0x20,0x62,0x6f,0x74,0x68,0x20,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x75,0x74,0x68,0x52,0x75,0x6c,0x65,0x73,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x68,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x75,0x74,0x68,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x6f,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x45,0x6c,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x57,0x6f,0x74,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x20,0x3d,0x20,0x70,0x61,0x67,0x65,0x4d,0x61,0x70,0x5b,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x70,0x65,0x63,0x69,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x2d,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x69,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x64,0x61,0x74,0x61,0x20,0x77,0x68,0x65,0x6e,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x70,0x65,0x63,0x69,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x2d,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x31,0x30,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x69,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x73,0x65,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x65,0x72,0x72,0x6f,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x77,0x68,0x65,0x6e,0x20,0x6c,0x65,0x61,0x76,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x6f,0x73,0x65,0x20,0x73,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x61,0x67,0x65,0x3a,0x20,0x24,0x7b,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x61,0x70,0x70,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x2d,0x52,0x65,0x6c,0x61,0x79,0x2d,0x50,0x47,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x20,0x69,0x6e,0x74,0x65,0x72,0x66,0x61,0x63,0x65,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x64,0x61,0x72,0x6b,0x20,0x6d,0x6f,0x64,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x73,0x69,0x64,0x65,0x62,0x61,0x72,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x20,0x3f,0x20,0x27,0x4c,0x49,0x47,0x48,0x54,0x20,0x4d,0x4f,0x44,0x45,0x27,0x20,0x3a,0x20,0x27,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x72,0x74,0x52,0x65,0x6c,0x61,0x79,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x61,0x6c,0x2d,0x74,0x69,0x6d,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x72,0x61,0x74,0x65,0x20,0x63,0x68,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x45,0x76,0x65,0x6e,0x74,0x52,0x61,0x74,0x65,0x43,0x68,0x61,0x72,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x74,0x65,0x78,0x74,0x5f,0x67,0x72,0x61,0x70,0x68,0x2e,0x6a,0x73,0x20,0x69,0x73,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x73,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x73,0x75,0x72,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x61,0x72,0x65,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x20,0x62,0x79,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x6c,0x6f,0x61,0x64,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x41,0x64,0x6d,0x69,0x6e,0x53,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x56,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x41,0x70,0x70,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x68,0x61,0x6e,0x63,0x65,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x66,0x6f,0x72,0x20,0x74,0x65,0x73,0x74,0x69,0x6e,0x67,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x65,0x6e,0x68,0x61,0x6e,0x63,0x65,0x50,0x6f,0x6f,0x6c,0x46,0x6f,0x72,0x54,0x65,0x73,0x74,0x69,0x6e,0x67,0x2c,0x20,0x32,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x73,0x69,0x64,0x65,0x20,0x6e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x65,0x61,0x64,0x65,0x72,0x20,0x74,0x69,0x74,0x6c,0x65,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x54,0x69,0x74,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x65,0x61,0x64,0x65,0x72,0x2d,0x74,0x69,0x74,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x65,0x61,0x64,0x65,0x72,0x54,0x69,0x74,0x6c,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x54,0x69,0x74,0x6c,0x65,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x69,0x64,0x65,0x2d,0x6e,0x61,0x76,0x2d,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x69,0x74,0x65,0x6d,0x20,0x63,0x6c,0x69,0x63,0x6b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x6e,0x61,0x76,0x2d,0x69,0x74,0x65,0x6d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x49,0x74,0x65,0x6d,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x69,0x74,0x65,0x6d,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x74,0x65,0x6d,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x65,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x65,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x67,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x70,0x61,0x67,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x70,0x61,0x67,0x65,0x4e,0x61,0x6d,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x6f,0x6f,0x74,0x65,0x72,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x76,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x76,0x2d,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x65,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x65,0x78,0x74,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x44,0x61,0x72,0x6b,0x4d,0x6f,0x64,0x65,0x42,0x74,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x62,0x6f,0x64,0x79,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x27,0x64,0x61,0x72,0x6b,0x2d,0x6d,0x6f,0x64,0x65,0x27,0x29,0x20,0x3f,0x20,0x27,0x4c,0x49,0x47,0x48,0x54,0x20,0x4d,0x4f,0x44,0x45,0x27,0x20,0x3a,0x20,0x27,0x44,0x41,0x52,0x4b,0x20,0x4d,0x4f,0x44,0x45,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x31,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x76,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x76,0x4c,0x6f,0x67,0x6f,0x75,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x65,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x2e,0x73,0x74,0x6f,0x70,0x50,0x72,0x6f,0x70,0x61,0x67,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x6f,0x75,0x74,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x6f,0x73,0x65,0x53,0x69,0x64,0x65,0x4e,0x61,0x76,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x50,0x61,0x67,0x65,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x61,0x67,0x65,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x72,0x65,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x53,0x51,0x4c,0x5f,0x51,0x55,0x45,0x52,0x59,0x5f,0x54,0x45,0x4d,0x50,0x4c,0x41,0x54,0x45,0x53,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x72,0x65,0x63,0x65,0x6e,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x69,0x64,0x2c,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x2c,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x73,0x75,0x62,0x73,0x74,0x72,0x28,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0x20,0x31,0x2c,0x20,0x35,0x30,0x29,0x20,0x61,0x73,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x44,0x45,0x53,0x43,0x20,0x4c,0x49,0x4d,0x49,0x54,0x20,0x32,0x30,0x22,0x2c,0x0a,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x73,0x74,0x61,0x74,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x73,0x74,0x61,0x74,0x73,0x22,0x2c,0x0a,0x20,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5f,0x6c,0x6f,0x67,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x44,0x45,0x53,0x43,0x22,0x2c,0x0a,0x20,0x20,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x74,0x6f,0x70,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x5f,0x76,0x69,0x65,0x77,0x22,0x2c,0x0a,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x2a,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x5f,0x76,0x69,0x65,0x77,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x44,0x45,0x53,0x43,0x22,0x2c,0x0a,0x20,0x20,0x74,0x69,0x6d,0x65,0x5f,0x73,0x74,0x61,0x74,0x73,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x74,0x6f,0x74,0x61,0x6c,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x55,0x4e,0x49,0x4f,0x4e,0x20,0x41,0x4c,0x4c,0x20,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x32,0x34,0x68,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3e,0x3d,0x20,0x28,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x2d,0x20,0x38,0x36,0x34,0x30,0x30,0x29,0x20,0x55,0x4e,0x49,0x4f,0x4e,0x20,0x41,0x4c,0x4c,0x20,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x37,0x64,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3e,0x3d,0x20,0x28,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x2d,0x20,0x36,0x30,0x34,0x38,0x30,0x30,0x29,0x20,0x55,0x4e,0x49,0x4f,0x4e,0x20,0x41,0x4c,0x4c,0x20,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x27,0x33,0x30,0x64,0x27,0x20,0x61,0x73,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x44,0x49,0x53,0x54,0x49,0x4e,0x43,0x54,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x61,0x73,0x20,0x75,0x6e,0x69,0x71,0x75,0x65,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x2c,0x20,0x4d,0x49,0x4e,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x2c,0x20,0x4d,0x41,0x58,0x28,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x29,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x65,0x73,0x74,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x3e,0x3d,0x20,0x28,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x2d,0x20,0x32,0x35,0x39,0x32,0x30,0x30,0x30,0x29,0x22,0x2c,0x0a,0x20,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x73,0x75,0x6d,0x6d,0x61,0x72,0x79,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x2a,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x69,0x70,0x73,0x2c,0x20,0x43,0x4f,0x55,0x4e,0x54,0x28,0x43,0x41,0x53,0x45,0x20,0x57,0x48,0x45,0x4e,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x20,0x54,0x48,0x45,0x4e,0x20,0x31,0x20,0x45,0x4e,0x44,0x29,0x20,0x61,0x73,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x2c,0x20,0x53,0x55,0x4d,0x28,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x2c,0x20,0x53,0x55,0x4d,0x28,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x53,0x55,0x4d,0x28,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x29,0x20,0x61,0x73,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x62,0x61,0x6e,0x73,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x22,0x2c,0x0a,0x20,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x69,0x70,0x73,0x5f,0x6c,0x69,0x73,0x74,0x3a,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x69,0x70,0x2c,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x66,0x69,0x72,0x73,0x74,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x6c,0x61,0x73,0x74,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x5f,0x61,0x74,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x6c,0x61,0x73,0x74,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x65,0x73,0x2c,0x20,0x64,0x61,0x74,0x65,0x74,0x69,0x6d,0x65,0x28,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x2c,0x20,0x27,0x75,0x6e,0x69,0x78,0x65,0x70,0x6f,0x63,0x68,0x27,0x29,0x20,0x61,0x73,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x44,0x45,0x53,0x43,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x44,0x45,0x53,0x43,0x22,0x0a,0x7d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x6d,0x61,0x6e,0x61,0x67,0x65,0x6d,0x65,0x6e,0x74,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x29,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x20,0x3d,0x20,0x27,0x63,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x67,0x5f,0x73,0x71,0x6c,0x5f,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x27,0x3b,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x4d,0x41,0x58,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x49,0x54,0x45,0x4d,0x53,0x20,0x3d,0x20,0x32,0x30,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x67,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3f,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x20,0x3a,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x27,0x2c,0x20,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x74,0x6f,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x51,0x75,0x65,0x72,0x79,0x54,0x6f,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x71,0x75,0x65,0x72,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x71,0x75,0x65,0x72,0x79,0x20,0x7c,0x7c,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x6c,0x6f,0x61,0x64,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x20,0x69,0x66,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x71,0x20,0x3d,0x3e,0x20,0x71,0x20,0x21,0x3d,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x6f,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x75,0x6e,0x73,0x68,0x69,0x66,0x74,0x28,0x71,0x75,0x65,0x72,0x79,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x69,0x6d,0x69,0x74,0x20,0x73,0x69,0x7a,0x65,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x4d,0x41,0x58,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x49,0x54,0x45,0x4d,0x53,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x4d,0x41,0x58,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x49,0x54,0x45,0x4d,0x53,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x73,0x65,0x74,0x49,0x74,0x65,0x6d,0x28,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x2c,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3a,0x27,0x2c,0x20,0x65,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x27,0x43,0x6c,0x65,0x61,0x72,0x20,0x61,0x6c,0x6c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x3f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x49,0x74,0x65,0x6d,0x28,0x51,0x55,0x45,0x52,0x59,0x5f,0x48,0x49,0x53,0x54,0x4f,0x52,0x59,0x5f,0x4b,0x45,0x59,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2d,0x67,0x72,0x6f,0x75,0x70,0x27,0x29,0x3b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x3d,0x20,0x6c,0x6f,0x61,0x64,0x51,0x75,0x65,0x72,0x79,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x29,0x3b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x28,0x6e,0x6f,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x60,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x5f,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x75,0x6e,0x63,0x61,0x74,0x65,0x20,0x6c,0x6f,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x51,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x36,0x30,0x20,0x3f,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x36,0x30,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x51,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x47,0x72,0x6f,0x75,0x70,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x6c,0x65,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x69,0x74,0x27,0x73,0x20,0x61,0x20,0x74,0x65,0x6d,0x70,0x6c,0x61,0x74,0x65,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x53,0x51,0x4c,0x5f,0x51,0x55,0x45,0x52,0x59,0x5f,0x54,0x45,0x4d,0x50,0x4c,0x41,0x54,0x45,0x53,0x5b,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x53,0x51,0x4c,0x5f,0x51,0x55,0x45,0x52,0x59,0x5f,0x54,0x45,0x4d,0x50,0x4c,0x41,0x54,0x45,0x53,0x5b,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x5d,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x69,0x74,0x27,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x0a,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x56,0x61,0x6c,0x75,0x65,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x5f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x5b,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x49,0x6e,0x64,0x65,0x78,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x4f,0x70,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x71,0x75,0x65,0x72,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x71,0x75,0x65,0x72,0x79,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x20,0x74,0x6f,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x0a,0x20,0x20,0x64,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x70,0x75,0x74,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x76,0x69,0x61,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x41,0x50,0x49,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x71,0x6c,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x71,0x75,0x65,0x72,0x79,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0xe2,0x9d,0x8c,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x22,0x3e,0x45,0x78,0x65,0x63,0x75,0x74,0x69,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x2e,0x2e,0x2e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x61,0x76,0x65,0x20,0x74,0x6f,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x28,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x73,0x6f,0x20,0x69,0x74,0x27,0x73,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x69,0x66,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x66,0x61,0x69,0x6c,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x73,0x61,0x76,0x65,0x51,0x75,0x65,0x72,0x79,0x54,0x6f,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x28,0x71,0x75,0x65,0x72,0x79,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x61,0x73,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x3d,0x20,0x5b,0x22,0x73,0x71,0x6c,0x5f,0x71,0x75,0x65,0x72,0x79,0x22,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x72,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x66,0x6f,0x72,0x20,0x77,0x68,0x65,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x20,0x26,0x26,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x73,0x65,0x74,0x28,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x45,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x71,0x75,0x65,0x72,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x3a,0x20,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x74,0x65,0x3a,0x20,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x61,0x6c,0x6c,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x20,0x77,0x68,0x65,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0xe2,0x9d,0x8c,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x20,0x28,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x41,0x72,0x72,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x41,0x72,0x72,0x61,0x79,0x29,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6c,0x79,0x20,0x75,0x73,0x69,0x6e,0x67,0x20,0x4e,0x49,0x50,0x2d,0x34,0x34,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x41,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x4e,0x49,0x50,0x2d,0x34,0x32,0x20,0x61,0x75,0x74,0x68,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x73,0x65,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x6f,0x75,0x74,0x63,0x6f,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4c,0x6f,0x67,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x65,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x61,0x67,0x6e,0x6f,0x73,0x74,0x69,0x63,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x3b,0x20,0x2f,0x2f,0x20,0x52,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x49,0x44,0x20,0x74,0x72,0x61,0x63,0x6b,0x69,0x6e,0x67,0x0a,0x0a,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x66,0x6f,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x71,0x75,0x65,0x72,0x79,0x2d,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x66,0x6f,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0xe2,0x9d,0x8c,0x20,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x20,0x7c,0x7c,0x20,0x27,0x51,0x75,0x65,0x72,0x79,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x7d,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x66,0x6f,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x49,0x44,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x62,0x75,0x67,0x67,0x69,0x6e,0x67,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x78,0x65,0x63,0x54,0x69,0x6d,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x69,0x6d,0x65,0x5f,0x6d,0x73,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x20,0x3f,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x38,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x27,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x69,0x6e,0x66,0x6f,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x71,0x75,0x65,0x72,0x79,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0xe2,0x9c,0x85,0x20,0x51,0x75,0x65,0x72,0x79,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x52,0x6f,0x77,0x73,0x3a,0x20,0x24,0x7b,0x72,0x6f,0x77,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x3e,0x45,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x20,0x54,0x69,0x6d,0x65,0x3a,0x20,0x24,0x7b,0x65,0x78,0x65,0x63,0x54,0x69,0x6d,0x65,0x7d,0x6d,0x73,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x2d,0x69,0x64,0x22,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x27,0x7d,0x22,0x3e,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x3a,0x20,0x24,0x7b,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x73,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x71,0x6c,0x2d,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x22,0x3e,0x3c,0x74,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x63,0x6f,0x6c,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x74,0x68,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x63,0x6f,0x6c,0x29,0x7d,0x3c,0x2f,0x74,0x68,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x3c,0x2f,0x74,0x68,0x65,0x61,0x64,0x3e,0x3c,0x74,0x62,0x6f,0x64,0x79,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x63,0x65,0x6c,0x6c,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x65,0x6c,0x6c,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x63,0x65,0x6c,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x3f,0x20,0x27,0x3c,0x65,0x6d,0x3e,0x4e,0x55,0x4c,0x4c,0x3c,0x2f,0x65,0x6d,0x3e,0x27,0x20,0x3a,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x63,0x65,0x6c,0x6c,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x63,0x65,0x6c,0x6c,0x56,0x61,0x6c,0x75,0x65,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x62,0x6f,0x64,0x79,0x3e,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x6f,0x2d,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x22,0x3e,0x4e,0x6f,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x65,0x64,0x3c,0x2f,0x70,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x28,0x63,0x61,0x6c,0x6c,0x65,0x64,0x20,0x62,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x48,0x41,0x4e,0x44,0x4c,0x49,0x4e,0x47,0x20,0x53,0x51,0x4c,0x20,0x51,0x55,0x45,0x52,0x59,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x52,0x6f,0x75,0x74,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x71,0x75,0x65,0x72,0x79,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x71,0x75,0x65,0x72,0x79,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x70,0x42,0x61,0x6e,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x41,0x6c,0x77,0x61,0x79,0x73,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x0a,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x6e,0x20,0x75,0x70,0x20,0x61,0x6e,0x79,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x0a,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x20,0x26,0x26,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x68,0x61,0x73,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x69,0x65,0x73,0x2e,0x64,0x65,0x6c,0x65,0x74,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x5f,0x69,0x64,0x29,0x3b,0x0a,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x20,0x48,0x54,0x4d,0x4c,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x74,0x65,0x78,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x64,0x69,0x76,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x65,0x78,0x74,0x3b,0x0a,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x68,0x69,0x73,0x74,0x6f,0x72,0x79,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x6c,0x6f,0x61,0x64,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x51,0x75,0x65,0x72,0x79,0x44,0x72,0x6f,0x70,0x64,0x6f,0x77,0x6e,0x28,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x52,0x65,0x6c,0x61,0x79,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x20,0x66,0x69,0x72,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x3d,0x3e,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x20,0x74,0x6f,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x5b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x5b,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x5d,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x61,0x64,0x64,0x28,0x27,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x6f,0x76,0x65,0x20,0x74,0x6f,0x20,0x6e,0x65,0x78,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x2b,0x2b,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x66,0x20,0x77,0x65,0x27,0x76,0x65,0x20,0x67,0x6f,0x6e,0x65,0x20,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x20,0x61,0x6c,0x6c,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2c,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6c,0x6c,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x77,0x61,0x69,0x74,0x20,0x34,0x30,0x30,0x30,0x6d,0x73,0x20,0x74,0x68,0x65,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x20,0x3e,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x61,0x6c,0x6c,0x20,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x75,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x3d,0x3e,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x27,0x75,0x6e,0x64,0x65,0x72,0x6c,0x69,0x6e,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x49,0x6e,0x64,0x65,0x78,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x34,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x20,0x74,0x6f,0x20,0x6e,0x65,0x78,0x74,0x20,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x32,0x30,0x30,0x6d,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x2c,0x20,0x31,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x61,0x6e,0x69,0x6d,0x61,0x74,0x65,0x4c,0x65,0x74,0x74,0x65,0x72,0x28,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x43,0x4f,0x4d,0x50,0x4f,0x4e,0x45,0x4e,0x54,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x72,0x79,0x20,0x66,0x6f,0x72,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x4d,0x61,0x70,0x28,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x20,0x66,0x6f,0x72,0x20,0x74,0x72,0x69,0x2d,0x73,0x74,0x61,0x74,0x65,0x20,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x73,0x0a,0x63,0x6c,0x61,0x73,0x73,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x72,0x75,0x63,0x74,0x6f,0x72,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x2c,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x7d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x69,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x62,0x79,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x3a,0x20,0x27,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x27,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x2e,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x2e,0x73,0x65,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x2c,0x20,0x74,0x68,0x69,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x52,0x45,0x4e,0x44,0x45,0x52,0x49,0x4e,0x47,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6b,0x65,0x79,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x62,0x75,0x74,0x74,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x74,0x6f,0x67,0x67,0x6c,0x65,0x2d,0x62,0x74,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x6b,0x65,0x79,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x73,0x74,0x61,0x74,0x65,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x74,0x69,0x74,0x6c,0x65,0x27,0x2c,0x20,0x60,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x24,0x7b,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x63,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x61,0x70,0x70,0x65,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x20,0x61,0x66,0x74,0x65,0x72,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x69,0x6e,0x20,0x44,0x4f,0x4d,0x3a,0x27,0x2c,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x28,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x63,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x63,0x6f,0x6e,0x73,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3a,0x20,0x27,0x49,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x3a,0x20,0x27,0x30,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x3a,0x20,0x27,0xe2,0x9f,0xb3,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x69,0x63,0x6f,0x6e,0x73,0x5b,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x5d,0x20,0x7c,0x7c,0x20,0x27,0x3f,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x5b,0x27,0x74,0x72,0x75,0x65,0x27,0x2c,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x2c,0x20,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x5d,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x73,0x65,0x74,0x41,0x74,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x28,0x27,0x64,0x61,0x74,0x61,0x2d,0x73,0x74,0x61,0x74,0x65,0x27,0x2c,0x20,0x6e,0x65,0x77,0x53,0x74,0x61,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x49,0x63,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x43,0x4c,0x49,0x43,0x4b,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x67,0x6e,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x2d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x74,0x72,0x75,0x65,0x20,0x61,0x6e,0x64,0x20,0x66,0x61,0x6c,0x73,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x20,0x3f,0x20,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x20,0x3a,0x20,0x27,0x74,0x72,0x75,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x74,0x6f,0x20,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x27,0x69,0x6e,0x64,0x65,0x74,0x65,0x72,0x6d,0x69,0x6e,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x74,0x68,0x69,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x74,0x68,0x69,0x73,0x2e,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x3a,0x27,0x2c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x73,0x65,0x6e,0x74,0x3a,0x20,0x24,0x7b,0x74,0x68,0x69,0x73,0x2e,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x7d,0x20,0x3d,0x20,0x24,0x7b,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x7d,0x60,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x6f,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2c,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x48,0x41,0x4e,0x44,0x4c,0x45,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x3a,0x27,0x2c,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x63,0x74,0x75,0x61,0x6c,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x27,0x2c,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x27,0x2c,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x20,0x2d,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x73,0x65,0x72,0x76,0x65,0x72,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x27,0x2c,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x61,0x63,0x74,0x75,0x61,0x6c,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x2d,0x20,0x72,0x65,0x76,0x65,0x72,0x74,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x2d,0x20,0x72,0x65,0x76,0x65,0x72,0x74,0x20,0x74,0x6f,0x20,0x66,0x61,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x73,0x65,0x74,0x53,0x74,0x61,0x74,0x65,0x28,0x27,0x66,0x61,0x6c,0x73,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x63,0x6c,0x65,0x61,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x74,0x74,0x61,0x63,0x68,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x74,0x68,0x69,0x73,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x67,0x65,0x74,0x20,0x61,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x65,0x64,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x2e,0x67,0x65,0x74,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4b,0x65,0x79,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x6f,0x6d,0x65,0x6f,0x6e,0x65,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x65,0x73,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x4d,0x4f,0x4e,0x49,0x54,0x4f,0x52,0x49,0x4e,0x47,0x20,0x49,0x53,0x20,0x4e,0x4f,0x57,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x2d,0x42,0x41,0x53,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x20,0x2d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x6d,0x61,0x6e,0x75,0x61,0x6c,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x3d,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x3b,0x0a,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x43,0x4f,0x4e,0x46,0x49,0x47,0x20,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x52,0x45,0x53,0x50,0x4f,0x4e,0x53,0x45,0x20,0x48,0x41,0x4e,0x44,0x4c,0x45,0x52,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x64,0x61,0x74,0x61,0x3a,0x27,0x2c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x6c,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x6f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x73,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x7d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x77,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x2d,0x20,0x6e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x73,0x46,0x72,0x6f,0x6d,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x4d,0x4f,0x4e,0x49,0x54,0x4f,0x52,0x49,0x4e,0x47,0x20,0x49,0x53,0x20,0x53,0x55,0x42,0x53,0x43,0x52,0x49,0x50,0x54,0x49,0x4f,0x4e,0x2d,0x42,0x41,0x53,0x45,0x44,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x73,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x20,0x2d,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x73,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x77,0x68,0x65,0x6e,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x62,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x34,0x35,0x36,0x37,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x2d,0x20,0x73,0x75,0x62,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x2d,0x62,0x61,0x73,0x65,0x64,0x20,0x61,0x63,0x74,0x69,0x76,0x61,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x61,0x64,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x52,0x45,0x4c,0x41,0x59,0x20,0x45,0x56,0x45,0x4e,0x54,0x53,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x54,0x6f,0x4c,0x69,0x76,0x65,0x46,0x65,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x49,0x64,0x73,0x2e,0x68,0x61,0x73,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x49,0x64,0x73,0x2e,0x61,0x64,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x69,0x76,0x65,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x76,0x69,0x65,0x77,0x20,0x3d,0x20,0x74,0x79,0x70,0x65,0x6f,0x66,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x32,0x30,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x32,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x20,0x7c,0x7c,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x29,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x54,0x69,0x6d,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x20,0x3f,0x3f,0x20,0x27,0x2d,0x27,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x7d,0x22,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x29,0x7d,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x74,0x69,0x74,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x7d,0x22,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x6c,0x69,0x63,0x65,0x28,0x30,0x2c,0x20,0x31,0x36,0x29,0x29,0x7d,0x2e,0x2e,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x70,0x72,0x65,0x76,0x69,0x65,0x77,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x52,0x6f,0x77,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x74,0x72,0x20,0x74,0x64,0x5b,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x35,0x22,0x5d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x61,0x69,0x74,0x69,0x6e,0x67,0x52,0x6f,0x77,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x73,0x65,0x72,0x74,0x42,0x65,0x66,0x6f,0x72,0x65,0x28,0x72,0x6f,0x77,0x2c,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x66,0x69,0x72,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x28,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x31,0x30,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x61,0x73,0x74,0x20,0x3d,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x6c,0x61,0x73,0x74,0x43,0x68,0x69,0x6c,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x61,0x73,0x74,0x20,0x26,0x26,0x20,0x6c,0x61,0x73,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x74,0x64,0x3a,0x6e,0x74,0x68,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x34,0x29,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x64,0x54,0x65,0x78,0x74,0x20,0x3d,0x20,0x6c,0x61,0x73,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x74,0x64,0x3a,0x6e,0x74,0x68,0x2d,0x63,0x68,0x69,0x6c,0x64,0x28,0x34,0x29,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x64,0x54,0x65,0x78,0x74,0x2e,0x65,0x6e,0x64,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x2e,0x2e,0x2e,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6b,0x65,0x65,0x70,0x20,0x73,0x65,0x74,0x20,0x62,0x6f,0x75,0x6e,0x64,0x65,0x64,0x20,0x65,0x76,0x65,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x72,0x75,0x6e,0x63,0x61,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x63,0x74,0x75,0x61,0x6c,0x20,0x69,0x64,0x20,0x72,0x65,0x6d,0x61,0x69,0x6e,0x73,0x20,0x69,0x6e,0x20,0x53,0x65,0x74,0x20,0x75,0x6e,0x74,0x69,0x6c,0x20,0x70,0x61,0x67,0x65,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x28,0x61,0x63,0x63,0x65,0x70,0x74,0x61,0x62,0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x55,0x49,0x20,0x73,0x63,0x6f,0x70,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x42,0x6f,0x64,0x79,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x43,0x68,0x69,0x6c,0x64,0x28,0x6c,0x61,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x72,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x52,0x65,0x63,0x65,0x69,0x76,0x65,0x64,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x48,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x30,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x30,0x35,0x30,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x31,0x30,0x30,0x30,0x32,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x6b,0x69,0x6e,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x28,0x55,0x73,0x65,0x72,0x20,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x65,0x76,0x65,0x6e,0x74,0x2e,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x77,0x69,0x74,0x68,0x3a,0x27,0x2c,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x62,0x6f,0x75,0x74,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x61,0x6e,0x6e,0x65,0x72,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x69,0x70,0x30,0x35,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x61,0x6d,0x65,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x6e,0x61,0x6d,0x65,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x62,0x6f,0x75,0x74,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x61,0x62,0x6f,0x75,0x74,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x61,0x62,0x6f,0x75,0x74,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x62,0x61,0x6e,0x6e,0x65,0x72,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x62,0x61,0x6e,0x6e,0x65,0x72,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6e,0x69,0x70,0x30,0x35,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x6e,0x69,0x70,0x30,0x35,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x6e,0x69,0x70,0x30,0x35,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x66,0x6f,0x72,0x6d,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x28,0x44,0x4d,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x66,0x6f,0x72,0x6d,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x61,0x67,0x73,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x22,0x72,0x65,0x6c,0x61,0x79,0x22,0x20,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x73,0x20,0x3d,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x27,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x46,0x69,0x65,0x6c,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x46,0x69,0x65,0x6c,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x46,0x69,0x65,0x6c,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x5c,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x66,0x6f,0x72,0x6d,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x66,0x6f,0x72,0x6d,0x20,0x28,0x52,0x65,0x6c,0x61,0x79,0x20,0x4c,0x69,0x73,0x74,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x46,0x6f,0x72,0x6d,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x66,0x6f,0x72,0x6d,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x61,0x67,0x73,0x3a,0x27,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x22,0x72,0x22,0x20,0x74,0x61,0x67,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x74,0x61,0x67,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x74,0x61,0x67,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x72,0x27,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x20,0x3d,0x20,0x74,0x61,0x67,0x5b,0x32,0x5d,0x20,0x7c,0x7c,0x20,0x27,0x72,0x65,0x61,0x64,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x69,0x66,0x20,0x6e,0x6f,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x64,0x20,0x3d,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x72,0x65,0x61,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x3d,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x27,0x77,0x72,0x69,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x75,0x72,0x6c,0x2c,0x20,0x72,0x65,0x61,0x64,0x2c,0x20,0x77,0x72,0x69,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x66,0x6f,0x72,0x6d,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x75,0x62,0x6d,0x69,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x20,0x66,0x6f,0x72,0x6d,0x20,0x64,0x61,0x74,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x61,0x6d,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x62,0x6f,0x75,0x74,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x61,0x62,0x6f,0x75,0x74,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x6e,0x6e,0x65,0x72,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x72,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x69,0x70,0x30,0x35,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x6e,0x69,0x70,0x30,0x35,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x3a,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x77,0x65,0x62,0x73,0x69,0x74,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x6b,0x65,0x79,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x5b,0x6b,0x65,0x79,0x5d,0x29,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x5b,0x6b,0x65,0x79,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2e,0x6e,0x61,0x6d,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x4e,0x61,0x6d,0x65,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x30,0x2c,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x75,0x62,0x6d,0x69,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x72,0x73,0x65,0x20,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x54,0x65,0x78,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x54,0x65,0x78,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x5c,0x6e,0x27,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x6d,0x61,0x70,0x28,0x75,0x72,0x6c,0x20,0x3d,0x3e,0x20,0x75,0x72,0x6c,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x75,0x72,0x6c,0x20,0x3d,0x3e,0x20,0x75,0x72,0x6c,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x75,0x72,0x6c,0x20,0x3d,0x3e,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x41,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x6f,0x6e,0x65,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x55,0x52,0x4c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x31,0x30,0x30,0x35,0x30,0x2c,0x20,0x7b,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x35,0x30,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x44,0x4d,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x75,0x62,0x6d,0x69,0x74,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x45,0x76,0x65,0x6e,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x53,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x41,0x6c,0x6c,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x65,0x6e,0x74,0x72,0x79,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x75,0x72,0x6c,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x61,0x64,0x20,0x3d,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x72,0x65,0x61,0x64,0x27,0x29,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x3d,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x71,0x75,0x65,0x72,0x79,0x53,0x65,0x6c,0x65,0x63,0x74,0x6f,0x72,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x77,0x72,0x69,0x74,0x65,0x27,0x29,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x75,0x72,0x6c,0x20,0x26,0x26,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x72,0x6c,0x3a,0x20,0x75,0x72,0x6c,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x61,0x64,0x3a,0x20,0x72,0x65,0x61,0x64,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x72,0x69,0x74,0x65,0x3a,0x20,0x77,0x72,0x69,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x41,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x6f,0x6e,0x65,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x31,0x30,0x30,0x30,0x32,0x2c,0x20,0x7b,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x74,0x69,0x6e,0x67,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x20,0x65,0x76,0x65,0x6e,0x74,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x2c,0x20,0x27,0x45,0x72,0x72,0x6f,0x72,0x20,0x75,0x70,0x64,0x61,0x74,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6e,0x64,0x43,0x72,0x65,0x61,0x74,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x53,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x7d,0x2e,0x2e,0x2e,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x22,0x2c,0x20,0x6b,0x69,0x6e,0x64,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x44,0x61,0x74,0x61,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x46,0x6f,0x72,0x52,0x65,0x6c,0x61,0x79,0x28,0x4a,0x53,0x4f,0x4e,0x2e,0x73,0x74,0x72,0x69,0x6e,0x67,0x69,0x66,0x79,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x61,0x72,0x72,0x61,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x69,0x6e,0x64,0x3a,0x20,0x32,0x33,0x34,0x35,0x36,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x3a,0x20,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x3a,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x67,0x73,0x3a,0x20,0x5b,0x5b,0x22,0x70,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x6c,0x61,0x79,0x50,0x75,0x62,0x6b,0x65,0x79,0x28,0x29,0x5d,0x5d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x5f,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x69,0x67,0x6e,0x20,0x74,0x68,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x6e,0x6f,0x73,0x74,0x72,0x2e,0x73,0x69,0x67,0x6e,0x45,0x76,0x65,0x6e,0x74,0x28,0x61,0x64,0x6d,0x69,0x6e,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x21,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2e,0x73,0x69,0x67,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x45,0x76,0x65,0x6e,0x74,0x20,0x73,0x69,0x67,0x6e,0x69,0x6e,0x67,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x76,0x69,0x61,0x20,0x53,0x69,0x6d,0x70,0x6c,0x65,0x50,0x6f,0x6f,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x55,0x72,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x2e,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x28,0x5b,0x75,0x72,0x6c,0x5d,0x2c,0x20,0x73,0x69,0x67,0x6e,0x65,0x64,0x45,0x76,0x65,0x6e,0x74,0x2c,0x20,0x7b,0x20,0x6f,0x6e,0x61,0x75,0x74,0x68,0x3a,0x20,0x28,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x29,0x20,0x3d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x4e,0x69,0x70,0x34,0x32,0x41,0x75,0x74,0x68,0x28,0x75,0x72,0x6c,0x2c,0x20,0x63,0x68,0x61,0x6c,0x6c,0x65,0x6e,0x67,0x65,0x2c,0x20,0x27,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x27,0x29,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x2e,0x61,0x6c,0x6c,0x53,0x65,0x74,0x74,0x6c,0x65,0x64,0x28,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x66,0x75,0x6c,0x66,0x69,0x6c,0x6c,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0xe2,0x9c,0x85,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0xe2,0x9d,0x8c,0x20,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x20,0x6f,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x6e,0x64,0x65,0x78,0x7d,0x3a,0x60,0x2c,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x28,0x72,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x24,0x7b,0x69,0x7d,0x3a,0x20,0x24,0x7b,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3f,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x72,0x2e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x7d,0x60,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3b,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x60,0x41,0x6c,0x6c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x20,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x44,0x65,0x74,0x61,0x69,0x6c,0x73,0x7d,0x60,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x60,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x7d,0x60,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x5f,0x72,0x65,0x6c,0x61,0x79,0x5f,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x20,0x6b,0x69,0x6e,0x64,0x20,0x24,0x7b,0x6b,0x69,0x6e,0x64,0x7d,0x3a,0x60,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x65,0x72,0x72,0x6f,0x72,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x65,0x77,0x20,0x55,0x52,0x4c,0x28,0x75,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x52,0x65,0x6c,0x61,0x79,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x56,0x61,0x6c,0x69,0x64,0x55,0x72,0x6c,0x28,0x75,0x72,0x6c,0x29,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x75,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x20,0x7c,0x7c,0x20,0x75,0x72,0x6c,0x2e,0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x49,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x49,0x64,0x2c,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x74,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x49,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x65,0x6d,0x6f,0x6a,0x69,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6c,0x65,0x61,0x6e,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x3d,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x36,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x36,0x34,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x33,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x35,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x36,0x38,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x36,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x31,0x46,0x31,0x45,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x31,0x46,0x31,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x32,0x36,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x32,0x36,0x46,0x46,0x7d,0x5d,0x7c,0x5b,0x5c,0x75,0x7b,0x32,0x37,0x30,0x30,0x7d,0x2d,0x5c,0x75,0x7b,0x32,0x37,0x42,0x46,0x7d,0x5d,0x2f,0x67,0x75,0x2c,0x20,0x27,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x63,0x6c,0x65,0x61,0x6e,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x61,0x74,0x75,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x62,0x6c,0x6f,0x63,0x6b,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x45,0x6e,0x73,0x75,0x72,0x65,0x20,0x69,0x74,0x27,0x73,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x74,0x79,0x70,0x65,0x2d,0x73,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x20,0x73,0x74,0x79,0x6c,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x74,0x79,0x70,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x65,0x72,0x72,0x6f,0x72,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x27,0x69,0x6e,0x66,0x6f,0x27,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x76,0x61,0x72,0x28,0x2d,0x2d,0x70,0x72,0x69,0x6d,0x61,0x72,0x79,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x75,0x74,0x6f,0x2d,0x68,0x69,0x64,0x65,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x35,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x27,0x6e,0x6f,0x6e,0x65,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x75,0x72,0x6c,0x20,0x3d,0x20,0x27,0x27,0x2c,0x20,0x72,0x65,0x61,0x64,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x2c,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x66,0x6f,0x72,0x6d,0x2d,0x67,0x72,0x6f,0x75,0x70,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x66,0x6c,0x65,0x78,0x3b,0x20,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x67,0x61,0x70,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x75,0x72,0x6c,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x75,0x72,0x6c,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x72,0x65,0x6c,0x61,0x79,0x2e,0x65,0x78,0x61,0x6d,0x70,0x6c,0x65,0x2e,0x63,0x6f,0x6d,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x24,0x7b,0x75,0x72,0x6c,0x7d,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6c,0x65,0x78,0x3a,0x20,0x31,0x3b,0x20,0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x33,0x30,0x30,0x70,0x78,0x3b,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x2d,0x65,0x76,0x65,0x6e,0x74,0x73,0x3a,0x20,0x61,0x75,0x74,0x6f,0x3b,0x20,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x74,0x65,0x78,0x74,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x66,0x6c,0x65,0x78,0x3b,0x20,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x67,0x61,0x70,0x3a,0x20,0x35,0x70,0x78,0x3b,0x20,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x72,0x65,0x61,0x64,0x22,0x20,0x24,0x7b,0x72,0x65,0x61,0x64,0x20,0x3f,0x20,0x27,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x52,0x65,0x61,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x66,0x6c,0x65,0x78,0x3b,0x20,0x61,0x6c,0x69,0x67,0x6e,0x2d,0x69,0x74,0x65,0x6d,0x73,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x67,0x61,0x70,0x3a,0x20,0x35,0x70,0x78,0x3b,0x20,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x65,0x6c,0x61,0x79,0x2d,0x77,0x72,0x69,0x74,0x65,0x22,0x20,0x24,0x7b,0x77,0x72,0x69,0x74,0x65,0x20,0x3f,0x20,0x27,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x27,0x20,0x3a,0x20,0x27,0x27,0x7d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,0x72,0x69,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x74,0x68,0x69,0x73,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x34,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x20,0x77,0x68,0x69,0x74,0x65,0x2d,0x73,0x70,0x61,0x63,0x65,0x3a,0x20,0x6e,0x6f,0x77,0x72,0x61,0x70,0x3b,0x22,0x3e,0x52,0x65,0x6d,0x6f,0x76,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x0a,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x65,0x6e,0x74,0x72,0x79,0x44,0x69,0x76,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x62,0x75,0x74,0x74,0x6f,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x3d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x2e,0x63,0x6c,0x6f,0x73,0x65,0x73,0x74,0x28,0x27,0x2e,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x6e,0x74,0x72,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x74,0x72,0x79,0x2e,0x72,0x65,0x6d,0x6f,0x76,0x65,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x44,0x4f,0x4d,0x20,0x43,0x4f,0x4e,0x54,0x45,0x4e,0x54,0x20,0x4c,0x4f,0x41,0x44,0x45,0x44,0x20,0x2d,0x20,0x49,0x4e,0x49,0x54,0x49,0x41,0x4c,0x49,0x5a,0x49,0x4e,0x47,0x20,0x54,0x4f,0x47,0x47,0x4c,0x45,0x20,0x42,0x55,0x54,0x54,0x4f,0x4e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x3d,0x3d,0x3d,0x20,0x53,0x45,0x54,0x54,0x49,0x4d,0x45,0x4f,0x55,0x54,0x20,0x43,0x41,0x4c,0x4c,0x42,0x41,0x43,0x4b,0x20,0x2d,0x20,0x43,0x41,0x4c,0x4c,0x49,0x4e,0x47,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x3d,0x3d,0x3d,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x69,0x6e,0x67,0x54,0x6f,0x67,0x67,0x6c,0x65,0x42,0x75,0x74,0x74,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x64,0x65,0x6c,0x61,0x79,0x20,0x74,0x6f,0x20,0x65,0x6e,0x73,0x75,0x72,0x65,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x66,0x75,0x6c,0x6c,0x79,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x20,0x20,0x20,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x28,0x29,0x3b,0x0a,0x7d,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x52,0x65,0x6c,0x61,0x79,0x45,0x76,0x65,0x6e,0x74,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x75,0x70,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x73,0x20,0x66,0x6f,0x72,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x70,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x30,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x2d,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x30,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x35,0x30,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x75,0x62,0x6d,0x69,0x74,0x4b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x45,0x76,0x65,0x6e,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6f,0x6e,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x62,0x79,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x66,0x6f,0x72,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x2d,0x72,0x65,0x6c,0x61,0x79,0x2d,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x20,0x26,0x26,0x20,0x6b,0x69,0x6e,0x64,0x31,0x30,0x30,0x30,0x32,0x43,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x2e,0x63,0x68,0x69,0x6c,0x64,0x72,0x65,0x6e,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x52,0x65,0x6c,0x61,0x79,0x45,0x6e,0x74,0x72,0x79,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x6f,0x6e,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x41,0x64,0x64,0x65,0x64,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x66,0x6f,0x72,0x20,0x4b,0x69,0x6e,0x64,0x20,0x31,0x30,0x30,0x30,0x32,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x52,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x69,0x74,0x79,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x49,0x50,0x20,0x42,0x41,0x4e,0x53,0x20,0x4d,0x41,0x4e,0x41,0x47,0x45,0x4d,0x45,0x4e,0x54,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x6c,0x65,0x74,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x20,0x27,0x61,0x6c,0x6c,0x27,0x3b,0x20,0x2f,0x2f,0x20,0x27,0x61,0x6c,0x6c,0x27,0x2c,0x20,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x2c,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x0a,0x6c,0x65,0x74,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x20,0x2f,0x2f,0x20,0x43,0x61,0x63,0x68,0x65,0x20,0x6c,0x61,0x73,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2d,0x73,0x69,0x64,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x0a,0x0a,0x2f,0x2f,0x20,0x4c,0x6f,0x61,0x64,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x64,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x22,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x69,0x70,0x2c,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x2c,0x20,0x68,0x61,0x73,0x5f,0x61,0x75,0x74,0x68,0x65,0x64,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x2c,0x20,0x6c,0x61,0x73,0x74,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x5f,0x61,0x74,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x65,0x73,0x2c,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x4f,0x52,0x44,0x45,0x52,0x20,0x42,0x59,0x20,0x4d,0x41,0x58,0x28,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x29,0x20,0x44,0x45,0x53,0x43,0x2c,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x44,0x45,0x53,0x43,0x22,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x5f,0x6c,0x6f,0x61,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x78,0x65,0x63,0x75,0x74,0x65,0x20,0x53,0x51,0x4c,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x61,0x6e,0x64,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x49,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x72,0x65,0x6c,0x61,0x79,0x50,0x6f,0x6f,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x61,0x79,0x27,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x71,0x6c,0x5f,0x71,0x75,0x65,0x72,0x79,0x27,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x71,0x75,0x65,0x72,0x79,0x49,0x64,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x2e,0x2e,0x2e,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x53,0x51,0x4c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x70,0x42,0x61,0x6e,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x72,0x6f,0x77,0x73,0x2b,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x6f,0x20,0x61,0x72,0x72,0x61,0x79,0x20,0x6f,0x66,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x6f,0x77,0x73,0x20,0x26,0x26,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6c,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x6f,0x77,0x73,0x2e,0x6d,0x61,0x70,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x62,0x6a,0x20,0x3d,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x63,0x6f,0x6c,0x2c,0x20,0x69,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x20,0x6f,0x62,0x6a,0x5b,0x63,0x6f,0x6c,0x5d,0x20,0x3d,0x20,0x72,0x6f,0x77,0x5b,0x69,0x5d,0x3b,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6f,0x62,0x6a,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x62,0x6f,0x64,0x79,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x37,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x6f,0x74,0x61,0x6c,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x69,0x73,0x73,0x75,0x65,0x64,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x30,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x77,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x49,0x50,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x42,0x61,0x6e,0x73,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x69,0x73,0x20,0x74,0x68,0x69,0x73,0x20,0x72,0x6f,0x77,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x61,0x75,0x74,0x68,0x20,0x6f,0x72,0x20,0x69,0x64,0x6c,0x65,0x29,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x29,0x20,0x7c,0x7c,0x20,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x52,0x6f,0x77,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x21,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x28,0x72,0x6f,0x77,0x29,0x20,0x26,0x26,0x20,0x28,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x20,0x7c,0x7c,0x20,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x69,0x73,0x52,0x6f,0x77,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x63,0x75,0x6c,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x20,0x28,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x20,0x62,0x6f,0x74,0x68,0x20,0x61,0x75,0x74,0x68,0x20,0x61,0x6e,0x64,0x20,0x69,0x64,0x6c,0x65,0x20,0x62,0x61,0x6e,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x74,0x61,0x6c,0x42,0x61,0x6e,0x73,0x20,0x2b,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x30,0x29,0x20,0x2b,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x7c,0x7c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x28,0x72,0x6f,0x77,0x29,0x29,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x42,0x61,0x6e,0x6e,0x65,0x64,0x2b,0x2b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x6f,0x74,0x61,0x6c,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x49,0x50,0x73,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x42,0x61,0x6e,0x6e,0x65,0x64,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x69,0x73,0x73,0x75,0x65,0x64,0x27,0x29,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x42,0x61,0x6e,0x73,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x63,0x68,0x65,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x2d,0x73,0x69,0x64,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x73,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x20,0x3d,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x49,0x50,0x73,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6e,0x64,0x65,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x62,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x74,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6d,0x61,0x70,0x28,0x72,0x6f,0x77,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x69,0x73,0x52,0x6f,0x77,0x42,0x61,0x6e,0x6e,0x65,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x49,0x64,0x6c,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x41,0x75,0x74,0x68,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x6e,0x6f,0x77,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x3d,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x49,0x50,0x73,0x2e,0x68,0x61,0x73,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xe2,0xad,0x90,0x20,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x41,0x75,0x74,0x68,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x69,0x73,0x49,0x64,0x6c,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x94,0xb4,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x61,0x75,0x74,0x68,0x2b,0x69,0x64,0x6c,0x65,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x41,0x75,0x74,0x68,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x94,0xb4,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x61,0x75,0x74,0x68,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x49,0x64,0x6c,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x94,0xb4,0x20,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x28,0x69,0x64,0x6c,0x65,0x29,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x20,0x7c,0x7c,0x20,0x28,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x29,0x29,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x9f,0xa1,0x20,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x73,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x20,0x3d,0x20,0x27,0xf0,0x9f,0x9f,0xa2,0x20,0x43,0x6c,0x65,0x61,0x6e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,0x74,0x65,0x72,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x74,0x77,0x6f,0x20,0x62,0x61,0x6e,0x20,0x65,0x78,0x70,0x69,0x72,0x79,0x20,0x74,0x69,0x6d,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x69,0x76,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6d,0x61,0x78,0x28,0x72,0x6f,0x77,0x2e,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x7c,0x7c,0x20,0x30,0x2c,0x20,0x72,0x6f,0x77,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x7c,0x7c,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x65,0x66,0x66,0x65,0x63,0x74,0x69,0x76,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x6e,0x65,0x77,0x20,0x44,0x61,0x74,0x65,0x28,0x65,0x66,0x66,0x65,0x63,0x74,0x69,0x76,0x65,0x42,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x2e,0x74,0x6f,0x4c,0x6f,0x63,0x61,0x6c,0x65,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x29,0x20,0x3a,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x65,0x64,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x68,0x61,0x73,0x5f,0x61,0x75,0x74,0x68,0x65,0x64,0x5f,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x20,0x3f,0x20,0x27,0xe2,0x9c,0x85,0x20,0x59,0x65,0x73,0x27,0x20,0x3a,0x20,0x27,0xe2,0x9d,0x8c,0x20,0x4e,0x6f,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x20,0x3d,0x20,0x72,0x6f,0x77,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x3c,0x74,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x4c,0x61,0x62,0x65,0x6c,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x61,0x75,0x74,0x68,0x65,0x64,0x53,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x24,0x7b,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x73,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x7b,0x69,0x73,0x42,0x61,0x6e,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x21,0x69,0x73,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x3f,0x20,0x60,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x75,0x6e,0x62,0x61,0x6e,0x49,0x70,0x28,0x27,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x7d,0x27,0x29,0x22,0x3e,0x55,0x6e,0x62,0x61,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x60,0x20,0x3a,0x20,0x27,0x27,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x62,0x75,0x74,0x74,0x6f,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x49,0x70,0x42,0x61,0x6e,0x28,0x27,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x6f,0x77,0x2e,0x69,0x70,0x29,0x7d,0x27,0x29,0x22,0x3e,0x44,0x65,0x6c,0x65,0x74,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x74,0x72,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x42,0x61,0x6e,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x62,0x61,0x6e,0x49,0x70,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x49,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x62,0x61,0x6e,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x62,0x61,0x6e,0x2d,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2d,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x20,0x3d,0x20,0x69,0x70,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x65,0x6e,0x74,0x65,0x72,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x20,0x49,0x50,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x28,0x62,0x61,0x73,0x69,0x63,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x69,0x6f,0x6e,0x29,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x52,0x65,0x67,0x65,0x78,0x20,0x3d,0x20,0x2f,0x5e,0x28,0x5c,0x64,0x7b,0x31,0x2c,0x33,0x7d,0x5c,0x2e,0x29,0x7b,0x33,0x7d,0x5c,0x64,0x7b,0x31,0x2c,0x33,0x7d,0x24,0x2f,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x70,0x52,0x65,0x67,0x65,0x78,0x2e,0x74,0x65,0x73,0x74,0x28,0x69,0x70,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x65,0x72,0x72,0x6f,0x72,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x66,0x6c,0x6f,0x6f,0x72,0x28,0x44,0x61,0x74,0x65,0x2e,0x6e,0x6f,0x77,0x28,0x29,0x20,0x2f,0x20,0x31,0x30,0x30,0x30,0x29,0x20,0x2b,0x20,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x60,0x49,0x4e,0x53,0x45,0x52,0x54,0x20,0x4f,0x52,0x20,0x52,0x45,0x50,0x4c,0x41,0x43,0x45,0x20,0x49,0x4e,0x54,0x4f,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x28,0x69,0x70,0x2c,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x2c,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x2c,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x64,0x5f,0x61,0x74,0x2c,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x29,0x20,0x56,0x41,0x4c,0x55,0x45,0x53,0x20,0x28,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x2c,0x20,0x24,0x7b,0x62,0x61,0x6e,0x6e,0x65,0x64,0x55,0x6e,0x74,0x69,0x6c,0x7d,0x2c,0x20,0x43,0x4f,0x41,0x4c,0x45,0x53,0x43,0x45,0x28,0x28,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x62,0x61,0x6e,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x29,0x2c,0x20,0x30,0x29,0x20,0x2b,0x20,0x31,0x2c,0x20,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x2c,0x20,0x43,0x4f,0x41,0x4c,0x45,0x53,0x43,0x45,0x28,0x28,0x53,0x45,0x4c,0x45,0x43,0x54,0x20,0x66,0x69,0x72,0x73,0x74,0x5f,0x73,0x65,0x65,0x6e,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x29,0x2c,0x20,0x73,0x74,0x72,0x66,0x74,0x69,0x6d,0x65,0x28,0x27,0x25,0x73,0x27,0x2c,0x20,0x27,0x6e,0x6f,0x77,0x27,0x29,0x29,0x29,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x5f,0x61,0x64,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x64,0x69,0x76,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x2d,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,0x49,0x50,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x49,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x6e,0x62,0x61,0x6e,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x6e,0x62,0x61,0x6e,0x49,0x70,0x28,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x60,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x6e,0x62,0x61,0x6e,0x20,0x24,0x7b,0x69,0x70,0x7d,0x3f,0x60,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x60,0x55,0x50,0x44,0x41,0x54,0x45,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x53,0x45,0x54,0x20,0x62,0x61,0x6e,0x6e,0x65,0x64,0x5f,0x75,0x6e,0x74,0x69,0x6c,0x20,0x3d,0x20,0x30,0x2c,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x5f,0x75,0x6e,0x62,0x61,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x44,0x65,0x6c,0x65,0x74,0x65,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x62,0x61,0x6e,0x20,0x72,0x65,0x63,0x6f,0x72,0x64,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x49,0x70,0x42,0x61,0x6e,0x28,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x60,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x62,0x61,0x6e,0x20,0x72,0x65,0x63,0x6f,0x72,0x64,0x20,0x66,0x6f,0x72,0x20,0x24,0x7b,0x69,0x70,0x7d,0x3f,0x60,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x3d,0x20,0x60,0x44,0x45,0x4c,0x45,0x54,0x45,0x20,0x46,0x52,0x4f,0x4d,0x20,0x69,0x70,0x5f,0x62,0x61,0x6e,0x73,0x20,0x57,0x48,0x45,0x52,0x45,0x20,0x69,0x70,0x20,0x3d,0x20,0x27,0x24,0x7b,0x69,0x70,0x7d,0x27,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x65,0x53,0x71,0x6c,0x51,0x75,0x65,0x72,0x79,0x52,0x61,0x77,0x28,0x71,0x75,0x65,0x72,0x79,0x2c,0x20,0x27,0x69,0x70,0x5f,0x62,0x61,0x6e,0x5f,0x64,0x65,0x6c,0x65,0x74,0x65,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x0a,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x2c,0x20,0x35,0x30,0x30,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x65,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x2d,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x61,0x63,0x68,0x65,0x20,0x28,0x6e,0x6f,0x20,0x72,0x65,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x6e,0x65,0x65,0x64,0x65,0x64,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x61,0x6c,0x6c,0x27,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x2c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x61,0x6c,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x2c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4c,0x69,0x73,0x74,0x2e,0x74,0x6f,0x67,0x67,0x6c,0x65,0x28,0x27,0x61,0x63,0x74,0x69,0x76,0x65,0x27,0x2c,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x2d,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x61,0x63,0x68,0x65,0x20,0x69,0x66,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x2c,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x66,0x65,0x74,0x63,0x68,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x49,0x70,0x42,0x61,0x6e,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x7b,0x20,0x72,0x6f,0x77,0x73,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x2c,0x20,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x3a,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x45,0x73,0x63,0x61,0x70,0x65,0x20,0x48,0x54,0x4d,0x4c,0x20,0x74,0x6f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x58,0x53,0x53,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x74,0x65,0x78,0x74,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x65,0x78,0x74,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,0x76,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x64,0x69,0x76,0x2e,0x74,0x65,0x78,0x74,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x74,0x65,0x78,0x74,0x3b,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x64,0x64,0x20,0x49,0x50,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x54,0x6f,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x69,0x70,0x2d,0x69,0x6e,0x70,0x75,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x20,0x3d,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x70,0x29,0x20,0x7b,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x45,0x6e,0x74,0x65,0x72,0x20,0x61,0x6e,0x20,0x49,0x50,0x20,0x61,0x64,0x64,0x72,0x65,0x73,0x73,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,0x65,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x3d,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x73,0x2e,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x69,0x70,0x29,0x29,0x20,0x7b,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x6f,0x72,0x61,0x6e,0x67,0x65,0x22,0x3e,0x41,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x70,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x69,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x70,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x27,0x2c,0x20,0x27,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x85,0x20,0x24,0x7b,0x69,0x70,0x7d,0x20,0x61,0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x63,0x61,0x63,0x68,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x24,0x7b,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x64,0x69,0x76,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x73,0x20,0x3d,0x20,0x28,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x53,0x74,0x72,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x65,0x6d,0x3e,0x4e,0x6f,0x20,0x49,0x50,0x73,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x65,0x64,0x3c,0x2f,0x65,0x6d,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x69,0x70,0x73,0x2e,0x6d,0x61,0x70,0x28,0x69,0x70,0x20,0x3d,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x29,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x77,0x68,0x69,0x74,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x31,0x70,0x78,0x20,0x36,0x70,0x78,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x33,0x70,0x78,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x32,0x70,0x78,0x3b,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x69,0x70,0x29,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x6d,0x6f,0x76,0x65,0x46,0x72,0x6f,0x6d,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x27,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x69,0x70,0x29,0x7d,0x27,0x29,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x77,0x68,0x69,0x74,0x65,0x3b,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x20,0x30,0x20,0x30,0x20,0x34,0x70,0x78,0x3b,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x31,0x31,0x70,0x78,0x22,0x3e,0xe2,0x9c,0x95,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x49,0x50,0x20,0x66,0x72,0x6f,0x6d,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x46,0x72,0x6f,0x6d,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x28,0x69,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x3d,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x70,0x73,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x73,0x20,0x21,0x3d,0x3d,0x20,0x69,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x69,0x70,0x73,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x20,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x73,0x65,0x74,0x27,0x2c,0x20,0x27,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x27,0x2c,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x3d,0x20,0x6e,0x65,0x77,0x56,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x49,0x50,0x20,0x42,0x61,0x6e,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x64,0x42,0x61,0x6e,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x62,0x61,0x6e,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x2d,0x69,0x70,0x2d,0x62,0x61,0x6e,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x41,0x6c,0x6c,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x61,0x6c,0x6c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x42,0x61,0x6e,0x6e,0x65,0x64,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x69,0x70,0x2d,0x62,0x61,0x6e,0x2d,0x66,0x69,0x6c,0x74,0x65,0x72,0x2d,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x64,0x64,0x2d,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x64,0x42,0x61,0x6e,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x42,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x62,0x61,0x6e,0x49,0x70,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x20,0x69,0x70,0x42,0x61,0x6e,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x20,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x20,0x6c,0x6f,0x61,0x64,0x49,0x70,0x42,0x61,0x6e,0x73,0x28,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x41,0x6c,0x6c,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x41,0x6c,0x6c,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x27,0x61,0x6c,0x6c,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x42,0x61,0x6e,0x6e,0x65,0x64,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x42,0x61,0x6e,0x6e,0x65,0x64,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x27,0x62,0x61,0x6e,0x6e,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x6c,0x74,0x65,0x72,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x45,0x78,0x70,0x69,0x72,0x65,0x64,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x28,0x29,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x46,0x69,0x6c,0x74,0x65,0x72,0x28,0x27,0x65,0x78,0x70,0x69,0x72,0x65,0x64,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x61,0x64,0x64,0x54,0x6f,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x20,0x6f,0x6e,0x20,0x70,0x61,0x67,0x65,0x20,0x6c,0x6f,0x61,0x64,0x0a,0x20,0x20,0x20,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x57,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x6c,0x65,0x5f,0x62,0x61,0x6e,0x5f,0x77,0x68,0x69,0x74,0x65,0x6c,0x69,0x73,0x74,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x49,0x50,0x20,0x42,0x61,0x6e,0x73,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x77,0x68,0x65,0x6e,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x69,0x6e,0x69,0x74,0x49,0x70,0x42,0x61,0x6e,0x73,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x29,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x2f,0x2f,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x20,0x50,0x41,0x47,0x45,0x20,0x46,0x55,0x4e,0x43,0x54,0x49,0x4f,0x4e,0x53,0x0a,0x2f,0x2f,0x20,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x20,0x6f,0x66,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6b,0x65,0x79,0x73,0x20,0x74,0x6f,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x69,0x64,0x73,0x20,0x61,0x6e,0x64,0x20,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x0a,0x63,0x6f,0x6e,0x73,0x74,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x20,0x3d,0x20,0x5b,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x6f,0x6f,0x74,0x5f,0x6e,0x70,0x75,0x62,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x6f,0x6f,0x74,0x2d,0x6e,0x70,0x75,0x62,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x2d,0x72,0x65,0x6c,0x61,0x79,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x61,0x64,0x6d,0x69,0x6e,0x5f,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x64,0x6d,0x69,0x6e,0x2d,0x6b,0x69,0x6e,0x64,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x6c,0x69,0x76,0x65,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x70,0x61,0x67,0x65,0x5f,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x70,0x61,0x67,0x65,0x2d,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x74,0x69,0x63,0x6b,0x5f,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x5f,0x6d,0x73,0x27,0x2c,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2d,0x74,0x69,0x63,0x6b,0x2d,0x69,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x27,0x2c,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x62,0x61,0x74,0x63,0x68,0x2d,0x73,0x69,0x7a,0x65,0x27,0x2c,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x70,0x6f,0x6c,0x6c,0x5f,0x6d,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x27,0x2c,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x69,0x64,0x6c,0x65,0x5f,0x70,0x6f,0x6c,0x6c,0x5f,0x6d,0x73,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x69,0x64,0x6c,0x65,0x2d,0x70,0x6f,0x6c,0x6c,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x62,0x69,0x6e,0x61,0x72,0x79,0x5f,0x70,0x61,0x74,0x68,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x69,0x6e,0x61,0x72,0x79,0x2d,0x70,0x61,0x74,0x68,0x27,0x2c,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x20,0x7d,0x2c,0x0a,0x20,0x20,0x20,0x20,0x7b,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x5f,0x70,0x67,0x5f,0x63,0x6f,0x6e,0x6e,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x69,0x65,0x6c,0x64,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x70,0x67,0x2d,0x63,0x6f,0x6e,0x6e,0x27,0x2c,0x20,0x20,0x20,0x20,0x20,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x20,0x7d,0x0a,0x5d,0x3b,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x28,0x77,0x68,0x69,0x63,0x68,0x20,0x73,0x74,0x6f,0x72,0x65,0x73,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x61,0x67,0x73,0x20,0x61,0x73,0x20,0x5b,0x6b,0x65,0x79,0x2c,0x20,0x76,0x61,0x6c,0x75,0x65,0x5d,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x56,0x61,0x6c,0x75,0x65,0x28,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x7c,0x7c,0x20,0x21,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x61,0x67,0x73,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x61,0x67,0x20,0x6f,0x66,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x74,0x61,0x67,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x41,0x72,0x72,0x61,0x79,0x2e,0x69,0x73,0x41,0x72,0x72,0x61,0x79,0x28,0x74,0x61,0x67,0x29,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x32,0x20,0x26,0x26,0x20,0x74,0x61,0x67,0x5b,0x30,0x5d,0x20,0x3d,0x3d,0x3d,0x20,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x61,0x67,0x5b,0x31,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x73,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x61,0x6e,0x64,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x73,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2f,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x71,0x75,0x65,0x72,0x79,0x20,0x69,0x6e,0x66,0x72,0x61,0x73,0x74,0x72,0x75,0x63,0x74,0x75,0x72,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x73,0x65,0x6e,0x64,0x73,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x62,0x75,0x74,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x20,0x28,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x61,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x6f,0x75,0x73,0x6c,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x76,0x69,0x61,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x6f,0x6e,0x66,0x69,0x67,0x51,0x75,0x65,0x72,0x79,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x2d,0x3e,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x29,0x2e,0x20,0x57,0x65,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x61,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x63,0x61,0x6e,0x20,0x64,0x65,0x74,0x65,0x63,0x74,0x20,0x77,0x68,0x65,0x6e,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x72,0x65,0x76,0x43,0x6f,0x6e,0x66,0x69,0x67,0x49,0x64,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3f,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x57,0x61,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x61,0x73,0x79,0x6e,0x63,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x71,0x75,0x65,0x72,0x79,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x6c,0x6c,0x20,0x66,0x6f,0x72,0x20,0x75,0x70,0x20,0x74,0x6f,0x20,0x35,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x20,0x6e,0x65,0x77,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x28,0x6f,0x72,0x20,0x61,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x20,0x69,0x64,0x29,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x77,0x61,0x69,0x74,0x65,0x64,0x20,0x3d,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x28,0x77,0x61,0x69,0x74,0x65,0x64,0x20,0x3c,0x20,0x35,0x30,0x30,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x49,0x64,0x20,0x3d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x3f,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x69,0x64,0x20,0x7c,0x7c,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x26,0x26,0x20,0x63,0x75,0x72,0x49,0x64,0x20,0x21,0x3d,0x3d,0x20,0x70,0x72,0x65,0x76,0x43,0x6f,0x6e,0x66,0x69,0x67,0x49,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x6e,0x65,0x77,0x20,0x50,0x72,0x6f,0x6d,0x69,0x73,0x65,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x20,0x3d,0x3e,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x72,0x65,0x73,0x6f,0x6c,0x76,0x65,0x2c,0x20,0x32,0x30,0x30,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x61,0x69,0x74,0x65,0x64,0x20,0x2b,0x3d,0x20,0x32,0x30,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x43,0x6f,0x6e,0x66,0x69,0x67,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x4d,0x50,0x4f,0x52,0x54,0x41,0x4e,0x54,0x3a,0x20,0x73,0x6b,0x69,0x70,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x69,0x73,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x6c,0x79,0x20,0x65,0x64,0x69,0x74,0x69,0x6e,0x67,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x28,0x65,0x76,0x65,0x72,0x79,0x20,0x31,0x30,0x73,0x20,0x76,0x69,0x61,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6c,0x6f,0x62,0x62,0x65,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x69,0x6e,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x65,0x64,0x69,0x74,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x22,0x41,0x70,0x70,0x6c,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x73,0x20,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0x20,0x41,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x6f,0x6e,0x73,0x69,0x64,0x65,0x72,0x65,0x64,0x20,0x22,0x62,0x65,0x69,0x6e,0x67,0x20,0x65,0x64,0x69,0x74,0x65,0x64,0x22,0x20,0x69,0x66,0x20,0x69,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x68,0x61,0x73,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x4f,0x52,0x20,0x69,0x74,0x20,0x68,0x61,0x73,0x20,0x62,0x65,0x65,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x74,0x68,0x65,0x20,0x6c,0x61,0x73,0x74,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x28,0x64,0x69,0x72,0x74,0x79,0x29,0x2e,0x20,0x44,0x69,0x72,0x74,0x79,0x20,0x73,0x74,0x61,0x74,0x65,0x20,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x74,0x72,0x61,0x63,0x6b,0x65,0x64,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x69,0x6e,0x70,0x75,0x74,0x2f,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x69,0x6e,0x69,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x76,0x69,0x61,0x20,0x6d,0x61,0x72,0x6b,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x69,0x65,0x6c,0x64,0x44,0x69,0x72,0x74,0x79,0x28,0x29,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x66,0x69,0x65,0x6c,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x67,0x65,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x56,0x61,0x6c,0x75,0x65,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x7c,0x7c,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x74,0x6f,0x6d,0x70,0x20,0x6f,0x6e,0x20,0x61,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x69,0x73,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x66,0x6f,0x63,0x75,0x73,0x65,0x64,0x20,0x6f,0x6e,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x65,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x74,0x6f,0x6d,0x70,0x20,0x6f,0x6e,0x20,0x61,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x74,0x68,0x65,0x20,0x75,0x73,0x65,0x72,0x20,0x68,0x61,0x73,0x20,0x65,0x64,0x69,0x74,0x65,0x64,0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x44,0x69,0x72,0x74,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x31,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x20,0x73,0x74,0x6f,0x72,0x65,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x3b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x61,0x73,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x2c,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x5c,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x74,0x74,0x65,0x6d,0x70,0x74,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2f,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x76,0x69,0x61,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x68,0x6f,0x77,0x20,0x61,0x20,0x6e,0x65,0x75,0x74,0x72,0x61,0x6c,0x20,0x22,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3b,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x29,0x20,0x77,0x69,0x6c,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x20,0x69,0x74,0x20,0x77,0x68,0x65,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x72,0x72,0x69,0x76,0x65,0x73,0x2e,0x20,0x49,0x66,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x73,0x20,0x28,0x65,0x2e,0x67,0x2e,0x20,0x61,0x64,0x6d,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x29,0x2c,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x73,0x75,0x72,0x66,0x61,0x63,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x70,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x70,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x70,0x3e,0x4c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x70,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x65,0x73,0x74,0x2d,0x65,0x66,0x66,0x6f,0x72,0x74,0x3a,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x2e,0x20,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x68,0x61,0x6e,0x64,0x6c,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x69,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x53,0x79,0x73,0x74,0x65,0x6d,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x29,0x20,0x2d,0x3e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x29,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x2c,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x72,0x72,0x4d,0x73,0x67,0x20,0x3d,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x65,0x74,0x65,0x63,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x61,0x69,0x6c,0x75,0x72,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x61,0x20,0x63,0x6c,0x65,0x61,0x72,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x73,0x20,0x74,0x68,0x65,0x20,0x6b,0x69,0x6e,0x64,0x20,0x32,0x33,0x34,0x35,0x36,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x65,0x76,0x65,0x72,0x20,0x72,0x75,0x6e,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x41,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x20,0x3d,0x20,0x2f,0x75,0x6e,0x61,0x75,0x74,0x68,0x6f,0x72,0x69,0x7a,0x65,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x74,0x74,0x65,0x6d,0x70,0x74,0x7c,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x7c,0x6e,0x6f,0x74,0x20,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x2e,0x74,0x65,0x73,0x74,0x28,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x75,0x74,0x68,0x4e,0x6f,0x74,0x65,0x20,0x3d,0x20,0x69,0x73,0x41,0x75,0x74,0x68,0x45,0x72,0x72,0x6f,0x72,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x27,0x20,0x3c,0x65,0x6d,0x3e,0x28,0x59,0x6f,0x75,0x72,0x20,0x62,0x72,0x6f,0x77,0x73,0x65,0x72,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x6f,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x72,0x65,0x6c,0x61,0x79,0x2e,0x20,0x4c,0x6f,0x61,0x64,0x20,0x74,0x68,0x65,0x20,0x61,0x64,0x6d,0x69,0x6e,0x20,0x70,0x72,0x69,0x76,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,0x20,0x79,0x6f,0x75,0x72,0x20,0x4e,0x6f,0x73,0x74,0x72,0x20,0x65,0x78,0x74,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x2e,0x29,0x3c,0x2f,0x65,0x6d,0x3e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x4d,0x73,0x67,0x7d,0x24,0x7b,0x61,0x75,0x74,0x68,0x4e,0x6f,0x74,0x65,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x4d,0x73,0x67,0x7d,0x24,0x7b,0x61,0x75,0x74,0x68,0x4e,0x6f,0x74,0x65,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x41,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x63,0x6f,0x6c,0x6c,0x65,0x63,0x74,0x20,0x66,0x6f,0x72,0x6d,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x79,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x20,0x3d,0x20,0x5b,0x5d,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x66,0x69,0x65,0x6c,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x6e,0x65,0x77,0x6c,0x69,0x6e,0x65,0x73,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x2d,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x73,0x74,0x6f,0x72,0x61,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x76,0x61,0x6c,0x75,0x65,0x2e,0x73,0x70,0x6c,0x69,0x74,0x28,0x27,0x5c,0x6e,0x27,0x29,0x2e,0x6d,0x61,0x70,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x29,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x73,0x20,0x3d,0x3e,0x20,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x2c,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x69,0x6d,0x20,0x77,0x68,0x69,0x74,0x65,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x6c,0x65,0x61,0x76,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x73,0x6b,0x69,0x70,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x44,0x6f,0x20,0x4e,0x4f,0x54,0x20,0x63,0x6f,0x65,0x72,0x63,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x74,0x6f,0x20,0x27,0x30,0x27,0x20,0xe2,0x80,0x94,0x20,0x74,0x68,0x65,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x76,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x73,0x20,0x6e,0x75,0x6d,0x65,0x72,0x69,0x63,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x72,0x61,0x6e,0x67,0x65,0x73,0x20,0x28,0x65,0x2e,0x67,0x2e,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x20,0x31,0x2d,0x35,0x30,0x30,0x29,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x73,0x20,0x30,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x73,0x20,0x61,0x74,0x6f,0x6d,0x69,0x63,0x2c,0x20,0x73,0x6f,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x65,0x6c,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x72,0x6f,0x6c,0x6c,0x73,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x74,0x69,0x72,0x65,0x20,0x62,0x61,0x74,0x63,0x68,0x20,0x28,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,0x20,0x75,0x6e,0x72,0x65,0x6c,0x61,0x74,0x65,0x64,0x20,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x73,0x20,0x6c,0x69,0x6b,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x2e,0x20,0x45,0x6d,0x70,0x74,0x79,0x20,0x68,0x65,0x72,0x65,0x20,0x6d,0x65,0x61,0x6e,0x73,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x72,0x6d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x77,0x61,0x73,0x20,0x6e,0x6f,0x74,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x64,0x2c,0x20,0x73,0x6f,0x20,0x77,0x65,0x20,0x73,0x6b,0x69,0x70,0x20,0x69,0x74,0x20,0x61,0x6e,0x64,0x20,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x20,0x74,0x68,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x73,0x74,0x6f,0x72,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x76,0x61,0x6c,0x75,0x65,0x29,0x2e,0x74,0x72,0x69,0x6d,0x28,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x6b,0x69,0x70,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x2f,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x2f,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x68,0x65,0x20,0x62,0x61,0x63,0x6b,0x65,0x6e,0x64,0x20,0x28,0x75,0x70,0x64,0x61,0x74,0x65,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x69,0x6e,0x5f,0x74,0x61,0x62,0x6c,0x65,0x29,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x73,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x73,0x74,0x72,0x69,0x6e,0x67,0x73,0x20,0x74,0x6f,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x20,0x61,0x63,0x63,0x69,0x64,0x65,0x6e,0x74,0x61,0x6c,0x20,0x64,0x61,0x74,0x61,0x20,0x6c,0x6f,0x73,0x73,0x2c,0x20,0x61,0x6e,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x69,0x73,0x20,0x61,0x74,0x6f,0x6d,0x69,0x63,0x20,0xe2,0x80,0x94,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6f,0x6e,0x65,0x20,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x72,0x6f,0x6c,0x6c,0x73,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x74,0x69,0x72,0x65,0x20,0x62,0x61,0x74,0x63,0x68,0x2e,0x20,0x46,0x69,0x65,0x6c,0x64,0x73,0x20,0x6c,0x69,0x6b,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x6f,0x6f,0x74,0x5f,0x6e,0x70,0x75,0x62,0x73,0x20,0x61,0x6e,0x64,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x61,0x72,0x65,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x6e,0x64,0x20,0x6d,0x61,0x79,0x20,0x6c,0x65,0x67,0x69,0x74,0x69,0x6d,0x61,0x74,0x65,0x6c,0x79,0x20,0x62,0x65,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x75,0x6e,0x74,0x69,0x6c,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x2e,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x72,0x65,0x20,0x61,0x6c,0x73,0x6f,0x20,0x73,0x6b,0x69,0x70,0x70,0x65,0x64,0x20,0x77,0x68,0x65,0x6e,0x20,0x65,0x6d,0x70,0x74,0x79,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x44,0x42,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x69,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x64,0x20,0x69,0x6e,0x73,0x74,0x65,0x61,0x64,0x20,0x6f,0x66,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6e,0x20,0x6f,0x75,0x74,0x2d,0x6f,0x66,0x2d,0x72,0x61,0x6e,0x67,0x65,0x20,0x30,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x27,0x20,0x26,0x26,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x74,0x65,0x78,0x74,0x61,0x72,0x65,0x61,0x2d,0x6c,0x69,0x73,0x74,0x27,0x20,0x7c,0x7c,0x20,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x20,0x7c,0x7c,0x20,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x73,0x74,0x72,0x69,0x6e,0x67,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x74,0x79,0x70,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x20,0x3d,0x20,0x27,0x62,0x6f,0x6f,0x6c,0x65,0x61,0x6e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x2e,0x70,0x75,0x73,0x68,0x28,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x66,0x69,0x65,0x6c,0x64,0x2e,0x6b,0x65,0x79,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x76,0x61,0x6c,0x75,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x64,0x61,0x74,0x61,0x54,0x79,0x70,0x65,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x29,0x22,0x3e,0x41,0x70,0x70,0x6c,0x79,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x61,0x6c,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x6b,0x65,0x79,0x73,0x20,0x69,0x6e,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x75,0x70,0x64,0x61,0x74,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6e,0x66,0x69,0x67,0x4f,0x62,0x6a,0x65,0x63,0x74,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x63,0x72,0x65,0x6d,0x65,0x6e,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x70,0x69,0x63,0x6b,0x73,0x20,0x75,0x70,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x20,0x3d,0x20,0x67,0x65,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x56,0x61,0x6c,0x75,0x65,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x65,0x78,0x74,0x47,0x65,0x6e,0x20,0x3d,0x20,0x31,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x26,0x26,0x20,0x21,0x69,0x73,0x4e,0x61,0x4e,0x28,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x2c,0x20,0x31,0x30,0x29,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x65,0x78,0x74,0x47,0x65,0x6e,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x47,0x65,0x6e,0x2c,0x20,0x31,0x30,0x29,0x20,0x2b,0x20,0x31,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x43,0x6f,0x6e,0x66,0x69,0x67,0x55,0x70,0x64,0x61,0x74,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6b,0x65,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x63,0x6f,0x6e,0x66,0x69,0x67,0x5f,0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6e,0x65,0x78,0x74,0x47,0x65,0x6e,0x29,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x61,0x74,0x61,0x5f,0x74,0x79,0x70,0x65,0x3a,0x20,0x27,0x69,0x6e,0x74,0x65,0x67,0x65,0x72,0x27,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x74,0x65,0x67,0x6f,0x72,0x79,0x3a,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x6c,0x79,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x64,0x69,0x72,0x74,0x79,0x20,0x66,0x6c,0x61,0x67,0x73,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x20,0x75,0x70,0x63,0x6f,0x6d,0x69,0x6e,0x67,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x63,0x61,0x6e,0x20,0x72,0x65,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x66,0x72,0x6f,0x6d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x74,0x68,0x65,0x20,0x66,0x72,0x65,0x73,0x68,0x6c,0x79,0x2d,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x44,0x42,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x73,0x6b,0x69,0x70,0x70,0x69,0x6e,0x67,0x20,0x75,0x73,0x65,0x72,0x2d,0x65,0x64,0x69,0x74,0x65,0x64,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,0x65,0x61,0x72,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x69,0x65,0x6c,0x64,0x73,0x44,0x69,0x72,0x74,0x79,0x28,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x74,0x6f,0x20,0x72,0x65,0x66,0x6c,0x65,0x63,0x74,0x20,0x61,0x70,0x70,0x6c,0x69,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x2e,0x63,0x61,0x74,0x63,0x68,0x28,0x28,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x7d,0x29,0x2c,0x20,0x31,0x35,0x30,0x30,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x52,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x76,0x69,0x61,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x63,0x6f,0x6e,0x66,0x69,0x67,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x65,0x64,0x20,0x3d,0x20,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x27,0x52,0x65,0x73,0x65,0x74,0x20,0x61,0x6c,0x6c,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3f,0x20,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x63,0x61,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x2d,0x66,0x65,0x74,0x63,0x68,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6c,0x6c,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x73,0x2e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x65,0x64,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x23,0x66,0x66,0x30,0x30,0x30,0x30,0x29,0x22,0x3e,0x52,0x65,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x2c,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x73,0x65,0x74,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x27,0x5d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x73,0x65,0x6e,0x74,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x65,0x72,0x72,0x6f,0x72,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x27,0x2c,0x20,0x65,0x72,0x72,0x6f,0x72,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x73,0x79,0x73,0x74,0x65,0x6d,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x73,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x2b,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x69,0x6e,0x62,0x6f,0x78,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6d,0x73,0x67,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6d,0x73,0x67,0x29,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x70,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x65,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6d,0x73,0x67,0x29,0x7d,0x3c,0x2f,0x70,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x64,0x61,0x74,0x61,0x20,0x7c,0x7c,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x65,0x6c,0x70,0x65,0x72,0x3a,0x20,0x70,0x69,0x63,0x6b,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x76,0x61,0x6c,0x75,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x61,0x20,0x6c,0x69,0x73,0x74,0x20,0x6f,0x66,0x20,0x63,0x61,0x6e,0x64,0x69,0x64,0x61,0x74,0x65,0x20,0x6b,0x65,0x79,0x73,0x2f,0x70,0x61,0x74,0x68,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x70,0x69,0x63,0x6b,0x28,0x2e,0x2e,0x2e,0x76,0x61,0x6c,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6e,0x73,0x74,0x20,0x76,0x20,0x6f,0x66,0x20,0x76,0x61,0x6c,0x73,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x76,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x76,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x76,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6e,0x75,0x6c,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x28,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x3d,0x20,0x64,0x61,0x74,0x61,0x2e,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x7c,0x7c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x3a,0x20,0x66,0x61,0x6c,0x6c,0x20,0x62,0x61,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x20,0x66,0x6c,0x61,0x74,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x69,0x66,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x61,0x62,0x73,0x65,0x6e,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x63,0x61,0x63,0x68,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x65,0x72,0x2d,0x61,0x75,0x74,0x68,0x6f,0x72,0x20,0x75,0x6e,0x74,0x69,0x6c,0x2d,0x63,0x75,0x72,0x73,0x6f,0x72,0x20,0x64,0x72,0x61,0x69,0x6e,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x66,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x5f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x5f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x66,0x54,0x6f,0x74,0x61,0x6c,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x27,0x3c,0x75,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x22,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x20,0x52,0x65,0x6c,0x61,0x79,0x73,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x73,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x43,0x61,0x63,0x68,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x65,0x76,0x65,0x6e,0x74,0x73,0x43,0x61,0x63,0x68,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x62,0x66,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x26,0x26,0x20,0x62,0x66,0x54,0x6f,0x74,0x61,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x62,0x66,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x29,0x29,0x7d,0x2f,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x62,0x66,0x54,0x6f,0x74,0x61,0x6c,0x29,0x29,0x7d,0x20,0x61,0x75,0x74,0x68,0x6f,0x72,0x73,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x75,0x6c,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x49,0x6e,0x62,0x6f,0x78,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x28,0x72,0x65,0x6c,0x61,0x79,0x2d,0x6f,0x77,0x6e,0x65,0x64,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x70,0x6f,0x6c,0x6c,0x65,0x72,0x29,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x20,0x3d,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x20,0x7c,0x7c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x20,0x7c,0x7c,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x61,0x63,0x6b,0x77,0x61,0x72,0x64,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x3a,0x20,0x64,0x65,0x72,0x69,0x76,0x65,0x20,0x66,0x72,0x6f,0x6d,0x20,0x66,0x6c,0x61,0x74,0x20,0x74,0x6f,0x70,0x2d,0x6c,0x65,0x76,0x65,0x6c,0x20,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x2a,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x69,0x66,0x20,0x6e,0x65,0x73,0x74,0x65,0x64,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,0x61,0x62,0x73,0x65,0x6e,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x6e,0x62,0x6f,0x78,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x71,0x75,0x65,0x75,0x65,0x44,0x65,0x70,0x74,0x68,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x71,0x75,0x65,0x75,0x65,0x5f,0x64,0x65,0x70,0x74,0x68,0x2c,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x20,0x26,0x26,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x28,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x29,0x20,0x2b,0x20,0x4e,0x75,0x6d,0x62,0x65,0x72,0x28,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x61,0x73,0x74,0x50,0x6f,0x6c,0x6c,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x70,0x6f,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x72,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6c,0x61,0x73,0x74,0x42,0x61,0x74,0x63,0x68,0x53,0x69,0x7a,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x6c,0x61,0x73,0x74,0x5f,0x62,0x61,0x74,0x63,0x68,0x5f,0x73,0x69,0x7a,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x69,0x76,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x6c,0x69,0x76,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x6c,0x64,0x65,0x73,0x74,0x41,0x67,0x65,0x20,0x3d,0x20,0x70,0x69,0x63,0x6b,0x28,0x69,0x6e,0x62,0x6f,0x78,0x2e,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x61,0x67,0x65,0x5f,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2c,0x20,0x64,0x61,0x74,0x61,0x2e,0x69,0x6e,0x62,0x6f,0x78,0x5f,0x6f,0x6c,0x64,0x65,0x73,0x74,0x5f,0x61,0x67,0x65,0x5f,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x27,0x3c,0x75,0x6c,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x6c,0x69,0x73,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x6e,0x6f,0x6e,0x65,0x3b,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x30,0x3b,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x30,0x3b,0x22,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x69,0x6e,0x62,0x6f,0x78,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x6e,0x62,0x6f,0x78,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x49,0x6e,0x62,0x6f,0x78,0x20,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x69,0x6e,0x62,0x6f,0x78,0x52,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x71,0x75,0x65,0x75,0x65,0x44,0x65,0x70,0x74,0x68,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x51,0x75,0x65,0x75,0x65,0x20,0x44,0x65,0x70,0x74,0x68,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x71,0x75,0x65,0x75,0x65,0x44,0x65,0x70,0x74,0x68,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x61,0x73,0x74,0x50,0x6f,0x6c,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x4c,0x61,0x73,0x74,0x20,0x50,0x6f,0x6c,0x6c,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6c,0x61,0x73,0x74,0x50,0x6f,0x6c,0x6c,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x65,0x71,0x75,0x65,0x75,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x41,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6a,0x65,0x63,0x74,0x65,0x64,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x54,0x6f,0x74,0x61,0x6c,0x20,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x74,0x6f,0x74,0x61,0x6c,0x44,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x65,0x73,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x61,0x73,0x74,0x42,0x61,0x74,0x63,0x68,0x53,0x69,0x7a,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x4c,0x61,0x73,0x74,0x20,0x42,0x61,0x74,0x63,0x68,0x20,0x53,0x69,0x7a,0x65,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6c,0x61,0x73,0x74,0x42,0x61,0x74,0x63,0x68,0x53,0x69,0x7a,0x65,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x69,0x76,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x28,0x4c,0x69,0x76,0x65,0x29,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x4c,0x69,0x76,0x65,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x28,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x70,0x65,0x6e,0x64,0x69,0x6e,0x67,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x29,0x29,0x7d,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6f,0x6c,0x64,0x65,0x73,0x74,0x41,0x67,0x65,0x20,0x21,0x3d,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x6c,0x69,0x3e,0x3c,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x4f,0x6c,0x64,0x65,0x73,0x74,0x20,0x50,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x41,0x67,0x65,0x3a,0x3c,0x2f,0x73,0x74,0x72,0x6f,0x6e,0x67,0x3e,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x53,0x74,0x72,0x69,0x6e,0x67,0x28,0x6f,0x6c,0x64,0x65,0x73,0x74,0x41,0x67,0x65,0x29,0x29,0x7d,0x73,0x3c,0x2f,0x6c,0x69,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x75,0x6c,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x62,0x6f,0x78,0x53,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x46,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x28,0x70,0x65,0x72,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x20,0x64,0x65,0x74,0x61,0x69,0x6c,0x20,0x77,0x69,0x74,0x68,0x20,0x75,0x73,0x65,0x72,0x6e,0x61,0x6d,0x65,0x73,0x2c,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x73,0x2c,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x29,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x68,0x72,0x6f,0x77,0x20,0x6e,0x65,0x77,0x20,0x45,0x72,0x72,0x6f,0x72,0x28,0x27,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x66,0x65,0x74,0x63,0x68,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x5b,0x27,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x27,0x2c,0x20,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x5d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x20,0x66,0x61,0x69,0x6c,0x65,0x64,0x3a,0x20,0x27,0x20,0x2b,0x20,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x62,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x74,0x62,0x6f,0x64,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x37,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x72,0x65,0x64,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x65,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x48,0x61,0x6e,0x64,0x6c,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x68,0x61,0x6e,0x64,0x6c,0x65,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x62,0x6f,0x64,0x79,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2d,0x74,0x61,0x62,0x6c,0x65,0x2d,0x62,0x6f,0x64,0x79,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x74,0x62,0x6f,0x64,0x79,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x21,0x3d,0x3d,0x20,0x27,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x27,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x37,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x72,0x65,0x64,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x45,0x72,0x72,0x6f,0x72,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7c,0x7c,0x20,0x27,0x55,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x20,0x65,0x72,0x72,0x6f,0x72,0x27,0x29,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x7c,0x7c,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x7c,0x7c,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x69,0x6e,0x5f,0x64,0x62,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x41,0x63,0x74,0x69,0x76,0x65,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x20,0x28,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x20,0x62,0x79,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x72,0x65,0x6c,0x61,0x79,0x20,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x20,0x74,0x6f,0x20,0x50,0x47,0x29,0x2e,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x6b,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x44,0x61,0x74,0x61,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x5f,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x72,0x65,0x6c,0x61,0x79,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x68,0x74,0x6d,0x6c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x22,0x3e,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x46,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x7d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2c,0x20,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x45,0x76,0x65,0x6e,0x74,0x73,0x7d,0x20,0x74,0x6f,0x74,0x61,0x6c,0x20,0x65,0x76,0x65,0x6e,0x74,0x73,0x20,0x69,0x6e,0x20,0x44,0x42,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x6b,0x20,0x26,0x26,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x66,0x66,0x30,0x29,0x3b,0x22,0x3e,0xe2,0x9a,0xa1,0x20,0x57,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x6f,0x6e,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x61,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x29,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x6b,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x66,0x66,0x30,0x29,0x3b,0x22,0x3e,0xe2,0x9a,0xa1,0x20,0x57,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x6f,0x6e,0x3a,0x20,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x6b,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x31,0x32,0x29,0x29,0x7d,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x20,0xe2,0x80,0x94,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x61,0x6c,0x6c,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x20,0x61,0x72,0x65,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x6c,0x6c,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x20,0x26,0x26,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2e,0x65,0x76,0x65,0x72,0x79,0x28,0x66,0x20,0x3d,0x3e,0x20,0x66,0x2e,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x6c,0x6c,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,0x6c,0x20,0x2b,0x3d,0x20,0x60,0x3c,0x62,0x72,0x3e,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x67,0x72,0x65,0x65,0x6e,0x3b,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x45,0x6c,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x68,0x74,0x6d,0x6c,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x30,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x64,0x20,0x63,0x6f,0x6c,0x73,0x70,0x61,0x6e,0x3d,0x22,0x36,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0x22,0x3e,0x4e,0x6f,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x65,0x64,0x20,0x70,0x75,0x62,0x6b,0x65,0x79,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x2e,0x3c,0x2f,0x74,0x64,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x6f,0x72,0x74,0x20,0x62,0x79,0x20,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x69,0x6e,0x5f,0x64,0x62,0x20,0x64,0x65,0x73,0x63,0x65,0x6e,0x64,0x69,0x6e,0x67,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x66,0x69,0x72,0x73,0x74,0x29,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x28,0x61,0x2c,0x20,0x62,0x29,0x20,0x3d,0x3e,0x20,0x28,0x62,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x69,0x6e,0x5f,0x64,0x62,0x20,0x7c,0x7c,0x20,0x30,0x29,0x20,0x2d,0x20,0x28,0x61,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x69,0x6e,0x5f,0x64,0x62,0x20,0x7c,0x7c,0x20,0x30,0x29,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x73,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2c,0x20,0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x77,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x74,0x72,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x3d,0x20,0x27,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x33,0x33,0x33,0x29,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x67,0x68,0x6c,0x69,0x67,0x68,0x74,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x77,0x20,0x69,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x2d,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x41,0x75,0x74,0x68,0x6f,0x72,0x20,0x3d,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x6b,0x20,0x26,0x26,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3d,0x3d,0x3d,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x6b,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x41,0x75,0x74,0x68,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x4c,0x65,0x66,0x74,0x20,0x3d,0x20,0x27,0x34,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x52,0x69,0x67,0x68,0x74,0x20,0x3d,0x20,0x27,0x34,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x54,0x6f,0x70,0x20,0x3d,0x20,0x27,0x32,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x62,0x6f,0x72,0x64,0x65,0x72,0x42,0x6f,0x74,0x74,0x6f,0x6d,0x20,0x3d,0x20,0x27,0x32,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x72,0x65,0x64,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x61,0x6d,0x65,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x61,0x6d,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x6e,0x61,0x6d,0x65,0x20,0x3f,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x6e,0x61,0x6d,0x65,0x29,0x20,0x3a,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x75,0x6e,0x6b,0x6e,0x6f,0x77,0x6e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6e,0x70,0x75,0x62,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x20,0x28,0x63,0x6f,0x6e,0x76,0x65,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x74,0x6f,0x20,0x6e,0x70,0x75,0x62,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x74,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x3f,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x31,0x32,0x29,0x20,0x2b,0x20,0x27,0x2e,0x2e,0x2e,0x27,0x20,0x3a,0x20,0x27,0x2d,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x20,0x26,0x26,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3d,0x3d,0x3d,0x20,0x36,0x34,0x20,0x26,0x26,0x20,0x2f,0x5e,0x5b,0x30,0x2d,0x39,0x61,0x2d,0x66,0x41,0x2d,0x46,0x5d,0x2b,0x24,0x2f,0x2e,0x74,0x65,0x73,0x74,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x70,0x75,0x62,0x20,0x3d,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x2e,0x4e,0x6f,0x73,0x74,0x72,0x54,0x6f,0x6f,0x6c,0x73,0x2e,0x6e,0x69,0x70,0x31,0x39,0x2e,0x6e,0x70,0x75,0x62,0x45,0x6e,0x63,0x6f,0x64,0x65,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x70,0x75,0x62,0x6b,0x65,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x20,0x3d,0x20,0x60,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x6e,0x6a,0x75,0x6d,0x70,0x2e,0x6d,0x65,0x2f,0x24,0x7b,0x6e,0x70,0x75,0x62,0x7d,0x22,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x70,0x75,0x62,0x2d,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x27,0x43,0x6f,0x75,0x72,0x69,0x65,0x72,0x20,0x4e,0x65,0x77,0x27,0x2c,0x20,0x6d,0x6f,0x6e,0x6f,0x73,0x70,0x61,0x63,0x65,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x2e,0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67,0x28,0x30,0x2c,0x20,0x32,0x30,0x29,0x7d,0x2e,0x2e,0x2e,0x3c,0x2f,0x61,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x29,0x20,0x7b,0x20,0x2f,0x2a,0x20,0x6b,0x65,0x65,0x70,0x20,0x73,0x68,0x6f,0x72,0x74,0x20,0x68,0x65,0x78,0x20,0x2a,0x2f,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x52,0x6f,0x6f,0x74,0x20,0x62,0x61,0x64,0x67,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x6f,0x6f,0x74,0x42,0x61,0x64,0x67,0x65,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x69,0x73,0x5f,0x72,0x6f,0x6f,0x74,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x61,0x63,0x63,0x65,0x6e,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x2c,0x20,0x23,0x66,0x66,0x30,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x22,0x3e,0xe2,0x98,0x85,0x20,0x52,0x6f,0x6f,0x74,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x22,0x3e,0xe2,0x80,0x94,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x45,0x76,0x65,0x6e,0x74,0x73,0x20,0x69,0x6e,0x20,0x44,0x42,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x49,0x6e,0x44,0x62,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x74,0x6f,0x74,0x61,0x6c,0x5f,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x69,0x6e,0x5f,0x64,0x62,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x7c,0x7c,0x20,0x5b,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x6f,0x6e,0x65,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2e,0x66,0x69,0x6c,0x74,0x65,0x72,0x28,0x72,0x20,0x3d,0x3e,0x20,0x72,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x29,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x62,0x66,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x62,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x5f,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x67,0x72,0x65,0x65,0x6e,0x3b,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x6f,0x72,0x61,0x6e,0x67,0x65,0x3b,0x22,0x3e,0x24,0x7b,0x64,0x6f,0x6e,0x65,0x52,0x65,0x6c,0x61,0x79,0x73,0x7d,0x2f,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x52,0x65,0x6c,0x61,0x79,0x73,0x7d,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4f,0x75,0x74,0x62,0x6f,0x78,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x70,0x65,0x72,0x2d,0x72,0x65,0x6c,0x61,0x79,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x20,0x55,0x52,0x4c,0x73,0x20,0x62,0x79,0x20,0x73,0x74,0x72,0x69,0x70,0x70,0x69,0x6e,0x67,0x20,0x74,0x72,0x61,0x69,0x6c,0x69,0x6e,0x67,0x20,0x73,0x6c,0x61,0x73,0x68,0x65,0x73,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x64,0x75,0x70,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6e,0x6f,0x72,0x6d,0x55,0x72,0x6c,0x20,0x3d,0x20,0x75,0x20,0x3d,0x3e,0x20,0x75,0x20,0x3f,0x20,0x75,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x2f,0x5c,0x2f,0x2b,0x24,0x2f,0x2c,0x20,0x27,0x27,0x29,0x20,0x3a,0x20,0x75,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x4d,0x61,0x70,0x20,0x3d,0x20,0x7b,0x7d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x7c,0x7c,0x20,0x5b,0x5d,0x29,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x72,0x70,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x4d,0x61,0x70,0x5b,0x6e,0x6f,0x72,0x6d,0x55,0x72,0x6c,0x28,0x72,0x70,0x2e,0x72,0x65,0x6c,0x61,0x79,0x5f,0x75,0x72,0x6c,0x29,0x5d,0x20,0x3d,0x20,0x72,0x70,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x28,0x66,0x6f,0x6c,0x6c,0x6f,0x77,0x2e,0x6f,0x75,0x74,0x62,0x6f,0x78,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x7c,0x7c,0x20,0x5b,0x5d,0x29,0x2e,0x6d,0x61,0x70,0x28,0x6e,0x6f,0x72,0x6d,0x55,0x72,0x6c,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x65,0x72,0x67,0x65,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x64,0x65,0x64,0x75,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6e,0x67,0x20,0x62,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x69,0x7a,0x65,0x64,0x20,0x55,0x52,0x4c,0x2e,0x20,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x69,0x6e,0x20,0x72,0x65,0x6c,0x61,0x79,0x5f,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x61,0x72,0x65,0x6e,0x27,0x74,0x20,0x69,0x6e,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x5f,0x72,0x65,0x6c,0x61,0x79,0x73,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x72,0x65,0x20,0x62,0x6f,0x6f,0x74,0x73,0x74,0x72,0x61,0x70,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x20,0x74,0x68,0x61,0x74,0x20,0x77,0x65,0x72,0x65,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x64,0x20,0x62,0x75,0x74,0x20,0x61,0x72,0x65,0x6e,0x27,0x74,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x20,0x72,0x65,0x6c,0x61,0x79,0x73,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x6c,0x6c,0x52,0x65,0x6c,0x61,0x79,0x73,0x20,0x3d,0x20,0x5b,0x2e,0x2e,0x2e,0x6e,0x65,0x77,0x20,0x53,0x65,0x74,0x28,0x5b,0x2e,0x2e,0x2e,0x6f,0x75,0x74,0x62,0x6f,0x78,0x52,0x65,0x6c,0x61,0x79,0x73,0x2c,0x20,0x2e,0x2e,0x2e,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x4d,0x61,0x70,0x29,0x5d,0x29,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x6f,0x75,0x74,0x62,0x6f,0x78,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x61,0x6c,0x6c,0x52,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x61,0x6c,0x6c,0x52,0x65,0x6c,0x61,0x79,0x73,0x2e,0x6d,0x61,0x70,0x28,0x72,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x68,0x6f,0x72,0x74,0x20,0x3d,0x20,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x72,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x27,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x27,0x29,0x2e,0x72,0x65,0x70,0x6c,0x61,0x63,0x65,0x28,0x27,0x77,0x73,0x3a,0x2f,0x2f,0x27,0x2c,0x20,0x27,0x27,0x29,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x70,0x20,0x3d,0x20,0x72,0x65,0x6c,0x61,0x79,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x4d,0x61,0x70,0x5b,0x72,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x48,0x69,0x67,0x68,0x6c,0x69,0x67,0x68,0x74,0x20,0x69,0x66,0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x72,0x65,0x6c,0x61,0x79,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x6c,0x79,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x71,0x75,0x65,0x72,0x69,0x65,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x20,0x3d,0x20,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x41,0x75,0x74,0x68,0x6f,0x72,0x20,0x26,0x26,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x20,0x26,0x26,0x20,0x72,0x20,0x3d,0x3d,0x3d,0x20,0x6e,0x6f,0x72,0x6d,0x55,0x72,0x6c,0x28,0x61,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x72,0x65,0x66,0x69,0x78,0x20,0x3d,0x20,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x20,0x3f,0x20,0x27,0xe2,0x9a,0xa1,0x20,0x27,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x70,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x76,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x72,0x70,0x2e,0x65,0x76,0x65,0x6e,0x74,0x73,0x5f,0x66,0x65,0x74,0x63,0x68,0x65,0x64,0x20,0x7c,0x7c,0x20,0x30,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x64,0x6f,0x6e,0x65,0x20,0x3d,0x20,0x72,0x70,0x2e,0x63,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x20,0x3f,0x20,0x27,0xe2,0x9c,0x93,0x27,0x20,0x3a,0x20,0x27,0xe2,0x8f,0xb3,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x72,0x70,0x2e,0x6c,0x61,0x73,0x74,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x7c,0x7c,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x3d,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3f,0x20,0x60,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0x22,0x3e,0x5b,0x24,0x7b,0x65,0x73,0x63,0x61,0x70,0x65,0x48,0x74,0x6d,0x6c,0x28,0x73,0x74,0x61,0x74,0x75,0x73,0x29,0x7d,0x5d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x20,0x3a,0x20,0x27,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x72,0x65,0x64,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x28,0x65,0x76,0x43,0x6f,0x75,0x6e,0x74,0x20,0x3e,0x20,0x30,0x20,0x3f,0x20,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x67,0x72,0x65,0x65,0x6e,0x3b,0x27,0x20,0x3a,0x20,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x7d,0x22,0x3e,0x24,0x7b,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x72,0x65,0x66,0x69,0x78,0x7d,0x24,0x7b,0x64,0x6f,0x6e,0x65,0x7d,0x20,0x24,0x7b,0x73,0x68,0x6f,0x72,0x74,0x7d,0x20,0x28,0x24,0x7b,0x65,0x76,0x43,0x6f,0x75,0x6e,0x74,0x7d,0x29,0x24,0x7b,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x69,0x73,0x41,0x63,0x74,0x69,0x76,0x65,0x52,0x65,0x6c,0x61,0x79,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x72,0x65,0x64,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x27,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x24,0x7b,0x63,0x6f,0x6c,0x6f,0x72,0x7d,0x22,0x3e,0x24,0x7b,0x61,0x63,0x74,0x69,0x76,0x65,0x50,0x72,0x65,0x66,0x69,0x78,0x7d,0x24,0x7b,0x73,0x68,0x6f,0x72,0x74,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x2e,0x6a,0x6f,0x69,0x6e,0x28,0x27,0x3c,0x62,0x72,0x3e,0x27,0x29,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x76,0x61,0x72,0x28,0x2d,0x2d,0x74,0x65,0x78,0x74,0x2d,0x6d,0x75,0x74,0x65,0x64,0x2c,0x20,0x23,0x38,0x38,0x38,0x29,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x69,0x74,0x61,0x6c,0x69,0x63,0x3b,0x22,0x3e,0x6e,0x6f,0x6e,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x77,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x61,0x6d,0x65,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x6e,0x70,0x75,0x62,0x4c,0x69,0x6e,0x6b,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x22,0x3e,0x24,0x7b,0x72,0x6f,0x6f,0x74,0x42,0x61,0x64,0x67,0x65,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x72,0x69,0x67,0x68,0x74,0x3b,0x22,0x3e,0x24,0x7b,0x74,0x6f,0x74,0x61,0x6c,0x49,0x6e,0x44,0x62,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x62,0x66,0x53,0x74,0x61,0x74,0x75,0x73,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x36,0x70,0x78,0x20,0x38,0x70,0x78,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x31,0x70,0x78,0x3b,0x22,0x3e,0x24,0x7b,0x6f,0x75,0x74,0x62,0x6f,0x78,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7d,0x3c,0x2f,0x74,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x62,0x6f,0x64,0x79,0x2e,0x61,0x70,0x70,0x65,0x6e,0x64,0x43,0x68,0x69,0x6c,0x64,0x28,0x72,0x6f,0x77,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x62,0x6c,0x75,0x65,0x22,0x3e,0x53,0x74,0x61,0x72,0x74,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x61,0x72,0x74,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x22,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0xe2,0x9c,0x97,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x53,0x74,0x6f,0x70,0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x0a,0x61,0x73,0x79,0x6e,0x63,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x6f,0x70,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x73,0x74,0x61,0x74,0x75,0x73,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x69,0x73,0x4c,0x6f,0x67,0x67,0x65,0x64,0x49,0x6e,0x20,0x7c,0x7c,0x20,0x21,0x75,0x73,0x65,0x72,0x50,0x75,0x62,0x6b,0x65,0x79,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0x4d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x6c,0x6f,0x67,0x67,0x65,0x64,0x20,0x69,0x6e,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x63,0x6f,0x6e,0x66,0x69,0x72,0x6d,0x28,0x27,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x74,0x68,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3f,0x27,0x29,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x62,0x6c,0x75,0x65,0x22,0x3e,0x53,0x74,0x6f,0x70,0x70,0x69,0x6e,0x67,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2e,0x2e,0x2e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x74,0x72,0x79,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x20,0x3d,0x20,0x5b,0x22,0x73,0x79,0x73,0x74,0x65,0x6d,0x5f,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x22,0x2c,0x20,0x22,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x5f,0x73,0x74,0x6f,0x70,0x5f,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x22,0x5d,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x77,0x61,0x69,0x74,0x20,0x73,0x65,0x6e,0x64,0x41,0x64,0x6d,0x69,0x6e,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x28,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x5f,0x61,0x72,0x72,0x61,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x67,0x72,0x65,0x65,0x6e,0x22,0x3e,0xe2,0x9c,0x93,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x6f,0x70,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x27,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x20,0x73,0x74,0x6f,0x70,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x74,0x65,0x64,0x27,0x2c,0x20,0x27,0x49,0x4e,0x46,0x4f,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x20,0x63,0x61,0x74,0x63,0x68,0x20,0x28,0x65,0x72,0x72,0x6f,0x72,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x44,0x69,0x76,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x60,0x3c,0x73,0x70,0x61,0x6e,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x72,0x65,0x64,0x22,0x3e,0xe2,0x9c,0x97,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x60,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x6f,0x67,0x28,0x60,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x74,0x6f,0x70,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x3a,0x20,0x24,0x7b,0x65,0x72,0x72,0x6f,0x72,0x2e,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x7d,0x60,0x2c,0x20,0x27,0x45,0x52,0x52,0x4f,0x52,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x4d,0x61,0x72,0x6b,0x20,0x61,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x66,0x69,0x65,0x6c,0x64,0x20,0x61,0x73,0x20,0x64,0x69,0x72,0x74,0x79,0x20,0x28,0x75,0x73,0x65,0x72,0x2d,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x29,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x0a,0x2f,0x2f,0x20,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x28,0x29,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x20,0x69,0x6e,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x20,0x65,0x64,0x69,0x74,0x73,0x2e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6d,0x61,0x72,0x6b,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x69,0x65,0x6c,0x64,0x44,0x69,0x72,0x74,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x74,0x68,0x69,0x73,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x44,0x69,0x72,0x74,0x79,0x20,0x3d,0x20,0x27,0x31,0x27,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x43,0x6c,0x65,0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x72,0x74,0x79,0x20,0x66,0x6c,0x61,0x67,0x20,0x6f,0x6e,0x20,0x61,0x6c,0x6c,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x2e,0x20,0x43,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x61,0x20,0x73,0x75,0x63,0x63,0x65,0x73,0x73,0x66,0x75,0x6c,0x0a,0x2f,0x2f,0x20,0x61,0x70,0x70,0x6c,0x79,0x20,0x73,0x6f,0x20,0x73,0x75,0x62,0x73,0x65,0x71,0x75,0x65,0x6e,0x74,0x20,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x65,0x73,0x20,0x63,0x61,0x6e,0x20,0x72,0x65,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x44,0x42,0x20,0x61,0x67,0x61,0x69,0x6e,0x2e,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x69,0x65,0x6c,0x64,0x73,0x44,0x69,0x72,0x74,0x79,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x66,0x69,0x65,0x6c,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x65,0x6c,0x29,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x20,0x65,0x6c,0x2e,0x64,0x61,0x74,0x61,0x73,0x65,0x74,0x2e,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x44,0x69,0x72,0x74,0x79,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x0a,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,0x69,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x61,0x70,0x70,0x6c,0x79,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x61,0x70,0x70,0x6c,0x79,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x72,0x65,0x73,0x65,0x74,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x61,0x72,0x74,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x73,0x74,0x6f,0x70,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x2d,0x73,0x74,0x6f,0x70,0x2d,0x73,0x65,0x72,0x76,0x69,0x63,0x65,0x2d,0x62,0x74,0x6e,0x27,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x61,0x70,0x70,0x6c,0x79,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x70,0x70,0x6c,0x79,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x61,0x70,0x70,0x6c,0x79,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x43,0x6f,0x6e,0x66,0x69,0x67,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x65,0x74,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x72,0x65,0x73,0x65,0x74,0x42,0x61,0x63,0x6b,0x66,0x69,0x6c,0x6c,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x61,0x72,0x74,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x74,0x61,0x72,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x73,0x74,0x6f,0x70,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x29,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x6f,0x70,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x42,0x74,0x6e,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x6c,0x69,0x63,0x6b,0x27,0x2c,0x20,0x73,0x74,0x6f,0x70,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x0a,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x54,0x72,0x61,0x63,0x6b,0x20,0x75,0x73,0x65,0x72,0x20,0x65,0x64,0x69,0x74,0x73,0x20,0x74,0x6f,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,0x73,0x6f,0x20,0x74,0x68,0x65,0x20,0x31,0x30,0x73,0x20,0x61,0x75,0x74,0x6f,0x2d,0x72,0x65,0x66,0x72,0x65,0x73,0x68,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x28,0x66,0x65,0x74,0x63,0x68,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x2d,0x3e,0x20,0x70,0x6f,0x70,0x75,0x6c,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x6d,0x29,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6c,0x6f,0x62,0x62,0x65,0x72,0x20,0x69,0x6e,0x2d,0x70,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x65,0x64,0x69,0x74,0x73,0x20,0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x22,0x41,0x70,0x70,0x6c,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x22,0x20,0x69,0x73,0x20,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x2e,0x20,0x42,0x6f,0x74,0x68,0x20,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x20,0x28,0x66,0x69,0x72,0x65,0x73,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6f,0x6e,0x20,0x65,0x76,0x65,0x72,0x79,0x20,0x6b,0x65,0x79,0x73,0x74,0x72,0x6f,0x6b,0x65,0x29,0x20,0x61,0x6e,0x64,0x20,0x27,0x63,0x68,0x61,0x6e,0x67,0x65,0x27,0x20,0x28,0x66,0x69,0x72,0x65,0x73,0x20,0x6f,0x6e,0x20,0x62,0x6c,0x75,0x72,0x2f,0x63,0x6f,0x6d,0x6d,0x69,0x74,0x20,0x66,0x6f,0x72,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x73,0x0a,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x61,0x6e,0x64,0x20,0x6e,0x75,0x6d,0x62,0x65,0x72,0x20,0x69,0x6e,0x70,0x75,0x74,0x73,0x29,0x20,0x61,0x72,0x65,0x20,0x74,0x72,0x61,0x63,0x6b,0x65,0x64,0x2e,0x0a,0x20,0x20,0x20,0x20,0x43,0x41,0x43,0x48,0x49,0x4e,0x47,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x5f,0x46,0x49,0x45,0x4c,0x44,0x53,0x2e,0x66,0x6f,0x72,0x45,0x61,0x63,0x68,0x28,0x66,0x69,0x65,0x6c,0x64,0x20,0x3d,0x3e,0x20,0x7b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x74,0x20,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x66,0x69,0x65,0x6c,0x64,0x2e,0x66,0x69,0x65,0x6c,0x64,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x21,0x65,0x6c,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x69,0x6e,0x70,0x75,0x74,0x27,0x2c,0x20,0x6d,0x61,0x72,0x6b,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x69,0x65,0x6c,0x64,0x44,0x69,0x72,0x74,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6c,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x63,0x68,0x61,0x6e,0x67,0x65,0x27,0x2c,0x20,0x6d,0x61,0x72,0x6b,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x46,0x69,0x65,0x6c,0x64,0x44,0x69,0x72,0x74,0x79,0x29,0x3b,0x0a,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0x0a,0x0a,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x70,0x61,0x67,0x65,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x27,0x29,0x3b,0x0a,0x7d,0x0a,0x0a,0x2f,0x2f,0x20,0x49,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x63,0x61,0x63,0x68,0x69,0x6e,0x67,0x20,0x65,0x76,0x65,0x6e,0x74,0x20,0x6c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x20,0x77,0x68,0x65,0x6e,0x20,0x44,0x4f,0x4d,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x79,0x0a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x61,0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,0x27,0x44,0x4f,0x4d,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x4c,0x6f,0x61,0x64,0x65,0x64,0x27,0x2c,0x20,0x69,0x6e,0x69,0x74,0x43,0x61,0x63,0x68,0x69,0x6e,0x67,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x73,0x29,0x3b,}; +static const size_t index_js_size = 292910; // Auto-generated from api/nostr.bundle.js static const unsigned char nostr_bundle_js_data[] = { diff --git a/src/main.c b/src/main.c index d115d12..ef3720b 100644 --- a/src/main.c +++ b/src/main.c @@ -2921,8 +2921,27 @@ int main(int argc, char* argv[]) { // Initialize kind-based index for fast subscription lookup init_kind_index(); - // Populate event_tags from existing events (for tag-based lookups) - populate_event_tags_from_existing(); + // Populate event_tags from existing events (for tag-based lookups). + // This is a one-time backfill guarded by a config flag so it does NOT + // run on every startup — on large databases (tens of GB) the + // CROSS JOIN LATERAL jsonb_array_elements over every event can take a + // very long time and blocks the relay from binding its WebSocket port. + { + char* tags_backfilled = db_get_config_value_dup("event_tags_backfilled"); + if (!tags_backfilled || strcmp(tags_backfilled, "true") != 0) { + DEBUG_INFO("One-time event_tags backfill: populating from existing events..."); + populate_event_tags_from_existing(); + /* Record completion in the config table so we skip it on future + * startups. db_set_config_value_full(key, value, type, ...). */ + db_set_config_value_full("event_tags_backfilled", "true", "boolean", + "Internal flag: event_tags backfill completed", + "internal", 0); + DEBUG_INFO("event_tags backfill complete."); + } else { + DEBUG_LOG("event_tags backfill already done, skipping."); + } + if (tags_backfilled) free(tags_backfilled); + } // Sync Web of Trust whitelist if enabled int wot_level = get_config_int("wot_enabled", 0); @@ -2970,12 +2989,32 @@ int main(int argc, char* argv[]) { // Optionally reset backfill progress first if --reset-backfill was passed. if (cli_options.start_caching) { #ifdef DB_BACKEND_POSTGRES + /* Ensure caching_enabled and caching_inbox_enabled are set to true + * in the config table so the UI reflects the actual state and the + * inbox poller is active. We call db_update_config_value_only() + * directly (bypassing the config-layer wrapper) so we must also + * invalidate the in-memory config cache — otherwise the poller's + * get_config_bool("caching_inbox_enabled") will keep returning + * the stale pre-update value and never dequeue any events. */ + db_update_config_value_only("caching_enabled", "true"); + db_update_config_value_only("caching_inbox_enabled", "true"); + invalidate_config_cache(); + DEBUG_INFO("CLI: --start-caching: set caching_enabled=true, caching_inbox_enabled=true"); + if (cli_options.reset_backfill) { DEBUG_INFO("CLI: resetting caching backfill progress (--reset-backfill)"); - if (db_exec_sql("DELETE FROM caching_backfill_progress") == 0) { - DEBUG_INFO("CLI: caching_backfill_progress cleared"); + /* Clear both the legacy window table and the per-relay drain table, + * and mark all followed authors as incomplete. */ + int rb_ok = (db_exec_sql("DELETE FROM caching_backfill_progress") == 0); + if (rb_ok) rb_ok = (db_exec_sql("DELETE FROM caching_backfill_relay_progress") == 0); + if (rb_ok) rb_ok = (db_exec_sql( + "UPDATE caching_followed_pubkeys " + "SET backfill_complete = FALSE, until_cursor = 0, events_fetched = 0, " + " updated_at = EXTRACT(EPOCH FROM NOW())::BIGINT") == 0); + if (rb_ok) { + DEBUG_INFO("CLI: caching backfill progress cleared (all tables reset)"); } else { - DEBUG_WARN("CLI: failed to clear caching_backfill_progress"); + DEBUG_WARN("CLI: failed to clear caching backfill progress"); } } DEBUG_INFO("CLI: auto-starting caching service (--start-caching)"); diff --git a/src/main.h b/src/main.h index 44c95de..96d59a3 100644 --- a/src/main.h +++ b/src/main.h @@ -13,8 +13,8 @@ // Using CRELAY_ prefix to avoid conflicts with nostr_core_lib VERSION macros #define CRELAY_VERSION_MAJOR 2 #define CRELAY_VERSION_MINOR 1 -#define CRELAY_VERSION_PATCH 22 -#define CRELAY_VERSION "v2.1.22" +#define CRELAY_VERSION_PATCH 23 +#define CRELAY_VERSION "v2.1.23" // Relay metadata (authoritative source for NIP-11 information) #define RELAY_NAME "C-Relay-PG" diff --git a/src/pg_schema.h b/src/pg_schema.h index 2f38a94..0611825 100644 --- a/src/pg_schema.h +++ b/src/pg_schema.h @@ -461,6 +461,48 @@ static const char* const EMBEDDED_PG_SCHEMA_SQL = " ON caching_backfill_progress(window_index)\n" " WHERE complete = FALSE;\n" "\n" +"-- Durable followed-pubkey list with per-author backfill cursor state.\n" +"-- Replaces the window-coupled caching_backfill_progress table for the\n" +"-- per-author until-cursor drain backfill model.\n" +"CREATE TABLE IF NOT EXISTS caching_followed_pubkeys (\n" +" pubkey TEXT PRIMARY KEY,\n" +" is_root BOOLEAN NOT NULL DEFAULT FALSE,\n" +" until_cursor BIGINT NOT NULL DEFAULT 0,\n" +" backfill_complete BOOLEAN NOT NULL DEFAULT FALSE,\n" +" events_fetched INTEGER NOT NULL DEFAULT 0,\n" +" first_seen BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT,\n" +" last_seen BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT,\n" +" updated_at BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT\n" +");\n" +"\n" +"CREATE INDEX IF NOT EXISTS idx_caching_followed_incomplete\n" +" ON caching_followed_pubkeys(backfill_complete, last_seen)\n" +" WHERE backfill_complete = FALSE;\n" +"\n" +"-- Per-relay backfill cursor tracking for the relay-by-relay drain model.\n" +"-- Each (author, relay) pair has its own until_cursor and completion flag so\n" +"-- slow relays do not cause premature completion marking for the author.\n" +"CREATE TABLE IF NOT EXISTS caching_backfill_relay_progress (\n" +" author_pubkey TEXT NOT NULL,\n" +" relay_url TEXT NOT NULL,\n" +" until_cursor BIGINT NOT NULL DEFAULT 0,\n" +" complete BOOLEAN NOT NULL DEFAULT FALSE,\n" +" events_fetched INTEGER NOT NULL DEFAULT 0,\n" +" updated_at BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT,\n" +" PRIMARY KEY (author_pubkey, relay_url)\n" +");\n" +"\n" +"CREATE INDEX IF NOT EXISTS idx_caching_relay_progress_incomplete\n" +" ON caching_backfill_relay_progress(author_pubkey)\n" +" WHERE complete = FALSE;\n" +"\n" +"-- Replace window-based progress columns with author-based progress.\n" +"ALTER TABLE caching_service_state\n" +" DROP COLUMN IF EXISTS current_window_index,\n" +" DROP COLUMN IF EXISTS backfill_cursor,\n" +" ADD COLUMN IF NOT EXISTS backfill_authors_complete INTEGER NOT NULL DEFAULT 0,\n" +" ADD COLUMN IF NOT EXISTS backfill_authors_total INTEGER NOT NULL DEFAULT 0;\n" +"\n" "-- =====================================================================\n" "-- LISTEN/NOTIFY support for api-worker monitoring (Phase 5)\n" "-- Fires a notification on the 'event_stored' channel whenever a new event\n" diff --git a/src/pg_schema.sql b/src/pg_schema.sql index 0547be1..8b5a090 100644 --- a/src/pg_schema.sql +++ b/src/pg_schema.sql @@ -360,4 +360,46 @@ CREATE INDEX IF NOT EXISTS idx_caching_backfill_progress_window ON caching_backfill_progress(window_index) WHERE complete = FALSE; +-- Durable followed-pubkey list with per-author backfill cursor state. +-- Replaces the window-coupled caching_backfill_progress table for the +-- per-author until-cursor drain backfill model. +CREATE TABLE IF NOT EXISTS caching_followed_pubkeys ( + pubkey TEXT PRIMARY KEY, + is_root BOOLEAN NOT NULL DEFAULT FALSE, + until_cursor BIGINT NOT NULL DEFAULT 0, + backfill_complete BOOLEAN NOT NULL DEFAULT FALSE, + events_fetched INTEGER NOT NULL DEFAULT 0, + first_seen BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT, + last_seen BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT, + updated_at BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT +); + +CREATE INDEX IF NOT EXISTS idx_caching_followed_incomplete + ON caching_followed_pubkeys(backfill_complete, last_seen) + WHERE backfill_complete = FALSE; + +-- Per-relay backfill cursor tracking for the relay-by-relay drain model. +-- Each (author, relay) pair has its own until_cursor and completion flag so +-- slow relays do not cause premature completion marking for the author. +CREATE TABLE IF NOT EXISTS caching_backfill_relay_progress ( + author_pubkey TEXT NOT NULL, + relay_url TEXT NOT NULL, + until_cursor BIGINT NOT NULL DEFAULT 0, + complete BOOLEAN NOT NULL DEFAULT FALSE, + events_fetched INTEGER NOT NULL DEFAULT 0, + updated_at BIGINT NOT NULL DEFAULT EXTRACT(EPOCH FROM NOW())::BIGINT, + PRIMARY KEY (author_pubkey, relay_url) +); + +CREATE INDEX IF NOT EXISTS idx_caching_relay_progress_incomplete + ON caching_backfill_relay_progress(author_pubkey) + WHERE complete = FALSE; + +-- Replace window-based progress columns with author-based progress. +ALTER TABLE caching_service_state + DROP COLUMN IF EXISTS current_window_index, + DROP COLUMN IF EXISTS backfill_cursor, + ADD COLUMN IF NOT EXISTS backfill_authors_complete INTEGER NOT NULL DEFAULT 0, + ADD COLUMN IF NOT EXISTS backfill_authors_total INTEGER NOT NULL DEFAULT 0; + COMMIT; diff --git a/src/websockets.h b/src/websockets.h index 9c9b72f..eb89753 100644 --- a/src/websockets.h +++ b/src/websockets.h @@ -22,7 +22,10 @@ // Maximum number of messages allowed in a per-client write queue. // When exceeded, new messages are dropped to prevent unbounded memory growth // under high-traffic or slow-client conditions. -#define MAX_MESSAGE_QUEUE_SIZE 500 +// Must be larger than max_limit (5000) so a full page of EVENT messages +// plus the trailing EOSE can always be queued — otherwise the EOSE gets +// dropped when a query returns exactly `limit` events. +#define MAX_MESSAGE_QUEUE_SIZE 5100 // Filter validation constants #define MAX_FILTERS_PER_REQUEST 10 diff --git a/tests/test_ws_client b/tests/test_ws_client new file mode 100755 index 0000000000000000000000000000000000000000..8ff0988b49ae7733cc26f173284e0ba77bb29514 GIT binary patch literal 287048 zcmeF)d0-P|9zXsmhXk)i#og+vM6DV;1BzP|*Hl3VEgA*2t7rqI*eaA*3e*D)madIh z&3bJ;b~oy-c0G2pp79QM!7I25^^SN=tV$NIf(pOSXXf29eJ}a_zJLDy_;y#4&uc#O z%*->-Jo7x06s{XzaoT{QBBS?bpz%9HqjZlWK`iLJU=ZFJM$jlTc9%a7H4ZU$64fO^ zEag}4KxaYks|R_?y58+r&ae9+ulKcg5A}8Xo*>Ef68_2wdS4B%6YF||^=;mX`Sqz+ zoGtXey4SO}mmc7(NUxJ$ak%%@y`I*Mx6L^~@1Og>CQWC(#F@@(?|QlwU9T4F)ndKg z*8p~-_qDe^bszP=5bBd(eX>k{eD10%zxP$Qp+EYn{~fp3S&?6TvP^$` z_Mh9&*`&`Jr|WvWf4y;Ue(!7Veul8#ppnk@`1R*qoDKE9_U`97vYyuG|LG5!i*YWt zSLpoZaUObKoz~+Vry*-qCh51@_-6kiScT{W-rteyYI!99oH zf$d&gp!}Z;)Z2gprjzy$Y0bV1aTTE8xc!D1WyC`NtNhhsz3-^LPQTF0lVs6{xpQ3bd1>3%Cv= zc66N{Szx>E1b(N^3w(CZEAtz4Hocg3Y7EL0{IgQfU4V1F74`1J+$b6SD&eFgSM$00j9zqb^qx04I(&*=rq2^H9% ziwczUYJq$m4DDz?-z;!khZo52D6rih3moqg1_5$8mpq%dt z?9ZwKB%-sTl(S7#T<|Dizsv;y0`qCmdCK!5vSf#bTVK>5EZu%Aa3$X{Hb{QC-& zGpvBmDNxQw1@b>BkUzLUe!PJ1U!XnQSKxT1nhl@)$3L+GY2BR0nuf^}Pn|itzGm{&X)|k#s;Wz8 z&91MS(>S%Ev8u{R-C^RSNflL>)-+btG&Ia^Ff=-Ka%I(whMF2Xh}6_iudBb*e&0|t zb-MkgdUkz%O?9LFeopP&#_6-?*W1DThPp;)JuPI86gxZ8SU0SkPNoE;i}mTtPPzOJ!q&YYQcdfz@&H#Rs@Uo+ocqHF8>$rY2Ts%O^K)Hhbms%fm9 zJ-vTH)eToh8fP2lmY+4QYTA{JHFJzPHPw+(qmRFQWR)C3V@*?|RNtJ&hS^uTmef>N zMdnVsyynWP$kc{8H9K5VEma{0y1lqL)wT7r8ye=+U0Nmo)gL>`wXA7&{Y)ur$7S|g zI7ez@>dd;U+$GEI$YykRP*>YGDj1ns*HG10hHIm}$M-*by8ZC#YcB175Zf13&z?1{ zu71b6(Kx?m>g82ar%!inZTp%#I)vW+{GWa4-N}Zj_0wn1>VMp>8vUOGuc@A1yTh$J z`!;LtOk>U!Go>jWTQ#Gu9yJP(JBXU^7kf<{w;-%Nn z1DqMrK%(gl_FhRw-+Q@erdDfDp@mPEP0y&VZR9PUrSzGGlrzd`sHvW3Xp5D1Qf;!PEUli} zXjIiS)yXN-K(5hQ5o2oO>^ftXlT%eCPv+!Ow)^8*Q|olcr0Z@ls%L23&WY62*n3~! zyYjp_^%1G3#uS5K{&|M=FE|`q)2-$DP0@L4Cgj6r)H+!M6|-BvZNYnE|+p;)%w|bj8pCA z5UGpUC%0a6qzdKcpieW8)%Q;S-WT?DjLzduO?ECxjRW=ya_MMroE_-9qxH@`K%V6m$#d8N z^1p%hYmqz&cOv~$|5qf_?V`T-PPWE7**4HFp?3`@Q_Wd(fH9=+oyS&Zdqu`jSDDUU z>}<s`bBs(ZJ651k|Et%F_q_Dk1r zesrI=%2-aHh5PisBO(&*WSll+`|@Mteed#5PdP(IoP&+YuH~ElXZ?Y$^@kW^vA&j= z`s1CFy^B!|`*mI2Zicb5QIGgf_VS@d6XM(L*kd#!e$tMI7&jx{%U*wwaTnsb`_>KB zbN_(E`qTS)PVYD_vDxtwd|uP*VYrXn+RYgU`pKVp&8fivxp#Lbzl?k}@`L0RE1Ysn z^894SL*%~m9Iqq~h8z!*xBlAMAMsk)Ht1lb6GL$W6HMVE^`Z4%|at3HOp;0xu!2f&0ko;ePUY@BsM& zco}&MJV<^c+$6sZ9wNU7UP*qvJ}8!-F!}w+uOc$$0@ypw!0JVRdeAGCjR4?Ig=47bRC1<#Woj_a$3 zd_UwH5A|>V!4IAN@sJ;cd@p&)yH0)y`5@%`$o+6Xc>o?DKOSC2J{BG%KLu`*p8*e% zhv1du&2OXqlRvZ7@mlh?esDZOem=@?BEJ|OC9j6JlGnlG+fnA$j6ZuGZl>9hcN3G<)MSh(8ckp)dQ{f5n3Gfc`V>dYMCrN%b@>AsJ!PDdy!8^&r z@C^B-@GkP%@GSW}xJ7>7*J%IbD|`EY@&zcz_(%Wt{|C5-ybbOpf3(}#ZVCAv$oG-o z3-^=%4IUtW7+yyHZ+MVA1vklGhKI;k!7IsMg@?)i1Ft227ak%11l~m64Udw43vVUg z43Co=xKFi{4~8emcZGM5?*UJem%vlxK6skk5AP&D8lEA~|KhZtF7o4$pCumyx5&%k zdGgcYJ>+M@jfeZU|H*I<`S0Og@@eoA@>;l$ydLf+Z-58LuY#A6Uk?wG-vBqsZ-$4+ z?|@g5-wO|uC*ZZ@55Xhk|AIG>KMjwPKM!vuUjmPlcf#Ar-+(8`--dUPzY9;2e+*BN z=iq7bJiL?qdw7QYXLuL+fOXDwktH7rx5&NlJb4Mchx`Dz@ksyne=yubJ_7C~9| z;H~7hz~kh1z}w0H3{Q|h0Pi6G2RupsFL;XlDR`Rvd3Y!JGI)l34ZMr|4S1IPEx1Kq z(>wkre;4^Z?ovxep#DKMY<=egr&1ehj>c{I~EZ`AP6r@>Ah)@(J*E^0VOy^7G&w z|0~>htbhA|2<{<& z4DKa=0$xJ?9Nb5qhWp7^!2{&iee1OIGV(W&A0&SZZj!$P50Pi#mE>Q*!{pzv{CRjM`7(Hhd=0#dd@Vdn{tnzC{}`Sp{{r4a{x#f4_HX~+!ad|a!@cAKdq4jo z-v#a?_rm?;zk&zI_k)*_9|#YUkAR!xN5ezp$HFVg$H2qnC&O#WPlHFukI6XKMH6`i z@}uPE!duBJ;c@aRcsu!Yc!K;gcnA4xc#?cBJVkyrJWak3-bsD~JVSmHyo>x+c$WNb zxJ7;+JWu`*yodZTxbg4)?f>OBob%-&e+v0t@)zJG+hwdAufzlf0k4bL%}$lFm)l>A0&4)Pb^N%AG|6!{u>nta*k&V8zr{0-!1$lro@k-rDel5c=p zek?plJ_c@* zm%~HkCcKjTY zFL^h-g#5p7ANdb(Klv~40QmrXAGM5pC_G5M2izpz2Oc6n5MD{{hlj~W!fVOP;1TkZ z;7#PG!K377!&}KOfXB(Fz}v~E!xQAQ;2q?1;Yspq;VJSKc$)kscqjSo@C^Cg@GkQE z;92sA;THKn;d$~W;63Ee!;Po=xBsPZ5BX}implV6A>Z_c)BpI$*CF3e{vJF)z5!lF z{slZp{x#er{|+7^-vX~BAMla0|6%eW@LKY<823iVcSC*?`CjlS`9APg^5O6}c`3Y| z{BU@J{1|u#`R6(3c$4JEAwNYv2A(GW9lVqLRCtE`40sp$+3+m+d2oyTLU^7$4DTVY zg&WWGZ~ygh4|yZpOFryNr`}4)uR^|$JPP-d-vAGg-vlos|06s|eka@{{|h`se!zd7 z{jVhd5c9z>`GY8@mi(Xa2>Da+Ch}PrCr8QO#`kzz$)80zaq^ep?c^)q3G&zB9pvla zN%9ZjDe^DiY4SY0ll%vGhWsaZ7x@5uKPO8*6mF640nd|{zd@!De_{evK`^ksF1LVJf zmywskgXAONCiyY&5c%=&O7gMrF!?xmE%}-72>E1q6Zu8(D0wx!mHaYzoV)?vPJT5! zLEa4SAYTkmlK&B&BL5RSO@1%Dll%dAhWuf87x};8S@IOzB2UBf)`*1IL7G6Sb!F}XUZE?mMe)5gT50L)|FC+gM9wZ-t-(xb#J@63u=lFXDD#>?4 zewchucrE!p@CdmN-b7vskCGn_ZzUfEkCXov-cEipJVAacyn}oKJV_pcr^qYeY4S_p zo#dCoGvu@3UF1#hEO`o_KU(Bb-9ad&v{<67mP(KJrK5 ze)1$dK>jqmjQk~dkbF7ZB!2}SBG14p$=`;D$=`?9l5c=V$PdDEttRp>kRK)g2Hr~k zJv>gn7v?GL)AX3lEd;xz%YuwdBpnkC5L8Zz8`19wncO@nkFc?Z}Ul-ve(azaO3;e+b?| z{x5iv{3&>f{6%=0d^x<6{Oy%ay=BN>L4Ftc8}KaodbmaY0X$FsIlPDbE4cAu|Mvea z+(W(v?j_#_FCicNsdKzO@?GG5@;%@I@)CF%`2p}C`N43L{4jWk{3v)O`Dl2U`~-L{ zc{w~n{%ic6eiONg{3!X^@K*8*;BoRP@OJVrJVAabyn}o;JV`zeo+4iWPm{O6JIQ14 z4EfFQF7n&pS@OH#7I^}mC;vOVhx{?P@lyZx|0LW){v6y(z64%Ez8dZ$Ukmq>uZIW7 zKY*8!Z-58Mb8wS94-b*|z$?jrfrrTle1`s?dA}RzAwC$+y{@7`{C{6 zN5d23$H6$ydN@ z$zOp-$TRRJ@-BFk{6lyv`6uu=c@ExAz7d`v{~q2!{u4Y&UWCsnQsf?ZntWGyC%G4% zA)k!z)pwEq3i(;`-@q;MgW!4c!{I&T`(PYvr2Du3W03D5FWcz!dtUP6kzYbS7Vaaz z7RT!+AJqH%zvSakP8sebKq(6-@`k}H{m&0hCGb?F7g_9mi#ifMLq|fCvSrHkpBto!C2bA z{a=TC5BUvnFZnI-67oCXKJq`q{p5d#2go0VmytgK50XCzH_4a6L*#4VmE>>0!{qDX zwd5bdBjlgs?>BBD{{s0@@;tni{6~14+_0Q}xSf0mJV9Oz?;!sbJW0MkJVky8JWYNS zyp#Mmc!vB$co+FW_+D0){1oI{ddQQXiTob&NpM5|K_u7jzg!6SkWYns$!p;y zjxV}5q(KSKTt@|(zC zfJe!f!duB#!{g)`csu!9@C5lg@DB2i;Yso@;3@L2;c4=3;hp3^!ZYMQ!@J0fFy70O zUx(+z7Wq)*=gEuVJ>+}CjphB@|Gsb!`GIgRxgTCa{tmtm=_5Z1`F`@_;Q{g!;br7O zc#u53+G&R-xrzJ``9ydn`8n_~`R;3+@@vT}ksl!s!<)!!;8F5Acq{o8@HqKAcsuz5 zc!K>50HNeFC#x3pMwXiDlhs$nPLu3r~{&vc}oZ6nPi&)8rq(JISxX z{$$8MLw*QPx$@ZO7d~Y50jq(uO&Yl9wGn4aO$^-{Cwm` z$uEYtlGniF+cm+Cc^f=UemlIA{2q9Q{C;>B`6KWwc@l1s zKLyW|uUO+;zdhtHAm8Zh-~Ly?J>+ZPUh=i@67nv%k30+alYa&ekbea)BmXZvNWK|v zl5d5F$cNy*P)WWUJWRe9yq0`lc!YewcTW8`kq<|Hl>AV5EBVpzIQg;gcJe(jPfU=H zL4F7M$?zokczBBZ@>R}prOD4gekb_@uQ>S`@(}X7$S;6r$-{7qyat{pp9SwB-v#Hz zSlz$<&q2P2{A#$Dd?CDqycO;vkHh`se}V_dtMDAGjQlUi50XC!H_0D{hscxgO7avu zO#U*wmV5;~LjEeei97?3lCOuil79q`lYb6xC;tYXApZ{DLB1KDB;N*4kq^S}sinzx zg?Ezg4bPD8gX^@5d_Ux8$q#~C_mGc7zOkl%`~NN6Lp~PnB|jBjLT&KTj3t^L73lp$%n#A$ajbP$S*{H;wRq=`2q5M;AP~);X(4l z;3oOe@DTZEcqRFX@GyB0UQ2GmBjgj|P2}gnqvTWIt>m}kIaQo|8uHu8FM}t@uYh-u zpN_u|IY~Yr`6=?N;c4Dc;d%1M;63C|z>Qb?xBqA1 z9`Yq{FZoJ%3Hchhk30kSldp#d$g{nF|3CQ$$Pbe5h3|)$BM|H<26oK2?-_2)vd2P~6Ak7Q^1kaOCf%lMC!;RPaxBp-D_W$IUBi~Ct2VO#cCEQ0I zh5N}{;Q{hCcp3S&U!41Ukh}%Y%}nxJQBH`w9bQTPS9qBGL3l0sKk>XhLjEZ7o5-Jl zN6C*uJ8vaVAwN$3GQ6F9IXpqW2HruQfhWn=!BgZP!qeoR!aK>k;TiHx@GkNn;aT#n zaEp8p?q7NGq3|B^Vz}{o|Mou&?jhd~?j=7MUP68Z+($kV?k7JU9w7f6yo`JtJV<`P zTh4W1lAnqE5cwo{CHY}!hhg%IkY7t)4Udpt25%z20v;uAg13@K;c@aC;O*q|(LW@} zZ$^Fx`R(u|`Q7jo`F-#-`NQx|@+3S%{tUc}{AGBSd5`^dk8`^mS!1LP;79hQ+BnC}G1hrmtpVt9x=g6B(>za4I5`nUgk;U4n8!M)@o@cgQT{1N2)$e)D!$)AS@ z$d|#($k)JwsL%slR ztnJ_aTi_n@o8VsZ+uU(J#y@b_I<8)!2RS`;`77+`3TH+%E-?}IYIJDxJf=3zkd-TzZm(I zBEJ&(Y4Rw%le`t4A-@IQMgAvvmi#Ypi~R5K zJo%&W9`YyP##{Z{|1)q8`Io)@KlyFF8E_Nt6E?`JLqZ!87Cs!@J0*zUAzHmV5;AE%IaFdGgWl9`dnp z6<_!#(7Ke{ik~FZu5967pei zANjs;Kly?10J$GtMt(FrNInW~l8=Fh$b;}o^6~I6c?G>7gz2sSV3HfJmA9*+2PyQ`DK)wZDMsDCf6(rvYZj$c; z50UQ)uOu&lhspPc*ODI$kC1!8{xBnaA9`ZlJ zz2tv_myq8J_mSTZ_mlqv9w7fWyo~(kG`xfSd3cgM4NsA;gr~{tFdy$Ee+Bs&^0n|T^7Zg6`3G=|{4;o-yc^y_{$IH9 zZvXbb8SWw92KSN=-t6=nCFHxnedK$>{p2O^0Qqou8TldbAo<~NlYAsRME+ZNCHYD4 zF!^|RE%}-72>ChiCi3&)QSvG9R`P0iocuC)J9#}kK|UAWLB0Tw|EMcxKalivaF zB)M@m~M-|18`?{xaN4e(FzX|Kux> z?;~FW_mi)M2gujM%g8@~2gyHyo8&ooi2T3sO7b7!Ve*IY_lDJy|APDo`M@ns{WOv9 z3XhWS1#cza7ak`+5Z+FHI6Of<3f@6p22YX);VJUd;A!%+;GN{>!87Dj;9ca?;aT!J zxJ4d;=gH^8d&n2SjraSv{~z&t79R2z;3&-^2d=MB7Y8ENuGv>$ydW`$=`%W$lrlCk$()2lIP&9|L8hR4ZI#(8NczYqBd@(1A^(z2jSu^`|Igqa@@}}7d=tEcya(y)#xC;3$j_4B3b)96P)?rw zZshlnuf#aV_^5yTPaxkz{vg~-{usQ3{0X>^{CT*ad^tQoz8YRe{sufqz8-Fpe+Une ze+sW8&%wjwU&Cw3zlBH0H^ZCAi}3p?QF0Hwm3()2oc!1DcJlq;3G##B9pq)}@cfhf zdOXibk&i$*Y4W4to#e;CGvp`0yU2s^Ect10i~KBjo_rF#hrAMQWc#=OD!7OIQn;7= zWBfg4CFHY^?<1cB_mf`@50Ec}myth(&)ouO&~w zBjh)t{WOt3g#0M^KjE$9Pr>8lFTmT$m%ze{Q2JbFZm1jeoF`WXK$nbC%^wcj;F|5u-!EIP4G_gGvOKX+u>d0_rkN}55O(* zhv9khB)o_GX}GbWfBSzC?jc_W_mZ!Imyo{>_mRH^_mjU550HNhFC+f~9wgrgH_3m1 zhsb|{SCS9j=A8F1`7ZEUaxXkW{%d#>`EYoYycFI_egr&Dek{D5`~-M{{1kWx`5Eve z`MK~Ec>?#fGyaq?vt z_qLP&75NGB2jLy$`=Y%i$sa*}iaZHVlRpFRB!3B>AzudXB3}c~lD`4B$lrqJ$=`?f zkbev}KI`B9zkqwlzkz$nzlE2OAJ+T)ll;H<`-S}EJt!wYz7<|ZKB&mq?;!ckaFe_k z9wOfxUP-<`JWPHtyq0_fJVJg9yovlcc$9n$yp=o%kCTssx09a%PmqV;9pvZ3ljINK z_v2FJ7xixUug-bcN&XF?o9ur{$oV7T@=-4DaQV$Hul$=+PLY_~ldk+*T=^kazS~o- z{J1MW?eaF4hh62kz0;L{tt&s{@V($Gh63+1s5!Ykx{qeZm8R0lf zye@avbiBmngL(^*SD(vu+r2-2m+Lv}{Ry~S_o?@%%;lb5l-Hokhq~N!`OYp6xqKIw zSGs&xmxo=xo6BomzPrmKE-!X@lgqs>kGgyhm$$lnPnXACzL(3}T|Ug^377Bf@(!2( z%H>Iy|Jvm#mzTIa?ecwG-s$pvU7m6IZ(QEx^8H+%b@~1-w_JXJ%kwTD?(!a&`&@3^ zx4r!z=yH$C4|2KJ~<1RnW8 z%YW$M+ z!{ryaJn8aEm#19*dzYtOexb`dU4D_vGcKRv@-CNO?DDM3FLAl$@+z0-T^@FMkISdJ z+<0Jn`=91=kISoF?sfTemzTJ_#^pYj&v3cl<(IlV;PP6Rm$|&o-YAc6r3*5tlc){0f&xUEbjGR+rCldEDiVE^l}FT$d+YKF{SH zE}!r6q|2LJo^tt>E>FAsDwlV<{A!nHTz-wqyIj7&#-5T$tanz1))mXc^T*QuV z)YzkO*p9E)c&Nr9JHATeoiz^Haf8OYXdJNP%QV(U1v#G`Pt#Z*5#+pfe4)nrXdq|U z@wpo7BY|9gtH2>=XsnL{a#=e*MPq#gkjvQd2^#CvKbN-SQ5x%%KbN%Q!!_2aelB6h z2WhNR{9N3Q_tjXZ_PMAX@2Rm)>2nb~-dSUv%ICs%JV0Ze!skMEyyc$~>(o6LwBt=0 z>y$kgu;VW^)~R~VXU7{f-d|&{9lxuwPR(K^mv+_;HO7);MX$4{NMb?Oei+@7GwT*txhJ->vbX8b|H;R*etSIAX^)YV6lI zY{%DYJVN7;9bcvK;Ti|+xIyD1G!EGDWg6>LIp?$EX&UPkIp?+G3pLiMan7*gb2Zi} zaW4O}ef~Apscy+eK3rp+0_PHTe2~UE_07fY zcwdcm%A1SY@tzv%R5ur~9bd2U1dT&> ze3iy$XdJZT293|uIAF(@X{=MooX?J@X{=MnoY#&o)L5sCIm3?6)mW#Bx%?LU{A;XJ z#9Y>nPtjPXhPjL#pP;c$33F*X9;LBP1#?L|K3rp+0_GBSe2~UE^~=TWcwdcm%9o4U z@tzv%R4*5?Z@?f6}db;_1A?D$QMb*h%jZ?@0B#$k=KcDz*MsTybO_&JTIX`Hs>$2G3jIBCZZ zYpheST*8j;*I1`sxwswQt?>+vqjr3&#+PawvEv&x)*DbRY{%DYT&Ho!j<3@AGL3_F z+@SI08VBt7GL3Z#mGjy0G>vuYl=Is0g&OOWDQDR6xf<(KDVOiD&%eexMapIE_!NzG zYLv^^@d+C1lqi?B<53#xR4A9UoV4SIHD07~!jA9P zxJBc*9pA0-A2g2I@umj{7&GGA4%tGl10GTz`Spa@+DpvX2DACod}#9ck?E1E&9;;N zJ^4*N1i-+sx414?{%T|9SW1Y6aOZ8<;PvhP){CPNTza?O^}j7XU`zC* zi)CG7?h)si%_kisnT8qrtZ`R!@kuKm9$;AeNUd7a<&TwvM@wGO#jg!O;d!#o zBpI!lW^6&18Jn9iW9N0oCN3Wr8=oE*oA`pcc)Zt)jknC^1(s2~=pVY3<^>sf`xkw? zSe7hq_ZAt(%X)a$FuAtP*oS6pl{G?6^9-~2+O({mmBftMw)fX7iex9(>Eg@eF3^&m z8`dHgpSL{bwcmKn>ZN8~dU#9sIpz|}x1?uKZ0(ZG!$)*p-Z?6k8PVC2E^hfrwua=z ztyPd@87=Vy!5}a<=<%;tAc|xop+*Nxe<4{ z4`{hpZZEfKd%5lX%JuwzmTS7pJyXj)aC^BIZ7)~vH?qG+Is3aS%FXs3_HW(A4ANrW zb&g06+gWH=_+~jZQp{me*;10L-hA!?mVGA$+_k-cQQP+;Vvx%GyUZ*F8A(og7qb{Hsplplf&QO6`_Z^#Zv?a1Z4QuISdon!cPlf6hPP8Yr5UbI>kEgt`>yNrgAq#b||F z`^iYr`a*_dQc{Pxc%mF$i_TM?+ony^J}H(*8pFz#+0u#0*|L{Pvpe1{!)|t#bU?DY z)jd(lx3tui+9eflT)nCI@J?x8*XkejX=}I)6P+FFz>b}yJJvQhw@h2WN~deP3&q(z z;oL`Mzh%el{a$XT+50_RR+KHgDO))2Roz6!*~AOdcRQQV1HEhe3dhO{PWkU>+m4M- z$m;KHGK&wtIHBuzIqP53Z~dz6>whalZrP25b8;%|1!%85dHY;TGia%ms$11EUH;U| z!)&`l=P-7Qc=lksLf3z5KH}`gx%O_f=%i0-V3<>&b&cFJ&9t^BWyPp|5=N7wzuJ1Dbl%P z{P^GPcZ|4fe9cm={#DktA9SnZ<91buFLT`K==YSPT->6&V7J^fmdUma>xYfHOn2H| z_MCg!yY{kivYy_crPRk|seMH~W~b@(@t}K!f7mOS+gDiFyTUbnD=c=e&}6Srv3-S5 z?+R!3tq^gqaJsA@HLJ&BHm9Y3(0!Qh&NxIfnisUo?RO8UUe~cra;I(mMo#zmPqhwm zbL9*y9{;J?Znh0up&~WeZWd*@`ozuD9!pqc+l4&~Ogb5T7k*PY!1bRW041+7|_KaS-$>T3T;%?3)^g~$zN1H z<>F=A$HA_5akJ%z;zjc%vHXJa^UKdGpDZ`w?{%D6Vy%^j5@u|f-S{q&46|+Y%P9R$ zc^)w#w!&VtMYb)A9=-WKC&)8(lBJtnwOVcbaDBV@{7waDX)^@d(fD$xT4f&wybVkZnnJ`vTJYe zKdmk@UW&?^Bh%I}Io;hIGvX5#pRH-di|Vz_w=F1_TjOlaGh`jf`%1dn+_|z0^N|UQ zCp!5f?EJk?)!cG>Z#GK$i<-W>oxVs=5AqtR?s;;Dms{15X*1ShO2N5(?G(9J=|NSx zmTJxB4%)swIh7mb-k`^NpR|Vwv6Z>YU5>|WUR7j{**tf>eMwxjY-D=bjQ;I?Tk)d1 zrDC+LPl$bYo(?xXdVb^-Upq2AA@;Tzd(EzWGqzby#)eh8_g|Q?Ppq)sr=?YNe5w1H zp1W)Ju=vVB17+28}ibayv*Zd=w@Ke;0;8K`VOg1*aCuhBB8t>Q%^bnj!| z+gI}b@;>@Ix$6v*Hxpu8<#1xJOpM8e_Ga;-fStJBYL|M}J4#-zF6)SsHF1@FxqYOt zuYk;Y2grUq*J{ijxkxjT`<(TvJjpcWa2jo#X`{wZ+Ww7RWB-u1)>|?zlv4gK&C`sn zu*Pe8Y@?QNqb$}68MU3}Z(n()yq(zcY4OdM%f7U{mpW2j%(j`O-j{rG(u&XOk}BP7 z@0v7sv-*{aqK~akxrZbQlW&oUign+;x}$Q&ms#`tQd-M<#fx6lOG>VV&*TBHUHl5`LVMZQ z#f$Ex7un$Em`AK;Kt~)nnJKZN#5wn}bo$@w!h+f{3GE#OY*JyV!!R@yl zZO?wYJ?~>TU8g#Y3oO6O=7+L?A6UTJ6kXw`40 zCv1|VmHt8AqUlP5m70CXZV`Kz%Q>=}vGym`ujmc5Xo;LL&sWlZAJEp>cG7LnI_-Cu zl#KTKdnr!4ouch@noZJvzpze}w`jkX+$Jkx8>IcNkkO!Z&OLfK(sM1do<2m1aJSz> zWZZ%Fd$+yJ)qYoh_J7oV8)UD0>-sfrzcsPG_Irxt^=rRl6uA99DE+n5ez!<7)C1dD z(wz2d$h&^+*Z;rm*Q%C==j=}7d)E09NM-&`3Y9ySwMvE*a--9Bx~qJWqgUUP+iA1Z zMMdlf-R3v)Hdl^z8j~AP_bslzSMTet{&(S5WxMKT7L^7DX>DFpS~hO+lcfWfNm>tXx!@ktIg)h()Dwye9CP#A{k!C+dhopMh4y-mw1BgYI5p*{3~ph}`yq zy?#Y(GX@XiN~KcuW-Esgu;%5o3CMv-XQjvDtB@7!+lLHm%FM-+OZ_9$av|CGNz0UM z?MmaH=$TH>-MjmMzWZ1C%0WZy8{{r}gDj7Z9db-#w>>D)Z5wicvdy-=pLx2-D1TY5 zSi{<)7mJKqd?V9(?9WC8%~j({O?fqBfG3A=n`A46lyv`s8dYkfH4~6>^fidr5MIN0 zjo>wk*En7icunFpjn@obvv|$pRflN09WP#e@+$YP#$DtvOO4`|kmPC04{3!30-U`?bd>OiJcO#-jr&V3Lb@Vn?GmDpt}4;+3dF5!&11^ZuyIH zv)pEt$#5h0C!z8e<&SN-o9s<5(&Lx@O}d%#^C!e!FF#KPkIop`jQui6Iv}}2dnU@L zW0wkx|N+ngBNJR#O)51_uRh-=diJlq-{K?$udczGdfPU zhiND7|34Jpo|fLrj7^sQ@^(2i=`uZ;;+8>j&L_lvv3pN##in%UZKKcps>m20TQxEE zsx@bWZp@jj>gkn{(Q|rINB&@y*o!{W$>0YfR@n!dYR_I;o7kJ$F54D0)zl&#h7PKTJ|N=vNCvaX)q5_8Pkb5ALsY{tGEKXSEP zR^=B|Nd5TqWJ+QR#MhE>sha8Aocgr^D+(FX1$={J?{B~eSXKsR?_)3Wn87-1(GT2E~eZy z9{9yRzj9v3%O_s3cPe5yuhs-gan);BaqzAn`7wD!AUy3g;zuR5f=*A|?xD|4K7 zQ-cTo+jWcd7LVAq)IP^@IZOW_&n6zRFZN~9?ur-v)qek)eRsP}-cQicx!l$pOH0aQ z>*OwJ&wn*jAExPzG%H(_TZP>Dq^T9(v7+x8f-JLiS@9id?OsdDeJhGvighhHiQZ@R z#-z8j*JM7e?dA|!A{}mT4?C>1qD}5l+Pi8WY)TN4k)!mqyGo0!i2bcJs%4MRj!?SH zRtd(*UN)(Ox8J-cmxipL-jzLzEtiXXzFtTHcgOjRtXCm>=eO^S@(^M|@%XLQX1h5r zv76=JB|{%h$Y&99kI*^n?iI03`aI(SyOA$3V{*05HO4Rcx=|jp>CIbC@ZjheWA11@ zzN0>tBVM>%Pt3SjwqJLQ%C8O9=&K3S=uhI<>yzlRh0TG&;Fc&$LY{e^v)X_Kfcf>vo;wX@lv#|F%8v z-1T&Z-FxFJmg2fs*!|s$(rUKZ-;lHRkfV6fejs$8tZxm_P~L3I-70^UUm$(Px<_TS zc)mTbwjWu>-qxo$?b;lr%eXyV(e|iwmuy)*V?uHL+j1kBQ9N^v+()E)DQ=PWDy?g) z-O{8ay_d+7An5?DYh~`N-N&7x=mWIZ)6RIAv#8~2S=91%YG6E&5VWsxsReCqQOSzUEUlHHl=cC#s@*As?4CiV13~Mjb&_JA!uMsVR<6(81?;8! z*LTvK6Q*MlIjN?M4|j0lq<-DcL-p~1+#~*`%}LIYb2Rpuvhp&oayEUhy=iIQeZ9k_ z+O`5xMU6pezn4ibY%N(QMab>{82M1QxcKQ{@mSy7U5lSSy-1(AjrBEtH+E=a{yD7} zx#y01Uy_~1q0_Aua&U5?=qc)Vp~$C4Xct@Tv5@p5TXaoqytw5$Iq}^uY7y5<5i{a; zJL!H>z!}TT6z%@I`~D{Fr8 zc9WJ})JF4>HX3>TOj^z>o{aqYmfdhNCsG3_P;@@m8$ zbz*6_L790MkC-VfPa0}U7s`*Wpp8~vbwpG=qOmk$RlFr@E|a^}aBZp~>8$!%>-3cN z_r<4nS?guz}hkJB;qnqZAWZ2DM zjkbZ5e(Eo$JZX1ZQj^+1-qxO?Zx}LA7EO>7q$80Z?Q{N`{j|PY-rGYGy*rumh**Af z@+?n`@3rqS<(Oi`K60KV%M3*ZI@bR0Iw!B@EqRq%9ML_}HC}SP?Y%$l;Q8{zSdTtk zZrl6&honP~ZNx0vTJnxgz&`CAqwH5I!;`EtJZY3mSsFvQw@=a`lYg8HQ|uG0!xUW- zx6g9#y>d!v*t+CRIfH{r^#=2)EYwpT>^t8wv(x#bbFIqfpSm}g(cSqQaopur>xyzi znZ7ux<@W0>w2vc9ZPGy43z^ZzU2jbn^Q_l#*fq^yEZr@ zK2G{==?tEdm9@}|Wkb#oT|RY`r`WL%t;1#1tR40msSbO_yl|OrW&D_*=gL-zFHu9sQzpi;e8 zb+2-Yc;6wt61tz%>=XO4mpF@l(M5Olp5KwHN6JS5!;0G)GQsH9q4N)D8|Rg;;BOw- zc$nF|q-aTYkZb9@4Q&lCOWNT1UP)W6X>;FkKKE#A_^Z93SQh-F`=!450e}9Xvn?4} z>Adb|=?E9^ZZ1Ae?ptGvBH3ZCvRQdxf5g5ox)z6qRo~&o{xj>Tfm2d{Er{trR;^CLnElpZ&3X@?YxO zn;CJlc}3BLwsVTgTjgUPN!HdT-v}&zdb}Z9_*hOt366lJz$?G4LU=6VJf-}1Di%!pUW!;Ed``E&coS<-S-(uW!LHzb_-m09#!_igrq z-Fg>vciXYv`0T{)_v~07;W_aucI@ekpO=1c?1A%cH=ix?2^z+rw$O)W@dIn;EYwVA zr8_HP@2(tROgQ3V>7!09ni!i>>MPfgtyfl%_UqMAjFG!qyTY~w1FR>cU6seuZBav- z>Pg#V##8);so}CI^1=P|1oe*l9{}i#~&hE*LVmxaE7N zSdTSDij6IGmwLlHvTR%|y>NqW+~Kq4!mZne7{>fx+n7q*8_-4eB)|L5x?CPI%-`2pE@MX70lDmr=X5V} zS4nKAc#Yy4N+i`z%S{q?H77YQI^wy=T>NXj8_5?BPxqRO&-R#OIvWn|KGK!hcYVqC zKcsO>+L$Gcdqu|%@Xh;L-^$e^xBbjAX`eY+ezv#!8>jt@e6#xtS2^BbA?CMmzjgARD1lpssw^XqEats^cni!8Zn^&`e{vS7@q-iCXe z3t28=zFsB zmKUG6ZBn57W~?v$kFy<{%~hxBWuUi8XDHi!L+|_`_M@!!Kg)Caz1aTs#ot%Z4~up9 zC0|*vKjQdOT7~p6_6Y0iMRJSH^{AkK8oP7x4bsaSV~5P&cS7@u!NpIXA|2GyqDAS( z|A)0Vfsd*>|Nj$6Fe-Y3g2uX~Hfj*mq=F?HYDN;6kpxj(u%Mz*#3G6^11Lg*lTmKR z0a|O-)~a2#R;yh^K!va+;EK3_qJSHmVMG)aaGl@#bMBo5mwtc$|M$o1MdseKKIb{l zcAoQ`bANzX>Na@;VqNTw<#!F{BWg zO85b`8)+Q{M+u6=@mt?0ETD~}lS}A!ZtduB@4&303h?O68)Ri;W8w-r@%9gEk96)> zQhSth`_i@-BQN1RuNdvjJ1~UqE^Ph$s447u?=`tGar*AsA54L%*Z{4M6)>L)TlVB{ zBKS$`XNAtqr+_yaySa?tXYKo?+4m>)zDVqC=AnW`_%jzC1$-TKM25Si z$)C}Ym;W2`GZUuNrz9By7JAJc=0%{R+fl5Xtf?*}T=pzhga$vTqo~_aOvDKV$$h8^ zJ)?5Eq+ZDIhn5rK;Rk6kvkQNZp5qsnvgsa+>X}V|Q69fF#+wIdkDxwO^M3d`)3iz) zQvz!pkvA!MkCHEKYr;Wi-i^h0u;%qELbAmB{j;Xug77=R_@Oi%k^a;qh<}6eNr-@* z;e%y+Jo3C2Blz>Ya_^*GWqzg&D2P1IHn3kOuP^Oy*|FSF40aR?1aEx|V+F1K+ed6P zZwU6&SJB<&El10kJD4y<@%}Y>aQhp&HkBQ4F%IyU1aC%^}CHn8a zTg#*^yvkEiw323Ug_M!=o|nTW1@d*Wuh0W?Ze5;N6+-}~&6ws{vh^k0=si^}Y=hDW)E#`Jc zA1YjqiYX;U z83kF&5}Y;GIiX#&a@-9^*!d?6jhSD`Y~x)&VZWjH8l9V)KpeHouZ~=GRp2SvG9C35 z6$PQ@ZNLyrL<-HR892HFhtT-LYWxTgr$?u-Z1*7ItmSKX28!~~ko=ThtzNBiS8p zqlW5tErHQ6{`}?9X%&T`=o^^o;fg}@h~kgcNUItV9kPMOI1Bm;{qac^2*$lSx)7_i zv@nmzg%hdmKLNAiqzWv7PeRabG@~<39&h0qijA=Fb!^ zp{2=1Oqw_UdHk1Da5tp5o|tnsbWT|2{NiK=?Zk90(UJ@@<&!(5jFDsJ^kr6{*i*4N zen$V)$A?zfnQj1-66`Nz+(eAbjph+WmfG>tBBjW$N8pzgh6jqt^F)1?KRQlN?~TXB zg0Eq4=BIauHCkn=*F1k6le2pvn3P8K1k9CSB3nOjjywzmjefOQ7i%@=;+#@-AOc8Ahmd9 zx!RZA#?iRB;IjkpXdGT(4h2oY!ev34#8xl9RV^ka6{`9m=t^d=^&lMt_ta&TURFK^ z>>4`qq!V#q!@7js)G8vV8@^nd9x+PB&t|vl zmB7sB+$F-s&NP(19Yh;_g*@=a52$y?L$B@OQ-bl~w7Et*dp`)eBUlEEEMcf6 z`I6P6SEXjP7UK_Dyt<=GG6p*W(ykluu-vyqbUO~Uy*=Hls|HD5i`Xbs}$MU0p z;VREw+V5}5wzc;AsfxHORk1%ce&W^W=hq0H+ABiY2(F&uHrrbSheGu1Gr)_ z&rj+SKQo~Kws)8ATwWOYF|!Xtq{EJ3`GwB)({bWVlbIE6O!vB45OfYI*SMJx5zWCF zqS-&)>r5|ufU-e&y4O#YfYouE$YE4|?6|u$wM64((5<$(Jfr8sxfw@m#%8Q+jQ^Cd zYo~1~#Tw&Rmp0;4f|Nsv2}Plr51gBnJ~UB#qV*6kvk(7X-ptwxbLC=jP_0adwqjZi zC7OyuNTNOqt*wyge*(HrfdR}j#ZU2z+Z`&^`2}h^)9BZ~f?Ucdp^Q7}v8m?MNhb|W z^gPj-*M)Uf+Z)VMBDlKsv%Q_071vXHywhg%JIZO>L|*MQr%irQEs&O1<}G#n@iQEN z`{26!?NEFG6YBMki_~jmwsqRjA|MmLNh5ho=ZA~44!5P~&puSDxRw}oSw6A(vOiMu z{q;2ZY3A2ku&kY1E>457#9(y5pt9Cera7@;Bxvo*WH!>PIYu$0@$sdNHJ>_BeZicd zloO{rZRb%v7~RGKXj_9~ATUavpbsf2r$?F7V`M4+%lTi$CbQE9Uor|@r|vlE9Y%xm z*!|O<&1`SWqwQv!z0ur5dMMsd9_nl;CrN%RqRFU6BaQ@0^J;P2Du!JJQ;h7&w>e90t^TXt=&t?cW>&IP>1bu`=P zZcC3S_YWwDe`~m1+d4?ZAfhGI!BKe-N37dLgq3wq z34Cl(42Q~4%?hXOY$lv#Me*im3JVqjZp);DFRlu?Uo$vCU+&3+e%gBRvsN4EaZg$-xRb*+nDZgey^HtCwdAK=TCX0_FK~(nQhM(u-H%inYPj|CQoO!c}))0;GlI& z<+A1=nhTv+$|kdLYI3hGu_!GUTA1x7Hc3j8gT0c|o!F9Zm8{#N z%GBywR1tD96IlTHMpQtjM4&us?*6`5Hv4s%0fs`4)mAW+m5V# z6Ny%@Pd$|3SMb~?a1Ps<7zCfn_h}A+mg=?3kKKhmI;_35{Pw6 zK5hrts{Yu2T9drrmbLHJH<3Jsv!yq^9iNA2!z+*RZ z4XDRX*D$gBJJY@9s4ZFUc0VeAz;orjvLxG^_G4?N4v}eny5Kn5gJYD1qhCd^d5v9d zFv9`?3NFCJ$cNx9i6JNu!joRMkFr0*hhjZqfvpK2Kx+H|OLDO_kx#_0-^4!%st-2r zRJB^Wy#QMJ3#O|4Y051Sbox^(F^cU^vB-AcZ=bQBnZ4^#vRV4E+a<}dUXu8OoprO8 z`KATMx?#`ZH_r1%VWRz-UA|p}JCv-Bz{fkoeKLR@m$z>CanL;v{+j5m85o*J4;eUu z?i6oFD(JFx*eNfKY((fQc?jXXS@<~KfRmw{mn8TklO886XWz81Q2esuE->Q21y{5>OoRT8H1{32FtXx$c_Y?OV^ zjE8-yr|r51LY*d}n9N2PLi8i3H9i`qS}*CH>(b^=$;(%y zOJ2ThU-CE8{-Jxe|E>HlG+Vj$8UIzn_!T}9F1FJmqOvR_AHgpzb!FD+x$%$o#?LIA ztu4yqt)Dpww5}xF%jwZYGZTz!8a-xSCj49aR^cUx z&%-YT<4hdwBbAw0HFH)8rci8E1PSwb_}?lYbkBxKtj$7P@?5-2l7-{EVXVS1WN<&z zejYRjoI9MhnHmpb3})^I7&AK5JGsPILrXQEg-@~|(=VPZ)+DDCgok*%vzK{_ooEZS z(9KBl`1QqLO-o6*$a1|4=exs8Q!D4HJ@!?A9m0Cl4&dM71KSAe_x~sKx7UBCKVKI7 z^HMAI!awi^Q&-wqS5^cr5L}XNl4o{QdDKC?lReama2a9#NiPaP_jD|w^vld_8^p+A z)y(D(_}^H)-uy=E!%SL^*u*~|-iPOh-vN*2@qYo&*QiwH?OX74`@ezbmzR7SKhiG$ z3wW;n9(X2e!TFu|8R356qo<1x&JUws6k08;X^Xy|W}Zsj;Vh=JvxeU)>wnD7m%Da^ zdF0zO_J&EE?)7O47Z?kMXc{GD{5-wEk%2hzP)~ za(V<&m%%FNO3O&62YekYr(#{zbxvm;Q6uRVD6C9;qlLUE-Ro?>?%_Hz={YQ~`G?Rts62yO;nVk;fp;?z>c}~Vy>Vyf z4=4HvbJ4elc&Il-C)Z{xprPc&cSq1-Cc|q_`okxve_rGbj>B|Xa(Qbl4Gkj4fy>Y| z!YZgK58rw9ul;6y>ehL6g`^C2zPEn$chr|%OyA#Mf6w{(;KJ{lA0Z(FL3V!5{CnQ~ z{L8PKH$N{hfB$8ER)gyQ&+{|QSQ7m1`I%vtryl2d^OGkJd-wq6%ja@CtlY??b@Ha? zf0EB1Z24|}*ong?ODDP6-cvr$9PJ@HAD+7Z9XuC(4?JVP7oN;%E-aE+^0&&&l|g?i z&+f-Yak>5}-RX_ZDIH0kNscI-U9pA&Q;Vy_i_{38Q@uW|JeB%@ZU)I!heIGQiA_nMLGQch2JnM|2Oc^xeSj3L*WCEYg1{=WssKJ-!j%tG*3) z^|sWCJ^91Cgl2^3XI38kH+t|-$FlbEKf!}P5{m!SY|cSH>>E^bR487%!L0CMxAc?x0HfOsnL(?)z7X$f>BXG=2}Y zs&(-{zz)$%95KLAbY*|!_dsH zoMQ=~yjuQVYrmi|ImTjsfKKyKezrEAXj!$wy=@^%NVD2_QPHz?(5>rm$HrFOKt zI&7(TM~^W(yo>ST`RNX(2M8Q3bkP_9cb zF{I0$QLQ;RGUeSD<<4^Em9~DiPxw-X^+B>X=*;4mvCz)>T^L7s(os%+8+EK76kF-E zeFBQzC5o$T{p`3%vi8Ktd%?sFKz??Y%4-h64vy_k27QY4q@m&M_})$Oe2kT$)^9%on{4W13f9H_0uDHkkTl+=-tv>K^T=_fdTYrH3Z_xj~@b@6>HR%~1 zi%b4hSg?onC4HV9Z|VQs9*kA)-+P4X)3%$dU;dr-bNO}uLw@Ub=4bSy+8M7?bI6zG z_>i*r)$H?sQN3d3dqiOuM255D@621x%}p&69{4hRR&YU&(gNA!rHRwOv>R$w@;SEc z2YW?7FL&nXyi|1eVN(tvh_L?Odjt`-QmvqR+bCCI%T`;1r|8x~lA@m%);Ygfk;|Do z^K%uCtg)?YhbprR-X6-Fkez4lK%i7_i?xG-6{-6bso5AGi%?r1?k&fDMZJI4d865n znX^aa+NSeF9A#4+pD;0(Ypb_4*1V$zlFj5WoflQ{XGm4`Hbs+t%G7$%WHy!%{#R6) zjVFAT7{dKNeMI@^a4hk}m37W-E0Rahi0FbP7XHyv-aPpP2Ax71WOB5Y zFwxzmkxLrm*OcqVwvk@wELUY9?}PU;TpiL`ZU*YHX47@U&q$nebU|ay*6T_d3)#Fe zla3)2z5+k3u1PTS?h}H>m&+eA>cU3Xh)_I!Acfs+Y(0;9GV(7JUG6Odhn_{ijA!_~ zgz)hegXVG?%ur6TkxpSB-8N4{-cBklA@^}tIc;_)RPnNT@jFhN%S4$U) zUoJg4;T~Gbgv_kwM68TJfMYgn$jmmzYsa+3YS)>~WeS>+ax=eri3dhQU^{a!-=k%R z0X>sA;hqgoo5ovT^q=CId0)c9m`HKZC*=}Gbtq}7q>XQ z#oToclH-FnDwLTQNU@J~X1UEAu1vBN`0LR}rh0qo14}Q_L6!8qFDG^Exxi?&r-dfb zYbeJ9gNY|TWM{Oxom!Aw+I;W_bzrWbaXT6}`XM1E=8Cs+&!R_Zvt|LmV5e5m3+`~DyQ%>9!U?Yzf}j~mv7bAVGPL-Qb=q z5ORWvHhYVWA04fQUt-|p*9a@@$8oi=wgyWyhx~T0QVjqqGrwRs!T5CEHYnh`#9VN% z5+eS+nonq$GnZ>T?BQ_Uc;Kg36P*)QG9Z+;4k!rk+d7~sa(L_1!h*=boy9Q){i^wF zE$QV%|Hr8ZjhMUO1Ek~aoZD-6i$_t~ep$wo*L%vlA>Jhhc%PbYDS+6(ZLEDpHD`5L zY_{4?;(cUHa|t~ofQGqt@&mIA;AAhb&?-U8L|!K{#d3Z|^yC=eo9mCA;nNzMuNcG4 z7&-0O?ehFWF65!vvR2uj^$1f3tGl(EmY zn~4a=COTj)aCUsk$N|_4|oVL9{mF}R~>0=YMSKHY9NO>0>CM?g1DDoM_Ou9k@cC-7sU(4r;ih!2gMsEG8I2TH{^9ccJ3MRqV1xK zo|@@fEG11JcSdK?c7dy$0nZ84tCUZ2{xyD zuM-+F;|CeF=&vp2WRM=<0Jdrco418J+uqk8^e+dil^6NmBk5cGPi6Kt5H_pLiN6({ zL{8FblK-o88+B0y_C@hy9LCifL2^5si}w46&gSCD-QkQ};>jhXN)KvVmkQX*vz)6RzmpFKE=gowV6v9vSXP#?d46Hw!05V4&cOk6x>4|Kve@j;bf6JkTXZ8S&R zZ3+80@W|v;1!~@pY>*{8}}dMxx#yM8T~nRU4u*BE;93ggMN`G0rwu& z1Ub3RGxmAwU$t_}@tV@DJwN4Z;w+;hk=%eXXe1%P%tC+Jdvp~Il0MeyiF-XhfJgT> z73>^jb%XMU^D6DoD#$f${MS9?RKCF0;F#B_wbx*hV2$2E}7sPgm=`Rzt4d6};_LUK$s0U&>`A|rd;~ zn%h)$#)M$JI}zEd!m0SbRnh%t2@`^Gy*`*&P(;K-uyf{@sAt<==gd!R41`E)%kIvZ zyZsDZtnwu}-etwMMV%bzoLN9y`sa1la+|*~AB-;+NOqY07`PerAJzxQ@njW0aarkb z3zny@KtXZCne3mQu2~-_Q~J$+i#>6}w1+R2k=Y?G)VctIJ<&sk&|#xlECXcdvU;bA zZ!}sJP6s%4ZZg=wiS@5rl;?OMquJ} zavrG}e%!-eU@aCV^a>L4!lD|RA6I|Yc-T4PBy=qIQ}^8{-FkQB!s->eDgza`#QJd08l4)Y%wUNNcG119Jdy zUMX(D|s|UKyNKy z9J}UHOdx=^UTF_g_r1DrHa8{q7pa`YRvJtk`w2q zqi+}L!$qDCJNi}OjN=i8P_T+bMz2&i(UkCFLE4aX_uN;S|Gug=9eSE zuw1~sT`wW`?iFSDwNm@f4dGF(uldTEEtmVyc)u^9+MwI7!gM7{G8iY0FxJkrIc@97 zm-BkmM^@PCY7)I(wOhpqPLIz3a~n)8ED&qI{sBKbu@f2kJM1Pdn+x|2HNT47IcY)zhOi#^c_K#~!~rmHs?TW|Zb zY9p`S=G!v$x>8T}*&gdJr|o7aq&|KH?xioZ?Gc;Id;H9*&LJatK+!w1NAbWa3B%R% z=g_>SG~UmcD#oJmvpC~6P@w6q89Rd+!`C!MA>uXTt6H85HCrMhQ48sU8hQwk57i*Q{WfF#jE_uV~UP6PEbPgy%%(cFm-@APqM$($=u1Zy<$n`yS?Z-Mx&_WE3!TQy@yUUSl~ zMQ@14ew3lHy^Z?mmD8o0*mlA#cNTuRhI<)GPF-zqGzzWwhTQd=s8Ngix znhv=MJs;sBYJ2Ox`uLEM9MO%OCUY^q_)gFhOGhe$&6bL);jRH_)VZnB3_V5LiwK<$ z9~`g3()}pw*UI=0JELj>fS?rg0Kg24PP?iLB5pWq?0<_;e5y&Wjt?D;_55Uf#7Lr} z9~0pWV>{PI)@9d2@j;`3?j2$>e`DvTdS`Vyy*jo0JM0&0?$TwNC;)qxb{O%tR;O&R z>NrNKkn$?}N0|^st_O3%OOm!69VLuAv(~hCR7i~!#*tLG$*JA{zzeMrR*AhOvvO?0 zO1id-7$~`4jJ8(|m^1xk-DRR{e$RAbwJ6y@E7x@l|1UXry0%xcnY347XC?(jvV01pDzyu_xdn)w}dq*zY!-{bau zi_Iq;TiWb?mrV>bwTd6hh@!D_{uV}`l9k#evQMWqS9K%<+dwwn85o{oBE$f8&KnTK zvL+}@E((1~%~AE+ zb_1G0+G;6@%-xVyJ9p^)3bU9h85?Va6c0Y1X|}G@Hpo`nW#YW+`v=WY2^df~Tl=4K z!Y7KBHO3#5FcQvA3dAELVG)Ao`(abEbuJGk&eIZ831QjeDY{UkG}a!FeeewU#^%7k zw=^<8`3mUp^iQJyqd)Vg>!V-T8IB#ofaAB@wI+KFUoiS$^a*i$fz!54Zx%^ieYoQi zi8keu7lgJ#XZF-gl1En8lg>zmsM+s$M06e{MCbSL?tQr}@sw6dEErX6$jvwfVqa)M z3!l7pi+YF<+D{c$Dq7V9GONY{X|v>h_99dn0PX&r406up!^VgCjaTZGo!H!JbW!7Btj&f6iyQTBYyIO zHaXG(t|k>e27R{?4499YEp)*ah35?DEV@%< zm92hKh-IK(4T1A!SaCi_s@g)oT6H?q^=`WtVU7iopxaeA{Sy1zBd9ABX%-(Mo#nKh zt9UY8@JP0%_>ke;W3J<5Tpj?BT9MsuqXeDU@s#s@nP(?6EgeoG<6Xk&S=)u08>$eT z&DyaDF4@$zDc)2m*OC=g4n2rm0H!k_Gz`O{ucw=Gby*f5@`IO>Ku!CNOHu@Ot+j1%0jfFI z*5rv{P%}I(U>Ayb23RUKM@s==VV#BY>)`nIKrr!SSHWYxnn{n%w<&*-Xd>vY4vt@= zjyl>7WQ|-}cN|8=FXy=Z;N`;nBTaWjKUfXD5C%fnm@^D1Pp6&2@UUM;vD;Ud%H7p-+pEy0%;% zja5*wFu4v2`i9rmHvA2*t)Et!7-#$Uy|yv`%|hked=07u*Q$L>UMjt!KD|4u)~w>y z6VqGX^f>i;tCO~vUA+6?WYpK`T306ek3Gj@*j_EXGB1_Ur=&Q1!7L`#YR1ZH9kkfH z)r$Fo$O-t#vP>;5I;S^7#BB$V%M725UheI-`_OI2`*0@mAel8mJju=_GXDGaQ^| z(4kWY4{&acDXVj^-5@4oGZ}&C;7URUu&4%CnHaK?=t0^ielE5P8jU|%Mjd*dy#O=^ z;*%@mbGwrg{TdA{KTUkTJlgSDYSY@hsr`W$!mhy@_&o)jN7mLnJ>!Fb4FO@Ha6oj&!>Bp7FDq%fH*X zy!8_J3GvM}5zECzd#-l^@xhfMa2Z^{^@CtDwRqg-%zl{PP;>?XcXMX*2)4FN*BqUP z)>sj2zUeTPgALyjz-}_sXILHQ$(&n7e+}^&!yCkGzgA}RP34s3>XYfE>Wd^X)o}d+ z*kO%QJ)(@e&?~#15Y89s5>I!DxqOM&#{`+KcXrell@|o(UwrZKGlvbi_~KB_UQSyd zwTzZ3MOw*vdFLZ!BBSLxsJt26hH6gM&`4(esP4=ZND0dPQOLczP5{vq_jSCDEaoPK z!6Wl1Vs1nHY6i5;X&VYQHCoW15hsu2o%#C)ql z9;XLAPQUg>dh|Fw`6>38w;oQL3rG+38O)bPjC1QnjEx~w3a6pY!FHLO)E7GZ^}G9G z>bK$}X7PvAYlvSo9MKVMP~`n{6w}hN601MiZtG}%_H65SV32XTFJ|PDGv_iP^;-U9 zJ(H`yFo3~8m#<#BMFw_4}&K%V(-hq$S`lI5iC%7eXFdmp7h zB|)x!c3%j(-7BisHztmMxQSJU2Fv%&rh%V?_aTBs<)pysXOeCG>pdqZ;F@nG_)hjB z-p#!;7;v16vB{_cc->u#A;k@Vsp(v$$(9y-8(3dk>TQJepO-&MzF7cagdo)tYZTcc zCe|+P(yyX{yFPc?biD%M(F%we_&eG{?p07f#5!G#kvb60Hl=D4?K}T<@^oDT?8|0B zW1{$n=W&6)+Zo=A=Si)g)YhzbKeLr9Rr#g$P?Kgkg=u)$R4%*{MmRQwZGt`O*Qt0QOZ=fgNb7bm=v}0}yyl;;|AWL1RVt z8VqTaoU1RLonV4S=*I%b}q1n zILmRf{Rv9h70>p@=G_*#CiR+~=NU^*?`W$P@Oud2Zcgmyv<4QIO@ZX66TjIYb$y$h zpsP2qnc)T##e?*%5;2Io#I92g0UH_m{NfjuKHKQV>VwRRYZ(?6NAn9T#eGd7wi;bN zdb1|v)V~5|Mp(GsCA5k{^zm!9lWp0f;$ogP?C7tiSYL`IC!@z3-K{n|?)BGG=~|1c zx^-r;XT-fa=2VMuo-kkGFD{)+>^GRUY0_z1ge`4bNqDV1zm8V^LMsBj99|M1`%x}0rdwmU z&iCC~cIO@_MCqotKay*)k@3H0VGIArY`)%uR^>!?$C_vV<%y-({>*vmU|ZhLb=t0= zC-WdBvY5~$oMrpBxH#FHs9mqBh!wOuh{iRyu*yv8lQfDS^P%ecr0-z47x|Y-^?WR4 zWLX~zF2=srPwAm6LP>L~5=6+%jlQIuyqG^Z`@kHy=a85{$icrguU?4q`#+F&)W*FU zdJZX0+dh;x&sl7HMcK-f>WytuZ(Yc>`!1Pwp1~U^3GpX#vyC6~gg3Z3x>9S8)*qsn zxhAi5tJRfCH_7SzX5>__E`tjTl6y4!0wTvcx=+sQ%){BcWM#Uy?rzBo^Sn*f#f$Y7 z4$kDtbN1W9JtU%{QJmfqN5ojXEL8Zffj!t@x2EC=J)Ap6d zMq$@)b{p^V_1wj~_4uMBFpW=_Odr$e_Tvg7RA6Ke`@#3QAS zwa+Vj40jq>UwlaW6K&7`P*c1Ow+(%6C!K~Y>g@akn+tKPxHzgB`O;aUc8OVrUnD~r zA(y)skrf066_~RvSRUzlpY*iUcPZ?Xy#BK+efad}&Hm>3>Yp_wbN)G-yc$l-&K)zm zw_KK)nSEoDH?yC7p~Q0pV{L`C`|IPUm<@J=I3mR>t$N}uavsR8bC))_pCN(|R}g(3 zx5Sz({dmyYF}%7P0>Akm0Q)RYIetG75UoS?2HUe&!-Kvu5BgdQfyeK|DQSk1@GX~m zr}^aSe3$yo69txaHCFTOKHsH|NX$9ZgYmf%j%NHRSe~A9hOeoJk*YnAG#?l*r@R#XVso&(EKNZl7i@gn@p~>CsmLxwWHM4&7 zIoe+?)p6}*gS#YqD2m`*eITwo4cfJZ*~SXp^3=;TPmA59a8~l%7-!RR#f*taO}45V z6Gyu^HB#OE_!5>1GtNCDe&bgNq|K&m9*x+ol<+1^`7Atx%((8?GI#S#pl{#y#u_tY z>9BbCE2v|I7o|cgEepSae@n4i^mXl&lv^(DK*$}IiKm9;i4WK2_Dz3ha~nIm<$c+5 zH(mz}(dFD2ie#{3DEM{eT!8W)V# z8dRD5lM1y6)NE^67iws?F$-+hpn&ZQ@yR;?OVa!joJOB zkhbZttoAq8J%Te+XKVCD5^V#Y#5Q-If-qk$K2=*22;BWT;8%(2QZ_tRonByn@D zwKBqIF+6d5P2Y+coc$sTi+QK%v>I2_8=1qq)}+f{5#W(KZ2c|fFWC}K>`Fv-avFa; zc|vbgU_5@?W&wTCLCd{Bz{TIo2jmef@fM6n%EY|=PdS069u$bi4#NyDM2Yk*Opfx~ zwKOw~7duFAJ2-Ek!v`Wm4j`MI-=m1lA!vpDDAt3hBklrUR$_)CH|^wd0D(x_PIC$g zV!R*oE2L97oxFfQo*$O0`DRCKchlrQ>1l1_waxqfl!|@O9<@UU@KK>U$CBYP^d81`j5^)4J3B7~L%tq=+ zaFm!=c=95RlEW#1y}l>@E<_uHzhGjnqJD!igDm>8^#0BJ##Dd2@IQ8hDOY7r4qp^Z z%-2Q~pN>{T`p4s}%p<|Yy>};O&E>ti-3#?*iG1HUFT%HyC^W+Bs%)-;d;MsB&H~T% z=Fk3BOpIOC{7C&D;m!Xu7XENKk;1LRX~2R{IYkbyj&NSV$E)7kdH05wqX&&Auf3-H z_Ov~g-(KrC+MD=2?ePJWo#A04Oo1Bn@H2q5oZJcpGfrUO_g_IqpQ!aSM0cOs@`KhV zwAoY;?h#Bx^`xP;35lRf&xqN~y?Vf#Y5zW%oVoU`pWn7W#A{y(eA3FcFW0})L>VM(ms$iHv`Y8Tyz=ZkU+%lMIcT+q;MHx zalzu!V_~>71eJQ&$`3xd7F}MRk#v4YK6H_%kNN23*Yd}ngG!F`)k9uT&vjDIRrNec z&O2>Q`{LsGSo>Imc(PuKQ+TjG*?Jx@un?eB(Z`pYzg{$s>FdwMJShWj zla24e!W{mS!UBT&iTV>5%${{mhdOVT4AZ}WJG+EOH)*;vg#sGk$ho&75%BvQSoQ$- z$AL0U^e>@JMxe50%b#qI4+Jg<{7m*mtOKo~igt8D!77adcF5o$gAy8=hN0^MHh$SEzgSi z4v|ak)dv|c31-4ydFUMStdJPJirt<7yFHW?K!(|i3CnzYLt11YP(3>YL3pVJp;iG+0Y zh4Ph9NP!c3k-sY0Q=$x2Hq|oY5j1E%yH}gfdkk~VA!Jy7@dUw6cumtsA9H@rT=G1C z=iA#c@#+el*vpWD_8Oj*gw)JdZ*xb>(|_~dVRVaz-u3-KkMwUAjEta)w50&sWFNQ*lyA<9fIYRdPZ&shKqK@3!1EkBzQ zg<9#}MnVM2?1$`SMFYefnTdJk6yFb(nV`>thGwqthz2*GGv{c^iFnKOb&-s8v^L;v zplmTjUtnf3iQ)q8wec1TQ_1qzQ)%<>1sYp7D;hg3pIer`P#A~o1MX{3`~va6PxcIP z63E96XI&VC<_XnJol!yCP~TmEYOh%;DSz$u;+=1-(~uTnxxk@+PlP@SeMX#NbVgUNfe=m{2t zeNGJn%SA=gpaZoMWSEDu31;r5k<5Hwq)g~;q-~36DG`mk3wAJ35y1mTo1#FdFg$8nOiTVvrzP3{K)_e}z^aVv5G9lJlN14KY0 zv2z2#nq^Mg(IOut3i~P>%_gQE<^N{An}QkbwK@2wvKaWoUo3bU`aFnHy~{7Fk#_Lz zkMwu85hwObvOEcjgqE?CmC)awC_s{go?n$Gp)a^dQdGjZ29mSFdG&of_`*3^P5Tx& zbEOZ=k=c~aKl{G4?wKTS4mXkxf;ECqFt;>a6kO@Lmf_=bmq2(Xane2JZ zm+APEj{t3)=S|@T(lgZdq_Ti+>*M}h@~+lC=N*4$@=v@=ymxV8+W}AFeG9+AW+KSs zg)lEN(^g*D!9JrrCbF`66>DXrf1Ly?-={ozgv0?(iHYos?{0#g;|D|11i8#OL#zX- zrT^vm4bZHnZ;pW!43A&4(@TYNGQLubFzW2yF4K z5Ush2XAF*(Ihwsnb0M$7ZV6j+va&OVIEM=)ajLju!q*IfISYIW)kpjV{=IsTfa=0# zvY{ErSlX4Tjs1et?J^y&8(lFnoy!9Qv2d<3JcUe!B zAM}ksh@#|L3BRiex*Ja#&+8Ns|ERob2p2nZ(b39?EN;Y~I$T@MBa^2xP=!N|v1yHb zBSFd1xFx>Y+tQfmx5Ui<7nBH?x`;8^O)RZ1I*hZ$R>O{J547>uDMS z)Td;o>T2`cKZVY2RQgbst>l6XR`<*gt)82rb#HpjEE;Tp zLAi_z+bdj?Tut%9c7XgO;12mx_HDlvG*w{!!Q_YBA)h3RL1i9$a9`>9S?3Y!#{zHt z2*IGa>w&kgHB%R(r2_6wEgJtLg(WBV-|YhtJ&*AK$>1iG7O~%ku!}~Bq{)3DyL6%?PsxAMc}Q+=o6Mo8T-}4P}ke;QB9pX@Z{0MkR}CV zKNU2HjG%@~NZ)#MAOyfVE9e%<)l^ZZ6)<*6`$$a#QfWo%2KgZZoejR_rSvlMhWfWW zL$_u5OVWn>s{gAIia%v*c|M}k16>BfJNIos! z7!A~HaAvR9Nack$tv|~yH2K(1gTK&hcvN9OaeWb`VZJ~wAvRtLyt-X$&Nkaoh{NWh z68;4^XU?NFX1|7D1ru-pR2D3|z`VawdSDAMNwDiWc{+ID;=o8@I;Q*kR8!E}5eYGx zGn(=S^rLD^dm1LD-=nma8I?w4o-XTJcDb`o^Fnd4_| z7J98O(`M|s!a5s0jT|57s|jY8WuoS;(cK-A8*oMPX3A@S9)!S}D@8C8DxF0Sh)b2u zG3a)E?*Z?xh5{cv+Q4^H61{o>EaQmp?@trcqonlekw2r*1JVuqnH_h4kB^(Fj(3%dYqXTp$0Cx9jMn~`2K<1Aa3)2NyDOHI6-CfPyG zIg|`v-+JrM$@Gz(*f~LHCA0Ao?k&t)e2e(mD*4D#+f?9-m-zUG=0s=G5#PK&#@}Qw zHj{p%Nt{+9FaOMC;~0Q3urNsXbVHqajaNJU(!mTWPY37pqiFj9mZqX@FMLj`s|=5u zug+E*-j>2QnEPLM31?IHw~TE+3zd-%VuNIVWUK5u@kpZA7Z^a6!}8dKSxFync`P^V zkv~g*`Gp5I66m>LVq{64__g-psd*#b37$3LWO8pi1$70jr*Y^|d$)XIi6e*lI2NB- zVm_SZwoDnR)fg} zpJ!T++t$N>_4?X|0mUZK4EAm4+S6To-=$iX$Oo9i)C75Uam408+8jrUwe0Z%$N;DP z;pUYyt!Ym%uwC?yJ&V`QAzv~AJA~oZz?X!BpB|NwFDmwH4=}eJMlrQxl|%`>$n<&3 zPnAI9;}HOX!PQ|NBvhGst+5h9omg=}5o_!tAVjwr0j_;5Z*>@D*^yoy_*r0-Qbw9l zRzwk6VM4RP>}{aT+n>@Dyn2Vw!U@kCg-Oc$sQG|&@6~n+$OFvl*)$1t4P&I~uxWN{ z+l~t9`C~gLFPLZkZfCdcD7`a@!2+l4AitLZ<~edj&p{#JK8RaFU>CN9m0;HBqRw!w zk5;NXj>ZDra1-%bjp+_U$T@Nx(nQ0QcsWomsgKC;5ti~yp?+~@#1o@&C*4F|* zCu+eYOz_N6u>RgY59Cl-X6A}7eF>X9+c$vfOyN1;^BVtkxcOZDvi@P;)#7fXDa%3P zv|VSDQ39}Ez1tmOi};C`pxp;VmlV1fn?7`LPyT<%44(&7eSso$>Y)-f;MKAtDCwC|(zcGBkqMLPA4E_KNXvD{O>eHMLxDgwW|*w%XRY&^A$ zhQ@^5QzuOR(;%VLiQ>Pa+*lul+*esZ1iAXCiLJWRukuvM)6_73VcFo>QJMW-tj(2b z%O#+(|KJ}=yKFRH-y`|K#X5=ptB$ZqJ3`KJD@?as`rqIaigG%NNCUI&_ZZ{a`PcaX zD;~4}nj+s#qW|q)Q6|@{xLy5kCGid~(cDIp*3jT!nyz6uaDtd)BY?m53&?s~gmX;{ zoL!Kqd4hkg-ZS@J`WM-?(zQHkJ(w`;yku`pbjIE=hu&vl**gbI4X`BT+O_iDzn>iB zhKK4CPA_m{Ovrtu2}v^X=K{$ZpH)pVi@2n9vy77^=3H^4Rz)k!Zz;v?o!QH5J^9NO zrTJ;u{Ya~b`@ouchB*Er0!>Wy10Lsd-Ig!`uEr0-1m1d^*HxnbeMbuQE6loVO2y$= zWgO`3$foQA@oJ;?KiL$=rgWG;W>b3Fluk1@o6=-khRMv0HjObuAKKKiN3Q4D2T~rk z4@~!;?SuW)81km1z~6i(Hl5W1M-kfez>@SUC;<`GMkIrbQT*}Vd$E1rZW8|cJNA8- zneM-*?Rz>~UyfD@tP=Bgzl83J0ZZn0{=0SM)1&f5SK#129w{OO-EJQ>tnl@M>#-nN z(cN{C@eDA0gFyRZCh00W0^J9r_Tx$(C>nEO@~m=`!BOyYz?s*xC~<~9G&{K@y7iLQ z&x@y=B(I2C4U>CLae<%xvX?#i+4*llbP#Y^9zpAM{wC7%(yX3I#MNi2Y!CCH4tqqW zYM%)o@679(7{0po^SvjtH*!gB@#ObxQyceeYW~~2r{eMsoQ^xuKU%qR%4D%=RbGm7 z%dK>$ugP4>*MFT`X7HwORjLNO&ex|-Sb4)$k)Ma+*I;&U3!{Lxn~P}x#d>5gej$nL zBm1N(xl&p2D&<05fz6J*KmQGYNOtAV{0(~2?v%ZG9xk8HdOyi~hF|BeSBbTx%zsl) zI@4kYp^%9BJ=kXE`-nZrjZMy{EX&|_?LVLnmU(`G_zg5yx%W zl(k4Y(a6kf${RLig}El1@|I2MG#6%5en87Xx2VFLVUyq;M1>WFpINBjmJfNb{IkVA zkg~x(cx+Q!k>Q$^wgOxuhBH6^oq(6r@ybgcn@?phNZxdqAJE?-3ex*_v!9jgHoXh! z(6P-jpGxX^<+sks-bA(CyqQa1lS@yV6}j|%%i-0$#7(`KpEGUR~|}rD+;#W||b{aO)}p zXL2NNCd1Xn`7LVf40exumn1&= zkcV7&!ZO_JS^Yznz8IG_`;wnpI#=%!1Llh}c>mYjC$NLksRy6nZ#wlSr;OS{ZlOg@}y8G%ogF%mAy=Hq9b=8k&hyza$aFDmr^Mc;OUy;rlx zdpKW1SQ&I4c|N+k#JTAP%@)g$eZa(zcLx*K;q%zMJJ@?i;nL{ayQ80%Tz4qHxT4+N z(aw@H-0t0K)?T+GBafg=OgnQfuw)$h&(q+}Wezu>2++i3a?Wzx z#=Roc;Tkdsb(dNC9&hmN0#&rvo-eb=HGflvl(J5!S!{0AL!!PbUpi;5{-`&Ys#FJ6 z-6Z_M3gI-)bYKJz93o6}{}Di_lLq^{-3+w9TTFj`G1I!k6(Y7hlvpe67CcZCu}j1M zzy!1Qd4RLp5Ax)8jAb&uPTs?_n*V@q)cj_CF?Y3%luq66cDVac?8~I?XH~IIzu02? zyWKo)f47)N{A!s+ z8D@XCo5A*Xi}@+PsTZyNnD0;Z_|1A7WV%W-DfkqoRbs zQLYXUm0o{1Nmgh^mvLQgs*8DCJtS&Jv3GB#Q5o_IC5Dj4ZH$T9I&+0h>$H;H(`G;; zZD#pzySe{ezeUjslK2k2i^A;D8$JZ!#D-AXGRaSQ_&DHPvlk*&cZ`>tLV=6FugZ7K zu%pYz3}t+_AeOxYZZUS=7{^BQ2D&7}cx-GjU=A#(B3>B+pL~`nG0Q7dUIIdNG`Ws0 zJUv0uPIGc^8pb9&BF*QRYn>^_IP>W8wP5chL?=u-RhJNl68(-y?Zf&46RxHseC#Qu z;g2DKz~WCK2-9R$+7{Dbe|MRI{HD&5KPM4L2W!?%dYK0*GVRVyaWRzpv}Jr&3(TB( zPZ-xmi<<1H-w!?iIYLYlV~73SWwuJFd2GbKT^=Wi5TEl4udu&q^Ax{<#XA8l^-N$f zKk1Y%2@U8|D`|7DUs`f9#f7D$i#5zGetL`jWu2z{xZ0oK=UmQjV6o+aiPTWm*?!g; z_BU-#=QowTe_RfP>$s2jQ{5ts6Mtv8$triLskt9YO+^|tkAKEK=a~t!7e_zlz4pLn zi%F|zgO9mqZ$dJLgaXrrH4qr#9OyM| zwjg0}MHTjK6ZyR1*x>Tywu+B<sh0kk}&S?)1VsQip(oOtLxF zo6SLu_N(Rf-V|Rdp&i}h8gA@&Z$7tV;hAseb8YV3ivG^ryWr2GkDROIJD=uqN_zK_ zt%oexRP4TZG^W&P(YFeBy*Bf$f1UsHQ>$0HFD`lOh$WvLIrFUvvxgt!y&rDhKR@IT zN7(nb4_)%sVM{(gQmJqM`_i7r&3x<4lTII4y|Q|>{5TeWF9>D6;Lng=iBEbq{3e9! zS6d>pDQLYkUzkCsSa#B4WB`u}n@ZH}6{_jD?ka06d@e5eDLHNjR57x#@Qc<{t0Tjk zdVfujNido$4A;xiKJd`-oGU5M;>Vd+v{!99Tsf+zSeW4kF>^CGco&Z7DQ`B2mK z8^5uB#4j~-xnRu@j=e6g4qfl@Q!x5j@#NR-=8{T<3b}wSsdWi!L#@Be@0cJ&X-x?4 zTU~p)xXxLWuI_BAc_H$yX(7+;%R#tIz4yoaJ+b2G#*>3nG7#;VWw)_r@bUw-pB8pz0t=m%ZhW$s5W zr2?}K^Dt7gJA4QLmp~FBg!|qr6T^z5pY7H1iu-)(?FA(?-ut7MHW6-N4^&3KE^_8* z`5AK0^{#cXH=bGyn0pb7e9!7MK;wJbZ(9A&CD@WZ(f8}5=JO-*_p_RPx22dutCl}) zOq^d{y`FL4XS}f@e`huWKadtI*<6x1qibVgD0g1~aEJThOD4MM$kS&PInmFGoY`zT z@V%riIA5d7y0|ae%vnW8Hr1?-v~&4Lv!wRRKhY4DT03HrCek&HiN<2@cueY;Ed3+~ zFOKd$WbzNqG8l2m*A_*@+b|I;!&L!iQB`8_#^~+~C$F`F1%9p*;VfGqq1OAwmo`T? zA6Yl6-(jJ|1zl3Nm>D#}P2-)pc`@Tja+f;u>iZYCoq<_J{es*qB|=yms@W0Q)KvI# zprfdwx(U6`=g|&-5))S|y3wNK!gm@Iy&fbbb$kXt=1|%b?Flta?n~7l^5JY6h7W!m zm=)mq+;!n{-m2UW+f8wJbrNlb8e1oI{7lGQl6;l9UDPc{&(E-3120BDD2#j@-Nl7K zPg?`}yQysKT<(W}%|Lmwm?=@WU1y!1j(+w<uFko2O zmlPs%__5T1t<8P+nJbdm`CuCe15X|qv+v1*e+6!(;>kx_U4o8!WM7$z8_oV?x=U@C zHaE>&5{!OT7oHH*YGcDfwj$Y2qySN&-S$!WEgfwYN|hOB2AxW~$oJ!LZs))u{+CSm zO}tFzhh7QzaofJpuewjZ%*qZyXGy@92SW$YPGVABFphp(m&y;u$!j-DZyEdQI6gtQ zv;M5Y(#SUdFmxM$p&tZa>W*xAzRb6!7xZy`dIM;6wt zoSfIJ-svsxYkgSZnC0B^w#i~WAI@?MXTu@y<`?ko0RMX4<$18~;XlhrEtzb4NUbmI z7(8=HacGQ(ASKgw64M+trNMzpbZ*i4N3(dAgp9ZFSf+%3*aQUxJ8ged<;1}KQ6uJ{ zn`P@l#~o(WbkXy6(>0eAB#D)ToRkB3G~;N+ThD~Y(86O7yLmZgtEq)UYzrIBl3Y?Z zn`A#7_Qj33q~xrBi*+$5|AoV6D&9U1;Qp{#-C&R}Gn3g>N*yHmtxm`BmXR;t_1(%m zI-Z+hpX`+iNO zSB`8qVumz(=BSrc5yDKIky|ASt>)d*YNP`#HO>uvC_}YEn8&eL-g!1}|I(8u`b?g`_Co@`Y4Ils=(Oqn zFf)2eZcgU=$gT7o$inY^Dl?0D({6ff4sYI^{DmZMPQufLu*aZfxnMOHt3=nV)4F=xMr7w=Y_9rGRsB`3`j2e^wegB;k*!aQm@BX5IXa!qa=v?^OV2Z$Y3U!l z2PqJE%ENo$DR7%ky&8DxEB!tnfDMaJhAi}XU~IuJ(M_*tDOw`3x7XGfb4QdOG~DMc z2G}Ne7ngNnU@b#1pSSv;bQs;YBIvf*Bz%?|O<$6@rp#VK}S|FeMSc#T91yRXqMTeB3S&uE@3V5N!w_=j4*^A_;t~LFep= zk8&FSCO)iy(t6vs@64%vX)rOS5M`jL{!(B=*t}~dDUP<6&*E#mr?Vfa5B5g3@KMTkS?<2vWk)6T zFxScI>zeI0+0!@QJTGg(MqFIs9q|ueY>rE3v3aC@MBr`<|3riMvG#A=?K(kLgoNXf z%dwqbFE{(!$=PVS@td(^GIDLZA&iW&8;#-DlV_tYq!dt%of}OTO=*VeSB~Zi2@WV0 zEesZ}PH)QU3#e^h6hT&B^1hQeqWt$h-*~?Zt(Bj@LHX2s*ZzLLzPZaXuV)$Ado??U zl#|55czZh*fcu=&V=t%2kWzi8>0GcBpYJU-(b34%AL_vxoqyIw4c+Q;V+5 zH!H(@oACp435B4uQ}~H(3#%K4Cef=<>sYs{nM!+9v3-RrCwO1G!D|r`({DODwL=Th^ z=fv!-3W@&55eOridG@+o3%V3REe!BmP&9&C2=ZQ?-qGmv-DKVeA-v&6+i9)~wN~H}==? zB*l7Yw;l{{+L&z5;~AvJRI*PU*e)n5sdzNhm$TVfZo3O057VSQU>&Hkyd zbAdhnZ+Y3_>I<{k1hut1ZM6eh{xo}#e7~CwXT`~9YJLZ5S}dtfyqtzxH5QF&+u6*% zFxd3?hqlvt$P7l*zA`p5q64jsfzzjUHn*jY5YnII%s_6uYlHbPvB^93(JHm50{Rdt5E|4`Aw*|eD z{WIXO4A>alVnMvs$RjP_k}~n15o2$F4^$F}0r>H!?=yr$WUn=J=M4l)C_d8Ct98i2 zb?c+leEhmQ%a@&(X#5w2lV1^)Alg1QRIZy6L!M*@sk<#v>;<~iO{CTlP+3O!l?u|^ zOwo9)J$Pq-v_OSu;?b4-P(K%LGjOBT$;Q>ozKVLBq~^V#U~GVruhncW6cK1nw%#gG z#r772?)U)-toUGN3coY4th0B@UYTsekOPO?Oy1eH0iof`I0Zwp7v1wYio2PdAip1t z59^?2<>>MW7i0IBvrlR#IP1vESxq^zybe;N^R`cDY{;1qM$T`(5IDUL5L^!KP`taM z-#)W}R;q+9wgji>P$59ub0JQv`WEljx*vbQzMIPq*8Di%LGWQJqA4dp-PD>Qvs4R5 zu=5^3C+)GpOo0&%PL9T=f)cw!JzTh87V1%&XD(BlsErf(Ee`1Md4&)S#=6#;*EF}T zwrBMD5a58)4jUF!I>?NqQh{02`TJDbl+hts-SJeHY6Ep;T2D}M5AzvaZ$I_6aW7D9 zbk8R`<~Z&|8`7YVx3<`jQ>9ICsRB4s%M0E9vYfO$PZiQPy1^Yx^9F2;Z4NsY&=9*a z{Tz&c&sUi7p!K(zIA339vQB%$&HQxzL7mIwoIoja3;0QNgKXLPr^S#Kfx0?$AyGat zZ7na#g#-Gf6ja@w$P@&P$miSg+Bf4fg803CT_bn!rAx-}Rk@#2ZsHt%zL|BYO}fX- z53;@#Wc?4miC=zemivM%zYVh7uB2=p03o-QEE<>_Ecr&+*m?Dof@1TXcTC{zyFjzo zlv}Tz4x3E{9s$08P)i|S^+CHMd!H+xpcdU*;8JXZ32%J zNz7V23Y_~xefO9b`6~QbzAbfWwf)KFO7-b}n=h#C--5WHwi~TC=+SR%!p-Jl3QQCW zq-ioVtDlQ*sALhZYrpr7WRbQDb~TD^?W;}54X3+Jb-zlFOTi{8VN`MvI$f2;mh?Rc z2ZM9F&FT8TGqxJQZ8btf{v3TD1i>ih08$(5{?`4Dy`EKo+a5U`DTkFxnU%+>riS)& z{d-tOk{rzv(g8;a)YdFfnM)88ghO|&!}) zhK14^&oQqxI|}s_sjZror3jY7+clvQfq8t$y}Q7h#x*YKtt7Px5YSo3X*xrIM84bt zAu1?>Z?*?ntil8;1M31>RA81^^6Es7b16`-%(_=3EbZeF2Djw!@+^dJLIE9zd=$u< z+hnVVJg-plAcuT+u5>NCl!DHRM^0Q%X(}b z7`kH*apBO*l^L^7P}3S4b3!kF9(s9s>_EY^@Hf^w%ol6DYmPRy9buTtGR+P$y}&oTa3@o>1xubQ%HuVx*({W~h2~n-190s|J-m=4=oP8LTWlUn%OAoY zUibx3W&)v!T3l+|MR=6-JiaY|ASAp{l-Y!X@DjdibFuwyHvRY}Mg*Dr1c`bDiE{b2 z+^u3e1Tp(gAUQHaOKEc)B5p_7BsnF_20Rui9NAqZueVOnd(Sz|%M=l4YrIKUlsG8p zNm4MaT&WKqT##qIx->^??y?CHRIf8L6i(3Plq&y4d|Mt*BYr6*_HPRddpaS7E+6>`m^?jW}WkO{aIi0IZ%Jr0X}W@XK}>0qh<}# zkeiMx3(X22%Msz`O71_zk7T%)NmxHT+8u6CLHgv9jjHB6_WfYxW6Xo{m$)$RdagFpCwm> zyPpnnXV}x_G&ni&p}i51W1eSFAwy+wZ?PRDb{m`YE%;2LJB51OsaT3EMJ=Hsevf=9 zl@3I{y1$#BC03Y!QEXPkC*^TjWI|}t4o0e1MSOf7h#YNh*dcV}js}375SqL@0}JRd ze8mmzBc>i@7WEQX_}iOTgE|jsTFSW><1Od(1iHN*YYKF?XSgT}1)oKv+m}_dEw(r- z3JbQL!`rNKhBx+AUd>xF)^EagHJGbbS8ADz6z&N3`?B9xPX5aMl%YE!p;=r7X~-HL zn$_pnNd1`oJhg-wJ__eajhc@b?`&`(v;MqHoL%bWJFi=PxEp~T>d)(fuWNm{E51(k z=OGq5uX}yCJHC$f=XJstsz0wIpTp|U3-Re(AMRX#-eKXA_d~V!L7V|o5B|!tIBtf# z;0#0iCtaS)O0b1Llzqp(#b1KI_uc9+d0Q9{tl!v=_*+dN8ck!j^2bTXM9>MZa238A%b;Aq`2p)9nYr|YX4C)jW6ewI86-%qtR zOyLc|-!kP;NmcZ*b)$-;3$0sRa9OBog-Tn6SJgyZ6_jGDh^S1eZsccwd#N_KEY$iI zsaRo2+K|fMs-D<(R;kecVoA%?K)||xn+jT~{4yG}tk{3cd26Tp=To^^+q`6TfqTKr`e1Rwj3Y3-cxhu&ehWHJ{fQV`@LO2#4 zT@jy1k!X`6VfL6zPIFrT4*w-jR1O}*$E^nwLIWEXNu3xNa6 zL3zoR8WcH2E4+ORl&;eIQbsd&g!g>V??4*;giwrOx<|Vq)qqZPlRq0r7dbNPqtJ(F z2mIOccdd^?6QZ5)caXn(eH5yI#lHG6o#gL~qoW*$;pi+!sGjR}^Pi)AYueUrspS`5wVe^^;j|HD$<+U5plaaKjix|)w;+Zmfg zUZmt*UNA(h2GRm{Od1L5Oe&RYOfE>Yfj>=i5d*aQ#zHl!L zFt%z>kf3T^fOr;HAwgqz@|VO^k&RH*cK!|!3JI!$mQ;O?n+nG6;13co?V3XHT(ilc z`BzX7W|S*Q$h}rkZIq;W!n`A|oml%tdhju!R%%kOazD&H8?jmu`e|LMS;!1=6II2D zXi`RKf6^`gw%|{55b{eo(BM{Lsvxu1tTdFYD3}FrW6$A*5BITPhlV9=C76Ts>SNy7p@5U@wqD_5}HPshQk&F(5+kkPlG>& zF;x5c6E&#IG5K4AbZ+q|6FA$KCemmiEB;9Jy`$7`5K^^E-WGXx%BAIR+84#Ix}1|htZBA^YO2eyC)wU<6@{8? zlPZ|6M1IcCv|apE{VPl*RQtJfk+pDvpSDS5G=PF5zJjUjW7VRjg^OS3JIS`?W0m=Z z@_#`Z@ShStSD30J({80yR4aspCWTrdKCMi|Nw6`KpjYhZKBw*a3W%9suf+9*XErVjf7c!C9Q76I0rko}+ zIt?;PccZz9kI}5Mi>E9gVFe&<;RyI~*5ZF2rd6=CXaE<5>_U`RLm#SGr?ie@Fx@Vt z@!X#w^0Q29MM>iNE<96~mnfwCwB<8RZ#gA@9=AI>ZdK*DhUmEE74h7cdHvxbzr$Ja z0e6NwW?~BJp0JmBYNy7AJg-y7Oq?AW8*;r4#0B9w?ctrh4vS~fuq+ZsypPT1`4L zi;Youb~lB0;YZ<8NVUgj<`Em&U6HC@k<$0HuaFoSYzWT|De|x&66PkuJ<)j?k*ZM9 zWV6|A!KTb+vkggRvt=UB$uNCwq-~AViB+L3lf47_n>Nz6CfQVWVnK!55tGKYq3zt; zZoGJ*03Ax82M97Igbs)!6i)|;N_QZ}slmFs-KtNZQ0eCcnx<((B>UiRhEd)}M9EEu z@aRhKwev?wt8MF;s5h85&A6dyMR!s{xpAfy*IDZ{UIN8^GnkS&A{!f?U240Mph1-- zODaRdmqh!$e^z{O$F$1QoJsuF_Aq=(ug>9mizNtu_SUpi_FEE0{k!@ogpX8P^ILnE zI3{hTu(KUwkKWS4to&X5X>)s7E+mwDJ3y<~qkG;j-?L^^Y(oe&>L0@wuMb5t->k?) ze6=+{*||`yUbm|BUayoUzAmg+AihM6LF$ZkJ;cS@S9@wbqByIp@Usf5yGZlB?jgEf z;l0UOt`5oS{zH&J$Dymccf{dbKQ8*#FjmKLU<5R)aw-uvVSHC@!{qDLD~u!!2uxD`SheEIA;f zWZ#sXiHiw$a+ZV3>3ncG&90m&F_p19?Cp#-QAV%4k^_|SYn9>j%Mvexg|0l;q@m4` z&N`>cNR-*;mS&{FPjlgG$Wgp%!ccE?=K~3(y=Xw-iJW#Iu|Q>|L|19&r`XqsHfI&u zo^oWNsmm~<#Fj6Fuxh-a+FZFY>-&OYd1FXv@XmJL?R?5*c;g+81GqB_&(9##fJMtO z0ZgQ@9pAQ4-C}%F`*){r5(2-)L4eTfX=2)GUY>Q9iu@ITl{LRaZC_^O)^lHtqkGxL zQCoBbvYxFQwOteS`y+z2=YBGs=HF$T$7!VbTfTbIipJ|*-9<5$Og-q{GUHyZQW4p0 zajJ2?I|o$r{=tciPWsTNO@rTDd~Gc+rOwCG;5lP!Jq`PIkX8Z49iUOzxzHDTvh@$}w z8$8PY&9OjDrN;ROIsyDFmrbP+Jumo<4Zc%?Z(~s2&4K@(;QLk({=2~ceDGZyd{+kFO~Loe;M?sZ*PcGX z_oU$abWq;Fz@MyFHXPKi(}M8I;Cor{O$6~*2mZ|CT>9gKZ#ek!u!SvWYVh@gZ!-S! zAl*&D_l_X`;o$pB@SPWYmjvH;g74KqzO{ir5qu8>-=1hcs2_cU@8IBjUXX8i;J+yN zUK4z01mAmt?;nEii@~=k_`V-}TZ8Y{!M8_Heo64%7lbc;-?ir@`<04#=fCPatp9*0OzO;xOXcQL^0?@ZTt1>`aNScOklF?bZ!Nd*EqLq_}b{B5gIZ{j2k% zu&tN~w>0)P5|(@0D*SPI9OL~6+3=E3O!qTIhI@zS>Fx>|AN=0HBiGZ3U>W?BRGg3T z=nW?;HC>p1td&=zJ{R>zq46;e8Za2HpG*8(%&}QS`yDGf{+gIy=L~Ji>U*&5pP3aU zTdqH`yx;2bl3k(LWcu73hC65Bx(c_}S-)e;-}nZ>EsZFQ&QIf`5?^V#Y6pwe2jVtR zP4}kk<91ULds?d(By}k7z??RMIAF~t%1rLSZSU;8dlV$dYrcm^6I%`DoIlEp%yym2 znLY@LvA6~$i<7rLr=yec1(us8v zc`cjLT5I(SL$wp&jZ+H)#9X>cPXUBz>^4jV)%GD8^{+{5^=Tu&>i+KaEbmJr=fBR=!{q!_$A3Q4xx81+1*^oMWkg7j;W9j}SU%(HsF? zsq=~CRuESZMl71cnYRthBXF=ws5AxkzT>^N#4`bBwn!KSgB4{(JSYlrmr5ji6Y^(h z%^0bNS!c?}KNT@Xp?1}tEH$O+3YO@!mQ6s^KgITSDsFURzw3^a8&_ZUDHhqA)IX$q z)smdLqxMXTd@S=it8Y(M^FA%iSs! ztiXju6t)c%3P7iHr3!mrVcN^Mbmu8-DPd?lEjS@n>x+aeIO&`q6${HLa3|*Xgi3*+ z)aC6#a^n%^pD*at{g7g{59z4|?T4wdt|GhM_uHDiPz|S4_#aOvjWwsX#24 zf512q{B983o#2Z2kULNZB3SG8JQq{<4l%Z43;MgBm=08;E(}OjyMwf})2s;^UBs5L zK)u$`7m-aI031HPLGqb1+YZ>?4RXEfnUR-aPEr`sg+bae1fhK*r90h4~5ar zbToO4u!GU$EZU6-S8XUYzJyOrP(B}lf9n#-}QvEaN^ z&A(Eb!)zBAH?Vohdn_MQU{OWSQ6x`vv+i2T6da^|8Q`$_F?ntOLbaz-Lb8vwKadCY zVs(dhc2+X~{CwMA5E@+k*8ysk`RU|3j3U5H)}jjga(bH?tvO*g%reC;RYz1TOm~aP zjcmyi$J!PL&+q*}saZiLGzo9DElvzSxCyn?cSsYiQxhb-v4ViaDP%CKgDEoEylN+B zt69v~D%B=>kiaHgT<%@Vwtt=ZD{(vsmv0`!A)0M9;M+Cx5i*y5pP{`$YIM@S;@_!Djqs^KS%m`-= z;7%JvVz=f+{oenfE1z*qdJh|_ytudIbtP}MYYZy4$ZS57d#sKMNi-S@=&6Oq+_P8I zu;vFM3ryKEW;qfL>Da)&m`8-{cnZutxEN-)v9Nbu?V9T<_IvlW_fDzb)=DGJbdC5= z>krxbtG)J;?Rd02Xs^jS`3>@#z4mTEzygSO>kJ4aCKPk`RXa?$IN`0Xkcg|Y|rp?!^T0wRDb1eK8_3BRV9B189~2q$CLG>S&&DSxP+Y-+H2 z1K)`r++YTzk+7SEiWO(IJ~Fx51?8R$h8dD(NGAuiwphvbnkqxuGjS@m^5+Obi0z9O#6MV z@NxV7rxkF7`pqkBz#om*7OuBn#2}1n4k8VT7s4}d3JA$93PSSDcBltUR14B%@9orB z_V0@u%DvBnEyk$nw~fULUqdvuafg3np?_}Q#`V06dsY94e;bd`Rt<>wM^e>0{)l}4 zvI4(~H)$`!98;uljX$E7zUzI&W_)M+BRI{E6gK#h2Sy4F=j=V?SSG~V(cXfv-y`gY zv&#JIctGc-T;yn>=N273VpPcf<#Djd(lJ6m07ldTw9$GOwYr zHOHkK8qYm_XuMYe2=|Wcw1l4DCFuuwJ->m! zw(?9CtCgf#O1NHwSWoC?n?~h)Qkl7lsY%$T%FL}C=;La!VgIVk{92XFwyC@We0Ef3 z{tIa;NxtCkKxO7whNb3=Nnw=J*38kQQ7BTt;|Gj_8z{kkZ&SHQz?Y+ zBV5%OVw&Y>AaIYZ7{_}RnN88m&!d?uqM7e`i?CRAwAbKZQjv*rK!XbjAW5&V;F}Ek zRFJI5+<^j89x9c|;LQq-X71$0Hmg=cJ1MCM!G8;yyhXM844B(t%+q%l-? zn)Ya%X1%7L_c*+2QXhBVcz;6Z3Qn`GSj?NT14M{ea)uYCabr+J$ejOE(Io%eEdRos z2&fbGK5s4+Q=Soe?v0~E&%MRmd|1>y+-P!UdR;F=+FTk{)!xWRQ|VYHPCK?TU%20!y44Ep(6-aRF>3cSGsrXtLXv?oy=ci6c37)L zgidCui4Q(4y_ohArRq{&(RrlRbwP)#HJXW_PX?`H2SPUn_Mq(5onW8aZ*?^D?Q-2k zu~mtG9>fA(&cwH^=9*;a#`DB%FD_>gqD=32?swjh%;0>YWBusNp#G(*e|u1W>e7(o zv$%4HX}!(mu}wQAJ&VyLbVdJx7;myk}j=qdV5j-LIAX?x&qC$%%;eZ zsK9bx{>HxcTnT}tHBxxwd9qFzy9);4DTMT!_)56Agm2R@u7}32cO4dAGlE+EVSU41 zBM91YSpTrM$U2GwECKJWe?Ztx1#eL>0m9y5ZU6Q+ZaF$U;}ani7}9Z6Vc2`u1_fBX zqAWfk8@t(IFg=|4RvD`8joXec%Um7t5(I(vOoHu4XEw1w?`Uj2u5s^ivDVD+@lE05 zzYHJ0KYaYxd}rACb^M~R{x<|IiyXhEtjoWSKM?NnRxqI)UUz9K^Ik3MvO3bGkxDy- z8$UU^%roJ}O})GoWnDgr_~QnZb$LDFpFJ4F&u!e$-5(Yi5%1NfG7|#zI=RXlTM8on zu+qjYJ-r>H2IJdT%U#;Tk^b}sE6WN%Vccak{@kc&m(WkXdT4jy^1bEg3zpY6-=US{4J+x z`Oz*bBc7D7Rw;%AIHA*d6jT?zvSO6QWT9!hs8F7YF6=a1D4LNs=U6A_DI{{CwlHYWHI2Hq5^a{ugU_(B z_S^5P_}LTP3$~IGrBNm~-(c|rp0zpBb+645KMRS(22O%jWUk~y$QsqW2;Lia@hb1V z7{Ur~KuO7>DPJUp670%p>X0F0kHrLd4IH$46&(&FPP9H(esiS5eifhSt~{yp8Ogh@ zXutGlDb7?;n+LFEw2c=KYZuj=;dsaDQxSmaw#8Fy3Z>KUtQVZcWUy0zVwy&tbQojh{|=}FYpmO~r*E{^&`t|hmbt&*CvFI7GK!>HBz_WJ!H<*ETN z^bxT&zDrybB-Wt8`K9!S1png%kM7v7$-m$)%O4CFK z&!E1s)OTG_-<7KGvYl%p*n!aQ#Z3y_{C1ceNTmOu$ zj{|3#uzjQLGViC$ue-YsSO=GBd>m4ymXS4{y0W`0{D>qO&5?2y$Te23BDp5ZMLH+! zlV_yG11A?Wr#cv(_TT6eoa^JXLckNFEw{RmzL3sL8^7aSXIN$q9ly>y|DTN?Tc1}p z2xtwerwu#-Nrr-%QF`1d>TT2pOP#lH%9G2&sX(qGJ3;Mcw#fWr3s@gp5_S6)@Y0S` zh2QNW%ICnex|;G~k4i%iFuQhRH=rSs(_HgQt)v%G;Y3R806phmp8HfmwL??Y4oy`% z)DBM($%isLk-}2B7@M6|-IT#Jr?uFoOaxyKogcJk`FhtL@YGuB7V&A!SynSzEjc&n zdWTmE7#>a+|Bnr^m15ZFO|_%Q{9$VVf_B1lX#K#uocaZC)z3Tu-n??Wbqu}e6rPQF z3bsV{WKsvd+7KO2LsY&6zJ-SczJ-UNkUk8h=2fh%GYn&bdGamwFJI^C@1y#URQ)|& zKOlRF{(w&WQF8p!@bO-ouZ^czz{hiy?<`bVY}U`rKQ~*H9Q5Cr4wj@OY3F<1|94ol(ZFgqR^nPCn;O``+J!2b)7l(Hl_I-Ay>9=1JetFO_x z{Wse2G#CN8{r_u6lHRBIVO`jdR`>&N{z#*x_wF@XZ}Z3sdI0t^y4LiZl{MUUUt5!J zm+5F4I}(ihf>N+sJn*UJK%2c$h=)5V=0yD5fVL+$tx5y;T>BXgUJyG-u`iu`w$Hoo z2<83AUax^cp<12tGguvTkr4X9!dI#Z2ASzms!<#Yaf`gpI7mg1YehXu(a?H-%0ihH zmXek=#jzdGavqQVMJ~&MPU*9>EU@lyKo6&sTwW!ZL?ovLR?c9Bl`~jkaGT8h>|gEMOOoUjeJiP+Tbw+2m7(4J(3w)CyHK*f;VVXg>XDA%^r(AEuccXMegP@ zI-)l1qARD*kqdhnKc->vfsHR)FLHM?)`k3aUJ%l3&T%2nxe&>F@@S|zO~JD4HSlR0 z1Ccf-+Ay6*dKlJ*;n+#bEcPaB6W6MV>2Im5vcWWQISwT(S*~*IQKPGn!)ntjd2mI1Ug30_ zLiXSW^rtE?*3!S+9-x903ShiW(CP72$-uee)o4Axqb zfC50aTiEI)%!1$%23hxB!|g$L5af>{(7cBt9gQ5SQG)BsPe;V5N3unlpKH_ zFwH*(I6S|>eg$pGgTN%5%rQ-%mQ=JE-s-C={h9);Aioqa_OA!L@rm4GY&8umppvu) z+p!ZZ(cNus+9;yiYVIunvX2Gy(!qJA!fzrx1wRYVL=6xpYVKQr-dsd{VjLk(e}aP@ zXezHc?K01EcI;?h_1O!?(5rRk>AMZvf8>8aKz0p8 zF1OjPIMs~}xc$zQE2}@XE%>YvzZD9;aI}9exNu`$F*{wSV`=V1IWLJ4n(-DT^j_z{ zQ|Cg0{z3f~DSCkveUnJRE@3(al6Y{Td490aqJN=~>O}%8{qbN1&(Hh?kD&SS$3P0b z^iZAlbuuBN7e!mOy2=B2*6QkMCcx&TO#)>!mqY(( zuBhH$erTi3@J|n<&2u8nJdVPWgSyg=Q!vjN*6YwbHfw(r3~O%ylA7xbYp{OX`Ti~o zy`A}Bd1cfeQ6O}Wh@t31OKl9zH4FO$&kfBA#`^&IgbZ%{#|!4^RWMFwZCcUSxP@Si zSPs>zBUAG$3bp1RLv`0qw1tcavsA^%(PfttYp$G|3T04k;j1zU=e;559= zbYZC0wfT=H8gdt(~;6Qar3PVN+LuAjC zv*qi}$b7 z5%cT}kSSWSG#VOev|@Ls*Uo|zf<`b1tMnFJ8-+f9qzwSKTP2E4iR(ZN%|Gp)gg>vX z3*a^8ApAM&e-wYd{$~nWiTii|SMlc}?jn2#oF?5I;7Uxrt zVr2R9G>Q>-VA*Ri2#=D{+*>FGJRW2X)%{H*N*uxO;X&at{j5Um+3QrBKb2lWRHx!G zA89=&A?-0Uj?n7C*W zVh`1e7o+!VLg_-!P?A{POx}oF`qv|!MXbT5!k8M2MN|zx9s+R0X5W3NF$mQtXqKy zXtO!B6uyF^u-LxLnl&`OrNNeu7~>1?T{C{L%J~?sy*W`rK`H)=__w_kruXUX@kf12 z{H7u8@n2#ZD3xE$b@CN>>Y5%&_BkhU|M5s+gY`BI{y}}`|E#^drw=XfY!x-!Do0nJ zS-1P9!w~{+{X`i?j7-W|g(uA;bXNwEq<16d9V6gnM}Tc3iufx{^2wHtr`6v+a&A4A zn8!b}u5IdJrkHiE8I1x7Pju!mowB*C>Edtd+ak6 zN^dI9TT$Hbid72mbhVcg*!5pTpY;#3Tba7$@$i|U^2X@fn;Z9biav~T%o2357kTeR zuWop|@`}91w&S9Wdw`gMuP}elKcjfLB^uk!^{YVo8B5eYi#`@GE!!j&^Ur)Gqm+riLrHX=md5jq@{d`) zjE9-lR(JD{X~qTL4{Ye$kncZFo?H(uOJ3kc*(#w3ktZ&lSwLN-?@*UV_pV}$sFTN4 zv){Q*LTB`~dS4II>m{P0vbUiRL)g(r{XytT%)I-^ek4RTOIa<$g^*iOoX{tjKs3wBx4k zX3U!h+G2yQ#}BB@(U2lFTQAQEVf(t}oL=yuugI&&%n=n2Qrn0pE726OBJ$+gRLC=IxVh|Mx6$2siHQ6n=&JGawET z@5{<@tHSZyGRxoIAPapX>1?+}8)(h)bG*CWQ6HHUMSS!fps|-)VL=5_;(VzTjx?ib zG$`30Dv)2H%MY@uT5!&ZE_bM|KXn<|x)EMv(?mMDer3?nc<&$lS!*HYYX`o{=7XL~ zxQHx#IrHnSsNe0;{dD5IdMIPkQ@6+eN=jyaa4hatcN<;tfKje<~Km zcD5s`$pmH0qhGluWVt3>YMVe+w({P8V3yE^hY+T;*S+CpTX!%dnCq%#$tfI zanD3?d*=_qhQk;OcrbckarWDLdpHTr-}brQ9znshuu79gfOWn7`yXv@zuc1E+b@3e zZN1G_^Hwr^<`P?E%`ZR%*d$nspHQ|bv!T^nsHAJM62Ne-tD#x&v|xBprT-tm@O#jx z z_xWJAwu1hh1=>OQ5B24vD^?|oLbq2E>Ak8&`VsP20|3DiJ%<0ozpZa{++y#8QI16ma~(l;hjKXGu)IgmEnD9n+c^;u?;}fP=wYZ|ZlUcW9EIgVHWn{$ z?`QEU)7`dgT9;T0HW_YW3{w}$6&l+h~viopcqW0Gozp8&^xw!y8 zk1%_{PY7v;OHf(5Igd4<)3O8Zs>LOXt!jTeeHTCYF9gI^^O2p(Erq$vOr37FnLNY` z-ckr=F1xO}W}42egx@i0+8&$;ec(}p9NaJop<0-$j0OC4Fjw0Nd~=ST$us?_SzAH# zHht712rhl~MVQBiJvfaVW{pde=bvgmQt7mrEo@Dp`GXtIp3F6i=^SD@{d?OlC(mO- zb~6_!Tl26yN@MmQ!L*?xn{8;0Lj5x={dRM7zPi`)f+`|qO+(9u)cyc7Y4P5zn>8I_ zT9Rt!%-5U(6@4z+<>%6eP2wFcVE*P%eh@B@p>1SN38!B7kY?fIckuklwu<<`-#?*~1Tz;j)KORlonao$QE_4a+(O>B z6~ZQq>-Rz1$UMgQoJ?-m+Xt%0ebiLjN4YZ0Uz=zOqL`c+Umqa*v^mk)(b1zv{-pTF z#nCwh#YM#hqi(!9dTOn$Bzo!tg*jwHv9bDiD;fpm)Z3)QJTS9eOUa~~T|I8%)swC& z7#W>2rK-AWT-7z#tE4=YKuP(oq?%b1X3Q%rz|*a3%`+^COIV=UXwt#1LE|1Fw9$o{ z-Ai4A>j-NI!Zy0FP~Ei*7U6S)@D&ONKaN_PkP>eit<`+sD11|rM;Dom!fZsnmmX)? zj(YK@_(Z(AdGbld@IGW&B9+>eIGijlR4Wx;)|gPO>=H-gcWTg3d#H%dUu3g$U8?Q{ zTV8XyU#G$4Ow8V#V@SNkmZTMTggFh(iZ3QzXjYvvM*RoXiZX8n=1#(~jkjSIX!^cs zq1r!!+qiBE)xHUU(Ldd(is7BgYL|!VEphbg)bfgwqR{Os*`7b&PMS!4e6GsWtAECe zi#e&3f=2uMs}8v4Su*hb7^JCt|=?jbQSC; zi?mH?P#V8Zy@(Cs$Ve|rpm0w{0Enj*sd$Z%fq1+W!}4Lhqn#-8kEbdILfJ`9^I4=`9j`~02$a3HZ z8<{)2Ck62jUlhJLv5Qvw^99D)^@nq*s@eN0RI$dq-D)8|EI?q@#Iu9sU-gMVU&+d_ zs)Ef@JbT5z+19RvOFSY~)u2(-@e}G`S6JaDQ$_qq!R#P{lrabLkRcl_ylb99+LCw6 zL&M*71U#2n*RQGOy+kGLWUFdUw+#!`4#96OZAb?K&shu{Ol$m%GOnSd05F|>F`W+! z3vQwH2%XFWP+4|1dj(dr-GQ}5p2N~gB>gsC%wtaoVhKX+W%j2`bh`YXk!C6oHNz+{ z@w7^KBq;7tdFCx_Zy-q@`;Ov1n$%w0BO560Ur_PH#VX;fptwqTu06Q8bHAgwyVHuh zPsKf{;&kbD)HnI{h-qGY5WjxYpkU>PbLaz>eUo!If@TnEIR__4vwZ%?W%xO!psR@=3Cg8!IdQ+s3D;ZXlYAu!N)e`$AuAO5O zVBAlbZEN?|RB(B}Ko=b%^^vRsZ%w1&DblRM`pDpd`dbDR)c>NFPT;F2qRCV}4uevs zpekdL741~h3a&(ajJ>_8EqP9)2z&Bv92hoZ$+b`QNtR$7gzlv&`Z2m!pQ2u!9qnl5 zz39vXVctWlp2&2w>`;8ZXjr``eR zg)9>pK=XL}gldctzSc2@>_jY>m=QeIY)XVo@Pgu! z&m)TaT6XIQJ$d(aZeUruXtm9{s4?EK0<(L*6M%ipcw6IlOs$>&uEXqH`snqI`3*O=OQiyRa__-L3|T zviC!V-)fFU`Y$HmA6B4^&6`vKK^y}Wtcd?v1K1qXFYqE+Oatq4+~Hr($HQO&*(`ka znP;9!ORRMnuA$59Fg*%4ZorV-*P-g8u?vos;PX1LfJeG4>#{Po@l0-BVbJ`DGH)5| zSGe)ZP7!ZQIJV(T#8|mprF;+Tb{#QIp4%P1>`Yzqi8Xc%H}368egz*PdykDo=Bc274KdsqZg)@ zfi2#RIOS&RSeQ!{=6N(!nzLWxpis?8jDcQaLZ%#I8Vu*0B4Q-vd)BeFo6T0T@YZen zI42~3ZJ!VDD!+tRF;_xI55las=Lr2QW}PIvXCPd^?dJ7Y2#w#GIY+_*RWvNecw_}} z6A#gxnZmj?WaTt6@f)=ddnaqn-6ToS5#pg!*CqF>Ik7V{rEg-P6pcSCT%>?@$XSnr z+}R@Zg4|F!fZXZ&#(1@tjkOM^YH5+UZg!=j`{o2hQq6ktE~Dl5?fY%j-_h?J?7$f> z{3D$HtymDw^iQTyY^Q6!ucNze>I#+E1G;q_-CbhEaF-^QSoMxl;Y5yO(k``I^I-3y z$7$&0!8$`+VhGhqPfNRXQJ!_U(HSzCOry}9Z{d@Tw)n5uKyn@-ZICQ(PbW=ai-``E;XY#^soCVYz3A>6n?2%uq@yBGGXW6*~?Dw#lOGd!>- zXde%ED(n!@^UFMVIo1$Ux=rn!+%!*|BJlXqhw=Xya@dz{)4$oCLdI&?TlaTyaO zjF3}YhVtXyWzOiPNjRi{TB96tKi5?_Zjb?oqMH^J^ptY>oO-UUSx=C8s!cP%>O1}%LZgHKfo`gCoNP`I^hnink3-#* zn2QZvsfNszKdQa_DCM{OC3wmBHS&h%A?a;1D|aJ|otHM8$TKWj1H;>-tj%n>5qOx> zSh#_~kA1;lv3W{HyqsF}Hr5sjbXBg$=w}eV+J>()AE9jr*jQVu2L@gF6?Ll(bmc-w z1{ur<8WMCPc}^O%7U}Q0ptUEcweKg}cVp1LDz)#S!zeO7WcvNCeL3yzt90!%yU_m& zns$27w4v=ygQ>Dmep4*AYuY@!vaU1Fu{~*T8u&90$hEa>ZEx3aNzw9Ql0K#D6N=m% zgkQG_g8}YuqRpLfT58Z-CRc{J|7*d*4m#4lW;5<^i$Wtrgx8r}G&Z2tCo4AF#U76} zmI71H8lYLke!#obQY<(5?71qLF+S5~=VZ$#!TZvfS`X-HtT{W@mVM)7CRSrBtxH-e zOvb}b{Nz54SkwF`g9hpT;}3}+eu)3rL;P*`lAm&mX7UZ@qt$;!&hvXfVMn&D`cm`4 z{v=33wRhQwb>ZWTysrRX;wzdzqQj0JI*X@ZRQ!$w!9RK|9^z%F(cbrp0srS zWhx!DU@D6?l;7zTf2wwhqZA3ZN5x)#sK@j%O4D4LqxHSHw3j}3r&j%1-|5rw>R;3J z8x=$PdiP-km+vX}ne9Hy+-HsZ828!hKB|BW`R>!#eFnKt)P1hvbBXS&(8abAf zl1}R4$#Qw~o!8z#!Mv}A!VZphVA0r_8Q3e9%jw&3!`bgP`YC&eBT-@v8x?<4FI4@G zz)~R^vU%!!*S3{nkWXW>M*Xu{urc;yF|4?ud6*l#c<*1+BV-3=%FB#+Y*k9S z5G03cPX}f)$x@1%KDcj>f6RP{shYTpCYqU@q!{KNzPyWi&20okAq=)9SFn$PNG`jZ z2pPJN+Lq?fkElZJUqzTT&gwPEd$4{TQlcBKXZ@hO$ecdTp=A);p)U){=yj&#*N z6jXgU;8v6Qf=afWu(zn~d`6;`lrPR=tH<%maEk;TWkrpOrAMNPflv$G4UNEyuqPJZ zo|l7*M)_deW4O<Bwyw{KJ(LXANA)@FD|!Oq>suSAVItHA^ADgX0LcX6LANcI!F5 zmXgkOiR^Gzk>4%5S3CYgD}ec$v#s*j;6m!QH(8s9S=wR=P;+d$rU?IgD< z_*20Xn)_OYUwE2Ht7r_O1kk>YJD{st{`;MK5Rt0u(0?i{+~ zHFYOGaJsF0vx(3jp-lu-4bOjFZG2bzr!v2$FLjp1|E7A(F|HY0+N;X`dqZmED4GlT zQ#GuN*Z1_Go1{WgBh^=VY2UiU1p!@t#_ zY!1)ofW6JU#rzf_og`j5K5&4GG;@OBe;1<02M!E^{~QFz2oBHKt~2-Wj05_V9kmTx zEALTcIJPZ2aU8|9^9wvh3~Id#PncNF2326WiDTCQC5Uq{smi{d&|u~rJdFQSlhACy zK)}qfR*bfUm~c0L-u}C8D^+EmNPD7l#urSu{OW7QUzr@a;^k5A{(6QxK(nal!?h*5 zL*V~ZYwg(~`w>C2FAWdRr`c@@8BJGEZ-Q+5!;(7K4xBPS)vna^sLJk7=>IO5f0JPB zy9VvNR-UPN0y<<*M1l5`^8{@RY75+9QxkDIqJemZsN&^G8Zu{c)uijklO`C4U;vWi z6Aa7$;6Q}uqi@reC<&0c53NhKjfJV%E*)2ozvfDu!VLZU-)o%dW`OTSV1Q=s9d@>x z#B*+*KS`4bJ}C%Z<$~)zwWEQyLtElXggggre@meNBc`&9vmGiSA1vykG-Y4yk1yl~ zCu#@M6tcIVG4*=>DDPE?f&b^NLezg z<|^+4yL@Yvc+WO%>L=Ad-yJFJepL0@@P`}+|1g4$-F_R*RH9k)r=D1S3fAQ+OSVpV zL}C^R#*!z8sr{IF^+`BJZWbI?{cdb;R`pv}AfvgHmN>1?$+LJwWGKuYEYGs6G$L=d zSYJzRQsdjcbG661TCa1HSKz`t{P7`hW!;>J#3?uQYJ6DR5S@(NIL1Sz_U24;?SE*s zwp?Uc#QPitIhe-?Ab7&%>r?3sE<`|uLa^J)rc1QMmKIV#TJwYbEKhAF@4IRLlDy&8 z(~su*Q?n9B(*5*%IB7#__>W{=9suLXH2YZ5zbtb5#dT;s-?DhSGMdN-B zZ7nNC12G!EU-$B{7-Oc=poO>52(z7*I=r-n-y9d~^7I`I7 zjGu~UxWFD~vvKuS>r%#k38AgJwWAh!Y&*|cgAP`MiCP4a@?HIV6cuP+7dJ$_&CYQxx{fUf~FD?=5XdYd$H@x2Y(bnxjyPG4b?%iGJ>l_GS`{|`;1^%*{-ynTzOi$ zK*wUYW@Ob|9MB-`envfI@osZtmQ`4DrrMQMyWMQ=`g008 zc}WTbjHoe{h8|8Jl@-UfymxR!B@sTCiyEreb62!w?IGH46Buvp3T9Ms(XTK_| zZre@8{;*!;>CBN!UE59e9Rxcxr5R=}{orI+6psF^quJM-A-A(H!l!vBm z5?y(Tgbx1A<`n>?{ys}CtqWX`ctyvLXvql=PQmFcBI|&vNDncf(qjLyEuX-ZfFk8N zm9^VUqE~jb_}K$C$_3%HQj%^r)w*U7yFw%=VxsY(4A9$A$N1djt@OS||1UgWq!*aqr^CBH5alrE+#&4#1Hi*BYlGWr8x%;#=TTD^N?|v`HFg!7``hxPALuG z*w)F^9jd*a$-s3-R*g`tWKSI7^#wT6w6IfV6k!KVnbQG?6Svi$MqJ%CyKcjihR!ii z2OlMC%@*l-y4jKw%$ALsEjoXuvXAASAUAVlHc3H)TM9c)kW8+eQ4J&J>ZrR6pNZLh zFDP>%=@#_m$DJ9x5VVu(YM)TlU91x>>OnWYq1wNyXuo$QlUK%(U-u@m5>3r#Mm4T4 z2e}FsT%#26Zl|)hiFzZEx%W2q0_MA=Su%sVN_O6-4M!O!-utIhMRP2%f8W_XfncGa zh&3$Q{YNG@68p0#NG0ciDu~0@Ckc~VSJj;;G**#pg&4rpC0RwCOqABLYx%aUwfm>E z5u2D=ckIwf>w%#|mp4@VFM1Il&cN&*a)1p)=*~|FsN-F{ckJ+ZpGQLHthZuKKfCWU z>M;vn+KT6vyLEQOqo=P=(&)7>d}fKrX!|-R4rl}81VY~0zQhSv(wGCym-h9p!z00Z z_amoM1CP7`#`h~wlTx~K+m)b+WJfwWRB)Meb!CEM)7y9{; z&E%G`(7U726S$51Y4|hw->HG6;al+Me4^aGD^$x#HYgM+#Gda}xja+8KyVjUOpKst z;@w<+DF~yM;a7%6M47+Oc#bCA+`+n*UAOeAEK}w5P;PAVAP_BZlEV; z_f5FHUA&^BrQY1na0I)ovG{{&Y$x1iX0jQ@G}k;ngGfKCkVQVruE(4kid{Kmk3k!5S}x+ZTbj&Tcn~S)UbDj*KmR!Y?F)I}r)h z{#jA&6aERJQUl3^{{<6Y6aG^syd5y`V99#s`PpC?PkD&z7)VMd*dR!TqC-%#Ox-6aWiN{G6t&XYk_Uh-_CcVsaO(z`_Io-F;Vr39Ehp&o z?j3qp1OwhaHASqgGEfgK$!8cQ4WS zTy5on0HT*t7*#S%*Sz=jPxyzp+twDvHtGVZp@}CrM!+0<97Aw`^|bPm+8QTc{aZ`_f9Tpd$gR zF6;xK?!H?XDo9#O67hi*EI`OA_D-Rmjdt9F!^-g_WJS$akHjt&B;^ND6hIfqW`XK& zWzO44askN~lqxNu<+dPu&iGbnRz`f}p6UBCZ)kdIUG<`<*V1x)8pTa>2K*SQ@!I}%?c?&sPdk-ozLr+4JtPO(V(lMy#nt9hTzRayw6bJ>%{quvpAwenTWe;YNe81` zowKDzOBVAWz#0+qJdB-p@;-=WE{lDYbN!{e7ju_Fl!i<8q0p@JGwbtqFXpa;ZYRcQ zRAy6Fenx^bclKB*AglS(>;WgD$_mI|L4jaC^QI8mb9uav>sR#N%QGZ-d!z9v z`g4l{8|J*tm-#_#g=ok9j!mq#Klmb_L$o$Em zR27(zoN?#|*?U|=o+3tQGDT(>u{z4^ZZZ;DsnHsFl+?lb}+#h#U)jX(rFUHf-HHpu~ zSWH-wlO(cE=`^+3pue)0ekbUJ2!g&!*#VUzSxY_wJqzsnIYlD$5g0hsX`DPXoga@4 zskiyD54)QOqRG_j&`jbl0zMx7)*%;>p316ElGsJELsTw7`a7zC=nyag?xu?xZTF?K zUt?TacGwRAR=3SUC_3s4h*k2w$G-1FnVznejo7ZzU>%iNU=Aa682D#zxx zs{iJ5HW)T7LbU}P!)BPvl8H^-13?_>Ztv6Q*jM9gWH&EAIa2g>I$1L2+y2Ygm{_Ld zdqb;Je*0XI14Sk`3G22^yH>EBcxacG{Db=2Xpv0x)s)zF1&;=sWgHFJ0J9wm;i8tB zp=#FG<7>LvX05S;F6^n<_H0enKUW}a`7q^YtBe-BMh89cA(NoPb`CvB)2&*9)@LcH zYIJ5Q5FS}@PYz8)?YuDA&dY6M1X^#4gDj|;VIG93y=d@Cj@OAy!oNB-84{yQ*@OH1KB>VFie5UQs3M#YM)~G%N*oJWb8~ynwf-`d` zt#YV#pOSnlsx3yw;|Aeskj}bdd#|jy43Yg)cLf0!2a(Tt9gk{=t$*DcmSt{HHc=Cf zKXR;=fV5?P0HU$n3Rtep8bL#yx7=3R{56*lGk=8!ah>L=_~G>V^&IEZw#Q5v*JCzA zsUAOuTSo2<8N{Ec)A!Lbb-Je7Hi2C;Am^#rt%_4R|J`a1Yn%JPr2C>zWPi!@*yae07P|9;B=S?XlzOPfbvtUo2&RzRaVF+jBJ z!A0g1;%w*wG`EPqzevgIR!zIrIgMa>w*FV-hd3qu56WNH?!Q6)n!s=IAaM=&O%;)VekOi_pOXJEmXv3c zvYo$7$B!4L2l&yfaTP0|@jMhOdOi6=)w$`1zQn^^Jk z!BOd0@n~AqH?d+GvERUo#GT)b6|WQbtyocIIwYx1fDK9Ha9GhR*$y)&iKiezcM!rN zL0vi$XxuCwcn%K+ECC>g;=zmc;K4mJHU3vIDzCPW=ST9-ZTG(-|FiA>2jyp{ki>@@ zK~YW@cS+BKZ>gE zWG#JVoL{^=$=6*+cyPKj(bUo)kqBvZvVB?&C&@Khotorpw>17#c1yu_>LL)zGW6P0 z$vjrnKb2;kKyi$LxFvH0W24fh*%mG4-bD+~2uno8eV*A9*kqL|Mi1(=nto1XK1AO5 zG5^sXyUuiXQC*=+NQGG9f&ajNCx!UY;=L>in}T^t_=rms-fE6g_&<{2{typiLgt?$ z3S1|({gOeI7S5}kMXN3rk%nBMWY-GcnzMh7TmLLumzb{6@P~wz;2M>~UL!v6=g+CS zMv8hoRn!8Y*s>yRdo$DT{VTFz*<@ACFOr;x*mmAiw5xLUq(Du0NCy?)&Ek9Z&u}+o z|CnFqwG>V*q)@kHx$4@SeK-+npavVD2!E6O0%P|`2|cqJcuweF7#4E*R<$(2pISb* zr715d#nLD3%}u|hFe{^aUCWxZy48<}pIt(&WnfS3OipFs|BLV= zTeuxxYIkjUxEWh#7YINQzHMF9D92Q9kUKt&J=y29&TSB)ykI5eqFdpmD-_p!hqMOu zFWT?Rium6q;+xSpmS6XH6;c6b;cWK!>uRo^GXBbp=1$6h>@QT|kI&%&%g2>lBGs|_ znH&mU>d{x6qh-HZS*DWn?J@wT<=^q_*%HWgf*ME$<{FrO)+K9ZRC|(zfUj z8OI3S`A4PmHb&#~?8B8xwVUN+C{19&SHGLh`LAiG=Uz=nkX~WMrHB+Gh2Tu6?n#CD zWrS``oib#RHdXr^iz zWAjv3JKe%9bTyEVU7-^9tyi1CS4cv4QWA#LBeu6XRJV{`Prr=^v+7>5FbtkAc*>Sw zm2e8w{Xu3HWoVfhBv|!A^ENddeV0gE1Tojrca<<(bLO_Hh@XjYXyo;Xme z0BO{SJagKj)cG$MJY$K_JWVQL%Z(5G{6Yujes=6F7is~LSmyvD(0z^D4PrG1X3gf9 z+i4{R%xeaTO&Dv*u)TTrrnyg1$h;U@8=S;&@#{Ab*A$BqWe4`5MxC-&W#5J;2aPI}~Yc-ikuQWUsp81=8U zp*hS)O=Iz#dP!r4z8o?o>%D~B?)qxDX+(i-LZ10)(1h-`Qsw}H;tiM5`1o^ny0xLd zUhZKyYS{uw8j;yD16bOZkEJQ0NFzgD87g~&9pT7|P#KTFd|DnVdyV7t_#Fq@etB7R z+_D*8w$Y-{om=@0UKW2t#kkWX(7^0uCQDLf?Q3OI%WNyoENP5}hGXRG0XunlS<$N8 zOR3&_kE@MSa(IL>(eaDulf|pTyBo5qyZA?VM_N@BydA1@LoeqZF~Q3{G8$XdAskzu zS>0I|fa`OQY^u$2^3lU0ACQD09F znrr?X3tYBQ!&o!S4z<%gky5+9v)VPJQti?L(-)$k(QI!_d|=+wWIEfmWU^jpwYMQs z&9QCas)nggR!Vd5yFHYJ(WJDP6!e7YW^^*f?9;qdH*G`zu7-{X8j4xtdrqREc65Kl zp!yv(S`*o9DM$VsStS%IOxPysHM+2W8GA=-t1#jpR;G(Tk1|u3Tml=gU935RB(~G7 z)TyFwC0a9mAT%sFMaQ{4Q7 z(jAjHK}FBB)ovO_aUsnP+Hr7{a>@(VX2m7F}YAux>RuN*r+dzl7%f7%#pRPeTz4}i@hdXPl zf82MeWIEOyoGm?$qs2>#Ou%)Gru0%MVKlP2hFbSuf38>?Mk=VS^@RbP9rA& z2L9UY2#p2W7U+tT>aLSkFdz4HZOMmoSWXg_l5wXB_2rYV;{u`_f*Qz6PlK?zW+cd* zOZ51-Z22i%t?6H)H-rt&@AR;Ia+xkNk|4OL_}Xf z5GhFMD+tcbrDV5%-7D=10;FX2OekYxe#rr#Wj!*$#rG!N1hj{|@?jdw-U2+0?9B|h zKGKtFUAB7e3a_5*B5JhCN=zCegR*~K#K`+m@3=R9c^-D~I$-H@Vgi>5J@k7> z`4Lz5w`I@bTL0JhxupZ{-A=C zJmu+qU$%Q;uC?Ey1Ff|cYK|ms_C*NL^+SezULSM~{k`Lb_Kc)G#wypbQnvQ;k}wFZ4=+VZUVb91PC2K}>hDcQGj>|mIVrC+iW#TPb6mvd0^7NRurKaoIy|G7NF z_`ZU^=z3lqVs@rncO9VU$H|*pFMA`rMs4XchkW@Baz11^k<;q;rBfMxE+A_9GBx>^ zaH~w8&Rx3J%Y)ds{t5b#+r=eyDh*JH=8LYTLVlpT_sxS%AKDb=NWg3;6>+a`$E~Z=s*mHMaq@ zK)hAL6uic%r0bWeK9(3mtDsVG<-}F~j-*8mN?q$QrS0ofv@?wirSp#gXcYyDDbD4w z{w063$)8JQ?UV#M?K!u*2eB85{z^6$l$IgI1WQ^KC%?UEc_2t55?AIj)llxQPJVz08+pF z5kY-*PuJaUsUhIraWp!QU5KZ?*trO$M>EzkDYqjQU0^crFnYsPeNOZwy0v1b4&_*f zEgD0<^r3E^)5uf64~2TtnXl5;17U(3CFt05=EE*Ew4diQdCn(kHtFK1h+BpK1{lDd z6j#8Wxm;aQA+dbW@0aXJmbwL>CCjn56_Dlm*?F>jAwT}Bc!2y=dIfnv<0e@zfU$#v|YDT|W8fc?BfW zEpSk2yiTBijWB~f@|aaHc)Fg@@XXtX+-&IyK-w5BfFv+idSE0f?;AJe)_o;XhcK!z?oTmlmtzy+M!dNQ0iV@k(3r7od!N z7$tC&wQ>l-u4Q=%vM5%ze1O@peosO-Hvu9E*ezRlIi~nd4fdbAee(Tlph(BzUuK+I zN7xFPHE%W`fnoE|`QB5nMt{>^sVt-(Uq1Oxj8``A3^Fb)n0KnVDXZhuZD@_z+tXCb z_?7@#NyS~|Vobf+jfueP9bjDwEdP=>`_gP0kzK!%Ojtho466(UYfWJubY?i=)aMEYPE<>FX^dtsP0>cAfYADYh&@@c=*N;?*~5_`E-B9CsW0c1 zEkC+kyJTZ?D$ocq{A4B!IxE+={-tjspSrd{q0b`mY%+&LI<_YQugo+AZep~$2(0I+ zF9I&lE+3FSJXag7S-MC>{sHx=Y2U@~;zb$@%oQdViu@f14g-Amavo0P!M@E_)p6iX zH0Z9=;2Pb(rHdm6jc!mEuS)MPY6bMhV0@*Dq@;Nz6w>Ep5<;;Y2{A18Z z(>?OJWW$UH<+!wO3T43@ZCpSu)yy3h6={{|=}~cb-_}$@MIk4n9+WIo(XH8;)JI*m zqDx$u<1EtS9-1Begvj7#Ij=~ntRQ#tT|xiwNM)xTsZE3PAU09r5x0at z`M%}&lS=GRiT94AP8}plelS!e-c*p5c0)6^{0t48ETKR9M_yU9%s(<#bhADla%Ulb zv6(uPH!)U;$m{vhGzao0pF9L-`$3cjspM1px=G1*k0SKM0HVGA+G@!MlMJ?7fslOi zPy*02x#K{xK>?*C-}U2c7~&S(O6=Cvs(MAefA=~bN&vT;ZyfEW1<#c1WV^z@RGZGF z%bWN<%~i+9K+zE{TE@3(>=QaHy;uJXp5!B^bIh$CTJGI_T)zA=UTwSV$nL|%|7Go) zb%ka7Bc;5e(Ed^Tn)Y=HKHj;0|IT&$ln;Ap?1uLBovZg9yJ70`!v;_T=4tJau^*SUKVCNW*${lIH!IL~Q(acuo1e7(5_H`KvG@sHTFhT&*CnV!Tx z$am3sBB>5OSC*KOMJYp((i({cTQ7Y7+r}@QzxD0DgBU&)uRH5<2b8XUYc4AdZy0}F z!#JKB#!HH{`>2t8Az3K3`EfZLHPlOR7R+QUJPVI#%$55aHognsv*$AOl+Rg5C+{TN z`3aT!Gubr0H^cQ32c`Z74HV^S;2<2MoJ@QHdb0-DGXjbrAk$xSnO-E5M(<{^@#bx0 zKn5`QHdwapZniRi1B9_Af-L#?N|sP0pXF}Yn9s-QG-s#asnSn#m4ad+W(*s*Qbd(R zjR`U}mrP!jIWbo5-%MMOV=hiP{JY!=$-hZYt5l=p&t^K&q?piycoICM`Wy0ivHfkt zGGah6+C~|0_BS9>5u7xSmm4>~r5Ysnf#+2HYdkf+z*CU4XjV~@W1IXVFGW6(YZI6@KBNqK0u>zfiLZn>B-A0}(iz;x-iY`>42j%oA=WA|3e{?6QX(S*u>{RY`ZVgnu(=FkTicx|E z02}=y!$k-a1Qd{-#+mzqoYxFgi;C@_5#stFT$9{!q@o@nb%{Ge872tO50ns8KY%Z- zR>*56*dTSc09Ga=Q>l&}P~}nN=ifvLVwp0dYQ1#0PY>q&?+7Akygi`yws-M64Z(+5om9cTJIX z;zsf|J}QWc{C&}#ZeFmXz?)Wp_?wDWD4twasD^GJ`F$c_Cx29gAw}PhzEcwh6xsSP z#r~^kom*_4jjfpaVqPaTrgjuFb8VYIxq0HpZm^=T8lHMT;AQGwE%+{;0AOzNB2=A4 zq;`lPHj_EeDszvUQs%EiOwRjA;64PL9P){9P7Lgsq|6EpxnV}ngr&VXr5IfjJC9R|t>ztJT* zO`$j_kdf-UU!X>gW4U!P(G&d_H6mP8k;?`WP{NSueqI@jajJ?Mh06#M0o~1XsGcWP z_*10&Lj@RZ)>6KzD4oVh7ftYwyrXERP$u~`RpoJ{h(>E+jc#iO>V-jmN*U2+l-zBB zS9$Odp?&_5w-ya%;!`$wnQr$xR~CVn@bTA~q`cL}kVHs@azX@g;CrHkbR~wpky{Nh z5{*l)eO#laP{e)IA za~b;SP|6nQrzunhMl58Iewuo!AIYM{yJz7%u`ki8YzuXfYDVQ~Uw6rb~jCEH9p4G~ejoGH5_WcLMdx`0>Ln=Dg9aKH+rK+)f zQ{l17&NWBy#0h|1zUl!u6>V$#RrRx^51*+X_DuEI-PP@nTg(U5!`5=XxT1XrrH-xW zTz^c}*d3Ma9}qfiOW9QFZ4syZfd|=k%*=-vE`kJ?G7VT#U~> z_4}s?bAN3;1mby{sPagorJk> zDEy`O>!_=L)x=lQC+g@7H-p0M_5wwLiBH74%BQ3VozNf0gYYbL2>0Z|^w2Klj{y_;SU@H!C^@epl4h z&eJuzy~*rrdcnBVK4D=Wy~9HJ2gY7^3-$9ks7nv&SGM1#()K@c%CR%5F)LGiuHMDHm0jJOqe;XG)aQ3DDWWGbjQxz}sw5{pCtms5xb>QMf116{U zT{iF(BKyH5$dlD@&RTKKKyvuo-k}g2<6pV&q>29P*(vXtbg}=2uM<0|#DBfs1u=@Z zWlQM+qxY#ym3AMx?DqnaP%>7K63EGKfOtfS&b)Yz7t2F#=U*AC3Xv@zfH9{W;~uTT?w zf9T@*LTOufDKRB~RJFWR{X#k9T=E+O%FZ5tV?W@V}7^3UNf+$ ze`Wh?_YNbHGhzON%ZmD$^yeVD0taWGaz$WzhL?vIir=8rfb4y4Lgs5aRMBzZ{cKWk z(gk^M=YT7MceMP{MXJS z`+X&3sOo4oqg((I<@u8j%pFTpvv+i)D zov%+fck{uuiYMP}>l(alW>4EkJGqal{YBvr00(S~XcxHYq7k^LUATO`+g1A1J(M3G03gXD2uuE3V)zZ(z+i(D0*TZb|olFqWh zU79^u$(N}B@hkv0KWDGI)iIi7$#PMQSe3deVKR?n}r|k3Nj9*DF<1& z1X-&HKk3Pq!8O};l7d>S+*)}kw;`_8sVqw%58`U<=Jn_a{=2&Yqu+ME`2)sk!rL@7 z@d4XD8~Z`GC^%OeG2^cR$nQs{MA5^m=9Io9tTY z=y2!DgZ+2+RFYJ&-^c#DcQL=R?ewDJiI7*d-$L+*;=Z(pDmveWj>_>o z#h$N(ThPO#Hs8x$5?fWZ6*J`PaeK`#o3Lz8QTRL^wZLi8@%l9}4Jt zJ@Iv3qID!@zsG4T@0tT0^xooZCJlJASTSHbqG~@kBY}5DRCc~SLWuMGKp8|CK)p=( zZGNx1D1mN(VwLUNs`mT1ge2kkY-MM6z?!7xMrT*CY{HO-oI5DG8J?g{h;;D2Ra|M% z-U&G>I6A` zvRj!TzsZ;q37VO5=5`&#w)u@LMfA1TFo!MmaZ6XM{h;rD*q33_L8sJfUmO}JFrI)= z5q$i)-e(MiheV%bc~0<~ifmft^~55|kbhsO>Szcc8#5<#I|b84;bUGNqc>Mg>`qVP zO@T)L-G?r#85A&q)L!0bFE-FtMEh3h*V!95&Qo!9`CQ$X!6mJYYBhy31?vTA{rO8! z+}6IME5P#g3I8{wuXqzzFaB$Z<)+ofiscu~b=$GJqGM*iHD&t-7FV=i06HH}Sa25Z zS5haFgnmOH zJz|AqFt_Q9+`#$c!vp#RQriGFzC(bkrovx|pi^LEQUr>An_gPCV4IQJdX;S=e-lY)`c59P0e*&We%i`)z33vQv$} z=1}w>o;l(7Y};xE_qd4@S0~@?`c(Rc!CBMacV~b9l5QgS{`|vStI>aV*9#VM;jb<0 z|Ea)tts~Oaxny(L5eU~dGY&_=}`AHp+P_5`BH?7iV-fyxC zj~g^t)atMCK%4ngNEL#;ZFhZ$NK%6UF zEFrLRJbyYoKbJKW`*6>!yp+F+_KhZcEDv%v{utBP6F!`WO*|zm0XR#F7K5sVkXG&s zc7%MgRKbiAJga3YB5n%KR_sPoup4z|p0Cz<4ZRAr1Ip$uo6@EB1}uPZN zjVksZTmn2=Q^Hfgo@Vk?oLxL!eWNdx>5`{IIKU(S+rWKbF4$#nw7zri9~+jdf%d++ zQprrgxhfJ~6>h7%THHpdBB~r%#6yYIjfJCRX7&yp^@2Z&sDshO@ex4gL_S{=GJ6-( zJSyMg*=MWCME1@VCFH6anXT;iD8nXo@|^=SDXmZ&;rY@vj7^OZj2#*yPt=#T*9_X- zRYkB@dQ^5~2Dh)~y(<904r|K}cL!zL>pLq)zF*can;VgbQ_MzWY5N9-q=_F+iw z=-LI>wy!Gn0FlUcc<4KX0PS3fZ>Aj(immc6`cI=%2dO9rReO zGQ3}?LaXZrtsy?gm4hDk0;21nKYM`^7hZUoJq>Vg@R{E(FPz}+Fa$_k_*{OzT4c8H+V_b(E~Dj1DFWilV%aOkyQXV zDC9=m+HtEytmJSBz;eTe zTlAP69?zaeCKtG7K@T*K!iA}_V9L{DqN^$=3%h^CXh@&SWX$Wj_D#5+^x7iNo zU5f`tcy=ASo3Z!C$^b~|4h8`lnmu+W*tNNtmXPAvB?|OizTePM+LPA;JR8O2myQF> z_oM}Ap)>(iz!tlM*{I;Wzcx*d^e^2&Q*Bt9=G)Oa%sVUkX!hSE>sV-NZuvR6^f~5$ zj>S&k&GrQW_>e1J1S+7{&Jnh;qPf+4znr>8V0^*S#1+BA*sl4gy8S~AEpvxp_k|`; zq~SJF28#GG`_Az#JAyfDsm|I%OkQC&k|rwqtwG_}=6Q)IF|%^wJN~w9RHZY!0S@!{ z?+Fm%VcJmH%$D9kXxVY@+YD`;{i;!W$;k@w~=tVsoqORA--2dmG#J~k=l$p zr(@E1?w(tX{w`hgB4i(*XJ^X@L&y9=!MaT(^eYzA0r6iPc04kICYLiO|q9sH1uRQk)!khigG$VCtq~n ztNk>t%I4a+^bwzSeGefny;Vl{|4!?Ey7UpdyLji-tIyLW;Z@y+G*j$bru~ky*tx1~ z-%{27Xm%vrjXFEJ3XCtTZr_5s%M!ylR~LoOBUwD_V#va4F&KOHv^VH`;||8FY^FR9H)b8 zivdzO@!52>ZfdOHUd5p$8bM@7Rv79>R!l?yq%Ue;=U>-#G+bsQEL&H>%bj96m{T3v zzM+6Og~Gm~1ERRU0@HYyGSr?B$WsFLgfyN~-2F|1r=HFp1WXDQcmJaA*Ag`$>}h2F z*y2zqxAU-~AAh>#29j;%TTfUdIR|4*$VRihkq9VVdCsAgR{fE9$@L4R9bp}7RxXDlP@G_ zZm;y=djjp7JPdLpc58M8CD~sSlE0*I6|1@ush})E=2o>oo6Vw!+K_oX`+_|_(F<{T ze--;TiphphIdNm=ZJ2c+igfm#VFK2^zMv(GiGlJcB*xLUyi8;#80MLAd&BJ*H|@yM zwzvBEm!1im6*LF?hr2le>xnhWdcOdjlRNhwLye`&4>+WB`M858ZcmQwQ@q4C@iG53 z=ZbmRxW=^eDX&-)>MfAcVakC;j2_N5NTuNE?4jM)=j1CAD}AVK+WurFb3lI6))ZyF zx1N`$Y>xD#gUB#V{}&;hvYo2PKK6Q!eZ9f7{;k<>x^Ob=aK8c7vtO(+xS8Q_CEFx? z_f>~nEpV_MYAxL4pcfu&DZL-aJ(rNvy$iUY$u2(Lw~-qA4yBA;9tD=?a$#cjD}X@C zp9NNu>R}J7G5UfUN|9`GS!b4^RtuUE5Sg6a1wlIMdyo z|KA(Rm-g^|kq~;)OQmgV_UGez`?FznE?P{fT@lR!vojl;qRaGqEBgBPDAD%%z6PJo zPb}qwd?UB>rH|n~`wEeI7me#hN4JvnEd>AaGyW6CKkB7@q#SYYz84`9}Npwypi1 z{CL>2`|a#HR-I`22|9DzgA)oQzT4q%x;EF6!fw0zt-%8&z7f@T3#<0s_v+pSxQmOo zIgtJ>zhuww6UK0F*3-Q2XZ-&G@=v*Z+0`YAGJ9OGSN>FSffakgI)ky8Ts~&6!POJr zNMBI7{4}xXf1Sl^a)`Ff>zH}a&vYE5B@ZdHiVr{@kRF5UPmjEhR*_@Zk&BM4Si7pH zXY+1)wBpH~?SE=}rQe5}y9YxT%Y(R4Q+lOM@A^8&rtXT^4y(uA9Ua8(e(lGd-m%_IlIgJ*j_|(2n^_I&hy0|Ma%9Vy7pFWcOzW1M_gjV z*0r;qy^Slq7`DaDtrhJbGpDWO@))>va?4TF^%JfTW&m4aB zRpB1O{v})~$03>b*dSlFACHLd@__&D@)AvkY_B@y#mi)%Bvh>X!Dk}8F}RoBGhBd? zXMyVWZ8nkGCs#_dOWx7s!F8wprO%PYsF1LmpCFV`#j|HX7=iaeKKZC$Q-@~Hp6&|n zr9TjODD_&U7jYdCy2R{8OJMWm!|X?H8uzMpToIs(?6PW?&Y|Vy;j;Enj0pi;11pD7 zh8>Xhsp0HHSd^Btie1+}wUN;xQWktIw_yEhxUGQ(AXrv3%tNuPXl&Q}T9fd7Ph+I} z3g%n?5(YdSg=s23yCyW1EqUCKeuNKb`d`gdSDt%RLbtQGp&S&5F7YQk%h1+| zFq-qPzkgBSUljNk1^(Yspr7{A`HL)w#M8C)P9|=%q%RP-WcaBk71yUO3k(kjEHxEK zMnaM3f=GCXFXGroe0_!a%4f_j&u1Ctm6<%8-05gj#L4ibmOlAwDyz$9%&7^CNJe78 z)_^jF17sUnSTvGMI>|n@%$hZ0R-iuVG*K7jhWNPlt2X2`C1R0uq%db;d|*VXHJ)ya zq@$re;6qM49towR@rJ^Zy|E{qbkY!CDpQvVC8Kp*8d{jEH+ocHR{42>6cikyHtMf{ zeyMaYok>kTet7Em!j=tBDc_t_upx4KV0bDp$(mD}Nyg3$OiE#>1)FP-?+tLww~eLABUQHm6djj~NpS2IJ{Wydj!ADIQ6Wafv!M5*l~v zxYJG<7Y^0ckFSrMI&Na|*ihu;Q$xj}(?a9xLcvob;qZisE zJT`pFgmC@XQziyZEiNA7D;_m=)G4FJj~ZLdpSdTGI;FVy3&ROgtTp`R2$~saQBLBJMPg9OCuFRJefN4bc6e z#-tN>GO60jGm&I#tq~|y+Z;_d)+UlpLo$*|S$7Xnn`V{Io>Nsb+t99Y(!p2&+!Lut zm`bQdBZE%Rpy?eJUJGVLQkhsf5MnH;QOZucE-Ihxn?A!g%}EC|P}~Gd1dw9ALE_qts(glKdPYPLvF`6 zJIVPe2$4i^q+_ja`R@hJF0HJZGYb-^e{IMI)C&xK7vjr{Z~82(x=aI*;`PxaWrRlo zoav5RFc=TRj5$gM1Sb=Zv?QpVdPK8`FVz@4`PA_~hM6xFT^R8JGcD1VZcPwyiIek1 zq~WPCj8uR`y(?a)i`!va-xXK+X3nWmhD;*n1jD}4P$-h1%Y%tTEE=*4VaLo%aVzXp zw~o;@)FF=dl^QEY7g`>RnO0uoYp(NEl$Vy}vsXpp4e7?yeP!iU*;gNoA+M*;m|ZigcIJ#3Rki2M zDW7#w?d*%DPpvI0pE75f?~>j@eAy-L0MU@SEZ|ExPONr#xR#;iD?h({dW}!~Yol>= zGIyDB>71Gh;MY`6E%(iwF@2h^mU^a7tF85oh-YH4k$6r#GSb%?N%_24#1-FSxL70( zzxmD%Mq_kS+L0v9F)|?=s6JtnL!(zd8ya+r|8a0>f(G(+Fpa}tku=kA# zM;469Bw<#kNre#fup(WSIxD&Wdidn|;;Bezthv58nRvwQ(_AMGa^7Xul8yP^Fov3O zuA!Kcc!FW08Uo;&d$c_26JMwi5ecV7AeB447uG_dOng2PHSUW?6XV8>UU0H+c80d6 zQohRgf?zBf4n#pM?W@Krk!-a~I9=Wk)LV!8D#y$SI0^5Dqa z_6Di=)YAhMH8nGh;F`_6rWsnKoilsJ^gtq*OlhjwBWPnqdl5C{chp-jvqo;$0#eROhfALThQpE5Pan*kHRFrz3w zjxwf71m?`D>LqF}ske}^13H7tKPuKYE#@#*t=RZpEb8EQSP9Vir1JRQ*lrw!K8KG; zLFSug*_TyS#?xx@&}YMoC`)mO6rYY(;K?VC9^;F9v2WI3Ms1L0 zVl@;drk(kb_~)cGGNEYv?!DyY87CdtBW>?(ck4?rilQOY{_0s$q+C?S_Tm|h*E@yq z3XtIxO+=@fr{BpIcCm)X4WI5n7R%8(F=J0EW?G%i)N9Jj>Ao?MbZAT}6&n+ZB-1A)B25J`!O^gAI2N&JcUosy zM_OEfwGEMUtt&igHS@R`Brs~-u6H94_Qm6BBQE26ncO%}2KUB|+e<#;a`~9Y5@=lW z$1?9WI7t+}CRCXu>quWX+JGqX^pXo^*G`==eR}!S8c!uTaL9o}d~*^FNiLc`JfyS^O?$! zpXm_sL53suUgzd7mk(wpowO5jSR@!*e0C~y<7=vBdpVMcP^}w>YMt>J+!V7t-4IFE zlA3?^Mt?4;&Iz+Dgq3ZQMtcoMeCV4=hv^cM$D=l3yGte1+py0qUkh`3YLPdyGTWo( zLH%G;U9=&iby3oZMQT%MnIR-WZrZn4U#^g=*t;r>6g%JL$w*5iG}?_Hy#PK0m(Uok zKr``Zi?75(+=}?p>DJPz)$-=dp5j8GBV7G9aQ3Vj)d68%8w!RRBc5thTNew4=1bkp zMKm`?(-Dgh9SYK$nAuE^ukFp!8`ld*dOs^w)|^Jf+GHjcNx|#EI`mIB$}p%+r(-_W zxn9MAJOpy7>OK+GSTh1zMD&S0!4??-tBg4;6p4f>% zW$%BK@iOb}KwWEZjREB}<}TG;=xEcV<^lGm+W3cuQkTb|rEhrg$*duYPi|~%@lA=Q zLk@aw3RHc;I%%nK{3sb)@ny!rW$*^;WblyZBvDN3&|rcg3ulrlnPJ5tB^gB#FA8sx z7_wEdd^fo54%Cx^8H2!E1`4 zgcONjG!>(8ESPM53%sb=$7^Tt7nl@n3`za<(`|00N}B;mxI289xlAZ1w2lEs9K{3Q04 zU=pJl#G_4e1S;7eK(;!^6_Uv&U?k0?D0>7;41!vM$dml1vPiu#O){+kPFRZqUofR5 zJ6lHQi{7;$WJ!R4|=JRLEofC@-4MNIa%J&P2i1H(G+3 zu#Nl%;}9dVEyp$T>6%PB(?q5PELeo_0w)v<6TQF@Uo;2j6Gyk9qaN*DexR~1T5LU!Rs8%jDMraBpBcY(i8oto2i$v;iV0Jw>z~yz3Mj9(m z%6}b_RYMY=ZzpiGRWW@3P4cD4km zf`qiF!K1mr$s`-xkVqhkWLUTveKRS+bo(XKYMB-;^o4?Tur9U&CW5$JKr%&Q*2c4V zx|s!D6HXHYM_vL4sUFWBBcJr zAR_ZIKGL0>ktR(Ep-4QXrt_S!SbCirkpG5oqb3wBX6MUoN=WGN;83EGMnP13dO#k) zm|vh(V+3Boji?okunLZ~tx*Fm)CeolbNH4NW&Y=xqaYyF=x9R2)257BxseN@#tdqc z!gRgdB&DMbB4!lP&m6-;QsXofO`{Mgh`0zv7cgQ%v0#+G#NsW7wG;`lV6z-ONxa}9 zsc{jMc;a;2dhkZssguhQ6?p=I;w~3DGG?hU23O0?&I;A%*fHsPQx!vit>6$%K%^2#%tdDU~B3fJyO!6fh9k^|WR4(aQ+Q0^3Nd)=lrJJ> zR30p9K0RjHMKzijj##dG2Dt+DZZ3vEI08#3N}~W56-MBiGzs8|JX(Pn1}IkaH$mkz ztqMKiq~Lb7e6jR5XKnagoYJHT39k` zksy<6n2#r_US@C{4BAGLXez{-K&dI0h8V&XfGG4plqG_O5Dy8X9kg-#QzR6e1=c0e z1y0hiTL=$_9n<*n(Dz`MFybT3IG2+^SHW+RxMh7}-RCgFsZ<;Z5SEk)JD5o2!Che+ zI=BrCKRh*z!6U}UZ^qGp2_xyK2nCl~U@?fFM1J8I2$31~_aP`qVI1IygWzj%qtwZ; z$t+wjK_RU7gP%-C15WGH0BIOo;E}hK2#84 zlC*eMkrFJCWQMgO11-o#AG!`>7#H1EA=?_1VMiJZ_SR^KJwGv}C2LA#V4>sS#^8lW zi?!U{gC}IGTs)ekR<+ehQq9YBaXzAu&!sS=ND2$JS_&T*V4Bh(JP|XqrmWkXt+{T@vtTdidJs* zESs2K2(sy{j;sfpjKokqh7e7Z%;RA>dSdyi93pu=T@uBl#ehAZW#aqw$9)!Nd%&oNN!`!Vt=2(P>kH>#shE608^OiS)*XSXfQI!PDw~MKJ_sG zX#z_S(L&-%i9&$IhLWY6;4*{aN*SzAX5hej&HNbf^Qo-H8owE)3GW0YrNs)1DiKjns3aKuRsOzaA<7Qzl=%z__< za(MKgj5BmNUPdxSmSk~3L!;W#5S7$xkT`FMHc03qc*Fr5kHOTVAO`>%B-a~Qc*+sm z;RysCPAzP0>N(oPu@8I)y#^QE1ef;XT4}njK}*jDu|R_pW}c?7179|%M{!h~VGxT2 z@iA>su{w_CYR-fjqC4|-og86di%VQJAt`Z%E1)bfH8nHkswyU46@$NUSQX$Z)h4+n0x^QQvx)@Fp-;PQP4mqH?%fk*OVw??NX1^#9ScH*bCVvvnLBN z#UQp2I4oe?~DVDadeOj zkKTYq+%;w+$`Tc!dE-cbX=EAFD86gVpw`Ki3W2Ax?5gO)(fG2r;ej3tYRjOd8Ue+m zWHj|PwjyxDz9=&|XKyf*X);M`B^6Z(v@9(VXeTpvOumU8On6i-)3ioHln#&*im$;B zCu-Wk6HDP?^*2AG>6|r5qa2%a@I?wdSEoe=YCB9ZVTmU^rXFx+A5LtB$AC1S4R?ZY zfHKoFume&vEln~S*HH&~5&+S-43~IuSk7R`Zmal|7AJUaW-Xr-;slNP%oYNLtxlj2 z)Z!r?930~(Jk1$+HrYmzQ9jJBqAF88a+tICg z<8ounY4ak@boV@`jvsU9Jk99y=zQ_ZJQ-4Or5?}II&>c03=Qz25Dag=Z$8sI22IB| zUqcTkfy4a7NSm((@O(O)pTMz`-k|dx^Q8dKhlc!E(NjuI!(pDrYmWNn$C*s#$D;@( z_5uZk(-yv15Zjwv>PA3G%foBM0cWPA1Wue5gEOo2G^#10%L1DDw9OvJl|qFJ->T$- zAP%AiCnf2QDsFjEwpr3!6_H@Qo*6K>Fqc-1leJDB9l!tG4H~i*cX^nWOApg5!8?b8=izAjG!40MON9+-igXIm_~}FKng`H z6Bkytrj2D<#NM%16sDA~3G;*ImnLQj1}8P(vb}`|QaCZ3dGu0~dZr1PNgc=z^^8`A z;#Pc2R=B2!;!9I)3ToBggg|vYMlS(bWbxb@lUl12O0t|&R#t;J!pWMg;YX4{L3o@b ziVL1Npb1NK6RHAx3Y4UG;VC?Tv&vA9;scx22KxrIDH0YO>;*yGm=*+h%Ai9%c!(}K z5WsI*#K!S5J+*ghf!d{9$gZo5pPx;!A4z(6GIIn9f(G;=%@fwpA|GY zt;MteYoREzs$tOoeNfyDCQ7w1yHCN!d6hqqqQ%6lP zI}NUYB;yQM{1lvq9AfPw4Fu0XAn2uPOCMI|1yNiXaGG?;fq3@Z}H$jf54WoCGoi&rH&BdYrv_JJ8^ZGeB_= z6^M>74jPk{iy*KNs__UKJ^062{Gl?VI|-@)7 z`o$e_WZcmjh1DmlDBn@H(qUq6JRz%DhOx8SwNf#qXyxG~wfOd-kJ^%!ty7zO@r7t6ty6P&Ha}|r-p6!K z_GZ~zoR(Gut$dy!xspc4`j1_|_S8iB_dLWvocy-0>JdCm6bb2Wav6k)Mq9)u8e7@sf;b6OdSas? zYaq&s7$p(KtcTm6Uqle3IpU~snmlBDmpv~LMH9qQkXC~<72_^k2-TQI5wdt@48n(x z!Bh4FJm~}p%@}g2gc(9H4%!C}<hz8!>`|+D99`X)7U>R0PBtt0o{JZCvr7vB`?x_Pp`M`FQGK`L;2S&p8VP?JOAE zw!#aY)Ldp2r5W~^Ws&6;v`)a>WmHJ&d^AcX_|aS~EW{@mRWb(2(RLs~mL-;K1DP;l z(~3FuN~LEFv=%->l0S6l!NsB^M&8q>c+r zMCu(bYcL(lg~1iH^SAQFt#~?;fM?sO^tR|uXPc16m!^)VQJG{b*TAwW1ldS~v737| znILO(xyIG_S}i6qw?J7u*DTJ13?+D4R3ItDa(GN2Nk*<30DobJ#*^xRXA%fsCQ0uk zGCmSqMP=)1?Mi7{gyo~>r_wL_JRNZppdK$d*Gs3BnHj$|WqBu$Ri z>8A}r?6s-`c?;%I#ysX)2^m;IQ>+--Ts1`}^l^lY!{)AB&Bm~`v@F=xEC5W_^O@f< zh{&;37_5pKjVo?26*9>VtU$`TrxQ0g;F5{!TtJeO-Mm^rW&9+r@oZ_A3ZmMk#4;&l zw~{#|5|`(?X+5frl%{_iH3WgGoNOkb-{3o#-SEW-xOSX8C4np>mbn0AH`E?Y4@{v~ zE7V9o%ab%p>F|gkV1~pppW=b3N@V8&LC#(TmK$8Ha` zBVtW$g<(Ka!cFgVNWaBn;eczl0DRE_>w_HCro}9Z0wk2x5YKXJ`sW!~jVKBrBm06} zMavwAt3)Sbwssyw??!ge6q{sL;9P0F_%PL|gZw(8K%8VrD#~gJSKG=M>NNY}DPA%I z*Xlzl*4&T+pn$MuH&-wif4HW)GGSySl~bs~srmL~Yfl1j#C%PAxMZKNote~p$xznJ z^ckx~94%IHZCIylj>3h1aSc7}Ts%9{WAK0=drHa-mmFFbNYEsElNQam+QCg>4Wu=3 zspz;=z%mvBYXO^b6h>ncNgdlr)cH-G(N$9DXE@euEM-y413HRxci(vsnbGE@5x{AX zL-H4XW#YnBc@Ey-i1TFZ!Vyl`NGM=aA+Fgi@LBdU0ikv3Xpz=T_~Hzd6?+yCv}JJ& zDu%fdfCSVwR0%m+@vwtst}M4E$`I=KLd^srt}^L(46aUt;2B3SYq7pCrex010TC@X z>^u*v90^OjaFnSDUu5J2y~SauRzN6Xssnmjz|+>6v`ptb(|jhgh=XUG$Lny4w~9HM zO1s%r)lNFT2+GlTr5i7^6yPL;Kr-S5K530c`4iQ7F~JO|m{(=NA_8ugYx13Ci4f1Y zYCOKQIXsENl=q$pKJ_xWi<>Ddx@It>$h8B&oamCJF@+T6hthlyD(@lTRnlAOuTb(Fkuo4*F+W=39DAHgdL4 z6hVGm4gxrMEm0pGNfo$25jP_Jq(NsOw5Bx2*gw3PabF~3lOT4`UYepq4XjiB|vc55zx|3AlYQFVsH)tm33IT$g@po zz1^d185kM2NoSYvg=tb!E3H!#X;e?maP0I1gCL^+0k_wk1 z&DQE>sL~3-KrhokRrE3H9{UbJlz_p5F7jogz|{%^A8KYW1f$*IY3m|`0a$7_+L)=C z_&O(wmzF~*=$?t&h8N}$WMPJrb<(*q*l-n0nB~hmt4|OMJz!Z9;b>H6*i``*+d{;o z&|)bg-GHuS1~5&1L6Bu++J~1xC@#Rj8^P5yfg6J=cu<35z4~bfZvjVFleq3d6AqWD zv^F9aaJo@VrY9FrElPvT23iQdQKRJonJ$GM z@43j(j1NbWn?dB@LU!a6M}fw38<){0B`mj5N&1`7YDH;IVVR;@@64OkF#g1+!zvRb+fn{Cm{z})Qt33 zETlvfYWD_D9fhZMRI?f4K+I9m+VyO=LHrw_At{$Z!;tG;v z6^@XR#)X5Brf$g{991m?aI+RgIF!(SMYBA`BKdG+9>FuDwWR>-%hHZ#&w}CZ<2F0k z*P5l+gn)}{~+fSsi3Fl_=?HEYN>v)ZB(mMa==%_d85MJ1aJTV?iX)r8T?xB|0Q zC!-$|B`#1FvcVn1WkYKr0^Y}6KR#VwrCV%zdbTdoJJ3GgU6Xu1E|}_hsniW`>2&>_ zZhFZLB?>QIa*~(6?E!_i^lU8|MfB4HeTxN6ae}{(9{4NHPVQ;dJ4_pI-QyK{_v~2d)_;Kch7_T^!(rm*VnUtMSFyE@j3skzmuNJ_j&&Bsl(5mtNIQ0eudAu zxc{eq4pwmi{C^bIjg2V@>W7KHLI<60ReG4CaEGpz(T%-a~qpB3^k-7>>ldDfZXKz(l*cwBDc zz3Ak=(Tf<+0X7stYO_ln>U&?@a#7?BahsA@XgGQw`|N!EtUyu`s~_u{`=)=OF;eNh z*KF?^@|sP&Zw~ieIQQL01FY?B1MN1?+(tuYBzr>H zOFj)dmqfiywKfErx!lJ3R3tO%_tHtDRj(}emSK@u>t0ymmhPo7Myz<+E1D|@)lD$u zyQH`HUJL%i^zjIh18CSIN9s*QBXf?5xqhY0-e@dX^tMY_@wV+M=?7#qSuj<>^AxX%n&D`UB^b-YvSZpKHarY$@t5^Vz28Jbc{Rd9_|##-h4Ja z0TQ!ffTc*^YV-MO%tTQDCBV#QbB2qc;OPQ|J?0DJ0g)$fesGvtF0k9S$z~)=pi%kjrN$ zBe}?folLvCXHPiH_bh?n$Xtd!;D`U_q0$W^8eX1AAR2E;{ zLNFs92{3Qz_(8zS!V--sSr)_A0IMPvZu;}`|2;O-yoJFi?OidXS2n#V-MxXR;CcY| z<5FWn!O?o{#l0jUk~%4bS<(LNVgdHt#-wB9%H{Pg6v*e|6B$P6+UC?{mw42^ERYT* zaub3l^mGmPvU zDFCtv{EtBY-S+3irjvB2D?@`lymAh2zbNVw!_s`*p zLb3zhx-syN(5sM7HEHbGpWr-t>}MbudG^Y8{{Xz=J;8C`7y7DQD#Yy`V-Fls!BEkg z``k`(;E?=%7T8=|u0C)GBiy@C=JbG!W4#0uERcCU#?yMKz%x{23~o%w5m^g@|6$qRZgGHMK}Sj z`kYlhv#NAzd7yH7%?w-by4QmQM!0u$U>zUjE@dO(QMT4a$a@d2b~!455rWA%g#aHJ zIKQ-NPWkM>h_glo^8eZ6suv<7bVui?!13%~9zQa0V&JTipS_#JT}@w5Q9i4jWlUgl z;4B*`e-mH5Q`!(1VW^@hWg>mi(86;zcl=GQ`P&WI^M;gwi$$IeLMBkkr8d3o4V=kB zYA=n;)o0ig!gWz~0fTS8eRF1(mDZHI^mj=x8wsW-yKzPNMir>P7Iafx#j-cTt=5hsc6=0&-3k#2Q?KOXgZZUHB>rsa+Ux{0T@?lS}TH0`^$9SRwUh z8_`v^Aog>_*GRIJF$Shwly6<2boSIyfdVcf9H^?Su7pAVN%ZJ@-PHfd)Zl9j`OBmF z-ehGWU5q3q;_siqM|-)0%O##Co%1t~c;0(>=|jmvd?qSsY+nsT|?L&3?Ud?{7+mvoSXWM2rBdQ6!IUXiEj$``U=f_rO16 z9C-3He;?cb$r9wBL62U!um?#BN49Bu|M$s-Qk^b{gmr&kuVBcNDbJQU`8;*Toar?q zP8j(=nAY>aTsG|0zP-7*a0dVUDSbr2WL^0`n!-)|<>sN$vaM^qAww`m?>usW5w0N| zBT{di1XIe@h;kdwp1=FvU;X9vUsv3A#sg1$?Ya%)OH18aKHuG={ND}wdxji*_+ei> zcHco>)-UxOdEim|4L+jhkS`o}^r4))7%+7IV-7fIpMm||41Xv6^2EYq>%^7`4fQ9d z7lfOOQ>V;}pE_=SV<M92{nWAtU+j9M=8Bt6{*TpPnfy-G zclV$2@t>v-KIzBxBc3bz?Se~wQrWb8e2oPYYa z4lbS1@Rv8gx8w20w*CI~)W7{#`pa+p^3*n9NJ@Y1_Ye`IkmM)b9Lu-9bM; za^=yVo`2@KYo2Hg{QKrryIUT;_`Ty^xbu`{`>q}Pn?r_Pbo}DCYUiG}=s%D8!#M|z zer@58zVq;{TW{NPM)j{wc>k_--SbQ?q`3oVEr`@U-j`t)3*Kcsh|A%);p4`{(IMVzB>M_5C1&wr>||leAC#& z2d@3fpN{;uLI1w*A&Xz`KK{3v{n|!-@#y%)x6L}^nct0kWz3S<8+~sFKK;!l^B!3_ z@tmp)AK$R`=buciK4oe7NBtMgob;nR&%3?khHw91!u$8%{rs?@J?}p8=mCemRr|fN zBOd(O*C&TBJ1RBz>KT9e@(DLCJNum#hrRf<{Wotp`Sc-``xITe`pN&Q`_^|~ZGB_i zX-yqZPyf%@`R~0MS@^5L_qGf_>6ric{hI6x>Eq7*4$&adGo>1=dQo$mSexs_1K&dFJ1TJ_5&YyeM)2L_ecBhs=4nA%hv7gSI?&NnHznl5p$nRf$@V}1+%b@pSel7eG{2KYq<#!>!nfxjg z-phFVSKR*|x|Bfw3H*xrjo=sH_kSzxkEHEG`3>gh+g5OMj zbNS`6l}?$8nQ&S~C~@x(ELQ-69-&!-c6dM4qI;&%+c1Ncp!)YJ3o89hBk_=oWu z$nQPExw_?l`Bx*Jy?M+xr#u?j`ju~$op$+{GpgTu{F7CGxPNo|)j!?*hpq{KsCf61 z)#pzNfdinP~Pygwv1LipGSL{e%wlevffBV82yMOcI;!_V|SS<_Der$gTg?{O2DZP?YI^;ziD=uF-9; z{zv@hOVZ~&^-1X;|MH)AUHXUF2e&=H?4t$0c&YxKS?8U3^U#xjKe}nn*gMY}_Q}ob zjvsK>s|RgexpvV-53Ii7&dKlYzh%wvpAGrWv~T_FY3G^&Th0ru-zO12Xh_4zk%xUc z=83bH4*Bonzxwc3FP$*#=#$<);lYbPZ5mbm((k_egF_FTF#E;Oub0=PhD7fCZS$o2 zhRj>=`mf%ecGAPEuRi0{YYtmFD*5g3fbCU3&OY#ye#KMnKezsicYf=8J2xbjpS!wv zWz9afpBGzuhVKW$0=V%v`oYgxDCt%>0;4(`A9 zx)H~QzVdO;${V}>c+HF5v6*)q-n!jAG%i;4Hdcj7tmn|MupCLR-iiMPa8 z;wkZycu9OD9uohEcf>d18S#sFMSLP25r2p`#24ZT@q>6ld>|fB|EurS@9J~)xB6QB ztUgx%s&Cb=>QnWn`cnOPVGxeAHO8ulhQvaxL)Gz82^@sXG{h&S&{r?%` zzu(aV&e*xX&-ZnX7$5V%uAZ_3e7;-P?&^u*-;aM7{!iEK>RE!n?2%nPcjABg#IBw{ z<6rmmuAXrR`h0KUUx_gCi;#Dk&-{7AmEg7UrM` zh@|)@rJ_Iql|(>6w8A7Yv%1^$m&(f2Zq&6hv$C>Mvl8Zc zfA)UQFu+jVXZ_Z*e$QIZamnlK_u2ci|L?Q+K4)gC!5Xmi!$$X6FuI}9o#Zr(;7=Rf z>%mg+7s?1mUd{a1(=Ed8d@y&r46v zZvvyiS}+AX1m=M!!3r=q4F17Lu(UJg1YmRs=4oIBmq_b`v6m}f(~v-Lp}x|Jz%WxYLo{Uehu0) zxB=V+9tV$rvDY@a0|r6|qrkIZ3K*P@as|V|VlWz94K{%LMW2uQz}8oIG2*)b`2w@S z=n|9%xB(2i5dLpOyuwoSKkzIV8jbc;2LHlxv^(%Pcmxc;4e1yRe_%0~z6$Yzd8;ue z1gq~vc@2TRyKo)Mt3dsL;cL*Z!1TLOUYJeQgB4)PJ(v@U8$1C9uSGkJK{zl^crV%? zSb87g2P@X0TrWbn`%zzDJ-7~xeE|Nz@CT6&Fb@p47}p;{djL}&MtcL(!5T0R+y$0` zhrkN(IJf~ch9MtdC|ClIvVC^2X3$PwM3?2thf~9XF zoud%%UgQhhP!D@x%3DqDYB29@q!X-t7wNnV_3$3-fwkZk@HkiphQE*egB750InuQs z=>;3WG%)1@^b@ce+yKTNK)VBL!Fq8YM83g1@C?`hM&i?P>4#7+;BjysSo$H#2|W96 zJO-wN0b`MWFbu2)hlAnYq8`9la2}Wr zt`_|}jJKkL`@s$1NwDH1`qen31FQt2e}>(7lnWRImYzYs0Aqhe`3do?9(dj#vkQ;SRSu53C2b zfGNT74+eK~yU&0PV0aSTPPcm`mP6xxI-R^Z@=@6{#z`UU-mq{om&;>St)4}izU>F!a#qAyrR)DGChN&nAupX=e&w^XQ=xJ{E9xxqj087CWU^N&p74d*! z;Bhb-jGgXwr+{Z?y4~x+;4I`HECtVi8^GXc(6f<$umY?CtHJGHEm$wt=b&AIvAHOR z=}7MlunV5ece^)$(FG_k@Hluf2Zqi>x|XB7z}OWiUoaiq1s(@O(%`Qg@q?vcCb$7C2Gegtdcl-cD2J=zz8(7q zVDM_>AFRFu`2a%=eOPXqYFL(rSb7C_uvc0-goqxF|5ZC0-TmlC;NQO?QwHUK-`^VD zWp+56Aqmc~bo}p8+vxt>#7UepWR*Ft zQ{eb=tMx+@slsoHLoUPrL;q}aU*7>I9zV$y*75-BX?lX1S^J( zGq7P38#pkm7^|V3gjO$kM1uY2F;3^P&^ppY9^?JwQEcspt)*DkJ^p8GWm==!vxVWt zh=7fTx3Go__``H1I!}aIud(_~Sds(5#a75ir~}nzYg{)U~dlc{D4^@hn_$#&;lW0CcdzXUQa6b$``I{YgNe?4LDnZE zt!+zitf#KiVb6vAg6F(-qwGx)dx_qDtJ*YrO*d<{e|zy_ZzTR#!(P?DF;?JQ%94E# z9gTet<+cnxZ(NI>hdvGO#}IZG!mjt`t<@MZQQBRC&fAGj)?U&n+72Rdk`_6nAIG8t zhkV@V&Qc28U@EjcXkAfHlE%Abd{`sxyCNXo8MR8rs`5Z{tR5h|gOjRXu~~`mDTlEa zLYvaYH$mG1EmF!6V@?HXGHjI<`7RGI=X7+2#j61>(J=w%7(+4G#XI6~K3<(CIZT%t zeUc==DrWq~JK7}wx+E5bz`X><<+ea7JCc97`A2#M6TXbH&<>u}K$ zTC@(UAzIu{h`TXb*Q3PVa@yhd1n(8&oQ37KRRI;&HKz2D7~H2Cu!l9AZMwq5__fM9 zL5eoPnQ5-?=!}T>BzK}?8l1RqdMd?C@wuwTuQJ%H|GLrr8*I1E3))M$jECmDR>@A3 zB5#qoc!!zBJB)6dhhVoDduyG=E{-t#KMt)B+7J)vC>x)ccNwP#x1`d_x!g|m2aae-*MVg94ddukhbYRG`g{r zQis&#S!iX@eqmj%F;P_&(yzSZNul`@N*X!#-pUgk=0j~Hv`5%W2}1k8KIJfpAyL{h z%4?OBS9!pUooEHSk)(R3UCMhY{KmsCpbpV0;Bd9ls-VR}>*(WeE3}c&P@U?Kac2*- z;m|gTqWY3*muifNM`15VLqr~QLyU7=>5LfXajAKp9T99o_zVe;S(G^$Q=jpU1Zg0W zwkTXbg6sX|Iu6ldB~d3E-4jK?AzCW5SZJQKi6)+V%AkEB0b91$2fXby!GTH{=L|v9P1?CzhD7Ts zjDPV65{$t;;#8x%R>G@sR@I*#XP0zD4NhPUPI90uVFV*>GA5Kh1FNKWI_#{6opP~* zL$rC&La}#^slGa-3`(J8LOVwkl)(g)f%MaL(C2w{)lXAYKb31WxR&SVn%JwywL;G| z+7tZ<^rfwINz+;AWzgToxg6p69}PPaNifd=v+Qdz#JfJzxaV_#3fpDu4F7y{X8^Jl+ zLWG%${ul4K8h;ZV6PKM zcN)eCgiH2@Q}u`Wpl@E1TI5B_XF9^!f5kmg!m09Ea<^Y{9i+ zT>EeHa2Vn05$?aqLnz`4!;SL@!l|*`r%lH|5B}}Hs{^q&58)yauC=`~=qdlDy%gBn zj&Rusr^YJODd(A3@K(q=)HBaqgIg8GFYi1v-jSkjUS0(=TCpcLrTzaO+Dn7I__K}f z7hqf3Ts!Go(JFn3?WJ!E>}`d;XMW$_Ev@X0^Jgy!HqO9aD4rd@#C!kmuD4xQm&|?J zF3ZL{V8)2=g8qx=kGKV^L$ow#E1^}2eH^0YK{JddcQ*kJ(aN9&x6;-@3u~oqffm_H ztA!TRO4|o5)<=^u{Rp%qX#FHo)gPy-o4ed^Bn<&wWo_Ao8LgCc!a| zVMg-0Z(dTM75dl_+nLZxeKcun#n4tmv*5n_J8c8=K$+uuTWY)`0ZOuuf|aJku?zN+ z%qF)i2jmd#5VUw7Ee+anXf9|Ui6^v4f9ppz*G7-Q{avq~#;dtDMr4eA2!lI*lHL=+unJ6I?|7MYDB!xQe(0sz137+cBs_aU;}K%Seta4Z_nmc zerzWAw<$@B!2gr5yB>BErERMAAX8dYt~nQobI5obhCyprK$H72`dKAw&T?zA^Mu9R z=bcQAbu99p$E$Fu2v=`wa?gQ{cFTBb%kq={xEkRC0`aVi;eNkAnpdJbw%vKaDq8Ad zKWwdrtuB&wl-u31Mq4BMg)PR$u_!s;v2mQk+}Kh{RGWorUKE8%+Vl=h?i@)UTEk5! zsbmy0rpIbuCJEO!;kv~eC)zF7{mtWXywhdQ=%|*^zA+~|%=vA^@hWoZf16-C&EDkR zC~@ohN<{Q(Pb~`4E?hr`>$BuK_APzZX({TCjyYWX&fThC$h!;j4uhmy4!K_kbjSQ2 znz~0S`xr*i4x}GN;95GadFJym(1t@xgJv+VzUv(G4KxTnGmdjyqn4y zlcy^eHa(rz+Rvg_$QZ^wD|#6hk$)^gwmX{Kr*JN9_IKM}s(G#7TS2lz*-C}2ykI<& z=l;*{+RC*4AWPS__mz0ZNF-$gY#DfO<8jGnJL8qLNcJy~b#G3S9kK8(?}!xRosRkK zl@W^68gD_+R$Ctk8;Sp6Xc(Ki;@Kk3Wi3^1F2xA3GfB?OB;ES5amfXLvE7>7|B;*D z@0VSov&?cMvfFl7E#6^WCO6o&SJZx+)cF>~vo*ZQ{gUi0{C+&x?ko$iCdfu~TZ6Kh zmp*`$tmxoxdwfVJ&ouZ?G&NJm96P;x%L(=6ePW(%|lJ{t8hBUct ztiO9?9BT92f_wU@=6?`D+omv1x2r9%Rg8B#;{Qy$D#Vi3Z)(RnWIQd6Sh)@HR*XT;+lyOGXnZj=*7^N z;avJKTGec)ecVp<*af=|lFkkAvk!j8iywrY;j~Y8hUm4hT(8A-W4Qn85xCTV>oK@~ zEzWfucrIg~Aaj`UJ0V4g-V6Qpcl^j07zsaH;Kz4f#Qq<-SAS2&fZ%aUA6K$v(wv0Dv&RBCohss0UeWrF=~b0i72Is_ zic^}s-e&Qt%?8XfBBr*C$~szkRf+Pk`ncaV9Otl}Ro)ZD$Ye366QLrRB%(@$64f)k zBWNu4v1re7)BF9g1LbyWi1i}azZDIw?$!_#+^y)*P|adFMH+8KH^&+5-x`8~yEP<7 zG^E?(@jf}dM#N;VXq~8RDm7kI6(D4l`T)%o7{Rw@QKaF=ay~K}Dx*So{06 zTqXuk8n=dw^G1j4$K(IW^DzERXma0$bD#SsW+bcR8HL_+PHS}ojhDxu(jX;}tPL>k z_r`iX8Sn9U$2YX?_Qtmwi#5>y7(ce%2MCBm`p_oClQyw=PU(Lwi5*V44|c*hb{Xj?tbVZN?Q@9lRm9wO?c zcvo=vB)s#(HPG*-IU=UWb`-6eq3Sq~!_Q&( z$@}AbNTRdSYF*&}CgOdT8!Hh{$9qnHCJ(R|FZSBr;Zz=?VX6Z5YGyRKZ^n7cdF*2E zDr2H!t`wxf%5wDOO!G_Mi8Y4K^U$E1xBk(NVI!a) z+9Te_yuhN<==&Tl*;!>bAN4ho=rA)?uE*h$_j%$-1WkdR%B*t`kD=^7{ zktGZheJn~6^lK3=gk6oWTM@Pj=Q2k7rU6A{V((N|;Cg`&C;Ot!PHB)*m-Vm_aXsEw zlYICa=bOtK6>2@l;;%I#sMreYkNu$xyz7Q@vE{p-M=MZcq--|%&b;whPA%oVI|T?D zga6sEH4?T;#TIhFwKRgtS|SX)iztg^Ou%?5ePKPqtVEb)5~jHzaRcxl6UM}+-)Yw`V&tkDgrPLdiDc9X){Q|yVRXM65%sBSHgxr%O7c!c2s4_ z^=$&`l^C>phK)zqGYG5JgYA@+xu;cOjd!Sc%MiA97TyhHo#82~_k9|5FH-N*$Tp^L zNsm|SqgsTmoc+HS_6)*iXEo{lN%TwK_GaQG0;vkM6vZnGsIu{xH>wN|N1lhDkM%af z-h%ViZPmoq8e3_iW2Pr8_x}(sCL8a2OE?@-Z)MObpuI0b`}MXK1>igK;4KxscCSPD z=$s~ZoP<}C=Y^6~)rK2zEfd#fnz+`gKd5(Yusq_}BkxUp;{RTksK&{t0hq7PZE`P> zcv{u5XU;HRC(^qT9V^|mMZHZ@dkV#{wFS0(=hO0T`6g&qv5!N>(+$w7T4^=VHna*W z@1d`6r5%E{u9bEiS|zlODh3^gF%absO_maJ$h|ofn%FC{!O^PRn%_6$n2me$CH|M1 z>OLuBNjB{5$!pTjR-5g$dgp0^e)l935Bo>@U$>^hRt;=5z}DJ;KasX7(`xbmK9;)Y z!h$O2fGCW43!B`7qz_UHgO?W z+5V=OViQLa{_jUTdk{~8x8Ju~zhlE~RbaA|(+n&;%iD=Y*^0OT_tjguSKQooTh*IN zbG)<0V*UtYZKtVt?1XgX!PdSN*vDj<{qCH%&SFiH0SWhP+;4r`0(RPTUDd)~%u0M7 zLGprK5 zuab9g@XppIJ(zjhBz9(WI^q#N>Go#35?30ucxYnZNOy*0pl?Luv=Dk8^eoX)o)vPR z_Pom#=e>8R{wZyy3jV9%|EWMY{LLTL7_Q!Z#ruO6>kaq1=gd-~<_fifa^YGu zuGQgMnYUjhwzuB3&NbV#TQ%ks!p7Nqo7_*po*XIozY^N|`kGGX2Zr7*idtatC1IY$A+WolV!LTydL)+v7hP;na+F2dgzhR z`-_ePL$y&2%>`|q2&lz!6H9bybTWU&Ylu#4b=c|m5d5x$-!dP+h4OGu{K`b#$8W$; z?3csuPOsl&8OpY3&+*8M_AF_Lf!|VmR_l+_AY(u}{MNzmwPN=gXDW8kRi2BX+wnQA za?$5I3-NNUUHr@E%*vn_iJpV3;k8ZCH$gw<(XYXx4m&Z@2Wp|GKGNjI5TOo9-#%!0 z&;Bz}IY~T@%lpUUj`j(vweoNtZ zbql|ED%i?z60XbVW-qk^=l?XVU4DBB12h9{|-*XynQxE6(L z??{@|7>jud-@`*!x~AnYp!=ZxB0NV!m@mD3yLm6G)m%BzS!J~@l}^+4M(3ULrNLhI zg`J!KI=p)0Cg-x)vbYqh{-LhH3&CO!l|`E z0p8c#X+*$z2G@?@8o+BQc)`s+$&re?1f)Xz55E|Ho@jEHv>cZ(3VENirJDKZ`YlIo zv!IovcFUr$6!jUr@Y-^VU~*HJI4con@TMmBzx~9?b%x7)tySO&4q0}!u!o1)D4AA~ z%3HH7mys&YfMF=#C$aXBIB}2lfB(mB3WkrE4&|M?d`M^h;45M(w6 znf3EhEi&w9l``I8-tU=Z#N);379X)u`7T6*PJinET)y*=?<0uw4C1_teY?H-O;t}J zW6;cem)dAtXg4wVzyg|%ck(yUf$^}l*NG0b-!uIZjGs?)+;21fR0U-F4nUZkN?%=# zF!2Z@k9_sGtw%Juwh7mg+PPMTYbk!Ng&VA`qoBMc&Jf(|)l*#LLa=leqsJm>HZ(+na zBpvek;k0L(yzj+gNK)@$R71~%ewEl#apCoPyd)`a7nVY*$Mq^)|K@ks?dtO@$@nOY z^(6~F6muOu95Wdl3&p(GZ>vtgiwuX%>)|nppQ6E&wL_SE95%0{pz1K?Qp_L!+T=zN zGkry>oTR_c!?oeKmM(4ZN*QA?2X6CD3La@$threB#3ZzAgm{2}S3X*|H>k5bqIc6# zFLNUhO#|YLc!B9rPww&V32qZp@JGgYsUO*di-n&K9B+O1k7e4q5!K^;QyllB=?F3$ zVZydHx&O*A_n3Ht*Z*@LWXLtyxyOZ%9^u1WbuM$S-y7Wo_3n^-zPk*cCpToRgZfpU z7fij!dUwDYTSXui^(B^$_())a!+N(mkq;V$!|N`DOWJ{V9dNGOh1?F%2;r3U9>MkX zxPH_-?x}gZT6ZV6{><6ovJmSaS$MYHgTd%_lV^03`AjSpOEE7uxtCkvXm_5?wQ-^K zVwp0uUCxekVA*1YEmduS?4;Wgkg^lyaA_SR>+b07I+z}9DyPM#+%3rIKetQ!3x4`}zUi;1My*VG82c@>V4X5hQH5%peZgcyM zfz9dAlAt}$w(9$A0Uv6$UWVbNc~Bkih(egv2(#{lh=ndN)9XSAA@#ygg93{zu_*jFau| zVR`n`E!K-=_=OF>pXb7~`b}K+H#%FL7SHgk`cVVoEj!5f2Gr-Vn)~sMSnYT}&NERy z&Vx+IA`1IJQWjxjP|gVZ1sqhi2p5FL0UfqpVx*7pU<>zDuU~vnKcLVq4GsWd0+ygF7APKWHT}xV#m9 z55ccz{BHTII>vm^cX-8^DPfL@{m=2fr`X3m#dn@7k?isfgLRzbCwv_4Pe+>E2N}k1 zex7cXA9Rc;_)kOF{Rpc*OW!=6W0qo_g=%Gn#;UP@CH(F=+T=bh?W(2Ugl50v)!L{A zem5LzxnC;r?SZ}(da>BR-uEgjYSjF(%wj(29lggoq%2Otul?&L_k%c>wTQp>#qr7s zHf;1~Bc(maclHz`jOW>jw1-$|h0qp?ook#Cm;hpmdX>{Y%^9&2l6=3K*I71p8i@C6@EIFhe0}?PFgr@rS1ZT)>pMEW4Xe6#5 z!}V9JaH#p1T0i0O37@+*-wP9+do0#Ft^TS}kH>|um5$#Uu*l*}*~0rCcUzUMDc-dh z=K||HSTUvd(*46SQN{#!B165sm-bp+$CeyZf2~8Wl{#GbyBb_HO_l)L}A z7q+7;)*VP$>)EgEcPT_XJ9Y1FTS&i z?Z-D=Xv=(GOx~Te?nG2@bG|M$pu zEVR2S!2zbrdcJFXFX_)fG8xc#Qn$wuHWgw2#9S4h zRWYsaN?O`J<56`YWf(gV^8IC|e4kryoEsQ_ zWh_8bHa0-7guYUAe|=VF)TVr>(6>FuV}Bo@OISoeR}+7DYx{Mb@sSG>G&g4%0g zD_Om-6^X(NyRhY$G!j}UG&O#~=5+i|fffO+mi_N{$B9B~h5sh%{jMx|Ra%w9CfHq# z@45SmY5!fjb$0V#{%VbBJONwLgWc}V?e(MPdzst|ik(SG&eRNNQk>Hz+gNQ|17_oq zlFlnJp2O}ll18=fBG0Dp($7Kl<8amQ3gIsg-_^IC@%#2Ww0Up8L-U)6@@d^>Ff-L< zvK@AI;k*5QllasgfWQ4@)j;aoc3*j>%@>yuJOKaYJ|js=oTPTw4H*`s%l^OP|Lzi~ z`bDQdlRVZ*YSu9R{+6!Y5T|y(Nq5TYT0b#eGvX>uSE}afbG3hID{}l8sOfPxwQ_gr z(DHhpR_>v#+_7{A>tMK{>yu7&SMSj2=s|bLUvzqU(Jl8KIeKasVZ1K)DmgsYPjQ+r z-=`*rXTBw$$CrcIFplwhM=cxAGkwwz<&brQ9J0jmJs8Y5_Lx4?sm4ASGbZD{95iQ~ ztDVMnH9>3E<#T3oc+y?AOS^+Kyz&3$*2@-;*Cx8tSP=N}F14(YzAncJx?@<7ztG*^ z6Os1z|J%RwSg)-UID+jZft*3kAxp?r5Ii%e~=pIg9M#hmzOWe1|+penK80zb1bqe<3aJ>v-*CXR`x9NFCvGtTrQ>i3UVAdfgJXkPXA=OuOhD{Gs(GR0a-#m{;dwboAtkp`YLh_S^bUn zcR$@5$W7$a@fho&Mo; zk0Rs9L~=4YoxGZyP0l0p$wlN%zRK$eiDG@-gx$@>%i)@+Gp4 ze1ly6lg{@$bnhoWBoC8clHZZ1$g`x$aVU`NOoo!Z$iCzNatJw`yo`(^6Uf_{&WUuV zk~2L#q4SYW_iQqkEFeqBQnH-9lf0LFnA}KiCZ8q$Ms6oxAzvr=lJAiF$&bj-$gjw6 z$y4NSWWa|yUk>tfjt5=o?n(9`2a-d`OUPI2gS+dn%bmW{}zB4P*hin7o<1mAsv-Anzp~CLbrCBA+E+c}J(` zMY?OrSIOPv+vI-oBk~)zug^Vh@(1z^X?&#Pv6CTW7}@;|eZ4Q;7myc|my<4XJefjH zA!m~5nV1JUM}!Le3zsCufuM$s+P*vYfnwTuUzC z_^^rN@_OnU$S24xlUd{q}vG`73GuN7r8m@?G}RPIPx8 zdysv|Nb&-5D0%cNZErZ;qsS}Babz+%nY@a;hRh`Ak@;jX8Tz%3=O((#$lJ*ZaxM7) z`6$`@2Oa(sj#rzhKS#buE?~d?fa}tKP=AGdoqU@-Kz>4gNuD52lfRKB=l4Nm7cz{D zAP15|$xFysau~~FEZxcER5FdsAm@_#mL~=TLEty5$KrSM0 zCdc`;le3Kl^^>;Acp=20&9@(E9 zL=GV@Aul82$OJNloJyvV8DtJQpDZAY$(zVq$gWMg{gl&vCwUJ!i~VgK-H(tP$*0KY z$rs6&$z9|JyLCMOqWc~4Ao($Qlsr!UME*+ZAK%0C?IYTrgX}_vk-f?OrmvWk3?e3slwzC^xCzDd4I9wa{| zKO?^)PmpKGM$-I3mtzOgNrsX=$p|uv96}B!FC$&#cruxsOwJ_J$ywxFvVbfhmys*U zJIK4qb>zcj6}g$LCbyC=k#*$jzZ^>U$nSMMji5W0yoL4xIPSz#pFs9!drqZ$CV3s1Mdp!3G;W>As!3 zhrFNs3;85jO};?BM7~DuCEp)d~z^3oV=Xu z$92e9y5sj~yA$c2MqWeCBIl8XiGXocP;rE`6juK z+)sW;eoB5xeoOvD{!E@FE$mOrd4CO}yEAzX*^}%`Mv)(Ky*8Nc5#;5hi>!N7=PQZs zE6FLObFaRhMt3HeL*|kT$r5rIxq`f%TtnVRe!_8JJ>8Fzo5*L#8uCT*C2}XZm)u7l zAREZf$gjx@IIsMk?vvzM(&W0S1L-8Ykv+&hhq54dVYfLk9hrQx z;C)bec$VbSHbW|BGN0@A^B6w!S%c`Lb^tRx>KGk9NllmQ{=Pchi~fo+)DR9$bXVM$$D}>*+70yensM!W7I2D z-_d=VY$5|VJ_V6Z@*0+RH@bU}eaM025b_f8a?(X6kynyek?G_*-Zy5`eFM3WOyu+0 zC3N3RmXWuUcasm0kCIQ4&yp{Y{~%u_cawX`edIy%FxLSe)7_2p>(A&uMxG!~kzX_1 zuXGz+Z*(9Buw4ez-IeS~_9dgpq2wi`!RP9u=}sV1$Z2FcnMHPI{m-Ynh`f<3BUh7a zNOz-dPq*_zq^qsU;^ zV-@$4W2lcHW66;mH(zAE#8FQqQ^*@R-x|d6WGeME(#HLV>*&rVt$ZGJ1KsoA*ZEK2 zzEUCeCFC;lHnM_TM?OMsB%db#O8$eaBi|t3CO;rQCXbL`lRuIh`Ci8_bQ|pVL1YMd zF4>#>mgN&k_l4xe-M!L($)#N?ogXE*+lVmmd0{M6H zYu5jLY&R$9&SLxcC;b)Dy~`7x?-A^!`yFx_{T-nDWAbzIEAl(?B>5|8Ii>SyC$DCI z2%-C7+CP`>aI!x+YrhUZi0+}}C1fn=`dRynqdS32CZ~`y$!p2k&eH+O=LB>m3)bOjr@i6^akB;k?)a*$iw7O@>}vGd6u-D*5%+NL&=_GUowgu zLS9UcB3@eM7EzYq^<)m2M=m5w$eYPq z$ven<$o1r-Cd&zgngXG8L=j2!959H6}Q+&?SNVoM@Z9kaoM)oB8k{6H{ zlOstNnLth=uOidQY%-TDB$trO$e+3Ia2wqfWF`3k`4{pD@@euU_x=7x_e*3Q`6l@u z`62l!`4#yC`7?QzG+7^Z(n*GrJ;*-f05X~!MqWAw`I1_=aG@*AaV$KF*%YPLyjjWlGDhm$ysC$nNKbzZzfle zKeC_QMfbhr8R`$yy_@a6itf$iv*Zip4ssXyCixC|ko<%^LViVlOa4UuLRz@LVJDsB zxnwxmj~sbGj~gpE-VdTagd9#@M!LuZauPX>Od~VMx#XvOF0+8{BJyVPR`Ny8KX0eI zf*i$uyN>RM$SU$qrvE9rpCex+YsuHhH^{fhAg1qKx<4d8A-^QQBTtiONrUAdz_ZMDhmga_{#?h$(mjrxKu#gk$P98WnNJpxH$ zzY209xsKdGK0!WB){xuCm&u*v8|2&MezJl5l>CzXo;*!9k~X(ar-KY3&n5eik>rKs zF!C~TESXGBC9Bwu(&)}4=aB{E5^@>2f?Q4BL*7q5LOxCoV!1y>_w(etAM5;Wqx)s@ zHF6L67Wp1|ko<)FoNQ!$e?#|ABRmmD3*&g41dd1QZb5IK|_PL3j7WIUNn zrjj$rr?|g#E!~OZ#$6T>6`wOZcUFGHMZ+lZhEAGth66n$(31K&nh-0L3gqYtWv~`qngqfr9 z1xD7(lq16I04vtZl_ScOjZSNSSm#K36f7-{yCc&<~XtTOID7sDy#Xn#FS#sgu29> zCXOo|l9Z+95OJh-O@^b)l<(ZIPU$=ajuj@pu+FefRbk4_VzD>9b0M(WoGD?_JKYEm zmF8%1Tz~FOxU$}SLDHSkVU|0CXJ1;rvvjd{OVn|;n5z;^Q_|cHQE`xQw&WJhsd3z_9RtK{YA;v2{;eFO#CdC zvl_9tTzpF*Dc_IcMEUM!ST`bcM-jTnAFI@UudxWy@j>UaI7hqsANa6e49V89>uoqk z6a712mG;o}8vJnu&JCG{ax*1sfj4xMbHlt!9P^dKZe~IXT%a5wW~N*z43fqbhA7}D za)_}Aa~)y{T&%7{nLo&tCBbP38e__rV+G!%yp1%ha;FHi2gnz}*d+ylH!G=Q2K?GD z5MgB}F>jSWD$8qeMP=D-SY^Ir6|Yv6y$`Nc{BaZ$ZZ-wuWKL3(o_oq^AUt{3G2gg0!#_#3#hXCd&MsM2x`>wGvnirY3vuD_

7lK9b8p*n@_ zC0GdjLgi(X3JSNruFGPdTtA|&zv8{FFFlNC1K(DO`9Lm7EgPX7k@t7SL#TY!>w9u$ zOT-_0Zm?9je0i?+={Sz-9dj&74##)8S)^O3YaxbXAk1{URbRY9E~nkO zGgGm@G$^ZhDZZjvx}kM#%}oI>Af8)0Nk*+}S1%8E8%Azd&bb57K$!mVgb2Y(1UFZo${~g{dEX zGmL2}7G--QZKondVka^brY!?Id1efJgV3;S_(Ez&%75TMX&5N~4jJOQLc3fY8eug` zU9+y;z8nJ_oR{c|+`7C&0-S^TXlKpx4!sc9po>_|%R9(S<$}J_Ma{K_DzxY>5+TYv zU_aEMs*udJsfJa`(y-W!3EgnHlVNpU=D6H3$}yqaNPJD9wX@;qYnMv_!{t(6i@s)t zq1OztjOpR=KCs7xZm~Tq@E90rI2>0vtWIRl);f&6yH5ltFc`JBFxqi|N{GX2+cwJ4 zY&#gYJ!dSwb+D7gGNGHq=IjgqLy^+XQMeS2lMp1$=yItt)3uw$>U21Cj>LO66@T9j zm&2^&Ds+gU^3XRB`RaSFjtMpEuynC>MMvu1#d5y0o5R|tS052V&c)0QMS^I;m`xOF z58qPj*|RyHxGSroW2uhmA?Xhfuw3DAAPGnsk|Iev?;OiORe-&_Ssb?JB=_;P zF8w{CW!dOb@9Py&cLNcJnC#b5oX}13;0h~M7yIixioeJqC?*}_z#hJSjAAq^8@@lX zP}+#a@|&}hKzfTbYm22%U>BUn;QuuIFU9|j`2Pz2o0dLiXMSHLoJKwVTcqikAIYE3 zqpxNdCxgG}+|Gf^D{FBgpjh8~m)6t&9Dr&0cPE8fJi5ZR`FVXbH3@ z+kyh^V{CSD+0$%2C)z^R+Ir8i1=|nUI+fc(%nL$ooq6%xiMF24+Je@K+Rdx>oY+$2G9uubP(KuK+2nypV@ zi7i}T?~(*|2z(TO5p!gq{UbyWi@P;4WG$(-^%8H%whIIj+KS*^1FgiCqnt23rtHGb;V8COo8Ha%nN_;KSWO*iH&%E>YE3i9Vhs6Von zZFVirFUp;ppOYOSa&bZNth|hzyjg`sIoU?WoZP&e{DS7(tdbmE^BH*sC|4axd`@0YaSluVVk2V#O4L9+IVHN) z72TMhHE&Tte!=3RjD?GH7Tt(~lTyxDl3P5_n;xI^OEsb1i@j-HyeLmqL(ZZ_1t=k; zM50H+cHLP=aUqeS9VDHpNLXBCwgvlbVl(H9xBiVJeJ zYCM{RTotRUsD`Y}(&H^J#)je8WN%1T+S5KQ# z9jAyP;bRA6hgW{zKSCr4T zlcAckSX!Kq@gnHorN%i=b&iv3T9;wE+{O{Eyyn#Jvc7|+j|)c zaA}rL>l?f{e+h=V!Kx~Xj0G|zO8Mztql#0N*AjG&yj%=zL$Zva^9mN^43%MZXkPKq ztih`34lbNKRD2d0xUy(yZhltY;_RHENMFW?;e+#X^A|52JU4&w(Al|v%F9q0VT+6* zLx$!TU>L*bv?wPdFL$<&b0{um-B47J|GU0gBu9Lo|t0_6; zx6`CNT@$tbl7=C>S)#{Cf#9&P9EO1Y>cvI>b`_y-7*?5_HWt#Tih4$q!x!9?>S_?V!|26f9YqZW?5W|M* zQ2D)9>l^96FZILJXHj=Sm-Lr0{SnkBD7}|)g7xCbmuwM={S$Mwed$+n$SPB%bDq}! z!yhQPlX~SMt-r+jdJ4L~@_(@%{pEJ_-RYF5qfGt9ZUgl)>V2u758YpWhqR+#3SE`wzjS&$&$lL0ucOYNcQ9mw z+@Jky`Y$`6?F`Z|mOz*EACA=NheI6;sn;?6*d|d&iN`;6kN;BW{^DKJj=mYXKIDh^MfHCeT>q38k<^;50l%mp9x*cC*n7q{xYVsupR#^ zl>J^tNUQX$ZpZ(Fv>(HUEWfcNhxAL;{yXUizhu1cQ9sdH3+Xyp#tG`FU9_IB%^0D$ zZ}=;>A<$L6dTamKKvTy^>MrW%QIDsdNxhExl^#2Nw4HOP%kI3`cTt!5gd7FXrQX9? zK4=E&SVldpm3}+zRME~i$fq3lQTKcg|0P;B{zBdJJ^krAS;l7Sp6~JZ_7T44(ertw1K~}ocB?8T}Z=l%kim4zewxzwQPJ#y@oowneiKRDTjzw`R$AyQW^h^ zCw0GwqMg1<4>9WGfiI3Y>M`_R$M)>;KNh;bdY`8J_c9_|#d}RV{_~-$c9^X5^*ZBS zO?@BrH>m%Wdeubje*pD89{<#zXL%l>UUsGS{}}zt5A3M+IZ5l|=>I(Gg_E_OP5&2D zKTLfJ^>Nfazn7$b^BULEs8>$YcIME35p~b+EqT&^Cw0&7FI`XnPeS)s&i|l)&+jsf zp#OKFOTD{T{&1?}Bl`FJPQwuDKT!AlPQz&GLAal*@|mU6?`gMvsC$0@;dc7Jl)C5l zBHo}riMr=^A&yhere2nX7>$&r+|T zUL)^5;XpG}#}m{GFW3GjQr|}1n5=bAz3-%+$p$`_{y(H%7Owq!?nlR{hg_-kN)6+b z$IdHS@QjDuu*C9LF9Vd0@_da3i1E}T*sj!%*da~VwPWWN`j24)Jj4m#L(oGo&#B{j zmf13@+OhKj?L^2MBsenJu3n>Fcb(Sdl@U1_+OhL3{kz`K{@>T$4F@(lr2SL|Xv1aH zFHkxiKDgZD|0?bOS(eYtcKolv0OGHlZ=juhu`S~*rCzvI8@`!w-`9@)ZS-Hm1p$W> z;{)m;?AP)-gB;%u_Me`^^nZAQPLHP@{_3%Fh1TEFW{iaM4I={e=;Hj7ve5}kaVgI_ z&jN+zGfe3oU(Jk%-bL2$b=p3gi7}0KDml)3(vw5|Fvq2ZH1$M`|9ss-|EaC|^*ZW> zu{wdct*E0~>2&zu75cAXKMm)#{q6Yw3LCZl>isC~lySY>hjxCTp81R}hZ)oZ@KS)3 zXNXPfJE;#)IvqY3P5+hWY5(W)+SSy{I%-|^6Xm#>x@)QyJmcPK>V>k=hhroCKSjNY z^Oo7_D%P#g`|;ctAJBiyQ`*2BUi?AnzCQJN018d=>*9UEGv0<%Z@mvWhAsn|o{wGndOxEdthGFJVKOC<0^*S1(s2%&O z+tIhsPN7@dN#OMHW$Ga(w4TLyKWxX&F)V#i6m5<#J@!ZG1P-8&Q`94#)b{V9?g;g7 zr;pMx&bJx|MtbzuwVfAeXDanN-mg95>Ku=*-uA>hZ7jE?N^g^V<1YFyi_!KmoT}q5 z(7TvDjn=w+K!cW=1|Y1e{^$olu}O()c!r~^9iNXlMgz!Gd}EU$A3dR z`YFci;zojJJsyY!m+D{TIz66z;cYXehxF9?T^hzPkN-xU(I=SJMCymxPCVo7wMzHN z5KotQ{MTwb<<#$J$NyvWzmNAjZi5*+sfUcw37kPYA5o9te0UV~lho_DPdJWx2P9a^ zp^Ovi=cxCme&Pjfe+l&w)KgonkFHlbJ^5fE{nuQf^E;E*?(*niTKDWHtoP`*>UihU ze+~82ChfnshOwKv(dvHJtDSYkXY{|X)p&bCbhESJ`CV&I79Nj~@@adVR(9Iz-S7ZT z%JVS$V-dYXQLk)OZmCLdYiBO~yIB76+*gir>U9To0eIFI_fgM`*ZNrP-FSw2*{@o^ zlll(oAsoQ^S@nfCsn^H@I~<;VeMITnkMG}~>A$K*`}f>O5(oJ&w-9VN`zy~#rQ>OzO5XiJ^C+N@13F?=AoiMBqVo;q5`TSxs@>NVWJtJjx}zU|xxFHt)7Nx1%9Mmy7~M{wO8M}1K{ zc2?4V8P_kKdGC|dGue+kRoCNurn4LMeO#Y< z=0(GlPES7QqShlm0#8$Dr>@oh$u%DP@_-(P=l;G#%^w)p2aD*x@KWvHv+uf^x=TJa zg<}W9Jg;;*d{Ebp{yy#euhOmtHnOWaza$WT(!xS01q6~4Xn|B1uf4lrX(Md!Pu9en zxa(yDqV(lj0A03A?SC``OcmD-pr$wI+Fd~oOkcJ=iYn%?z!)t*8fxKO;fTtDk4)Jfl!RR?eJZ~j@ zE42n6ApCVVizjW5he;4*cJ{jQ?T&Le@;N&%gZ~dyZdk5ifCHz7uu5}mTyZHVC*iS#7 zP&mItmoGY=l7I3Y!k3N|`9XfzTE=sSe%E!x^)$jSQZIQNV4CogcN_h_E?87}LW0ZCHy4k#p(HY1)k4Uz#nk@k1+Z@uJs5ksK?30ocKSNUXdg_ zB!rizX?eWYvERmXhVV(kw@d4VBNg}?EWh+k!*dn!yo&II<8V3QcX;{Iy8B&#%etT( zANv5ypKM!y9|ylyKKBy7tK?T)B)s=BEC2UKR`L_V&$0Yx3{CRniSgsMPvKaHzTOb* zWBHd7zO`cTQ^bD@;pb_ueZBKK!cTHM>24(33QtBpcd`8T1BUn}miR})FESqD^Zs4J z6Y@E>f%J3fRpa}0rNSXErTFSKgeOO>UB~l6!Y^_jXAn=6&r>V>qMGC3{{Azqc=Ef1 z?=UX?Lu)4a6NR%-ba{6L{BGhoM|*vOb<&D;)4#C%&Xt#F$vVsbpaTCBua#yG<{{Qmw^ou@5_%19c#`Sl%!m%&F^=6F?93uSo zIitt>b%OA7T#xv=qg8?bRTc0z5zje=OmwRRp9wgmY-sOZ?@veF8VXO?lC-fke=rf-YenuNe zt08zK@w5p~jvM}eWxH=AeCvY-zmo93CVYo>&Gpz_fbYUMoa4SZizgq^^8Rgjy+AzY z=nqq^C*LMKp&v5ODwl#$MQ=<|zuisvlL=pXqS1Mp{hC(zusy$fQ3ZUt0=`lK->iVY zS>e$CCykK%FSC~4Us3*(EPsys5sxIHUncxQ)9}25{rVx{7il+t!tzgewvEruJ8c|3 zN%%E{-(KSL{R(HH=<@0c{#+)W*|!`1ud~i&&lxY*D=fdO|2Eoa#UjD;I|3iH6F2XOq&*=HFJxl%KGK=jsvA?rzSpO@I7`(o=^A|^}yGN=cvN@CAyqs`HQz10{4G@hwzhJ z-~BV|yp{0YJyw37buW1z;S==VT>pHM@LjZ0ZP0+pPLV!e?)`f%NyR-a~lr<5qr~0?fSauTZEr4#m9c(`Q!0CN8yOe@jV2-=9|2b@Y#}ovOxHSPaFMbNZKml7ys7a z2zTq}RfKQUhz z(y8%yo({P1&&j{D`FbtO&k>#+H#+}@@RuvxsTf{!mOsY;%r#amd4uEmCj&^T7Wurh z0?)P27(ZVhswn?i;@^6*;dg#}kno9;oxKE#Mf>}kR{nLQ^XY^y(JnmN$V_Gl-{HFT z5aBJtXG`nfw<(;3qRU-g{swFCqilCk59U zDh?M9^1;T+3XZAb{BE|2!?ig5KUl}r-vA!+`k)v-ZN)8G|M-I^131mNsUvGEwyeky) zd~L7R&w)D28~s)fG|I{DT03dw=~{Lc=bi0qeFI0ZQ&g^}I15go9bj!Fh62U+@D>MN zB^Lq?&#z!S@>8u|dS(p=hFNB#*KReCL_ksw#6|7#0i1HL^|QhQIYP_>|48=$4zX?%hMshgGXQiXcD`Fq zNn;l38><-H)nt_i^&@bj)>uQT1Mmh9)2H=KnG75gU+*Fp?FyE*fQ-Df&CR4gr>ojqSzK28-XfVe$&nD6L0ftj1 zVN9LLR^G44Xm>j+t<}lhxIwy#tPjw7ZL^-?w6*03C|1_9{g~^9q)M>9t>d<~n(@H& zaBx9RyX{oy*=>E6W6<>|IIf*mZ)$3{-|X?5eZ1MdA2;=^u{JX;$To4>9-Nu=9EJ=P zl2d^tBq;$BQ-G?|C6KnWXPQ{|NIUD89b{Z+w6j{@X^dg)O)V30Z^$+eo$b|-jsuKw z3?r8G^LqEJ9}!;z3)H5k1ihV8CqPKvJu|fz4@^)U0QJz@z$yAjZv3?Q`Z{F55v>gd zJ$$iq_>Fq9hP)+^T->c9O$8EP*sRwEIJFKAXd!U`=$#@NU|3XE#tlg=_;r{L#U6u+ z(l(MWv{}^&MSZ^&Ez^KZ8=-mD=uPk4cS`0Cv>>4v;gYbV51?i)>0>U|yOMdM22IJt z7CF*lG@#MEh)Q@WvVeO|a7Kucsow`C9E%CM`36iWwAQGeYrD zu5Cak1z5$7^w9nMBGpka;pQ9pw@LCzQ$FA>tNO2{p3*i*P3NcO_?FB@%m zC#wc(){{Ic(Z@67zCfCg7^=p{l-L-!Wa)`ZD-JU`1-J|=x(zc>02^{xq5@Pc(`aGE zz0ng5R4A@+n4khsw64fqOq>W7`W{B8z||O&UN7yy+d`3MU9$j*m=b|xSdp(AgH~Jg zH6#hj$=F=PE4e{Hdv{OAAbd@7_*6BxLKuMh48*z7T!SdWM6Yag)D6J6^fuG81tCi2 z7nWxBr#Ihp?BL?UGIG46hmXx2J(M20@nD+b8*;X!hmH_<bS#0*vDz6Y z2f9)0-}3TeD$}Bl)a*@5hi(+e%;Xe=I2CB8tFEEA9EEn=(;C2lNvfU0P@_z?BN#-; zOXviA;P^`+v{_bqWCkFZi}hL~nLD(c9zd_CyCqW-JWo1!3;FT>hIRV0qcpZ6MQl8AA~b}JWMQ9(sE0B6mSaL zS!ZBlRL0jFmvIU5E`jqxGA1h<}NcxNt#(6Cv`!_5Calz18F(VIH)XS<#DrYJ=<5sg8=U1DEWRHr>S z)9!SsavdVg8iEO^p~BWdS;lUzV|u&3Vu6>bYoTBUif(&-6AKiH1|TXSD(-Aef-34x z7e>YCa><4zkg4|N0lJZmvt!UuHi$mrB#?RdY@`pUEYQe}>l`wgnJ=A08PeRa7zw2W zeVEk_az>8nfC;L1LmWLZEv-KC?z!f1kx*$imMhJXrem`Kf$Z73!uqn1vmaxpQN>uC z&`QFB;9|;XH{wCE!L)pNuIJPP^<0ew#K#wxL7YUd&^KfbEPD<{W8e#&b~3J-sV349 zA{$#+)&?Q49)|(wNxXx|+O>hMocB@-Ce*-9 z5J?+dwO3Z!T?IIo5*rQ%%^ckIQ0S-6l)RvMi_(ZjUzL7~~of=H+h;M44J&yDy)`CRGrR)fI_ z`bLNw3XgQ-v1oNxx@Bw7kc6VGyq9G~W|aXE4Zc!lrkG9Dg(&wY8WZad;wDH* zs?HwC4y>qJ)i55ZQKWRzhePiEqcIv5|HNSdC}>VBQcrs#$pTLpVdFhY@j9Uk$|lZj z7TZwi@St8{+^uICKcT8Smi5|*yn)L@Pb2f}h`hMd4FzKSy@@>vSfH?;>|hQ+*KVFpmB@eJ`x2H8+AV1=YU1US{aNkVX`n6yRQwBcDU9?gfwP^ zgPK*^B+%f?*}&NQNY+LalcggCw9qm8SrjiUpr=EV8tZ^hT(;RG!>KF&f?ul4+=Gjn zYW7#72_h$=9T>JGc^DB0m3yQXhc42h0k;{+(JUKB>1jlW2*Q$MJ$J_=TDM>nVP=uG zITgnQ%aZ|w77NsoF6eTI8ZAv*&@ub>r#S*pos~etwGm?m={Ik))0L=zQ{#c5eWS`Q z;tr}O;~!y%Vdq!Ws|pPdSN~DhhC5&+%OVX{!gPbsEhbuAHxF|79wF#bFNIs6 ze;Y81WhY7Z(C?fq z(ViIA<3|rLJZc04olD1vrER6=*4ebps3fT}DEbC)!1@EJx6q-Ek`RQtoL~yE<^Nm! zVJOGU>pn7x*ozQIUK5)ca_NVW6->sCI<6~1Zb8t(aNe>3?**~FK6YN6Er+vQ zaHduCI7&-Cql*ajNt8%pv9WIul%eYJpaczk(D%#>>sxL>jLSc79UIc6Bc%&2>~v!} zPo84T-PU!kr*x{IMNuc~6k{$#OLr$SiS_`I@5sb6ye2<-V9_O=T5cnZpIhN^Zsn}N zc^F1d)#$WV5jPnh4u=s@9tz_I;<227e}aWeJj~^R83ssfw!ki(v1(%&9>cDNEYM5L zIcR{pD#Y1TDwFL8PJ#mQD6bn>;LRAxD2ZbD z5e6(*f?X7OawZw7^n%}ShS|Mc>Md~ygI@5(MzpGlsW^=2EA7E>5V*Hm9tT$_3|5E$ zvl$=T5@6Y0o3S`ofdfwSXD13kqiZ3*aTvEFcbf_JZn})<4yXOnKmiZgOJnv)uhknT z;{|t%`cgG~!AFmOsG+E089zdp0zZvnt0{_eG?~H<=Ft1l4gFj-`TF9M?D4X$G%jnB zL3*a!N8WsFT5?WBb0IJeZMRx$g*bAd+fhleTBhUFcG(k%r%@f`Gajh4z*ii1p+t9v z8nS8&PL#e$BB}wa@B#@C+_I?$2s<%_QsTP!dd59?+jBF5q7mflH}wp^L(|T(aiKy+ zn|){0P^j}zcy}ibhD8mibE)55(t>&ep z`sN1};0b%lF;OutPpS}wH>s5M5JfU1I+O8h9zJ%qLs=X)j?_>+t6tEJ0K*muuyKln zv1M&lm|*NH!F`AY%4##@105>yU%YYU9gk@Z@7qQzF)*d9zQ&+bNyGk*hEd!i`j!v} z4YQ!qx-4;5@4m=qIgTavb(*`KCIYqzA4h`@*g6ESJ4Xx}ene0uLkZLs5MB;s2Ykao_GFD1Swx<;c(4Hs z>2L)p=KE)K-xk6U4cV4O;3}6LY*ZQlrV6)>@h+?XDwa5^`ZH*8>$Fu$1YN%|nwL}+ z4M`*^>T}^`D*de~4fTk>A(D#~IhGT7$?&J?D&GAulZrQ~j39~{3_7Il76PF*L=26| zm2G|o(-^DZMRASUtKy1+_>{JSCrt}49+JL$TcXnl!X~l5F z`cyEhkJ4E!;Vw(2=nq}?TB8)@;D`stiiRETLcv#3FEYH?C_XFR^n;wO)bK-lg;Ca$ zL;Yq!fe_ME4v5+r7Sv^;&$g`*EyOuJBitK%&NDCIfQL8)Xl)P%%Pp&>V7ZgYd~+SY zN`@=2=ylESI(V;m5-Q2ZC@=OUlg-TzklGc3 zrBA@_`f7LlCB-x8tW@A#55onFcu#Q>x0Cp(yJS)g*CZ@f3x&G+#?NGi_XqW4$XXLf z{2S?;n_s{Wt*sg&J0g;3eZLnR(lXE~m9_O&17vmw(kLMEBbJkJJrle?zP^tAcEI$2 z0^YI4t6zZISBY2neXU-Xx8nH(Z{KHrkKy!N0jsj{lQsXZE7Dpea+c9fQ6d3{g2;MY5T-Vn%nSZUkqBdv^nB!7rB>GijsU~s>Fzz>QV zSaI-HFAeW5u-svYec@5!? z?*+mT`1p0}Q}*54_xj%d*W zePIuwKeT@x1(4T0H^#Mx^Y75l;3n2T{yU3)o$!LZmfOD{@Wr~Du5{}6Sh|K5K1eJs{Lf@kq(BL0H=OHf&O-|PGDc&xF$p9^*Q zaJrq3|6FiH_3!vg!*s_V+qK-j*Y~TWqloK2$odbm{!(ecy`EnsT~%D)^X1G^fp5)$ zxaczx-OKG$QCV<#|2>b#`7aq{Coq;(oUlvyFL`FA{iy)48?TRaYK4!Km5*N~|AF7z z6Z`*lwqM3uF1xRy{^P%F^nb?(ipb0LB~42iCPn}IYgXUS^|Sg&*` [limit] [kinds] + * limit defaults to 500, kinds defaults to "0,1,3,6,10000,10002,30023" + */ + +#define _GNU_SOURCE +#include +#include +#include +#include +#include + +#include "nostr_core.h" +#include "cjson/cJSON.h" + +typedef struct { + int event_count; + int got_eose; + int got_timeout; + int got_error; + char last_status[256]; + time_t start; +} test_ctx_t; + +static void test_callback(const char* relay_url, const char* status, + const char* event_id, int events_received, + int total_relays, int completed_relays, + void* user_data) { + (void)relay_url; (void)event_id; (void)total_relays; (void)completed_relays; + test_ctx_t* ctx = (test_ctx_t*)user_data; + if (!ctx || !status) return; + + double elapsed = difftime(time(NULL), ctx->start); + + /* Track all status types */ + if (strcmp(status, "event_found") == 0) { + ctx->event_count = events_received; + if (ctx->event_count % 50 == 0) { + printf(" [%5.0fs] %d events received\n", elapsed, ctx->event_count); + } + } else if (strcmp(status, "eose") == 0) { + ctx->got_eose = 1; + ctx->event_count = events_received; + printf(" [%5.0fs] EOSE received! events=%d\n", elapsed, ctx->event_count); + } else if (strcmp(status, "timeout") == 0) { + ctx->got_timeout = 1; + ctx->event_count = events_received; + printf(" [%5.0fs] TIMEOUT (relay timed out) events=%d\n", elapsed, ctx->event_count); + } else if (strcmp(status, "error") == 0) { + ctx->got_error = 1; + printf(" [%5.0fs] ERROR from relay\n", elapsed); + } else if (strcmp(status, "all_complete") == 0) { + printf(" [%5.0fs] all_complete (synthetic) events=%d\n", elapsed, events_received); + } else if (strcmp(status, "connecting") == 0) { + printf(" [%5.0fs] connecting...\n", elapsed); + } else if (strcmp(status, "subscribed") == 0) { + printf(" [%5.0fs] subscribed, REQ sent\n", elapsed); + } else { + printf(" [%5.0fs] status='%s' events=%d\n", elapsed, status, events_received); + } + + snprintf(ctx->last_status, sizeof(ctx->last_status), "%s", status); +} + +int main(int argc, char* argv[]) { + if (argc < 3) { + fprintf(stderr, "Usage: %s [limit] [kinds_csv]\n", argv[0]); + fprintf(stderr, "Example: %s wss://laantungir.net/relay 1ec454734dcbf6fe54901ce25c0c7c6bca5edd89443416761fadc321d38df139 500\n", argv[0]); + return 1; + } + + const char* relay_url = argv[1]; + const char* pubkey = argv[2]; + int limit = (argc >= 4) ? atoi(argv[3]) : 500; + const char* kinds_csv = (argc >= 5) ? argv[4] : "0,1,3,6,10000,10002,30023"; + + printf("=== nostr_core_lib WebSocket Client Test ===\n"); + printf("Relay: %s\n", relay_url); + printf("Pubkey: %s\n", pubkey); + printf("Limit: %d\n", limit); + printf("Kinds: %s\n", kinds_csv); + printf("Timeout: 30s\n\n"); + + /* Build the filter JSON */ + cJSON* filter = cJSON_CreateObject(); + cJSON* authors = cJSON_CreateArray(); + cJSON_AddItemToArray(authors, cJSON_CreateString(pubkey)); + cJSON_AddItemToObject(filter, "authors", authors); + + /* Parse kinds CSV */ + cJSON* kinds = cJSON_CreateArray(); + char kinds_buf[256]; + strncpy(kinds_buf, kinds_csv, sizeof(kinds_buf) - 1); + kinds_buf[sizeof(kinds_buf) - 1] = '\0'; + char* tok = strtok(kinds_buf, ","); + while (tok) { + cJSON_AddItemToArray(kinds, cJSON_CreateNumber((double)atoi(tok))); + tok = strtok(NULL, ","); + } + cJSON_AddItemToObject(filter, "kinds", kinds); + cJSON_AddItemToObject(filter, "limit", cJSON_CreateNumber((double)limit)); + + /* Use until=now to mimic backfill first query */ + long now = (long)time(NULL); + cJSON_AddItemToObject(filter, "until", cJSON_CreateNumber((double)now)); + printf("Until: %ld (now)\n\n", now); + + const char* one_relay = relay_url; + int result_count = 0; + test_ctx_t ctx = {0}; + ctx.start = time(NULL); + + printf("Calling synchronous_query_relays_with_progress...\n\n"); + + cJSON** events = synchronous_query_relays_with_progress( + &one_relay, 1, filter, RELAY_QUERY_ALL_RESULTS, + &result_count, 30, /* 30s timeout */ + test_callback, &ctx, + 0, NULL /* no NIP-42 */); + + double total_elapsed = difftime(time(NULL), ctx.start); + + printf("\n=== RESULTS ===\n"); + printf("Total elapsed: %.0fs\n", total_elapsed); + printf("Events received: %d\n", ctx.event_count); + printf("Result count: %d\n", result_count); + printf("Got EOSE: %s\n", ctx.got_eose ? "YES" : "NO"); + printf("Got timeout: %s\n", ctx.got_timeout ? "YES" : "NO"); + printf("Got error: %s\n", ctx.got_error ? "YES" : "NO"); + printf("Last status: %s\n", ctx.last_status); + + if (events) { + printf("Returned event array: %d events\n", result_count); + for (int i = 0; i < result_count && i < 3; i++) { + if (events[i]) { + cJSON* id = cJSON_GetObjectItem(events[i], "id"); + cJSON* kind = cJSON_GetObjectItem(events[i], "kind"); + cJSON* created = cJSON_GetObjectItem(events[i], "created_at"); + printf(" event[%d]: id=%s kind=%d created_at=%lld\n", + i, + (id && cJSON_IsString(id)) ? id->valuestring : "?", + (kind && cJSON_IsNumber(kind)) ? (int)kind->valuedouble : -1, + (created && cJSON_IsNumber(created)) ? (long long)created->valuedouble : 0); + cJSON_Delete(events[i]); + } + } + /* Free remaining */ + for (int i = 3; i < result_count; i++) { + if (events[i]) cJSON_Delete(events[i]); + } + free(events); + } + + cJSON_Delete(filter); + + printf("\n"); + if (ctx.got_eose) { + printf("✓ SUCCESS: EOSE received, WebSocket client works correctly\n"); + return 0; + } else if (ctx.got_timeout) { + printf("✗ FAILURE: Timed out without EOSE — WebSocket client bug confirmed\n"); + return 1; + } else { + printf("✗ FAILURE: No EOSE and no timeout — unexpected state\n"); + return 2; + } +} diff --git a/tests/test_ws_client_makefile b/tests/test_ws_client_makefile new file mode 100644 index 0000000..dd70c52 --- /dev/null +++ b/tests/test_ws_client_makefile @@ -0,0 +1,40 @@ +# test_ws_client Makefile — builds the standalone WebSocket client test +# using nostr_core_lib, matching the caching/ build pattern. + +CC = gcc +CFLAGS = -Wall -Wextra -std=c99 -g -O0 + +NOSTR_CORE_DIR = ../nostr_core_lib + +INCLUDES = -I. -I$(NOSTR_CORE_DIR) -I$(NOSTR_CORE_DIR)/nostr_core \ + -I$(NOSTR_CORE_DIR)/cjson -I$(NOSTR_CORE_DIR)/nostr_websocket + +LIBS = -lssl -lcrypto -lwebsockets -lsecp256k1 -lz -ldl -lpthread -lm -lsqlite3 -lcurl + +ARCH = $(shell uname -m) +ifeq ($(ARCH),x86_64) + NOSTR_CORE_LIB = $(NOSTR_CORE_DIR)/libnostr_core_x64.a +else ifeq ($(ARCH),aarch64) + NOSTR_CORE_LIB = $(NOSTR_CORE_DIR)/libnostr_core_arm64.a +else ifeq ($(ARCH),arm64) + NOSTR_CORE_LIB = $(NOSTR_CORE_DIR)/libnostr_core_arm64.a +else + NOSTR_CORE_LIB = $(NOSTR_CORE_DIR)/libnostr_core_x64.a +endif + +TARGET = test_ws_client + +all: $(TARGET) + +$(TARGET): test_ws_client.c $(NOSTR_CORE_LIB) + @echo "Building test_ws_client..." + @rm -rf /tmp/twsc_lib && mkdir -p /tmp/twsc_lib && \ + ar x $(NOSTR_CORE_LIB) --output=/tmp/twsc_lib && \ + $(CC) $(CFLAGS) $(INCLUDES) test_ws_client.c /tmp/twsc_lib/*.o -o $(TARGET) $(LIBS) && \ + rm -rf /tmp/twsc_lib && \ + echo "Build complete: $(TARGET)" + +clean: + rm -f $(TARGET) + +.PHONY: all clean diff --git a/tests/test_ws_raw b/tests/test_ws_raw new file mode 100755 index 0000000000000000000000000000000000000000..efb2b056c0300990815c7e4fd45fd15f0aa28ed8 GIT binary patch literal 67352 zcmeFaeRx#W)i!=6nS_Br&VZm1QAZ3mC?AOeO)yA?Ovs5&Fq(iUUK4DQAIE?vbDCjQhe54EarH)^{DsQJ??rV|0Uby-{C({a0h? z--NU;KCG8K*sZykQZs4R^x?oMF4NnakN>hh_`<|DUrw0v=S6Dslb2i)GqJK_ z(UeIOD;JNitf=y@9KSMs%J?ahCe&3=xLlN*Ven(S8fWt5V<`B{o`+Uv>KCBOo=+Dr;)6r>nr=u_Hhfh&I^z~54>G%xohySF0=)dWQ z&$fQ*ZR#igOa0JW`k`m`BhNqjsrTW2_&nJUpW*%G?}uK~4?U(I`uu+CJ=~A{rTy^v zeLwjJ^uvF4KlBg#;h)`4{+{{qPUW6&`c?hV-|2_$=turl{p3H; z4;^I5g}=Vf75(I&-w*w#U~oFWcRuK@zRZD->xX_H=%?dT+E05+`pN%?e&lQeeW)~2 z+I#>7@tE`Q81NshlX`u20y~{N-3FiLK76F&yrTT##bvc+w^Y>m%4&=9vn#8s%8E)B zRhCJ`#kVZ0t}3qcmDKu*i}kFh%~)9IExx79S6o(GTU{#=%PyK*TwYsNCXkx4s>Kym zw}|)JvXaH(rL?-Ls;tx}-s_h5eT%DCR0(87ZG}%SM<#V(TV3O;sIIEhvjQ*IIhe`I z%W5miS4r0vi(Bx+T)$it=(_#j-MKS=q8>)yvByWb&a-fGTDt=Q1DB%CaiSUsqXH z2BNPP|4?z&V)RJ`@?3redIbe5rP{L6<;bwO+V7KUOOOEyuB@ysl}dco71A>Oy|@^m zOsUb4%StM$SOT3TmDfOQU%9lruF7~TE-v-0swpc5@9Gt0wZ&uw+RBpR@`|dG%8J_| zvXK=MlrE`dlTCf#wXABnRI1mCCPG(IX=QaCZHaPcWT0nCORCDHTS_X}1l?kgv$SRv z8dyn-Am3#*D1pSPYD!ST{wKYP31|ztmvPt?eAj!Z2j$z8XeVAVA$3Bkl;yUSWBS5-*=H8KWu&F<&e`3GK!^DLR#(anX0?(euX(+JGqTFgTbc z&C<-Rm)BElqFfB(Rh!@xBMlT3rt%@Z89sn9u8V({)gTOwlimi6j}5DrSB&%;;M?wh z27;=_Bk*`>0IFjhXNmlFX_$fgM^+4E^gK!z2ld&c zXN_kN;|_)bpkEp%)nR)IRj% z6?*>kKJ+aHJ*y9Wpiw&c$-GXw6m(0^#5 zOGdj`ua(|m$)9e?f6zkDw9q>(^l27)v%#P1JgYpLE%X_d{8ERG3;>`^=Hsx?V@x8T z(?T~)U8E*i=ypqfmxWH5%qPV{XJ496s)bIO%qQJKH^%_evMh8A!04k`=!2qEtnV%K z1Pgtxg+ACqUudDjK}4S=7J6coDoHgKx@@7Zw9uUvdcB1{)Iwixp%1grn=JIREcA^Q zI@j^$v)Mu)VG;o!v(SyLDUrIxLO;inf18D#WT7`(=;vDKdoA>l7J7$;ex8MX&_ZX- zX+E76`UNHtP_xi4w9t=R=q?Mr+d{v{LYItjOJZJk(y+okFn%; zS?HHo=qVPuu~jEhQ!VrqOa62VeXNC^Wuaecp(_?TV|DW>u+YbwM8LTg`UDGop@lxt zLSJH`r&{PW7J8b6zS2U!+(NIn(66x2*IVe5Ec7M|ol%JSY_!m)m_)$M7J7z-{+NY6 z)k5E5pu-nlZRZC>@i%5!$*^f{8!YsTIU&8coX9UlfUBtPh z4R;89J8>>$!_5N!BXKTa!&?OYIB_mr!CC;U1*d_2q#JS`QI|Y6daV|B( zlEAMgE)zfg9SCEtChjEODexJ@hZ64)_*CLtN`{*SemQY2A;Vh)ekpM-9mAUiKAJd} zjNvAMk0j2eVz^%5!-#W<7_JfcAmUsah8GGvhB%jm;R1o5cnUa|g5fNIe@2{3z;LR- zKPJwto3KmZ?-S=zFzgigJH)vJ3`+t(K%7gz@bPci{uhb6h<6Hn7jZ82!W{zNPMk}; zaI?VwNSsT%@D_nTPMk}+@MeMkia3{Y;Ux;4!ZiZ_5pgcr!V3j{ zH*qf2!UY1qoj8|h;VgmI66aP@I91@c66aDa>=O7Q;#{JIodUm!_yppTz^^Ahk@)eG zqW_6=DHiS&_zdD{#5)8&l{lAP;bwtfPMk}w@D_nzN}Nlr@MeLJCe9^RxJlq6iF0Wc zt{3<);@rXt*9d$Nac*6O7YaOvIG0@E0)e0SJ#a3y!dU{}{)8lzH({I#2zsw4?O2}r z>dlJ!z7qK0ctKH4T65YyB{c12WQvTq2SvUppCDh@Aj)w3Bke|1sD$FE7bTMu3mQSWDE#0w-txb9LJKu0Hm~Aj{L^{jm z3q3vMKbJ2!Q9tc`l$HFK%~k@_K7Jgpiuw=VU?n*160}u27rmk_#z$M+KY`m8pzdh> zEFWHh#MvmLtUcO+J#_W?%*ZzpMg4OsKtLcdYc5xUjl`9p6Y~59jFixj4{v2%FDq*M zHa1Fo7Z$Ni__`20QnW;tLs4_I9@Gi6Q)e7|SCUB&G~*TQ+O>AD>5AJ%C#B{bR)Q$2 zwn3%87S$Pb{qaNu!o+>^Bt>Y~UPEW;%zS8 za{Zv?oJ1a}DOHv2HSb?Dq?M7gnrH}({G76o3QKw5-dqULNt@k5^} z@}u>3*2d`z$M7xt82h4PwbJO#*k3|%rvB(-aQh!%Lv5dTxSQDiuV>6NPOX`h+l zWo8J@-iub5q~`>QXuI|b+%ziLjO5L_MLnUj(ye!4x3GcVJ1wqwSFyh*M#=X zG}^aCxA1cfj{k!kdftacUfN$1o1wm?{TY>0*Uf0&`p;x%&iZnBVq658Ts|7v){8Cx z>mi23G(4^5t4Jg~9hPU!ah^5DEaXsvaS#7a*GM(%4gEPwxPhFGXFD*+x6^jn$j>n7 z)SL!g!hcd3s#U_XtP%$9Y>-w>3C?a{&FY(`bZ^}v>Jc79JMg8b`#huW&rv?i+a)aP z@71V-)?zhy-X8K!b}`HU3NZu9*XZR5Q2v*C zMnOcLUtnHjdEWj4TR{$Hxs=d|8-$?3*JMDh#%8}akkf4o&hA!9cPSOk7dCcXr?hCU zmTtTHYRlIbj@`R-@8xR8*u7xam;rXdoNi&W!;KbGEUoIFP}X^;ROaZZY(Fdjm5qU| zB3qQpv2xKUecYsw%U5h>FOfeLd4$O8bS~E$s@h3b)XBZNPM7F9A&`7SkVz2G@U8){ z*{1{_`u|6*wf^x7OcINFSNU*Hm1pTy4n?u`dNFMwNL`e{qSsYDCEi2#qp31VEHO$< zK#88tUL&TMXlL6Hw1$_G7K)o~6!;cAOif>}({vr#A#LE!FC^bU%wV$IT#uWS&{MRfFmM9ku?m%ksXeF53xRydJuAG7)2 zMzn!=B~<%Mksu@CcU?OX#ON_oT61f;MVu!09QW)z^`GvdJoV)4LM51}1ZO&xP^L`@ z71-*hk5)qChWbY;!Q~D`?LsuBWPDbeZ{eUc9`iZ!E?Xw$smq*c&GQzx=erlUZ-x+h zeM+F!rl<#%v3r$_<8`m*1)6O-=^bV4i(po_Q{EbzIodZMbH4w>u2-8#dO{TF_Ks~< zLMv_V$ZS`h+RAY5$4bWE^0uM2@3&=zH$wc-NwRbHw6Zm+E)(kUv|lt6c!eBV}NDR1(sM<75- z_*{$?^4&HN zZ7vXTX*X2xt|I^X)w;FJDQfF_$g95779-_dwgApG+m^4+Pj^jC4|#26lwD@OXLK zaaO#IG1qoGK62!($MbD3t6${>KCvPCjt_h^J@87sd;MKDcfDrwe>m{C*Y=`Vk9yQL zcc6RC3K=y#8&3utcU_&z+V3I*Bx%Jtg1D_&RKTR|?3=EiGd+Uzk$QTkNN3V^N)f&t zxX9v^Zf!c+C=ob61*}}nA&x(Q6BzBA2))m zv}bb|NboD|>=&u)9&??heuZMEq=&h#>aDLY<%SjLSoaNdWv15DudtDnq%)R0JsEnGw`L39=ndV1O5}$BrdSus54U8FmLJ^J@T&hc zcbh$VzP$CUywK`oTm6aAE8O)b1}yi6W^`wcT!BH=tdx2h;gU2idv*UCQogAF+9t1? z3cZ2Zx+K8xIruR2Tz_J|Z>2?{N@()^C89&%xV@?;*`Wrl z8x1MTvsHUM_UV#@4>IQfcX2EI@$RIaX#pgo-tDz0=U!iwYzy1LCOUq$V|F#@N1@fG z?Nw3yu)uv$e80dKMe!ZPchZcst&9?2_-nV1hJ0;VF;cne4Bv!`^z?_2Zgv={&%=Nu zw~(HFmy;H8x5bb4a?HM~D`7E|AR3?DW{)3@j+h{Y2cabF8Bz_&^?DH3V4;DKc56F!HzBeB7&C|!5H&~jU-}r&glb3PSSF44(IARyAnJPto@un*$EuKO0W(t;7i{*7?WBx8Ud{& z82SF*^(Ok~j&#ZYa@rxYjHNEIzrwaWjO|c!Y<-S_rHEEt2CJ60<|ZlXw}EcgnlZHg zb3g+k-;;V*+| zJ_egmQF0Pen)MX7x+kq!I|M#hz}b@n-8TPJyvANwk+a+JEzpO3GF0?3AqkEaw zos0=Y`_23hApiCIu$C&Y_?A2~=xQGQ|rnb84GRw#&e_O}Zmkn5+b{lWYiY z2B5zO0XObo-?{jP05MU-j+iudjGg&##b-Gi>ydp8F*8Lt~0hBJHW zTvLRP;f33zslhvvVLEoyK2TJxTUP*kIIL(7U3nkt`s%}IMLB672m=FSxBTGlz#Yl9 zyue|E>b_)~_B1yb$b>uBMz&pOr!p8AQxtl(xu`+Vo69Wd>;&F&ni1VI-4`(iEn_Znw-Cpt~4S+mK#&?DNF`FWzbEWjN!+$yZ<2^ia3?%8PAx1Ji%*{MNj8I6dayq!^hPi z$ULGw&DE@EKR6;6(minaNjBd!4swgDkB*PF8Igh5;1c4q8Q5+e+a`imhUytF*J9{* zZ^ww{jH)}B3TPr)-d%*j)r`&UZ(pGK6snvrvgEP$WO=M7*~t$VKT;zjY!AWigChn3 zU@?Pb#PJAAh(w4hJ5Ti~^TV!1jlSqaWh7H(;n z5?Xz}q#gPIZML;4V9Aa1C&@8XXJheflw}w!){pry*B%%D!~G*CJrDHP)90iA(jDi9cZe<>REMr zB{e#0q5XM6uj)L98L-1aigmF1mA3HjwA&?^wm*%GxEK|)uAN@>V@3Uh8ze4tO|TF) zwMWSNj|hB7_!{B-VdLhyAnrYujEy@0(Ard}gwEfFH}|$-Xe!nT>XB!$?$ein7$1>2 z2pMj9A38?N!+4YN%5RZD2@YWO6P4f%XkOd{KcP4We77i9#ueO;cXfnHQhVGw06xA{ zJzg4;#$-`y$j!{6?q$KrC~<>cqR1$rTsh*~CY%Gc!_Ec^o^jKV1U6Y)h&Im}yN+1gTfb+xd)Xmq{E&Up6*j9lw_j6NX68@wu?owEzs zyum7`7kf%D<-E``dtSyT^4+9g6Uv+@b_me36K1pW%w+A{_c($w89Fq?fpcCcKQ0fR z=(6o1RtQZ_6gd&8iR>R^tuF>=5EPdA5vFOA>AOWRm%YfrgpH^%KjWWuS6mYsK2hEp zgLPKJVT_@W(oz5QKzZG9RF*kjZqNwl$qk)I%e+HwKnKwh1G`f!OC6*AXbyz?r1rO> zDTaW{SnKtoR{ymaU#+ge{^j# z*3+1u)_(U9B5V1cVoq40nV18zlj^75AvewffooTErWdtpmwZYcEp>V`{wW8(LN)IC z%!zl(4RcUj2^_-$=vYqLmlQDk9O~ftk~}m?9y-^FKNtQ|^V!dTMoAoi;BN`%9kd3U zA6I5OiGd}TuXqiPhKZNeI_0-kyh6t1Dpofo@SnQFsYv&!oG~OnT-w>lD zQ7hf=Qhd~lz#%0sV~^Z$Jvy8RO1~(C=|bE!b>|>(9r7?yNK=ory><4_rm zWD58Qli+sBXKv1zsfsPz8F^J$SNK}Uq1y=zPAqCa>apGMSBTcl@f)<*(K(bpYDe?r z#&{5{cJ%I1iyb|Us%b|H^kLfDj=IY9c><<%KpqM+D&QYXseq>BD~_5`AlpeZrPb7f zJN5IJ5eo7?3A=lVQ7gM!4ooFg?{a_UDc$YAS6m~(V!!JV@QS<|o`K#58oq{&gRKiI zXEX<+Ss*ud2{IN=`D&FzsMLjavA6S8U$QeiQ_p#)+}LtT&a7TJMRmunN%+!U-~b2&S~FQCtx1qw3fEB9>1 zTVmIN>+<%vhq<+l2d@tpuhHmBOdiW%TbMiY)Yru-{t01f)kEqwfE(|7*;2+3X&k4VSYCqCKT&A=4+q6H5AP?>vNmxhu$8ehj zhgA%883@e}a5PJb?Ag`zygokCaIy!32GYPJ_!H!V`kmsonTT)v zfwV(iPnzQudcMqE{#$`Jg_pCn`1L5N3AZ$9R%v6WTo_g zSZ%YMD%#Qmx(8vq0dD9j?TXEfLxLpBnr2X8eraTZKtBYCqz*BwVhOI6iQ{ zQhN*i%>n!%g?3=y*s>pm5bXh+@_i*gu*=cm$2k7dcbO^JrIvNW<%&87I(ftN>Ooi*v?%V#)z=5@VPiMjmq~d6&sG%NtBOq#a}?{iEkM+V#S1B`CNFT z$cXlPm=O->E|3ieWH_HxIv{MD#lj~6WYZxz`9iP6gzVI{N)nfrz_}6Bth8r|K$lJ| zV~=kF?z4!_o2CS>#v*AS7fF~T6f|~*-dHLPL9jWWiuDn&dI-b*)#*5qQ&e2UYA00^ zvv60NWqraE*Dr9y!}g*%Xx+E^0#A=Gjh6lmkrL0N(cRblFE(_Z*oyfyZ67^@`ahQb zn3vYfVHE8jvpqPcdQq%vV5oP{D3;?O3{LcaV6DNK&{MMyF86E&n*uQWJfT?V3yxGC z8gE%In0iuz@hpR|kyccIO;+>-&&`YirakF&x5=mp@>mB(6UL9%7(Y0ALU|m5{h;eo zYo4CLL;v41e&Wy!?7txt_<_a$HMe5({o`o+#dvv`;{}}#=Mui-Gia-arSQ1-h?)M# zJn}k3@7*VTg(dyD-syrr{jbUYyx#mzN&kku)x#g{ucXFrF_cg&x`jq1h79)zurh@W znd|hP_RrVbk6yT*N0j6B3l4#m4y;169KI3q&=~fN5@a{(gSnOZ7xvA}EyAkhv)vAn z^*Us`!D;v-CF6weH6@6S1AlmBbS&9i=RhdbxX%v{bHev0=2z6~F-W-5k-C0{@u7Cp z7cSA8u@8YE8g~2?U42m*N4U-l7$_|4-{|6<35c%?8pBLdA`Gxihesqp7?)9 zoPMdCTyUONKZWWyhI&RD;#?H?#wKQAc3a?`2>QvX7GNo`qW@IQb9kPU5)XLd7A~sYG55b zo5Om$qy2|X^g`|CQ=536-bA^FCprXDi*a`WLrT-GgdRD+7zXt!q8)nE3(WD)_ONL% za%|wDX>4ICtjVHpOZofzmPgqvy)2bvYNy}w*PW(3<6_j^fBD}1lW4FwwSTAtQ-Wy! z$S+y?=fItM^DX`J3evx)e>$M*|G0nd(1Zz|zJKl#%Ts;i>HTf-hiQg@R{!i0&FX0x zXB|uT{44+b2~N~bHy*ykhE3E?dV0IJfBx^)y27mTWc}aCb8|oPl=mx-c_{}G$$IX$ zGR$Q_k9D!6ey%-_XedwJO|!n!TiV6@I&hmJrpKvRj-+K`t3 z{LS|RjsxWK{9MvTARC!r21KG7@5RCd#gNVawtoDxi&W`WF;^b4KFHn6&fN)O+Md>EIyXg}*M^24?%|DA}e4gD|E<@e_WuhKs3k$zSm zs~Mda%zRhdW5_P-CA#;h%l>Xu_VZ7Xo%h|el{kLxqi@K)Pxx!gu?N4&NL8l^ABhdO ze_{{B@a1uyYbap9%@gYU4FAI#xSV0NmSox(lS zRPJ3LZKsP|i770CeUFu5#LEp&K|8p;yBjmwlP-0w>%x`qG#9WzM-Va>E}) zrn>Z;#t-C%dx7wRfH?T({lmPq-^xG01q}Y%}_b+b}vISu+5Jd zb*#vQ9GqFjeNo!8*rwy<5p^L3BnJ91|65{*ABphf3mskO2)$Y7)g&C5icK>!%Hfa{ z2P0YF^Oe@!W@+c4B9 zZkOt3*x~viyi(8pntmTs-g-_0?gH?4IP;*{(D^rIpxc^4Grr2aWW`YZ5^=z5JIHHJ zh=1Jchvnf4fV}kv-05q_l`a1pg6>sc#ZMXbtgqc|F}N3)i|f`aaBul)T>SH&-SxK~ zm+n#ItTszO1`=aHxz%9IbZGYAH;1y|7&e-+h}Bqk+;r_ zLDrbAmL>{Ne`2EV!uk`J`W8_XeIwCqKYU<4^@4mcN+>s`_pR0*In4a(tK80#w>s;; z9^_kuW_=PK3w1{Ii?)Ez4KZkkD=ag`$|DQw2i~oe8@_;w)fV2XtpEB_e>iiZ{~t=| zc1V7GO!yU{e!aiAQdd&Bwf0>&U zi|w)R<8S}I@{rGQ+H|pB!2LJae*(sLHsUqTGkA?_hDG&?zBr#p+w1(-{4lUwWC#1h z)~DdxQ{Hvj@;&KU|02EqwCU#jNIpxkqs4`IX)re_ScP-`Z_@Ux{YM1WJ-1H=M2p_DGt<9x#!q01j8$E!X@9w-y05ek6M8*6OPz01w*{& z5}~lyv}5yBURyT4Y#;?bwt*BlVat*q+S8NLwDttE`ws~2JfSjA!JG52(eI+TTeTZ@ z!{HojY=#QJdbDn4>k(~j{r*@Hi%kLPVNahDL|pSQ}yeZu{p$u|!9y+|+G#e=;p z`6qkA7k~-v;(6#n|0cNZpP)gx(S}5Cu+B+mJ|!=>92Ywv;78h;H#kuAd&qyoU=if6 zw7Gbt$a?|vgHuq-|6+b{aWcw(;QIyjKn7gVTxDUf$z<@6c8E|v8Rh(Y)ji== zz%8SX@p9C)@spN zT|slcV@d119&=w$$p1@7ddmHyJ1w%`NZD_D!6N%4L-uQXWKWCAo_4@0_}d3gFSreY zH<|MOLfeIgc0K$(^7b^c=MDFT)Ng{*8zU(MI7OkWkR`$z4{ zXf6`)wF?}Knn!8)el}xfY@*(ay)K-^;b>5OF|GMoCo%OaL~Z->)XvY9CxQttaG*Bs z3%RGuc`eFoAGLJHD;pJc^=>D=Fo+9v70s{ZFLJg-F2py@FB#ii(XHXkvm9R=9(y9R z%9ggT;($RokanP4UIb524sWrjg@?D=B~W!^^Ihi!ujB?Ew5yD6VI_~HR_ zr0W>hqrvIVN?EvZBJI=_ZC!B|2G0*wL(oIMA;I(4;0?PCY&X6a|56&t3`R|~{iOPI z$#)j!`M}4ie%yX2u%#V>X+PMi9#qfIMY(zHaajOtwUvJ~{#DpN|DYBU)1t;viQIPY{>jD|TZWlItP5 zc37~(F||2<)NYHg$tKyDlc zgqd$bMft&HSTY>*-3Bg$-9f(tt7LcZPP?`MMcryUn5i?MFzs&`bm)m!v}bVbgtlbJ zk9%yR(V8H8BsBRi=o%$BwE%5`;5Wh&SwXRTF6!`avdjpG$AYV&&^IBl=(J!uRz&N^ z!}Q(T*k9X+<3pS=^9XhgH5%HK+ytVczRgbJt9AozoqetsLelmTX1QRxmX2iYVj;QQ z_!^pxtSJ~9v^;aIZ{Dj)i)j1MW`#Ed#_q++Tzm0Zy`^XjI?5Bofk)hw3SoPp$v@Zo z%RL9}ybX<*dsFx^=(oq=D4_?0jA_j|>Iq(%dP_J5cgu-*w>aB`bMUBN=a(LEht}Bg zUVG0Q@+23au|s}5k*Dpm)D5q*jTjVYynvI~_g)+}yS%vBlf-)$1zIwMhDnZt7fABr z+5tY0Vb;ZZX}NJ6yZ*wHx?RLUL^QOMeaMD}MmQ!wJ zUB#Rw?9q$@H4NRQ7kH4Gi6-BLT5r5L{AcLa@Sma^JSx^!U#=YHQ9tW3RP8+|Qrq;6 zE`nVbVSx|9U*hy>nt zX?zMT_@35&4u`8fbwY3L*P{W<%{yl2=JqmX{f-BQ0i1rFh zPP%3M6gq|O@#W}uE;G5bV7&8|MO?BFn-2I^lnUPr$;3LNP>Rp+50?aiE*em=Zr!mjab_&&+LS6)E1#^UT_^X@3nR2sp2i~ z%606K+QFQSaqUoG22+n^r&TnlQ`bx5Cm2~>jrzEz9vQOdwF`b|JED4WCtI`XkD!Ts z^-)%xf90d1!k=}80^RYv!J@}N*npY0;H!hif>5*vVNI4K?8|p4!#>kK&(?k@1i33_ zUMpgHC+2{yf5NdaN87yCz}`r&c*eMUMxST%y0)+)Mh79sQj!B~K63+P_p@EO%oSwq{6x14> zsy$@T8bPZzXm{&0xp5gq3QfM%px;V5?Bm=+r+%G1i`T0DVaDi%h|U!TwCbNXW7<~K z5O3Og)W#jexOM$D+%mRE4dTr7ExFQI$bX?g0m-q7>AMDZ3yZQLUG zwddhCtVEZ7C%%@CE>T;BOG|?b^~hU8t;i>DZDc_u_#maoQC|#n%I?7XYt$Hgz45IZD^M`L=KL8eM(mW+uuonuoMW(&l6x~!<-5rlI~;Pu-N@rvA9{{F)399E z)DVM{d|rKRkJ__W{oF8_YeJL81w(AQcPze9@x0yy-HhaWx$moN%(Lym7Y1ryr08TE zG+7E!nwclq$W{c>ZE^#@KLA{arlu;PvV&NN>K@8nY}_9+G-L>hAN$#j(%X6buFGNw z0?nCq2D%;i+AQ@Kd~h!^i+Lq&pId%0M}3oWsK?-64Zau^7wQ3yu8IDc+U3U2p;me8 zhV$7Q^45m)_W-uMmoyODv<>I8r&>ClIzk~^IvoRB!u**9`q|UBgZIzp)1Eg7;)tX31%_{&%nX z8Fvf=oyV22yLquW8FxAIg85iaWw-7y;Sg+{ahyby=xGj_ueCsp?B zg{Y(8pA_|Q_!&ll({X!=;gDFW4f{Pg&PE85ug9B{FGjH-%t9D3Hgdq?O(i(FVm?@K z!!3AK0hlkMA8pot4T0P@x^D{es3!P4)wpf_S(22|u6`qX4{EP{Dm0#L7%*$f$F1nl zb3* z`XNrROry3&hn!fdYEy+^a>F#>+K?x$N_ZRMT>xo80WvM z9YZ~O4AF&OwedjjVj6)Xbl;#J&r@G<&k5|UN06`nQ>+}#?KXUsZSBz%*a9Q0QR{Kx zTBChqp)v|nnQyqZ8#Us>+VcP{e|O4%X&%^`7l_;`uZsomytSAD8C8@6@u=PSPWDCL zxpz{$?E~;p-qP$4UlbQ(tQ>*+=xua1Soe6bYwU8jXi1*+9=l6D*rGW-sy%tVC)2fl z^(5E&`NOdv{ef=@zPjcs#do?c7sre+R@@8Mu7z?uL439KuUwKlJgL}5j$jYE9XHrV z`7RRuNZ{8an+F_G5zK3L(h7IMJ*?TO#^9NutLy>lW7h(~{n zeEK;yzW2sz;ak3gdF`C4XFx?s+A@(zoCXZUxJH(IgU^YV) zaEKdkM4r&E*@5i=enMZ!7GNk8EOg>0IdCE3qX@hUn3fummlS+`1hf9Hpdqi zvNV3{FM%{^&!Nh^KpTGGY9<1nfBLa_`Wmgrj}S;NJn{JBkN2@RL=6MCxzQqb%X?0k znCu%VZ*}7U_qrHN;GThd2X+MBpYG;Sto`g9buYp%cgxrDI1h3M-kXkXtig)>^jq%0 zp4gfA<$^@SWz$g(KSdVnZs{I|@+6;~U)rp+e0&j7fZF3*-j6{FzCj_XXjVPLS@kfv zu}UZcsyl)qnj&dWea^n}U)s)5%=JsUajVIQsv6j4;Ir=P>zf3@xpP8)I_SU&SbAHp;4*$(Yl6oui2ABH$hwA^lF;#Kq8DWAAE z_!P2)d6%jQBhGgl2A^23Is(&ezI;PVO6UpNA{g{&P9VDGmV$-Q+#4=Bpj%HJqJq=e0Y46W9W9}gNO zGWS_P)`KVF6ntwL;_RdWup6H1#xxjfv|(L729RZhmp2LBbTvfRGZbPQ>>^^3gnGmNVG<+v@ltT*tuy+Nb|IR~?`OkiqGbZK-I_I4O@g8Ao*J+*n)`oW7U$IofaQOPQDCsJYsI>Sa^eetvB{&apDvt4c^rIfpH+s)H z94+NwDgCFDIyt@^`_zORJSu)UEz-3gHMnMEg}c za|zK9R0%D=!Vp^*?eMP!4{;vZBO2^y2Q(MyI@%-G$2)-^HvPMCY>mUm)7aMis% zyYYoIdV_XcV#lL>j!R`mr^9=;Ypt*km{2aA@DXh`^k{hN@k}k#Q!mO3-s#fz{)&lq z*u0|R*BN0G`rv~u(O*Y21rmxe+4Xm0ydH|$W1u}Q5Q$q+gMsB91?fud+l}AKY7lZE zoH&XzGO&u`ulK>imm00c6nwy zMxtkz8utliV6gNcV_@1sWR&pzFMKiQHkbo{hGOkeZmeZYYeT-f1|vcxD$I#z!0Jb0 z6Hx2?B~`kzQ=IR{`A|K6=N)5N_8e?$NajW!+~1HB;DK*{M@D?j7Yi#UA&{HbkTZt;j`_L+|7D%yUKqXEbm| z17|dFMgwOwa7F`XG;l@(XEbm|17|ewFEn7|k67ZFT~~5T*;LnS(iDZ9F=s;tzNty*XLX(`O4~i#kD0Xq{6bQ#bgU2WSMYz zYHFR}T?cxxuWY5yRa@rs*H)D+M)Kl8(xCC<$GfgCD=n*7&SJ~T>e!4r7sy7t=Z%?= zT3)xnb?K#-x~`a92l0F*l`db!va)JFxs{YIDO=1`?*HL2^Ou%XR+42^b)B!actu@t zt*E8Um12~g2H{ed)r}SM^^`j$zbP=}b)}Tm)>hX}G&qc9m1ceYmrHe}7z(YZu5y)D zR@ap+7Dao>Ylyd))ht>Cg_`;sB<0M>nN=jYTvuIn6;sQWmsR=dTy@p1@{(GlUR%f= z89kW@ltO)?*9>Lp1*TEov#u@5%g&Le8`*V~Rs*B(qO8YAFcA0bBE_Ka)m6F#S}m)( zr7T*9G-%qiY3T04+1{c;7v7~DA)em7H|7+gN+IG@mrGQWQ(0021+aDKSEJMF-C5^v zibVGQtmkh?AKaS8_irtEi61lY*8#WUFX_J{5eNRdH%B5%@TcLg!+0nDzxDS9c+J7y z+mqNDT#Y}zuf~oiq4{^%pqqGK_(-4pebfIHUWvNeu^q?1X5-KLZqoiwp~*|L@c(yt zDcH5F#OCTc>|&aK7x%$Ux(T1R@!ep|Cjn+F7%5vWtp6IWuPGN-6v;@v*pgHe`@AyXKbK zlErYeE6NttRhKR;^GW_wNzq(4lr1XkldFexeNOfqjESjZI2!7t!kk$i3%a6i>colC ziaG&m;L3!j)qQ~&o>HN|v=k0g%BxylQdzOsRZ~)1vaHNkRx8aa^R1|^UFs6e3P)eUhH7$XjT<&8}KnRlUNb`*losEBvRD`oo=J@o@X|bPul~ z^3k(@YUJONDM`&B9dYYrI$Lzuy@t7YFwG~`55HkNv8vi4;_2iw+g9T9l`X3|rFE{;ayHuhef;WlLpi0fR(^;X z=$DJ@rj4nj9{&w~#Ug~rSda0?lR&=AQZ=+7f*J`f_fKF)!WFDV(3a9?%{5SZe_GOow zQv|2tGOz0n8Khvy(BHuA3>g%4R8e;}WKgyd9adLObs6bH1{Ic-j*oh-@z<2CB8$G{ zIc2qV@F!DUX;%nm$(EQEo416`+rH*qU-(qwk3p|xse{zD)lu7>!e3q5eE&UJJ zoTgnhC95i{OAu~XR~J{7)FN2x>*Rz2iV?_RtXKM7i~Qx~7{{e0HPgo2?sqM&Evcv~ z?xlg={=m@R;)=S`lG?=xtWjA%L&xZ*)3BtA)kjio*)mj!2~J33n8Ww9>))uastlgY z!WXUT)t+eOsOdIAN}TJ?$oAyS%vJKPzQ&tB>)L|rt}iT_ zJ?DnGH{MjTsC02z`7KK-Ze3crtg5=^w%R(MfBA})t8PzCyZnktlc)SJJ>xQ7o|0_m z#a`Kon`L+4ef8au$T-{#$XpkR6amf$Jc+cNdk`lPzb_Km0JtA;GvLu5Lmtw95{Y~P zxZwdD;$zYs^>8GzAMhxk9TVrMU*HFs0q6e`Z6HKknu5E0m4KOmn*iqmu0~8;2{;O8 zu$utAzl}uFaq({hpqKD>pabp)+zWUZ@G#&}z~g`?0qwZWF!*uA*nm3#=K_wx)xMR0 zUce22n*cWhJ_+~?;10mOfQJD)0W)!h@(VyOpab17A8-_4CT=m#2RsS*2;c_X>*Rm5 zd=zj$;9y*l{Qz(rpp<~}fTI8_0Ve@&0Q3UR$Cc%UfP-hXKdoOCsHXI{;G?AwuYn zlK?9LivTwOE&+TJa6RCDz)gTh0k;4SM%cC+aMZ3yWcV=1377(y3782usx=bX2zVIq zDBz~uxFUh;(K`Sa0v-me2i&v=_CPw|e!x*!Qyc{xydQeR3AYz;J>ZisL(hOm0bMwt zKluve1l;i|`j7A}v=4CHLD(biQH**Ab_2NSZ_o$vchO&f;{cBWt_DoTotUFX(4T;# zIw1#OCg5Jc`R{=bj;>DvP6FKYek8IO&LQWnG**F*Oh$Gh*6=Wh3xmn-pA@D;gA0dmvTQYR^y$z>ea4BOIwzi&61>*$od7!b)wu4xX^*zAHYY$(Qy>S`eT0}sQtA%iY+4*MdHs-2m*FlOVRM3=`D_nL%4ps+i$Q)0Z9 zRMEH1;McG*68Q$~`nCo35{UC8rp7GkBX%xT-m7t*gqXRyykJAyOoIK5`zh`+k}n<% zF=-rVDWFXt0U`xrDibjkiTn!EGLiNM)9{SL-+a&<{}qYw>#fq&w12cL5bH^F#oVU% zjyutDO@hLTHzLahc#ZfbwnGo~SQ%K+sevCJ`KXwHx$fZ3)U+bu^fPGFYte_1d?N8*F`Xqi2 z;3V>5>J|@a`$6MAo0Z0xr-4Y-A9S36=&>kT{j3r^0!bf@_e% zv_UsScS3%mE8E0`UsX_kK4O|;miHtU#9TWl(UFrdlLkWBmLPo-(l2H@9@6kXK}y>| zyGBrSS`%nrfM&|Ze2;*395k~H^trt6brdvA8LZEFEh=K(4x{`6((#b?0ccsj>dmto zv`o-Up47o$_=9xN-etkw_WDrNUS}qtQ?e7CFkPj!jV>{E9mb#sMZ73~5aoBUyzsN4 z|8zgQVi0;T&*;Hf3D6~&z|&sc+p$vK2f(M`*SN|{K6prb47B~A-5@CXJhub1q(|`k zd89!HdC&pJ>Fc1oOu87SUNKIYb{uKRr%9tu2Se#8W}3l|^kmRe`_L&9G4$y?%quwfHrhjK#%sb;V$V=E{ z&v;lEb??~;v!a%$>*aNnb3S@1zoVe1gZ`iL!++@}6`Y1&Cg>~wLw@W7AIdeM+!VG; z^p8*U58K>?v}aD`iAg75?`gBUSDRfZ$29`)^f%xgw&02>!1(hd+=$QIgliHVKxc||Gi1ThyXT)X`*^4kc0T;u);veM@Ik?-z4^5ym?p9X%FSR+62{rv9g z!!P@E{1os=AB^z^e&Wh8R7Gz(d-Tpl!o?{47DyY0aSR?n8SWw2nSB4Yb33Xk0&QeP~Xsk-xCe=+l!ylb$lx zO~PMYFD7@+Hp1$TrHXG}6s7^6bm2HHiI_F zLi2+53}{)P*$dG}e9 zMC17RkRNfX%VSw;T$?bzPbiOo;w7;*I1HW|cnX{EkLT>u@SJ&io)nG#c@h={1=zR2 za@*+J8-#ymUl$;)2x;d>)2GG5nd#7nHO9RZxbMHWtzV8u~=>$(R z&M5#d*0lq4{_ha8$xGNJmP?rQI9sd+=`hk$u#eP*SdVp`evD@8>(h>y*zLB&gE0#d zJ7cZ|oRQcO6Z7NKE-_{%+=L7_BclT7X2y5%k_$q8bd0VsB|T@(hTsPsN-qV%S_PC4YtPiAMhL{Y5C_ zL7C0i7yE-z=Drw2WT)Q;K!dWbP28IWrDYZ2J?2Gd_|&z3Ucw~s<-V5#`)cAq68$Uo zPYUjfz1JR!+YlcZ5WCzq2zx0r6JqZbFBs0kE?!5uj+RJdDR}615u-aSpp^Fuq`P)S zA|Fy-jEnowb&wZ(EFt^V+_%6uUKj77U7%0vov~x-y-!_g<|M@2ZthTUPVi#CZCfk; zvk9zY`?oi-AA*%(?B!f`o;oLFCyYaJ?%^G6!yN{^OEcMac$7daVy76a-Hipv)rh#T zc1E{Kdyzl0Jrco?7Z3G!7_@ZI3P=$=(3fKUjj%B3>Q-!NwQ=hRRHPzMhpDVY*5Po< z1t_;T+Mn>DMt|n?-q+zu@7~iYCpQ7!>NH)8Z5{6SoVpLB&xK8>+p{+kxr8#~VcQ-7 zZ6RprHu0q6a~o)tpz+rNPwR_mtb5?w;CZ1r-Sg%oh<%AK*uH((Pb4?tgOJ1A4_g(D zXBpCn{K>-+k0SrZ)8+R?^MgC|jlUw~Pkk{G`K^)PI!{D>IqKoqjmqZH=b|Q*eFSCe zSr(6IKWNUs_Uy%wwhgqwpq(djVLk-h4_XpvYe~BHW2bq<+-zj*Oh4MbYW+nGa5LffioI7 zqk%IT__wGUpKUea-M z9>x}%ct#p$HK3^NSsb`(~|K8_jqd)sfHpQh=W*Tsg0m}`z+<@y0_>ch~ zHQ-hQwi)nE1Ab`0FAW%fktCk84S0zGrx zhX(x8fbpY^`VDxA0jC&nrUB;|u-t&l4Y#;7kL~F<`j?mm6@M0Ut8pqXyh+z%~QEX+XWUo=@%7p7;Oct*KJaU0}fD6*|7f zfD8TK&#k#sPtP)7{UQT5;6el1K+et1p6W{Rlr5?#sdA-FnsE7q)bVKUC9AnB*eUV4u6d*-Z9`91d6v0_zYl# zBi`otIq{eQg|Ps(_+JVvZU*w6ZI7#{@}WrF*&q&h5*cDQp1TYw11{kEPtOzYxAT4T zNWRDYoK@K3A4UE_d`}#QkAwEh9n&GCZ7mS{qygmsk}V$;`ws_h#Jj`xB2&@@;N`a)vIR2N)YcCthw37|Ki@hP)PTf?JZ=smkd+@w%DE_gGD2P$hOV) zD6^FcQJZa?r0ivmCZz0^2Bac)+<D{6zO7|$DoNztj2DsnEGh007Ga;uD%d~t8@>&Ka1Zkh2F3rVY`|*p7%*tq z2IPfVY9PhY8WPJv&vM-2q($1AP~LItS$vml%ZMx$h{F~H$+1izPFn_5=8%`U8i!)`LFqLeOKU@oich6Mv1@7=B1`Y+dYbd<@z&m`SZnqK?Fe6uTHS zN9)KMkl$v~yZDgemf~{|abl8V%Q@fSg?}+36B$Wy6e;#3(|3#V=RzXAd@O&n*70AW z)I?HQp%hz)kAZW9guGcPB#fbYVkYoIaE*NeZArLRrf#a4X%A)Phji{=$@PihYe}Xs z(#WsyG5G12ArFv5tFqcU} zE+>`oDl<4Q!rKA9#STCv1E&mUC*Bs#iJMX|(xajy?;-U!$R!QskI65!QGGu*vksGD z=Yu-9Lgf9ENtT8dfm$Z=zHBlOQVf&MI{{|4VM23#{kLrskKE6C0fiG;kNy59zpFm0 z66nZ-C}qEY^LN$u<9JINDs1cixpv0E=Nedn9UE)XNMZdk_j?^H>ZA*kgpuB#WiLmY zQwEDh-@k2*{VgyZYoJ@!*m>+R&OjeqWAB7M#t)=0vG;Ge%YkpfNLLJ^&yT%-^BPBO z*=^DkBlE^J_6S&ADF#;T{Y`7^O~^J~$Pjz~hBbCCSj`;tBv{$+-vaTwkeq9XxWs-I zq*4rQvAqGD@&*f=xW9hQs0S`VUOd9$07rs}qe7Y>bQ5!br8MNe6p=w{LM43c>;J#f zu0A-f>bhS^eqxPmS+@Ko8}J%K3`w<;KcJY8Ab;ZZmsHCT3`w3=yHC>M{hIxd5j2id z^9N-}D>vyh%rqcKrZ9yDchb)QMWLOEp-k#R2~3g_&BO*zNT%*UIw>KczjMzyZ{K_D zHl67kY43Z#d(OG{o_p?jZ{NB1EyJ2 zk1f3ZkHe>rQ}I3 zBQN^lhg7GQg{H0Z`i>hqwsa)BufvyyR>vgKOKpjkn|m~8eNVFc#-0|y*xVQ3+7_m7 zU5OF0$aJiY5lj0OrlaGN9c{SrU$i_R6*>V|EW|ax8w5APHZJ~{Ev}=bCD}~{ELe-{ zKGb7jN6X@tC8&63cS~DmM+euDNEUG&+EItKoyqQ-dq_@K!r1z*jS;+pYm6}=%~;!h zgR^Drf_g)ipz5aEk=CqTLd~b^D z>vZrrRA5M3n?Kx!9PycTtv@bz4*Tk|3vi|{-4JG_wnD_vZi&>LY&A!-n+#C zXX`?Iv@NBN)%cjVj?U;OSR9&<*uICbVfwg(KAg+V{8sf5ZHrr+SghvEKk0O}Ue)a^ ze)OEvd(OGaw9adpcGghxl+%l(^|Uh|$-LVg=aaEVoJ-$wV(&WhYfjfW$C)|jEPLBo ze$sJH5<~mh_H)kC*hv!F*}ALSajH(T&zb)%n;DySF2zY(`;VO!1nhB~Y>fG04?D}- zV}~8*b*6mES<)W6L#4*z?dKTBiL)%$?>O(GCQILPoY>*miF405^Z%jdEUh`t8|R!= zZ(GvS&VqKdZsEBYa__`P_ggU*Vsj>)h2yQ4cfaKg zr6lEh&SFZ=I;&4OT_~}K!Q~9bPdLk-V!~M5iSKo;-0Q4ty?lw&bHZ64d&#-vDQ7iN zB6HndXBmF%$XS0lh=P7u>=7bqe;A*wr|~hb>a1@EWq^6v-gD0SzA)k}IPWYW&hI&k z+V-AxoVM$3KNmY;WsQ-nX)CKeHf|x3+#0*FJ$9dS*|Sc|Bdx74y7Zpm!2|9sUUh4^ zoSI5vZJaDX=f&*?s~>A#rdS)zdB#l+y1THB-JVoZlb(x(SH>UOdK~wE=%X(4%dVXvIP|1#CJwL4tFPltuY>Zag7`IgR zCIMv&Br+YU)PY)l6pK`KO99(`)R20!e4zy6u8Y;4<$B?=Owzc#LTogZK2j@@5~=f9 z)sm+mcctwnqOn~-9m~D$_u1g+U06-#cPn)g!cFn*Teiqo*m!TgS}S-rje7;JoK530 zRZdUbboX`F_G0l@?|8g-us`05Ub-m_p58GikCtNf7E83wwsKQ%&c%0RH;=4TWvY;# zC>IOGTBWyEIEsB0daEgza0LyP{TmD|j55`!lE*d9~5v=u+0TEKO)rD<4Ys;FbT?R&?$FN$qP&D|djvOqPJC;;= zG@J3{pvWh_tGP0w6 zD(inG=_BKjLRD}g(Z||J z7t0>>J}Q?-bwzt0DAIRTiUso)jF8N@4mB|(<7e2wQ;>21R zQt2Np(yiu%83r!&NFW{c!%6c4&kJUr`A>hno>I=oNsH+=Xa9zgxMbjIry)HyPB*Ql z)AU~lVB%*Z1-k#0Sl@pmOIT^67!T z1*?kmJ-^aFj*~|1{p%+9bHGWyeP+XX8vk^h#y{aDdX~ds*Zm-U4gZ8s)7ujq8BWYk zky<$$7_e)4aQd#`{Tms#YjSWp4-F^!+0Bf9n-fFNfL1=em%?G!!XS++{S6j2^jt{C zMx-sK$6S#2pY(i9$IU`-ZsO}-a$-Jf=~tOK(SMiVM+843_#(k;A}4+`0}l!QMZsqU zw`)U?_mJYZGohV_iBtOR0&3T(&oFN12;%f#fj8=}cZ7amlkz?nyfoDi?eUB{N zY3S_*)l=Uy+j(Z7PYbT^p_M)-xW1>p2<@liZoy~h+cyq7#|!Bf1s}0dECBSa1;@jR z*ZBGfC+5!uKO?xEdxgBe15SGQMWnqiTfE1N2!55wdDG%uX5_03Y!&=xLLZON(^u+7 z{f>oOw%pjOEFdOwRtat*_{S~YWA2aCvm1Pk;;mzX*6dm`Q@jp%oS9^Yrp*QH%b zf2WnR+(hF}8H=y<<9kX^@5h&*-_Hy)@_=MKU~#3Yr}W--N&V74Ylo|9g#V++KSi(k zaV+D+yxBy~&w(#S|IUcsRL?OOd?WemEZ%8GKFxwjzjX9Bq2D3&UD950b7rIo{jnza zABmiiLtNe-PR!$iU)asSUcu?dsYuVqBlY}_;B$jaxJ~H)UGV8U7|?m$Ke4zF1(IJi z!7szhh%Wfy2SuOCawYIa`n;|Qp0qgp!*P}%iMa-^4dReL7m0J-*+fnb_+pwBHqCNS zZF}6S^65s5<6=(Cmzv1=GokMnzkP|&KhuQ%6``NC3(kD^V}1nua^Vdo?>CXN5PpmL zarPinYrkJ9c=Ud>QSgCVnSPTLveV+h68Zda6Z~G0qpw#q_;y_7-^={;Ttdem3SJWZ z=(u>eiTtO9zDw?pPqG;EohI}@Y=VCva;87W0zM{kF2<`n(%XRaFD~tInZ@NIkZcfo z^GOEvzP}y#;?^D$jjPf+vPSkiE^^|cn2g@1n$SPc1pk`InH}Q#*tJ+V{VTyoq+NJH zXphrPmu{)?+KwK z=_c}zi=3|gOsIbQi6->V3;i6$6mh5@dtLB;DOc|=Z#R+izR(~40?S#=iRqlr_A?#v z+gA&2KF@?RLO)<}xd?|U ze_;m`-X!#|2|hc*z%zn>Ao!d(o@WJL4TsstPOw2_LwpPTHjPJf1q)CgxZBcWoE~TV zagjeN_>AcJD}ql6J{0MfKNfsCVuz1fT$lsN-wOR1@srvv+B<~mIkKCH#eEyvOJqqa z-owWOLU8&Mq3@S|+$7n*ws@G9u6iJXM!%ynI*K zMg=d4J*yv^vUpfFT|FrD$EE)0ZhJh|g#McCY2Gohb7%H@3? z&tY`@TJQ_PRz>|my1C1BcY#(jQ5`cr{~pKu@ks2dweML zr^L^ze_ko$?!rE%Q@^?iI6bFDpQ8qZz7(;CeU^Te>3UTPl;n3TeHf#wyF^a^PR_G? z5a9Ga!H>(h)BgR_CUTx`g1^`Vr@eG&e04?qz&lOo9k`@McGY8X-0#HB)lNRqgnoz6 zA5U_7rFe5#@Y&BXzL*nJ5PVMPFB1Gd;9Y_5BLbUgp^r!GVaDQ0RZsu23I2k}F_HV` z8-fo>eboM6M8z8E=f8!%OP-e!QuIY|IF0C6H^KWX4u2@mlcH|3P4HRq!|O!;t%939 z47@3LMesTCt3MF@e!*wNo>k9}2!2XBO5el$g~|~<>wW44;Bk=|Ox{#E;;+|}s ziikj@Mzd};HEsZ4M>hOiSlS?L=8Yp-f^F`qc^7*y7w}fxbu&eGJXah|<=jjayIZ@d z+TA8y%$F!UkxBG7ra&yDkabfOi$rj-TAo6r4jUG_nOZ(S1(v{-3(9JUG#o47x8Z4n zom&ylz$V?B>*Tv_ymQ<@Xp-EDY3t)TeLAO z7qodHu<}~P((DMwYzbeN#5oWA~=4=;hY4b zA*mcTqD@t#5nQm))JnN*8WBl~+5|~Cdpne#Dtp08GcQ%B zmFziWPudfTPh#&}f4A6-H(DD86xj5Nzyiqy&0qgqZC zDzvSwTP#%!#jFtHqZn%idZ!A630PaX;yCm(?jpr@j=3B~;N+45QXHt`>^$~(%pu&I zgT?MTxOM+d7uyfJF0K&rba(C+aQBXb#@%uFz}EfA?Z&-j-{7{b``p1@yM}ijau03Y zwr{5!ioPABJ>ZA;xnzmfSOx}%b{-&PQ=;DvD7)<=DhOLZNOa(qeaUUx-Hn(ke2s5S zRqW|bLG)eaVqU^|B!Pl~5pf)l3kf00?T2o+!Sx6=n_9ARs9f_XPF2X%N+Djc#X#iz zpoeIwSHPHa-89A0Fg|j{qfjMU;PY-W6%MESNWD1-E<-7Yiqa4+A~csltF?{d?|cC! zs$_&~KkRmFifWF(P*K`wMCx6PPEbXf?s_&x%NrMmSYc+F5Fq0YMp`ZNcqiizkx+0K zs)q$pyt!Uyp83En-9AheMT9%V={JAadac`N=7u$xbhVs|)R}4XcAsie|J^C_ymr`z zWTF_vrbCdgMJ^_yM+rYO5r=@KcOa^OFm*_l8nAWc>GD*mT8vcGM(KUEvD0AT$%+bw zKMF|=7S5IAD6~$X2oYmvZulY_$HxBN6UFE-@XIdI^Z*tO6XUX}Q%v5=!!|-feX^bO zn+8KP&Be`N|77xFm`Fn=Me__IZS{*1|7OP0g=#J&m^jH0$D-8?wmD$zyHlbiThqx( zq3KvU=#_G~{}J77+0;-Gw?9uOaqPg}-ch%)9bR)7cMW*^Nlc}&mK3Tg*C@=&{lGcN z3SZeW|G^h#2Jx`ADEtd67 z{@lZFcZ|`Ps-pjcZj(t!<3z?jJ*aBigt{YRa-L&i??ZOZ5m`vOH02B4fEMu`&WGwg zZHOK`w%M5^82+IFf;)7?VpNm6QaRjAgB9Chr)&lFJ?vGv{ky#!?y5o^==Nkmyi2%e z?F2C>j}-5>)Yl>J5FToW>t@jlTei3r>|tCO^YeaNCMNI$87oPCltgj@iVKePpd0aP zAoWjH^tM>=jyBW|b0-Tt!%f(%mWOaN;*I*DY5S0%xp)%rK9#Lb43;nx#E!X%8s?`Q zEi^2_P9}5RL;JVOeV#jlU7^}*uq%=UJTO!#Cs|-TY-j%C1y2_9H5jlGt>HfWVn}tu z&Sz^thHkT_;dhtROdl8xMvPYo-+;I(_2)a$2}Ied`l7&^k`4bGl+0R}*=VGo-$-kp z9JqeAcck391Nn$s;xcw&7FeinwdkDQ@fqMd0j7OXmp77LgQD#0GO|DJU2BD`8T0}d;CBO@R`jk)2CEK6 z9SA=n)+#yA3*UlSu0J`Gc+52e;x$*Z#&%!=ZxuliBMOPT$tZ z!^$q=b$eqsH1l*6_7-*e{uVDBfqNMqb)Ifa?(V%&u(JLlJm9g_N zBUP~Xo=}exCB7ol&u>L&`DV9q6Afp4eet_1)MMGM`rXq zH9AVON+k!gJv}{#2KAI+>Y>29wExfPYB19~(N+;MByku`s*2WMU>nA!K2iQTdC{w>?x&#TE5Ek?_rXj2+eD!5&!DO9 z=Ro|#6XpLBFw%*r*_b#k=!n}-vw{=jVW8sFCRTc1@inv$s zhzBolPSgLWeC5~qeVU$)=r3CSKSlWOe-r=?O+T#xM~40WmrL_qoCN)c&coI;u7r|C z%l{#8GFh#r&V!zQjv2I{gxxP+@$<+)sK)2ldDmb0Kk~l^UL9LhhR%bW5q?#y+P9Xg zcJ)>8kp8v)Gyg(TAm@2bcXQ%@D!-<`LQarh_ft79{1+%Qa44Uq?Z^-EYdm=F+syP- zfR|3=k?RFuCRu*{Utxj=U*NP9p^rzdY3)1y?B0&SEahJl1aVHZbZELt_!+H#J}Kq* z*CBhRdaLhyojPh$r3n}S5%75Zj%Wl$2$d|s}6{a*&MN4`9- +#include +#include +#include +#include + +#include "nostr_websocket_tls.h" +#include "cjson/cJSON.h" + +int main(int argc, char* argv[]) { + if (argc < 3) { + fprintf(stderr, "Usage: %s [limit]\n", argv[0]); + return 1; + } + + const char* relay_url = argv[1]; + const char* pubkey = argv[2]; + int limit = (argc >= 4) ? atoi(argv[3]) : 10; + + printf("Connecting to %s ...\n", relay_url); + fflush(stdout); + + nostr_ws_client_t* ws = nostr_ws_connect(relay_url); + if (!ws) { + printf("FAILED to connect\n"); + return 1; + } + printf("Connected!\n"); + fflush(stdout); + + /* Build REQ message */ + cJSON* filter = cJSON_CreateObject(); + cJSON* authors = cJSON_CreateArray(); + cJSON_AddItemToArray(authors, cJSON_CreateString(pubkey)); + cJSON_AddItemToObject(filter, "authors", authors); + cJSON* kinds = cJSON_CreateArray(); + int kind_list[] = {0, 1, 3, 6, 10000, 10002, 30023}; + for (int i = 0; i < 7; i++) { + cJSON_AddItemToArray(kinds, cJSON_CreateNumber((double)kind_list[i])); + } + cJSON_AddItemToObject(filter, "kinds", kinds); + cJSON_AddItemToObject(filter, "limit", cJSON_CreateNumber((double)limit)); + long now = (long)time(NULL); + cJSON_AddItemToObject(filter, "until", cJSON_CreateNumber((double)now)); + + cJSON* req = cJSON_CreateArray(); + cJSON_AddItemToArray(req, cJSON_CreateString("REQ")); + cJSON_AddItemToArray(req, cJSON_CreateString("test_raw")); + cJSON_AddItemToArray(req, filter); + + char* req_str = cJSON_PrintUnformatted(req); + printf("Sending REQ: %.200s...\n", req_str); + fflush(stdout); + + int send_ret = nostr_ws_send_text(ws, req_str); + printf("send_text returned: %d\n", send_ret); + fflush(stdout); + free(req_str); + cJSON_Delete(req); + + /* Receive loop */ + char buffer[262144]; + int event_count = 0; + int eose_received = 0; + time_t start = time(NULL); + + printf("\n--- Receiving messages ---\n"); + fflush(stdout); + + while (1) { + double elapsed = difftime(time(NULL), start); + if (elapsed > 35) { + printf("[%.0fs] *** 35s total timeout reached ***\n", elapsed); + break; + } + + printf("[%.0fs] calling nostr_ws_receive (timeout=2000ms)...\n", elapsed); + fflush(stdout); + + int len = nostr_ws_receive(ws, buffer, sizeof(buffer) - 1, 2000); + elapsed = difftime(time(NULL), start); + + if (len < 0) { + printf("[%.0fs] nostr_ws_receive returned %d (error/timeout)\n", elapsed, len); + fflush(stdout); + /* Keep trying — the relay might send data later */ + continue; + } + if (len == 0) { + printf("[%.0fs] nostr_ws_receive returned 0 (connection closed)\n", elapsed); + break; + } + + buffer[len] = '\0'; + printf("[%.0fs] received %d bytes: %.200s\n", elapsed, len, buffer); + fflush(stdout); + + /* Parse the message */ + cJSON* msg = cJSON_Parse(buffer); + if (msg && cJSON_IsArray(msg)) { + cJSON* type = cJSON_GetArrayItem(msg, 0); + if (type && cJSON_IsString(type)) { + if (strcmp(type->valuestring, "EVENT") == 0) { + event_count++; + if (event_count % 50 == 0) { + printf(" >>> %d events so far\n", event_count); + } + } else if (strcmp(type->valuestring, "EOSE") == 0) { + eose_received = 1; + printf(" >>> EOSE received! total events=%d\n", event_count); + break; + } else if (strcmp(type->valuestring, "NOTICE") == 0) { + cJSON* notice = cJSON_GetArrayItem(msg, 1); + printf(" >>> NOTICE: %s\n", notice ? notice->valuestring : "?"); + } else if (strcmp(type->valuestring, "CLOSED") == 0) { + printf(" >>> CLOSED\n"); + break; + } else if (strcmp(type->valuestring, "AUTH") == 0) { + printf(" >>> AUTH challenge received\n"); + } + } + } + if (msg) cJSON_Delete(msg); + } + + printf("\n=== RESULTS ===\n"); + printf("Events: %d\n", event_count); + printf("EOSE: %s\n", eose_received ? "YES" : "NO"); + printf("Elapsed: %.0fs\n", difftime(time(NULL), start)); + + nostr_ws_close(ws); + + return eose_received ? 0 : 1; +}