[
  {
    "path": ".github/workflows/obfuscate.yml",
    "content": "name: Generate and Obfuscate Worker Script\n\non:\n  workflow_dispatch:\n  push:\n    branches:\n      - '**'  # 仅匹配分支推送，排除标签推送\n    paths:\n      - '明文源吗'\n\njobs:\n  build-and-obfuscate:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Set up Node.js\n        uses: actions/setup-node@v4\n        with:\n          node-version: '18'\n\n      - name: Install Obfuscator\n        run: npm install javascript-obfuscator\n\n      - name: Obfuscate from local source file\n        run: |\n          cat > obfuscate.js << 'EOF'\n          const JavaScriptObfuscator = require('javascript-obfuscator');\n          const fs = require('fs');\n          const path = require('path');\n          \n          const sourceFileName = '明文源吗';\n          const outputFileName = '少年你相信光吗';\n          const sourceFilePath = path.join(process.cwd(), sourceFileName);\n\n          if (!fs.existsSync(sourceFilePath)) {\n            console.error('错误：在路径 \\'' + sourceFilePath + '\\' 未找到源文件。请确保您的仓库根目录有名为 \\'明文源吗\\' 的文件。');\n            process.exit(1);\n          }\n\n          const originalCode = fs.readFileSync(sourceFilePath, 'utf8');\n\n          if (!originalCode || originalCode.trim().length === 0) {\n            console.error('错误：源文件 ' + sourceFileName + ' 为空。');\n            process.exit(1);\n          }\n\n          const obfuscationOptions = {\n              compact: true,\n              controlFlowFlattening: false,\n              controlFlowFlatteningThreshold: 0,\n              deadCodeInjection: false,\n              stringArray: true,\n              stringArrayEncoding: ['base64'],\n              stringArrayThreshold: 1.0,\n              stringArrayRotate: true,\n              stringArrayShuffle: true,\n              stringArrayWrappersCount: 2,\n              stringArrayWrappersChainedCalls: false,\n              stringArrayWrappersParametersMaxCount: 3,\n              renameGlobals: true,\n              identifierNamesGenerator: 'mangled-shuffled',\n              identifierNamesCache: null,\n              identifiersPrefix: '',\n              renameProperties: false,\n              renamePropertiesMode: 'safe',\n              ignoreImports: false,\n              target: 'browser',\n              numbersToExpressions: false,\n              simplify: false,\n              splitStrings: true,\n              splitStringsChunkLength: 1,\n              transformObjectKeys: false,\n              unicodeEscapeSequence: true,\n              selfDefending: false,\n              debugProtection: false,\n              debugProtectionInterval: 0,\n              disableConsoleOutput: true,\n              domainLock: []\n          };\n\n          const obfuscatedCode = JavaScriptObfuscator.obfuscate(originalCode, obfuscationOptions).getObfuscatedCode();\n          \n          fs.writeFileSync(path.join(process.cwd(), outputFileName), obfuscatedCode, 'utf8');\n          console.log('成功将 \\'' + sourceFileName + '\\' 混淆并保存至 \\'' + outputFileName + '\\'。');\n          EOF\n          node obfuscate.js\n\n      - name: Commit and push the obfuscated file\n        run: |\n          git config --global user.name 'GitHub Actions Bot'\n          git config --global user.email 'github-actions[bot]@users.noreply.github.com'\n          git add '少年你相信光吗'\n          if git diff --staged --quiet; then\n            echo \"No changes to commit, the obfuscated file is already up-to-date.\"\n          else\n            git commit -m \"部署用这个\"\n            git push\n          fi\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: Deploy Worker Script\n\non:\n  push:\n    tags:\n      - '*'  # 当任何标签被推送时触发\n\njobs:\n  deploy-worker:\n    runs-on: ubuntu-latest\n    \n    steps:\n      - name: Get tag name\n        id: get_tag\n        run: |\n          TAG_NAME=${GITHUB_REF#refs/tags/}\n          echo \"tag_name=$TAG_NAME\" >> $GITHUB_OUTPUT\n          echo \"当前标签: $TAG_NAME\"\n      \n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0  # 需要完整的Git历史来获取标签信息\n      \n      - name: Check if source file exists\n        run: |\n          if [ ! -f \"少年你相信光吗\" ]; then\n            echo \"错误：在项目根目录未找到 '少年你相信光吗' 文件。\"\n            exit 1\n          fi\n          echo \"成功找到源文件 '少年你相信光吗'\"\n      \n      - name: Rename file to _worker.js\n        run: |\n          cp \"少年你相信光吗\" \"_worker.js\"\n          echo \"成功将 '少年你相信光吗' 复制为 '_worker.js'\"\n          echo \"注意：文件不会提交到仓库，仅用于 Release\"\n      \n      - name: Create zip file\n        run: |\n          zip Pages.zip _worker.js wrangler.toml\n          echo \"成功将 '_worker.js' 和 'wrangler.toml' 压缩为 'Pages.zip'\"\n      \n      - name: Create GitHub Release\n        uses: softprops/action-gh-release@v1\n        with:\n          tag_name: ${{ steps.get_tag.outputs.tag_name }}\n          name: Pages ${{ steps.get_tag.outputs.tag_name }}\n          body: |\n            ## 部署信息\n            \n            - **源文件**: 少年你相信光吗\n            - **目标文件**: _worker.js\n            - **兼容性文件**: wrangler.toml (compatibility_date: 2026-01-20)\n            - **压缩文件**: Pages.zip\n            - **标签**: ${{ steps.get_tag.outputs.tag_name }}\n            - **部署时间**: ${{ github.event.head_commit.timestamp }}\n            \n            ## 文件变更\n            \n            已从 `少年你相信光吗` 生成 `_worker.js` 文件，连同 `wrangler.toml` 兼容性配置一起压缩为 `Pages.zip`。\n          draft: false\n          prerelease: false\n          files: Pages.zip\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n      \n      - name: Output summary\n        run: |\n          echo \"## 部署完成\" >> $GITHUB_STEP_SUMMARY\n          echo \"- 源文件: 少年你相信光吗\" >> $GITHUB_STEP_SUMMARY\n          echo \"- 目标文件: _worker.js\" >> $GITHUB_STEP_SUMMARY\n          echo \"- 压缩文件: Pages.zip\" >> $GITHUB_STEP_SUMMARY\n          echo \"- 标签: ${{ steps.get_tag.outputs.tag_name }}\" >> $GITHUB_STEP_SUMMARY\n          echo \"- GitHub Release 已创建\" >> $GITHUB_STEP_SUMMARY\n"
  },
  {
    "path": "README.md",
    "content": "# CFnew - 终端 v2.9.4\n\n> **⚠️ 重要：部署后请将兼容日期设置为 `2026-01-20`**\n> \n> **Pages 部署：**\n> 1. 登录 [Cloudflare 控制台](https://dash.cloudflare.com/)\n> 2. 进入 **Workers 和 Pages** → 选择你的 Pages 项目\n> 3. 点击 **设置** → **运行时**\n> 4. 找到 **兼容性日期**，选择 `2026-01-20`，点击 **保存**\n> 5. 返回 **部署** → **创建部署** → 上传文件\n> \n> **Worker 部署：**\n> 1. 登录 [Cloudflare 控制台](https://dash.cloudflare.com/)\n> 2. 进入 **Workers 和 Pages** → 选择你的 Worker\n> 3. 点击 **设置** → **运行时**\n> 4. 找到 **兼容性日期**，选择 `2026-01-20`，点击 **保存**\n\n**语言:** [中文](README.md) | [فارسی](فارسی.md)\n\n[Telegram 交流群](https://t.me/+ft-zI76oovgwNmRh)\n\n## 主要功能\n\n- 多协议支持：VLESS、Trojan、xhttp，可以同时启用多个\n- 自定义路径：不用UUID当路径了，可以自己设置，支持多级路径\n- 延迟测试：内置测试工具，测IP延迟，自动获取机场码\n- 订阅转换：可以自定义转换服务地址\n- 图形化管理：用KV存配置，改完立即生效，不用重新部署\n- API管理：支持通过API动态添加/删除优选IP\n- 多客户端：支持 CLASH、SURGE、SING-BOX、LOON、QUANTUMULT X、V2RAY、Shadowrocket、STASH、NEKORAY、V2RAYNG\n- 应用唤醒：点按钮自动打开对应客户端\n- 自动识别：根据User-Agent自动返回对应格式\n- 多语言：支持中文和波斯语，根据浏览器语言自动切换\n\n## v2.9.4 更新\n\n- 支持客户端通过 WebSocket path 参数覆盖连接级变量（`p`、`wk`、`rm`、`s`）\n  - 无需为每个节点单独部署 Worker，在分享链接的 path 里直接写参数即可\n  - 优先级：path 参数 > KV/环境变量全局配置 > 自动检测\n  - 详见下方「[客户端 path 参数](#客户端-path-参数)」说明\n\n## v2.9.3 更新\n\n- 新增图形化自定义DNS和ECH域名功能\n  - 可在界面中自定义DNS服务器地址（DoH格式）\n  - 可在界面中自定义ECH域名\n  - 支持动态更改，保存后立即生效\n  - Clash配置中的ech-opts增加query-server-name参数，与v2ray保持一致\n\n## v2.9.2 更新\n\n- 修复 Clash 配置生成问题\n\n## v2.9.1 更新\n\n- ECH支持：新增 Encrypted Client Hello (ECH) 功能\n  - 每次刷新订阅时自动获取最新的 ECH 配置\n  - 启用 ECH 时自动启用\"仅 TLS\"模式，避免 80 端口干扰\n  - 图形界面可一键开启/关闭 ECH 功能\n\n\n## v2.9 更新\n\n- 地区筛选：可以按地区筛选优选结果，支持多选\n- 延迟筛选：新增\"只显示最快的10个\"选项\n- 追加/替换模式：添加优选结果时可以追加或替换整个列表\n- 结果展示优化：显示地区标签，按延迟排序\n- 其他细节优化\n\n---\n\n### 相关工具\n\n- 优选工具：https://github.com/byJoey/yx-tools/releases\n- 文字教程：https://joeyblog.net/yuanchuang/1146.html\n- Workers视频教程：https://www.youtube.com/watch?v=aYzTr8FafN4\n- Pages视频教程：https://www.youtube.com/watch?v=JhVxJChDL-E\n- Snippets视频教程：https://www.youtube.com/watch?v=xeFeH3Akcu8\n\n### 部署\n\n订阅每15分钟自动优选一次\n\n#### 基础配置\n| 变量名 | 值 | 说明 |\n| :--- | :--- | :--- |\n| `u` | 你的 UUID | 必需，用于访问订阅和配置界面 |\n| `p` | proxyip | 可选，自定义ProxyIP地址和端口，支持 IPv4/IPv6/域名。设置后 `wk` 地区匹配失效（互斥）。也可在节点 path 里单独指定 |\n| `s` | 你的SOCKS5地址 | 可选，格式：`user:pass@host:port` 或 `host:port`。也可在节点 path 里单独指定 |\n| `d` | 自定义路径 | 可选，如 `/mypath` 或 `/path/to/sub`，不填用UUID路径。路径没 `/` 开头会自动补上 |\n| `wk` | 地区代码 | 可选，手动指定Worker地区，如 `SG`、`HK`、`US`、`JP`。设置 `p` 后此项失效（互斥）。也可在节点 path 里单独指定 |\n\n#### 协议配置\n\n| 变量名 | 值 | 说明 |\n| :--- | :--- | :--- |\n| `ev` | yes/no | 可选，启用VLESS（默认启用） |\n| `et` | yes/no | 可选，启用Trojan（默认禁用） |\n| `ex` | yes/no | 可选，启用xhttp（默认禁用） |\n| `tp` | 自定义密码 | 可选，Trojan密码，留空用UUID |\n| `ech` | yes/no | 可选，启用ECH功能（默认禁用） |\n\n#### 图形化配置（推荐）\n\n1. 在Workers中创建KV命名空间，绑定环境变量 `C`\n2. 部署后访问 `/{你的UUID}` 使用图形化配置\n3. 改完配置立即生效，不用重新部署\n\n#### 高级控制\n| 变量名 | 值 | 说明 |\n| :--- | :--- | :--- |\n| `yx` | 自定义优选IP/域名 | 可选，支持命名，格式：`1.1.1.1:443#香港节点,8.8.8.8:53#Google DNS` |\n| `yxURL` | 优选IP来源URL | 可选，自定义IP列表来源，留空用默认 |\n| `scu` | 订阅转换地址 | 可选，默认：`https://url.v1.mk/sub` |\n| `epd` | yes/no | 可选，启用优选域名（默认启用） |\n| `epi` | yes/no | 可选，启用优选IP（默认启用） |\n| `egi` | yes/no | 可选，启用GitHub默认优选（默认启用） |\n| `qj` | no | 可选，设为`no`启用降级：CF直连失败→SOCKS5→fallback |\n| `dkby` | yes | 可选，设为`yes`只生成TLS节点 |\n| `ech` | yes/no | 可选，启用ECH功能（默认禁用，启用后自动开启仅TLS模式） |\n| `yxby` | yes | 可选，设为`yes`关闭所有优选功能 |\n| `rm` | no | 可选，设为`no`关闭地区智能匹配 |\n| `ae` | yes | 可选，设为`yes`允许API管理（默认关闭） |\n\n#### KV存储设置（推荐）\n\n1. 在Cloudflare Workers中创建KV命名空间\n2. 在Workers设置中绑定KV，变量名设为 `C`\n3. 重新部署\n4. 访问 `/{你的UUID}` 使用图形化配置\n\n#### API使用\n1. 下载优选软件：https://github.com/byJoey/yx-tools/releases\n2. 开启API：访问 `/{UUID}` 或 `/{自定义路径}`，找到\"允许API管理\"，开启后保存\n3. 添加单个IP：\n```bash\n# 使用UUID路径\ncurl -X POST \"https://your-worker.workers.dev/{UUID}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"ip\": \"1.2.3.4\", \"port\": 443, \"name\": \"香港节点\"}'\n\n# 使用自定义路径（如果设置了d变量）\ncurl -X POST \"https://your-worker.workers.dev/{自定义路径}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"ip\": \"1.2.3.4\", \"port\": 443, \"name\": \"香港节点\"}'\n```\n4. 批量添加IP：\n```bash\ncurl -X POST \"https://your-worker.workers.dev/{UUID或自定义路径}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[\n    {\"ip\": \"1.2.3.4\", \"port\": 443, \"name\": \"节点1\"},\n    {\"ip\": \"5.6.7.8\", \"port\": 8443, \"name\": \"节点2\"}\n  ]'\n```\n5. 清空所有IP：\n```bash\ncurl -X DELETE \"https://your-worker.workers.dev/{UUID或自定义路径}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"all\": true}'\n```\n\n### 功能说明\n\n#### 延迟测试\n\nv2.7开始提供，v2.9增强了筛选功能\n\n- 内置测试工具，不用装其他软件，直接在配置页面测IP延迟\n- IP来源：\n  - 手动输入：直接输IP或域名，支持批量（逗号分隔）\n  - CF随机IP：从Cloudflare IP段随机生成\n  - URL获取：从远程URL获取IP列表\n- 支持1-50线程并发测试，默认5线程\n- 自动获取机场码（如SJC、LAX）\n- 自动映射中文机场名（SJC→圣何塞）\n- 自动扣除DNS+TLS握手时间，显示真实延迟\n- 设置自动保存到浏览器\n- 支持按地区筛选\n- 支持只显示最快的10个\n- 支持追加或替换模式\n\n#### 多协议支持\n\n- VLESS：默认启用\n- Trojan：支持Trojan-WS-TLS，可以自定义密码，不填就用UUID\n- xhttp：基于HTTP POST的伪装协议\n- 可以同时启用多个协议，客户端会自动识别\n- 图形界面一键开关\n- 协议配置有独立保存按钮\n\n#### ECH 功能 (Encrypted Client Hello)\n\n- 支持 Encrypted Client Hello (ECH) 加密客户端握手\n- 自动获取：每次刷新订阅时自动从 DoH 获取最新的 ECH 配置\n- 优先使用 Google DNS，失败时自动尝试 Cloudflare DNS\n- 智能模式：启用 ECH 时自动启用\"仅 TLS\"模式，避免 80 端口干扰\n- 图形界面：可在协议配置区域一键开启/关闭\n- 调试信息：在浏览器开发者工具的响应头中可查看详细的 ECH 获取过程\n- 响应头信息：\n  - `X-ECH-Status`: SUCCESS 或 FAILED\n  - `X-ECH-Debug`: 详细的调试信息\n  - `X-ECH-Config-Length`: ECH 配置长度（成功时）\n\n#### 自定义路径（d变量）\n\n- 不用UUID当路径了，可以自己设置\n- 支持多级路径，如 `/path/to/sub`\n- 路径没 `/` 开头会自动补上\n- 自定义路径后UUID路径自动禁用\n- 可以随时在图形界面改路径\n\n#### 图形化配置\n\n- 用Cloudflare KV存配置\n- 访问 `/{你的UUID}` 或 `/{自定义路径}` 就能用\n- 改完立即生效，不用重新部署\n- 优先级：KV配置 > 环境变量 > 默认值\n\n#### 多语言支持\n\n- 根据浏览器语言自动选择中文或波斯语\n- 右上角可以手动切换\n- 语言选择会保存到浏览器\n- 波斯语自动启用RTL布局\n\n#### 订阅转换控制\n\n- 可以自定义转换服务URL\n- 可以单独控制优选域名、优选IP、GitHub优选\n- 默认全部启用\n- 改完立即生效\n\n#### API管理\n\n- 通过RESTful API管理优选IP，不用改代码\n- 支持批量添加\n- 支持清空所有IP\n- 默认关闭，需要在图形界面开启\n- API添加的IP和手动配置的yx变量会自动合并\n- API端点：\n  - `GET /{UUID或路径}/api/preferred-ips` - 查询列表\n  - `POST /{UUID或路径}/api/preferred-ips` - 添加（单个/批量）\n  - `DELETE /{UUID或路径}/api/preferred-ips` - 删除（单个/全部）\n\n#### 客户端 path 参数\n\nv2.9.4 新增。在 VLESS/Trojan 分享链接的 `path` 字段里追加查询参数，即可为**单个节点**单独指定连接级配置，无需额外部署 Worker。\n\n| 参数 | 作用 | 示例 |\n| :--- | :--- | :--- |\n| `p` | 覆盖 ProxyIP（支持带端口） | `p=1.1.1.1` 或 `p=1.2.3.4:8443` |\n| `wk` | 覆盖 Worker 地区 | `wk=jp`、`wk=us`、`wk=sg` |\n| `rm` | 关闭地区智能匹配 | `rm=no` |\n| `s` | 覆盖 SOCKS5 代理 | `s=user:pass@host:1080` |\n\n**优先级：path 参数 > KV/环境变量 > 自动检测**\n\n> ⚠️ **`p` 和 `wk` 互斥**：设置 `p` 后会直接使用指定的 ProxyIP，`wk` 的地区匹配逻辑被完全跳过，两者同时写只有 `p` 生效。\n\npath 示例：\n```\n# 指定 ProxyIP（不要同时写 wk）\n/?ed=2048&p=1.1.1.1\n/?ed=2048&p=proxy.example.com:443\n/?ed=2048&p=[2001:db8::1]:443\n\n# 指定地区（让 Worker 自动选该地区的 ProxyIP）\n/?ed=2048&wk=jp\n/?ed=2048&wk=sg&rm=no\n\n# 指定 SOCKS5（可与 wk 搭配）\n/?ed=2048&s=user:pass@socks5.host:1080&wk=us\n```\n\n> 不在上表中的变量（如 `ev`、`et`、`yx` 等）属于订阅生成级配置，在 WebSocket 握手阶段已过路由，放在 path 里无效，仍需在环境变量或 KV 中设置。\n\n#### 手动指定地区\n\n- 可以手动指定Worker地区，覆盖自动检测\n- 设置方式：`wk=SG` 或图形界面选择，或在节点 path 里加 `wk=SG`\n- 支持：US、SG、JP、HK、KR、DE、SE、NL、FI、GB\n\n#### 优选节点命名\n\n- 支持自定义名称，格式：`IP:端口#节点名称`\n- 示例：`1.1.1.1:443#香港节点,8.8.8.8:53#Google DNS`\n- 不设置名称会自动生成 `自定义优选-IP:端口`\n\n#### 系统状态\n\n- 显示Worker地区、检测方式、ProxyIP状态\n- 选择逻辑：同地区 → 邻近地区 → 其他地区\n\n#### 高级控制\n\n- `rm=no` 关闭地区智能匹配\n- `qj=no` 启用降级模式（CF直连失败→SOCKS5→fallback）\n- `dkby=yes` 只生成TLS节点\n- `ech=yes` 启用ECH功能（启用后自动开启仅TLS模式）\n- `yxby=yes` 关闭所有优选功能\n\n#### 多客户端支持\n\n支持10种客户端：CLASH、SURGE、SING-BOX、LOON、QUANTUMULT X、V2RAY、Shadowrocket、STASH、NEKORAY、V2RAYNG\n\n- 根据客户端类型自动生成配置\n- 图形界面一键生成订阅链接\n- 点按钮自动打开对应客户端\n- 根据User-Agent自动识别并返回对应格式\n- 不同客户端自动适配最佳协议组合\n- 所有TLS链接自动包含 `h3,h2,http/1.1` 协议协商\n\n#### 性能优化\n\n- 每15分钟自动优选一次\n- 多重备用方案\n- 智能缓存，减少重复计算\n\n### 致谢\n\n- 基于 [zizifn/edgetunnel](https://github.com/zizifn/edgetunnel) 修改\n- ProxyIP部分来自 [cmliu](https://github.com/cmliu)\n- 反代IP来自 [qwer-search](https://github.com/qwer-search)\n- 在线优选接口来自 [白嫖哥](https://t.me/bestcfipas)\n\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=byJoey/cfnew&type=Timeline)](https://www.star-history.com/#byJoey/cfnew&Timeline&LogScale)\n"
  },
  {
    "path": "snippets",
    "content": "import { connect } from 'cloudflare:sockets';\n\n// --- 硬编码配置 ---\nconst authToken = 'f64bdc57-0f54-4705-bf75-cfd646d98c06';\nlet fallbackAddress = '';\nconst socks5Config = '';\n// 手动指定地区（留空则自动检测，可选值：US、SG、JP、HK、KR、DE、SE、NL、FI、GB）\nconst manualWorkerRegion = '';\n// D短地址（自定义路径，留空则使用UUID路径，支持多级路径如：mypath 或 path/to/sub）\nconst customPath = '';\n// GitHub订阅URL（硬编码）\nconst githubPreferredURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n// 启用GitHub优选IP（true启用，false禁用）\nconst enableGitHubPreferred = true;\n// 启用其他优选（域名优选，true启用，false禁用）\nconst enableOtherPreferred = true;\n// API地址配置（订阅转换服务）\nconst apiBaseUrl = 'https://url.v1.mk/sub';\n\nconst directDomains = [\n  { name: \"cloudflare.182682.xyz\", domain: \"cloudflare.182682.xyz\" },\n  { name: \"speed.marisalnc.com\", domain: \"speed.marisalnc.com\" },\n  { domain: \"freeyx.cloudflare88.eu.org\" }, { domain: \"bestcf.top\" },\n  { domain: \"cdn.2020111.xyz\" }, { domain: \"cfip.cfcdn.vip\" },\n  { domain: \"cf.0sm.com\" }, { domain: \"cf.090227.xyz\" },\n  { domain: \"cf.zhetengsha.eu.org\" }, { domain: \"cloudflare.9jy.cc\" },\n  { domain: \"cf.zerone-cdn.pp.ua\" }, { domain: \"cfip.1323123.xyz\" },\n  { domain: \"cnamefuckxxs.yuchen.icu\" }, { domain: \"cloudflare-ip.mofashi.ltd\" },\n  { domain: \"115155.xyz\" }, { domain: \"cname.xirancdn.us\" },\n  { domain: \"f3058171cad.002404.xyz\" }, { domain: \"8.889288.xyz\" },\n  { domain: \"cdn.tzpro.xyz\" }, { domain: \"cf.877771.xyz\" },\n  { domain: \"xn--b6gac.eu.org\" }\n];\n\nconst parsedSocks5Config = {};\nconst isSocksEnabled = false;\n\nlet enableRegionMatching = true;\nlet currentWorkerRegion = '';\n\nconst backupIPs = [\n  { domain: 'ProxyIP.US.CMLiussss.net', region: 'US', regionCode: 'US', port: 443 },\n  { domain: 'ProxyIP.SG.CMLiussss.net', region: 'SG', regionCode: 'SG', port: 443 },\n  { domain: 'ProxyIP.JP.CMLiussss.net', region: 'JP', regionCode: 'JP', port: 443 },\n  { domain: 'ProxyIP.HK.CMLiussss.net', region: 'HK', regionCode: 'HK', port: 443 },\n  { domain: 'ProxyIP.KR.CMLiussss.net', region: 'KR', regionCode: 'KR', port: 443 },\n  { domain: 'ProxyIP.DE.CMLiussss.net', region: 'DE', regionCode: 'DE', port: 443 },\n  { domain: 'ProxyIP.SE.CMLiussss.net', region: 'SE', regionCode: 'SE', port: 443 },\n  { domain: 'ProxyIP.NL.CMLiussss.net', region: 'NL', regionCode: 'NL', port: 443 },\n  { domain: 'ProxyIP.FI.CMLiussss.net', region: 'FI', regionCode: 'FI', port: 443 },\n  { domain: 'ProxyIP.GB.CMLiussss.net', region: 'GB', regionCode: 'GB', port: 443 }\n];\n\nconst E_INVALID_DATA = atob('aW52YWxpZCBkYXRh');\nconst E_INVALID_USER = atob('aW52YWxpZCB1c2Vy');\nconst E_UNSUPPORTED_CMD = atob('Y29tbWFuZCBpcyBub3Qgc3VwcG9ydGVk');\nconst E_UDP_DNS_ONLY = atob('VURQIHByb3h5IG9ubHkgZW5hYmxlIGZvciBETlMgd2hpY2ggaXMgcG9ydCA1Mw==');\nconst E_INVALID_ADDR_TYPE = atob('aW52YWxpZCBhZGRyZXNzVHlwZQ==');\nconst E_EMPTY_ADDR = atob('YWRkcmVzc1ZhbHVlIGlzIGVtcHR5');\nconst E_WS_NOT_OPEN = atob('d2ViU29ja2V0LmVhZHlTdGF0ZSBpcyBub3Qgb3Blbg==');\nconst E_INVALID_ID_STR = atob('U3RyaW5naWZpZWQgaWRlbnRpZmllciBpcyBpbnZhbGlk');\nconst E_INVALID_SOCKS_ADDR = atob('SW52YWxpZCBTT0NLUyBhZGRyZXNzIGZvcm1hdA==');\nconst E_SOCKS_NO_METHOD = atob('bm8gYWNjZXB0YWJsZSBtZXRob2Rz');\nconst E_SOCKS_AUTH_NEEDED = atob('c29ja3Mgc2VydmVyIG5lZWRzIGF1dGg=');\nconst E_SOCKS_AUTH_FAIL = atob('ZmFpbCB0byBhdXRoIHNvY2tzIHNlcnZlcg==');\nconst E_SOCKS_CONN_FAIL = atob('ZmFpbCB0byBvcGVuIHNvY2tzIGNvbm5lY3Rpb24=');\n\nconst ADDRESS_TYPE_IPV4 = 1;\nconst ADDRESS_TYPE_URL = 2;\nconst ADDRESS_TYPE_IPV6 = 3;\n\nasync function detectWorkerRegion(request) {\n  try {\n    const cfCountry = request.cf?.country;\n    if (cfCountry) {\n      const countryToRegion = {\n        'US': 'US', 'SG': 'SG', 'JP': 'JP', 'HK': 'HK', 'KR': 'KR',\n        'DE': 'DE', 'SE': 'SE', 'NL': 'NL', 'FI': 'FI', 'GB': 'GB',\n        'CN': 'HK', 'TW': 'HK', 'AU': 'SG', 'CA': 'US',\n        'FR': 'DE', 'IT': 'DE', 'ES': 'DE', 'CH': 'DE',\n        'AT': 'DE', 'BE': 'NL', 'DK': 'SE', 'NO': 'SE', 'IE': 'GB'\n      };\n      if (countryToRegion[cfCountry]) return countryToRegion[cfCountry];\n    }\n    return 'HK';\n  } catch (error) {\n    return 'HK';\n  }\n}\n\nfunction getNearbyRegions(region) {\n  const nearbyMap = {\n    'US': ['SG', 'JP', 'HK', 'KR'],\n    'SG': ['JP', 'HK', 'KR', 'US'],\n    'JP': ['SG', 'HK', 'KR', 'US'],\n    'HK': ['SG', 'JP', 'KR', 'US'],\n    'KR': ['JP', 'HK', 'SG', 'US'],\n    'DE': ['NL', 'GB', 'SE', 'FI'],\n    'SE': ['DE', 'NL', 'FI', 'GB'],\n    'NL': ['DE', 'GB', 'SE', 'FI'],\n    'FI': ['SE', 'DE', 'NL', 'GB'],\n    'GB': ['DE', 'NL', 'SE', 'FI']\n  };\n  return nearbyMap[region] || [];\n}\n\nfunction getAllRegionsByPriority(region) {\n  const nearbyRegions = getNearbyRegions(region);\n  const allRegions = ['US', 'SG', 'JP', 'HK', 'KR', 'DE', 'SE', 'NL', 'FI', 'GB'];\n  return [region, ...nearbyRegions, ...allRegions.filter(r => r !== region && !nearbyRegions.includes(r))];\n}\n\nfunction getSmartRegionSelection(workerRegion, availableIPs) {\n  if (!enableRegionMatching || !workerRegion) return availableIPs;\n  const priorityRegions = getAllRegionsByPriority(workerRegion);\n  const sortedIPs = [];\n  for (const region of priorityRegions) {\n    const regionIPs = availableIPs.filter(ip => ip.regionCode === region);\n    sortedIPs.push(...regionIPs);\n  }\n  return sortedIPs;\n}\n\nasync function getBestBackupIP(workerRegion = '') {\n  if (backupIPs.length === 0) return null;\n  const availableIPs = backupIPs.map(ip => ({ ...ip, available: true }));\n  if (enableRegionMatching && workerRegion) {\n    const sortedIPs = getSmartRegionSelection(workerRegion, availableIPs);\n    if (sortedIPs.length > 0) return sortedIPs[0];\n  }\n  return availableIPs[0];\n}\n\nfunction parseAddressAndPort(input) {\n  if (!input) return { address: '', port: null };\n  if (input.includes('[') && input.includes(']')) {\n    const match = input.match(/^\\[([^\\]]+)\\](?::(\\d+))?$/);\n    if (match) {\n      return { address: match[1], port: match[2] ? parseInt(match[2], 10) : null };\n    }\n  }\n  const lastColonIndex = input.lastIndexOf(':');\n  if (lastColonIndex > 0) {\n    const address = input.substring(0, lastColonIndex);\n    const portStr = input.substring(lastColonIndex + 1);\n    const port = parseInt(portStr, 10);\n    if (!isNaN(port) && port > 0 && port <= 65535) return { address, port };\n  }\n  return { address: input, port: null };\n}\n\nexport default {\n  async fetch(request, env, ctx) {\n    try {\n      const url = new URL(request.url);\n\n      if (manualWorkerRegion && manualWorkerRegion.trim()) {\n        currentWorkerRegion = manualWorkerRegion.trim().toUpperCase();\n      } else {\n        currentWorkerRegion = await detectWorkerRegion(request);\n      }\n\n      let currentFallbackAddress = fallbackAddress;\n      if (!currentFallbackAddress && currentWorkerRegion) {\n        const bestBackupIP = await getBestBackupIP(currentWorkerRegion);\n        if (bestBackupIP) currentFallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port;\n      }\n\n      if (request.headers.get('Upgrade') === 'websocket') {\n        return await handleWsRequest(request, currentFallbackAddress);\n      } else if (request.method === 'GET') {\n        if (url.pathname === '/') {\n          const successHtml = `<!DOCTYPE html><html lang=\"zh-CN\"><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><title>服务正常</title><style>body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;display:flex;justify-content:center;align-items:center;height:100vh;margin:0;background-color:#121212;color:#e0e0e0;text-align:center;}.container{padding:2rem;border-radius:8px;background-color:#1e1e1e;box-shadow:0 4px 6px rgba(0,0,0,0.1);}h1{color:#4caf50;}</style></head><body><div class=\"container\"><h1>✅ 服务正常</h1><p>请继续后面的操作。</p></div></body></html>`;\n          return new Response(successHtml, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } });\n        }\n\n        if (customPath && customPath.trim()) {\n          const cleanCustomPath = customPath.trim().startsWith('/') ? customPath.trim() : '/' + customPath.trim();\n          const normalizedCustomPath = cleanCustomPath.endsWith('/') && cleanCustomPath.length > 1 ? cleanCustomPath.slice(0, -1) : cleanCustomPath;\n          const normalizedPath = url.pathname.endsWith('/') && url.pathname.length > 1 ? url.pathname.slice(0, -1) : url.pathname;\n\n          if (normalizedPath === normalizedCustomPath) {\n            return await handleSubscriptionPage(request, authToken);\n          }\n\n          if (normalizedPath === normalizedCustomPath + '/sub') {\n            return await handleSubscriptionRequest(request, authToken, url);\n          }\n\n          if (url.pathname.length > 1 && url.pathname !== '/') {\n            const user = url.pathname.replace(/\\/$/, '').replace('/sub', '').substring(1);\n            if (isValidFormat(user)) {\n              return new Response(JSON.stringify({\n                error: '访问被拒绝',\n                message: '当前 Worker 已启用自定义路径模式，UUID 访问已禁用'\n              }), {\n                status: 403,\n                headers: { 'Content-Type': 'application/json; charset=utf-8' }\n              });\n            }\n          }\n        } else {\n          if (url.pathname.length > 1 && url.pathname !== '/' && !url.pathname.includes('/sub')) {\n            const uuid = url.pathname.replace(/\\/$/, '').substring(1);\n            if (isValidFormat(uuid)) {\n              if (uuid === authToken) return await handleSubscriptionPage(request, uuid);\n              return new Response('UUID错误', { status: 403 });\n            }\n          }\n\n          if (url.pathname.includes('/sub')) {\n            const pathParts = url.pathname.split('/');\n            if (pathParts.length === 2 && pathParts[1] === 'sub') {\n              const uuid = pathParts[0].substring(1);\n              if (isValidFormat(uuid)) {\n                if (uuid === authToken) return await handleSubscriptionRequest(request, uuid, url);\n                return new Response('UUID错误', { status: 403 });\n              }\n            }\n          }\n\n          if (url.pathname.toLowerCase().includes(`/${authToken}`)) {\n            return await handleSubscriptionRequest(request, authToken);\n          }\n        }\n      }\n      return new Response('Not Found', { status: 404 });\n    } catch (err) {\n      return new Response(err.toString(), { status: 500 });\n    }\n  },\n};\n\nasync function handleSubscriptionPage(request, uuid = null) {\n  if (!uuid) uuid = authToken;\n\n  const pageHtml = `<!DOCTYPE html>\n<html lang=\"zh-CN\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>订阅中心</title>\n<style>\n*{margin:0;padding:0;box-sizing:border-box}\nbody{font-family:\"Courier New\",monospace;background:#000;color:#00ff00;min-height:100vh;overflow-x:hidden;position:relative}\n.matrix-bg{position:fixed;top:0;left:0;width:100%;height:100%;background:linear-gradient(45deg,#000 0%,#001100 50%,#000 100%);z-index:-1}\n.matrix-rain{position:fixed;top:0;left:0;width:100%;height:100%;background:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,255,0,0.03) 2px,rgba(0,255,0,0.03) 4px);animation:matrix-fall 20s linear infinite;z-index:-1}\n@keyframes matrix-fall{0%{transform:translateY(-100%)}100%{transform:translateY(100vh)}}\n.container{max-width:900px;margin:0 auto;padding:20px;position:relative;z-index:1}\n.header{text-align:center;margin-bottom:40px}\n.title{font-size:3rem;font-weight:bold;text-shadow:0 0 10px #00ff00,0 0 20px #00ff00,0 0 30px #00ff00;margin-bottom:10px;animation:matrix-glow 2s ease-in-out infinite alternate}\n@keyframes matrix-glow{from{text-shadow:0 0 10px #00ff00,0 0 20px #00ff00,0 0 30px #00ff00}to{text-shadow:0 0 20px #00ff00,0 0 30px #00ff00,0 0 40px #00ff00}}\n.subtitle{color:#00aa00;margin-bottom:30px;font-size:1.2rem}\n.card{background:rgba(0,20,0,0.8);border:2px solid #00ff00;border-radius:0;padding:30px;margin-bottom:20px;box-shadow:0 0 20px rgba(0,255,0,0.3);position:relative}\n.card::before{content:\"\";position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(45deg,transparent 49%,#00ff00 50%,transparent 51%);opacity:0.1;pointer-events:none}\n.card-title{font-size:1.8rem;margin-bottom:20px;color:#00ff00;text-shadow:0 0 5px #00ff00}\n.client-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:15px;margin:20px 0}\n.client-btn{background:rgba(0,20,0,0.6);border:2px solid #00ff00;padding:15px 20px;color:#00ff00;font-family:\"Courier New\",monospace;font-weight:bold;cursor:pointer;transition:all 0.3s ease;text-align:center;position:relative;overflow:hidden}\n.client-btn::before{content:\"\";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(0,255,0,0.3),transparent);transition:left 0.5s ease}\n.client-btn:hover::before{left:100%}\n.client-btn:hover{background:rgba(0,255,0,0.2);box-shadow:0 0 15px #00ff00;transform:translateY(-2px)}\n.generate-btn{background:rgba(0,255,0,0.1);border:2px solid #00ff00;padding:15px 30px;color:#00ff00;font-family:\"Courier New\",monospace;font-weight:bold;cursor:pointer;transition:all 0.3s ease;margin-right:15px}\n.generate-btn:hover{background:rgba(0,255,0,0.3);box-shadow:0 0 20px #00ff00;transform:translateY(-2px)}\n.subscription-url{background:rgba(0,0,0,0.8);border:1px solid #00ff00;padding:15px;word-break:break-all;font-family:\"Courier New\",monospace;color:#00ff00;margin-top:20px;display:none;box-shadow:inset 0 0 10px rgba(0,255,0,0.3)}\n.matrix-text{position:fixed;top:20px;right:20px;color:#00ff00;font-family:\"Courier New\",monospace;font-size:0.8rem;opacity:0.6;animation:matrix-flicker 3s infinite}\n@keyframes matrix-flicker{0%,100%{opacity:0.6}50%{opacity:1}}\n</style>\n</head>\n<body>\n<div class=\"matrix-bg\"></div>\n<div class=\"matrix-rain\"></div>\n<div class=\"matrix-text\">代理订阅中心精简版 v2.1</div>\n<div class=\"container\">\n<div class=\"header\">\n<h1 class=\"title\">代理订阅中心</h1>\n<p class=\"subtitle\">多客户端支持 • 智能优选 • 一键生成</p>\n</div>\n<div class=\"card\">\n<h2 class=\"card-title\">[ 选择客户端 ]</h2>\n<div class=\"client-grid\">\n<button class=\"client-btn\" onclick=\"generateClientLink('clash','CLASH')\">CLASH</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('surge','SURGE')\">SURGE</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('singbox','SING-BOX')\">SING-BOX</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('loon','LOON')\">LOON</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('quanx','QUANTUMULT X')\">QUANTUMULT X</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('v2ray','V2RAY')\">V2RAY</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('v2ray','Shadowrocket')\">Shadowrocket</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('v2ray','V2RAYNG')\">V2RAYNG</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('v2ray','NEKORAY')\">NEKORAY</button>\n<button class=\"client-btn\" onclick=\"generateClientLink('clash','STASH')\">STASH</button>\n</div>\n<div class=\"subscription-url\" id=\"clientSubscriptionUrl\"></div>\n</div>\n<div class=\"card\">\n<h2 class=\"card-title\">[ 快速获取 ]</h2>\n<button class=\"generate-btn\" onclick=\"getBase64Subscription()\">获取订阅链接</button>\n<div class=\"subscription-url\" id=\"base64SubscriptionUrl\"></div>\n</div>\n<div class=\"card\">\n<h2 class=\"card-title\">[ 相关链接 ]</h2>\n<div style=\"text-align:center;margin:20px 0\">\n<a href=\"https://github.com/byJoey/cfnew\" target=\"_blank\" style=\"color:#00ff00;text-decoration:none;margin:0 20px;font-size:1.2rem;text-shadow:0 0 5px #00ff00\">GitHub 项目</a>\n<a href=\"https://www.youtube.com/@joeyblog\" target=\"_blank\" style=\"color:#00ff00;text-decoration:none;margin:0 20px;font-size:1.2rem;text-shadow:0 0 5px #00ff00\">YouTube @joeyblog</a>\n</div>\n</div>\n</div>\n<script>\nvar SUB_CONVERTER_URL=\"${apiBaseUrl}\";\nfunction tryOpenApp(schemeUrl,fallbackCallback,timeout){\ntimeout=timeout||2500;\nvar appOpened=false;\nvar callbackExecuted=false;\nvar startTime=Date.now();\nvar blurHandler=function(){\nvar elapsed=Date.now()-startTime;\nif(elapsed<3000&&!callbackExecuted){appOpened=true;}\n};\nwindow.addEventListener('blur',blurHandler);\nvar hiddenHandler=function(){\nvar elapsed=Date.now()-startTime;\nif(elapsed<3000&&!callbackExecuted){appOpened=true;}\n};\ndocument.addEventListener('visibilitychange',hiddenHandler);\nvar iframe=document.createElement('iframe');\niframe.style.display='none';\niframe.style.width='1px';\niframe.style.height='1px';\niframe.src=schemeUrl;\ndocument.body.appendChild(iframe);\nsetTimeout(function(){\nif(iframe.parentNode)iframe.parentNode.removeChild(iframe);\nwindow.removeEventListener('blur',blurHandler);\ndocument.removeEventListener('visibilitychange',hiddenHandler);\nif(!callbackExecuted){\ncallbackExecuted=true;\nif(!appOpened&&fallbackCallback)fallbackCallback();\n}\n},timeout);\n}\nfunction generateClientLink(clientType,clientName){\nvar currentUrl=window.location.href;\nvar subscriptionUrl=currentUrl+\"/sub\";\nvar schemeUrl='';\nvar displayName=clientName||'';\nvar finalUrl=subscriptionUrl;\nif(clientType==='v2ray'){\nfinalUrl=subscriptionUrl;\ndocument.getElementById(\"clientSubscriptionUrl\").textContent=finalUrl;\ndocument.getElementById(\"clientSubscriptionUrl\").style.display=\"block\";\nif(clientName==='V2RAY'){\nnavigator.clipboard.writeText(finalUrl).then(function(){alert(displayName+\" 订阅链接已复制\");});\n}else if(clientName==='Shadowrocket'){\nschemeUrl='shadowrocket://add/'+encodeURIComponent(finalUrl);\ntryOpenApp(schemeUrl,function(){\nnavigator.clipboard.writeText(finalUrl).then(function(){alert(displayName+\" 订阅链接已复制\");});\n});\n}else if(clientName==='V2RAYNG'){\nschemeUrl='v2rayng://install?url='+encodeURIComponent(finalUrl);\ntryOpenApp(schemeUrl,function(){\nnavigator.clipboard.writeText(finalUrl).then(function(){alert(displayName+\" 订阅链接已复制\");});\n});\n}else if(clientName==='NEKORAY'){\nschemeUrl='nekoray://install-config?url='+encodeURIComponent(finalUrl);\ntryOpenApp(schemeUrl,function(){\nnavigator.clipboard.writeText(finalUrl).then(function(){alert(displayName+\" 订阅链接已复制\");});\n});\n}\n}else{\nvar encodedUrl=encodeURIComponent(subscriptionUrl);\nfinalUrl=SUB_CONVERTER_URL+\"?target=\"+clientType+\"&url=\"+encodedUrl+\"&insert=false\";\ndocument.getElementById(\"clientSubscriptionUrl\").textContent=finalUrl;\ndocument.getElementById(\"clientSubscriptionUrl\").style.display=\"block\";\nif(clientType==='clash'){\nif(clientName==='STASH'){\nschemeUrl='stash://install?url='+encodeURIComponent(finalUrl);\ndisplayName='STASH';\n}else{\nschemeUrl='clash://install-config?url='+encodeURIComponent(finalUrl);\ndisplayName='CLASH';\n}\n}else if(clientType==='surge'){\nschemeUrl='surge:///install-config?url='+encodeURIComponent(finalUrl);\ndisplayName='SURGE';\n}else if(clientType==='singbox'){\nschemeUrl='sing-box://install-config?url='+encodeURIComponent(finalUrl);\ndisplayName='SING-BOX';\n}else if(clientType==='loon'){\nschemeUrl='loon://install?url='+encodeURIComponent(finalUrl);\ndisplayName='LOON';\n}else if(clientType==='quanx'){\nschemeUrl='quantumult-x://install-config?url='+encodeURIComponent(finalUrl);\ndisplayName='QUANTUMULT X';\n}\nif(schemeUrl){\ntryOpenApp(schemeUrl,function(){\nnavigator.clipboard.writeText(finalUrl).then(function(){alert(displayName+\" 订阅链接已复制\");});\n});\n}else{\nnavigator.clipboard.writeText(finalUrl).then(function(){alert(displayName+\" 订阅链接已复制\");});\n}\n}\n}\nfunction getBase64Subscription(){\nvar currentUrl=window.location.href;\nvar subscriptionUrl=currentUrl+\"/sub\";\nfetch(subscriptionUrl).then(function(response){return response.text();}).then(function(base64Content){\ndocument.getElementById(\"base64SubscriptionUrl\").textContent=base64Content;\ndocument.getElementById(\"base64SubscriptionUrl\").style.display=\"block\";\nnavigator.clipboard.writeText(base64Content).then(function(){alert(\"Base64订阅内容已复制\");});\n}).catch(function(error){alert(\"获取订阅失败，请重试\");});\n}\n</script>\n</body>\n</html>`;\n\n  return new Response(pageHtml, {\n    status: 200,\n    headers: { 'Content-Type': 'text/html; charset=utf-8' }\n  });\n}\n\nasync function handleSubscriptionRequest(request, uuid, url = null) {\n  if (!url) url = new URL(request.url);\n\n  const finalLinks = [];\n  const workerDomain = url.hostname;\n\n  const nativeList = [{ ip: workerDomain, isp: '原生地址' }];\n  finalLinks.push(...generateLinksFromSource(nativeList, uuid, workerDomain));\n\n  if (enableOtherPreferred) {\n    const domainList = directDomains.map(d => ({ ip: d.domain, isp: d.name || d.domain }));\n    finalLinks.push(...generateLinksFromSource(domainList, uuid, workerDomain));\n  }\n\n  if (enableGitHubPreferred) {\n    const newIPList = await fetchAndParseNewIPs();\n    if (newIPList.length > 0) finalLinks.push(...generateLinksFromNewIPs(newIPList, uuid, workerDomain));\n  }\n\n  if (finalLinks.length === 0) {\n    const errorRemark = \"所有节点获取失败\";\n    const errorLink = `vless://00000000-0000-0000-0000-000000000000@127.0.0.1:80?encryption=none&security=none&type=ws&host=error.com&path=%2F#${encodeURIComponent(errorRemark)}`;\n    finalLinks.push(errorLink);\n  }\n\n  const subscriptionContent = btoa(finalLinks.join('\\n'));\n\n  return new Response(subscriptionContent, {\n    headers: {\n      'Content-Type': 'text/plain; charset=utf-8',\n      'Cache-Control': 'no-store, no-cache, must-revalidate, max-age=0',\n    },\n  });\n}\n\nfunction generateLinksFromSource(list, uuid, workerDomain) {\n  const httpsPorts = [443];\n  const links = [];\n  const wsPath = '/?ed=2048';\n  const proto = 'vless';\n\n  list.forEach(item => {\n    const nodeNameBase = item.isp.replace(/\\s/g, '_');\n    const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip;\n\n    httpsPorts.forEach(port => {\n      const wsNodeName = `${nodeNameBase}-${port}-WS-TLS`;\n      const wsParams = new URLSearchParams({\n        encryption: 'none',\n        security: 'tls',\n        sni: workerDomain,\n        fp: 'randomized',\n        type: 'ws',\n        host: workerDomain,\n        path: wsPath\n      });\n      links.push(`${proto}://${uuid}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`);\n    });\n  });\n\n  return links;\n}\n\nasync function fetchAndParseNewIPs() {\n  const url = githubPreferredURL;\n  try {\n    const response = await fetch(url);\n    if (!response.ok) return [];\n    const text = await response.text();\n    const results = [];\n    const lines = text.trim().replace(/\\r/g, \"\").split('\\n');\n    const regex = /^([^:]+):(\\d+)#(.*)$/;\n\n    for (const line of lines) {\n      const trimmedLine = line.trim();\n      if (!trimmedLine) continue;\n      const match = trimmedLine.match(regex);\n      if (match) {\n        results.push({\n          ip: match[1],\n          port: parseInt(match[2], 10),\n          name: match[3].trim() || match[1]\n        });\n      }\n    }\n    return results;\n  } catch (error) {\n    return [];\n  }\n}\n\nfunction generateLinksFromNewIPs(list, uuid, workerDomain) {\n  const links = [];\n  const wsPath = '/?ed=2048';\n  const proto = 'vless';\n\n  list.forEach(item => {\n    const nodeName = item.name;\n    const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip;\n    const params = {\n      encryption: 'none',\n      security: 'tls',\n      sni: workerDomain,\n      fp: 'randomized',\n      type: 'ws',\n      host: workerDomain,\n      path: wsPath\n    };\n    const wsParams = new URLSearchParams(params);\n    links.push(`${proto}://${uuid}@${safeIP}:${item.port}?${wsParams.toString()}#${encodeURIComponent(nodeName)}`);\n  });\n\n  return links;\n}\n\nasync function handleWsRequest(request, currentFallbackAddress = null) {\n  const wsPair = new WebSocketPair();\n  const [clientSock, serverSock] = Object.values(wsPair);\n  serverSock.accept();\n\n  let remoteConnWrapper = { socket: null };\n  let isDnsQuery = false;\n\n  const fbAddr = currentFallbackAddress || fallbackAddress;\n\n  const earlyData = request.headers.get('sec-websocket-protocol') || '';\n  const readable = makeReadableStream(serverSock, earlyData);\n\n  readable.pipeTo(new WritableStream({\n    async write(chunk) {\n      if (isDnsQuery) return await forwardUDP(chunk, serverSock, null);\n      if (remoteConnWrapper.socket) {\n        const writer = remoteConnWrapper.socket.writable.getWriter();\n        await writer.write(chunk);\n        writer.releaseLock();\n        return;\n      }\n      const { hasError, message, addressType, port, hostname, rawIndex, version, isUDP } = parseWsPacketHeader(chunk, authToken);\n      if (hasError) throw new Error(message);\n\n      if (isUDP) {\n        if (port === 53) isDnsQuery = true;\n        else throw new Error(E_UDP_DNS_ONLY);\n      }\n      const respHeader = new Uint8Array([version[0], 0]);\n      const rawData = chunk.slice(rawIndex);\n\n      if (isDnsQuery) return forwardUDP(rawData, serverSock, respHeader);\n      await forwardTCP(addressType, hostname, port, rawData, serverSock, respHeader, remoteConnWrapper, fbAddr);\n    },\n  })).catch((err) => { console.log('WS Stream Error:', err); });\n\n  return new Response(null, { status: 101, webSocket: clientSock });\n}\n\nasync function forwardTCP(addrType, host, portNum, rawData, ws, respHeader, remoteConnWrapper, fbAddr = null) {\n  async function connectAndSend(address, port) {\n    const remoteSock = connect({ hostname: address, port: port });\n    const writer = remoteSock.writable.getWriter();\n    await writer.write(rawData);\n    writer.releaseLock();\n    return remoteSock;\n  }\n\n  async function retryConnection() {\n    let fallbackHost, fallbackPort;\n    if (fbAddr && fbAddr.trim()) {\n      const parsed = parseAddressAndPort(fbAddr);\n      fallbackHost = parsed.address;\n      fallbackPort = parsed.port || portNum;\n    } else if (fallbackAddress && fallbackAddress.trim()) {\n      const parsed = parseAddressAndPort(fallbackAddress);\n      fallbackHost = parsed.address;\n      fallbackPort = parsed.port || portNum;\n    } else {\n      const bestBackupIP = await getBestBackupIP(currentWorkerRegion);\n      fallbackHost = bestBackupIP ? bestBackupIP.domain : host;\n      fallbackPort = bestBackupIP ? bestBackupIP.port : portNum;\n    }\n    const newSocket = await connectAndSend(fallbackHost || host, fallbackPort);\n    remoteConnWrapper.socket = newSocket;\n    newSocket.closed.catch(() => { }).finally(() => closeSocketQuietly(ws));\n    connectStreams(newSocket, ws, respHeader, null);\n  }\n\n  try {\n    const initialSocket = await connectAndSend(host, portNum);\n    remoteConnWrapper.socket = initialSocket;\n    connectStreams(initialSocket, ws, respHeader, retryConnection);\n  } catch (err) {\n    console.log('Initial connection failed, trying fallback:', err);\n    retryConnection();\n  }\n}\n\nfunction parseWsPacketHeader(chunk, token) {\n  if (chunk.byteLength < 24) return { hasError: true, message: E_INVALID_DATA };\n  const version = new Uint8Array(chunk.slice(0, 1));\n  if (formatIdentifier(new Uint8Array(chunk.slice(1, 17))) !== token) return { hasError: true, message: E_INVALID_USER };\n  const optLen = new Uint8Array(chunk.slice(17, 18))[0];\n  const cmd = new Uint8Array(chunk.slice(18 + optLen, 19 + optLen))[0];\n  let isUDP = false;\n  if (cmd === 1) { }\n  else if (cmd === 2) { isUDP = true; }\n  else { return { hasError: true, message: E_UNSUPPORTED_CMD }; }\n\n  const portIdx = 19 + optLen;\n  const port = new DataView(chunk.slice(portIdx, portIdx + 2)).getUint16(0);\n  let addrIdx = portIdx + 2, addrLen = 0, addrValIdx = addrIdx + 1, hostname = '';\n  const addressType = new Uint8Array(chunk.slice(addrIdx, addrValIdx))[0];\n\n  switch (addressType) {\n    case ADDRESS_TYPE_IPV4:\n      addrLen = 4;\n      hostname = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + addrLen)).join('.');\n      break;\n    case ADDRESS_TYPE_URL:\n      addrLen = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + 1))[0];\n      addrValIdx += 1;\n      hostname = new TextDecoder().decode(chunk.slice(addrValIdx, addrValIdx + addrLen));\n      break;\n    case ADDRESS_TYPE_IPV6:\n      addrLen = 16;\n      const ipv6 = [];\n      const ipv6View = new DataView(chunk.slice(addrValIdx, addrValIdx + addrLen));\n      for (let i = 0; i < 8; i++) ipv6.push(ipv6View.getUint16(i * 2).toString(16));\n      hostname = ipv6.join(':');\n      break;\n    default:\n      return { hasError: true, message: `${E_INVALID_ADDR_TYPE}: ${addressType}` };\n  }\n\n  if (!hostname) return { hasError: true, message: `${E_EMPTY_ADDR}: ${addressType}` };\n  return { hasError: false, addressType, port, hostname, isUDP, rawIndex: addrValIdx + addrLen, version };\n}\n\nfunction makeReadableStream(socket, earlyDataHeader) {\n  let cancelled = false;\n  return new ReadableStream({\n    start(controller) {\n      socket.addEventListener('message', (event) => { if (!cancelled) controller.enqueue(event.data); });\n      socket.addEventListener('close', () => { if (!cancelled) { closeSocketQuietly(socket); controller.close(); } });\n      socket.addEventListener('error', (err) => controller.error(err));\n      const { earlyData, error } = base64ToArray(earlyDataHeader);\n      if (error) controller.error(error);\n      else if (earlyData) controller.enqueue(earlyData);\n    },\n    cancel() { cancelled = true; closeSocketQuietly(socket); }\n  });\n}\n\nasync function connectStreams(remoteSocket, webSocket, headerData, retryFunc) {\n  let header = headerData, hasData = false;\n  await remoteSocket.readable.pipeTo(\n    new WritableStream({\n      async write(chunk, controller) {\n        hasData = true;\n        if (webSocket.readyState !== 1) controller.error(E_WS_NOT_OPEN);\n        if (header) {\n          webSocket.send(await new Blob([header, chunk]).arrayBuffer());\n          header = null;\n        } else {\n          webSocket.send(chunk);\n        }\n      },\n      abort(reason) { console.error(\"Readable aborted:\", reason); },\n    })\n  ).catch((error) => { console.error(\"Stream connection error:\", error); closeSocketQuietly(webSocket); });\n\n  if (!hasData && retryFunc) retryFunc();\n}\n\nasync function forwardUDP(udpChunk, webSocket, respHeader) {\n  try {\n    const tcpSocket = connect({ hostname: '8.8.4.4', port: 53 });\n    let vlessHeader = respHeader;\n    const writer = tcpSocket.writable.getWriter();\n    await writer.write(udpChunk);\n    writer.releaseLock();\n    await tcpSocket.readable.pipeTo(new WritableStream({\n      async write(chunk) {\n        if (webSocket.readyState === 1) {\n          if (vlessHeader) {\n            webSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());\n            vlessHeader = null;\n          } else {\n            webSocket.send(chunk);\n          }\n        }\n      },\n    }));\n  } catch (error) {\n    console.error(`DNS forward error: ${error.message}`);\n  }\n}\n\nfunction base64ToArray(b64Str) {\n  if (!b64Str) return { error: null };\n  try {\n    b64Str = b64Str.replace(/-/g, '+').replace(/_/g, '/');\n    return { earlyData: Uint8Array.from(atob(b64Str), (c) => c.charCodeAt(0)).buffer, error: null };\n  } catch (error) {\n    return { error };\n  }\n}\n\nfunction isValidFormat(uuid) {\n  return /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(uuid);\n}\n\nfunction closeSocketQuietly(socket) {\n  try { if (socket.readyState === 1 || socket.readyState === 2) socket.close(); }\n  catch (error) { }\n}\n\nconst hexTable = Array.from({ length: 256 }, (v, i) => (i + 256).toString(16).slice(1));\n\nfunction formatIdentifier(arr, offset = 0) {\n  const id = (\n    hexTable[arr[offset]] + hexTable[arr[offset + 1]] + hexTable[arr[offset + 2]] + hexTable[arr[offset + 3]] + \"-\" +\n    hexTable[arr[offset + 4]] + hexTable[arr[offset + 5]] + \"-\" +\n    hexTable[arr[offset + 6]] + hexTable[arr[offset + 7]] + \"-\" +\n    hexTable[arr[offset + 8]] + hexTable[arr[offset + 9]] + \"-\" +\n    hexTable[arr[offset + 10]] + hexTable[arr[offset + 11]] + hexTable[arr[offset + 12]] + hexTable[arr[offset + 13]] +\n    hexTable[arr[offset + 14]] + hexTable[arr[offset + 15]]\n  ).toLowerCase();\n  if (!isValidFormat(id)) throw new TypeError(E_INVALID_ID_STR);\n  return id;\n}\n"
  },
  {
    "path": "wrangler.toml",
    "content": "compatibility_date = \"2026-01-20\"\n"
  },
  {
    "path": "فارسی.md",
    "content": "# CFnew - ترمینال v2.9.3\n\n**زبان:** [中文](README.md) | [فارسی](فارسی.md)\n\n[Telegram گروه](https://t.me/+ft-zI76oovgwNmRh)\n\n## ویژگی‌های اصلی\n\n- پشتیبانی چند پروتکل: VLESS، Trojan، xhttp، می‌تونید همزمان چند تا رو فعال کنید\n- مسیر سفارشی: دیگه از UUID به عنوان مسیر استفاده نمی‌شه، می‌تونید خودتون تنظیم کنید، پشتیبانی از مسیرهای چند سطحی\n- تست تاخیر: ابزار تست داخلی، تست تاخیر IP، دریافت خودکار کد فرودگاه\n- تبدیل اشتراک: می‌تونید آدرس سرویس تبدیل رو خودتون تنظیم کنید\n- مدیریت گرافیکی: با KV ذخیره می‌شه، تغییرات بلافاصله اعمال می‌شه، نیازی به استقرار مجدد نیست\n- مدیریت API: از طریق RESTful API می‌تونید IP ترجیحی رو مدیریت کنید\n- پشتیبانی چند کلاینت: CLASH، SURGE، SING-BOX، LOON، QUANTUMULT X، V2RAY، Shadowrocket، STASH، NEKORAY، V2RAYNG\n- بیدار کردن برنامه: با کلیک روی دکمه خودکار برنامه کلاینت باز می‌شه\n- تشخیص خودکار: بر اساس User-Agent خودکار تشخیص می‌ده و قالب مناسب رو برمی‌گردونه\n- پشتیبانی چند زبان: پشتیبانی از چینی و فارسی، بر اساس زبان مرورگر خودکار تغییر می‌کنه\n\n## به‌روزرسانی v2.9.3\n\n- ویژگی جدید سفارشی‌سازی DNS و دامنه ECH در رابط گرافیکی\n  - می‌تونید آدرس سرور DNS رو خودتون تنظیم کنید (فرمت DoH)\n  - می‌تونید دامنه ECH رو خودتون تنظیم کنید\n  - پشتیبانی از تغییرات پویا، بعد از ذخیره بلافاصله اعمال می‌شه\n  - پارامتر query-server-name به ech-opts در پیکربندی Clash اضافه شد، با v2ray هماهنگ شد\n\n## به‌روزرسانی v2.9\n\n- فیلتر منطقه: می‌تونید نتایج ترجیحی رو بر اساس منطقه فیلتر کنید، پشتیبانی از چند انتخاب\n- فیلتر تاخیر: گزینه جدید \"فقط نمایش 10 تا سریع‌ترین\"\n- حالت اضافه/جایگزین: هنگام افزودن نتایج ترجیحی می‌تونید اضافه کنید یا کل لیست رو جایگزین کنید\n- بهینه‌سازی نمایش نتایج: نمایش برچسب منطقه، مرتب‌سازی بر اساس تاخیر\n- بهینه‌سازی‌های جزئی دیگر\n\n---\n\n### ابزارهای مرتبط\n\n- ابزار ترجیحی: https://github.com/byJoey/yx-tools/releases\n- آموزش متنی: https://joeyblog.net/yuanchuang/1146.html\n- آموزش ویدیویی Workers: https://www.youtube.com/watch?v=aYzTr8FafN4\n- آموزش ویدیویی Pages: https://www.youtube.com/watch?v=JhVxJChDL-E\n- آموزش ویدیویی Snippets: https://www.youtube.com/watch?v=xeFeH3Akcu8\n\n### استقرار\n\nاشتراک هر 15 دقیقه یکبار خودکار انتخاب می‌شه\n\n#### پیکربندی پایه\n| نام متغیر | مقدار | توضیحات |\n| :--- | :--- | :--- |\n| `u` | UUID شما | الزامی، برای دسترسی به اشتراک و رابط مدیریت |\n| `p` | proxyip | اختیاری، آدرس و پورت ProxyIP سفارشی |\n| `s` | آدرس SOCKS5 شما | اختیاری، فرمت: `user:pass@host:port` یا `host:port` |\n| `d` | مسیر سفارشی | اختیاری، مثل `/mypath` یا `/path/to/sub`، اگر خالی بذارید از UUID استفاده می‌شه. اگر مسیر با `/` شروع نشه خودکار اضافه می‌شه |\n| `wk` | کد منطقه | اختیاری، مثل `SG`، `HK`، `US`، `JP` |\n\n#### پیکربندی پروتکل\n\n| نام متغیر | مقدار | توضیحات |\n| :--- | :--- | :--- |\n| `ev` | yes/no | اختیاری، فعال‌سازی VLESS (پیش‌فرض فعال) |\n| `et` | yes/no | اختیاری، فعال‌سازی Trojan (پیش‌فرض غیرفعال) |\n| `ex` | yes/no | اختیاری، فعال‌سازی xhttp (پیش‌فرض غیرفعال) |\n| `tp` | رمز عبور سفارشی | اختیاری، رمز عبور Trojan، خالی بذارید از UUID استفاده می‌شه |\n\n#### پیکربندی گرافیکی (توصیه می‌شه)\n\n1. در Workers یک فضای نام KV ایجاد کنید، متغیر محیطی `C` رو متصل کنید\n2. بعد از استقرار به `/{UUID شما}` برید تا از رابط گرافیکی استفاده کنید\n3. تغییرات بلافاصله اعمال می‌شه، نیازی به استقرار مجدد نیست\n\n#### کنترل پیشرفته\n| نام متغیر | مقدار | توضیحات |\n| :--- | :--- | :--- |\n| `yx` | IP/دامنه ترجیحی سفارشی | اختیاری، پشتیبانی از نامگذاری، فرمت: `1.1.1.1:443#گره هنگ‌کنگ,8.8.8.8:53#Google DNS` |\n| `yxURL` | URL منبع IP ترجیحی | اختیاری، اگر خالی بذارید از آدرس پیش‌فرض استفاده می‌شه |\n| `scu` | آدرس تبدیل اشتراک | اختیاری، پیش‌فرض: `https://url.v1.mk/sub` |\n| `epd` | yes/no | اختیاری، فعال‌سازی دامنه ترجیحی (پیش‌فرض فعال) |\n| `epi` | yes/no | اختیاری، فعال‌سازی IP ترجیحی (پیش‌فرض فعال) |\n| `egi` | yes/no | اختیاری، فعال‌سازی ترجیح GitHub (پیش‌فرض فعال) |\n| `qj` | no | اختیاری، وقتی `no` باشه حالت کاهش سطح فعال می‌شه: CF مستقیم ناموفق → SOCKS5 → fallback |\n| `dkby` | yes | اختیاری، وقتی `yes` باشه فقط گره‌های TLS تولید می‌شه |\n| `yxby` | yes | اختیاری، وقتی `yes` باشه تمام عملکردهای ترجیحی خاموش می‌شه |\n| `rm` | no | اختیاری، وقتی `no` باشه تطبیق هوشمند منطقه خاموش می‌شه |\n| `ae` | yes | اختیاری، وقتی `yes` باشه اجازه مدیریت API داده می‌شه (پیش‌فرض خاموش) |\n\n#### تنظیمات KV (توصیه می‌شه)\n\n1. در Cloudflare Workers یک فضای نام KV ایجاد کنید\n2. در تنظیمات Workers KV رو متصل کنید، نام متغیر رو `C` بذارید\n3. Workers رو دوباره استقرار بدید\n4. به `/{UUID شما}` برید تا از رابط گرافیکی استفاده کنید\n\n#### استفاده از API\n1. نرم‌افزار ترجیحی: https://github.com/byJoey/yx-tools/releases\n2. فعال‌سازی API: به `/{UUID}` یا `/{مسیر سفارشی}` برید، \"اجازه مدیریت API\" رو پیدا کنید، فعال کنید و ذخیره کنید\n3. افزودن IP تک:\n```bash\n# استفاده از مسیر UUID\ncurl -X POST \"https://your-worker.workers.dev/{UUID}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"ip\": \"1.2.3.4\", \"port\": 443, \"name\": \"گره هنگ‌کنگ\"}'\n\n# استفاده از مسیر سفارشی (اگر متغیر d تنظیم شده باشد)\ncurl -X POST \"https://your-worker.workers.dev/{مسیر سفارشی}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"ip\": \"1.2.3.4\", \"port\": 443, \"name\": \"گره هنگ‌کنگ\"}'\n```\n4. افزودن دسته‌ای IP:\n```bash\ncurl -X POST \"https://your-worker.workers.dev/{UUID یا مسیر سفارشی}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '[\n    {\"ip\": \"1.2.3.4\", \"port\": 443, \"name\": \"گره 1\"},\n    {\"ip\": \"5.6.7.8\", \"port\": 8443, \"name\": \"گره 2\"}\n  ]'\n```\n5. پاک کردن همه IP:\n```bash\ncurl -X DELETE \"https://your-worker.workers.dev/{UUID یا مسیر سفارشی}/api/preferred-ips\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"all\": true}'\n```\n\n### توضیحات عملکرد\n\n#### تست تاخیر\n\nاز v2.7 شروع شد، v2.9 فیلتر رو تقویت کرد\n\n- ابزار تست داخلی، نیازی به نصب نرم‌افزار دیگه نیست، مستقیماً در صفحه پیکربندی تست تاخیر IP\n- منابع IP:\n  - ورودی دستی: مستقیماً IP یا دامنه وارد کنید، پشتیبانی از دسته‌ای (با کاما جدا کنید)\n  - IP تصادفی CF: از محدوده IP Cloudflare به صورت تصادفی تولید می‌شه\n  - دریافت از URL: از URL راه‌دور لیست IP رو دریافت می‌کنه\n- پشتیبانی از تست همزمان 1-50 رشته، پیش‌فرض 5 رشته\n- دریافت خودکار کد فرودگاه (مثل SJC، LAX)\n- نگاشت خودکار نام فرودگاه چینی (SJC→سن‌خوزه)\n- کسر خودکار زمان DNS+TLS، نمایش تاخیر واقعی\n- تنظیمات خودکار در مرورگر ذخیره می‌شه\n- پشتیبانی از فیلتر بر اساس منطقه\n- پشتیبانی از نمایش فقط 10 تا سریع‌ترین\n- پشتیبانی از حالت اضافه یا جایگزین\n\n#### پشتیبانی چند پروتکل\n\n- VLESS: پیش‌فرض فعال\n- Trojan: پشتیبانی از Trojan-WS-TLS، می‌تونید رمز عبور سفارشی بذارید، خالی بذارید از UUID استفاده می‌شه\n- xhttp: پروتکل استتار مبتنی بر HTTP POST\n- می‌تونید همزمان چند پروتکل رو فعال کنید، کلاینت خودکار تشخیص می‌ده\n- در رابط گرافیکی می‌تونید با یک کلیک فعال/غیرفعال کنید\n- دکمه ذخیره مستقل برای پیکربندی پروتکل\n\n#### مسیر سفارشی (متغیر d)\n\n- دیگه از UUID به عنوان مسیر استفاده نمی‌شه، می‌تونید خودتون تنظیم کنید\n- پشتیبانی از مسیرهای چند سطحی، مثل `/path/to/sub`\n- اگر مسیر با `/` شروع نشه خودکار اضافه می‌شه\n- بعد از مسیر سفارشی مسیر UUID خودکار غیرفعال می‌شه\n- می‌تونید هر زمان از رابط گرافیکی مسیر رو تغییر بدید\n\n#### مدیریت پیکربندی گرافیکی\n\n- از Cloudflare KV برای ذخیره پیکربندی استفاده می‌شه\n- به `/{UUID شما}` یا `/{مسیر سفارشی}` برید تا از رابط استفاده کنید\n- تغییرات بلافاصله اعمال می‌شه، نیازی به استقرار مجدد نیست\n- اولویت: پیکربندی KV > متغیر محیطی > مقدار پیش‌فرض\n\n#### پشتیبانی چند زبان\n\n- بر اساس زبان مرورگر خودکار چینی یا فارسی رو انتخاب می‌کنه\n- در گوشه بالا راست می‌تونید دستی تغییر بدید\n- انتخاب زبان در مرورگر ذخیره می‌شه\n- نسخه فارسی خودکار RTL رو فعال می‌کنه\n\n#### کنترل تبدیل اشتراک\n\n- می‌تونید آدرس سرویس تبدیل رو خودتون تنظیم کنید\n- می‌تونید دامنه ترجیحی، IP ترجیحی، ترجیح GitHub رو جداگانه کنترل کنید\n- پیش‌فرض همه فعال هستند\n- تغییرات بلافاصله اعمال می‌شه\n\n#### مدیریت API\n\n- از طریق RESTful API می‌تونید IP ترجیحی رو مدیریت کنید، نیازی به تغییر کد نیست\n- پشتیبانی از افزودن دسته‌ای\n- پشتیبانی از پاک کردن همه IP\n- پیش‌فرض خاموشه، باید در رابط گرافیکی فعال کنید\n- IP های اضافه شده از طریق API با متغیر yx خودکار ادغام می‌شه\n- API endpoints:\n  - `GET /{UUID یا مسیر}/api/preferred-ips` - پرس‌وجوی لیست\n  - `POST /{UUID یا مسیر}/api/preferred-ips` - افزودن (تک/دسته‌ای)\n  - `DELETE /{UUID یا مسیر}/api/preferred-ips` - حذف (تک/همه)\n\n#### تعیین دستی منطقه\n\n- می‌تونید دستی منطقه Worker رو تنظیم کنید، تشخیص خودکار رو بازنویسی می‌کنه\n- تنظیم: `wk=SG` یا از رابط گرافیکی\n- پشتیبانی از: US، SG، JP، HK، KR، DE، SE، NL، FI، GB\n\n#### نامگذاری گره ترجیحی\n\n- می‌تونید نام سفارشی بذارید، فرمت: `IP:پورت#نام گره`\n- مثال: `1.1.1.1:443#گره هنگ‌کنگ,8.8.8.8:53#Google DNS`\n- اگر نام نذارید خودکار `ترجیح سفارشی-IP:پورت` تولید می‌شه\n\n#### وضعیت سیستم\n\n- نمایش منطقه Worker، روش تشخیص، وضعیت ProxyIP\n- منطق انتخاب: هم‌منطقه → منطقه مجاور → سایر مناطق\n\n#### کنترل پیشرفته\n\n- `rm=no` خاموش کردن تطبیق هوشمند منطقه\n- `qj=no` فعال‌سازی حالت کاهش سطح (CF مستقیم ناموفق → SOCKS5 → fallback)\n- `dkby=yes` فقط تولید گره‌های TLS\n- `yxby=yes` خاموش کردن تمام عملکردهای ترجیحی\n\n#### پشتیبانی چند کلاینت\n\nپشتیبانی از 10 کلاینت: CLASH، SURGE، SING-BOX، LOON، QUANTUMULT X، V2RAY، Shadowrocket، STASH، NEKORAY، V2RAYNG\n\n- بر اساس نوع کلاینت خودکار پیکربندی تولید می‌شه\n- در رابط گرافیکی می‌تونید یک کلیکی لینک اشتراک بگیرید\n- با کلیک روی دکمه خودکار برنامه کلاینت باز می‌شه\n- بر اساس User-Agent خودکار تشخیص می‌ده\n- کلاینت‌های مختلف خودکار با بهترین ترکیب پروتکل سازگار می‌شه\n- تمام لینک‌های TLS خودکار شامل `h3,h2,http/1.1` می‌شه\n\n#### بهینه‌سازی عملکرد\n\n- هر 15 دقیقه یکبار خودکار انتخاب می‌شه\n- چندین طرح پشتیبان\n- کش هوشمند، کاهش محاسبات تکراری\n\n### تشکر\n\n- بر اساس [zizifn/edgetunnel](https://github.com/zizifn/edgetunnel) اصلاح شده\n- ProxyIP از [cmliu](https://github.com/cmliu)\n- IP پروکسی معکوس از [qwer-search](https://github.com/qwer-search)\n- رابط ترجیح آنلاین از [白嫖哥](https://t.me/bestcfipas)\n## تاریخچه ستاره\n\n[![Star History Chart](https://api.star-history.com/svg?repos=byJoey/cfnew&type=Timeline)](https://www.star-history.com/#byJoey/cfnew&Timeline&LogScale)\n\n\n"
  },
  {
    "path": "少年你相信光吗",
    "content": "const Yf=G;const YV=G;(function(RY,RG){const YX=G;const YQ=G;const RO=RY();while(!![]){try{const RF=-parseInt(YX(0xa7))/0x1+-parseInt(YQ(0x9c))/0x2*(parseInt(YX(0xac))/0x3)+-parseInt(YX(0xa9))/0x4+-parseInt(YX(0xd9))/0x5*(-parseInt(YX(0xb9))/0x6)+-parseInt(YQ(0x9e))/0x7+-parseInt(YX(0xc4))/0x8*(-parseInt(YQ(0xe0))/0x9)+parseInt(YQ(0x96))/0xa;if(RF===RG){break;}else{RO['push'](RO['shift']());}}catch(Rt){RO['push'](RO['shift']());}}}(Y,0x43ad8));function G(D,R){D=D-0x77;const O=Y();let F=O[D];if(G['\\x70\\x56\\x42\\x4a\\x6b\\x65']===undefined){var t=function(S){const M='\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x6b\\x6c\\x6d\\x6e\\x6f\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x4b\\x4c\\x4d\\x4e\\x4f\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x30\\x31\\x32\\x33\\x34\\x35\\x36\\x37\\x38\\x39\\x2b\\x2f\\x3d';let g='';let i='';for(let C=0x0,v,d,H=0x0;d=S['\\x63\\x68\\x61\\x72\\x41\\x74'](H++);~d&&(v=C%0x4?v*0x40+d:d,C++%0x4)?g+=String['\\x66\\x72\\x6f\\x6d\\x43\\x68\\x61\\x72\\x43\\x6f\\x64\\x65'](0xff&v>>(-0x2*C&0x6)):0x0){d=M['\\x69\\x6e\\x64\\x65\\x78\\x4f\\x66'](d);}for(let J=0x0,X=g['\\x6c\\x65\\x6e\\x67\\x74\\x68'];J<X;J++){i+='\\x25'+('\\x30\\x30'+g['\\x63\\x68\\x61\\x72\\x43\\x6f\\x64\\x65\\x41\\x74'](J)['\\x74\\x6f\\x53\\x74\\x72\\x69\\x6e\\x67'](0x10))['\\x73\\x6c\\x69\\x63\\x65'](-0x2);}return decodeURIComponent(i);};G['\\x51\\x64\\x43\\x70\\x77\\x55']=t;G['\\x6e\\x4d\\x45\\x4d\\x69\\x57']={};G['\\x70\\x56\\x42\\x4a\\x6b\\x65']=!![];}const K=O[0x0];const q=D+K;const I=G['\\x6e\\x4d\\x45\\x4d\\x69\\x57'][q];if(!I){F=G['\\x51\\x64\\x43\\x70\\x77\\x55'](F);G['\\x6e\\x4d\\x45\\x4d\\x69\\x57'][q]=F;}else{F=I;}return F;}const O=(function(){let RY=!![];return function(RG,RO){const RF=RY?function(){if(RO){const Rt=RO['\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x79'](RG,arguments);RO=null;return Rt;}}:function(){};RY=![];return RF;};}());const F=O(this,function(){const RY=function(){let Rt;try{Rt=Function('\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+('\\x7b'+'\\x7d'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x72'+'\\x75'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x28'+'\\x22'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x22'+'\\x29'+'\\x28'+'\\x20'+'\\x29')+('\\x29'+'\\x3b'))();}catch(RK){Rt=window;}return Rt;};const RG=RY();const RO=RG['\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65']=RG['\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65']||{};const RF=['\\x6c'+'\\x6f'+'\\x67','\\x77'+'\\x61'+'\\x72'+'\\x6e','\\x69'+'\\x6e'+'\\x66'+'\\x6f','\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72','\\x65'+'\\x78'+'\\x63'+'\\x65'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e','\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65','\\x74'+'\\x72'+'\\x61'+'\\x63'+'\\x65'];for(let Rt=0x0;Rt<RF['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];Rt++){const RK=O['\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x72'+'\\x75'+'\\x63'+'\\x74'+'\\x6f'+'\\x72']['\\x70'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x74'+'\\x79'+'\\x70'+'\\x65']['\\x62'+'\\x69'+'\\x6e'+'\\x64'](O);const Rq=RF[Rt];const RI=RO[Rq]||RK;RK['\\x5f'+'\\x5f'+'\\x70'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x5f'+'\\x5f']=O['\\x62'+'\\x69'+'\\x6e'+'\\x64'](O);RK['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']=RI['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']['\\x62'+'\\x69'+'\\x6e'+'\\x64'](RI);RO[Rq]=RK;}});F();import{connect}from'\\x63\\x6c\\x6f\\x75\\x64\\x66\\x6c\\x61\\x72\\x65\\x3a\\x73\\x6f\\x63\\x6b\\x65\\x74\\x73';let t='\\x33'+'\\x35'+'\\x31'+'\\x63'+'\\x39'+'\\x39'+'\\x38'+'\\x31'+'\\x2d'+'\\x30'+'\\x34'+'\\x62'+'\\x36'+'\\x2d'+'\\x34'+'\\x31'+'\\x30'+'\\x33'+'\\x2d'+'\\x61'+'\\x61'+'\\x34'+'\\x62'+'\\x2d'+'\\x38'+'\\x36'+'\\x34'+'\\x61'+'\\x61'+'\\x39'+'\\x63'+'\\x39'+'\\x31'+'\\x34'+'\\x36'+'\\x39';let K='';let q='';let I=[];let S=[];let M=![];let g=![];let i=![];let C=!![];let v='';let d='';let H='';let J='';let X=!![];function Y(){const Yj=['\\x38\\x6a\\x2b\\x68\\x52\\x70\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x51\\x46\\x63\\x46\\x48\\x37\\x38','\\x38\\x6a\\x2b\\x68\\x55\\x70\\x63\\x46\\x48\\x37\\x53','\\x38\\x6a\\x2b\\x68\\x53\\x56\\x63\\x46\\x48\\x37\\x69','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x36\\x79','\\x38\\x6a\\x2b\\x68\\x52\\x56\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x54\\x2f\\x63\\x46\\x48\\x37\\x47','\\x6d\\x74\\x69\\x59\\x6f\\x64\\x65\\x58\\x6d\\x4c\\x50\\x4e\\x72\\x32\\x39\\x32\\x42\\x57','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x36\\x79','\\x38\\x6a\\x2b\\x68\\x52\\x56\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x52\\x46\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x56\\x2f\\x63\\x46\\x48\\x36\\x79','\\x38\\x6a\\x2b\\x68\\x51\\x56\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x53\\x2f\\x63\\x46\\x48\\x37\\x71','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x37\\x61','\\x38\\x6a\\x2b\\x68\\x51\\x56\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x51\\x2f\\x63\\x46\\x48\\x36\\x38','\\x38\\x6a\\x2b\\x68\\x53\\x46\\x63\\x46\\x48\\x37\\x4f','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x36\\x30','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x54\\x56\\x63\\x46\\x48\\x36\\x79','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x36\\x4b','\\x38\\x6a\\x2b\\x68\\x55\\x46\\x63\\x46\\x48\\x37\\x6d','\\x38\\x6a\\x2b\\x68\\x51\\x46\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x52\\x2f\\x63\\x46\\x48\\x37\\x69','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x37\\x38','\\x38\\x6a\\x2b\\x68\\x55\\x70\\x63\\x46\\x48\\x36\\x47','\\x38\\x6a\\x2b\\x68\\x51\\x56\\x63\\x46\\x48\\x36\\x47','\\x6e\\x75\\x6a\\x66\\x41\\x30\\x76\\x4d\\x73\\x47','\\x38\\x6a\\x2b\\x68\\x52\\x56\\x63\\x46\\x48\\x37\\x65','\\x38\\x6a\\x2b\\x68\\x52\\x70\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x52\\x70\\x63\\x46\\x48\\x36\\x43','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x53\\x46\\x63\\x46\\x48\\x36\\x79','\\x38\\x6a\\x2b\\x68\\x53\\x46\\x63\\x46\\x48\\x37\\x61','\\x6d\\x74\\x48\\x68\\x43\\x30\\x6a\\x35\\x7a\\x77\\x79','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x53\\x2f\\x63\\x46\\x48\\x37\\x65','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x37\\x47','\\x38\\x6a\\x2b\\x68\\x55\\x70\\x63\\x46\\x48\\x36\\x57','\\x38\\x6a\\x2b\\x68\\x54\\x70\\x63\\x46\\x48\\x37\\x69','\\x38\\x6a\\x2b\\x68\\x53\\x2f\\x63\\x46\\x48\\x37\\x38','\\x38\\x6a\\x2b\\x68\\x53\\x70\\x63\\x46\\x48\\x36\\x30','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x55\\x56\\x63\\x46\\x48\\x37\\x34','\\x38\\x6a\\x2b\\x68\\x55\\x46\\x63\\x46\\x48\\x36\\x30','\\x38\\x6a\\x2b\\x68\\x55\\x46\\x63\\x46\\x48\\x37\\x38','\\x38\\x6a\\x2b\\x68\\x55\\x46\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x53\\x56\\x63\\x46\\x48\\x37\\x30','\\x38\\x6a\\x2b\\x68\\x52\\x46\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x37\\x65','\\x38\\x6a\\x2b\\x68\\x51\\x56\\x63\\x46\\x48\\x37\\x47','\\x38\\x6a\\x2b\\x68\\x52\\x56\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x50\\x56\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x56\\x2f\\x63\\x46\\x48\\x37\\x69','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x37\\x6d','\\x38\\x6a\\x2b\\x68\\x52\\x70\\x63\\x46\\x48\\x37\\x4f','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x37\\x65','\\x38\\x6a\\x2b\\x68\\x51\\x56\\x63\\x46\\x48\\x36\\x57','\\x38\\x6a\\x2b\\x68\\x53\\x46\\x63\\x46\\x48\\x36\\x43','\\x38\\x6a\\x2b\\x68\\x52\\x2f\\x63\\x46\\x48\\x37\\x75','\\x38\\x6a\\x2b\\x68\\x51\\x46\\x63\\x46\\x48\\x37\\x61','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x37\\x34','\\x38\\x6a\\x2b\\x68\\x50\\x56\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x53\\x70\\x63\\x46\\x48\\x37\\x57','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x37\\x71','\\x38\\x6a\\x2b\\x68\\x54\\x46\\x63\\x46\\x48\\x36\\x53','\\x38\\x6a\\x2b\\x68\\x52\\x46\\x63\\x46\\x48\\x37\\x4f','\\x38\\x6a\\x2b\\x68\\x50\\x56\\x63\\x46\\x48\\x37\\x4f','\\x38\\x6a\\x2b\\x68\\x54\\x2f\\x63\\x46\\x48\\x37\\x71','\\x38\\x6a\\x2b\\x68\\x52\\x70\\x63\\x46\\x48\\x36\\x30','\\x38\\x6a\\x2b\\x68\\x52\\x2f\\x63\\x46\\x48\\x37\\x71','\\x38\\x6a\\x2b\\x68\\x56\\x2f\\x63\\x46\\x48\\x37\\x57','\\x38\\x6a\\x2b\\x68\\x53\\x56\\x63\\x46\\x48\\x37\\x34','\\x6d\\x74\\x6d\\x34\\x6e\\x64\\x75\\x34\\x6e\\x4a\\x62\\x58\\x44\\x68\\x76\\x4f\\x76\\x4d\\x57','\\x38\\x6a\\x2b\\x68\\x54\\x2f\\x63\\x46\\x48\\x37\\x4f','\\x38\\x6a\\x2b\\x68\\x55\\x56\\x63\\x46\\x48\\x37\\x47','\\x38\\x6a\\x2b\\x68\\x53\\x46\\x63\\x46\\x48\\x37\\x53','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x36\\x57','\\x38\\x6a\\x2b\\x68\\x53\\x56\\x63\\x46\\x48\\x37\\x4f','\\x6d\\x74\\x65\\x57\\x6d\\x74\\x61\\x5a\\x6e\\x65\\x35\\x52\\x75\\x4c\\x72\\x67\\x76\\x61','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x36\\x30','\\x6d\\x5a\\x65\\x58\\x6e\\x4a\\x65\\x5a\\x6e\\x67\\x72\\x4f\\x44\\x67\\x66\\x6f\\x42\\x61','\\x38\\x6a\\x2b\\x68\\x53\\x2f\\x63\\x46\\x48\\x36\\x57','\\x38\\x6a\\x2b\\x68\\x53\\x46\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x55\\x56\\x63\\x46\\x48\\x36\\x79','\\x38\\x6a\\x2b\\x68\\x50\\x2f\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x51\\x2f\\x63\\x46\\x48\\x36\\x34','\\x38\\x6a\\x2b\\x68\\x52\\x46\\x63\\x46\\x48\\x37\\x6d','\\x38\\x6a\\x2b\\x68\\x55\\x70\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x55\\x70\\x63\\x46\\x48\\x36\\x34','\\x6d\\x5a\\x6d\\x57\\x6e\\x5a\\x47\\x34\\x77\\x4b\\x7a\\x41\\x44\\x4d\\x58\\x68','\\x38\\x6a\\x2b\\x68\\x55\\x70\\x63\\x46\\x48\\x36\\x79','\\x6e\\x5a\\x43\\x30\\x6f\\x64\\x47\\x30\\x77\\x68\\x62\\x4b\\x71\\x78\\x72\\x71','\\x38\\x6a\\x2b\\x68\\x51\\x46\\x63\\x46\\x48\\x37\\x71','\\x38\\x6a\\x2b\\x68\\x55\\x2f\\x63\\x46\\x48\\x37\\x6d','\\x6d\\x32\\x6e\\x64\\x44\\x30\\x58\\x69\\x45\\x71','\\x38\\x6a\\x2b\\x68\\x50\\x56\\x63\\x46\\x48\\x37\\x4b','\\x38\\x6a\\x2b\\x68\\x53\\x2f\\x63\\x46\\x48\\x36\\x34','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x36\\x30','\\x38\\x6a\\x2b\\x68\\x55\\x46\\x63\\x46\\x48\\x37\\x57','\\x38\\x6a\\x2b\\x68\\x55\\x2f\\x63\\x46\\x48\\x36\\x4f','\\x38\\x6a\\x2b\\x68\\x52\\x56\\x63\\x46\\x48\\x36\\x4b','\\x38\\x6a\\x2b\\x68\\x52\\x56\\x63\\x46\\x48\\x37\\x6d','\\x38\\x6a\\x2b\\x68\\x53\\x2f\\x63\\x46\\x48\\x37\\x75','\\x38\\x6a\\x2b\\x68\\x52\\x46\\x63\\x46\\x48\\x37\\x61','\\x38\\x6a\\x2b\\x68\\x53\\x70\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x37\\x38','\\x38\\x6a\\x2b\\x68\\x53\\x70\\x63\\x46\\x48\\x36\\x4f','\\x6e\\x4a\\x6d\\x30\\x6e\\x4a\\x4b\\x59\\x43\\x4d\\x4c\\x68\\x79\\x32\\x6a\\x72','\\x38\\x6a\\x2b\\x68\\x51\\x70\\x63\\x46\\x48\\x37\\x4f','\\x38\\x6a\\x2b\\x68\\x51\\x2f\\x63\\x46\\x48\\x37\\x43','\\x38\\x6a\\x2b\\x68\\x53\\x56\\x63\\x46\\x48\\x36\\x79'];Y=function(){return Yj;};return Y();}let Q=![];let f=![];let V='';let x=![];let y='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';let b='\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';let h='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x75'+'\\x72'+'\\x6c'+'\\x2e'+'\\x76'+'\\x31'+'\\x2e'+'\\x6d'+'\\x6b'+'\\x2f'+'\\x73'+'\\x75'+'\\x62';const j='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x62'+'\\x79'+'\\x4a'+'\\x6f'+'\\x65'+'\\x79'+'\\x2f'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x74'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x69';let u=![];let T=!![];let c=!![];let o=null;let a={};const W={'\\x55\\x53':[Yf(0x98)+'\\x20'+'\\u7f8e'+'\\u56fd','\\x55'+'\\x53','\\x55'+'\\x6e'+'\\x69'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x73'],'\\x53\\x47':[YV(0xe5)+'\\x20'+'\\u65b0'+'\\u52a0'+'\\u5761','\\x53'+'\\x47','\\x53'+'\\x69'+'\\x6e'+'\\x67'+'\\x61'+'\\x70'+'\\x6f'+'\\x72'+'\\x65'],'\\x4a\\x50':[Yf(0x88)+'\\x20'+'\\u65e5'+'\\u672c','\\x4a'+'\\x50','\\x4a'+'\\x61'+'\\x70'+'\\x61'+'\\x6e'],'\\x4b\\x52':[Yf(0xb6)+'\\x20'+'\\u97e9'+'\\u56fd','\\x4b'+'\\x52','\\x53'+'\\x6f'+'\\x75'+'\\x74'+'\\x68'+'\\x20'+'\\x4b'+'\\x6f'+'\\x72'+'\\x65'+'\\x61'],'\\x44\\x45':[YV(0xd4)+'\\x20'+'\\u5fb7'+'\\u56fd','\\x44'+'\\x45','\\x47'+'\\x65'+'\\x72'+'\\x6d'+'\\x61'+'\\x6e'+'\\x79'],'\\x53\\x45':[Yf(0xa5)+'\\x20'+'\\u745e'+'\\u5178','\\x53'+'\\x45','\\x53'+'\\x77'+'\\x65'+'\\x64'+'\\x65'+'\\x6e'],'\\x4e\\x4c':[Yf(0xe3)+'\\x20'+'\\u8377'+'\\u5170','\\x4e'+'\\x4c','\\x4e'+'\\x65'+'\\x74'+'\\x68'+'\\x65'+'\\x72'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x73'],'\\x46\\x49':[YV(0xa3)+'\\x20'+'\\u82ac'+'\\u5170','\\x46'+'\\x49','\\x46'+'\\x69'+'\\x6e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'],'\\x47\\x42':[Yf(0xdc)+'\\x20'+'\\u82f1'+'\\u56fd','\\x47'+'\\x42','\\x55'+'\\x6e'+'\\x69'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x4b'+'\\x69'+'\\x6e'+'\\x67'+'\\x64'+'\\x6f'+'\\x6d'],'\\x4f\\x72\\x61\\x63\\x6c\\x65':['\\u7532'+'\\u9aa8'+'\\u6587','\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65'],'\\x44\\x69\\x67\\x69\\x74\\x61\\x6c\\x4f\\x63\\x65\\x61\\x6e':['\\u6570'+'\\u7801'+'\\u6d77','\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e'],'\\x56\\x75\\x6c\\x74\\x72':['\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72','\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72'],'\\x4d\\x75\\x6c\\x74\\x61\\x63\\x6f\\x6d':['\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d','\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d']};let E=[{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x55'+'\\x53'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x55'+'\\x53','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x55'+'\\x53','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x53'+'\\x47'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x53'+'\\x47','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x53'+'\\x47','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4a'+'\\x50'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4a'+'\\x50','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4a'+'\\x50','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4b'+'\\x52'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4b'+'\\x52','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4b'+'\\x52','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x44'+'\\x45'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x44'+'\\x45','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x44'+'\\x45','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x53'+'\\x45'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x53'+'\\x45','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x53'+'\\x45','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4e'+'\\x4c'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4e'+'\\x4c','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4e'+'\\x4c','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x46'+'\\x49'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x46'+'\\x49','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x46'+'\\x49','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x47'+'\\x42'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x47'+'\\x42','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x47'+'\\x42','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6d'+'\\x6c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d','\\x70\\x6f\\x72\\x74':0x1bb}];const m=[{'\\x6e\\x61\\x6d\\x65':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2e'+'\\x31'+'\\x38'+'\\x32'+'\\x36'+'\\x38'+'\\x32'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a','\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2e'+'\\x31'+'\\x38'+'\\x32'+'\\x36'+'\\x38'+'\\x32'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x6e\\x61\\x6d\\x65':'\\x73'+'\\x70'+'\\x65'+'\\x65'+'\\x64'+'\\x2e'+'\\x6d'+'\\x61'+'\\x72'+'\\x69'+'\\x73'+'\\x61'+'\\x6c'+'\\x6e'+'\\x63'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d','\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x73'+'\\x70'+'\\x65'+'\\x65'+'\\x64'+'\\x2e'+'\\x6d'+'\\x61'+'\\x72'+'\\x69'+'\\x73'+'\\x61'+'\\x6c'+'\\x6e'+'\\x63'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x66'+'\\x72'+'\\x65'+'\\x65'+'\\x79'+'\\x78'+'\\x2e'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x38'+'\\x38'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x63'+'\\x66'+'\\x2e'+'\\x74'+'\\x6f'+'\\x70'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x32'+'\\x30'+'\\x32'+'\\x30'+'\\x31'+'\\x31'+'\\x31'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x69'+'\\x70'+'\\x2e'+'\\x63'+'\\x66'+'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x76'+'\\x69'+'\\x70'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x30'+'\\x73'+'\\x6d'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x30'+'\\x39'+'\\x30'+'\\x32'+'\\x32'+'\\x37'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x7a'+'\\x68'+'\\x65'+'\\x74'+'\\x65'+'\\x6e'+'\\x67'+'\\x73'+'\\x68'+'\\x61'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2e'+'\\x39'+'\\x6a'+'\\x79'+'\\x2e'+'\\x63'+'\\x63'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x7a'+'\\x65'+'\\x72'+'\\x6f'+'\\x6e'+'\\x65'+'\\x2d'+'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x70'+'\\x70'+'\\x2e'+'\\x75'+'\\x61'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x69'+'\\x70'+'\\x2e'+'\\x31'+'\\x33'+'\\x32'+'\\x33'+'\\x31'+'\\x32'+'\\x33'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x66'+'\\x75'+'\\x63'+'\\x6b'+'\\x78'+'\\x78'+'\\x73'+'\\x2e'+'\\x79'+'\\x75'+'\\x63'+'\\x68'+'\\x65'+'\\x6e'+'\\x2e'+'\\x69'+'\\x63'+'\\x75'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x69'+'\\x70'+'\\x2e'+'\\x6d'+'\\x6f'+'\\x66'+'\\x61'+'\\x73'+'\\x68'+'\\x69'+'\\x2e'+'\\x6c'+'\\x74'+'\\x64'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x31'+'\\x31'+'\\x35'+'\\x31'+'\\x35'+'\\x35'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x78'+'\\x69'+'\\x72'+'\\x61'+'\\x6e'+'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x75'+'\\x73'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x66'+'\\x33'+'\\x30'+'\\x35'+'\\x38'+'\\x31'+'\\x37'+'\\x31'+'\\x63'+'\\x61'+'\\x64'+'\\x2e'+'\\x30'+'\\x30'+'\\x32'+'\\x34'+'\\x30'+'\\x34'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x38'+'\\x2e'+'\\x38'+'\\x38'+'\\x39'+'\\x32'+'\\x38'+'\\x38'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x74'+'\\x7a'+'\\x70'+'\\x72'+'\\x6f'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x38'+'\\x37'+'\\x37'+'\\x37'+'\\x37'+'\\x31'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x78'+'\\x6e'+'\\x2d'+'\\x2d'+'\\x62'+'\\x36'+'\\x67'+'\\x61'+'\\x63'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'}];const L=atob('\\x61'+'\\x57'+'\\x35'+'\\x32'+'\\x59'+'\\x57'+'\\x78'+'\\x70'+'\\x5a'+'\\x43'+'\\x42'+'\\x6b'+'\\x59'+'\\x58'+'\\x52'+'\\x68');const Z=atob('\\x61'+'\\x57'+'\\x35'+'\\x32'+'\\x59'+'\\x57'+'\\x78'+'\\x70'+'\\x5a'+'\\x43'+'\\x42'+'\\x31'+'\\x63'+'\\x32'+'\\x56'+'\\x79');const z=atob('\\x59'+'\\x32'+'\\x39'+'\\x74'+'\\x62'+'\\x57'+'\\x46'+'\\x75'+'\\x5a'+'\\x43'+'\\x42'+'\\x70'+'\\x63'+'\\x79'+'\\x42'+'\\x75'+'\\x62'+'\\x33'+'\\x51'+'\\x67'+'\\x63'+'\\x33'+'\\x56'+'\\x77'+'\\x63'+'\\x47'+'\\x39'+'\\x79'+'\\x64'+'\\x47'+'\\x56'+'\\x6b');const w=atob('\\x56'+'\\x55'+'\\x52'+'\\x51'+'\\x49'+'\\x48'+'\\x42'+'\\x79'+'\\x62'+'\\x33'+'\\x68'+'\\x35'+'\\x49'+'\\x47'+'\\x39'+'\\x75'+'\\x62'+'\\x48'+'\\x6b'+'\\x67'+'\\x5a'+'\\x57'+'\\x35'+'\\x68'+'\\x59'+'\\x6d'+'\\x78'+'\\x6c'+'\\x49'+'\\x47'+'\\x5a'+'\\x76'+'\\x63'+'\\x69'+'\\x42'+'\\x45'+'\\x54'+'\\x6c'+'\\x4d'+'\\x67'+'\\x64'+'\\x32'+'\\x68'+'\\x70'+'\\x59'+'\\x32'+'\\x67'+'\\x67'+'\\x61'+'\\x58'+'\\x4d'+'\\x67'+'\\x63'+'\\x47'+'\\x39'+'\\x79'+'\\x64'+'\\x43'+'\\x41'+'\\x31'+'\\x4d'+'\\x77'+'\\x3d'+'\\x3d');const n=atob('\\x61'+'\\x57'+'\\x35'+'\\x32'+'\\x59'+'\\x57'+'\\x78'+'\\x70'+'\\x5a'+'\\x43'+'\\x42'+'\\x68'+'\\x5a'+'\\x47'+'\\x52'+'\\x79'+'\\x5a'+'\\x58'+'\\x4e'+'\\x7a'+'\\x56'+'\\x48'+'\\x6c'+'\\x77'+'\\x5a'+'\\x51'+'\\x3d'+'\\x3d');const p=atob('\\x59'+'\\x57'+'\\x52'+'\\x6b'+'\\x63'+'\\x6d'+'\\x56'+'\\x7a'+'\\x63'+'\\x31'+'\\x5a'+'\\x68'+'\\x62'+'\\x48'+'\\x56'+'\\x6c'+'\\x49'+'\\x47'+'\\x6c'+'\\x7a'+'\\x49'+'\\x47'+'\\x56'+'\\x74'+'\\x63'+'\\x48'+'\\x52'+'\\x35');const N=atob('\\x64'+'\\x32'+'\\x56'+'\\x69'+'\\x55'+'\\x32'+'\\x39'+'\\x6a'+'\\x61'+'\\x32'+'\\x56'+'\\x30'+'\\x4c'+'\\x6d'+'\\x56'+'\\x68'+'\\x5a'+'\\x48'+'\\x6c'+'\\x54'+'\\x64'+'\\x47'+'\\x46'+'\\x30'+'\\x5a'+'\\x53'+'\\x42'+'\\x70'+'\\x63'+'\\x79'+'\\x42'+'\\x75'+'\\x62'+'\\x33'+'\\x51'+'\\x67'+'\\x62'+'\\x33'+'\\x42'+'\\x6c'+'\\x62'+'\\x67'+'\\x3d'+'\\x3d');const U=atob('\\x55'+'\\x33'+'\\x52'+'\\x79'+'\\x61'+'\\x57'+'\\x35'+'\\x6e'+'\\x61'+'\\x57'+'\\x5a'+'\\x70'+'\\x5a'+'\\x57'+'\\x51'+'\\x67'+'\\x61'+'\\x57'+'\\x52'+'\\x6c'+'\\x62'+'\\x6e'+'\\x52'+'\\x70'+'\\x5a'+'\\x6d'+'\\x6c'+'\\x6c'+'\\x63'+'\\x69'+'\\x42'+'\\x70'+'\\x63'+'\\x79'+'\\x42'+'\\x70'+'\\x62'+'\\x6e'+'\\x5a'+'\\x68'+'\\x62'+'\\x47'+'\\x6c'+'\\x6b');const k=atob('\\x53'+'\\x57'+'\\x35'+'\\x32'+'\\x59'+'\\x57'+'\\x78'+'\\x70'+'\\x5a'+'\\x43'+'\\x42'+'\\x54'+'\\x54'+'\\x30'+'\\x4e'+'\\x4c'+'\\x55'+'\\x79'+'\\x42'+'\\x68'+'\\x5a'+'\\x47'+'\\x52'+'\\x79'+'\\x5a'+'\\x58'+'\\x4e'+'\\x7a'+'\\x49'+'\\x47'+'\\x5a'+'\\x76'+'\\x63'+'\\x6d'+'\\x31'+'\\x68'+'\\x64'+'\\x41'+'\\x3d'+'\\x3d');const s=atob('\\x62'+'\\x6d'+'\\x38'+'\\x67'+'\\x59'+'\\x57'+'\\x4e'+'\\x6a'+'\\x5a'+'\\x58'+'\\x42'+'\\x30'+'\\x59'+'\\x57'+'\\x4a'+'\\x73'+'\\x5a'+'\\x53'+'\\x42'+'\\x74'+'\\x5a'+'\\x58'+'\\x52'+'\\x6f'+'\\x62'+'\\x32'+'\\x52'+'\\x7a');const A=atob('\\x63'+'\\x32'+'\\x39'+'\\x6a'+'\\x61'+'\\x33'+'\\x4d'+'\\x67'+'\\x63'+'\\x32'+'\\x56'+'\\x79'+'\\x64'+'\\x6d'+'\\x56'+'\\x79'+'\\x49'+'\\x47'+'\\x35'+'\\x6c'+'\\x5a'+'\\x57'+'\\x52'+'\\x7a'+'\\x49'+'\\x47'+'\\x46'+'\\x31'+'\\x64'+'\\x47'+'\\x67'+'\\x3d');const P=atob('\\x5a'+'\\x6d'+'\\x46'+'\\x70'+'\\x62'+'\\x43'+'\\x42'+'\\x30'+'\\x62'+'\\x79'+'\\x42'+'\\x68'+'\\x64'+'\\x58'+'\\x52'+'\\x6f'+'\\x49'+'\\x48'+'\\x4e'+'\\x76'+'\\x59'+'\\x32'+'\\x74'+'\\x7a'+'\\x49'+'\\x48'+'\\x4e'+'\\x6c'+'\\x63'+'\\x6e'+'\\x5a'+'\\x6c'+'\\x63'+'\\x67'+'\\x3d'+'\\x3d');const l=atob('\\x5a'+'\\x6d'+'\\x46'+'\\x70'+'\\x62'+'\\x43'+'\\x42'+'\\x30'+'\\x62'+'\\x79'+'\\x42'+'\\x76'+'\\x63'+'\\x47'+'\\x56'+'\\x75'+'\\x49'+'\\x48'+'\\x4e'+'\\x76'+'\\x59'+'\\x32'+'\\x74'+'\\x7a'+'\\x49'+'\\x47'+'\\x4e'+'\\x76'+'\\x62'+'\\x6d'+'\\x35'+'\\x6c'+'\\x59'+'\\x33'+'\\x52'+'\\x70'+'\\x62'+'\\x32'+'\\x34'+'\\x3d');let r={};let e=![];const B=0x1;const D0=0x2;const D1=0x3;function D2(RY){const RG=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;return RG['\\x74'+'\\x65'+'\\x73'+'\\x74'](RY);}function D3(RY){const RG=/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;if(RG['\\x74'+'\\x65'+'\\x73'+'\\x74'](RY))return!![];const RO=/^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$/;if(RO['\\x74'+'\\x65'+'\\x73'+'\\x74'](RY))return!![];const RF=/^::1$|^::$|^(?:[0-9a-fA-F]{1,4}:)*::(?:[0-9a-fA-F]{1,4}:)*[0-9a-fA-F]{1,4}$/;if(RF['\\x74'+'\\x65'+'\\x73'+'\\x74'](RY))return!![];return![];}async function D4(RY){if(RY['\\x43']){try{o=RY['\\x43'];await D5();}catch(RG){o=null;}}else{}}async function D5(){if(!o){return;}try{const RY=await o['\\x67'+'\\x65'+'\\x74']('\\x63');if(RY){a=JSON['\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'](RY);}else{}}catch(RG){a={};}}async function D6(){if(!o){return;}try{const RY=JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'](a);await o['\\x70'+'\\x75'+'\\x74']('\\x63',RY);}catch(RG){throw RG;}}function D7(RY,RG=''){if(a[RY]!==undefined){return a[RY];}return RG;}async function D8(RY,RG){a[RY]=RG;await D6();}async function D9(RY){try{const RG=RY['\\x63'+'\\x66']?.['\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x72'+'\\x79'];if(RG){const RO={'\\x55\\x53':'\\x55'+'\\x53','\\x53\\x47':'\\x53'+'\\x47','\\x4a\\x50':'\\x4a'+'\\x50','\\x4b\\x52':'\\x4b'+'\\x52','\\x44\\x45':'\\x44'+'\\x45','\\x53\\x45':'\\x53'+'\\x45','\\x4e\\x4c':'\\x4e'+'\\x4c','\\x46\\x49':'\\x46'+'\\x49','\\x47\\x42':'\\x47'+'\\x42','\\x43\\x4e':'\\x53'+'\\x47','\\x54\\x57':'\\x4a'+'\\x50','\\x41\\x55':'\\x53'+'\\x47','\\x43\\x41':'\\x55'+'\\x53','\\x46\\x52':'\\x44'+'\\x45','\\x49\\x54':'\\x44'+'\\x45','\\x45\\x53':'\\x44'+'\\x45','\\x43\\x48':'\\x44'+'\\x45','\\x41\\x54':'\\x44'+'\\x45','\\x42\\x45':'\\x4e'+'\\x4c','\\x44\\x4b':'\\x53'+'\\x45','\\x4e\\x4f':'\\x53'+'\\x45','\\x49\\x45':'\\x47'+'\\x42'};if(RO[RG]){return RO[RG];}}return'\\x53'+'\\x47';}catch(RF){return'\\x53'+'\\x47';}}async function DD(RY,RG=0x1bb,RO=0x7d0){try{const RF=new AbortController();const Rt=setTimeout(()=>RF['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'](),RO);const RK=await fetch('\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+RY,{'\\x6d\\x65\\x74\\x68\\x6f\\x64':'\\x48'+'\\x45'+'\\x41'+'\\x44','\\x73\\x69\\x67\\x6e\\x61\\x6c':RF['\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'],'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x55\\x73\\x65\\x72\\x2d\\x41\\x67\\x65\\x6e\\x74':'\\x4d'+'\\x6f'+'\\x7a'+'\\x69'+'\\x6c'+'\\x6c'+'\\x61'+'\\x2f'+'\\x35'+'\\x2e'+'\\x30'+'\\x20'+'\\x28'+'\\x63'+'\\x6f'+'\\x6d'+'\\x70'+'\\x61'+'\\x74'+'\\x69'+'\\x62'+'\\x6c'+'\\x65'+'\\x3b'+'\\x20'+'\\x43'+'\\x46'+'\\x2d'+'\\x49'+'\\x50'+'\\x2d'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x72'+'\\x2f'+'\\x31'+'\\x2e'+'\\x30'+'\\x29'}});clearTimeout(Rt);return RK['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']<0x1f4;}catch(Rq){return!![];}}async function DR(RY='',RG=C){if(E['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){return null;}const RO=E['\\x6d'+'\\x61'+'\\x70'](Rt=>({...Rt,'\\x61\\x76\\x61\\x69\\x6c\\x61\\x62\\x6c\\x65':!![]}));if(RG&&RY){const Rt=DO(RY,RO,RG);if(Rt['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){const RK=Rt[0x0];return RK;}}const RF=RO[0x0];return RF;}function DY(RY){const RG={'\\x55\\x53':['\\x53'+'\\x47','\\x4a'+'\\x50','\\x4b'+'\\x52'],'\\x53\\x47':['\\x4a'+'\\x50','\\x4b'+'\\x52','\\x55'+'\\x53'],'\\x4a\\x50':['\\x53'+'\\x47','\\x4b'+'\\x52','\\x55'+'\\x53'],'\\x4b\\x52':['\\x4a'+'\\x50','\\x53'+'\\x47','\\x55'+'\\x53'],'\\x44\\x45':['\\x4e'+'\\x4c','\\x47'+'\\x42','\\x53'+'\\x45','\\x46'+'\\x49'],'\\x53\\x45':['\\x44'+'\\x45','\\x4e'+'\\x4c','\\x46'+'\\x49','\\x47'+'\\x42'],'\\x4e\\x4c':['\\x44'+'\\x45','\\x47'+'\\x42','\\x53'+'\\x45','\\x46'+'\\x49'],'\\x46\\x49':['\\x53'+'\\x45','\\x44'+'\\x45','\\x4e'+'\\x4c','\\x47'+'\\x42'],'\\x47\\x42':['\\x44'+'\\x45','\\x4e'+'\\x4c','\\x53'+'\\x45','\\x46'+'\\x49']};return RG[RY]||[];}function DG(RY){const RG=DY(RY);const RO=['\\x55'+'\\x53','\\x53'+'\\x47','\\x4a'+'\\x50','\\x4b'+'\\x52','\\x44'+'\\x45','\\x53'+'\\x45','\\x4e'+'\\x4c','\\x46'+'\\x49','\\x47'+'\\x42'];return[RY,...RG,...RO['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RF=>RF!==RY&&!RG['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](RF))];}function DO(RY,RG,RO=C){if(!RO||!RY){return RG;}const RF=DG(RY);const Rt=[];for(const RK of RF){const Rq=RG['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RI=>RI['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x64'+'\\x65']===RK);Rt['\\x70'+'\\x75'+'\\x73'+'\\x68'](...Rq);}return Rt;}function DF(RY){if(RY['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x5b')&&RY['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x5d')){const RO=RY['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/^\\[([^\\]]+)\\](?::(\\d+))?$/);if(RO){return{'\\x61\\x64\\x64\\x72\\x65\\x73\\x73':RO[0x1],'\\x70\\x6f\\x72\\x74':RO[0x2]?parseInt(RO[0x2],0xa):null};}}const RG=RY['\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x3a');if(RG>0x0){const RF=RY['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,RG);const Rt=RY['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](RG+0x1);const RK=parseInt(Rt,0xa);if(!RF['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x3a')&&!isNaN(RK)&&RK>0x0&&RK<=0xffff){return{'\\x61\\x64\\x64\\x72\\x65\\x73\\x73':RF,'\\x70\\x6f\\x72\\x74':RK};}}return{'\\x61\\x64\\x64\\x72\\x65\\x73\\x73':RY,'\\x70\\x6f\\x72\\x74':null};}export default{async '\\x66\\x65\\x74\\x63\\x68'(RY,RG,RO){const Yx=G;const Yy=G;try{await D4(RG);t=(RG['\\x75']||RG['\\x55']||t)['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();const RF=(RG['\\x64']||RG['\\x44']||t)['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();const Rt=D7('\\x70',RG['\\x70']||RG['\\x50']);let RK=![];const Rq=D7('\\x77'+'\\x6b',RG['\\x77'+'\\x6b']||RG['\\x57'+'\\x4b']);if(Rq&&Rq['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){d=Rq['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x74'+'\\x6f'+'\\x55'+'\\x70'+'\\x70'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();v=d;}else if(Rt&&Rt['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){RK=!![];v='\\x43'+'\\x55'+'\\x53'+'\\x54'+'\\x4f'+'\\x4d';}else{v=await D9(RY);}const RI=RG['\\x72'+'\\x6d']||RG['\\x52'+'\\x4d'];if(RI&&RI['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x6e'+'\\x6f'){C=![];}const RS=D7('\\x70',RG['\\x70']||RG['\\x50']);if(RS){K=RS['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}q=D7('\\x73',RG['\\x73']||RG['\\x53'])||q;if(q){try{r=Dx(q);e=!![];}catch(Rh){e=![];}}const RM=D7('\\x79'+'\\x78',RG['\\x79'+'\\x78']||RG['\\x59'+'\\x58']);if(RM){try{const Rj=RM['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](Ru=>Ru['\\x74'+'\\x72'+'\\x69'+'\\x6d']())['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](Ru=>Ru);I=[];S=[];Rj['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](Ru=>{let RT='';let Rc=Ru;if(Ru['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x23')){const RW=Ru['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x23');Rc=RW[0x0]['\\x74'+'\\x72'+'\\x69'+'\\x6d']();RT=RW[0x1]['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const {address:Ro,port:Ra}=DF(Rc);if(!RT){RT='\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u4f18'+'\\u9009'+'\\x2d'+Ro+(Ra?'\\x3a'+Ra:'');}if(D3(Ro)){I['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':Ro,'\\x70\\x6f\\x72\\x74':Ra,'\\x69\\x73\\x70':RT});}else{S['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x64\\x6f\\x6d\\x61\\x69\\x6e':Ro,'\\x70\\x6f\\x72\\x74':Ra,'\\x6e\\x61\\x6d\\x65':RT});}});}catch(Ru){I=[];S=[];}}const Rg=D7('\\x71'+'\\x6a',RG['\\x71'+'\\x6a']||RG['\\x51'+'\\x4a']);if(Rg&&Rg['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x6e'+'\\x6f'){M=!![];}const Ri=D7('\\x64'+'\\x6b'+'\\x62'+'\\x79',RG['\\x64'+'\\x6b'+'\\x62'+'\\x79']||RG['\\x44'+'\\x4b'+'\\x42'+'\\x59']);if(Ri&&Ri['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x79'+'\\x65'+'\\x73'){g=!![];}const RC=RG['\\x79'+'\\x78'+'\\x62'+'\\x79']||RG['\\x59'+'\\x58'+'\\x42'+'\\x59'];if(RC&&RC['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x79'+'\\x65'+'\\x73'){i=!![];}const Rv=D7('\\x65'+'\\x76',RG['\\x65'+'\\x76']);if(Rv!==undefined&&Rv!==''){X=Rv==='\\x79'+'\\x65'+'\\x73'||Rv===!![]||Rv==='\\x74'+'\\x72'+'\\x75'+'\\x65';}const Rd=D7('\\x65'+'\\x74',RG['\\x65'+'\\x74']);if(Rd!==undefined&&Rd!==''){Q=Rd==='\\x79'+'\\x65'+'\\x73'||Rd===!![]||Rd==='\\x74'+'\\x72'+'\\x75'+'\\x65';}V=D7('\\x74'+'\\x70',RG['\\x74'+'\\x70'])||'';const RH=D7('\\x65'+'\\x78',RG['\\x65'+'\\x78']);if(RH!==undefined&&RH!==''){f=RH==='\\x79'+'\\x65'+'\\x73'||RH===!![]||RH==='\\x74'+'\\x72'+'\\x75'+'\\x65';}h=D7('\\x73'+'\\x63'+'\\x75',RG['\\x73'+'\\x63'+'\\x75'])||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x75'+'\\x72'+'\\x6c'+'\\x2e'+'\\x76'+'\\x31'+'\\x2e'+'\\x6d'+'\\x6b'+'\\x2f'+'\\x73'+'\\x75'+'\\x62';const RJ=D7('\\x65'+'\\x70'+'\\x64',RG['\\x65'+'\\x70'+'\\x64']||'\\x6e'+'\\x6f');if(RJ!==undefined&&RJ!==''){u=RJ!=='\\x6e'+'\\x6f'&&RJ!==![]&&RJ!=='\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65';}const RX=D7('\\x65'+'\\x70'+'\\x69',RG['\\x65'+'\\x70'+'\\x69']);if(RX!==undefined&&RX!==''){T=RX!=='\\x6e'+'\\x6f'&&RX!==![]&&RX!=='\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65';}const RQ=D7('\\x65'+'\\x67'+'\\x69',RG['\\x65'+'\\x67'+'\\x69']);if(RQ!==undefined&&RQ!==''){c=RQ!=='\\x6e'+'\\x6f'&&RQ!==![]&&RQ!=='\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65';}const Rf=D7('\\x65'+'\\x63'+'\\x68',RG['\\x65'+'\\x63'+'\\x68']);if(Rf!==undefined&&Rf!==''){x=Rf==='\\x79'+'\\x65'+'\\x73'||Rf===!![]||Rf==='\\x74'+'\\x72'+'\\x75'+'\\x65';}const RV=D7('\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53','');if(RV&&RV['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){y=RV['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const Rx=D7('\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e','');if(Rx&&Rx['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){b=Rx['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}if(x){g=!![];const RT=D7('\\x64'+'\\x6b'+'\\x62'+'\\x79','');if(RT!=='\\x79'+'\\x65'+'\\x73'){await D8('\\x64'+'\\x6b'+'\\x62'+'\\x79','\\x79'+'\\x65'+'\\x73');}}if(!X&&!Q&&!f){X=!![];}H=D7('\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c',RG['\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c']||RG['\\x59'+'\\x58'+'\\x55'+'\\x52'+'\\x4c'])||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';J=D7('\\x64',RG['\\x64']||RG['\\x44'])||'';const Ry='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';if(H!==Ry){m['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']=0x0;I=[];S=[];}const Rb=new URL(RY['\\x75'+'\\x72'+'\\x6c']);if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2f'+'\\x61'+'\\x70'+'\\x69'+'\\x2f'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67')){const Rc=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2f')['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](Ra=>Ra);const Ro=Rc['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x61'+'\\x70'+'\\x69');if(Ro>0x0){const Ra=Rc['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,Ro);const RW=Ra['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x2f');let RE=![];if(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const Rm=J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')?J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1):J['\\x74'+'\\x72'+'\\x69'+'\\x6d']();RE=RW===Rm;}else{RE=D2(RW)&&RW===t;}if(RE){return await R3(RY);}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u8def'+'\\u5f84'+'\\u9a8c'+'\\u8bc1'+'\\u5931'+'\\u8d25'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u65e0'+'\\u6548'+'\\u7684'+'\\x41'+'\\x50'+'\\x49'+'\\u8def'+'\\u5f84'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x194,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2f'+'\\x61'+'\\x70'+'\\x69'+'\\x2f'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x2d'+'\\x69'+'\\x70'+'\\x73')){const RL=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2f')['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](Rz=>Rz);const RZ=RL['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x61'+'\\x70'+'\\x69');if(RZ>0x0){const Rz=RL['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,RZ);const Rw=Rz['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x2f');let Rn=![];if(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const Rp=J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')?J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1):J['\\x74'+'\\x72'+'\\x69'+'\\x6d']();Rn=Rw===Rp;}else{Rn=D2(Rw)&&Rw===t;}if(Rn){return await R4(RY);}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u8def'+'\\u5f84'+'\\u9a8c'+'\\u8bc1'+'\\u5931'+'\\u8d25'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u65e0'+'\\u6548'+'\\u7684'+'\\x41'+'\\x50'+'\\x49'+'\\u8def'+'\\u5f84'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x194,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x50'+'\\x4f'+'\\x53'+'\\x54'&&f){const RN=await DA(RY);if(RN){RO['\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x55'+'\\x6e'+'\\x74'+'\\x69'+'\\x6c'](RN['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65'+'\\x64']);return new Response(RN['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'],{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x58\\x2d\\x41\\x63\\x63\\x65\\x6c\\x2d\\x42\\x75\\x66\\x66\\x65\\x72\\x69\\x6e\\x67':'\\x6e'+'\\x6f','\\x43\\x61\\x63\\x68\\x65\\x2d\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\x6e'+'\\x6f'+'\\x2d'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x65','\\x43\\x6f\\x6e\\x6e\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\x6b'+'\\x65'+'\\x65'+'\\x70'+'\\x2d'+'\\x61'+'\\x6c'+'\\x69'+'\\x76'+'\\x65','\\x55\\x73\\x65\\x72\\x2d\\x41\\x67\\x65\\x6e\\x74':'\\x47'+'\\x6f'+'\\x2d'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x2d'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2f'+'\\x32'+'\\x2e'+'\\x30','\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x67'+'\\x72'+'\\x70'+'\\x63'}});}return new Response('\\x49'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x6e'+'\\x61'+'\\x6c'+'\\x20'+'\\x53'+'\\x65'+'\\x72'+'\\x76'+'\\x65'+'\\x72'+'\\x20'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72',{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f4});}if(RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x55'+'\\x70'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65')===atob('\\x64'+'\\x32'+'\\x56'+'\\x69'+'\\x63'+'\\x32'+'\\x39'+'\\x6a'+'\\x61'+'\\x32'+'\\x56'+'\\x30')){return await Dd(RY);}if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x47'+'\\x45'+'\\x54'){if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x65'+'\\x6e'+'\\x64'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e')){const RU=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2f')['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](Rk=>Rk);if(RU['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x2&&RU[0x1]==='\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'){const Rk=RU[0x0];let Rs=![];if(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const RA=J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')?J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1):J['\\x74'+'\\x72'+'\\x69'+'\\x6d']();Rs=Rk===RA;}else{Rs=D2(Rk)&&Rk===t;}if(Rs){const RP=D7('\\x70',RG['\\x70']||RG['\\x50']);const Rl=D7('\\x77'+'\\x6b',RG['\\x77'+'\\x6b']||RG['\\x57'+'\\x4b']);if(Rl&&Rl['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x72\\x65\\x67\\x69\\x6f\\x6e':Rl['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x74'+'\\x6f'+'\\x55'+'\\x70'+'\\x70'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65'](),'\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4d\\x65\\x74\\x68\\x6f\\x64':'\\u624b'+'\\u52a8'+'\\u6307'+'\\u5b9a'+'\\u5730'+'\\u533a','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x52\\x65\\x67\\x69\\x6f\\x6e':Rl['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x74'+'\\x6f'+'\\x55'+'\\x70'+'\\x70'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65'](),'\\x74\\x69\\x6d\\x65\\x73\\x74\\x61\\x6d\\x70':new Date()['\\x74'+'\\x6f'+'\\x49'+'\\x53'+'\\x4f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}else if(RP&&RP['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x43'+'\\x55'+'\\x53'+'\\x54'+'\\x4f'+'\\x4d','\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4d\\x65\\x74\\x68\\x6f\\x64':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f','\\x63\\x69':RP,'\\x74\\x69\\x6d\\x65\\x73\\x74\\x61\\x6d\\x70':new Date()['\\x74'+'\\x6f'+'\\x49'+'\\x53'+'\\x4f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}else{const Rr=await D9(RY);return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x72\\x65\\x67\\x69\\x6f\\x6e':Rr,'\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4d\\x65\\x74\\x68\\x6f\\x64':'\\x41'+'\\x50'+'\\x49'+'\\u68c0'+'\\u6d4b','\\x74\\x69\\x6d\\x65\\x73\\x74\\x61\\x6d\\x70':new Date()['\\x74'+'\\x6f'+'\\x49'+'\\x53'+'\\x4f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u8bbf'+'\\u95ee'+'\\u88ab'+'\\u62d2'+'\\u7edd','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u8def'+'\\u5f84'+'\\u9a8c'+'\\u8bc1'+'\\u5931'+'\\u8d25'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}}if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x65'+'\\x6e'+'\\x64'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x2d'+'\\x61'+'\\x70'+'\\x69')){const Re=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2f')['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RB=>RB);if(Re['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x2&&Re[0x1]==='\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x2d'+'\\x61'+'\\x70'+'\\x69'){const RB=Re[0x0];let Y0=![];if(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const Y1=J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')?J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1):J['\\x74'+'\\x72'+'\\x69'+'\\x6d']();Y0=RB===Y1;}else{Y0=D2(RB)&&RB===t;}if(Y0){try{const Y2=await D9(RY);return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x64\\x65\\x74\\x65\\x63\\x74\\x65\\x64\\x52\\x65\\x67\\x69\\x6f\\x6e':Y2,'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x41'+'\\x50'+'\\x49'+'\\u6d4b'+'\\u8bd5'+'\\u5b8c'+'\\u6210','\\x74\\x69\\x6d\\x65\\x73\\x74\\x61\\x6d\\x70':new Date()['\\x74'+'\\x6f'+'\\x49'+'\\x53'+'\\x4f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}catch(Y3){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':Y3['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x41'+'\\x50'+'\\x49'+'\\u6d4b'+'\\u8bd5'+'\\u5931'+'\\u8d25'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f4,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u8bbf'+'\\u95ee'+'\\u88ab'+'\\u62d2'+'\\u7edd','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u8def'+'\\u5f84'+'\\u9a8c'+'\\u8bc1'+'\\u5931'+'\\u8d25'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}}if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']==='\\x2f'){const Y4=D7('\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65',RG['\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65']||RG['\\x48'+'\\x4f'+'\\x4d'+'\\x45'+'\\x50'+'\\x41'+'\\x47'+'\\x45']);if(Y4&&Y4['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){try{const YG=await fetch(Y4['\\x74'+'\\x72'+'\\x69'+'\\x6d'](),{'\\x6d\\x65\\x74\\x68\\x6f\\x64':'\\x47'+'\\x45'+'\\x54','\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x55\\x73\\x65\\x72\\x2d\\x41\\x67\\x65\\x6e\\x74':RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x55'+'\\x73'+'\\x65'+'\\x72'+'\\x2d'+'\\x41'+'\\x67'+'\\x65'+'\\x6e'+'\\x74')||'\\x4d'+'\\x6f'+'\\x7a'+'\\x69'+'\\x6c'+'\\x6c'+'\\x61'+'\\x2f'+'\\x35'+'\\x2e'+'\\x30','\\x41\\x63\\x63\\x65\\x70\\x74':RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x41'+'\\x63'+'\\x63'+'\\x65'+'\\x70'+'\\x74')||'\\x2a'+'\\x2f'+'\\x2a','\\x41\\x63\\x63\\x65\\x70\\x74\\x2d\\x4c\\x61\\x6e\\x67\\x75\\x61\\x67\\x65':RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x41'+'\\x63'+'\\x63'+'\\x65'+'\\x70'+'\\x74'+'\\x2d'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65')||'\\x65'+'\\x6e'+'\\x2d'+'\\x55'+'\\x53'+'\\x2c'+'\\x65'+'\\x6e'+'\\x3b'+'\\x71'+'\\x3d'+'\\x30'+'\\x2e'+'\\x39'},'\\x72\\x65\\x64\\x69\\x72\\x65\\x63\\x74':'\\x66'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x77'});if(YG['\\x6f'+'\\x6b']){const YO=YG['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x54'+'\\x79'+'\\x70'+'\\x65')||'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2f'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38';const YF=await YG['\\x74'+'\\x65'+'\\x78'+'\\x74']();return new Response(YF,{'\\x73\\x74\\x61\\x74\\x75\\x73':YG['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'],'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':YO,'\\x43\\x61\\x63\\x68\\x65\\x2d\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\x6e'+'\\x6f'+'\\x2d'+'\\x63'+'\\x61'+'\\x63'+'\\x68'+'\\x65'+'\\x2c'+'\\x20'+'\\x6e'+'\\x6f'+'\\x2d'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x65'+'\\x2c'+'\\x20'+'\\x6d'+'\\x75'+'\\x73'+'\\x74'+'\\x2d'+'\\x72'+'\\x65'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x61'+'\\x74'+'\\x65'}});}}catch(Yt){console['\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72']('\\u83b7'+'\\u53d6'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u9996'+'\\u9875'+'\\u5931'+'\\u8d25'+'\\x3a',Yt);}}const Y5=RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65')||'';let Y6=null;if(Y5){const YK=Y5['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3b')['\\x6d'+'\\x61'+'\\x70'](Yq=>Yq['\\x74'+'\\x72'+'\\x69'+'\\x6d']());for(const Yq of YK){if(Yq['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d')){Y6=Yq['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3d')[0x1];break;}}}let Y7=![];if(Y6==='\\x66'+'\\x61'||Y6==='\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'){Y7=!![];}else if(Y6==='\\x7a'+'\\x68'||Y6==='\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e'){Y7=![];}else{const YI=RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x41'+'\\x63'+'\\x63'+'\\x65'+'\\x70'+'\\x74'+'\\x2d'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65')||'';const YS=YI['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')[0x0]['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2d')[0x0]['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();Y7=YS==='\\x66'+'\\x61'||YI['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52')||YI['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x66'+'\\x61');}const Y8=Y7?'\\x66'+'\\x61':'\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e';const Y9=Y7?'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52':'\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e';const YD={'\\x7a\\x68':{'\\x74\\x69\\x74\\x6c\\x65':'\\u7ec8'+'\\u7aef','\\x74\\x65\\x72\\x6d\\x69\\x6e\\x61\\x6c':'\\u7ec8'+'\\u7aef','\\x63\\x6f\\x6e\\x67\\x72\\x61\\x74\\x75\\x6c\\x61\\x74\\x69\\x6f\\x6e\\x73':'\\u606d'+'\\u559c'+'\\u4f60'+'\\u6765'+'\\u5230'+'\\u8fd9','\\x65\\x6e\\x74\\x65\\x72\\x55':'\\u8bf7'+'\\u8f93'+'\\u5165'+'\\u4f60'+'\\x55'+'\\u53d8'+'\\u91cf'+'\\u7684'+'\\u503c','\\x65\\x6e\\x74\\x65\\x72\\x44':'\\u8bf7'+'\\u8f93'+'\\u5165'+'\\u4f60'+'\\x44'+'\\u53d8'+'\\u91cf'+'\\u7684'+'\\u503c','\\x63\\x6f\\x6d\\x6d\\x61\\x6e\\x64':'\\u547d'+'\\u4ee4'+'\\x3a'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x6e'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x5b','\\x75\\x75\\x69\\x64':'\\x55'+'\\x55'+'\\x49'+'\\x44','\\x70\\x61\\x74\\x68':'\\x50'+'\\x41'+'\\x54'+'\\x48','\\x69\\x6e\\x70\\x75\\x74\\x55':'\\u8f93'+'\\u5165'+'\\x55'+'\\u53d8'+'\\u91cf'+'\\u7684'+'\\u5185'+'\\u5bb9'+'\\u5e76'+'\\u4e14'+'\\u56de'+'\\u8f66'+'\\x2e'+'\\x2e'+'\\x2e','\\x69\\x6e\\x70\\x75\\x74\\x44':'\\u8f93'+'\\u5165'+'\\x44'+'\\u53d8'+'\\u91cf'+'\\u7684'+'\\u5185'+'\\u5bb9'+'\\u5e76'+'\\u4e14'+'\\u56de'+'\\u8f66'+'\\x2e'+'\\x2e'+'\\x2e','\\x63\\x6f\\x6e\\x6e\\x65\\x63\\x74\\x69\\x6e\\x67':'\\u6b63'+'\\u5728'+'\\u8fde'+'\\u63a5'+'\\x2e'+'\\x2e'+'\\x2e','\\x69\\x6e\\x76\\x61\\x64\\x69\\x6e\\x67':'\\u6b63'+'\\u5728'+'\\u5165'+'\\u4fb5'+'\\x2e'+'\\x2e'+'\\x2e','\\x73\\x75\\x63\\x63\\x65\\x73\\x73':'\\u8fde'+'\\u63a5'+'\\u6210'+'\\u529f'+'\\uff01'+'\\u8fd4'+'\\u56de'+'\\u7ed3'+'\\u679c'+'\\x2e'+'\\x2e'+'\\x2e','\\x65\\x72\\x72\\x6f\\x72':'\\u9519'+'\\u8bef'+'\\x3a'+'\\x20'+'\\u65e0'+'\\u6548'+'\\u7684'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\u683c'+'\\u5f0f','\\x72\\x65\\x65\\x6e\\x74\\x65\\x72':'\\u8bf7'+'\\u91cd'+'\\u65b0'+'\\u8f93'+'\\u5165'+'\\u6709'+'\\u6548'+'\\u7684'+'\\x55'+'\\x55'+'\\x49'+'\\x44'},'\\x66\\x61':{'\\x74\\x69\\x74\\x6c\\x65':'\\u062a'+'\\u0631'+'\\u0645'+'\\u06cc'+'\\u0646'+'\\u0627'+'\\u0644','\\x74\\x65\\x72\\x6d\\x69\\x6e\\x61\\x6c':'\\u062a'+'\\u0631'+'\\u0645'+'\\u06cc'+'\\u0646'+'\\u0627'+'\\u0644','\\x63\\x6f\\x6e\\x67\\x72\\x61\\x74\\x75\\x6c\\x61\\x74\\x69\\x6f\\x6e\\x73':'\\u062a'+'\\u0628'+'\\u0631'+'\\u06cc'+'\\u06a9'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u06af'+'\\u0648'+'\\u06cc'+'\\u06cc'+'\\u0645'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0634'+'\\u0645'+'\\u0627','\\x65\\x6e\\x74\\x65\\x72\\x55':'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\u0645'+'\\u0642'+'\\u062f'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x55'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f','\\x65\\x6e\\x74\\x65\\x72\\x44':'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\u0645'+'\\u0642'+'\\u062f'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x44'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f','\\x63\\x6f\\x6d\\x6d\\x61\\x6e\\x64':'\\u062f'+'\\u0633'+'\\u062a'+'\\u0648'+'\\u0631'+'\\x3a'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x6e'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x5b','\\x75\\x75\\x69\\x64':'\\x55'+'\\x55'+'\\x49'+'\\x44','\\x70\\x61\\x74\\x68':'\\x50'+'\\x41'+'\\x54'+'\\x48','\\x69\\x6e\\x70\\x75\\x74\\x55':'\\u0645'+'\\u062d'+'\\u062a'+'\\u0648'+'\\u06cc'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x55'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0631'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0648'+'\\x20'+'\\x45'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0628'+'\\u0632'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e'+'\\x2e'+'\\x2e','\\x69\\x6e\\x70\\x75\\x74\\x44':'\\u0645'+'\\u062d'+'\\u062a'+'\\u0648'+'\\u06cc'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x44'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0631'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0648'+'\\x20'+'\\x45'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0628'+'\\u0632'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e'+'\\x2e'+'\\x2e','\\x63\\x6f\\x6e\\x6e\\x65\\x63\\x74\\x69\\x6e\\x67':'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x2e'+'\\x2e'+'\\x2e','\\x69\\x6e\\x76\\x61\\x64\\x69\\x6e\\x67':'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0646'+'\\u0641'+'\\u0648'+'\\u0630'+'\\x2e'+'\\x2e'+'\\x2e','\\x73\\x75\\x63\\x63\\x65\\x73\\x73':'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x21'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0628'+'\\u0627'+'\\u0632'+'\\u06af'+'\\u0634'+'\\u062a'+'\\x20'+'\\u0646'+'\\u062a'+'\\u06cc'+'\\u062c'+'\\u0647'+'\\x2e'+'\\x2e'+'\\x2e','\\x65\\x72\\x72\\x6f\\x72':'\\u062e'+'\\u0637'+'\\u0627'+'\\x3a'+'\\x20'+'\\u0641'+'\\u0631'+'\\u0645'+'\\u062a'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0639'+'\\u062a'+'\\u0628'+'\\u0631','\\x72\\x65\\x65\\x6e\\x74\\x65\\x72':'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0645'+'\\u0639'+'\\u062a'+'\\u0628'+'\\u0631'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0648'+'\\u0628'+'\\u0627'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'}};const YR=YD[Y7?'\\x66'+'\\x61':'\\x7a'+'\\x68'];const YY='\\x3c'+'\\x21'+'\\x44'+'\\x4f'+'\\x43'+'\\x54'+'\\x59'+'\\x50'+'\\x45'+'\\x20'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x20'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x3d'+'\\x22'+Y9+('\\x22'+'\\x20'+'\\x64'+'\\x69'+'\\x72'+'\\x3d'+'\\x22')+(Y7?'\\x72'+'\\x74'+'\\x6c':'\\x6c'+'\\x74'+'\\x72')+('\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6d'+'\\x65'+'\\x74'+'\\x61'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x22'+'\\x55'+'\\x54'+'\\x46'+'\\x2d'+'\\x38'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6d'+'\\x65'+'\\x74'+'\\x61'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x22'+'\\x76'+'\\x69'+'\\x65'+'\\x77'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x22'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3d'+'\\x64'+'\\x65'+'\\x76'+'\\x69'+'\\x63'+'\\x65'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x69'+'\\x74'+'\\x69'+'\\x61'+'\\x6c'+'\\x2d'+'\\x73'+'\\x63'+'\\x61'+'\\x6c'+'\\x65'+'\\x3d'+'\\x31'+'\\x2e'+'\\x30'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x3e')+YR['\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65']+('\\x3c'+'\\x2f'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2a'+'\\x20'+'\\x7b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x69'+'\\x6e'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x76'+'\\x68'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x78'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x6a'+'\\x75'+'\\x73'+'\\x74'+'\\x69'+'\\x66'+'\\x79'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x62'+'\\x67'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x62'+'\\x67'+'\\x2d'+'\\x70'+'\\x75'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x34'+'\\x35'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x31'+'\\x31'+'\\x30'+'\\x30'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x34'+'\\x35'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x32'+'\\x32'+'\\x30'+'\\x30'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+('\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x59'+'\\x28'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x59'+'\\x28'+'\\x31'+'\\x30'+'\\x30'+'\\x76'+'\\x68'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x2d'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x73'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x64'+'\\x72'+'\\x6f'+'\\x70'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x39'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x76'+'\\x68'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x6f'+'\\x64'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x32'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x35'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x33'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x38'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x39'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x38'+'\\x30'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x35'+'\\x30'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x64'+'\\x72'+'\\x6f'+'\\x70'+'\\x2d'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x28'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x35'+'\\x66'+'\\x35'+'\\x37'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x32'+'\\x29'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x62'+'\\x64'+'\\x32'+'\\x65'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x33'+'\\x29'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x32'+'\\x38'+'\\x63'+'\\x61'+'\\x34'+'\\x32'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x63'+'\\x61'+'\\x6c'+'\\x63'+'\\x28'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x2d'+'\\x20'+'\\x35'+'\\x30'+'\\x70'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x79'+'\\x3a'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x34'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x6f'+'\\x75'+'\\x74'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x61'+'\\x72'+'\\x65'+'\\x74'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x3a'+'\\x3a'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x37'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x62'+'\\x6c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x31'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x66'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x62'+'\\x67'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x64'+'\\x65'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x3e'))+YR['\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x3b'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x28'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x7a'+'\\x68'+'\\x22'+'\\x20')+(!Y7?'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64':'')+('\\x3e'+Yx(0x83)+'\\x20'+'\\u4e2d'+'\\u6587'+'\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x61'+'\\x22'+'\\x20')+(Y7?'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64':'')+('\\x3e'+Yy(0xc6)+'\\x20'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x73'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e')+YR['\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x42'+'\\x6f'+'\\x64'+'\\x79'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x22'+'\\x3e'+'\\x72'+'\\x6f'+'\\x6f'+'\\x74'+'\\x3a'+'\\x7e'+'\\x24'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x3e')+YR['\\x63'+'\\x6f'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x74'+'\\x75'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x22'+'\\x3e'+'\\x72'+'\\x6f'+'\\x6f'+'\\x74'+'\\x3a'+'\\x7e'+'\\x24'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x3e')+(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()?YR['\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x44']:YR['\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x55'])+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x22'+'\\x3e'+'\\x72'+'\\x6f'+'\\x6f'+'\\x74'+'\\x3a'+'\\x7e'+'\\x24'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x3e')+YR['\\x63'+'\\x6f'+'\\x6d'+'\\x6d'+'\\x61'+'\\x6e'+'\\x64']+(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()?YR['\\x70'+'\\x61'+'\\x74'+'\\x68']:YR['\\x75'+'\\x75'+'\\x69'+'\\x64'])+('\\x5d'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x22'+'\\x3e'+'\\x72'+'\\x6f'+'\\x6f'+'\\x74'+'\\x3a'+'\\x7e'+'\\x24'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()?YR['\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44']:YR['\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x55'])+('\\x22'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x66'+'\\x6f'+'\\x63'+'\\x75'+'\\x73'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x4d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x64'+'\\x65'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x30'+'\\x31'+'\\x41'+'\\x42'+'\\x43'+'\\x44'+'\\x45'+'\\x46'+'\\x47'+'\\x48'+'\\x49'+'\\x4a'+'\\x4b'+'\\x4c'+'\\x4d'+'\\x4e'+'\\x4f'+'\\x50'+'\\x51'+'\\x52'+'\\x53'+'\\x54'+'\\x55'+'\\x56'+'\\x57'+'\\x58'+'\\x59'+'\\x5a'+'\\x61'+'\\x62'+'\\x63'+'\\x64'+'\\x65'+'\\x66'+'\\x67'+'\\x68'+'\\x69'+'\\x6a'+'\\x6b'+'\\x6c'+'\\x6d'+'\\x6e'+'\\x6f'+'\\x70'+'\\x71'+'\\x72'+'\\x73'+'\\x74'+'\\x75'+'\\x76'+'\\x77'+'\\x78'+'\\x79'+'\\x7a'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x57'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x20'+'\\x2f'+'\\x20'+'\\x31'+'\\x38'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x69'+'\\x20'+'\\x3c'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x3b'+'\\x20'+'\\x69'+'\\x2b'+'\\x2b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x64'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x69'+'\\x20'+'\\x2a'+'\\x20'+'\\x31'+'\\x38'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x70'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x31'+'\\x35'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x31'+'\\x35'+'\\x20'+'\\x2b'+'\\x20'+'\\x38'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x53'+'\\x69'+'\\x7a'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x34'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x32'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x70'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x20'+'\\x2b'+'\\x20'+'\\x30'+'\\x2e'+'\\x32'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x33'+'\\x30'+'\\x20'+'\\x2b'+'\\x20'+'\\x32'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x6a'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6a'+'\\x20'+'\\x3c'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x3b'+'\\x20'+'\\x6a'+'\\x2b'+'\\x2b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x5b'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x29'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x6e'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x2b'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x62'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x6e'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x76'+'\\x61'+'\\x6c'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x35'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x5b'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x29'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x23'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x69'+'\\x73'+'\\x56'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x28'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x65'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x2f'+'\\x5e'+'\\x5b'+'\\x30'+'\\x2d'+'\\x39'+'\\x61'+'\\x2d'+'\\x66'+'\\x5d'+'\\x7b'+'\\x38'+'\\x7d'+'\\x2d'+'\\x5b'+'\\x30'+'\\x2d'+'\\x39'+'\\x61'+'\\x2d'+'\\x66'+'\\x5d'+'\\x7b'+'\\x34'+'\\x7d'+'\\x2d'+'\\x5b'+'\\x30'+'\\x2d'+'\\x39'+'\\x61'+'\\x2d'+'\\x66'+'\\x5d'+'\\x7b'+'\\x34'+'\\x7d'+'\\x2d'+'\\x5b'+'\\x30'+'\\x2d'+'\\x39'+'\\x61'+'\\x2d'+'\\x66'+'\\x5d'+'\\x7b'+'\\x34'+'\\x7d'+'\\x2d'+'\\x5b'+'\\x30'+'\\x2d'+'\\x39'+'\\x61'+'\\x2d'+'\\x66'+'\\x5d'+'\\x7b'+'\\x31'+'\\x32'+'\\x7d'+'\\x24'+'\\x2f'+'\\x69'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x65'+'\\x78'+'\\x2e'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x28'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2c'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x42'+'\\x6f'+'\\x64'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x42'+'\\x6f'+'\\x64'+'\\x79'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x64'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2e'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b')+('\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x2e'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x72'+'\\x6f'+'\\x6f'+'\\x74'+'\\x3a'+'\\x7e'+'\\x24'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x70'+'\\x72'+'\\x6f'+'\\x6d'+'\\x70'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x42'+'\\x6f'+'\\x64'+'\\x79'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x42'+'\\x6f'+'\\x64'+'\\x79'+'\\x2e'+'\\x73'+'\\x63'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x54'+'\\x6f'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x42'+'\\x6f'+'\\x64'+'\\x79'+'\\x2e'+'\\x73'+'\\x63'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x48'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x68'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'))+J+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x59'+'\\x32'+'\\x39'+'\\x75'+'\\x62'+'\\x6d'+'\\x56'+'\\x6a'+'\\x64'+'\\x43'+'\\x41'+'\\x3d'+'\\x27'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x20'+'\\x27'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x6e'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x27'+'\\u6b63'+'\\u5728'+'\\u8fde'+'\\u63a5'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x27'+'\\u6b63'+'\\u5728'+'\\u5165'+'\\u4fb5'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\u8fde'+'\\u63a5'+'\\u6210'+'\\u529f'+'\\uff01'+'\\u8fd4'+'\\u56de'+'\\u7ed3'+'\\u679c'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u9519'+'\\u8bef'+'\\x3a'+'\\x20'+'\\u65e0'+'\\u6548'+'\\u7684'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\u683c'+'\\u5f0f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u8bf7'+'\\u91cd'+'\\u65b0'+'\\u8f93'+'\\u5165'+'\\u6709'+'\\u6548'+'\\u7684'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x6e'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x27'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x27'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0646'+'\\u0641'+'\\u0648'+'\\u0630'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x21'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0628'+'\\u0627'+'\\u0632'+'\\u06af'+'\\u0634'+'\\u062a'+'\\x20'+'\\u0646'+'\\u062a'+'\\u06cc'+'\\u062c'+'\\u0647'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u062e'+'\\u0637'+'\\u0627'+'\\x3a'+'\\x20'+'\\u0641'+'\\u0631'+'\\u0645'+'\\u062a'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0639'+'\\u062a'+'\\u0628'+'\\u0631'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0645'+'\\u0639'+'\\u062a'+'\\u0628'+'\\u0631'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0648'+'\\u0628'+'\\u0627'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x70'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x6e'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68'+'\\x28'+'\\x27'+'\\x2f'+'\\x27'+'\\x29'+'\\x20'+'\\x3f'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6e'+'\\x6e'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6e'+'\\x67'+'\\x2c'+'\\x20'+'\\x27'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x28'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x2c'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x28'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x6e'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x35'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x69'+'\\x73'+'\\x56'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x28'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x2c'+'\\x20'+'\\x27'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x28'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x2c'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x28'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x35'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x2e'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x54'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x4c'+'\\x69'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x2c'+'\\x20'+'\\x27'+'\\x6f'+'\\x75'+'\\x74'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x28'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8bbe'+'\\u7f6e'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\uff08'+'\\u6709'+'\\u6548'+'\\u671f'+'\\x31'+'\\u5e74'+'\\uff09'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x2f'+'\\x3b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x65'+'\\x73'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x74'+'\\x6f'+'\\x55'+'\\x54'+'\\x43'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x53'+'\\x61'+'\\x6d'+'\\x65'+'\\x53'+'\\x69'+'\\x74'+'\\x65'+'\\x3d'+'\\x4c'+'\\x61'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5237'+'\\u65b0'+'\\u9875'+'\\u9762'+'\\uff0c'+'\\u4e0d'+'\\u4f7f'+'\\u7528'+'\\x55')+('\\x52'+'\\x4c'+'\\u53c2'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x72'+'\\x65'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u9875'+'\\u9762'+'\\u52a0'+'\\u8f7d'+'\\u65f6'+'\\u68c0'+'\\u67e5'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\u548c'+'\\x20'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\uff0c'+'\\u5e76'+'\\u6e05'+'\\u7406'+'\\x55'+'\\x52'+'\\x4c'+'\\u53c2'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x44'+'\\x4f'+'\\x4d'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x64'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x53'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\x55'+'\\x52'+'\\x4c'+'\\u4e2d'+'\\u6709'+'\\u8bed'+'\\u8a00'+'\\u53c2'+'\\u6570'+'\\uff0c'+'\\u79fb'+'\\u9664'+'\\u5b83'+'\\u5e76'+'\\u8bbe'+'\\u7f6e'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x2e'+'\\x64'+'\\x65'+'\\x6c'+'\\x65'+'\\x74'+'\\x65'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8bbe'+'\\u7f6e'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x2f'+'\\x3b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x65'+'\\x73'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x74'+'\\x6f'+'\\x55'+'\\x54'+'\\x43'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x53'+'\\x61'+'\\x6d'+'\\x65'+'\\x53'+'\\x69'+'\\x74'+'\\x65'+'\\x3d'+'\\x4c'+'\\x61'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u4f7f'+'\\u7528'+'\\x68'+'\\x69'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x79'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\u79fb'+'\\u9664'+'\\x55'+'\\x52'+'\\x4c'+'\\u53c2'+'\\u6570'+'\\uff0c'+'\\u4e0d'+'\\u5237'+'\\u65b0'+'\\u9875'+'\\u9762'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x68'+'\\x69'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x79'+'\\x2e'+'\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x7b'+'\\x7d'+'\\x2c'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\u4e2d'+'\\u6709'+'\\u4f46'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\u4e2d'+'\\u6ca1'+'\\u6709'+'\\uff0c'+'\\u540c'+'\\u6b65'+'\\u5230'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67')+('\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x2f'+'\\x3b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x65'+'\\x73'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x74'+'\\x6f'+'\\x55'+'\\x54'+'\\x43'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x53'+'\\x61'+'\\x6d'+'\\x65'+'\\x53'+'\\x69'+'\\x74'+'\\x65'+'\\x3d'+'\\x4c'+'\\x61'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x44'+'\\x4f'+'\\x4d'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x64'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x75'+'\\x75'+'\\x69'+'\\x64'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x66'+'\\x6f'+'\\x63'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x6b'+'\\x65'+'\\x79'+'\\x70'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x2e'+'\\x6b'+'\\x65'+'\\x79'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x45'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3e'));return new Response(YY,{'\\x73\\x74\\x61\\x74\\x75\\x73':0xc8,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2f'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38'}});}if(J&&J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const YM=J['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')?J['\\x74'+'\\x72'+'\\x69'+'\\x6d']():'\\x2f'+J['\\x74'+'\\x72'+'\\x69'+'\\x6d']();const Yg=YM['\\x65'+'\\x6e'+'\\x64'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')&&YM['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x1?YM['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,-0x1):YM;const Yi=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x65'+'\\x6e'+'\\x64'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2f')&&Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x1?Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,-0x1):Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'];if(Yi===Yg){return await Dy(RY,t);}if(Yi===Yg+('\\x2f'+'\\x73'+'\\x75'+'\\x62')){return await DM(RY,t,Rb);}if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x1&&Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']!=='\\x2f'){const YC=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\/$/,'')['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65']('\\x2f'+'\\x73'+'\\x75'+'\\x62','')['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1);if(D2(YC)){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\u8bbf'+'\\u95ee'+'\\u88ab'+'\\u62d2'+'\\u7edd','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u5f53'+'\\u524d'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x20'+'\\u5df2'+'\\u542f'+'\\u7528'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u8def'+'\\u5f84'+'\\u6a21'+'\\u5f0f'+'\\uff0c'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u8bbf'+'\\u95ee'+'\\u5df2'+'\\u7981'+'\\u7528'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}}else{if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x1&&Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']!=='\\x2f'&&!Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2f'+'\\x73'+'\\x75'+'\\x62')){const Yv=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\/$/,'')['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1);if(D2(Yv)){if(Yv===t){return await Dy(RY,Yv);}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\u9519'+'\\u8bef'+'\\x20'+'\\u8bf7'+'\\u6ce8'+'\\u610f'+'\\u53d8'+'\\u91cf'+'\\u540d'+'\\u79f0'+'\\u662f'+'\\x75'+'\\u4e0d'+'\\u662f'+'\\x75'+'\\x75'+'\\x69'+'\\x64'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}}if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2f'+'\\x73'+'\\x75'+'\\x62')){const Yd=Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2f');if(Yd['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x2&&Yd[0x1]==='\\x73'+'\\x75'+'\\x62'){const YH=Yd[0x0]['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1);if(D2(YH)){if(YH===t){return await DM(RY,YH,Rb);}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\u9519'+'\\u8bef'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}}}}if(Rb['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2f'+RF)){return await DM(RY,t);}}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\x4e'+'\\x6f'+'\\x74'+'\\x20'+'\\x46'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x194,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}catch(YJ){return new Response(YJ['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f4});}}};function Dt(RY){return btoa(RY['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x0a'));}function DK(RY){try{if(RY['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x76'+'\\x6c'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f')){const RG=new URL(RY);const RO=decodeURIComponent(RG['\\x68'+'\\x61'+'\\x73'+'\\x68']['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1));const RF=RG['\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'];const Rt=RG['\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'];const RK=parseInt(RG['\\x70'+'\\x6f'+'\\x72'+'\\x74'])||0x1bb;const Rq=new URLSearchParams(RG['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68']);const RI=Rq['\\x67'+'\\x65'+'\\x74']('\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79')==='\\x74'+'\\x6c'+'\\x73'||Rq['\\x67'+'\\x65'+'\\x74']('\\x74'+'\\x6c'+'\\x73')==='\\x74'+'\\x72'+'\\x75'+'\\x65';const RS=Rq['\\x67'+'\\x65'+'\\x74']('\\x74'+'\\x79'+'\\x70'+'\\x65')||'\\x77'+'\\x73';const RM=Rq['\\x67'+'\\x65'+'\\x74']('\\x70'+'\\x61'+'\\x74'+'\\x68')||'\\x2f'+'\\x3f'+'\\x65'+'\\x64'+'\\x3d'+'\\x32'+'\\x30'+'\\x34'+'\\x38';const Rg=Rq['\\x67'+'\\x65'+'\\x74']('\\x68'+'\\x6f'+'\\x73'+'\\x74')||Rt;const Ri=Rq['\\x67'+'\\x65'+'\\x74']('\\x73'+'\\x6e'+'\\x69')||Rg;const RC=Rq['\\x67'+'\\x65'+'\\x74']('\\x61'+'\\x6c'+'\\x70'+'\\x6e')||'\\x68'+'\\x33'+'\\x2c'+'\\x68'+'\\x32'+'\\x2c'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x2f'+'\\x31'+'\\x2e'+'\\x31';const Rv=Rq['\\x67'+'\\x65'+'\\x74']('\\x66'+'\\x70')||Rq['\\x67'+'\\x65'+'\\x74']('\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x69'+'\\x6e'+'\\x67'+'\\x65'+'\\x72'+'\\x70'+'\\x72'+'\\x69'+'\\x6e'+'\\x74')||'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65';const Rd=Rq['\\x67'+'\\x65'+'\\x74']('\\x65'+'\\x63'+'\\x68');const RH={'\\x6e\\x61\\x6d\\x65':RO,'\\x74\\x79\\x70\\x65':'\\x76'+'\\x6c'+'\\x65'+'\\x73'+'\\x73','\\x73\\x65\\x72\\x76\\x65\\x72':Rt,'\\x70\\x6f\\x72\\x74':RK,'\\x75\\x75\\x69\\x64':RF,'\\x74\\x6c\\x73':RI,'\\x6e\\x65\\x74\\x77\\x6f\\x72\\x6b':RS,'\\x63\\x6c\\x69\\x65\\x6e\\x74\\x2d\\x66\\x69\\x6e\\x67\\x65\\x72\\x70\\x72\\x69\\x6e\\x74':Rv};if(RI){RH['\\x73'+'\\x65'+'\\x72'+'\\x76'+'\\x65'+'\\x72'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']=Ri;RH['\\x61'+'\\x6c'+'\\x70'+'\\x6e']=RC['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](RJ=>RJ['\\x74'+'\\x72'+'\\x69'+'\\x6d']());RH['\\x73'+'\\x6b'+'\\x69'+'\\x70'+'\\x2d'+'\\x63'+'\\x65'+'\\x72'+'\\x74'+'\\x2d'+'\\x76'+'\\x65'+'\\x72'+'\\x69'+'\\x66'+'\\x79']=![];}if(RS==='\\x77'+'\\x73'){RH['\\x77'+'\\x73'+'\\x2d'+'\\x6f'+'\\x70'+'\\x74'+'\\x73']={'\\x70\\x61\\x74\\x68':RM,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x48\\x6f\\x73\\x74':Rg}};}if(Rd){const RJ=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';RH['\\x65'+'\\x63'+'\\x68'+'\\x2d'+'\\x6f'+'\\x70'+'\\x74'+'\\x73']={'\\x65\\x6e\\x61\\x62\\x6c\\x65':!![],'\\x71\\x75\\x65\\x72\\x79\\x2d\\x73\\x65\\x72\\x76\\x65\\x72\\x2d\\x6e\\x61\\x6d\\x65':RJ};}return RH;}if(RY['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x74'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x3a'+'\\x2f'+'\\x2f')){const RX=new URL(RY);const RQ=decodeURIComponent(RX['\\x68'+'\\x61'+'\\x73'+'\\x68']['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x1));const Rf=RX['\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'];const RV=RX['\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'];const Rx=parseInt(RX['\\x70'+'\\x6f'+'\\x72'+'\\x74'])||0x1bb;const Ry=new URLSearchParams(RX['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68']);const Rb=Ry['\\x67'+'\\x65'+'\\x74']('\\x74'+'\\x79'+'\\x70'+'\\x65')||'\\x77'+'\\x73';const Rh=Ry['\\x67'+'\\x65'+'\\x74']('\\x70'+'\\x61'+'\\x74'+'\\x68')||'\\x2f'+'\\x3f'+'\\x65'+'\\x64'+'\\x3d'+'\\x32'+'\\x30'+'\\x34'+'\\x38';const Rj=Ry['\\x67'+'\\x65'+'\\x74']('\\x68'+'\\x6f'+'\\x73'+'\\x74')||RV;const Ru=Ry['\\x67'+'\\x65'+'\\x74']('\\x73'+'\\x6e'+'\\x69')||Rj;const RT=Ry['\\x67'+'\\x65'+'\\x74']('\\x61'+'\\x6c'+'\\x70'+'\\x6e')||'\\x68'+'\\x33'+'\\x2c'+'\\x68'+'\\x32'+'\\x2c'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x2f'+'\\x31'+'\\x2e'+'\\x31';const Rc=Ry['\\x67'+'\\x65'+'\\x74']('\\x65'+'\\x63'+'\\x68');const Ro={'\\x6e\\x61\\x6d\\x65':RQ,'\\x74\\x79\\x70\\x65':'\\x74'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e','\\x73\\x65\\x72\\x76\\x65\\x72':RV,'\\x70\\x6f\\x72\\x74':Rx,'\\x70\\x61\\x73\\x73\\x77\\x6f\\x72\\x64':Rf,'\\x6e\\x65\\x74\\x77\\x6f\\x72\\x6b':Rb,'\\x73\\x6e\\x69':Ru,'\\x61\\x6c\\x70\\x6e':RT['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](Ra=>Ra['\\x74'+'\\x72'+'\\x69'+'\\x6d']()),'\\x73\\x6b\\x69\\x70\\x2d\\x63\\x65\\x72\\x74\\x2d\\x76\\x65\\x72\\x69\\x66\\x79':![]};if(Rb==='\\x77'+'\\x73'){Ro['\\x77'+'\\x73'+'\\x2d'+'\\x6f'+'\\x70'+'\\x74'+'\\x73']={'\\x70\\x61\\x74\\x68':Rh,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x48\\x6f\\x73\\x74':Rj}};}if(Rc){const Ra=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Ro['\\x65'+'\\x63'+'\\x68'+'\\x2d'+'\\x6f'+'\\x70'+'\\x74'+'\\x73']={'\\x65\\x6e\\x61\\x62\\x6c\\x65':!![],'\\x71\\x75\\x65\\x72\\x79\\x2d\\x73\\x65\\x72\\x76\\x65\\x72\\x2d\\x6e\\x61\\x6d\\x65':Ra};}return Ro;}}catch(RW){return null;}return null;}async function Dq(RY,RG,RO){const RF=new URL(RG['\\x75'+'\\x72'+'\\x6c']);RF['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']=RF['\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\/sub$/,'')+('\\x2f'+'\\x73'+'\\x75'+'\\x62');RF['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x73'+'\\x65'+'\\x74']('\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74','\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34');const Rt=encodeURIComponent(RF['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']());const RK=h+('\\x3f'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x3d'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x68'+'\\x26'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d')+Rt+('\\x26'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x72'+'\\x74'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x65'+'\\x6d'+'\\x6f'+'\\x6a'+'\\x69'+'\\x3d'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x26'+'\\x6c'+'\\x69'+'\\x73'+'\\x74'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x78'+'\\x75'+'\\x64'+'\\x70'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x75'+'\\x64'+'\\x70'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x74'+'\\x66'+'\\x6f'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x65'+'\\x78'+'\\x70'+'\\x61'+'\\x6e'+'\\x64'+'\\x3d'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x26'+'\\x73'+'\\x63'+'\\x76'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x66'+'\\x64'+'\\x6e'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x6e'+'\\x65'+'\\x77'+'\\x5f'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x74'+'\\x72'+'\\x75'+'\\x65');try{const Rq=await fetch(RK);if(!Rq['\\x6f'+'\\x6b']){throw new Error('\\u8ba2'+'\\u9605'+'\\u8f6c'+'\\u6362'+'\\u670d'+'\\u52a1'+'\\u5931'+'\\u8d25');}let RI=await Rq['\\x74'+'\\x65'+'\\x78'+'\\x74']();if(x){RI=RI['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x0a')['\\x6d'+'\\x61'+'\\x70'](RS=>{if(/^\\s*-\\s*\\{/['\\x74'+'\\x65'+'\\x73'+'\\x74'](RS)&&RS['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3a')&&RS['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x73'+'\\x65'+'\\x72'+'\\x76'+'\\x65'+'\\x72'+'\\x3a')){if(RS['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x65'+'\\x63'+'\\x68'+'\\x2d'+'\\x6f'+'\\x70'+'\\x74'+'\\x73')){return RS;}const RM=RS['\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x7d');if(RM>0x0){const Rg=RS['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,RM)['\\x74'+'\\x72'+'\\x69'+'\\x6d']();if(Rg['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){const Ri=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';const RC=!Rg['\\x65'+'\\x6e'+'\\x64'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x2c')&&!Rg['\\x65'+'\\x6e'+'\\x64'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x7b');return RS['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,RM)+(RC?'\\x2c'+'\\x20':'\\x20')+('\\x65'+'\\x63'+'\\x68'+'\\x2d'+'\\x6f'+'\\x70'+'\\x74'+'\\x73'+'\\x3a'+'\\x20'+'\\x7b'+'\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x2c'+'\\x20'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x2d'+'\\x73'+'\\x65'+'\\x72'+'\\x76'+'\\x65'+'\\x72'+'\\x2d'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3a'+'\\x20'+Ri+'\\x7d')+RS['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](RM);}}}return RS;})['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x0a');}RI=RI['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/^(\\s*nameserver:\\s*\\n)((?:\\s*-\\s*[^\\n]+\\n)*)/m,(RS,RM,Rg)=>{const Ri=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';return RM+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2d'+'\\x20'+Ri+'\\x0a');});return RI;}catch(RS){throw new Error('\\u65e0'+'\\u6cd5'+'\\u83b7'+'\\u53d6'+'\\x20'+'\\x43'+'\\x6c'+'\\x61'+'\\x73'+'\\x68'+'\\x20'+'\\u914d'+'\\u7f6e'+'\\x3a'+'\\x20'+RS['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65']);}}let DI='';async function DS(RY){if(!x){DI='\\x45'+'\\x43'+'\\x48'+'\\u529f'+'\\u80fd'+'\\u5df2'+'\\u7981'+'\\u7528';return null;}DI='';const RG=[];try{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u5c1d'+'\\u8bd5'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u67e5'+'\\u8be2'+'\\x20'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2e'+'\\x2e'+'\\x2e');const RO='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x76'+'\\x2e'+'\\x72'+'\\x65'+'\\x63'+'\\x69'+'\\x70'+'\\x65'+'\\x73'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x67'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2d'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x3f'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x36'+'\\x35';const RF=await fetch(RO,{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x41\\x63\\x63\\x65\\x70\\x74':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u54cd'+'\\u5e94'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+RF['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']);if(RF['\\x6f'+'\\x6b']){const RS=await RF['\\x6a'+'\\x73'+'\\x6f'+'\\x6e']();RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u8fd4'+'\\u56de'+'\\u6570'+'\\u636e'+'\\x3a'+'\\x20'+JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'](RS)['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,0xc8)+('\\x2e'+'\\x2e'+'\\x2e'));if(RS['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']&&RS['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u627e'+'\\u5230'+'\\x20'+RS['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']+('\\x20'+'\\u6761'+'\\u7b54'+'\\u6848'+'\\u8bb0'+'\\u5f55'));for(const RM of RS['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']){if(RM['\\x64'+'\\x61'+'\\x74'+'\\x61']){RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u89e3'+'\\u6790'+'\\u7b54'+'\\u6848'+'\\u6570'+'\\u636e'+'\\x3a'+'\\x20'+typeof RM['\\x64'+'\\x61'+'\\x74'+'\\x61']+('\\x2c'+'\\x20'+'\\u957f'+'\\u5ea6'+'\\x3a'+'\\x20')+String(RM['\\x64'+'\\x61'+'\\x74'+'\\x61'])['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']);const Rg=typeof RM['\\x64'+'\\x61'+'\\x74'+'\\x61']==='\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'?RM['\\x64'+'\\x61'+'\\x74'+'\\x61']:JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'](RM['\\x64'+'\\x61'+'\\x74'+'\\x61']);const Ri=Rg['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/ech=([^\\s\"']+)/);if(Ri&&Ri[0x1]){DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u2705'+'\\x20'+'\\u6210'+'\\u529f'+'\\u4ece'+'\\x20'+'\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u914d'+'\\u7f6e');return Ri[0x1];}if(RM['\\x64'+'\\x61'+'\\x74'+'\\x61']&&!Rg['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x65'+'\\x63'+'\\x68'+'\\x3d')){try{const RC=atob(RM['\\x64'+'\\x61'+'\\x74'+'\\x61']);RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u5c1d'+'\\u8bd5'+'\\x20'+'\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34'+'\\x20'+'\\u89e3'+'\\u7801'+'\\uff0c'+'\\u89e3'+'\\u7801'+'\\u540e'+'\\u957f'+'\\u5ea6'+'\\x3a'+'\\x20'+RC['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']);const Rv=RC['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/ech=([^\\s\"']+)/);if(Rv&&Rv[0x1]){DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u2705'+'\\x20'+'\\u6210'+'\\u529f'+'\\u4ece'+'\\x20'+'\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34'+'\\u89e3'+'\\u7801'+'\\x29'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u914d'+'\\u7f6e');return Rv[0x1];}}catch(Rd){RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34'+'\\x20'+'\\u89e3'+'\\u7801'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+Rd['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65']);}}}}}else{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u672a'+'\\u8fd4'+'\\u56de'+'\\u7b54'+'\\u6848'+'\\u8bb0'+'\\u5f55');}}else{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u8bf7'+'\\u6c42'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+RF['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']);}RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u5c1d'+'\\u8bd5'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u67e5'+'\\u8be2'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x20'+RY+('\\x2e'+'\\x2e'+'\\x2e'));const Rt='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x76'+'\\x2e'+'\\x72'+'\\x65'+'\\x63'+'\\x69'+'\\x70'+'\\x65'+'\\x73'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x67'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2d'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x3f'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+encodeURIComponent(RY)+('\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x36'+'\\x35');const RK=await fetch(Rt,{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x41\\x63\\x63\\x65\\x70\\x74':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x29'+'\\x20'+'\\u54cd'+'\\u5e94'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+RK['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']);if(RK['\\x6f'+'\\x6b']){const RH=await RK['\\x6a'+'\\x73'+'\\x6f'+'\\x6e']();RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x29'+'\\x20'+'\\u8fd4'+'\\u56de'+'\\u6570'+'\\u636e'+'\\x3a'+'\\x20'+JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'](RH)['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,0xc8)+('\\x2e'+'\\x2e'+'\\x2e'));if(RH['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']&&RH['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u627e'+'\\u5230'+'\\x20'+RH['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']+('\\x20'+'\\u6761'+'\\u7b54'+'\\u6848'+'\\u8bb0'+'\\u5f55'));for(const RJ of RH['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']){if(RJ['\\x64'+'\\x61'+'\\x74'+'\\x61']){const RX=typeof RJ['\\x64'+'\\x61'+'\\x74'+'\\x61']==='\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'?RJ['\\x64'+'\\x61'+'\\x74'+'\\x61']:JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'](RJ['\\x64'+'\\x61'+'\\x74'+'\\x61']);const RQ=RX['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/ech=([^\\s\"']+)/);if(RQ&&RQ[0x1]){DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u2705'+'\\x20'+'\\u6210'+'\\u529f'+'\\u4ece'+'\\x20'+'\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x29'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u914d'+'\\u7f6e');return RQ[0x1];}try{const Rf=atob(RJ['\\x64'+'\\x61'+'\\x74'+'\\x61']);const RV=Rf['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/ech=([^\\s\"']+)/);if(RV&&RV[0x1]){DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u2705'+'\\x20'+'\\u6210'+'\\u529f'+'\\u4ece'+'\\x20'+'\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x2c'+'\\x20'+'\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34'+'\\u89e3'+'\\u7801'+'\\x29'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u914d'+'\\u7f6e');return RV[0x1];}}catch(Rx){RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34'+'\\x20'+'\\u89e3'+'\\u7801'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+Rx['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65']);}}}}else{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x29'+'\\x20'+'\\u672a'+'\\u8fd4'+'\\u56de'+'\\u7b54'+'\\u6848'+'\\u8bb0'+'\\u5f55');}}else{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x47'+'\\x6f'+'\\x6f'+'\\x67'+'\\x6c'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x28'+'\\u76ee'+'\\u6807'+'\\u57df'+'\\u540d'+'\\x29'+'\\x20'+'\\u8bf7'+'\\u6c42'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+RK['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']);}RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u5c1d'+'\\u8bd5'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u4f5c'+'\\u4e3a'+'\\u5907'+'\\u9009'+'\\x2e'+'\\x2e'+'\\x2e');const Rq='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2d'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x3f'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x36'+'\\x35';const RI=await fetch(Rq,{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x41\\x63\\x63\\x65\\x70\\x74':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2d'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u54cd'+'\\u5e94'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+RI['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']);if(RI['\\x6f'+'\\x6b']){const Ry=await RI['\\x6a'+'\\x73'+'\\x6f'+'\\x6e']();RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u8fd4'+'\\u56de'+'\\u6570'+'\\u636e'+'\\x3a'+'\\x20'+JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'](Ry)['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,0xc8)+('\\x2e'+'\\x2e'+'\\x2e'));if(Ry['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']&&Ry['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\u627e'+'\\u5230'+'\\x20'+Ry['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']+('\\x20'+'\\u6761'+'\\u7b54'+'\\u6848'+'\\u8bb0'+'\\u5f55'));for(const Rb of Ry['\\x41'+'\\x6e'+'\\x73'+'\\x77'+'\\x65'+'\\x72']){if(Rb['\\x64'+'\\x61'+'\\x74'+'\\x61']){const Rh=Rb['\\x64'+'\\x61'+'\\x74'+'\\x61']['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/ech=([^\\s\"']+)/);if(Rh&&Rh[0x1]){DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u2705'+'\\x20'+'\\u6210'+'\\u529f'+'\\u4ece'+'\\x20'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u914d'+'\\u7f6e');return Rh[0x1];}}}}else{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u672a'+'\\u8fd4'+'\\u56de'+'\\u7b54'+'\\u6848'+'\\u8bb0'+'\\u5f55');}}else{RG['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u8bf7'+'\\u6c42'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+RI['\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']);}DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u274c'+'\\x20'+'\\u6240'+'\\u6709'+'\\x44'+'\\x4e'+'\\x53'+'\\u67e5'+'\\u8be2'+'\\u5747'+'\\u5931'+'\\u8d25'+'\\uff0c'+'\\u672a'+'\\u83b7'+'\\u53d6'+'\\u5230'+'\\x45'+'\\x43'+'\\x48'+'\\u914d'+'\\u7f6e');return null;}catch(Rj){DI=RG['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x5c'+'\\x6e')+('\\x5c'+'\\x6e'+'\\u274c'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\x45'+'\\x43'+'\\x48'+'\\u914d'+'\\u7f6e'+'\\u65f6'+'\\u53d1'+'\\u751f'+'\\u9519'+'\\u8bef'+'\\x3a'+'\\x20')+Rj['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'];return null;}}async function DM(RY,RG,RO=null){if(!RO)RO=new URL(RY['\\x75'+'\\x72'+'\\x6c']);const RF=[];const Rt=RO['\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'];const RK=RO['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74')||'\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x36'+'\\x34';let Rq=null;if(x){const RC=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const Rv=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rq=Rv+'\\x2b'+RC;}async function RI(Rd){if(X){RF['\\x70'+'\\x75'+'\\x73'+'\\x68'](...Dg(Rd,RG,Rt,Rq));}if(Q){RF['\\x70'+'\\x75'+'\\x73'+'\\x68'](...await Di(Rd,RG,Rt,Rq));}if(f){RF['\\x70'+'\\x75'+'\\x73'+'\\x68'](...R1(Rd,RG,Rt,Rq));}}if(v==='\\x43'+'\\x55'+'\\x53'+'\\x54'+'\\x4f'+'\\x4d'){const Rd=[{'\\x69\\x70':Rt,'\\x69\\x73\\x70':'\\u539f'+'\\u751f'+'\\u5730'+'\\u5740'}];await RI(Rd);}else{try{const RH=[{'\\x69\\x70':Rt,'\\x69\\x73\\x70':'\\u539f'+'\\u751f'+'\\u5730'+'\\u5740'}];await RI(RH);}catch(RJ){if(!v){v=await D9(RY);}const RX=await DR(v);if(RX){K=RX['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']+'\\x3a'+RX['\\x70'+'\\x6f'+'\\x72'+'\\x74'];const RQ=[{'\\x69\\x70':RX['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'],'\\x69\\x73\\x70':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2d'+v}];await RI(RQ);}else{const Rf=[{'\\x69\\x70':Rt,'\\x69\\x73\\x70':'\\u539f'+'\\u751f'+'\\u5730'+'\\u5740'}];await RI(Rf);}}}const RS=I['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0||S['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0;if(i){}else if(RS){if(I['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0&&T){await RI(I);}if(S['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0&&u){const RV=S['\\x6d'+'\\x61'+'\\x70'](Rx=>({'\\x69\\x70':Rx['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'],'\\x69\\x73\\x70':Rx['\\x6e'+'\\x61'+'\\x6d'+'\\x65']||Rx['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']}));await RI(RV);}}else{if(u){const Rx=m['\\x6d'+'\\x61'+'\\x70'](Ry=>({'\\x69\\x70':Ry['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'],'\\x69\\x73\\x70':Ry['\\x6e'+'\\x61'+'\\x6d'+'\\x65']||Ry['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']}));await RI(Rx);}if(T){const Ry='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';if(H===Ry){try{const Rb=await DC();if(Rb['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){await RI(Rb);}}catch(Rh){if(!v){v=await D9(RY);}const Rj=await DR(v);if(Rj){K=Rj['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']+'\\x3a'+Rj['\\x70'+'\\x6f'+'\\x72'+'\\x74'];const Ru=[{'\\x69\\x70':Rj['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'],'\\x69\\x73\\x70':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2d'+v}];await RI(Ru);}}}}if(c){try{const RT=await DB();if(RT['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){if(X){RF['\\x70'+'\\x75'+'\\x73'+'\\x68'](...R0(RT,RG,Rt,Rq));}if(Q){RF['\\x70'+'\\x75'+'\\x73'+'\\x68'](...await R2(RT,RG,Rt,Rq));}}}catch(Rc){if(!v){v=await D9(RY);}const Ro=await DR(v);if(Ro){K=Ro['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']+'\\x3a'+Ro['\\x70'+'\\x6f'+'\\x72'+'\\x74'];const Ra=[{'\\x69\\x70':Ro['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'],'\\x69\\x73\\x70':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2d'+v}];await RI(Ra);}}}}if(RF['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){const RW='\\u6240'+'\\u6709'+'\\u8282'+'\\u70b9'+'\\u83b7'+'\\u53d6'+'\\u5931'+'\\u8d25';const RE=atob('\\x64'+'\\x6d'+'\\x78'+'\\x6c'+'\\x63'+'\\x33'+'\\x4d'+'\\x3d');const Rm=RE+('\\x3a'+'\\x2f'+'\\x2f'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x2d'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x2d'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x2d'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x2d'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x40'+'\\x31'+'\\x32'+'\\x37'+'\\x2e'+'\\x30'+'\\x2e'+'\\x30'+'\\x2e'+'\\x31'+'\\x3a'+'\\x38'+'\\x30'+'\\x3f'+'\\x65'+'\\x6e'+'\\x63'+'\\x72'+'\\x79'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x25'+'\\x32'+'\\x46'+'\\x23')+encodeURIComponent(RW);RF['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rm);}let RM;let Rg='\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2f'+'\\x70'+'\\x6c'+'\\x61'+'\\x69'+'\\x6e'+'\\x3b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38';switch(RK['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()){case atob('\\x59'+'\\x32'+'\\x78'+'\\x68'+'\\x63'+'\\x32'+'\\x67'+'\\x3d'):case atob('\\x59'+'\\x32'+'\\x78'+'\\x68'+'\\x63'+'\\x32'+'\\x68'+'\\x79'):RM=await Dq(RF,RY,RG);Rg='\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2f'+'\\x79'+'\\x61'+'\\x6d'+'\\x6c'+'\\x3b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38';break;case atob('\\x63'+'\\x33'+'\\x56'+'\\x79'+'\\x5a'+'\\x32'+'\\x55'+'\\x3d'):case atob('\\x63'+'\\x33'+'\\x56'+'\\x79'+'\\x5a'+'\\x32'+'\\x55'+'\\x79'):case atob('\\x63'+'\\x33'+'\\x56'+'\\x79'+'\\x5a'+'\\x32'+'\\x55'+'\\x7a'):case atob('\\x63'+'\\x33'+'\\x56'+'\\x79'+'\\x5a'+'\\x32'+'\\x55'+'\\x30'):RM=generateSurgeConfig(RF);break;case atob('\\x63'+'\\x58'+'\\x56'+'\\x68'+'\\x62'+'\\x6e'+'\\x52'+'\\x31'+'\\x62'+'\\x58'+'\\x56'+'\\x73'+'\\x64'+'\\x41'+'\\x3d'+'\\x3d'):case atob('\\x63'+'\\x58'+'\\x56'+'\\x68'+'\\x62'+'\\x6e'+'\\x67'+'\\x3d'):case'\\x71'+'\\x75'+'\\x61'+'\\x6e'+'\\x78':RM=Dt(RF);break;case atob('\\x63'+'\\x33'+'\\x4d'+'\\x3d'):case atob('\\x63'+'\\x33'+'\\x4e'+'\\x79'):RM=generateSSConfig(RF);break;case atob('\\x64'+'\\x6a'+'\\x4a'+'\\x79'+'\\x59'+'\\x58'+'\\x6b'+'\\x3d'):RM=generateV2RayConfig(RF);break;case atob('\\x62'+'\\x47'+'\\x39'+'\\x76'+'\\x62'+'\\x67'+'\\x3d'+'\\x3d'):RM=generateLoonConfig(RF);break;default:RM=btoa(RF['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x0a'));}const Ri={'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':Rg,'\\x43\\x61\\x63\\x68\\x65\\x2d\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\x6e'+'\\x6f'+'\\x2d'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x65'+'\\x2c'+'\\x20'+'\\x6e'+'\\x6f'+'\\x2d'+'\\x63'+'\\x61'+'\\x63'+'\\x68'+'\\x65'+'\\x2c'+'\\x20'+'\\x6d'+'\\x75'+'\\x73'+'\\x74'+'\\x2d'+'\\x72'+'\\x65'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x2c'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x30'};if(x){Ri['\\x58'+'\\x2d'+'\\x45'+'\\x43'+'\\x48'+'\\x2d'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']='\\x45'+'\\x4e'+'\\x41'+'\\x42'+'\\x4c'+'\\x45'+'\\x44';if(Rq){Ri['\\x58'+'\\x2d'+'\\x45'+'\\x43'+'\\x48'+'\\x2d'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2d'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']=String(Rq['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']);}}return new Response(RM,{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':Ri});}function Dg(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[0x1bb];const RI=g?[]:[0x50];const RS=[];const RM='\\x2f'+'\\x3f'+'\\x65'+'\\x64'+'\\x3d'+'\\x32'+'\\x30'+'\\x34'+'\\x38';const Rg=atob('\\x64'+'\\x6d'+'\\x78'+'\\x6c'+'\\x63'+'\\x33'+'\\x4d'+'\\x3d');RY['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](Ri=>{let RC=Ri['\\x69'+'\\x73'+'\\x70']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\s/g,'\\x5f');if(Ri['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']&&Ri['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){RC=RC+'\\x2d'+Ri['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const Rv=Ri['\\x69'+'\\x70']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x3a')?'\\x5b'+Ri['\\x69'+'\\x70']+'\\x5d':Ri['\\x69'+'\\x70'];let Rd=[];if(Ri['\\x70'+'\\x6f'+'\\x72'+'\\x74']){const RH=Ri['\\x70'+'\\x6f'+'\\x72'+'\\x74'];if(RK['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](RH)){Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RH,'\\x74\\x6c\\x73':!![]});}else if(Rt['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](RH)){if(!g){Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RH,'\\x74\\x6c\\x73':![]});}}else{Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RH,'\\x74\\x6c\\x73':!![]});}}else{Rq['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RJ=>{Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RJ,'\\x74\\x6c\\x73':!![]});});RI['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RJ=>{Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RJ,'\\x74\\x6c\\x73':![]});});}Rd['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](({port:RJ,tls:RX})=>{if(RX){const RQ=RC+'\\x2d'+RJ+('\\x2d'+'\\x57'+'\\x53'+'\\x2d'+'\\x54'+'\\x4c'+'\\x53');const Rf=new URLSearchParams({'\\x65\\x6e\\x63\\x72\\x79\\x70\\x74\\x69\\x6f\\x6e':'\\x6e'+'\\x6f'+'\\x6e'+'\\x65','\\x73\\x65\\x63\\x75\\x72\\x69\\x74\\x79':'\\x74'+'\\x6c'+'\\x73','\\x73\\x6e\\x69':RO,'\\x66\\x70':x?'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65':'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x69'+'\\x7a'+'\\x65'+'\\x64','\\x74\\x79\\x70\\x65':'\\x77'+'\\x73','\\x68\\x6f\\x73\\x74':RO,'\\x70\\x61\\x74\\x68':RM});if(x){const RV=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const Rx=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rf['\\x73'+'\\x65'+'\\x74']('\\x61'+'\\x6c'+'\\x70'+'\\x6e','\\x68'+'\\x33'+'\\x2c'+'\\x68'+'\\x32'+'\\x2c'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x2f'+'\\x31'+'\\x2e'+'\\x31');Rf['\\x73'+'\\x65'+'\\x74']('\\x65'+'\\x63'+'\\x68',Rx+'\\x2b'+RV);}RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rg+('\\x3a'+'\\x2f'+'\\x2f')+RG+'\\x40'+Rv+'\\x3a'+RJ+'\\x3f'+Rf['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()+'\\x23'+encodeURIComponent(RQ));}else{const Ry=RC+'\\x2d'+RJ+('\\x2d'+'\\x57'+'\\x53');const Rb=new URLSearchParams({'\\x65\\x6e\\x63\\x72\\x79\\x70\\x74\\x69\\x6f\\x6e':'\\x6e'+'\\x6f'+'\\x6e'+'\\x65','\\x73\\x65\\x63\\x75\\x72\\x69\\x74\\x79':'\\x6e'+'\\x6f'+'\\x6e'+'\\x65','\\x74\\x79\\x70\\x65':'\\x77'+'\\x73','\\x68\\x6f\\x73\\x74':RO,'\\x70\\x61\\x74\\x68':RM});RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rg+('\\x3a'+'\\x2f'+'\\x2f')+RG+'\\x40'+Rv+'\\x3a'+RJ+'\\x3f'+Rb['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()+'\\x23'+encodeURIComponent(Ry));}});});return RS;}async function Di(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[0x1bb];const RI=g?[]:[0x50];const RS=[];const RM='\\x2f'+'\\x3f'+'\\x65'+'\\x64'+'\\x3d'+'\\x32'+'\\x30'+'\\x34'+'\\x38';const Rg=V||RG;RY['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](Ri=>{let RC=Ri['\\x69'+'\\x73'+'\\x70']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\s/g,'\\x5f');if(Ri['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']&&Ri['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){RC=RC+'\\x2d'+Ri['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const Rv=Ri['\\x69'+'\\x70']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x3a')?'\\x5b'+Ri['\\x69'+'\\x70']+'\\x5d':Ri['\\x69'+'\\x70'];let Rd=[];if(Ri['\\x70'+'\\x6f'+'\\x72'+'\\x74']){const RH=Ri['\\x70'+'\\x6f'+'\\x72'+'\\x74'];if(RK['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](RH)){Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RH,'\\x74\\x6c\\x73':!![]});}else if(Rt['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](RH)){if(!g){Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RH,'\\x74\\x6c\\x73':![]});}}else{Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RH,'\\x74\\x6c\\x73':!![]});}}else{Rq['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RJ=>{Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RJ,'\\x74\\x6c\\x73':!![]});});RI['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RJ=>{Rd['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x70\\x6f\\x72\\x74':RJ,'\\x74\\x6c\\x73':![]});});}Rd['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](({port:RJ,tls:RX})=>{if(RX){const RQ=RC+'\\x2d'+RJ+'\\x2d'+atob('\\x56'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x2d'+'\\x57'+'\\x53'+'\\x2d'+'\\x54'+'\\x4c'+'\\x53');const Rf=new URLSearchParams({'\\x73\\x65\\x63\\x75\\x72\\x69\\x74\\x79':'\\x74'+'\\x6c'+'\\x73','\\x73\\x6e\\x69':RO,'\\x66\\x70':'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65','\\x74\\x79\\x70\\x65':'\\x77'+'\\x73','\\x68\\x6f\\x73\\x74':RO,'\\x70\\x61\\x74\\x68':RM});if(x){const RV=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const Rx=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rf['\\x73'+'\\x65'+'\\x74']('\\x61'+'\\x6c'+'\\x70'+'\\x6e','\\x68'+'\\x33'+'\\x2c'+'\\x68'+'\\x32'+'\\x2c'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x2f'+'\\x31'+'\\x2e'+'\\x31');Rf['\\x73'+'\\x65'+'\\x74']('\\x65'+'\\x63'+'\\x68',Rx+'\\x2b'+RV);}RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](''+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75'+'\\x4f'+'\\x69'+'\\x38'+'\\x76')+Rg+'\\x40'+Rv+'\\x3a'+RJ+'\\x3f'+Rf['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()+'\\x23'+encodeURIComponent(RQ));}else{const Ry=RC+'\\x2d'+RJ+'\\x2d'+atob('\\x56'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x2d'+'\\x57'+'\\x53');const Rb=new URLSearchParams({'\\x73\\x65\\x63\\x75\\x72\\x69\\x74\\x79':'\\x6e'+'\\x6f'+'\\x6e'+'\\x65','\\x74\\x79\\x70\\x65':'\\x77'+'\\x73','\\x68\\x6f\\x73\\x74':RO,'\\x70\\x61\\x74\\x68':RM});RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](''+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75'+'\\x4f'+'\\x69'+'\\x38'+'\\x76')+Rg+'\\x40'+Rv+'\\x3a'+RJ+'\\x3f'+Rb['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()+'\\x23'+encodeURIComponent(Ry));}});});return RS;}async function DC(){const RY='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x77'+'\\x77'+'\\x77'+'\\x2e'+'\\x77'+'\\x65'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x2e'+'\\x76'+'\\x69'+'\\x70'+'\\x2f'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x2f'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2f'+'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x5f'+'\\x76'+'\\x34'+'\\x2e'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c';const RG='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x77'+'\\x77'+'\\x77'+'\\x2e'+'\\x77'+'\\x65'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x2e'+'\\x76'+'\\x69'+'\\x70'+'\\x2f'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x2f'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2f'+'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x5f'+'\\x76'+'\\x36'+'\\x2e'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c';let RO=[];const RF=D7('\\x69'+'\\x70'+'\\x76'+'\\x34','')===''||D7('\\x69'+'\\x70'+'\\x76'+'\\x34','\\x79'+'\\x65'+'\\x73')!=='\\x6e'+'\\x6f';const Rt=D7('\\x69'+'\\x70'+'\\x76'+'\\x36','')===''||D7('\\x69'+'\\x70'+'\\x76'+'\\x36','\\x79'+'\\x65'+'\\x73')!=='\\x6e'+'\\x6f';const RK=D7('\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65','')===''||D7('\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65','\\x79'+'\\x65'+'\\x73')!=='\\x6e'+'\\x6f';const Rq=D7('\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d','')===''||D7('\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d','\\x79'+'\\x65'+'\\x73')!=='\\x6e'+'\\x6f';const RI=D7('\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d','')===''||D7('\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d','\\x79'+'\\x65'+'\\x73')!=='\\x6e'+'\\x6f';try{const RS=[];if(RF){RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](Dv(RY));}else{RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](Promise['\\x72'+'\\x65'+'\\x73'+'\\x6f'+'\\x6c'+'\\x76'+'\\x65']([]));}if(Rt){RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](Dv(RG));}else{RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](Promise['\\x72'+'\\x65'+'\\x73'+'\\x6f'+'\\x6c'+'\\x76'+'\\x65']([]));}const [RM,Rg]=await Promise['\\x61'+'\\x6c'+'\\x6c'](RS);RO=[...RM,...Rg];if(RO['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){RO=RO['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](Ri=>{const RC=Ri['\\x69'+'\\x73'+'\\x70']||'';if(RC['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u79fb'+'\\u52a8')&&!RK)return![];if(RC['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u8054'+'\\u901a')&&!Rq)return![];if(RC['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u7535'+'\\u4fe1')&&!RI)return![];return!![];});}if(RO['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){return RO;}}catch(Ri){}return[];}async function Dv(RY){try{const RG=await fetch(RY,{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x55\\x73\\x65\\x72\\x2d\\x41\\x67\\x65\\x6e\\x74':'\\x4d'+'\\x6f'+'\\x7a'+'\\x69'+'\\x6c'+'\\x6c'+'\\x61'+'\\x2f'+'\\x35'+'\\x2e'+'\\x30'}});if(!RG['\\x6f'+'\\x6b']){return[];}const RO=await RG['\\x74'+'\\x65'+'\\x78'+'\\x74']();const RF=[];const Rt=/<tr[\\s\\S]*?<\\/tr>/g;const RK=/<td data-label=\"线路名称\">(.+?)<\\/td>[\\s\\S]*?<td data-label=\"优选地址\">([\\d.:a-fA-F]+)<\\/td>[\\s\\S]*?<td data-label=\"数据中心\">(.+?)<\\/td>/;let Rq;while((Rq=Rt['\\x65'+'\\x78'+'\\x65'+'\\x63'](RO))!==null){const RI=Rq[0x0];const RS=RI['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](RK);if(RS&&RS[0x1]&&RS[0x2]){const RM=RS[0x3]?RS[0x3]['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/<.*?>/g,''):'';RF['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x73\\x70':RS[0x1]['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/<.*?>/g,''),'\\x69\\x70':RS[0x2]['\\x74'+'\\x72'+'\\x69'+'\\x6d'](),'\\x63\\x6f\\x6c\\x6f':RM});}}if(RF['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){}return RF;}catch(Rg){return[];}}async function Dd(RY){const RG=new URL(RY['\\x75'+'\\x72'+'\\x6c']);const RO=RG['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x70')||'';const RF=(RG['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x77'+'\\x6b')||'')['\\x74'+'\\x6f'+'\\x55'+'\\x70'+'\\x70'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();const Rt=RG['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x72'+'\\x6d')||'';const RK=Rt?Rt['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()!=='\\x6e'+'\\x6f':null;const Rq=RG['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x73')||'';let RI=null;if(Rq){try{RI=Dx(Rq);}catch(RX){}}let RS=v;if(!RS||RS===''){if(RF){RS=RF;}else if(d&&d['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){RS=d['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x74'+'\\x6f'+'\\x55'+'\\x70'+'\\x70'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();}else{RS=await D9(RY);}}else if(RF){RS=RF;}const RM=new WebSocketPair();const [Rg,Ri]=Object['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x73'](RM);Ri['\\x61'+'\\x63'+'\\x63'+'\\x65'+'\\x70'+'\\x74']();let RC={'\\x73\\x6f\\x63\\x6b\\x65\\x74':null};let Rv=![];let Rd=null;const RH=RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74'](atob('\\x63'+'\\x32'+'\\x56'+'\\x6a'+'\\x4c'+'\\x58'+'\\x64'+'\\x6c'+'\\x59'+'\\x6e'+'\\x4e'+'\\x76'+'\\x59'+'\\x32'+'\\x74'+'\\x6c'+'\\x64'+'\\x43'+'\\x31'+'\\x77'+'\\x63'+'\\x6d'+'\\x39'+'\\x30'+'\\x62'+'\\x32'+'\\x4e'+'\\x76'+'\\x62'+'\\x41'+'\\x3d'+'\\x3d'))||'';const RJ=DX(Ri,RH);RJ['\\x70'+'\\x69'+'\\x70'+'\\x65'+'\\x54'+'\\x6f'](new WritableStream({async '\\x77\\x72\\x69\\x74\\x65'(RQ){if(Rv)return await Df(RQ,Ri,null);if(RC['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74']){const Rf=RC['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74']['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x67'+'\\x65'+'\\x74'+'\\x57'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x72']();await Rf['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](RQ);Rf['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();return;}if(!Rd){if(X&&RQ['\\x62'+'\\x79'+'\\x74'+'\\x65'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>=0x18){const RV=DJ(RQ,t);if(!RV['\\x68'+'\\x61'+'\\x73'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72']){Rd='\\x76'+'\\x6c'+'\\x65'+'\\x73'+'\\x73';const {addressType:Rx,port:Ry,hostname:Rb,rawIndex:Rh,version:Rj,isUDP:Ru}=RV;if(Ru){if(Ry===0x35)Rv=!![];else throw new Error(w);}const RT=new Uint8Array([Rj[0x0],0x0]);const Rc=RQ['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rh);if(Rv)return Df(Rc,Ri,RT);await DH(Rx,Rb,Ry,Rc,Ri,RT,RC,RO,RS,RK,RI);return;}}if(Q&&RQ['\\x62'+'\\x79'+'\\x74'+'\\x65'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>=0x38){const Ro=await Db(RQ,t);if(!Ro['\\x68'+'\\x61'+'\\x73'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72']){Rd=atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75');const {addressType:Ra,port:RW,hostname:RE,rawClientData:Rm}=Ro;await DH(Ra,RE,RW,Rm,Ri,null,RC,RO,RS,RK,RI);return;}}throw new Error('\\x49'+'\\x6e'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x20'+'\\x6f'+'\\x72'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x74'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x66'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64');}}}))['\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](RQ=>{});return new Response(null,{'\\x73\\x74\\x61\\x74\\x75\\x73':0x65,'\\x77\\x65\\x62\\x53\\x6f\\x63\\x6b\\x65\\x74':Rg});}async function DH(RY,RG,RO,RF,Rt,RK,Rq,RI='',RS='',RM=null,Rg=null){const Ri=RI||K;const RC=RS||v;const Rv=RM!==null?RM:C;const Rd=Rg||r;const RH=Rg?!![]:e;async function RJ(RQ,Rf,RV=![]){const Rx=RV?await DV(RY,RQ,Rf,Rd):connect({'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':RQ,'\\x70\\x6f\\x72\\x74':Rf});const Ry=Rx['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x67'+'\\x65'+'\\x74'+'\\x57'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x72']();await Ry['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](RF);Ry['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();return Rx;}async function RX(){if(M&&RH){try{const RQ=await RJ(RG,RO,!![]);Rq['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74']=RQ;RQ['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65'+'\\x64']['\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](()=>{})['\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'](()=>Dl(Rt));DQ(RQ,Rt,RK,null);return;}catch(Rf){let RV,Rx;if(Ri&&Ri['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const Ry=DF(Ri);RV=Ry['\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'];Rx=Ry['\\x70'+'\\x6f'+'\\x72'+'\\x74']||RO;}else{const Rb=await DR(RC,Rv);RV=Rb?Rb['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']:RG;Rx=Rb?Rb['\\x70'+'\\x6f'+'\\x72'+'\\x74']:RO;}try{const Rh=await RJ(RV,Rx,![]);Rq['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74']=Rh;Rh['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65'+'\\x64']['\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](()=>{})['\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'](()=>Dl(Rt));DQ(Rh,Rt,RK,null);}catch(Rj){Dl(Rt);}}}else{let Ru,RT;if(Ri&&Ri['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){const Rc=DF(Ri);Ru=Rc['\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'];RT=Rc['\\x70'+'\\x6f'+'\\x72'+'\\x74']||RO;}else{const Ro=await DR(RC,Rv);Ru=Ro?Ro['\\x64'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']:RG;RT=Ro?Ro['\\x70'+'\\x6f'+'\\x72'+'\\x74']:RO;}try{const Ra=await RJ(Ru,RT,RH);Rq['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74']=Ra;Ra['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65'+'\\x64']['\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](()=>{})['\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'](()=>Dl(Rt));DQ(Ra,Rt,RK,null);}catch(RW){Dl(Rt);}}}try{const RQ=await RJ(RG,RO,M?![]:RH);Rq['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74']=RQ;DQ(RQ,Rt,RK,RX);}catch(Rf){RX();}}function DJ(RY,RG){if(RY['\\x62'+'\\x79'+'\\x74'+'\\x65'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']<0x18)return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':L};const RO=new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,0x1));if(De(new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x1,0x11)))!==RG)return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':Z};const RF=new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x11,0x12))[0x0];const Rt=new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x12+RF,0x13+RF))[0x0];let RK=![];if(Rt===0x1){}else if(Rt===0x2){RK=!![];}else{return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':z};}const Rq=0x13+RF;const RI=new DataView(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rq,Rq+0x2))['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x31'+'\\x36'](0x0);let RS=Rq+0x2,RM=0x0,Rg=RS+0x1,Ri='';const RC=new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](RS,Rg))[0x0];switch(RC){case B:RM=0x4;Ri=new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rg,Rg+RM))['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x2e');break;case D0:RM=new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rg,Rg+0x1))[0x0];Rg+=0x1;Ri=new TextDecoder()['\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rg,Rg+RM));break;case D1:RM=0x10;const Rv=[];const Rd=new DataView(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rg,Rg+RM));for(let RH=0x0;RH<0x8;RH++)Rv['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rd['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x31'+'\\x36'](RH*0x2)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10));Ri=Rv['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x3a');break;default:return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':n+('\\x3a'+'\\x20')+RC};}if(!Ri)return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':p+('\\x3a'+'\\x20')+RC};return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':![],'\\x61\\x64\\x64\\x72\\x65\\x73\\x73\\x54\\x79\\x70\\x65':RC,'\\x70\\x6f\\x72\\x74':RI,'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':Ri,'\\x69\\x73\\x55\\x44\\x50':RK,'\\x72\\x61\\x77\\x49\\x6e\\x64\\x65\\x78':Rg+RM,'\\x76\\x65\\x72\\x73\\x69\\x6f\\x6e':RO};}function DX(RY,RG){let RO=![];return new ReadableStream({'\\x73\\x74\\x61\\x72\\x74'(RF){RY['\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72']('\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65',Rq=>{if(!RO)RF['\\x65'+'\\x6e'+'\\x71'+'\\x75'+'\\x65'+'\\x75'+'\\x65'](Rq['\\x64'+'\\x61'+'\\x74'+'\\x61']);});RY['\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72']('\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65',()=>{if(!RO){Dl(RY);RF['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65']();}});RY['\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72']('\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72',Rq=>RF['\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'](Rq));const {earlyData:Rt,error:RK}=DP(RG);if(RK)RF['\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'](RK);else if(Rt)RF['\\x65'+'\\x6e'+'\\x71'+'\\x75'+'\\x65'+'\\x75'+'\\x65'](Rt);},'\\x63\\x61\\x6e\\x63\\x65\\x6c'(){RO=!![];Dl(RY);}});}async function DQ(RY,RG,RO,RF){let Rt=RO,RK=![];await RY['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x70'+'\\x69'+'\\x70'+'\\x65'+'\\x54'+'\\x6f'](new WritableStream({async '\\x77\\x72\\x69\\x74\\x65'(Rq,RI){RK=!![];if(RG['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x79'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65']!==0x1)RI['\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'](N);if(Rt){RG['\\x73'+'\\x65'+'\\x6e'+'\\x64'](await new Blob([Rt,Rq])['\\x61'+'\\x72'+'\\x72'+'\\x61'+'\\x79'+'\\x42'+'\\x75'+'\\x66'+'\\x66'+'\\x65'+'\\x72']());Rt=null;}else{RG['\\x73'+'\\x65'+'\\x6e'+'\\x64'](Rq);}},'\\x61\\x62\\x6f\\x72\\x74'(Rq){}}))['\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](Rq=>{Dl(RG);});if(!RK&&RF)RF();}async function Df(RY,RG,RO){try{const RF=connect({'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':'\\x38'+'\\x2e'+'\\x38'+'\\x2e'+'\\x34'+'\\x2e'+'\\x34','\\x70\\x6f\\x72\\x74':0x35});let Rt=RO;const RK=RF['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x67'+'\\x65'+'\\x74'+'\\x57'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x72']();await RK['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](RY);RK['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();await RF['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x70'+'\\x69'+'\\x70'+'\\x65'+'\\x54'+'\\x6f'](new WritableStream({async '\\x77\\x72\\x69\\x74\\x65'(Rq){if(RG['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x79'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65']===0x1){if(Rt){RG['\\x73'+'\\x65'+'\\x6e'+'\\x64'](await new Blob([Rt,Rq])['\\x61'+'\\x72'+'\\x72'+'\\x61'+'\\x79'+'\\x42'+'\\x75'+'\\x66'+'\\x66'+'\\x65'+'\\x72']());Rt=null;}else{RG['\\x73'+'\\x65'+'\\x6e'+'\\x64'](Rq);}}}}));}catch(Rq){}}async function DV(RY,RG,RO,RF=r){const {username:Rt,password:RK,hostname:Rq,socksPort:RI}=RF;const RS=connect({'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':Rq,'\\x70\\x6f\\x72\\x74':RI});const RM=RS['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x67'+'\\x65'+'\\x74'+'\\x57'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x72']();await RM['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](new Uint8Array(Rt?[0x5,0x2,0x0,0x2]:[0x5,0x1,0x0]));const Rg=RS['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x67'+'\\x65'+'\\x74'+'\\x52'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72']();let Ri=(await Rg['\\x72'+'\\x65'+'\\x61'+'\\x64']())['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'];if(Ri[0x0]!==0x5||Ri[0x1]===0xff)throw new Error(s);if(Ri[0x1]===0x2){if(!Rt||!RK)throw new Error(A);const Rd=new TextEncoder();const RH=new Uint8Array([0x1,Rt['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],...Rd['\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](Rt),RK['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],...Rd['\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](RK)]);await RM['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](RH);Ri=(await Rg['\\x72'+'\\x65'+'\\x61'+'\\x64']())['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'];if(Ri[0x0]!==0x1||Ri[0x1]!==0x0)throw new Error(P);}const RC=new TextEncoder();let Rv;switch(RY){case B:Rv=new Uint8Array([0x1,...RG['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2e')['\\x6d'+'\\x61'+'\\x70'](Number)]);break;case D0:Rv=new Uint8Array([0x3,RG['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],...RC['\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](RG)]);break;case D1:Rv=new Uint8Array([0x4,...RG['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3a')['\\x66'+'\\x6c'+'\\x61'+'\\x74'+'\\x4d'+'\\x61'+'\\x70'](RJ=>[parseInt(RJ['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,0x2),0x10),parseInt(RJ['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x2),0x10)])]);break;default:throw new Error(n);}await RM['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](new Uint8Array([0x5,0x1,0x0,...Rv,RO>>0x8,RO&0xff]));Ri=(await Rg['\\x72'+'\\x65'+'\\x61'+'\\x64']())['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'];if(Ri[0x1]!==0x0)throw new Error(l);RM['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();Rg['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();return RS;}function Dx(RY){let [RG,RO]=RY['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x40')['\\x72'+'\\x65'+'\\x76'+'\\x65'+'\\x72'+'\\x73'+'\\x65']();let RF,Rt,RK,Rq;if(RO){const RS=RO['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3a');if(RS['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']!==0x2)throw new Error(k);[RF,Rt]=RS;}const RI=RG['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3a');Rq=Number(RI['\\x70'+'\\x6f'+'\\x70']());if(isNaN(Rq))throw new Error(k);RK=RI['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x3a');if(RK['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x3a')&&!/^\\[.*\\]$/['\\x74'+'\\x65'+'\\x73'+'\\x74'](RK))throw new Error(k);return{'\\x75\\x73\\x65\\x72\\x6e\\x61\\x6d\\x65':RF,'\\x70\\x61\\x73\\x73\\x77\\x6f\\x72\\x64':Rt,'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':RK,'\\x73\\x6f\\x63\\x6b\\x73\\x50\\x6f\\x72\\x74':Rq};}async function Dy(RY,RG=null){const Yb=G;const Yh=G;if(!RG)RG=t;const RO=new URL(RY['\\x75'+'\\x72'+'\\x6c']);const RF=RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65')||'';let Rt=null;if(RF){const Rg=RF['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3b')['\\x6d'+'\\x61'+'\\x70'](Ri=>Ri['\\x74'+'\\x72'+'\\x69'+'\\x6d']());for(const Ri of Rg){if(Ri['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d')){Rt=Ri['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x3d')[0x1];break;}}}let RK=![];if(Rt==='\\x66'+'\\x61'||Rt==='\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'){RK=!![];}else if(Rt==='\\x7a'+'\\x68'||Rt==='\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e'){RK=![];}else{const RC=RY['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x41'+'\\x63'+'\\x63'+'\\x65'+'\\x70'+'\\x74'+'\\x2d'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65')||'';const Rv=RC['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')[0x0]['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2d')[0x0]['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();RK=Rv==='\\x66'+'\\x61'||RC['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52')||RC['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x66'+'\\x61');}const Rq=RK?'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52':'\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e';const RI={'\\x7a\\x68':{'\\x74\\x69\\x74\\x6c\\x65':'\\u8ba2'+'\\u9605'+'\\u4e2d'+'\\u5fc3','\\x73\\x75\\x62\\x74\\x69\\x74\\x6c\\x65':'\\u591a'+'\\u5ba2'+'\\u6237'+'\\u7aef'+'\\u652f'+'\\u6301'+'\\x20'+'\\u2022'+'\\x20'+'\\u667a'+'\\u80fd'+'\\u4f18'+'\\u9009'+'\\x20'+'\\u2022'+'\\x20'+'\\u4e00'+'\\u952e'+'\\u751f'+'\\u6210','\\x73\\x65\\x6c\\x65\\x63\\x74\\x43\\x6c\\x69\\x65\\x6e\\x74':'\\x5b'+'\\x20'+'\\u9009'+'\\u62e9'+'\\u5ba2'+'\\u6237'+'\\u7aef'+'\\x20'+'\\x5d','\\x73\\x79\\x73\\x74\\x65\\x6d\\x53\\x74\\x61\\x74\\x75\\x73':'\\x5b'+'\\x20'+'\\u7cfb'+'\\u7edf'+'\\u72b6'+'\\u6001'+'\\x20'+'\\x5d','\\x63\\x6f\\x6e\\x66\\x69\\x67\\x4d\\x61\\x6e\\x61\\x67\\x65\\x6d\\x65\\x6e\\x74':'\\x5b'+'\\x20'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\x20'+'\\x5d','\\x72\\x65\\x6c\\x61\\x74\\x65\\x64\\x4c\\x69\\x6e\\x6b\\x73':'\\x5b'+'\\x20'+'\\u76f8'+'\\u5173'+'\\u94fe'+'\\u63a5'+'\\x20'+'\\x5d','\\x63\\x68\\x65\\x63\\x6b\\x69\\x6e\\x67':'\\u68c0'+'\\u6d4b'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e','\\x77\\x6f\\x72\\x6b\\x65\\x72\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\u5730'+'\\u533a'+'\\x3a'+'\\x20','\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4d\\x65\\x74\\x68\\x6f\\x64':'\\u68c0'+'\\u6d4b'+'\\u65b9'+'\\u5f0f'+'\\x3a'+'\\x20','\\x70\\x72\\x6f\\x78\\x79\\x49\\x50\\x53\\x74\\x61\\x74\\x75\\x73':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20','\\x63\\x75\\x72\\x72\\x65\\x6e\\x74\\x49\\x50':'\\u5f53'+'\\u524d'+'\\u4f7f'+'\\u7528'+'\\x49'+'\\x50'+'\\x3a'+'\\x20','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68':'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\x3a'+'\\x20','\\x73\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4c\\x6f\\x67\\x69\\x63':'\\u9009'+'\\u62e9'+'\\u903b'+'\\u8f91'+'\\x3a'+'\\x20','\\x6b\\x76\\x53\\x74\\x61\\x74\\x75\\x73\\x43\\x68\\x65\\x63\\x6b\\x69\\x6e\\x67':'\\u68c0'+'\\u6d4b'+'\\x4b'+'\\x56'+'\\u72b6'+'\\u6001'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e','\\x6b\\x76\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64':'\\u2705'+'\\x20'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u5df2'+'\\u542f'+'\\u7528'+'\\uff0c'+'\\u53ef'+'\\u4ee5'+'\\u4f7f'+'\\u7528'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\u529f'+'\\u80fd','\\x6b\\x76\\x44\\x69\\x73\\x61\\x62\\x6c\\x65\\x64':'\\u26a0\\ufe0f'+'\\x20'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u542f'+'\\u7528'+'\\u6216'+'\\u672a'+'\\u914d'+'\\u7f6e','\\x73\\x70\\x65\\x63\\x69\\x66\\x79\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u6307'+'\\u5b9a'+'\\u5730'+'\\u533a'+'\\x20'+'\\x28'+'\\x77'+'\\x6b'+'\\x29'+'\\x3a','\\x61\\x75\\x74\\x6f\\x44\\x65\\x74\\x65\\x63\\x74':'\\u81ea'+'\\u52a8'+'\\u68c0'+'\\u6d4b','\\x73\\x61\\x76\\x65\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u4fdd'+'\\u5b58'+'\\u5730'+'\\u533a'+'\\u914d'+'\\u7f6e','\\x70\\x72\\x6f\\x74\\x6f\\x63\\x6f\\x6c\\x53\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\u534f'+'\\u8bae'+'\\u9009'+'\\u62e9'+'\\x3a','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x56\\x4c\\x45\\x53\\x53':'\\u542f'+'\\u7528'+'\\x20'+'\\x56'+'\\x4c'+'\\x45'+'\\x53'+'\\x53'+'\\x20'+'\\u534f'+'\\u8bae','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x54\\x72\\x6f\\x6a\\x61\\x6e':'\\u542f'+'\\u7528'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x20'+'\\u534f'+'\\u8bae','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x58\\x68\\x74\\x74\\x70':'\\u542f'+'\\u7528'+'\\x20'+'\\x78'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x20'+'\\u534f'+'\\u8bae','\\x74\\x72\\x6f\\x6a\\x61\\x6e\\x50\\x61\\x73\\x73\\x77\\x6f\\x72\\x64':'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x20'+'\\u5bc6'+'\\u7801'+'\\x20'+'\\x28'+'\\u53ef'+'\\u9009'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x50\\x61\\x74\\x68':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u8def'+'\\u5f84'+'\\x20'+'\\x28'+'\\x64'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\x28'+'\\x70'+'\\x29'+'\\x3a','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x49\\x50\\x73':'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u5217'+'\\u8868'+'\\x20'+'\\x28'+'\\x79'+'\\x78'+'\\x29'+'\\x3a','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x49\\x50\\x73\\x55\\x52\\x4c':'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u6765'+'\\u6e90'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x28'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x29'+'\\x3a','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74':'\\u5ef6'+'\\u8fdf'+'\\u6d4b'+'\\u8bd5','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74\\x49\\x50':'\\u6d4b'+'\\u8bd5'+'\\x49'+'\\x50'+'\\x2f'+'\\u57df'+'\\u540d'+'\\x3a','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74\\x49\\x50\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u8f93'+'\\u5165'+'\\x49'+'\\x50'+'\\u6216'+'\\u57df'+'\\u540d'+'\\uff0c'+'\\u591a'+'\\u4e2a'+'\\u7528'+'\\u9017'+'\\u53f7'+'\\u5206'+'\\u9694','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74\\x50\\x6f\\x72\\x74':'\\u7aef'+'\\u53e3'+'\\x3a','\\x73\\x74\\x61\\x72\\x74\\x54\\x65\\x73\\x74':'\\u5f00'+'\\u59cb'+'\\u6d4b'+'\\u8bd5','\\x73\\x74\\x6f\\x70\\x54\\x65\\x73\\x74':'\\u505c'+'\\u6b62'+'\\u6d4b'+'\\u8bd5','\\x74\\x65\\x73\\x74\\x52\\x65\\x73\\x75\\x6c\\x74':'\\u6d4b'+'\\u8bd5'+'\\u7ed3'+'\\u679c'+'\\x3a','\\x61\\x64\\x64\\x54\\x6f\\x59\\x78':'\\u6dfb'+'\\u52a0'+'\\u5230'+'\\u4f18'+'\\u9009'+'\\u5217'+'\\u8868','\\x61\\x64\\x64\\x53\\x65\\x6c\\x65\\x63\\x74\\x65\\x64\\x54\\x6f\\x59\\x78':'\\u6dfb'+'\\u52a0'+'\\u9009'+'\\u4e2d'+'\\u9879'+'\\u5230'+'\\u4f18'+'\\u9009'+'\\u5217'+'\\u8868','\\x73\\x65\\x6c\\x65\\x63\\x74\\x41\\x6c\\x6c':'\\u5168'+'\\u9009','\\x64\\x65\\x73\\x65\\x6c\\x65\\x63\\x74\\x41\\x6c\\x6c':'\\u53d6'+'\\u6d88'+'\\u5168'+'\\u9009','\\x74\\x65\\x73\\x74\\x69\\x6e\\x67\\x49\\x6e\\x50\\x72\\x6f\\x67\\x72\\x65\\x73\\x73':'\\u6d4b'+'\\u8bd5'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e','\\x74\\x65\\x73\\x74\\x43\\x6f\\x6d\\x70\\x6c\\x65\\x74\\x65':'\\u6d4b'+'\\u8bd5'+'\\u5b8c'+'\\u6210','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x4d\\x73':'\\u5ef6'+'\\u8fdf','\\x74\\x69\\x6d\\x65\\x6f\\x75\\x74':'\\u8d85'+'\\u65f6','\\x69\\x70\\x53\\x6f\\x75\\x72\\x63\\x65':'\\x49'+'\\x50'+'\\u6765'+'\\u6e90'+'\\x3a','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x49\\x6e\\x70\\x75\\x74':'\\u624b'+'\\u52a8'+'\\u8f93'+'\\u5165','\\x63\\x66\\x52\\x61\\x6e\\x64\\x6f\\x6d\\x49\\x50':'\\x43'+'\\x46'+'\\u968f'+'\\u673a'+'\\x49'+'\\x50','\\x75\\x72\\x6c\\x46\\x65\\x74\\x63\\x68':'\\x55'+'\\x52'+'\\x4c'+'\\u83b7'+'\\u53d6','\\x72\\x61\\x6e\\x64\\x6f\\x6d\\x43\\x6f\\x75\\x6e\\x74':'\\u751f'+'\\u6210'+'\\u6570'+'\\u91cf'+'\\x3a','\\x66\\x65\\x74\\x63\\x68\\x55\\x52\\x4c':'\\u83b7'+'\\u53d6'+'\\x55'+'\\x52'+'\\x4c'+'\\x3a','\\x66\\x65\\x74\\x63\\x68\\x55\\x52\\x4c\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u8f93'+'\\u5165'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u7684'+'\\x55'+'\\x52'+'\\x4c'+'\\u5730'+'\\u5740','\\x67\\x65\\x6e\\x65\\x72\\x61\\x74\\x65\\x49\\x50':'\\u751f'+'\\u6210'+'\\x49'+'\\x50','\\x66\\x65\\x74\\x63\\x68\\x49\\x50':'\\u83b7'+'\\u53d6'+'\\x49'+'\\x50','\\x73\\x6f\\x63\\x6b\\x73\\x35\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\x53'+'\\x4f'+'\\x43'+'\\x4b'+'\\x53'+'\\x35'+'\\u914d'+'\\u7f6e'+'\\x20'+'\\x28'+'\\x73'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x48\\x6f\\x6d\\x65\\x70\\x61\\x67\\x65':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u9996'+'\\u9875'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x28'+'\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x48\\x6f\\x6d\\x65\\x70\\x61\\x67\\x65\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x65'+'\\x78'+'\\x61'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x48\\x6f\\x6d\\x65\\x70\\x61\\x67\\x65\\x48\\x69\\x6e\\x74':'\\u8bbe'+'\\u7f6e'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x55'+'\\x52'+'\\x4c'+'\\u4f5c'+'\\u4e3a'+'\\u9996'+'\\u9875'+'\\u4f2a'+'\\u88c5'+'\\u3002'+'\\u8bbf'+'\\u95ee'+'\\u6839'+'\\u8def'+'\\u5f84'+'\\x20'+'\\x2f'+'\\x20'+'\\u65f6'+'\\u5c06'+'\\u663e'+'\\u793a'+'\\u8be5'+'\\x55'+'\\x52'+'\\x4c'+'\\u7684'+'\\u5185'+'\\u5bb9'+'\\u3002'+'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u663e'+'\\u793a'+'\\u9ed8'+'\\u8ba4'+'\\u7ec8'+'\\u7aef'+'\\u9875'+'\\u9762'+'\\u3002','\\x73\\x61\\x76\\x65\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u4fdd'+'\\u5b58'+'\\u914d'+'\\u7f6e','\\x61\\x64\\x76\\x61\\x6e\\x63\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u9ad8'+'\\u7ea7'+'\\u63a7'+'\\u5236','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x6e\\x76\\x65\\x72\\x74\\x65\\x72':'\\u8ba2'+'\\u9605'+'\\u8f6c'+'\\u6362'+'\\u5730'+'\\u5740'+'\\x3a','\\x62\\x75\\x69\\x6c\\x74\\x69\\x6e\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64':'\\u5185'+'\\u7f6e'+'\\u4f18'+'\\u9009'+'\\u7c7b'+'\\u578b'+'\\x3a','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x44\\x6f\\x6d\\x61\\x69\\x6e':'\\u542f'+'\\u7528'+'\\u4f18'+'\\u9009'+'\\u57df'+'\\u540d','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x49\\x50':'\\u542f'+'\\u7528'+'\\u4f18'+'\\u9009'+'\\x20'+'\\x49'+'\\x50','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x47\\x69\\x74\\x48\\x75\\x62\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64':'\\u542f'+'\\u7528'+'\\x20'+'\\x47'+'\\x69'+'\\x74'+'\\x48'+'\\x75'+'\\x62'+'\\x20'+'\\u9ed8'+'\\u8ba4'+'\\u4f18'+'\\u9009','\\x61\\x6c\\x6c\\x6f\\x77\\x41\\x50\\x49\\x4d\\x61\\x6e\\x61\\x67\\x65\\x6d\\x65\\x6e\\x74':'\\u5141'+'\\u8bb8'+'\\x41'+'\\x50'+'\\x49'+'\\u7ba1'+'\\u7406'+'\\x20'+'\\x28'+'\\x61'+'\\x65'+'\\x29'+'\\x3a','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67':'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\x20'+'\\x28'+'\\x72'+'\\x6d'+'\\x29'+'\\x3a','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u964d'+'\\u7ea7'+'\\u63a7'+'\\u5236'+'\\x20'+'\\x28'+'\\x71'+'\\x6a'+'\\x29'+'\\x3a','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\x54'+'\\x4c'+'\\x53'+'\\u63a7'+'\\u5236'+'\\x20'+'\\x28'+'\\x64'+'\\x6b'+'\\x62'+'\\x79'+'\\x29'+'\\x3a','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u4f18'+'\\u9009'+'\\u63a7'+'\\u5236'+'\\x20'+'\\x28'+'\\x79'+'\\x78'+'\\x62'+'\\x79'+'\\x29'+'\\x3a','\\x73\\x61\\x76\\x65\\x41\\x64\\x76\\x61\\x6e\\x63\\x65\\x64':'\\u4fdd'+'\\u5b58'+'\\u9ad8'+'\\u7ea7'+'\\u914d'+'\\u7f6e','\\x6c\\x6f\\x61\\x64\\x69\\x6e\\x67':'\\u52a0'+'\\u8f7d'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e','\\x63\\x75\\x72\\x72\\x65\\x6e\\x74\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\ud83d\\udccd'+'\\x20'+'\\u5f53'+'\\u524d'+'\\u8def'+'\\u5f84'+'\\u914d'+'\\u7f6e','\\x72\\x65\\x66\\x72\\x65\\x73\\x68\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u5237'+'\\u65b0'+'\\u914d'+'\\u7f6e','\\x72\\x65\\x73\\x65\\x74\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u91cd'+'\\u7f6e'+'\\u914d'+'\\u7f6e','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x70\\x69\\x65\\x64':'\\u8ba2'+'\\u9605'+'\\u94fe'+'\\u63a5'+'\\u5df2'+'\\u590d'+'\\u5236','\\x61\\x75\\x74\\x6f\\x53\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x70\\x69\\x65\\x64':'\\u81ea'+'\\u52a8'+'\\u8bc6'+'\\u522b'+'\\u8ba2'+'\\u9605'+'\\u94fe'+'\\u63a5'+'\\u5df2'+'\\u590d'+'\\u5236'+'\\uff0c'+'\\u5ba2'+'\\u6237'+'\\u7aef'+'\\u8bbf'+'\\u95ee'+'\\u65f6'+'\\u4f1a'+'\\u6839'+'\\u636e'+'\\x55'+'\\x73'+'\\x65'+'\\x72'+'\\x2d'+'\\x41'+'\\x67'+'\\x65'+'\\x6e'+'\\x74'+'\\u81ea'+'\\u52a8'+'\\u8bc6'+'\\u522b'+'\\u5e76'+'\\u8fd4'+'\\u56de'+'\\u5bf9'+'\\u5e94'+'\\u683c'+'\\u5f0f','\\x74\\x72\\x6f\\x6a\\x61\\x6e\\x50\\x61\\x73\\x73\\x77\\x6f\\x72\\x64\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u81ea'+'\\u52a8'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44','\\x74\\x72\\x6f\\x6a\\x61\\x6e\\x50\\x61\\x73\\x73\\x77\\x6f\\x72\\x64\\x48\\x69\\x6e\\x74':'\\u8bbe'+'\\u7f6e'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x20'+'\\u5bc6'+'\\u7801'+'\\u3002'+'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\u3002'+'\\u5ba2'+'\\u6237'+'\\u7aef'+'\\u4f1a'+'\\u81ea'+'\\u52a8'+'\\u5bf9'+'\\u5bc6'+'\\u7801'+'\\u8fdb'+'\\u884c'+'\\x20'+'\\x53'+'\\x48'+'\\x41'+'\\x32'+'\\x32'+'\\x34'+'\\x20'+'\\u54c8'+'\\u5e0c'+'\\u3002','\\x70\\x72\\x6f\\x74\\x6f\\x63\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u53ef'+'\\u4ee5'+'\\u540c'+'\\u65f6'+'\\u542f'+'\\u7528'+'\\u591a'+'\\u4e2a'+'\\u534f'+'\\u8bae'+'\\u3002'+'\\u8ba2'+'\\u9605'+'\\u5c06'+'\\u751f'+'\\u6210'+'\\u9009'+'\\u4e2d'+'\\u534f'+'\\u8bae'+'\\u7684'+'\\u8282'+'\\u70b9'+'\\u3002'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\u2022'+'\\x20'+'\\x56'+'\\x4c'+'\\x45'+'\\x53'+'\\x53'+'\\x20'+'\\x57'+'\\x53'+'\\x3a'+'\\x20'+'\\u57fa'+'\\u4e8e'+'\\x20'+'\\x57'+'\\x65'+'\\x62'+'\\x53'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74'+'\\x20'+'\\u7684'+'\\u6807'+'\\u51c6'+'\\u534f'+'\\u8bae'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\u2022'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x3a'+'\\x20'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x53'+'\\x48'+'\\x41'+'\\x32'+'\\x32'+'\\x34'+'\\x20'+'\\u5bc6'+'\\u7801'+'\\u8ba4'+'\\u8bc1'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\u2022'+'\\x20'+'\\x78'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x3a'+'\\x20'+'\\u57fa'+'\\u4e8e'+'\\x20'+'\\x48'+'\\x54'+'\\x54'+'\\x50'+'\\x20'+'\\x50'+'\\x4f'+'\\x53'+'\\x54'+'\\x20'+'\\u7684'+'\\u4f2a'+'\\u88c5'+'\\u534f'+'\\u8bae'+'\\uff08'+'\\u9700'+'\\u8981'+'\\u7ed1'+'\\u5b9a'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u57df'+'\\u540d'+'\\u5e76'+'\\u5f00'+'\\u542f'+'\\x20'+'\\x67'+'\\x52'+'\\x50'+'\\x43'+'\\uff09','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x45\\x43\\x48':'\\u542f'+'\\u7528'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\x28'+'\\x45'+'\\x6e'+'\\x63'+'\\x72'+'\\x79'+'\\x70'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x48'+'\\x65'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x29','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x45\\x43\\x48\\x48\\x69\\x6e\\x74':'\\u542f'+'\\u7528'+'\\u540e'+'\\uff0c'+'\\u6bcf'+'\\u6b21'+'\\u5237'+'\\u65b0'+'\\u8ba2'+'\\u9605'+'\\u65f6'+'\\u4f1a'+'\\u81ea'+'\\u52a8'+'\\u4ece'+'\\x20'+'\\x44'+'\\x6f'+'\\x48'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\u6700'+'\\u65b0'+'\\u7684'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u914d'+'\\u7f6e'+'\\u5e76'+'\\u6dfb'+'\\u52a0'+'\\u5230'+'\\u94fe'+'\\u63a5'+'\\u4e2d','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x44\\x4e\\x53':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u670d'+'\\u52a1'+'\\u5668','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x44\\x4e\\x53\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x44\\x4e\\x53\\x48\\x69\\x6e\\x74':'\\u7528'+'\\u4e8e'+'\\x45'+'\\x43'+'\\x48'+'\\u914d'+'\\u7f6e'+'\\u67e5'+'\\u8be2'+'\\u7684'+'\\x44'+'\\x4e'+'\\x53'+'\\u670d'+'\\u52a1'+'\\u5668'+'\\u5730'+'\\u5740'+'\\uff08'+'\\x44'+'\\x6f'+'\\x48'+'\\u683c'+'\\u5f0f'+'\\uff09','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x45\\x43\\x48\\x44\\x6f\\x6d\\x61\\x69\\x6e':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u57df'+'\\u540d','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x45\\x43\\x48\\x44\\x6f\\x6d\\x61\\x69\\x6e\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x45\\x43\\x48\\x44\\x6f\\x6d\\x61\\x69\\x6e\\x48\\x69\\x6e\\x74':'\\x45'+'\\x43'+'\\x48'+'\\u914d'+'\\u7f6e'+'\\u4e2d'+'\\u4f7f'+'\\u7528'+'\\u7684'+'\\u57df'+'\\u540d'+'\\uff0c'+'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u4f7f'+'\\u7528'+'\\u9ed8'+'\\u8ba4'+'\\u503c','\\x73\\x61\\x76\\x65\\x50\\x72\\x6f\\x74\\x6f\\x63\\x6f\\x6c':'\\u4fdd'+'\\u5b58'+'\\u534f'+'\\u8bae'+'\\u914d'+'\\u7f6e','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x6e\\x76\\x65\\x72\\x74\\x65\\x72\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u9ed8'+'\\u8ba4'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x75'+'\\x72'+'\\x6c'+'\\x2e'+'\\x76'+'\\x31'+'\\x2e'+'\\x6d'+'\\x6b'+'\\x2f'+'\\x73'+'\\x75'+'\\x62','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x6e\\x76\\x65\\x72\\x74\\x65\\x72\\x48\\x69\\x6e\\x74':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u8ba2'+'\\u9605'+'\\u8f6c'+'\\u6362'+'\\x41'+'\\x50'+'\\x49'+'\\u5730'+'\\u5740'+'\\uff0c'+'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u4f7f'+'\\u7528'+'\\u9ed8'+'\\u8ba4'+'\\u5730'+'\\u5740','\\x62\\x75\\x69\\x6c\\x74\\x69\\x6e\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x48\\x69\\x6e\\x74':'\\u63a7'+'\\u5236'+'\\u8ba2'+'\\u9605'+'\\u4e2d'+'\\u5305'+'\\u542b'+'\\u54ea'+'\\u4e9b'+'\\u5185'+'\\u7f6e'+'\\u4f18'+'\\u9009'+'\\u8282'+'\\u70b9'+'\\u3002'+'\\u9ed8'+'\\u8ba4'+'\\u5168'+'\\u90e8'+'\\u542f'+'\\u7528'+'\\u3002','\\x61\\x70\\x69\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u9ed8'+'\\u8ba4'+'\\uff08'+'\\u5173'+'\\u95ed'+'\\x41'+'\\x50'+'\\x49'+'\\uff09','\\x61\\x70\\x69\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64\\x59\\x65\\x73':'\\u5f00'+'\\u542f'+'\\x41'+'\\x50'+'\\x49'+'\\u7ba1'+'\\u7406','\\x61\\x70\\x69\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64\\x48\\x69\\x6e\\x74':'\\u26a0\\ufe0f'+'\\x20'+'\\u5b89'+'\\u5168'+'\\u63d0'+'\\u9192'+'\\uff1a'+'\\u5f00'+'\\u542f'+'\\u540e'+'\\u5141'+'\\u8bb8'+'\\u901a'+'\\u8fc7'+'\\x41'+'\\x50'+'\\x49'+'\\u52a8'+'\\u6001'+'\\u6dfb'+'\\u52a0'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u3002'+'\\u5efa'+'\\u8bae'+'\\u4ec5'+'\\u5728'+'\\u9700'+'\\u8981'+'\\u65f6'+'\\u5f00'+'\\u542f'+'\\u3002','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u9ed8'+'\\u8ba4'+'\\uff08'+'\\u542f'+'\\u7528'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\uff09','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67\\x4e\\x6f':'\\u5173'+'\\u95ed'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67\\x48\\x69\\x6e\\x74':'\\u8bbe'+'\\u7f6e'+'\\u4e3a'+'\\x22'+'\\u5173'+'\\u95ed'+'\\x22'+'\\u65f6'+'\\u4e0d'+'\\u8fdb'+'\\u884c'+'\\u5730'+'\\u533a'+'\\u667a'+'\\u80fd'+'\\u5339'+'\\u914d','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u9ed8'+'\\u8ba4'+'\\uff08'+'\\u4e0d'+'\\u542f'+'\\u7528'+'\\u964d'+'\\u7ea7'+'\\uff09','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x4e\\x6f':'\\u542f'+'\\u7528'+'\\u964d'+'\\u7ea7'+'\\u6a21'+'\\u5f0f','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u8bbe'+'\\u7f6e'+'\\u4e3a'+'\\x22'+'\\u542f'+'\\u7528'+'\\x22'+'\\u65f6'+'\\uff1a'+'\\x43'+'\\x46'+'\\u76f4'+'\\u8fde'+'\\u5931'+'\\u8d25'+'\\u2192'+'\\x53'+'\\x4f'+'\\x43'+'\\x4b'+'\\x53'+'\\x35'+'\\u8fde'+'\\u63a5'+'\\u2192'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\u5730'+'\\u5740','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u9ed8'+'\\u8ba4'+'\\uff08'+'\\u4fdd'+'\\u7559'+'\\u6240'+'\\u6709'+'\\u8282'+'\\u70b9'+'\\uff09','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x59\\x65\\x73':'\\u4ec5'+'\\x54'+'\\x4c'+'\\x53'+'\\u8282'+'\\u70b9','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u8bbe'+'\\u7f6e'+'\\u4e3a'+'\\x22'+'\\u4ec5'+'\\x54'+'\\x4c'+'\\x53'+'\\u8282'+'\\u70b9'+'\\x22'+'\\u65f6'+'\\u53ea'+'\\u751f'+'\\u6210'+'\\u5e26'+'\\x54'+'\\x4c'+'\\x53'+'\\u7684'+'\\u8282'+'\\u70b9'+'\\uff0c'+'\\u4e0d'+'\\u751f'+'\\u6210'+'\\u975e'+'\\x54'+'\\x4c'+'\\x53'+'\\u8282'+'\\u70b9'+'\\uff08'+'\\u5982'+'\\x38'+'\\x30'+'\\u7aef'+'\\u53e3'+'\\uff09','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u9ed8'+'\\u8ba4'+'\\uff08'+'\\u542f'+'\\u7528'+'\\u4f18'+'\\u9009'+'\\uff09','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x59\\x65\\x73':'\\u5173'+'\\u95ed'+'\\u4f18'+'\\u9009','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u8bbe'+'\\u7f6e'+'\\u4e3a'+'\\x22'+'\\u5173'+'\\u95ed'+'\\u4f18'+'\\u9009'+'\\x22'+'\\u65f6'+'\\u53ea'+'\\u4f7f'+'\\u7528'+'\\u539f'+'\\u751f'+'\\u5730'+'\\u5740'+'\\uff0c'+'\\u4e0d'+'\\u751f'+'\\u6210'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u548c'+'\\u57df'+'\\u540d'+'\\u8282'+'\\u70b9','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4e\\x61\\x6d\\x65\\x73':{'\\x55\\x53':Yb(0x98)+'\\x20'+'\\u7f8e'+'\\u56fd','\\x53\\x47':Yh(0xe5)+'\\x20'+'\\u65b0'+'\\u52a0'+'\\u5761','\\x4a\\x50':Yb(0x88)+'\\x20'+'\\u65e5'+'\\u672c','\\x4b\\x52':Yh(0xb6)+'\\x20'+'\\u97e9'+'\\u56fd','\\x44\\x45':Yh(0xd4)+'\\x20'+'\\u5fb7'+'\\u56fd','\\x53\\x45':Yh(0xa5)+'\\x20'+'\\u745e'+'\\u5178','\\x4e\\x4c':Yb(0xe3)+'\\x20'+'\\u8377'+'\\u5170','\\x46\\x49':Yb(0xa3)+'\\x20'+'\\u82ac'+'\\u5170','\\x47\\x42':Yb(0xdc)+'\\x20'+'\\u82f1'+'\\u56fd'},'\\x74\\x65\\x72\\x6d\\x69\\x6e\\x61\\x6c':'\\u7ec8'+'\\u7aef'+'\\x20'+'\\x76'+'\\x32'+'\\x2e'+'\\x39'+'\\x2e'+'\\x34','\\x67\\x69\\x74\\x68\\x75\\x62\\x50\\x72\\x6f\\x6a\\x65\\x63\\x74':'\\x47'+'\\x69'+'\\x74'+'\\x48'+'\\x75'+'\\x62'+'\\x20'+'\\u9879'+'\\u76ee','\\x61\\x75\\x74\\x6f\\x44\\x65\\x74\\x65\\x63\\x74\\x43\\x6c\\x69\\x65\\x6e\\x74':'\\u81ea'+'\\u52a8'+'\\u8bc6'+'\\u522b','\\x73\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4c\\x6f\\x67\\x69\\x63\\x54\\x65\\x78\\x74':'\\u540c'+'\\u5730'+'\\u533a'+'\\x20'+'\\u2192'+'\\x20'+'\\u90bb'+'\\u8fd1'+'\\u5730'+'\\u533a'+'\\x20'+'\\u2192'+'\\x20'+'\\u5176'+'\\u4ed6'+'\\u5730'+'\\u533a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x44\\x69\\x73\\x61\\x62\\x6c\\x65\\x64\\x48\\x69\\x6e\\x74':'\\u4f7f'+'\\u7528'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u65f6'+'\\uff0c'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u5df2'+'\\u7981'+'\\u7528','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x4d\\x6f\\x64\\x65':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f'+'\\x20'+'\\x28'+'\\x70'+'\\u53d8'+'\\u91cf'+'\\u542f'+'\\u7528'+'\\x29','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x4d\\x6f\\x64\\x65\\x44\\x65\\x73\\x63':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f'+'\\x20'+'\\x28'+'\\u5df2'+'\\u7981'+'\\u7528'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\x29','\\x75\\x73\\x69\\x6e\\x67\\x43\\x75\\x73\\x74\\x6f\\x6d\\x50\\x72\\x6f\\x78\\x79\\x49\\x50':'\\u4f7f'+'\\u7528'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\x20'+'\\x28'+'\\x70'+'\\u53d8'+'\\u91cf'+'\\u914d'+'\\u7f6e'+'\\x29','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x4d\\x6f\\x64\\x65\\x44\\x69\\x73\\x61\\x62\\x6c\\x65\\x64':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f'+'\\uff0c'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u5df2'+'\\u7981'+'\\u7528','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u624b'+'\\u52a8'+'\\u6307'+'\\u5b9a'+'\\u5730'+'\\u533a','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x52\\x65\\x67\\x69\\x6f\\x6e\\x44\\x65\\x73\\x63':'\\x20'+'\\x28'+'\\u624b'+'\\u52a8'+'\\u6307'+'\\u5b9a'+'\\x29','\\x70\\x72\\x6f\\x78\\x79\\x49\\x50\\x41\\x76\\x61\\x69\\x6c\\x61\\x62\\x6c\\x65':'\\x31'+'\\x30'+'\\x2f'+'\\x31'+'\\x30'+'\\x20'+'\\u53ef'+'\\u7528'+'\\x20'+'\\x28'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u57df'+'\\u540d'+'\\u9884'+'\\u8bbe'+'\\u53ef'+'\\u7528'+'\\x29','\\x73\\x6d\\x61\\x72\\x74\\x53\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\u667a'+'\\u80fd'+'\\u5c31'+'\\u8fd1'+'\\u9009'+'\\u62e9'+'\\u4e2d','\\x73\\x61\\x6d\\x65\\x52\\x65\\x67\\x69\\x6f\\x6e\\x49\\x50':'\\u540c'+'\\u5730'+'\\u533a'+'\\x49'+'\\x50'+'\\u53ef'+'\\u7528'+'\\x20'+'\\x28'+'\\x31'+'\\u4e2a'+'\\x29','\\x63\\x6c\\x6f\\x75\\x64\\x66\\x6c\\x61\\x72\\x65\\x44\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\u5185'+'\\u7f6e'+'\\u68c0'+'\\u6d4b','\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x46\\x61\\x69\\x6c\\x65\\x64':'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x52\\x65\\x73\\x75\\x6c\\x74':'\\x41'+'\\x50'+'\\x49'+'\\u68c0'+'\\u6d4b'+'\\u7ed3'+'\\u679c'+'\\x3a'+'\\x20','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x54\\x69\\x6d\\x65':'\\u68c0'+'\\u6d4b'+'\\u65f6'+'\\u95f4'+'\\x3a'+'\\x20','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x46\\x61\\x69\\x6c\\x65\\x64':'\\x41'+'\\x50'+'\\x49'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20','\\x75\\x6e\\x6b\\x6e\\x6f\\x77\\x6e\\x45\\x72\\x72\\x6f\\x72':'\\u672a'+'\\u77e5'+'\\u9519'+'\\u8bef','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x45\\x72\\x72\\x6f\\x72':'\\x41'+'\\x50'+'\\x49'+'\\u6d4b'+'\\u8bd5'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20','\\x6b\\x76\\x4e\\x6f\\x74\\x43\\x6f\\x6e\\x66\\x69\\x67\\x75\\x72\\x65\\x64':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u65e0'+'\\u6cd5'+'\\u4f7f'+'\\u7528'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\u529f'+'\\u80fd'+'\\u3002'+'\\x5c'+'\\x6e'+'\\x5c'+'\\x6e'+'\\u8bf7'+'\\u5728'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x73'+'\\u4e2d'+'\\x3a'+'\\x5c'+'\\x6e'+'\\x31'+'\\x2e'+'\\x20'+'\\u521b'+'\\u5efa'+'\\x4b'+'\\x56'+'\\u547d'+'\\u540d'+'\\u7a7a'+'\\u95f4'+'\\x5c'+'\\x6e'+'\\x32'+'\\x2e'+'\\x20'+'\\u7ed1'+'\\u5b9a'+'\\u73af'+'\\u5883'+'\\u53d8'+'\\u91cf'+'\\x20'+'\\x43'+'\\x5c'+'\\x6e'+'\\x33'+'\\x2e'+'\\x20'+'\\u91cd'+'\\u65b0'+'\\u90e8'+'\\u7f72'+'\\u4ee3'+'\\u7801','\\x6b\\x76\\x4e\\x6f\\x74\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e','\\x6b\\x76\\x43\\x68\\x65\\x63\\x6b\\x46\\x61\\x69\\x6c\\x65\\x64':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\u54cd'+'\\u5e94'+'\\u683c'+'\\u5f0f'+'\\u9519'+'\\u8bef','\\x6b\\x76\\x43\\x68\\x65\\x63\\x6b\\x46\\x61\\x69\\x6c\\x65\\x64\\x53\\x74\\x61\\x74\\x75\\x73':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x20'+'\\x2d'+'\\x20'+'\\u72b6'+'\\u6001'+'\\u7801'+'\\x3a'+'\\x20','\\x6b\\x76\\x43\\x68\\x65\\x63\\x6b\\x46\\x61\\x69\\x6c\\x65\\x64\\x45\\x72\\x72\\x6f\\x72':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x20'+'\\x2d'+'\\x20'+'\\u9519'+'\\u8bef'+'\\x3a'+'\\x20'},'\\x66\\x61':{'\\x74\\x69\\x74\\x6c\\x65':'\\u0645'+'\\u0631'+'\\u06a9'+'\\u0632'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9','\\x73\\x75\\x62\\x74\\x69\\x74\\x6c\\x65':'\\u067e'+'\\u0634'+'\\u062a'+'\\u06cc'+'\\u0628'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\x20'+'\\u0686'+'\\u0646'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0644'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u062a'+'\\x20'+'\\u2022'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0647'+'\\u0648'+'\\u0634'+'\\u0645'+'\\u0646'+'\\u062f'+'\\x20'+'\\u2022'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u06cc'+'\\u06a9'+'\\x20'+'\\u06a9'+'\\u0644'+'\\u06cc'+'\\u06a9'+'\\u06cc','\\x73\\x65\\x6c\\x65\\x63\\x74\\x43\\x6c\\x69\\x65\\x6e\\x74':'\\x5b'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u06a9'+'\\u0644'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u062a'+'\\x20'+'\\x5d','\\x73\\x79\\x73\\x74\\x65\\x6d\\x53\\x74\\x61\\x74\\x75\\x73':'\\x5b'+'\\x20'+'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u0633'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\u0645'+'\\x20'+'\\x5d','\\x63\\x6f\\x6e\\x66\\x69\\x67\\x4d\\x61\\x6e\\x61\\x67\\x65\\x6d\\x65\\x6e\\x74':'\\x5b'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\x5d','\\x72\\x65\\x6c\\x61\\x74\\x65\\x64\\x4c\\x69\\x6e\\x6b\\x73':'\\x5b'+'\\x20'+'\\u0644'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0645'+'\\u0631'+'\\u062a'+'\\u0628'+'\\u0637'+'\\x20'+'\\x5d','\\x63\\x68\\x65\\x63\\x6b\\x69\\x6e\\x67':'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x2e'+'\\x2e'+'\\x2e','\\x77\\x6f\\x72\\x6b\\x65\\x72\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x3a'+'\\x20','\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4d\\x65\\x74\\x68\\x6f\\x64':'\\u0631'+'\\u0648'+'\\u0634'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x3a'+'\\x20','\\x70\\x72\\x6f\\x78\\x79\\x49\\x50\\x53\\x74\\x61\\x74\\x75\\x73':'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20','\\x63\\x75\\x72\\x72\\x65\\x6e\\x74\\x49\\x50':'\\x49'+'\\x50'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0644'+'\\u06cc'+'\\x3a'+'\\x20','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68':'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x3a'+'\\x20','\\x73\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4c\\x6f\\x67\\x69\\x63':'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x3a'+'\\x20','\\x6b\\x76\\x53\\x74\\x61\\x74\\x75\\x73\\x43\\x68\\x65\\x63\\x6b\\x69\\x6e\\x67':'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x20'+'\\x4b'+'\\x56'+'\\x2e'+'\\x2e'+'\\x2e','\\x6b\\x76\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64':'\\u2705'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u060c'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u062a'+'\\u0648'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f','\\x6b\\x76\\x44\\x69\\x73\\x61\\x62\\x6c\\x65\\x64':'\\u26a0\\ufe0f'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0646'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a','\\x73\\x70\\x65\\x63\\x69\\x66\\x79\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u062a'+'\\u0639'+'\\u06cc'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\x28'+'\\x77'+'\\x6b'+'\\x29'+'\\x3a','\\x61\\x75\\x74\\x6f\\x44\\x65\\x74\\x65\\x63\\x74':'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631','\\x73\\x61\\x76\\x65\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647','\\x70\\x72\\x6f\\x74\\x6f\\x63\\x6f\\x6c\\x53\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x3a','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x56\\x4c\\x45\\x53\\x53':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x20'+'\\x56'+'\\x4c'+'\\x45'+'\\x53'+'\\x53','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x54\\x72\\x6f\\x6a\\x61\\x6e':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x58\\x68\\x74\\x74\\x70':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x20'+'\\x78'+'\\x68'+'\\x74'+'\\x74'+'\\x70','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x45\\x43\\x48':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\x28'+'\\x45'+'\\x6e'+'\\x63'+'\\x72'+'\\x79'+'\\x70'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x48'+'\\x65'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x29','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x45\\x43\\x48\\x48\\x69\\x6e\\x74':'\\u067e'+'\\u0633'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\u060c'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u0647'+'\\u0631'+'\\x20'+'\\u0628'+'\\u0627'+'\\u0631'+'\\x20'+'\\u062a'+'\\u0627'+'\\u0632'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\u060c'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u0628'+'\\u0647'+'\\u200c'+'\\u0631'+'\\u0648'+'\\u0632'+'\\x20'+'\\u0628'+'\\u0647'+'\\u200c'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x44'+'\\x6f'+'\\x48'+'\\x20'+'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x20'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0648'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0644'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\u200c'+'\\u0647'+'\\u0627'+'\\x20'+'\\u0627'+'\\u0636'+'\\u0627'+'\\u0641'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x44\\x4e\\x53':'\\u0633'+'\\u0631'+'\\u0648'+'\\u0631'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x44\\x4e\\x53\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x44\\x4e\\x53\\x48\\x69\\x6e\\x74':'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0633'+'\\u0631'+'\\u0648'+'\\u0631'+'\\x20'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u062c'+'\\u0633'+'\\u062a'+'\\u062c'+'\\u0648'+'\\u06cc'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\x28'+'\\u0641'+'\\u0631'+'\\u0645'+'\\u062a'+'\\x20'+'\\x44'+'\\x6f'+'\\x48'+'\\x29','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x45\\x43\\x48\\x44\\x6f\\x6d\\x61\\x69\\x6e':'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x45\\x43\\x48\\x44\\x6f\\x6d\\x61\\x69\\x6e\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x45\\x43\\x48\\x44\\x6f\\x6d\\x61\\x69\\x6e\\x48\\x69\\x6e\\x74':'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\u060c'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u062a'+'\\u0627'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0645'+'\\u0642'+'\\u062f'+'\\u0627'+'\\u0631'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f','\\x74\\x72\\x6f\\x6a\\x61\\x6e\\x50\\x61\\x73\\x73\\x77\\x6f\\x72\\x64':'\\u0631'+'\\u0645'+'\\u0632'+'\\x20'+'\\u0639'+'\\u0628'+'\\u0648'+'\\u0631'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x20'+'\\x28'+'\\u0627'+'\\u062e'+'\\u062a'+'\\u06cc'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x50\\x61\\x74\\x68':'\\u0645'+'\\u0633'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\x64'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\x70'+'\\x29'+'\\x3a','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x49\\x50\\x73':'\\u0644'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\x28'+'\\x79'+'\\x78'+'\\x29'+'\\x3a','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x49\\x50\\x73\\x55\\x52\\x4c':'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0628'+'\\u0639'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\x28'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x29'+'\\x3a','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74':'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0627'+'\\u062e'+'\\u06cc'+'\\u0631','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74\\x49\\x50':'\\x49'+'\\x50'+'\\x2f'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0633'+'\\u062a'+'\\x3a','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74\\x49\\x50\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\x49'+'\\x50'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\u060c'+'\\x20'+'\\u0686'+'\\u0646'+'\\u062f'+'\\x20'+'\\u0645'+'\\u0648'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0628'+'\\u0627'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0645'+'\\u0627'+'\\x20'+'\\u062c'+'\\u062f'+'\\u0627'+'\\x20'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x54\\x65\\x73\\x74\\x50\\x6f\\x72\\x74':'\\u067e'+'\\u0648'+'\\u0631'+'\\u062a'+'\\x3a','\\x73\\x74\\x61\\x72\\x74\\x54\\x65\\x73\\x74':'\\u0634'+'\\u0631'+'\\u0648'+'\\u0639'+'\\x20'+'\\u062a'+'\\u0633'+'\\u062a','\\x73\\x74\\x6f\\x70\\x54\\x65\\x73\\x74':'\\u062a'+'\\u0648'+'\\u0642'+'\\u0641'+'\\x20'+'\\u062a'+'\\u0633'+'\\u062a','\\x74\\x65\\x73\\x74\\x52\\x65\\x73\\x75\\x6c\\x74':'\\u0646'+'\\u062a'+'\\u06cc'+'\\u062c'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0633'+'\\u062a'+'\\x3a','\\x61\\x64\\x64\\x54\\x6f\\x59\\x78':'\\u0627'+'\\u0641'+'\\u0632'+'\\u0648'+'\\u062f'+'\\u0646'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0644'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc','\\x61\\x64\\x64\\x53\\x65\\x6c\\x65\\x63\\x74\\x65\\x64\\x54\\x6f\\x59\\x78':'\\u0627'+'\\u0641'+'\\u0632'+'\\u0648'+'\\u062f'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0634'+'\\u062f'+'\\u0647','\\x73\\x65\\x6c\\x65\\x63\\x74\\x41\\x6c\\x6c':'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0647'+'\\u0645'+'\\u0647','\\x64\\x65\\x73\\x65\\x6c\\x65\\x63\\x74\\x41\\x6c\\x6c':'\\u0644'+'\\u063a'+'\\u0648'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628','\\x74\\x65\\x73\\x74\\x69\\x6e\\x67\\x49\\x6e\\x50\\x72\\x6f\\x67\\x72\\x65\\x73\\x73':'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u062a'+'\\u0633'+'\\u062a'+'\\x2e'+'\\x2e'+'\\x2e','\\x74\\x65\\x73\\x74\\x43\\x6f\\x6d\\x70\\x6c\\x65\\x74\\x65':'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0645'+'\\u0644'+'\\x20'+'\\u0634'+'\\u062f','\\x6c\\x61\\x74\\x65\\x6e\\x63\\x79\\x4d\\x73':'\\u062a'+'\\u0627'+'\\u062e'+'\\u06cc'+'\\u0631','\\x74\\x69\\x6d\\x65\\x6f\\x75\\x74':'\\u0632'+'\\u0645'+'\\u0627'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0645'+'\\u0627'+'\\u0645'+'\\x20'+'\\u0634'+'\\u062f','\\x69\\x70\\x53\\x6f\\x75\\x72\\x63\\x65':'\\u0645'+'\\u0646'+'\\u0628'+'\\u0639'+'\\x20'+'\\x49'+'\\x50'+'\\x3a','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x49\\x6e\\x70\\x75\\x74':'\\u0648'+'\\u0631'+'\\u0648'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u06cc','\\x63\\x66\\x52\\x61\\x6e\\x64\\x6f\\x6d\\x49\\x50':'\\x49'+'\\x50'+'\\x20'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u062f'+'\\u0641'+'\\u06cc'+'\\x20'+'\\x43'+'\\x46','\\x75\\x72\\x6c\\x46\\x65\\x74\\x63\\x68':'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x55'+'\\x52'+'\\x4c','\\x72\\x61\\x6e\\x64\\x6f\\x6d\\x43\\x6f\\x75\\x6e\\x74':'\\u062a'+'\\u0639'+'\\u062f'+'\\u0627'+'\\u062f'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x3a','\\x66\\x65\\x74\\x63\\x68\\x55\\x52\\x4c':'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x3a','\\x66\\x65\\x74\\x63\\x68\\x55\\x52\\x4c\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0644'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f','\\x67\\x65\\x6e\\x65\\x72\\x61\\x74\\x65\\x49\\x50':'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\x49'+'\\x50','\\x66\\x65\\x74\\x63\\x68\\x49\\x50':'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x20'+'\\x49'+'\\x50','\\x73\\x6f\\x63\\x6b\\x73\\x35\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\x53'+'\\x4f'+'\\x43'+'\\x4b'+'\\x53'+'\\x35'+'\\x20'+'\\x28'+'\\x73'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x48\\x6f\\x6d\\x65\\x70\\x61\\x67\\x65':'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0635'+'\\u0641'+'\\u062d'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0635'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x29'+'\\x3a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x48\\x6f\\x6d\\x65\\x70\\x61\\x67\\x65\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x65'+'\\x78'+'\\x61'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x48\\x6f\\x6d\\x65\\x70\\x61\\x67\\x65\\x48\\x69\\x6e\\x74':'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0639'+'\\u0646'+'\\u0648'+'\\u0627'+'\\u0646'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u062a'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0635'+'\\u0641'+'\\u062d'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0635'+'\\u0644'+'\\u06cc'+'\\x2e'+'\\x20'+'\\u0647'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u0645'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0645'+'\\u0633'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0635'+'\\u0644'+'\\u06cc'+'\\x20'+'\\x2f'+'\\x20'+'\\u0645'+'\\u062d'+'\\u062a'+'\\u0648'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0646'+'\\u0645'+'\\u0627'+'\\u06cc'+'\\u0634'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x2e'+'\\x20'+'\\u0627'+'\\u06af'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0635'+'\\u0641'+'\\u062d'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0631'+'\\u0645'+'\\u06cc'+'\\u0646'+'\\u0627'+'\\u0644'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\u0646'+'\\u0645'+'\\u0627'+'\\u06cc'+'\\u0634'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x2e','\\x73\\x61\\x76\\x65\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a','\\x61\\x64\\x76\\x61\\x6e\\x63\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u06a9'+'\\u0646'+'\\u062a'+'\\u0631'+'\\u0644'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u0631'+'\\u0641'+'\\u062a'+'\\u0647','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x6e\\x76\\x65\\x72\\x74\\x65\\x72':'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u062a'+'\\u0628'+'\\u062f'+'\\u06cc'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x3a','\\x62\\x75\\x69\\x6c\\x74\\x69\\x6e\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64':'\\u0646'+'\\u0648'+'\\u0639'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062e'+'\\u0644'+'\\u06cc'+'\\x3a','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x44\\x6f\\x6d\\x61\\x69\\x6e':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x49\\x50':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc','\\x65\\x6e\\x61\\x62\\x6c\\x65\\x47\\x69\\x74\\x48\\x75\\x62\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x47'+'\\x69'+'\\x74'+'\\x48'+'\\x75'+'\\x62','\\x61\\x6c\\x6c\\x6f\\x77\\x41\\x50\\x49\\x4d\\x61\\x6e\\x61\\x67\\x65\\x6d\\x65\\x6e\\x74':'\\u0627'+'\\u062c'+'\\u0627'+'\\u0632'+'\\u0647'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\x28'+'\\x61'+'\\x65'+'\\x29'+'\\x3a','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67':'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\x28'+'\\x72'+'\\x6d'+'\\x29'+'\\x3a','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u06a9'+'\\u0646'+'\\u062a'+'\\u0631'+'\\u0644'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0647'+'\\u0634'+'\\x20'+'\\u0633'+'\\u0637'+'\\u062d'+'\\x20'+'\\x28'+'\\x71'+'\\x6a'+'\\x29'+'\\x3a','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u06a9'+'\\u0646'+'\\u062a'+'\\u0631'+'\\u0644'+'\\x20'+'\\x54'+'\\x4c'+'\\x53'+'\\x20'+'\\x28'+'\\x64'+'\\x6b'+'\\x62'+'\\x79'+'\\x29'+'\\x3a','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c':'\\u06a9'+'\\u0646'+'\\u062a'+'\\u0631'+'\\u0644'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\x28'+'\\x79'+'\\x78'+'\\x62'+'\\x79'+'\\x29'+'\\x3a','\\x73\\x61\\x76\\x65\\x41\\x64\\x76\\x61\\x6e\\x63\\x65\\x64':'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u0631'+'\\u0641'+'\\u062a'+'\\u0647','\\x6c\\x6f\\x61\\x64\\x69\\x6e\\x67':'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0628'+'\\u0627'+'\\u0631'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\x2e'+'\\x2e'+'\\x2e','\\x63\\x75\\x72\\x72\\x65\\x6e\\x74\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\ud83d\\udccd'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0645'+'\\u0633'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0644'+'\\u06cc','\\x72\\x65\\x66\\x72\\x65\\x73\\x68\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u062a'+'\\u0627'+'\\u0632'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a','\\x72\\x65\\x73\\x65\\x74\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\u0628'+'\\u0627'+'\\u0632'+'\\u0646'+'\\u0634'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x70\\x69\\x65\\x64':'\\u0644'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u06a9'+'\\u067e'+'\\u06cc'+'\\x20'+'\\u0634'+'\\u062f','\\x61\\x75\\x74\\x6f\\x53\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x70\\x69\\x65\\x64':'\\u0644'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u06a9'+'\\u067e'+'\\u06cc'+'\\x20'+'\\u0634'+'\\u062f'+'\\u060c'+'\\x20'+'\\u06a9'+'\\u0644'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u062a'+'\\x20'+'\\u0647'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u0645'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0633'+'\\u0627'+'\\u0633'+'\\x20'+'\\x55'+'\\x73'+'\\x65'+'\\x72'+'\\x2d'+'\\x41'+'\\x67'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0648'+'\\x20'+'\\u0642'+'\\u0627'+'\\u0644'+'\\u0628'+'\\x20'+'\\u0645'+'\\u0631'+'\\u0628'+'\\u0648'+'\\u0637'+'\\u0647'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u06af'+'\\u0631'+'\\u062f'+'\\u0627'+'\\u0646'+'\\u062f','\\x74\\x72\\x6f\\x6a\\x61\\x6e\\x50\\x61\\x73\\x73\\x77\\x6f\\x72\\x64\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u062a'+'\\u0627'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f','\\x74\\x72\\x6f\\x6a\\x61\\x6e\\x50\\x61\\x73\\x73\\x77\\x6f\\x72\\x64\\x48\\x69\\x6e\\x74':'\\u0631'+'\\u0645'+'\\u0632'+'\\x20'+'\\u0639'+'\\u0628'+'\\u0648'+'\\u0631'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e'+'\\x20'+'\\u0627'+'\\u06af'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x2e'+'\\x20'+'\\u06a9'+'\\u0644'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u062a'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0631'+'\\u0645'+'\\u0632'+'\\x20'+'\\u0639'+'\\u0628'+'\\u0648'+'\\u0631'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0628'+'\\u0627'+'\\x20'+'\\x53'+'\\x48'+'\\x41'+'\\x32'+'\\x32'+'\\x34'+'\\x20'+'\\u0647'+'\\u0634'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u06a9'+'\\u0646'+'\\u062f'+'\\x2e','\\x70\\x72\\x6f\\x74\\x6f\\x63\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u0645'+'\\u06cc'+'\\u200c'+'\\u062a'+'\\u0648'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0686'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0647'+'\\u0645'+'\\u0632'+'\\u0645'+'\\u0627'+'\\u0646'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u06a9'+'\\u0646'+'\\u062f'+'\\x2e'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\u2022'+'\\x20'+'\\x56'+'\\x4c'+'\\x45'+'\\x53'+'\\x53'+'\\x20'+'\\x57'+'\\x53'+'\\x3a'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0627'+'\\u0646'+'\\u062f'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0645'+'\\u0628'+'\\u062a'+'\\u0646'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0631'+'\\x20'+'\\x57'+'\\x65'+'\\x62'+'\\x53'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\u2022'+'\\x20'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x3a'+'\\x20'+'\\u0627'+'\\u062d'+'\\u0631'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0647'+'\\u0648'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u0628'+'\\u0627'+'\\x20'+'\\u0631'+'\\u0645'+'\\u0632'+'\\x20'+'\\u0639'+'\\u0628'+'\\u0648'+'\\u0631'+'\\x20'+'\\x53'+'\\x48'+'\\x41'+'\\x32'+'\\x32'+'\\x34'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\u2022'+'\\x20'+'\\x78'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x3a'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u062a'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0645'+'\\u0628'+'\\u062a'+'\\u0646'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0631'+'\\x20'+'\\x48'+'\\x54'+'\\x54'+'\\x50'+'\\x20'+'\\x50'+'\\x4f'+'\\x53'+'\\x54'+'\\x20'+'\\x28'+'\\u0646'+'\\u06cc'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x20'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\u0648'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x67'+'\\x52'+'\\x50'+'\\x43'+'\\x20'+'\\u062f'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x29','\\x73\\x61\\x76\\x65\\x50\\x72\\x6f\\x74\\x6f\\x63\\x6f\\x6c':'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u062a'+'\\u06a9'+'\\u0644','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x6e\\x76\\x65\\x72\\x74\\x65\\x72\\x50\\x6c\\x61\\x63\\x65\\x68\\x6f\\x6c\\x64\\x65\\x72':'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x75'+'\\x72'+'\\x6c'+'\\x2e'+'\\x76'+'\\x31'+'\\x2e'+'\\x6d'+'\\x6b'+'\\x2f'+'\\x73'+'\\x75'+'\\x62','\\x73\\x75\\x62\\x73\\x63\\x72\\x69\\x70\\x74\\x69\\x6f\\x6e\\x43\\x6f\\x6e\\x76\\x65\\x72\\x74\\x65\\x72\\x48\\x69\\x6e\\x74':'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u062a'+'\\u0628'+'\\u062f'+'\\u06cc'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\u060c'+'\\x20'+'\\u0627'+'\\u06af'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f','\\x62\\x75\\x69\\x6c\\x74\\x69\\x6e\\x50\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x48\\x69\\x6e\\x74':'\\u06a9'+'\\u0646'+'\\u062a'+'\\u0631'+'\\u0644'+'\\x20'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\u0647'+'\\x20'+'\\u06a9'+'\\u062f'+'\\u0627'+'\\u0645'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062e'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u06af'+'\\u0646'+'\\u062c'+'\\u0627'+'\\u0646'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f'+'\\x2e'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\u0647'+'\\u0645'+'\\u0647'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0647'+'\\u0633'+'\\u062a'+'\\u0646'+'\\u062f'+'\\x2e','\\x61\\x70\\x69\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x28'+'\\u0628'+'\\u0633'+'\\u062a'+'\\u0646'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x29','\\x61\\x70\\x69\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64\\x59\\x65\\x73':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\x41'+'\\x50'+'\\x49','\\x61\\x70\\x69\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64\\x48\\x69\\x6e\\x74':'\\u26a0\\ufe0f'+'\\x20'+'\\u0647'+'\\u0634'+'\\u062f'+'\\u0627'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u06cc'+'\\u062a'+'\\u06cc'+'\\x3a'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u06af'+'\\u0632'+'\\u06cc'+'\\u0646'+'\\u0647'+'\\x20'+'\\u0627'+'\\u062c'+'\\u0627'+'\\u0632'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u062f'+'\\u0647'+'\\u062f'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0637'+'\\u0631'+'\\u06cc'+'\\u0642'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u067e'+'\\u0648'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u0627'+'\\u0636'+'\\u0627'+'\\u0641'+'\\u0647'+'\\x20'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f'+'\\x2e'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0635'+'\\u06cc'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x20'+'\\u0641'+'\\u0642'+'\\u0637'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u0635'+'\\u0648'+'\\u0631'+'\\u062a'+'\\x20'+'\\u0646'+'\\u06cc'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x28'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x29','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67\\x4e\\x6f':'\\u0628'+'\\u0633'+'\\u062a'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4d\\x61\\x74\\x63\\x68\\x69\\x6e\\x67\\x48\\x69\\x6e\\x74':'\\u0648'+'\\u0642'+'\\u062a'+'\\u06cc'+'\\x20'+'\\x22'+'\\u0628'+'\\u0633'+'\\u062a'+'\\u0646'+'\\x22'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f'+'\\u060c'+'\\x20'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0647'+'\\u0648'+'\\u0634'+'\\u0645'+'\\u0646'+'\\u062f'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062c'+'\\u0627'+'\\u0645'+'\\x20'+'\\u0646'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x28'+'\\u0639'+'\\u062f'+'\\u0645'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0647'+'\\u0634'+'\\x20'+'\\u0633'+'\\u0637'+'\\u062d'+'\\x29','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x4e\\x6f':'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0647'+'\\u0634'+'\\x20'+'\\u0633'+'\\u0637'+'\\u062d','\\x64\\x6f\\x77\\x6e\\x67\\x72\\x61\\x64\\x65\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u0648'+'\\u0642'+'\\u062a'+'\\u06cc'+'\\x20'+'\\x22'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x22'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x3a'+'\\x20'+'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0645'+'\\u0633'+'\\u062a'+'\\u0642'+'\\u06cc'+'\\u0645'+'\\x20'+'\\x43'+'\\x46'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x20'+'\\u2192'+'\\x20'+'\\u0627'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u0644'+'\\x20'+'\\x53'+'\\x4f'+'\\x43'+'\\x4b'+'\\x53'+'\\x35'+'\\x20'+'\\u2192'+'\\x20'+'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x28'+'\\u062d'+'\\u0641'+'\\u0638'+'\\x20'+'\\u0647'+'\\u0645'+'\\u0647'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\x29','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x59\\x65\\x73':'\\u0641'+'\\u0642'+'\\u0637'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\x54'+'\\x4c'+'\\x53','\\x74\\x6c\\x73\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u0648'+'\\u0642'+'\\u062a'+'\\u06cc'+'\\x20'+'\\x22'+'\\u0641'+'\\u0642'+'\\u0637'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\x54'+'\\x4c'+'\\x53'+'\\x22'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f'+'\\u060c'+'\\x20'+'\\u0641'+'\\u0642'+'\\u0637'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0627'+'\\x20'+'\\x54'+'\\x4c'+'\\x53'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f'+'\\u060c'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x54'+'\\x4c'+'\\x53'+'\\x20'+'\\x28'+'\\u0645'+'\\u0627'+'\\u0646'+'\\u0646'+'\\u062f'+'\\x20'+'\\u067e'+'\\u0648'+'\\u0631'+'\\u062a'+'\\x20'+'\\x38'+'\\x30'+'\\x29'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0646'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x44\\x65\\x66\\x61\\x75\\x6c\\x74':'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x28'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\x29','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x59\\x65\\x73':'\\u0628'+'\\u0633'+'\\u062a'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d','\\x70\\x72\\x65\\x66\\x65\\x72\\x72\\x65\\x64\\x43\\x6f\\x6e\\x74\\x72\\x6f\\x6c\\x48\\x69\\x6e\\x74':'\\u0648'+'\\u0642'+'\\u062a'+'\\u06cc'+'\\x20'+'\\x22'+'\\u0628'+'\\u0633'+'\\u062a'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\x22'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f'+'\\u060c'+'\\x20'+'\\u0641'+'\\u0642'+'\\u0637'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0627'+'\\u0635'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\u060c'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0648'+'\\x20'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0646'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x4e\\x61\\x6d\\x65\\x73':{'\\x55\\x53':Yb(0x98)+'\\x20'+'\\u0622'+'\\u0645'+'\\u0631'+'\\u06cc'+'\\u06a9'+'\\u0627','\\x53\\x47':Yb(0xe5)+'\\x20'+'\\u0633'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u067e'+'\\u0648'+'\\u0631','\\x4a\\x50':Yh(0x88)+'\\x20'+'\\u0698'+'\\u0627'+'\\u067e'+'\\u0646','\\x4b\\x52':Yh(0xb6)+'\\x20'+'\\u06a9'+'\\u0631'+'\\u0647'+'\\x20'+'\\u062c'+'\\u0646'+'\\u0648'+'\\u0628'+'\\u06cc','\\x44\\x45':Yh(0xd4)+'\\x20'+'\\u0622'+'\\u0644'+'\\u0645'+'\\u0627'+'\\u0646','\\x53\\x45':Yb(0xa5)+'\\x20'+'\\u0633'+'\\u0648'+'\\u0626'+'\\u062f','\\x4e\\x4c':Yh(0xe3)+'\\x20'+'\\u0647'+'\\u0644'+'\\u0646'+'\\u062f','\\x46\\x49':Yh(0xa3)+'\\x20'+'\\u0641'+'\\u0646'+'\\u0644'+'\\u0627'+'\\u0646'+'\\u062f','\\x47\\x42':Yh(0xdc)+'\\x20'+'\\u0628'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u0627'},'\\x74\\x65\\x72\\x6d\\x69\\x6e\\x61\\x6c':'\\u062a'+'\\u0631'+'\\u0645'+'\\u06cc'+'\\u0646'+'\\u0627'+'\\u0644'+'\\x20'+'\\x76'+'\\x32'+'\\x2e'+'\\x39'+'\\x2e'+'\\x34','\\x67\\x69\\x74\\x68\\x75\\x62\\x50\\x72\\x6f\\x6a\\x65\\x63\\x74':'\\u067e'+'\\u0631'+'\\u0648'+'\\u0698'+'\\u0647'+'\\x20'+'\\x47'+'\\x69'+'\\x74'+'\\x48'+'\\x75'+'\\x62','\\x61\\x75\\x74\\x6f\\x44\\x65\\x74\\x65\\x63\\x74\\x43\\x6c\\x69\\x65\\x6e\\x74':'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631','\\x73\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e\\x4c\\x6f\\x67\\x69\\x63\\x54\\x65\\x78\\x74':'\\u0647'+'\\u0645'+'\\u200c'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u2192'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u0645'+'\\u062c'+'\\u0627'+'\\u0648'+'\\u0631'+'\\x20'+'\\u2192'+'\\x20'+'\\u0633'+'\\u0627'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0627'+'\\u0637'+'\\u0642','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x44\\x69\\x73\\x61\\x62\\x6c\\x65\\x64\\x48\\x69\\x6e\\x74':'\\u0647'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u0645'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\u060c'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x4d\\x6f\\x64\\x65':'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x70'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x29','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x4d\\x6f\\x64\\x65\\x44\\x65\\x73\\x63':'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x29','\\x75\\x73\\x69\\x6e\\x67\\x43\\x75\\x73\\x74\\x6f\\x6d\\x50\\x72\\x6f\\x78\\x79\\x49\\x50':'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x3a'+'\\x20','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x43\\x6f\\x6e\\x66\\x69\\x67':'\\x20'+'\\x28'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x70'+'\\x29','\\x63\\x75\\x73\\x74\\x6f\\x6d\\x49\\x50\\x4d\\x6f\\x64\\x65\\x44\\x69\\x73\\x61\\x62\\x6c\\x65\\x64':'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\u060c'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x52\\x65\\x67\\x69\\x6f\\x6e':'\\u062a'+'\\u0639'+'\\u06cc'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u06cc','\\x6d\\x61\\x6e\\x75\\x61\\x6c\\x52\\x65\\x67\\x69\\x6f\\x6e\\x44\\x65\\x73\\x63':'\\x20'+'\\x28'+'\\u062a'+'\\u0639'+'\\u06cc'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u06cc'+'\\x29','\\x70\\x72\\x6f\\x78\\x79\\x49\\x50\\x41\\x76\\x61\\x69\\x6c\\x61\\x62\\x6c\\x65':'\\x31'+'\\x30'+'\\x2f'+'\\x31'+'\\x30'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\x20'+'\\x28'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x29','\\x73\\x6d\\x61\\x72\\x74\\x53\\x65\\x6c\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0647'+'\\u0648'+'\\u0634'+'\\u0645'+'\\u0646'+'\\u062f'+'\\x20'+'\\u0646'+'\\u0632'+'\\u062f'+'\\u06cc'+'\\u06a9'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062c'+'\\u0627'+'\\u0645'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a','\\x73\\x61\\x6d\\x65\\x52\\x65\\x67\\x69\\x6f\\x6e\\x49\\x50':'\\x49'+'\\x50'+'\\x20'+'\\u0647'+'\\u0645'+'\\u200c'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x20'+'\\x28'+'\\x31'+'\\x29','\\x63\\x6c\\x6f\\x75\\x64\\x66\\x6c\\x61\\x72\\x65\\x44\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e':'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062e'+'\\u0644'+'\\u06cc'+'\\x20'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65','\\x64\\x65\\x74\\x65\\x63\\x74\\x69\\x6f\\x6e\\x46\\x61\\x69\\x6c\\x65\\x64':'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x52\\x65\\x73\\x75\\x6c\\x74':'\\u0646'+'\\u062a'+'\\u06cc'+'\\u062c'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x3a'+'\\x20','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x54\\x69\\x6d\\x65':'\\u0632'+'\\u0645'+'\\u0627'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x3a'+'\\x20','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x46\\x61\\x69\\x6c\\x65\\x64':'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20','\\x75\\x6e\\x6b\\x6e\\x6f\\x77\\x6e\\x45\\x72\\x72\\x6f\\x72':'\\u062e'+'\\u0637'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0634'+'\\u0646'+'\\u0627'+'\\u062e'+'\\u062a'+'\\u0647','\\x61\\x70\\x69\\x54\\x65\\x73\\x74\\x45\\x72\\x72\\x6f\\x72':'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20','\\x6b\\x76\\x4e\\x6f\\x74\\x43\\x6f\\x6e\\x66\\x69\\x67\\x75\\x72\\x65\\x64':'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u060c'+'\\x20'+'\\u0646'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u062a'+'\\u0648'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0639'+'\\u0645'+'\\u0644'+'\\u06a9'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e'+'\\x5c'+'\\x6e'+'\\x5c'+'\\x6e'+'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x73'+'\\x3a'+'\\x5c'+'\\x6e'+'\\x31'+'\\x2e'+'\\x20'+'\\u0641'+'\\u0636'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0627'+'\\u06cc'+'\\u062c'+'\\u0627'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x5c'+'\\x6e'+'\\x32'+'\\x2e'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0645'+'\\u062d'+'\\u06cc'+'\\u0637'+'\\u06cc'+'\\x20'+'\\x43'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0648'+'\\u0646'+'\\u062f'+'\\x20'+'\\u062f'+'\\u0647'+'\\u06cc'+'\\u062f'+'\\x5c'+'\\x6e'+'\\x33'+'\\x2e'+'\\x20'+'\\u06a9'+'\\u062f'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0648'+'\\u0628'+'\\u0627'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0645'+'\\u0633'+'\\u062a'+'\\u0642'+'\\u0631'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f','\\x6b\\x76\\x4e\\x6f\\x74\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64':'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a','\\x6b\\x76\\x43\\x68\\x65\\x63\\x6b\\x46\\x61\\x69\\x6c\\x65\\x64':'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20'+'\\u062e'+'\\u0637'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0641'+'\\u0631'+'\\u0645'+'\\u062a'+'\\x20'+'\\u067e'+'\\u0627'+'\\u0633'+'\\u062e','\\x6b\\x76\\x43\\x68\\x65\\x63\\x6b\\x46\\x61\\x69\\x6c\\x65\\x64\\x53\\x74\\x61\\x74\\x75\\x73':'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x20'+'\\x2d'+'\\x20'+'\\u06a9'+'\\u062f'+'\\x20'+'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x3a'+'\\x20','\\x6b\\x76\\x43\\x68\\x65\\x63\\x6b\\x46\\x61\\x69\\x6c\\x65\\x64\\x45\\x72\\x72\\x6f\\x72':'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x20'+'\\x2d'+'\\x20'+'\\u062e'+'\\u0637'+'\\u0627'+'\\x3a'+'\\x20'}};const RS=RI[RK?'\\x66'+'\\x61':'\\x7a'+'\\x68'];const RM='\\x3c'+'\\x21'+'\\x44'+'\\x4f'+'\\x43'+'\\x54'+'\\x59'+'\\x50'+'\\x45'+'\\x20'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x20'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x3d'+'\\x22'+Rq+('\\x22'+'\\x20'+'\\x64'+'\\x69'+'\\x72'+'\\x3d'+'\\x22')+(RK?'\\x72'+'\\x74'+'\\x6c':'\\x6c'+'\\x74'+'\\x72')+('\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6d'+'\\x65'+'\\x74'+'\\x61'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x22'+'\\x55'+'\\x54'+'\\x46'+'\\x2d'+'\\x38'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6d'+'\\x65'+'\\x74'+'\\x61'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x22'+'\\x76'+'\\x69'+'\\x65'+'\\x77'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x22'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3d'+'\\x64'+'\\x65'+'\\x76'+'\\x69'+'\\x63'+'\\x65'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x69'+'\\x74'+'\\x69'+'\\x61'+'\\x6c'+'\\x2d'+'\\x73'+'\\x63'+'\\x61'+'\\x6c'+'\\x65'+'\\x3d'+'\\x31'+'\\x2e'+'\\x30'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x3e')+RS['\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65']+('\\x3c'+'\\x2f'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2a'+'\\x20'+'\\x7b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x69'+'\\x6e'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x76'+'\\x68'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x78'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x62'+'\\x67'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x62'+'\\x67'+'\\x2d'+'\\x70'+'\\x75'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x34'+'\\x35'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x31'+'\\x31'+'\\x30'+'\\x30'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x34'+'\\x35'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x32'+'\\x32'+'\\x30'+'\\x30'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x72'+('\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x59'+'\\x28'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x59'+'\\x28'+'\\x31'+'\\x30'+'\\x30'+'\\x76'+'\\x68'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x2d'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x73'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x64'+'\\x72'+'\\x6f'+'\\x70'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x39'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x76'+'\\x68'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x6f'+'\\x64'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x32'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64')+('\\x28'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x35'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x3a'+'\\x6e'+'\\x74'+'\\x68'+'\\x2d'+'\\x63'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x33'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2d'+'\\x64'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x38'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x39'+'\\x30'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x33'+'\\x2e'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x67'+'\\x6c'+'\\x6f'+'\\x77'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x72'+'\\x6f'+'\\x6d'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x6f'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61')+('\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x70'+'\\x75'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x2d'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x2d'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x20'+'\\x7b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x64'+'\\x72'+'\\x6f'+'\\x70'+'\\x2d'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x28'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x2d'+'\\x67'+'\\x6c'+'\\x6f'+'\\x77'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x37'+'\\x29'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x32'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x3a'+'\\x3a'+'\\x62'+'\\x65'+'\\x66'+'\\x6f'+'\\x72'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x22'+'\\x22'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x2d'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x73'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x73'+'\\x63'+'\\x61'+'\\x6e'+'\\x2d'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x58'+'\\x28'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x58'+'\\x28'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x67'+'\\x72'+'\\x69'+'\\x64'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x67'+'\\x72'+'\\x69'+'\\x64'+'\\x3b'+'\\x20'+'\\x67'+'\\x72'+'\\x69'+'\\x64'+'\\x2d'+'\\x74'+'\\x65'+'\\x6d'+'\\x70'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x70'+'\\x65'+'\\x61'+'\\x74'+'\\x28'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x2d'+'\\x66'+'\\x69'+'\\x74'+'\\x2c'+'\\x20'+'\\x6d'+'\\x69'+'\\x6e'+'\\x6d'+'\\x61'+'\\x78'+'\\x28'+'\\x31'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x2c'+'\\x20'+'\\x31'+'\\x66'+'\\x72'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x3a'+'\\x62'+'\\x65'+'\\x66'+'\\x6f'+'\\x72'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x22'+'\\x22'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x39'+'\\x30'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x2c'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x30'+'\\x2c'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x2c'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x3a'+'\\x61'+'\\x66'+'\\x74'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x22'+'\\x22'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x34'+'\\x35'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x33'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x30'+'\\x2c'+'\\x30'+'\\x2e'+'\\x31'+'\\x29'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x37'+'\\x30'+'\\x25'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x68'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x3a'+'\\x3a'+'\\x62'+'\\x65'+'\\x66'+'\\x6f'+'\\x72'+'\\x65'+'\\x20'+'\\x7b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x68'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x3a'+'\\x3a'+'\\x61'+'\\x66'+'\\x74'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x68'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72')+('\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x59'+'\\x28'+'\\x2d'+'\\x33'+'\\x70'+'\\x78'+'\\x29'+'\\x20'+'\\x73'+'\\x63'+'\\x61'+'\\x6c'+'\\x65'+'\\x28'+'\\x31'+'\\x2e'+'\\x30'+'\\x35'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x3a'+'\\x62'+'\\x65'+'\\x66'+'\\x6f'+'\\x72'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x22'+'\\x22'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x61'+'\\x72'+'\\x2d'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x39'+'\\x30'+'\\x64'+'\\x65'+'\\x67'+'\\x2c'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x2c'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x30'+'\\x2c'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x2c'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e')+('\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x68'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x3a'+'\\x3a'+'\\x62'+'\\x65'+'\\x66'+'\\x6f'+'\\x72'+'\\x65'+'\\x20'+'\\x7b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x3a'+'\\x68'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x34'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x59'+'\\x28'+'\\x2d'+'\\x34'+'\\x70'+'\\x78'+'\\x29'+'\\x20'+'\\x73'+'\\x63'+'\\x61'+'\\x6c'+'\\x65'+'\\x28'+'\\x31'+'\\x2e'+'\\x30'+'\\x38'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x33'+'\\x56'+'\\x69'+'\\x63'+'\\x32'+'\\x4e'+'\\x79'+'\\x61'+'\\x58'+'\\x42'+'\\x30'+'\\x61'+'\\x57'+'\\x39'+'\\x75'+'\\x27'+'\\x29'+'\\x2d'+'\\x75'+'\\x72'+'\\x6c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x2d'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x3a'+'\\x20'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x78'+'\\x3a'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x2d'+'\\x67'+'\\x6c'+'\\x6f'+'\\x77'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x72'+'\\x6f'+'\\x6d'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x6f'+'\\x20'+'\\x7b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x2c'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x33'+'\\x56'+'\\x69'+'\\x63'+'\\x32'+'\\x4e'+'\\x79'+'\\x61'+'\\x58'+'\\x42'+'\\x30'+'\\x61'+'\\x57'+'\\x39'+'\\x75'+'\\x27'+'\\x29'+'\\x2d'+'\\x75'+'\\x72'+'\\x6c'+'\\x3a'+'\\x3a'+'\\x62'+'\\x65'+'\\x66'+'\\x6f'+'\\x72'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x22'+'\\x22'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x62'+'\\x73'+'\\x6f'+'\\x6c'+'\\x75'+'\\x74'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x2d'+'\\x73'+'\\x63'+'\\x61'+'\\x6e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x22'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x22'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x40'+'\\x6b'+'\\x65'+'\\x79'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x66'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x65'+'\\x72'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x30'+'\\x25'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x35'+'\\x30'+'\\x25'+'\\x20'+'\\x7b'+'\\x20'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x62'+'\\x67'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x2d'+'\\x72'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x64'+'\\x65'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x3e'))+RS['\\x74'+'\\x65'+'\\x72'+'\\x6d'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x78'+'\\x65'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x7a'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x3b'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x28'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x7a'+'\\x68'+'\\x22'+'\\x20')+(!RK?'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64':'')+('\\x3e'+Yb(0x83)+'\\x20'+'\\u4e2d'+'\\u6587'+'\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x61'+'\\x22'+'\\x20')+(RK?'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64':'')+('\\x3e'+Yh(0xc6)+'\\x20'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x31'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65']+('\\x3c'+'\\x2f'+'\\x68'+'\\x31'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x70'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x73'+'\\x75'+'\\x62'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x75'+'\\x62'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65']+('\\x3c'+'\\x2f'+'\\x70'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x32'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x68'+'\\x32'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x67'+'\\x72'+'\\x69'+'\\x64'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x59'+'\\x32'+'\\x78'+'\\x68'+'\\x63'+'\\x32'+'\\x67'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4c'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x43'+'\\x4c'+'\\x41'+'\\x53'+'\\x48'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x59'+'\\x32'+'\\x78'+'\\x68'+'\\x63'+'\\x32'+'\\x67'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x53'+'\\x54'+'\\x41'+'\\x53'+'\\x48'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x33'+'\\x56'+'\\x79'+'\\x5a'+'\\x32'+'\\x55'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x55'+'\\x52'+'\\x47'+'\\x45'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x53'+'\\x55'+'\\x52'+'\\x47'+'\\x45'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x32'+'\\x6c'+'\\x75'+'\\x5a'+'\\x32'+'\\x4a'+'\\x76'+'\\x65'+'\\x41'+'\\x3d'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x49'+'\\x4e'+'\\x47'+'\\x2d'+'\\x42'+'\\x4f'+'\\x58'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x53'+'\\x49'+'\\x4e'+'\\x47'+'\\x2d'+'\\x42'+'\\x4f'+'\\x58'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x62'+'\\x47'+'\\x39'+'\\x76'+'\\x62'+'\\x67'+'\\x3d'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x4f'+'\\x4f'+'\\x4e'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x4c'+'\\x4f'+'\\x4f'+'\\x4e'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x58'+'\\x56'+'\\x68'+'\\x62'+'\\x6e'+'\\x67'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x51'+'\\x55'+'\\x41'+'\\x4e'+'\\x54'+'\\x55'+'\\x4d'+'\\x55'+'\\x4c'+'\\x54'+'\\x20'+'\\x58'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x51'+'\\x55'+'\\x41'+'\\x4e'+'\\x54'+'\\x55'+'\\x4d'+'\\x55'+'\\x4c'+'\\x54'+'\\x20'+'\\x58'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x64'+'\\x6a'+'\\x4a'+'\\x79'+'\\x59'+'\\x58'+'\\x6b'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x32'+'\\x52'+'\\x41'+'\\x59'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x56'+'\\x32'+'\\x52'+'\\x41'+'\\x59'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x64'+'\\x6a'+'\\x4a'+'\\x79'+'\\x59'+'\\x58'+'\\x6b'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x32'+'\\x52'+'\\x41'+'\\x59'+'\\x4e'+'\\x47'+'\\x27'+'\\x29'+'\\x22'+('\\x3e'+'\\x56'+'\\x32'+'\\x52'+'\\x41'+'\\x59'+'\\x4e'+'\\x47'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x64'+'\\x6a'+'\\x4a'+'\\x79'+'\\x59'+'\\x58'+'\\x6b'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x45'+'\\x4b'+'\\x4f'+'\\x52'+'\\x41'+'\\x59'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x4e'+'\\x45'+'\\x4b'+'\\x4f'+'\\x52'+'\\x41'+'\\x59'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x62'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x64'+'\\x6a'+'\\x4a'+'\\x79'+'\\x59'+'\\x58'+'\\x6b'+'\\x3d'+'\\x27'+'\\x29'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x72'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x22'+'\\x3e'+'\\x53'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x72'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74'+'\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x33'+'\\x56'+'\\x69'+'\\x63'+'\\x32'+'\\x4e'+'\\x79'+'\\x61'+'\\x58'+'\\x42'+'\\x30'+'\\x61'+'\\x57'+'\\x39'+'\\x75'+'\\x4c'+'\\x58'+'\\x56'+'\\x79'+'\\x62'+'\\x41'+'\\x3d'+'\\x3d'+'\\x27'+'\\x29'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x32'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e'))+RS['\\x73'+'\\x79'+'\\x73'+'\\x74'+'\\x65'+'\\x6d'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']+('\\x3c'+'\\x2f'+'\\x68'+'\\x32'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x79'+'\\x73'+'\\x74'+'\\x65'+'\\x6d'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x78'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x29'+'\\x3b'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x76'+'\\x65'+'\\x3b'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x5b'+'\\x20')+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x20'+'\\x5d'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e']+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73']+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50']+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\x45'+'\\x43'+'\\x48'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20')+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68']+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4c'+'\\x6f'+'\\x67'+'\\x69'+'\\x63'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4c'+'\\x6f'+'\\x67'+'\\x69'+'\\x63']+RS['\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4c'+'\\x6f'+'\\x67'+'\\x69'+'\\x63'+'\\x54'+'\\x65'+'\\x78'+'\\x74']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x32'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x4d'+'\\x61'+'\\x6e'+'\\x61'+'\\x67'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x68'+'\\x32'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+RS['\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x70'+'\\x65'+'\\x63'+'\\x69'+'\\x66'+'\\x79'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x22'+'\\x3e')+RS['\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x44'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x55'+'\\x53'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x55'+'\\x53']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x53'+'\\x47'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x53'+'\\x47']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x4a'+'\\x50'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x4a'+'\\x50']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x4b'+'\\x52'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x4b'+'\\x52']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x44'+'\\x45'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x44'+'\\x45']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x53'+'\\x45'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x53'+'\\x45']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x4e'+'\\x4c'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x4e'+'\\x4c']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x46'+'\\x49'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x46'+'\\x49']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x47'+'\\x42'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73']['\\x47'+'\\x42']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\u26a0\\ufe0f'+'\\x20')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x73'+'\\x75'+'\\x62'+'\\x6d'+'\\x69'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6f'+'\\x74'+'\\x68'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x76'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x56'+'\\x4c'+'\\x45'+'\\x53'+'\\x53']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x54'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x78'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x58'+'\\x68'+'\\x74'+'\\x74'+'\\x70']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x63'+'\\x68'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x45'+'\\x43'+'\\x48']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x45'+'\\x43'+'\\x48'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x50'+'\\x61'+'\\x73'+'\\x73'+'\\x77'+'\\x6f'+'\\x72'+'\\x64']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x74'+'\\x70'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x74'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x50'+'\\x61'+'\\x73'+'\\x73'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x72'+'\\x6f'+'\\x6a'+'\\x61'+'\\x6e'+'\\x50'+'\\x61'+'\\x73'+'\\x73'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x50'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x50'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x48'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x48'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x48'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x48'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x61'+'\\x74'+'\\x68']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+(RK?'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x2f'+'\\x6d'+'\\x79'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u062a'+'\\u0627'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0634'+'\\u0648'+'\\u062f':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x2f'+'\\x6d'+'\\x79'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x20'+'\\u6216'+'\\u7559'+'\\u7a7a'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44')+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u0645'+'\\u0633'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x2e'+'\\x20'+'\\u0627'+'\\u06af'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0639'+'\\u0646'+'\\u0648'+'\\u0627'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0633'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x2e':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u8ba2'+'\\u9605'+'\\u8def'+'\\u5f84'+'\\u3002'+'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u4f5c'+'\\u4e3a'+'\\u8def'+'\\u5f84'+'\\u3002')+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+(RK?'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x2e'+'\\x33'+'\\x2e'+'\\x34'+'\\x3a'+'\\x34'+'\\x34'+'\\x33':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x2e'+'\\x33'+'\\x2e'+'\\x34'+'\\x3a'+'\\x34'+'\\x34'+'\\x33')+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0648'+'\\x20'+'\\u067e'+'\\u0648'+'\\u0631'+'\\u062a'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u5730'+'\\u5740'+'\\u548c'+'\\u7aef'+'\\u53e3')+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x49'+'\\x50'+'\\x73']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x79'+'\\x78'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+(RK?'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x2e'+'\\x33'+'\\x2e'+'\\x34'+'\\x3a'+'\\x34'+'\\x34'+'\\x33'+'\\x23'+'\\u06af'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0647'+'\\u0646'+'\\u06af'+'\\u200c'+'\\u06a9'+'\\u0646'+'\\u06af'+'\\x2c'+'\\x35'+'\\x2e'+'\\x36'+'\\x2e'+'\\x37'+'\\x2e'+'\\x38'+'\\x3a'+'\\x38'+'\\x30'+'\\x23'+'\\u06af'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0622'+'\\u0645'+'\\u0631'+'\\u06cc'+'\\u06a9'+'\\u0627'+'\\x2c'+'\\x65'+'\\x78'+'\\x61'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x38'+'\\x34'+'\\x34'+'\\x33'+'\\x23'+'\\u06af'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0633'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u067e'+'\\u0648'+'\\u0631':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x2e'+'\\x33'+'\\x2e'+'\\x34'+'\\x3a'+'\\x34'+'\\x34'+'\\x33'+'\\x23'+'\\u65e5'+'\\u672c'+'\\u8282'+'\\u70b9'+'\\x2c'+'\\x35'+'\\x2e'+'\\x36'+'\\x2e'+'\\x37'+'\\x2e'+'\\x38'+'\\x3a'+'\\x38'+'\\x30'+'\\x23'+'\\u7f8e'+'\\u56fd'+'\\u8282'+'\\u70b9'+'\\x2c'+'\\x65'+'\\x78'+'\\x61'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x38'+'\\x34'+'\\x34'+'\\x33'+'\\x23'+'\\u65b0'+'\\u52a0'+'\\u5761'+'\\u8282'+'\\u70b9')+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u0641'+'\\u0631'+'\\u0645'+'\\u062a'+'\\x3a'+'\\x20'+'\\x49'+'\\x50'+'\\x3a'+'\\u067e'+'\\u0648'+'\\u0631'+'\\u062a'+'\\x23'+'\\u0646'+'\\u0627'+'\\u0645'+'\\x20'+'\\u06af'+'\\u0631'+'\\u0647'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\x49'+'\\x50'+'\\x3a'+'\\u067e'+'\\u0648'+'\\u0631'+'\\u062a'+'\\x20'+'\\x28'+'\\u0628'+'\\u062f'+'\\u0648'+'\\u0646'+'\\x20'+'\\x23'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f'+'\\x29'+'\\x2e'+'\\x20'+'\\u067e'+'\\u0634'+'\\u062a'+'\\u06cc'+'\\u0628'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0686'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0648'+'\\u0631'+'\\u062f'+'\\u060c'+'\\x20'+'\\u0628'+'\\u0627'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0645'+'\\u0627'+'\\x20'+'\\u062c'+'\\u062f'+'\\u0627'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f'+'\\x2e'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x49'+'\\x50'+'\\x20'+'\\u0647'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0636'+'\\u0627'+'\\u0641'+'\\u0647'+'\\x20'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0637'+'\\u0631'+'\\u06cc'+'\\u0642'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u062c'+'\\u0627'+'\\x20'+'\\u0646'+'\\u0645'+'\\u0627'+'\\u06cc'+'\\u0634'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u0646'+'\\u062f'+'\\x2e'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e':'\\u683c'+'\\u5f0f'+'\\x3a'+'\\x20'+'\\x49'+'\\x50'+'\\x3a'+'\\u7aef'+'\\u53e3'+'\\x23'+'\\u8282'+'\\u70b9'+'\\u540d'+'\\u79f0'+'\\x20'+'\\u6216'+'\\x20'+'\\x49'+'\\x50'+'\\x3a'+'\\u7aef'+'\\u53e3'+'\\x20'+'\\x28'+'\\u65e0'+'\\x23'+'\\u5219'+'\\u4f7f'+'\\u7528'+'\\u9ed8'+'\\u8ba4'+'\\u540d'+'\\u79f0'+'\\x29'+'\\u3002'+'\\u652f'+'\\u6301'+'\\u591a'+'\\u4e2a'+'\\uff0c'+'\\u7528'+'\\u9017'+'\\u53f7'+'\\u5206'+'\\u9694'+'\\u3002'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x41'+'\\x50'+'\\x49'+'\\u6dfb'+'\\u52a0'+'\\u7684'+'\\x49'+'\\x50'+'\\u4f1a'+'\\u81ea'+'\\u52a8'+'\\u663e'+'\\u793a'+'\\u5728'+'\\u8fd9'+'\\u91cc'+'\\u3002'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e')+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x49'+'\\x50'+'\\x73'+'\\x55'+'\\x52'+'\\x4c']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+(RK?'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74':'\\u9ed8'+'\\u8ba4'+'\\x3a'+'\\x20'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74')+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0628'+'\\u0639'+'\\x20'+'\\u0644'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u062a'+'\\u0631'+'\\u062c'+'\\u06cc'+'\\u062d'+'\\u06cc'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\u060c'+'\\x20'+'\\u0627'+'\\u06af'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0627'+'\\u0644'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u06af'+'\\u0630'+'\\u0627'+'\\u0631'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f':'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u5217'+'\\u8868'+'\\u6765'+'\\u6e90'+'\\x55'+'\\x52'+'\\x4c'+'\\uff0c'+'\\u7559'+'\\u7a7a'+'\\u5219'+'\\u4f7f'+'\\u7528'+'\\u9ed8'+'\\u8ba4'+'\\u5730'+'\\u5740')+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x34'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x34'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u26a1'+'\\x20')+RS['\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74']+('\\x3c'+'\\x2f'+'\\x68'+'\\x34'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x2d'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x69'+'\\x6e'+'\\x2d'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x22'+'\\x3e')+RS['\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x22'+'\\x3e')+RS['\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x6e'+'\\x75'+'\\x6d'+'\\x62'+'\\x65'+'\\x72'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x22'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x34'+'\\x34'+'\\x33'+'\\x22'+'\\x20'+'\\x6d'+'\\x69'+'\\x6e'+'\\x3d'+'\\x22'+'\\x31'+'\\x22'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x3d'+'\\x22'+'\\x36'+'\\x35'+'\\x35'+'\\x33'+'\\x35'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x6e'+'\\x75'+'\\x6d'+'\\x62'+'\\x65'+'\\x72'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x22'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x32'+'\\x30'+'\\x22'+'\\x20'+'\\x6d'+'\\x69'+'\\x6e'+'\\x3d'+'\\x22'+'\\x31'+'\\x22'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x3d'+'\\x22'+'\\x31'+'\\x30'+'\\x30'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x38'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u0631'+'\\u0634'+'\\u062a'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627':'\\u7ebf'+'\\u7a0b')+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x6e'+'\\x75'+'\\x6d'+'\\x62'+'\\x65'+'\\x72'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x22'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x35'+'\\x22'+'\\x20'+'\\x6d'+'\\x69'+'\\x6e'+'\\x3d'+'\\x22'+'\\x31'+'\\x22'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x3d'+'\\x22'+'\\x35'+'\\x30'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x50']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x50'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x44'+'\\x69'+'\\x76'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x32'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x66'+'\\x66'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x66'+'\\x66'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x77'+'\\x68'+'\\x69'+'\\x74'+'\\x65'+'\\x2d'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2b07'+'\\x20')+RS['\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x44'+'\\x69'+'\\x76'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x73'+'\\x3b'+'\\x22'+'\\x3e'+'\\ud83c\\udfb2'+'\\x20')+RS['\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x49'+'\\x50']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x32'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x73'+'\\x3b'+'\\x22'+'\\x3e'+'\\u25b6'+'\\x20')+RS['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x32'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x73'+'\\x3b'+'\\x22'+'\\x3e'+'\\u23f9'+'\\x20')+RS['\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x32'+'\\x35'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x79'+'\\x3a'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x6a'+'\\x75'+'\\x73'+'\\x74'+'\\x69'+'\\x66'+'\\x79'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x2d'+'\\x62'+'\\x65'+'\\x74'+'\\x77'+'\\x65'+'\\x65'+'\\x6e'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x34'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x64'+'\\x65'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x34'+'\\x70'+'\\x78'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x64'+'\\x65'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x6f'+'\\x22'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x22'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x61'+'\\x6c'+'\\x6c'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e')+(RK?'\\u5168'+'\\u90e8'+'\\u57ce'+'\\u5e02':'\\u5168'+'\\u90e8'+'\\u57ce'+'\\u5e02')+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x6f'+'\\x22'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x22'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x61'+'\\x73'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x31'+'\\x30'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e')+(RK?'\\u53ea'+'\\u9009'+'\\u62e9'+'\\u6700'+'\\u5feb'+'\\u7684'+'\\x31'+'\\x30'+'\\u4e2a':'\\u53ea'+'\\u9009'+'\\u62e9'+'\\u6700'+'\\u5feb'+'\\u7684'+'\\x31'+'\\x30'+'\\u4e2a')+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x2d'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x78'+'\\x2d'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x2d'+'\\x79'+'\\x3a'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x34'+'\\x34'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x54'+'\\x6f'+'\\x59'+'\\x78'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x73'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u8986'+'\\u76d6'+'\\u6dfb'+'\\u52a0':'\\u8986'+'\\u76d6'+'\\u6dfb'+'\\u52a0')+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x54'+'\\x6f'+'\\x59'+'\\x78'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x31'+'\\x35'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x33'+'\\x73'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u8ffd'+'\\u52a0'+'\\u6dfb'+'\\u52a0':'\\u8ffd'+'\\u52a0'+'\\u6dfb'+'\\u52a0')+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x35'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+(RK?'\\u0645'+'\\u062b'+'\\u0627'+'\\u0644'+'\\x3a'+'\\x20'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x3a'+'\\x70'+'\\x61'+'\\x73'+'\\x73'+'\\x40'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3a'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3a'+'\\x70'+'\\x6f'+'\\x72'+'\\x74':'\\u4f8b'+'\\u5982'+'\\x3a'+'\\x20'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x3a'+'\\x70'+'\\x61'+'\\x73'+'\\x73'+'\\x40'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3a'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\u6216'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3a'+'\\x70'+'\\x6f'+'\\x72'+'\\x74')+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+(RK?'\\u0622'+'\\u062f'+'\\u0631'+'\\u0633'+'\\x20'+'\\u067e'+'\\u0631'+'\\u0648'+'\\u06a9'+'\\u0633'+'\\u06cc'+'\\x20'+'\\x53'+'\\x4f'+'\\x43'+'\\x4b'+'\\x53'+'\\x35'+'\\u060c'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u0642'+'\\u0627'+'\\u0644'+'\\x20'+'\\u062a'+'\\u0645'+'\\u0627'+'\\u0645'+'\\x20'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u0641'+'\\u06cc'+'\\u06a9'+'\\x20'+'\\u062e'+'\\u0631'+'\\u0648'+'\\u062c'+'\\u06cc'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u0634'+'\\u0648'+'\\u062f':'\\x53'+'\\x4f'+'\\x43'+'\\x4b'+'\\x53'+'\\x35'+'\\u4ee3'+'\\u7406'+'\\u5730'+'\\u5740'+'\\uff0c'+'\\u7528'+'\\u4e8e'+'\\u8f6c'+'\\u53d1'+'\\u6240'+'\\u6709'+'\\u51fa'+'\\u7ad9'+'\\u6d41'+'\\u91cf')+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x73'+'\\x75'+'\\x62'+'\\x6d'+'\\x69'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x33'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x61'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x68'+'\\x33'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x61'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x6e'+'\\x76'+'\\x65'+'\\x72'+'\\x74'+'\\x65'+'\\x72']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x63'+'\\x75'+'\\x22'+'\\x20'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72'+'\\x3d'+'\\x22')+RS['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x6e'+'\\x76'+'\\x65'+'\\x72'+'\\x74'+'\\x65'+'\\x72'+'\\x50'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x68'+'\\x6f'+'\\x6c'+'\\x64'+'\\x65'+'\\x72']+('\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x6e'+'\\x76'+'\\x65'+'\\x72'+'\\x74'+'\\x65'+'\\x72'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x62'+'\\x75'+'\\x69'+'\\x6c'+'\\x74'+'\\x69'+'\\x6e'+'\\x50'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x70'+'\\x64'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x50'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x70'+'\\x69'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x50'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x49'+'\\x50']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x65'+'\\x67'+'\\x69'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x65'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x47'+'\\x69'+'\\x74'+'\\x48'+'\\x75'+'\\x62'+'\\x50'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64']+('\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x62'+'\\x75'+'\\x69'+'\\x6c'+'\\x74'+'\\x69'+'\\x6e'+'\\x50'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u7b5b'+'\\u9009'+'\\u8bbe'+'\\u7f6e'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x36'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x49'+'\\x50'+'\\u7248'+'\\u672c'+'\\u9009'+'\\u62e9'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x2d'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+('\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\x49'+'\\x50'+'\\x76'+'\\x34'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\x49'+'\\x50'+'\\x76'+'\\x36'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u8fd0'+'\\u8425'+'\\u5546'+'\\u9009'+'\\u62e9'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66')+('\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x2d'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x77'+'\\x72'+'\\x61'+'\\x70'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\u79fb'+'\\u52a8'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\u8054'+'\\u901a'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e')+('\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x22'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e'+'\\u7535'+'\\u4fe1'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\u9009'+'\\u62e9'+'\\u8981'+'\\u4f7f'+'\\u7528'+'\\u7684'+'\\x49'+'\\x50'+'\\u7248'+'\\u672c'+'\\u548c'+'\\u8fd0'+'\\u8425'+'\\u5546'+'\\uff0c'+'\\u672a'+'\\u9009'+'\\u4e2d'+'\\u7684'+'\\u5c06'+'\\u88ab'+'\\u8fc7'+'\\u6ee4'+'\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'))+RS['\\x61'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x77'+'\\x41'+'\\x50'+'\\x49'+'\\x4d'+'\\x61'+'\\x6e'+'\\x61'+'\\x67'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x61'+'\\x70'+'\\x69'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x22'+'\\x3e')+RS['\\x61'+'\\x70'+'\\x69'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x79'+'\\x65'+'\\x73'+'\\x22'+'\\x3e')+RS['\\x61'+'\\x70'+'\\x69'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x59'+'\\x65'+'\\x73']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x61'+'\\x70'+'\\x69'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x6e'+'\\x6f'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67'+'\\x4e'+'\\x6f']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x22'+'\\x3e')+RS['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x6e'+'\\x6f'+'\\x22'+'\\x3e')+RS['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x4e'+'\\x6f']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x6c'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x6c'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x79'+'\\x65'+'\\x73'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x6c'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x59'+'\\x65'+'\\x73']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x74'+'\\x6c'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x33'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c']+('\\x3c'+'\\x2f'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3d'+'\\x22'+'\\x79'+'\\x65'+'\\x73'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x59'+'\\x65'+'\\x73']+('\\x3c'+'\\x2f'+'\\x6f'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x48'+'\\x69'+'\\x6e'+'\\x74']+('\\x3c'+'\\x2f'+'\\x73'+'\\x6d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x73'+'\\x75'+'\\x62'+'\\x6d'+'\\x69'+'\\x74'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x41'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+RS['\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x69'+'\\x6e'+'\\x67']+('\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x37'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x22'+'\\x3e')+RS['\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x69'+'\\x6e'+'\\x67']+('\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x43'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x66'+'\\x72'+'\\x65'+'\\x73'+'\\x68'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x20'+'\\x6f'+'\\x6e'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x3d'+'\\x22'+'\\x72'+'\\x65'+'\\x73'+'\\x65'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x32'+'\\x35'+'\\x35'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x35'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x32'+'\\x70'+'\\x78'+'\\x20'+'\\x32'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x75'+'\\x72'+'\\x69'+'\\x65'+'\\x72'+'\\x20'+'\\x4e'+'\\x65'+'\\x77'+'\\x27'+'\\x2c'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x77'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x62'+'\\x6f'+'\\x6c'+'\\x64'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x69'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x73'+'\\x20'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x73'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67']+('\\x3c'+'\\x2f'+'\\x62'+'\\x75'+'\\x74'+'\\x74'+'\\x6f'+'\\x6e'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x69'+'\\x64'+'\\x3d'+'\\x22'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x4d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x68'+'\\x32'+'\\x20'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x3d'+'\\x22'+'\\x63'+'\\x61'+'\\x72'+'\\x64'+'\\x2d'+'\\x74'+'\\x69'+'\\x74'+'\\x6c'+'\\x65'+'\\x22'+'\\x3e')+RS['\\x72'+'\\x65'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x64'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x73']+('\\x3c'+'\\x2f'+'\\x68'+'\\x32'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x20'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x61'+'\\x20'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x3d'+'\\x22'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x62'+'\\x79'+'\\x4a'+'\\x6f'+'\\x65'+'\\x79'+'\\x2f'+'\\x63'+'\\x66'+'\\x6e'+'\\x65'+'\\x77'+'\\x22'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x3d'+'\\x22'+'\\x5f'+'\\x62'+'\\x6c'+'\\x61'+'\\x6e'+'\\x6b'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e')+RS['\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x50'+'\\x72'+'\\x6f'+'\\x6a'+'\\x65'+'\\x63'+'\\x74']+('\\x3c'+'\\x2f'+'\\x61'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x61'+'\\x20'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x3d'+'\\x22'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x77'+'\\x77'+'\\x77'+'\\x2e'+'\\x79'+'\\x6f'+'\\x75'+'\\x74'+'\\x75'+'\\x62'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x40'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x22'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x3d'+'\\x22'+'\\x5f'+'\\x62'+'\\x6c'+'\\x61'+'\\x6e'+'\\x6b'+'\\x22'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x3b'+'\\x20'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x32'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x2e'+'\\x32'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2d'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x3a'+'\\x20'+'\\x30'+'\\x20'+'\\x30'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x59'+'\\x6f'+'\\x75'+'\\x54'+'\\x75'+'\\x62'+'\\x65'+'\\x20'+'\\x40'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x3c'+'\\x2f'+'\\x61'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8ba2'+'\\u9605'+'\\u8f6c'+'\\u6362'+'\\u5730'+'\\u5740'+'\\uff08'+'\\u4ece'+'\\u670d'+'\\u52a1'+'\\u5668'+'\\u914d'+'\\u7f6e'+'\\u6ce8'+'\\u5165'+'\\uff09'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x53'+'\\x55'+'\\x42'+'\\x5f'+'\\x43'+'\\x4f'+'\\x4e'+'\\x56'+'\\x45'+'\\x52'+'\\x54'+'\\x45'+'\\x52'+'\\x5f'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x22')+h+('\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8fdc'+'\\u7a0b'+'\\u914d'+'\\u7f6e'+'\\x55'+'\\x52'+'\\x4c'+'\\uff08'+'\\u786c'+'\\u7f16'+'\\u7801'+'\\uff09'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x52'+'\\x45'+'\\x4d'+'\\x4f'+'\\x54'+'\\x45'+'\\x5f'+'\\x43'+'\\x4f'+'\\x4e'+'\\x46'+'\\x49'+'\\x47'+'\\x5f'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x22')+j+('\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u7ffb'+'\\u8bd1'+'\\u5bf9'+'\\u8c61'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u8ba2'+'\\u9605'+'\\u94fe'+'\\u63a5'+'\\u5df2'+'\\u590d'+'\\u5236'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x53'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u81ea'+'\\u52a8'+'\\u8bc6'+'\\u522b'+'\\u8ba2'+'\\u9605'+'\\u94fe'+'\\u63a5'+'\\u5df2'+'\\u590d'+'\\u5236'+'\\uff0c'+'\\u5ba2'+'\\u6237'+'\\u7aef'+'\\u8bbf'+'\\u95ee'+'\\u65f6'+'\\u4f1a'+'\\u6839'+'\\u636e'+'\\x55'+'\\x73'+'\\x65'+'\\x72'+'\\x2d'+'\\x41'+'\\x67'+'\\x65'+'\\x6e'+'\\x74'+'\\u81ea'+'\\u52a8'+'\\u8bc6'+'\\u522b'+'\\u5e76'+'\\u8fd4'+'\\u56de'+'\\u5bf9'+'\\u5e94'+'\\u683c'+'\\u5f0f'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u0644'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u06a9'+'\\u067e'+'\\u06cc'+'\\x20'+'\\u0634'+'\\u062f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x53'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u0644'+'\\u06cc'+'\\u0646'+'\\u06a9'+'\\x20'+'\\u0627'+'\\u0634'+'\\u062a'+'\\u0631'+'\\u0627'+'\\u06a9'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u06a9'+'\\u067e'+'\\u06cc'+'\\x20'+'\\u0634'+'\\u062f'+'\\u060c'+'\\x20'+'\\u06a9'+'\\u0644'+'\\u0627'+'\\u06cc'+'\\u0646'+'\\u062a'+'\\x20'+'\\u0647'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u0645'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0628'+'\\u0631'+'\\x20'+'\\u0627'+'\\u0633'+'\\u0627'+'\\u0633'+'\\x20'+'\\x55'+'\\x73'+'\\x65'+'\\x72'+'\\x2d'+'\\x41'+'\\x67'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\u0628'+'\\u0647'+'\\x20'+'\\u0637'+'\\u0648'+'\\u0631'+'\\x20'+'\\u062e'+'\\u0648'+'\\u062f'+'\\u06a9'+'\\u0627'+'\\u0631'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0648'+'\\x20'+'\\u0642'+'\\u0627'+'\\u0644'+'\\u0628'+'\\x20'+'\\u0645'+'\\u0631'+'\\u0628'+'\\u0648'+'\\u0637'+'\\u0647'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u06af'+'\\u0631'+'\\u062f'+'\\u0627'+'\\u0646'+'\\u062f'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+('\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x28'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8bbe'+'\\u7f6e'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\uff08'+'\\u6709'+'\\u6548'+'\\u671f'+'\\x31'+'\\u5e74'+'\\uff09'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x2f'+'\\x3b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x65'+'\\x73'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79')+('\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x74'+'\\x6f'+'\\x55'+'\\x54'+'\\x43'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x53'+'\\x61'+'\\x6d'+'\\x65'+'\\x53'+'\\x69'+'\\x74'+'\\x65'+'\\x3d'+'\\x4c'+'\\x61'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5237'+'\\u65b0'+'\\u9875'+'\\u9762'+'\\uff0c'+'\\u4e0d'+'\\u4f7f'+'\\u7528'+'\\x55'+'\\x52'+'\\x4c'+'\\u53c2'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x72'+'\\x65'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u9875'+'\\u9762'+'\\u52a0'+'\\u8f7d'+'\\u65f6'+'\\u68c0'+'\\u67e5'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\u548c'+'\\x20'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\uff0c'+'\\u5e76'+'\\u6e05'+'\\u7406'+'\\x55'+'\\x52'+'\\x4c'+'\\u53c2'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x44'+'\\x4f'+'\\x4d'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x64'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x53'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\x55'+'\\x52'+'\\x4c'+'\\u4e2d'+'\\u6709'+'\\u8bed'+'\\u8a00'+'\\u53c2'+'\\u6570'+'\\uff0c'+'\\u79fb'+'\\u9664'+'\\u5b83'+'\\u5e76'+'\\u8bbe'+'\\u7f6e'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73'+'\\x2e'+'\\x64'+'\\x65'+'\\x6c'+'\\x65'+'\\x74'+'\\x65'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8bbe'+'\\u7f6e'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e')+('\\x73'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x2f'+'\\x3b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x65'+'\\x73'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x74'+'\\x6f'+'\\x55'+'\\x54'+'\\x43'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x53'+'\\x61'+'\\x6d'+'\\x65'+'\\x53'+'\\x69'+'\\x74'+'\\x65'+'\\x3d'+'\\x4c'+'\\x61'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u4f7f'+'\\u7528'+'\\x68'+'\\x69'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x79'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\u79fb'+'\\u9664'+'\\x55'+'\\x52'+'\\x4c'+'\\u53c2'+'\\u6570'+'\\uff0c'+'\\u4e0d'+'\\u5237'+'\\u65b0'+'\\u9875'+'\\u9762'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x68'+'\\x69'+'\\x73'+'\\x74'+'\\x6f'+'\\x72'+'\\x79'+'\\x2e'+'\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x7b'+'\\x7d'+'\\x2c'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\u4e2d'+'\\u6709'+'\\u4f46'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\u4e2d'+'\\u6ca1'+'\\u6709'+'\\uff0c'+'\\u540c'+'\\u6b65'+'\\u5230'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x46'+'\\x75'+'\\x6c'+'\\x6c'+'\\x59'+'\\x65'+'\\x61'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d'+'\\x2f'+'\\x3b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x65'+'\\x73'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x78'+'\\x70'+'\\x69'+'\\x72'+'\\x79'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x74'+'\\x6f'+'\\x55'+'\\x54'+'\\x43'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x53'+'\\x61'+'\\x6d'+'\\x65'+'\\x53'+'\\x69'+'\\x74'+'\\x65'+'\\x3d'+'\\x4c'+'\\x61'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x41'+'\\x70'+'\\x70'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x43'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x2c'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x32'+'\\x35'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61')+('\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x63'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x45'+'\\x78'+'\\x65'+'\\x63'+'\\x75'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x48'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x65'+'\\x6c'+'\\x61'+'\\x70'+'\\x73'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x20'+'\\x2d'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x6c'+'\\x61'+'\\x70'+'\\x73'+'\\x65'+'\\x64'+'\\x20'+'\\x3c'+'\\x20'+'\\x33'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x21'+'\\x63'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x45'+'\\x78'+'\\x65'+'\\x63'+'\\x75'+'\\x74'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x27'+'\\x2c'+'\\x20'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x48'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x72'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x48'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x65'+'\\x6c'+'\\x61'+'\\x70'+'\\x73'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x20'+'\\x2d'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x6c'+'\\x61'+'\\x70'+'\\x73'+'\\x65'+'\\x64'+'\\x20'+'\\x3c'+'\\x20'+'\\x33'+'\\x30'+'\\x30'+'\\x30'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x21'+'\\x63'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x45'+'\\x78'+'\\x65'+'\\x63'+'\\x75'+'\\x74'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x76'+'\\x69'+'\\x73'+'\\x69'+'\\x62'+'\\x69'+'\\x6c'+'\\x69'+'\\x74'+'\\x79'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x48'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x72'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x31'+'\\x70'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65')+('\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x31'+'\\x70'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x73'+'\\x72'+'\\x63'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x6f'+'\\x64'+'\\x65'+'\\x2e'+'\\x72'+'\\x65'+'\\x6d'+'\\x6f'+'\\x76'+'\\x65'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x69'+'\\x66'+'\\x72'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x72'+'\\x65'+'\\x6d'+'\\x6f'+'\\x76'+'\\x65'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x27'+'\\x2c'+'\\x20'+'\\x62'+'\\x6c'+'\\x75'+'\\x72'+'\\x48'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x72'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x6d'+'\\x6f'+'\\x76'+'\\x65'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x76'+'\\x69'+'\\x73'+'\\x69'+'\\x62'+'\\x69'+'\\x6c'+'\\x69'+'\\x74'+'\\x79'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x68'+'\\x69'+'\\x64'+'\\x64'+'\\x65'+'\\x6e'+'\\x48'+'\\x61'+'\\x6e'+'\\x64'+'\\x6c'+'\\x65'+'\\x72'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x63'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x45'+'\\x78'+'\\x65'+'\\x63'+'\\x75'+'\\x74'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x45'+'\\x78'+'\\x65'+'\\x63'+'\\x75'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x61'+'\\x70'+'\\x70'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x65'+'\\x64'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x43'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x43'+'\\x61'+'\\x6c'+'\\x6c'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x6e'+'\\x6b'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x2c'+'\\x20'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x2f'+'\\x73'+'\\x75'+'\\x62'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27')+('\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x64'+'\\x6a'+'\\x4a'+'\\x79'+'\\x59'+'\\x58'+'\\x6b'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x22'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x57'+'\\x72'+'\\x61'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x42'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x58'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6d'+'\\x61'+'\\x78'+'\\x57'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x62'+'\\x6f'+'\\x78'+'\\x53'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x56'+'\\x32'+'\\x52'+'\\x41'+'\\x59'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x72'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x68'+'\\x61'+'\\x64'+'\\x6f'+'\\x77'+'\\x72'+'\\x6f'+'\\x63'+'\\x6b'+'\\x65'+'\\x74'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x61'+'\\x64'+'\\x64'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x41'+'\\x70'+'\\x70'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x56'+'\\x32'+'\\x52'+'\\x41'+'\\x59'+'\\x4e'+'\\x47'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x76'+'\\x32'+'\\x72'+'\\x61'+'\\x79'+'\\x6e'+'\\x67'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x41'+'\\x70'+'\\x70'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x4e'+'\\x45'+'\\x4b'+'\\x4f'+'\\x52'+'\\x41'+'\\x59'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x65'+'\\x6b'+'\\x6f'+'\\x72'+'\\x61'+'\\x79'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x41'+'\\x70'+'\\x70'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u68c0'+'\\u67e5'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u662f'+'\\u5426'+'\\u5f00'+'\\u542f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u5f00'+'\\u542f'+'\\u4e14'+'\\u662f'+'\\x20'+'\\x43'+'\\x6c'+'\\x61'+'\\x73'+'\\x68'+'\\uff0c'+'\\u76f4'+'\\u63a5'+'\\u4f7f'+'\\u7528'+'\\u540e'+'\\u7aef'+'\\u63a5'+'\\u53e3'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x63'+'\\x68'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x59'+'\\x32'+'\\x78'+'\\x68'+'\\x63'+'\\x32'+'\\x67'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x3f'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x3d'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x22'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x57'+'\\x72'+'\\x61'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73')+('\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x42'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x58'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6d'+'\\x61'+'\\x78'+'\\x57'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x62'+'\\x6f'+'\\x78'+'\\x53'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x74'+'\\x61'+'\\x73'+'\\x68'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x68'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x43'+'\\x4c'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x41'+'\\x70'+'\\x70'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5176'+'\\u4ed6'+'\\u60c5'+'\\u51b5'+'\\u4f7f'+'\\u7528'+'\\u8ba2'+'\\u9605'+'\\u8f6c'+'\\u6362'+'\\u670d'+'\\u52a1'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x64'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x53'+'\\x55'+'\\x42'+'\\x5f'+'\\x43'+'\\x4f'+'\\x4e'+'\\x56'+'\\x45'+'\\x52'+'\\x54'+'\\x45'+'\\x52'+'\\x5f'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x3f'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x3d'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x26'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x64'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x26'+'\\x69'+'\\x6e'+'\\x73'+'\\x65'+'\\x72'+'\\x74'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3d'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x52'+'\\x45'+'\\x4d'+'\\x4f'+'\\x54'+'\\x45'+'\\x5f'+'\\x43'+'\\x4f'+'\\x4e'+'\\x46'+'\\x49'+'\\x47'+'\\x5f'+'\\x55'+'\\x52'+'\\x4c'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x26'+'\\x65'+'\\x6d'+'\\x6f'+'\\x6a'+'\\x69'+'\\x3d'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x26'+'\\x6c'+'\\x69'+'\\x73'+'\\x74'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x78'+'\\x75'+'\\x64'+'\\x70'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x75'+'\\x64'+'\\x70'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x74'+'\\x66'+'\\x6f'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x65'+'\\x78'+'\\x70'+'\\x61'+'\\x6e'+'\\x64'+'\\x3d'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x26'+'\\x73'+'\\x63'+'\\x76'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x66'+'\\x64'+'\\x6e'+'\\x3d'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x26'+'\\x6e'+'\\x65'+'\\x77'+'\\x5f'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x76'+'\\x61'+'\\x72'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x22'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x22'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x57'+'\\x72'+'\\x61'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x64'+'\\x42'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x2d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x66'+'\\x6c'+'\\x6f'+'\\x77'+'\\x58'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x61'+'\\x75'+'\\x74'+'\\x6f'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6d'+'\\x61'+'\\x78'+'\\x57'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x31'+'\\x30'+'\\x30'+'\\x25'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x62'+'\\x6f'+'\\x78'+'\\x53'+'\\x69'+'\\x7a'+'\\x69'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x22'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x59'+'\\x32'+'\\x78'+'\\x68'+'\\x63'+'\\x32'+'\\x67'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x74'+'\\x61'+'\\x73'+'\\x68'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x68'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x43'+'\\x4c'+'\\x41'+'\\x53'+'\\x48'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x33'+'\\x56'+'\\x79'+'\\x5a'+'\\x32'+'\\x55'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x72'+'\\x67'+'\\x65'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x55'+'\\x52'+'\\x47'+'\\x45'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x32'+'\\x6c'+'\\x75'+'\\x5a'+'\\x32'+'\\x4a'+'\\x76'+'\\x65'+'\\x41'+'\\x3d'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x69'+'\\x6e'+'\\x67'+'\\x2d'+'\\x62'+'\\x6f'+'\\x78'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x53'+'\\x49'+'\\x4e'+'\\x47'+'\\x2d'+'\\x42'+'\\x4f'+'\\x58'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x62'+'\\x47'+'\\x39'+'\\x76'+'\\x62'+'\\x67'+'\\x3d'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x4c'+'\\x4f'+'\\x4f'+'\\x4e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x69'+'\\x65'+'\\x6e'+'\\x74'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x61'+'\\x74'+'\\x6f'+'\\x62'+'\\x28'+'\\x27'+'\\x63'+'\\x58'+'\\x56'+'\\x68'+'\\x62'+'\\x6e'+'\\x67'+'\\x3d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x71'+'\\x75'+'\\x61'+'\\x6e'+'\\x74'+'\\x75'+'\\x6d'+'\\x75'+'\\x6c'+'\\x74'+'\\x2d'+'\\x78'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x69'+'\\x6e'+'\\x73'+'\\x74'+'\\x61'+'\\x6c'+'\\x6c'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3f'+'\\x75'+'\\x72'+'\\x6c'+'\\x3d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'+'\\x55'+'\\x52'+'\\x49'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6f'+'\\x6e'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x51'+'\\x55'+'\\x41'+'\\x4e'+'\\x54'+'\\x55'+'\\x4d'+'\\x55'+'\\x4c'+'\\x54'+'\\x20'+'\\x58'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x4f'+'\\x70'+'\\x65'+'\\x6e'+'\\x41'+'\\x70'+'\\x70'+'\\x28'+'\\x73'+'\\x63'+'\\x68'+'\\x65'+'\\x6d'+'\\x65'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73')+('\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x63'+'\\x6c'+'\\x69'+'\\x70'+'\\x62'+'\\x6f'+'\\x61'+'\\x72'+'\\x64'+'\\x2e'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x2e'+'\\x74'+'\\x68'+'\\x65'+'\\x6e'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x22'+'\\x20'+'\\x22'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x43'+'\\x6f'+'\\x70'+'\\x69'+'\\x65'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x4d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x64'+'\\x65'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x30'+'\\x31'+'\\x41'+'\\x42'+'\\x43'+'\\x44'+'\\x45'+'\\x46'+'\\x47'+'\\x48'+'\\x49'+'\\x4a'+'\\x4b'+'\\x4c'+'\\x4d'+'\\x4e'+'\\x4f'+'\\x50'+'\\x51'+'\\x52'+'\\x53'+'\\x54'+'\\x55'+'\\x56'+'\\x57'+'\\x58'+'\\x59'+'\\x5a'+'\\x61'+'\\x62'+'\\x63'+'\\x64'+'\\x65'+'\\x66'+'\\x67'+'\\x68'+'\\x69'+'\\x6a'+'\\x6b'+'\\x6c'+'\\x6d'+'\\x6e'+'\\x6f'+'\\x70'+'\\x71'+'\\x72'+'\\x73'+'\\x74'+'\\x75'+'\\x76'+'\\x77'+'\\x78'+'\\x79'+'\\x7a'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x57'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x20'+'\\x2f'+'\\x20'+'\\x31'+'\\x38'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x69'+'\\x20'+'\\x3c'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x3b'+'\\x20'+'\\x69'+'\\x2b'+'\\x2b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x64'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x63'+'\\x6c'+'\\x61'+'\\x73'+'\\x73'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x65'+'\\x66'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x69'+'\\x20'+'\\x2a'+'\\x20'+'\\x31'+'\\x38'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x70'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x65'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d')+('\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x31'+'\\x35'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x61'+'\\x6e'+'\\x69'+'\\x6d'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x75'+'\\x72'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x31'+'\\x35'+'\\x20'+'\\x2b'+'\\x20'+'\\x38'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x53'+'\\x69'+'\\x7a'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x34'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x32'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x70'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x20'+'\\x2b'+'\\x20'+'\\x30'+'\\x2e'+'\\x32'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x33'+'\\x30'+'\\x20'+'\\x2b'+'\\x20'+'\\x32'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x6a'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x6a'+'\\x20'+'\\x3c'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x3b'+'\\x20'+'\\x6a'+'\\x2b'+'\\x2b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x5b'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x29'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x6e'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x2e'+'\\x31'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x2b'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x62'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x6e'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x3c'+'\\x62'+'\\x72'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x76'+'\\x61'+'\\x6c'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c')+('\\x28'+'\\x27'+'\\x2e'+'\\x6d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x2d'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x35'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x75'+'\\x6d'+'\\x6e'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x5b'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x29'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x23'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x68'+'\\x61'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x53'+'\\x79'+'\\x73'+'\\x74'+'\\x65'+'\\x6d'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x66'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x66'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c')+('\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\u5f53'+'\\u524d'+'\\u8bed'+'\\u8a00'+'\\u8bbe'+'\\u7f6e'+'\\uff08'+'\\u4f18'+'\\u5148'+'\\u4ece'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x2f'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\u8bfb'+'\\u53d6'+'\\uff09'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x2d'+'\\x43'+'\\x4e'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\u5730'+'\\u533a'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u68c0'+'\\u6d4b'+'\\u65b9'+'\\u5f0f'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\u5f53'+'\\u524d'+'\\u4f7f'+'\\u7528'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x3a'+'\\x20'+'\\x27'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x55'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u7f8e'+'\\u56fd'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe5)+'\\x20'+'\\u65b0'+'\\u52a0'+'\\u5761'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4a'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x88)+'\\x20'+'\\u65e5'+'\\u672c'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4b'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb6)+'\\x20'+'\\u97e9'+'\\u56fd'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u5fb7'+'\\u56fd'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa5)+'\\x20'+'\\u745e'+'\\u5178'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe3)+'\\x20'+'\\u8377'+'\\u5170'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x46'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa3)+'\\x20'+'\\u82ac'+'\\u5170'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xdc)+'\\x20'+'\\u82f1'+'\\u56fd'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f'+'\\x20'+'\\x28'+'\\x70'+'\\u53d8'+'\\u91cf'+'\\u542f'+'\\u7528'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x44'+'\\x65'+'\\x73'+'\\x63'+'\\x3a'+'\\x20'+'\\x27'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f'+'\\x20'+'\\x28'+'\\u5df2'+'\\u7981'+'\\u7528'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x73'+'\\x69'+'\\x6e'+'\\x67'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\u4f7f'+'\\u7528'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x28'+'\\x70'+'\\u53d8'+'\\u91cf'+'\\u914d'+'\\u7f6e'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x49'+'\\x50'+'\\u6a21'+'\\u5f0f'+'\\uff0c'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u5df2'+'\\u7981'+'\\u7528'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u624b'+'\\u52a8'+'\\u6307'+'\\u5b9a'+'\\u5730'+'\\u533a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x65'+'\\x73'+'\\x63'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x28'+'\\u624b'+'\\u52a8'+'\\u6307'+'\\u5b9a'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x41'+'\\x76'+'\\x61'+'\\x69'+'\\x6c'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x2f'+'\\x31'+'\\x30'+'\\x20'+'\\u53ef'+'\\u7528'+'\\x20'+'\\x28'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u57df'+'\\u540d'+'\\u9884'+'\\u8bbe'+'\\u53ef'+'\\u7528'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x6d'+'\\x61'+'\\x72'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u667a'+'\\u80fd'+'\\u5c31'+'\\u8fd1'+'\\u9009'+'\\u62e9'+'\\u4e2d'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x61'+'\\x6d'+'\\x65'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\u540c'+'\\u5730'+'\\u533a'+'\\x49'+'\\x50'+'\\u53ef'+'\\u7528'+'\\x20'+'\\x28'+'\\x31'+'\\u4e2a'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x44'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\u5185'+'\\u7f6e'+'\\u68c0'+'\\u6d4b'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x6e'+'\\x6b'+'\\x6e'+'\\x6f'+'\\x77'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u672a'+'\\u77e5'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u0631'+'\\u0648'+'\\u0634'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x49'+'\\x50'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0644'+'\\u06cc'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x55'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u0622'+'\\u0645'+'\\u0631'+'\\u06cc'+'\\u06a9'+'\\u0627'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe5)+'\\x20'+'\\u0633'+'\\u0646'+'\\u06af'+'\\u0627'+'\\u067e'+'\\u0648'+'\\u0631'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4a'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x88)+'\\x20'+'\\u0698'+'\\u0627'+'\\u067e'+'\\u0646'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4b'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb6)+'\\x20'+'\\u06a9'+'\\u0631'+'\\u0647'+'\\x20'+'\\u062c'+'\\u0646'+'\\u0648'+'\\u0628'+'\\u06cc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u0622'+'\\u0644'+'\\u0645'+'\\u0627'+'\\u0646'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa5)+'\\x20'+'\\u0633'+'\\u0648'+'\\u0626'+'\\u062f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe3)+'\\x20'+'\\u0647'+'\\u0644'+'\\u0646'+'\\u062f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x46'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa3)+'\\x20'+'\\u0641'+'\\u0646'+'\\u0644'+'\\u0627'+'\\u0646'+'\\u062f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdc)+'\\x20'+'\\u0628'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u0627'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x70'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x44'+'\\x65'+'\\x73'+'\\x63'+'\\x3a'+'\\x20'+'\\x27'+'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x20'+'\\x28'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x73'+'\\x69'+'\\x6e'+'\\x67'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x28'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\x70'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u062d'+'\\u0627'+'\\u0644'+'\\u062a'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u0633'+'\\u0641'+'\\u0627'+'\\u0631'+'\\u0634'+'\\u06cc'+'\\u060c'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0639'+'\\u06cc'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u06cc'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x65'+'\\x73'+'\\x63'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x28'+'\\u062a'+'\\u0639'+'\\u06cc'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u06cc'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x41'+'\\x76'+'\\x61'+'\\x69'+'\\x6c'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x2f'+'\\x31'+'\\x30'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\x20'+'\\x28'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0634'+'\\u200c'+'\\u0641'+'\\u0631'+'\\u0636'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x6d'+'\\x61'+'\\x72'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u0647'+'\\u0648'+'\\u0634'+'\\u0645'+'\\u0646'+'\\u062f'+'\\x20'+'\\u0646'+'\\u0632'+'\\u062f'+'\\u06cc'+'\\u06a9'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062c'+'\\u0627'+'\\u0645'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x61'+'\\x6d'+'\\x65'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x49'+'\\x50'+'\\x20'+'\\u0647'+'\\u0645'+'\\u200c'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u0631'+'\\u0633'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x20'+'\\x28'+'\\x31'+'\\x29'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x44'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u062f'+'\\u0627'+'\\u062e'+'\\u0644'+'\\u06cc'+'\\x20'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x6e'+'\\x6b'+'\\x6e'+'\\x6f'+'\\x77'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u0646'+'\\u0627'+'\\u0634'+'\\u0646'+'\\u0627'+'\\u062e'+'\\u062a'+'\\u0647'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x55'+'\\x53'+'\\x27'+'\\x3b'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u9ed8'+'\\u8ba4'+'\\u503c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x4d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x66')+('\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x43'+'\\x55'+'\\x53'+'\\x54'+'\\x4f'+'\\x4d'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x43'+'\\x55'+'\\x53'+'\\x54'+'\\x4f'+'\\x4d'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x49'+'\\x50'+'\\u7684'+'\\u8be6'+'\\u7ec6'+'\\u4fe1'+'\\u606f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x63'+'\\x69'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x74'+'\\x2e'+'\\x75'+'\\x6e'+'\\x6b'+'\\x6e'+'\\x6f'+'\\x77'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2699\\ufe0f'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\ud83d\\udd27'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x44'+'\\x65'+'\\x73'+'\\x63'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u663e'+'\\u793a'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\x49'+'\\x50'+'\\u914d'+'\\u7f6e'+'\\u72b6'+'\\u6001'+'\\uff0c'+'\\u5305'+'\\u542b'+'\\u5177'+'\\u4f53'+'\\x49'+'\\x50'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x29'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20')+('\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\ud83d\\udd27'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x75'+'\\x73'+'\\x69'+'\\x6e'+'\\x67'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x29'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u26a0\\ufe0f'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u63d0'+'\\u524d'+'\\u8fd4'+'\\u56de'+'\\uff0c'+'\\u4e0d'+'\\u6267'+'\\u884c'+'\\u540e'+'\\u7eed'+'\\u7684'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\u903b'+'\\u8f91'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\u624b'+'\\u52a8'+'\\u6307'+'\\u5b9a'+'\\u5730'+'\\u533a'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\u062a'+'\\u0639'+'\\u06cc'+'\\u06cc'+'\\u0646'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\u062f'+'\\u0633'+'\\u062a'+'\\u06cc'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x4d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x61'+'\\x61'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34')+('\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\ud83c\\udfaf'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x5b'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x5d'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x44'+'\\x65'+'\\x73'+'\\x63'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u663e'+'\\u793a'+'\\u914d'+'\\u7f6e'+'\\u72b6'+'\\u6001'+'\\u800c'+'\\u4e0d'+'\\u662f'+'\\u68c0'+'\\u6d4b'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x29'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x41'+'\\x76'+'\\x61'+'\\x69'+'\\x6c'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x29'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x6d'+'\\x61'+'\\x72'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x61'+'\\x6d'+'\\x65'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u63d0'+'\\u524d'+'\\u8fd4'+'\\u56de'+'\\uff0c'+'\\u4e0d'+'\\u6267'+'\\u884c'+'\\u540e'+'\\u7eed'+'\\u7684'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\u903b'+'\\u8f91'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x5b'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x5d'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x6c')+('\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x44'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x73'+'\\x5b'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x5d'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u76f4'+'\\u63a5'+'\\u663e'+'\\u793a'+'\\u914d'+'\\u7f6e'+'\\u72b6'+'\\u6001'+'\\uff0c'+'\\u4e0d'+'\\u518d'+'\\u8fdb'+'\\u884c'+'\\u68c0'+'\\u6d4b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x41'+'\\x76'+'\\x61'+'\\x69'+'\\x6c'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x6d'+'\\x61'+'\\x72'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e')+('\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x73'+'\\x61'+'\\x6d'+'\\x65'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72')+('\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\u5730'+'\\u533a'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u68c0'+'\\u6d4b'+'\\u65b9'+'\\u5f0f'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\u5f53'+'\\u524d'+'\\u4f7f'+'\\u7528'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x3a'+'\\x20'+'\\x27'+'\\u5730'+'\\u533a'+'\\u5339'+'\\u914d'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3a'+'\\x20'+'\\x27'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u0631'+'\\u0648'+'\\u0634'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x27'+'\\x49'+'\\x50'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0644'+'\\u06cc'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0637'+'\\u0628'+'\\u06cc'+'\\u0642'+'\\x20'+'\\u0645'+'\\u0646'+'\\u0637'+'\\u0642'+'\\u0647'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x77'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u274c'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x67'+'\\x65'+'\\x6f'+'\\x49'+'\\x6e'+'\\x66'+'\\x6f'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u274c'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x75'+'\\x70'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x70'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u274c'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u274c'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u274c'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x50'+'\\x49'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x3a'+'\\x20'+'\\x27'+'\\x41'+'\\x50'+'\\x49'+'\\u68c0'+'\\u6d4b'+'\\u7ed3'+'\\u679c'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\u68c0'+'\\u6d4b'+'\\u65f6'+'\\u95f4'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x41'+'\\x50'+'\\x49'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x6e'+'\\x6b'+'\\x6e'+'\\x6f'+'\\x77'+'\\x6e'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u672a'+'\\u77e5'+'\\u9519'+'\\u8bef'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x41'+'\\x50'+'\\x49'+'\\u6d4b'+'\\u8bd5'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x3a'+'\\x20'+'\\x27'+'\\u0646'+'\\u062a'+'\\u06cc'+'\\u062c'+'\\u0647'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\u0632'+'\\u0645'+'\\u0627'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0634'+'\\u062e'+'\\u06cc'+'\\u0635'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x6e'+'\\x6b'+'\\x6e'+'\\x6f'+'\\x77'+'\\x6e'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u062e'+'\\u0637'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0634'+'\\u0646'+'\\u0627'+'\\u062e'+'\\u062a'+'\\u0647'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65')+('\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x2d'+'\\x61'+'\\x70'+'\\x69'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x74'+'\\x2e'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x64'+'\\x65'+'\\x74'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x5c'+'\\x6e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x73'+'\\x74'+'\\x61'+'\\x6d'+'\\x70'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x74'+'\\x2e'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x74'+'\\x2e'+'\\x75'+'\\x6e'+'\\x6b'+'\\x6e'+'\\x6f'+'\\x77'+'\\x6e'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74')+('\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x41'+'\\x50'+'\\x49'+'\\u6d4b'+'\\u8bd5'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x74'+'\\x2e'+'\\x61'+'\\x70'+'\\x69'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\u76f8'+'\\u5173'+'\\u51fd'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x4b'+'\\x56'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x61'+'\\x70'+'\\x69'+'\\x2f'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x61'+'\\x70'+'\\x69'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73')+('\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u26a0\\ufe0f'+'\\x20'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u542f'+'\\u7528'+'\\u6216'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x4e'+'\\x6f'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x75'+'\\x72'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u65e0'+'\\u6cd5'+'\\u4f7f'+'\\u7528'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\u529f'+'\\u80fd'+'\\u3002'+'\\x5c'+'\\x6e'+'\\x5c'+'\\x6e'+'\\u8bf7'+'\\u5728'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x73'+'\\u4e2d'+'\\x3a'+'\\x5c'+'\\x6e'+'\\x31'+'\\x2e'+'\\x20'+'\\u521b'+'\\u5efa'+'\\x4b'+'\\x56'+'\\u547d'+'\\u540d'+'\\u7a7a'+'\\u95f4'+'\\x5c'+'\\x6e'+'\\x32'+'\\x2e'+'\\x20'+'\\u7ed1'+'\\u5b9a'+'\\u73af'+'\\u5883'+'\\u53d8'+'\\u91cf'+'\\x20'+'\\x43'+'\\x5c'+'\\x6e'+'\\x33'+'\\x2e'+'\\x20'+'\\u91cd'+'\\u65b0'+'\\u90e8'+'\\u7f72'+'\\u4ee3'+'\\u7801'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x4e'+'\\x6f'+'\\x74'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u2705'+'\\x20'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u5df2'+'\\u542f'+'\\u7528'+'\\uff0c'+'\\u53ef'+'\\u4ee5'+'\\u4f7f'+'\\u7528'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\u529f'+'\\u80fd'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u26a0\\ufe0f'+'\\x20'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x61'+'\\x74'+'\\x3a'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\u54cd'+'\\u5e94'+'\\u683c'+'\\u5f0f'+'\\u9519'+'\\u8bef'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x20'+'\\x2d'+'\\x20'+'\\u72b6'+'\\u6001'+'\\u7801'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x20'+'\\x2d'+'\\x20'+'\\u9519'+'\\u8bef'+'\\x3a'+'\\x20'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u26a0\\ufe0f'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0646'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x4e'+'\\x6f'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x75'+'\\x72'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u060c'+'\\x20'+'\\u0646'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u062a'+'\\u0648'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0639'+'\\u0645'+'\\u0644'+'\\u06a9')+('\\u0631'+'\\u062f'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x2e'+'\\x5c'+'\\x6e'+'\\x5c'+'\\x6e'+'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x73'+'\\x3a'+'\\x5c'+'\\x6e'+'\\x31'+'\\x2e'+'\\x20'+'\\u0641'+'\\u0636'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0627'+'\\u06cc'+'\\u062c'+'\\u0627'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x5c'+'\\x6e'+'\\x32'+'\\x2e'+'\\x20'+'\\u0645'+'\\u062a'+'\\u063a'+'\\u06cc'+'\\u0631'+'\\x20'+'\\u0645'+'\\u062d'+'\\u06cc'+'\\u0637'+'\\u06cc'+'\\x20'+'\\x43'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u0648'+'\\u0646'+'\\u062f'+'\\x20'+'\\u062f'+'\\u0647'+'\\u06cc'+'\\u062f'+'\\x5c'+'\\x6e'+'\\x33'+'\\x2e'+'\\x20'+'\\u06a9'+'\\u062f'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0648'+'\\u0628'+'\\u0627'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0645'+'\\u0633'+'\\u062a'+'\\u0642'+'\\u0631'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x4e'+'\\x6f'+'\\x74'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u2705'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u060c'+'\\x20'+'\\u0645'+'\\u06cc'+'\\u200c'+'\\u062a'+'\\u0648'+'\\u0627'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0632'+'\\x20'+'\\u0645'+'\\u062f'+'\\u06cc'+'\\u0631'+'\\u06cc'+'\\u062a'+'\\x20'+'\\u062a'+'\\u0646'+'\\u0638'+'\\u06cc'+'\\u0645'+'\\u0627'+'\\u062a'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\u0641'+'\\u0627'+'\\u062f'+'\\u0647'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u26a0\\ufe0f'+'\\x20'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x61'+'\\x74'+'\\x3a'+'\\x20'+'\\x27'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x3a'+'\\x20'+'\\u062e'+'\\u0637'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u0641'+'\\u0631'+'\\u0645'+'\\u062a'+'\\x20'+'\\u067e'+'\\u0627'+'\\u0633'+'\\u062e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x20'+'\\x2d'+'\\x20'+'\\u06a9'+'\\u062f'+'\\x20'+'\\u0648'+'\\u0636'+'\\u0639'+'\\u06cc'+'\\u062a'+'\\x3a'+'\\x20'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x20'+'\\x2d'+'\\x20'+'\\u062e'+'\\u0637'+'\\u0627'+'\\x3a'+'\\x20'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x35'+'\\x30'+'\\x33'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\x4b'+'\\x56'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x4e'+'\\x6f'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x75'+'\\x72'+'\\x65'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6f'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u68c0'+'\\u67e5'+'\\u54cd'+'\\u5e94'+'\\u662f'+'\\u5426'+'\\u5305'+'\\u542b'+'\\x4b'+'\\x56'+'\\u914d'+'\\u7f6e'+'\\u4fe1'+'\\u606f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x6b'+'\\x76'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x43'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x4e'+'\\x6f'+'\\x74'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x61'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42')+('\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x32'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x6f'+'\\x70'+'\\x28'+'\\x29'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x3b'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x68'+'\\x69'+'\\x66'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x61'+'\\x76'+'\\x69'+'\\x67'+'\\x61'+'\\x74'+'\\x6f'+'\\x72'+'\\x2e'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6f'+'\\x6b'+'\\x69'+'\\x65'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x75'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73')+('\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x62'+'\\x72'+'\\x6f'+'\\x77'+'\\x73'+'\\x65'+'\\x72'+'\\x4c'+'\\x61'+'\\x6e'+'\\x67'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x66'+'\\x61'+'\\x2d'+'\\x49'+'\\x52'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7a'+'\\x68'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u26a0\\ufe0f'+'\\x20'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u542f'+'\\u7528'+'\\u6216'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x20'+'\\x2d'+'\\x20'+'\\u9519'+'\\u8bef'+'\\x3a'+'\\x20'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x61'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\u26a0\\ufe0f'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0641'+'\\u0639'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0646'+'\\u06cc'+'\\u0633'+'\\u062a'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u067e'+'\\u06cc'+'\\u06a9'+'\\u0631'+'\\u0628'+'\\u0646'+'\\u062f'+'\\u06cc'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f'+'\\u0647'+'\\x20'+'\\u0627'+'\\u0633'+'\\u062a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\u0628'+'\\u0631'+'\\u0631'+'\\u0633'+'\\u06cc'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\u200c'+'\\u0633'+'\\u0627'+'\\u0632'+'\\u06cc'+'\\x20'+'\\x4b'+'\\x56'+'\\x20'+'\\u0646'+'\\u0627'+'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\x20'+'\\x2d'+'\\x20'+'\\u062e'+'\\u0637'+'\\u0627'+'\\x3a'+'\\x20'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x61'+'\\x6e'+'\\x73'+'\\x6c'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73'+'\\x5b'+'\\x69'+'\\x73'+'\\x46'+'\\x61'+'\\x72'+'\\x73'+'\\x69'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x7a'+'\\x68'+'\\x27'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6b'+'\\x76'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x44'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x43'+'\\x61'+'\\x72'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x2e'+'\\x6b'+'\\x76'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x46'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64')+('\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x43'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x61'+'\\x70'+'\\x69'+'\\x2f'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x61'+'\\x70'+'\\x69'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x35'+'\\x30'+'\\x33'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u65e0'+'\\u6cd5'+'\\u52a0'+'\\u8f7d'+'\\u914d'+'\\u7f6e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6f'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\u52a0'+'\\u8f7d'+'\\u914d'+'\\u7f6e'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8fc7'+'\\u6ee4'+'\\u6389'+'\\u5185'+'\\u90e8'+'\\u5b57'+'\\u6bb5'+'\\x20'+'\\x6b'+'\\x76'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x5b'+'\\x6b'+'\\x65'+'\\x79'+'\\x2c'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x5d'+'\\x20'+'\\x6f'+'\\x66'+'\\x20'+'\\x4f'+'\\x62'+'\\x6a'+'\\x65'+'\\x63'+'\\x74'+'\\x2e'+'\\x65'+'\\x6e'+'\\x74'+'\\x72'+'\\x69'+'\\x65'+'\\x73'+'\\x28')+('\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x6b'+'\\x65'+'\\x79'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6b'+'\\x76'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x5b'+'\\x6b'+'\\x65'+'\\x79'+'\\x5d'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\u5f53'+'\\u524d'+'\\u914d'+'\\u7f6e'+'\\x3a'+'\\x5c'+'\\x6e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x4f'+'\\x62'+'\\x6a'+'\\x65'+'\\x63'+'\\x74'+'\\x2e'+'\\x6b'+'\\x65'+'\\x79'+'\\x73'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x29'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x2b'+'\\x3d'+'\\x20'+'\\x27'+'\\x28'+'\\u6682'+'\\u65e0'+'\\u914d'+'\\u7f6e'+'\\x29'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x5b'+'\\x6b'+'\\x65'+'\\x79'+'\\x2c'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x5d'+'\\x20'+'\\x6f'+'\\x66'+'\\x20'+'\\x4f'+'\\x62'+'\\x6a'+'\\x65'+'\\x63'+'\\x74'+'\\x2e'+'\\x65'+'\\x6e'+'\\x74'+'\\x72'+'\\x69'+'\\x65'+'\\x73'+'\\x28'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x2b'+'\\x3d'+'\\x20'+'\\x6b'+'\\x65'+'\\x79'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x28'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x28'+'\\u672a'+'\\u8bbe'+'\\u7f6e'+'\\x29'+'\\x27'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x5c'+'\\x6e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\u8868'+'\\u5355'+'\\u503c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x77'+'\\x6b'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x76'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x76'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x74'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x78'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x63'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x74'+'\\x70'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x74'+'\\x70'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x63'+'\\x75'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x73'+'\\x63'+'\\x75'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x70'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x70'+'\\x64'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x70'+'\\x69'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x70'+'\\x69'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x67'+'\\x69'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x65'+'\\x67'+'\\x69'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d')+('\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x64'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x70'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x79'+'\\x78'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e')+('\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x73'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x48'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x61'+'\\x70'+'\\x69'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x61'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x72'+'\\x6d'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x71'+'\\x6a'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x64'+'\\x6b'+'\\x62'+'\\x79'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x79'+'\\x78'+'\\x62'+'\\x79'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\u8def'+'\\u5f84'+'\\u7c7b'+'\\u578b'+'\\u663e'+'\\u793a'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2e'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u68c0'+'\\u67e5'+'\\x70'+'\\u53d8'+'\\u91cf'+'\\uff0c'+'\\u5982'+'\\u679c'+'\\u6709'+'\\u503c'+'\\u5219'+'\\u7981'+'\\u7528'+'\\x77'+'\\x6b'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x57'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\u52a0'+'\\u8f7d'+'\\u914d'+'\\u7f6e'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\u8def'+'\\u5f84'+'\\u7c7b'+'\\u578b'+'\\u663e'+'\\u793a'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f')+('\\x6e'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x63'+'\\x70'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2f'+'\\x27'+'\\x29'+'\\x2e'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x70'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x70'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x20'+'\\x3f'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x30'+'\\x5d'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x70'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x63'+'\\x70'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u4f7f'+'\\u7528'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u8def'+'\\u5f84'+'\\x20'+'\\x28'+'\\x64'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u4f7f'+'\\u7528'+'\\u7c7b'+'\\u578b'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x74'+'\\x72'+'\\x6f'+'\\x6e'+'\\x67'+'\\x3e'+'\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u8def'+'\\u5f84'+'\\x20'+'\\x28'+'\\x64'+'\\x29'+'\\x3c'+'\\x2f'+'\\x73'+'\\x74'+'\\x72'+'\\x6f'+'\\x6e'+'\\x67'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u5f53'+'\\u524d'+'\\u8def'+'\\u5f84'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x70'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u8bbf'+'\\u95ee'+'\\u5730'+'\\u5740'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2f'+'\\x27'+'\\x29'+'\\x5b'+'\\x30'+'\\x5d'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2f'+'\\x27'+'\\x29'+'\\x5b'+'\\x32'+'\\x5d'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x70'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x73'+'\\x75'+'\\x62'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\x28'+'\\x75'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c')+('\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u4f7f'+'\\u7528'+'\\u7c7b'+'\\u578b'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x74'+'\\x72'+'\\x6f'+'\\x6e'+'\\x67'+'\\x3e'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x20'+'\\u8def'+'\\u5f84'+'\\x20'+'\\x28'+'\\x75'+'\\x29'+'\\x3c'+'\\x2f'+'\\x73'+'\\x74'+'\\x72'+'\\x6f'+'\\x6e'+'\\x67'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u5f53'+'\\u524d'+'\\u8def'+'\\u5f84'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x28'+'\\x55'+'\\x55'+'\\x49'+'\\x44'+'\\x29'+'\\x27'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x3c'+'\\x64'+'\\x69'+'\\x76'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x74'+'\\x6f'+'\\x70'+'\\x3a'+'\\x20'+'\\x35'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x39'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u8bbf'+'\\u95ee'+'\\u5730'+'\\u5740'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2f'+'\\x73'+'\\x75'+'\\x62'+'\\x27'+'\\x29'+'\\x5b'+'\\x30'+'\\x5d'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x73'+'\\x75'+'\\x62'+'\\x3c'+'\\x2f'+'\\x64'+'\\x69'+'\\x76'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\x77'+'\\x6b'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u7684'+'\\u542f'+'\\u7528'+'\\x2f'+'\\u7981'+'\\u7528'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x57'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x68'+'\\x61'+'\\x73'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x61'+'\\x73'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u6dfb'+'\\u52a0'+'\\u89c6'+'\\u89c9'+'\\u53cd'+'\\u9988'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x68'+'\\x61'+'\\x73'+'\\x43'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x30'+'\\x2e'+'\\x35'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x74'+'\\x2d'+'\\x61'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x77'+'\\x65'+'\\x64'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x35'+'\\x29'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u663e'+'\\u793a'+'\\u63d0'+'\\u793a'+'\\u4fe1'+'\\u606f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6f'+'\\x70'+'\\x61'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x31'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x29'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u9690'+'\\u85cf'+'\\u63d0'+'\\u793a'+'\\u4fe1'+'\\u606f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x48'+'\\x69'+'\\x6e'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x70'+'\\x69'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x61'+'\\x70'+'\\x69')+('\\x2f'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x61'+'\\x70'+'\\x69'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x50'+'\\x4f'+'\\x53'+'\\x54'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73'+'\\x3a'+'\\x20'+'\\x7b'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x27'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3a'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x2e'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x35'+'\\x30'+'\\x33'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u65e0'+'\\u6cd5'+'\\u4fdd'+'\\u5b58'+'\\u914d'+'\\u7f6e'+'\\u3002'+'\\u8bf7'+'\\u5148'+'\\u5728'+'\\x43'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x20'+'\\x57'+'\\x6f'+'\\x72'+'\\x6b'+'\\x65'+'\\x72'+'\\x73'+'\\u4e2d'+'\\u914d'+'\\u7f6e'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u3002'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6f'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5c1d'+'\\u8bd5'+'\\u89e3'+'\\u6790'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x20'+'\\u9519'+'\\u8bef'+'\\u4fe1'+'\\u606f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x2e'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\u4fdd'+'\\u5b58'+'\\u5931'+'\\u8d25'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\u4e0d'+'\\u662f'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\uff0c')+('\\u76f4'+'\\u63a5'+'\\u663e'+'\\u793a'+'\\u6587'+'\\u672c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'+'\\u4fdd'+'\\u5b58'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x43'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\x77'+'\\x6b'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x57'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u4fdd'+'\\u5b58'+'\\u6210'+'\\u529f'+'\\u540e'+'\\u5237'+'\\u65b0'+'\\u9875'+'\\u9762'+'\\u4ee5'+'\\u66f4'+'\\u65b0'+'\\u7cfb'+'\\u7edf'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x72'+'\\x65'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x31'+'\\x35'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'+'\\u4fdd'+'\\u5b58'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x44'+'\\x69'+'\\x76')+('\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x4d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x23'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x23'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x30'+'\\x30'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x33'+'\\x30'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x65'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x72'+'\\x6d'+'\\x28'+'\\x27'+'\\u786e'+'\\u5b9a'+'\\u8981'+'\\u91cd'+'\\u7f6e'+'\\u6240'+'\\u6709'+'\\u914d'+'\\u7f6e'+'\\u5417'+'\\uff1f'+'\\u8fd9'+'\\u5c06'+'\\u6e05'+'\\u7a7a'+'\\u6240'+'\\u6709'+'\\x4b'+'\\x56'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u6062'+'\\u590d'+'\\u4e3a'+'\\u73af'+'\\u5883'+'\\u53d8'+'\\u91cf'+'\\u8bbe'+'\\u7f6e'+'\\u3002'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x61'+'\\x70'+'\\x69'+'\\x2f'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x2c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x50'+'\\x4f'+'\\x53'+'\\x54'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73'+'\\x3a'+'\\x20'+'\\x7b'+'\\x20'+'\\x27'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x27'+'\\x20'+'\\x7d'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3a'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x2e'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79'+'\\x28'+'\\x7b'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x6b'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x71'+'\\x6a'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6b'+'\\x62'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x62'+'\\x79'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x76'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x74'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x70'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x73'+'\\x63'+'\\x75'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x70'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x70'+'\\x69'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x67'+'\\x69'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x35'+'\\x30'+'\\x33'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u65e0'+'\\u6cd5'+'\\u91cd'+'\\u7f6e'+'\\u914d'+'\\u7f6e'+'\\u3002'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6f'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5c1d'+'\\u8bd5'+'\\u89e3'+'\\u6790'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x20'+'\\u9519'+'\\u8bef'+'\\u4fe1'+'\\u606f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x2e'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\u91cd'+'\\u7f6e'+'\\u5931'+'\\u8d25'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\u4e0d'+'\\u662f'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\uff0c'+'\\u76f4'+'\\u63a5'+'\\u663e'+'\\u793a'+'\\u6587'+'\\u672c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'+'\\u91cd'+'\\u7f6e'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\u914d'+'\\u7f6e'+'\\u5df2'+'\\u91cd'+'\\u7f6e'+'\\x27'+'\\x2c'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x43'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\x77'+'\\x6b'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x57'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5237'+'\\u65b0'+'\\u9875'+'\\u9762'+'\\u4ee5'+'\\u66f4'+'\\u65b0'+'\\u7cfb'+'\\u7edf'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63')+('\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x72'+'\\x65'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x2c'+'\\x20'+'\\x31'+'\\x35'+'\\x30'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'+'\\u91cd'+'\\u7f6e'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x45'+'\\x43'+'\\x48'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x45'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x45'+'\\x6c'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x77'+'\\x69'+'\\x6e'+'\\x64'+'\\x6f'+'\\x77'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2e'+'\\x68'+'\\x72'+'\\x65'+'\\x66'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x73'+'\\x75'+'\\x62'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x45'+'\\x6c'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x45'+'\\x43'+'\\x48'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u68c0'+'\\u6d4b'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x3a'+'\\x20'+'\\x27'+'\\x47'+'\\x45'+'\\x54'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73'+'\\x3a'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x41'+'\\x63'+'\\x63'+'\\x65'+'\\x70'+'\\x74'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2f'+'\\x70'+'\\x6c'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x48'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x27'+'\\x58'+'\\x2d'+'\\x45'+'\\x43'+'\\x48'+'\\x2d'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x27'+'\\x58'+'\\x2d'+'\\x45'+'\\x43'+'\\x48'+'\\x2d'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x2d'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x48'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x45'+'\\x4e'+'\\x41'+'\\x42'+'\\x4c'+'\\x45'+'\\x44'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x45'+'\\x6c'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x45'+'\\x43'+'\\x48'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x34'+'\\x34'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u2705'+'\\x20'+'\\u5df2'+'\\u542f'+'\\u7528'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x28'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x20'+'\\x28'+'\\u914d'+'\\u7f6e'+'\\u957f'+'\\u5ea6'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x29'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x45'+'\\x6c'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x45'+'\\x43'+'\\x48'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\u26a0\\ufe0f'+'\\x20'+'\\u672a'+'\\u542f'+'\\u7528'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x45'+'\\x6c'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x45'+'\\x43'+'\\x48'+'\\u72b6'+'\\u6001'+'\\x3a'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x34'+'\\x34'+'\\x34'+'\\x34'+'\\x3b'+'\\x22'+'\\x3e'+'\\u274c'+'\\x20'+'\\u68c0'+'\\u6d4b'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x44'+'\\x4f'+'\\x4d'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x64'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x4d'+'\\x61'+'\\x74'+'\\x72'+'\\x69'+'\\x78'+'\\x52'+'\\x61'+'\\x69'+'\\x6e'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x53'+'\\x79'+'\\x73'+'\\x74'+'\\x65'+'\\x6d'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x4b'+'\\x56'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x45'+'\\x43'+'\\x48'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u5f00'+'\\u542f'+'\\u65f6'+'\\u81ea'+'\\u52a8'+'\\u8054'+'\\u52a8'+'\\u5f00'+'\\u542f'+'\\u4ec5'+'\\x54'+'\\x4c'+'\\x53'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u5f00'+'\\u542f'+'\\u65f6'+'\\uff0c'+'\\u81ea'+'\\u52a8'+'\\u8bbe'+'\\u7f6e'+'\\u4ec5'+'\\x54'+'\\x4c'+'\\x53'+'\\u4e3a'+'\\x20'+'\\x79'+'\\x65'+'\\x73'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u9875'+'\\u9762'+'\\u52a0'+'\\u8f7d'+'\\u65f6'+'\\uff0c'+'\\u5982'+'\\u679c'+'\\x20'+'\\x45'+'\\x43'+'\\x48'+'\\x20'+'\\u5df2'+'\\u52fe'+'\\u9009'+'\\uff0c'+'\\u4e5f'+'\\u81ea'+'\\u52a8'+'\\u8bbe'+'\\u7f6e'+'\\u4ec5'+'\\x54'+'\\x4c'+'\\x53'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x65'+'\\x63'+'\\x68'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u76d1'+'\\u542c'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\u8f93'+'\\u5165'+'\\u6846'+'\\u53d8'+'\\u5316'+'\\uff0c'+'\\u5b9e'+'\\u65f6'+'\\u66f4'+'\\u65b0'+'\\x77'+'\\x6b'+'\\u5730'+'\\u533a'+'\\u9009'+'\\u62e9'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x57'+'\\x6b'+'\\x52'+'\\x65'+'\\x67')+('\\x69'+'\\x6f'+'\\x6e'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u7ed1'+'\\u5b9a'+'\\u8868'+'\\u5355'+'\\u4e8b'+'\\u4ef6'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x73'+'\\x75'+'\\x62'+'\\x6d'+'\\x69'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x2e'+'\\x70'+'\\x72'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x7b'+'\\x20'+'\\x77'+'\\x6b'+'\\x3a'+'\\x20'+'\\x77'+'\\x6b'+'\\x52'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x50'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x50'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x50'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x50'+'\\x72'+'\\x6f'+'\\x74'+'\\x6f'+'\\x63'+'\\x6f'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x2e'+'\\x70'+'\\x72'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x76'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x76'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x74'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x0a'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x70'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x74'+'\\x70'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x76'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x21'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x21'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x27'+'\\u81f3'+'\\u5c11'+'\\u9700'+'\\u8981'+'\\u542f'+'\\u7528'+'\\u4e00'+'\\u4e2a'+'\\u534f'+'\\u8bae'+'\\uff01'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6f'+'\\x74'+'\\x68'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6f')+('\\x74'+'\\x68'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x6f'+'\\x74'+'\\x68'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x74'+'\\x68'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x73'+'\\x75'+'\\x62'+'\\x6d'+'\\x69'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x2e'+'\\x70'+'\\x72'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x20'+'\\x65'+'\\x76'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x76'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x74'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x63'+'\\x68'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x63'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x70'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x74'+'\\x70'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x50'+'\\x61'+'\\x74'+'\\x68'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x48'+'\\x6f'+'\\x6d'+'\\x65'+'\\x70'+'\\x61'+'\\x67'+'\\x65'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x3a')+('\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u786e'+'\\u4fdd'+'\\u81f3'+'\\u5c11'+'\\u9009'+'\\u62e9'+'\\u4e00'+'\\u4e2a'+'\\u534f'+'\\u8bae'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x76'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x21'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x21'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x78'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x27'+'\\u81f3'+'\\u5c11'+'\\u9700'+'\\u8981'+'\\u542f'+'\\u7528'+'\\u4e00'+'\\u4e2a'+'\\u534f'+'\\u8bae'+'\\uff01'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x61'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x61'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x64'+'\\x76'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x46'+'\\x6f'+'\\x72'+'\\x6d'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x73'+'\\x75'+'\\x62'+'\\x6d'+'\\x69'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x65'+'\\x2e'+'\\x70'+'\\x72'+'\\x65'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x44'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x20'+'\\x73'+'\\x63')+('\\x75'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x63'+'\\x75'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x20'+'\\x65'+'\\x70'+'\\x64'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x70'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x70'+'\\x69'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x70'+'\\x69'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x67'+'\\x69'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x65'+'\\x67'+'\\x69'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x65'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x61'+'\\x70'+'\\x69'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x6d'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x65'+'\\x67'+'\\x69'+'\\x6f'+'\\x6e'+'\\x4d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x69'+'\\x6e'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x71'+'\\x6a'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x67'+'\\x72'+'\\x61'+'\\x64'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6b'+'\\x62'+'\\x79'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x62'+'\\x79'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x65'+'\\x72'+'\\x72'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x76'+'\\x34'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x76'+'\\x36'+'\\x45'+'\\x6e'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x4d'+'\\x6f'+'\\x62'+'\\x69'+'\\x6c'+'\\x65'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x55'+'\\x6e'+'\\x69'+'\\x63'+'\\x6f'+'\\x6d'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x73'+'\\x70'+'\\x54'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x6f'+'\\x6d'+'\\x27'+'\\x29'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x79'+'\\x65'+'\\x73'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x5b'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x54'+'\\x6f'+'\\x59'+'\\x78'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x54'+'\\x6f'+'\\x59'+'\\x78'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63')+('\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x65'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x64'+'\\x65'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x44'+'\\x69'+'\\x76'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x44'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x44'+'\\x69'+'\\x76'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x44'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x29'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x29'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x29'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x61')+('\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x29'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u521d'+'\\u59cb'+'\\u5316'+'\\u65f6'+'\\uff0c'+'\\u5982'+'\\u679c'+'\\u9ed8'+'\\u8ba4'+'\\u662f'+'\\u9690'+'\\u85cf'+'\\u7684'+'\\uff0c'+'\\u5219'+'\\u7981'+'\\u7528'+'\\u8f93'+'\\u5165'+'\\u6846'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x29'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64')+('\\x73'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x64'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5f53'+'\\u9690'+'\\u85cf'+'\\u65f6'+'\\u7981'+'\\u7528'+'\\u8f93'+'\\u5165'+'\\u6846'+'\\uff0c'+'\\u907f'+'\\u514d'+'\\u8868'+'\\u5355'+'\\u9a8c'+'\\u8bc1'+'\\u9519'+'\\u8bef'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x43'+'\\x46'+'\\x5f'+'\\x43'+'\\x49'+'\\x44'+'\\x52'+'\\x5f'+'\\x4c'+'\\x49'+'\\x53'+'\\x54'+'\\x20'+'\\x3d'+'\\x20'+'\\x5b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x31'+'\\x37'+'\\x33'+'\\x2e'+'\\x32'+'\\x34'+'\\x35'+'\\x2e'+'\\x34'+'\\x38'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x30'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x33'+'\\x2e'+'\\x32'+'\\x31'+'\\x2e'+'\\x32'+'\\x34'+'\\x34'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x32'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x33'+'\\x2e'+'\\x32'+'\\x32'+'\\x2e'+'\\x32'+'\\x30'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x32'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x33'+'\\x2e'+'\\x33'+'\\x31'+'\\x2e'+'\\x34'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x32'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x31'+'\\x34'+'\\x31'+'\\x2e'+'\\x31'+'\\x30'+'\\x31'+'\\x2e'+'\\x36'+'\\x34'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x38'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x38'+'\\x2e'+'\\x31'+'\\x36'+'\\x32'+'\\x2e'+'\\x31'+'\\x39'+'\\x32'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x38'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x39'+'\\x30'+'\\x2e'+'\\x39'+'\\x33'+'\\x2e'+'\\x32'+'\\x34'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x30'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x38'+'\\x38'+'\\x2e'+'\\x31'+'\\x31'+'\\x34'+'\\x2e'+'\\x39'+'\\x36'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x30'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x31'+'\\x39'+'\\x37'+'\\x2e'+'\\x32'+'\\x33'+'\\x34'+'\\x2e'+'\\x32'+'\\x34'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x32'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x39'+'\\x38'+'\\x2e'+'\\x34'+'\\x31'+'\\x2e'+'\\x31'+'\\x32'+'\\x38'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x37'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x36'+'\\x32'+'\\x2e'+'\\x31'+'\\x35'+'\\x38'+'\\x2e'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x35'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x34'+'\\x2e'+'\\x31'+'\\x36'+'\\x2e'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x33'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x31'+'\\x30'+'\\x34'+'\\x2e'+'\\x32'+'\\x34'+'\\x2e'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x34'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x37'+'\\x32'+'\\x2e'+'\\x36'+'\\x34'+'\\x2e'+'\\x30'+'\\x2e'+'\\x30'+'\\x2f'+'\\x31'+'\\x33'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x31'+'\\x33'+'\\x31'+'\\x2e'+'\\x30'+'\\x2e'+'\\x37'+'\\x32'+'\\x2e'+'\\x30'+'\\x2f'+'\\x32'+'\\x32'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x46'+'\\x72'+'\\x6f'+'\\x6d'+'\\x43'+'\\x49'+'\\x44'+'\\x52'+'\\x28'+'\\x63'+'\\x69'+'\\x64'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x5b'+'\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x49'+'\\x50'+'\\x2c'+'\\x20'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x69'+'\\x78'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x5d'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x64'+'\\x72'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2f'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x69'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x69'+'\\x78'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x42'+'\\x69'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x33'+'\\x32'+'\\x20'+'\\x2d'+'\\x20'+'\\x70'+'\\x72'+'\\x65'+'\\x66'+'\\x69'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x70'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x62'+'\\x61'+'\\x73'+'\\x65'+'\\x49'+'\\x50'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2e'+'\\x27'+'\\x29'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x70'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x70'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x70'+'\\x49'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x69'+'\\x70'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x30'+'\\x5d'+'\\x20'+'\\x3c'+'\\x3c'+'\\x20'+'\\x32'+'\\x34'+'\\x29'+'\\x20'+'\\x7c'+'\\x20'+'\\x28'+'\\x69'+'\\x70'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x31'+'\\x5d'+'\\x20'+'\\x3c'+'\\x3c'+'\\x20'+'\\x31'+'\\x36'+'\\x29'+'\\x20'+'\\x7c'+'\\x20'+'\\x28'+'\\x69'+'\\x70'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x32'+'\\x5d'+'\\x20'+'\\x3c'+'\\x3c'+'\\x20'+'\\x38'+'\\x29'+'\\x20'+'\\x7c'+'\\x20'+'\\x69')+('\\x70'+'\\x50'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x33'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x4f'+'\\x66'+'\\x66'+'\\x73'+'\\x65'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x70'+'\\x6f'+'\\x77'+'\\x28'+'\\x32'+'\\x2c'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x42'+'\\x69'+'\\x74'+'\\x73'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6d'+'\\x61'+'\\x73'+'\\x6b'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x30'+'\\x78'+'\\x46'+'\\x46'+'\\x46'+'\\x46'+'\\x46'+'\\x46'+'\\x46'+'\\x46'+'\\x20'+'\\x3c'+'\\x3c'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x42'+'\\x69'+'\\x74'+'\\x73'+'\\x29'+'\\x20'+'\\x3e'+'\\x3e'+'\\x3e'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x28'+'\\x28'+'\\x69'+'\\x70'+'\\x49'+'\\x6e'+'\\x74'+'\\x20'+'\\x26'+'\\x20'+'\\x6d'+'\\x61'+'\\x73'+'\\x6b'+'\\x29'+'\\x20'+'\\x3e'+'\\x3e'+'\\x3e'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x4f'+'\\x66'+'\\x66'+'\\x73'+'\\x65'+'\\x74'+'\\x29'+'\\x20'+'\\x3e'+'\\x3e'+'\\x3e'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x5b'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x20'+'\\x3e'+'\\x3e'+'\\x3e'+'\\x20'+'\\x32'+'\\x34'+'\\x29'+'\\x20'+'\\x26'+'\\x20'+'\\x30'+'\\x78'+'\\x46'+'\\x46'+'\\x2c'+'\\x20'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x20'+'\\x3e'+'\\x3e'+'\\x3e'+'\\x20'+'\\x31'+'\\x36'+'\\x29'+'\\x20'+'\\x26'+'\\x20'+'\\x30'+'\\x78'+'\\x46'+'\\x46'+'\\x2c'+'\\x20'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x20'+'\\x3e'+'\\x3e'+'\\x3e'+'\\x20'+'\\x38'+'\\x29'+'\\x20'+'\\x26'+'\\x20'+'\\x30'+'\\x78'+'\\x46'+'\\x46'+'\\x2c'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x20'+'\\x26'+'\\x20'+'\\x30'+'\\x78'+'\\x46'+'\\x46'+'\\x5d'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x69'+'\\x6e'+'\\x28'+'\\x27'+'\\x2e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x73'+'\\x28'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2c'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x70'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x5b'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x69'+'\\x20'+'\\x3c'+'\\x20'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x3b'+'\\x20'+'\\x69'+'\\x2b'+'\\x2b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x64'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x43'+'\\x46'+'\\x5f'+'\\x43'+'\\x49'+'\\x44'+'\\x52'+'\\x5f'+'\\x4c'+'\\x49'+'\\x53'+'\\x54'+'\\x5b'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x66'+'\\x6c'+'\\x6f'+'\\x6f'+'\\x72'+'\\x28'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x28'+'\\x29'+'\\x20'+'\\x2a'+'\\x20'+'\\x43'+'\\x46'+'\\x5f'+'\\x43'+'\\x49'+'\\x44'+'\\x52'+'\\x5f'+'\\x4c'+'\\x49'+'\\x53'+'\\x54'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x29'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x46'+'\\x72'+'\\x6f'+'\\x6d'+'\\x43'+'\\x49'+'\\x44'+'\\x52'+'\\x28'+'\\x63'+'\\x69'+'\\x64'+'\\x72'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x70'+'\\x73'+'\\x2e'+'\\x70'+'\\x75'+'\\x73'+'\\x68'+'\\x28'+'\\x69'+'\\x70'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3a'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x69'+'\\x70'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x53'+'\\x74'+'\\x6f'+'\\x72'+'\\x61'+'\\x67'+'\\x65'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x28'+'\\x27'+'\\x69'+'\\x70'+'\\x53'+'\\x6f'+'\\x75'+'\\x72'+'\\x63'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x75'+'\\x72'+'\\x6c'+'\\x46'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5f53'+'\\u9690'+'\\u85cf'+'\\u65f6'+'\\u7981'+'\\u7528'+'\\u8f93'+'\\u5165'+'\\u6846'+'\\uff0c'+'\\u907f'+'\\u514d'+'\\u8868'+'\\u5355'+'\\u9a8c'+'\\u8bc1'+'\\u9519'+'\\u8bef'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x66'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x43'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x32'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e')+('\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x34'+'\\x34'+'\\x33'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x70'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x67'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x46'+'\\x52'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x73'+'\\x28'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2c'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x70'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x69'+'\\x6e'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'))+(RK?'\\u062a'+'\\u0648'+'\\u0644'+'\\u06cc'+'\\u062f'+'\\x20'+'\\u0634'+'\\u062f':'\\u5df2'+'\\u751f'+'\\u6210')+('\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20')+(RK?'\\x49'+'\\x50'+'\\x20'+'\\u062a'+'\\u0635'+'\\u0627'+'\\u062f'+'\\u0641'+'\\u06cc'+'\\x20'+'\\x43'+'\\x46':'\\u4e2a'+'\\x43'+'\\x46'+'\\u968f'+'\\u673a'+'\\x49'+'\\x50')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x52'+'\\x4c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x65'+'\\x72'+'\\x74'+'\\x28'+'\\x27')+(RK?'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\x20'+'\\u0631'+'\\u0627'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f':'\\u8bf7'+'\\u8f93'+'\\u5165'+'\\x55'+'\\x52'+'\\x4c')+('\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27')+(RK?'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x2e'+'\\x2e'+'\\x2e':'\\u83b7'+'\\u53d6'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u652f'+'\\u6301'+'\\u591a'+'\\u4e2a'+'\\x20'+'\\x55'+'\\x52'+'\\x4c'+'\\uff08'+'\\u9017'+'\\u53f7'+'\\u5206'+'\\u9694'+'\\uff09'+'\\u4ee5'+'\\u53ca'+'\\u8fd4'+'\\u56de'+'\\u5185'+'\\u5bb9'+'\\u4e2d'+'\\u9017'+'\\u53f7'+'\\u5206'+'\\u9694'+'\\u7684'+'\\u591a'+'\\u4e2a'+'\\x20'+'\\x49'+'\\x50'+'\\x2f'+'\\u8282'+'\\u70b9'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x41'+'\\x72'+'\\x72'+'\\x61'+'\\x79'+'\\x2e'+'\\x66'+'\\x72'+'\\x6f'+'\\x6d'+'\\x28'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x53'+'\\x65'+'\\x74'+'\\x28'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x55'+'\\x72'+'\\x6c'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x75'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x75'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x29'+'\\x2e'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x75'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x75'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x5b'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x75'+'\\x20'+'\\x6f'+'\\x66'+'\\x20'+'\\x75'+'\\x72'+'\\x6c'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x75'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x6f'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x6f'+'\\x77'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x28'+'\\x27'+'\\x48'+'\\x54'+'\\x54'+'\\x50'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20'+'\\x40'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x75'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5148'+'\\u6309'+'\\u884c'+'\\u5206'+'\\u5272'+'\\uff0c'+'\\u518d'+'\\u5728'+'\\u6bcf'+'\\u884c'+'\\u5185'+'\\u6309'+'\\u9017'+'\\u53f7'+'\\u5206'+'\\u5272'+'\\uff0c'+'\\u517c'+'\\u5bb9'+'\\u201c'+'\\u591a'+'\\u884c'+'\\x20'+'\\x2b'+'\\x20'+'\\u9017'+'\\u53f7'+'\\u5206'+'\\u9694'+'\\u201d'+'\\u4e24'+'\\u79cd'+'\\u683c'+'\\u5f0f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x65'+'\\x72'+'\\x55'+'\\x72'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x2f'+'\\x5c'+'\\x72'+'\\x3f'+'\\x5c'+'\\x6e'+'\\x2f'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x6c'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x6c'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x6c'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x6c'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x21'+'\\x6c'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68'+'\\x28'+'\\x27'+'\\x23'+'\\x27'+'\\x29'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x66'+'\\x6c'+'\\x61'+'\\x74'+'\\x4d'+'\\x61'+'\\x70'+'\\x28'+'\\x6c'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x6c'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x70'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x70'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x29'+'\\x2e'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x70'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x70'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x70'+'\\x75'+'\\x73'+'\\x68'+'\\x28'+'\\x2e'+'\\x2e'+'\\x2e'+'\\x70'+'\\x65'+'\\x72'+'\\x55'+'\\x72'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x61'+'\\x6c'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x69'+'\\x6e'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x75'+'\\x61'+'\\x6c'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'))+(RK?'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x20'+'\\u0634'+'\\u062f':'\\u5df2'+'\\u83b7'+'\\u53d6')+('\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20')+(RK?'\\x49'+'\\x50':'\\u4e2a'+'\\x49'+'\\x50')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u062f'+'\\u0627'+'\\u062f'+'\\u0647'+'\\u200c'+'\\u0627'+'\\u06cc'+'\\x20'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x20'+'\\u0646'+'\\u0634'+'\\u062f':'\\u672a'+'\\u83b7'+'\\u53d6'+'\\u5230'+'\\u6570'+'\\u636e')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u062e'+'\\u0637'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a':'\\u83b7'+'\\u53d6'+'\\u5931'+'\\u8d25')+('\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x49'+'\\x50'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\u2b07'+'\\x20')+(RK?'\\u062f'+'\\u0631'+'\\u06cc'+'\\u0627'+'\\u0641'+'\\u062a'+'\\x20'+'\\x49'+'\\x50':'\\u83b7'+'\\u53d6'+'\\x49'+'\\x50')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x46'+'\\x69'+'\\x65'+'\\x6c'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x46'+'\\x69'+'\\x65'+'\\x6c'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x46'+'\\x69'+'\\x65'+'\\x6c'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x54'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x46'+'\\x69'+'\\x65'+'\\x6c'+'\\x64'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x46'+'\\x69'+'\\x65'+'\\x6c'+'\\x64'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x34'+'\\x34'+'\\x33'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x46'+'\\x69'+'\\x65'+'\\x6c'+'\\x64'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x35'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\x49'+'\\x50'+'\\x20'+'\\u06cc'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0627'+'\\u0645'+'\\u0646'+'\\u0647'+'\\x20'+'\\u0648'+'\\u0627'+'\\u0631'+'\\u062f'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f':'\\u8bf7'+'\\u8f93'+'\\u5165'+'\\x49'+'\\x50'+'\\u6216'+'\\u57df'+'\\u540d')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x74'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x74'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x29'+'\\x2e'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x74'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x44'+'\\x69'+'\\x76'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x5b'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x6f'+'\\x74'+'\\x61'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x54'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x65'+'\\x66'+'\\x61'+'\\x75'+'\\x6c'+'\\x74'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x23'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x23'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x31'+'\\x5d'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x30'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x3a'+'\\x27'+'\\x29'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x21'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68'+'\\x28'+'\\x27'+'\\x5b'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66'+'\\x28'+'\\x27'+'\\x3a'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x73'+'\\x69'+'\\x62'+'\\x6c'+'\\x65'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x2f'+'\\x5e'+'\\x5b'+'\\x30'+'\\x2d'+'\\x39'+'\\x5d'+'\\x2b'+'\\x24'+'\\x2f'+'\\x2e'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x28'+'\\x70'+'\\x6f'+'\\x73'+'\\x73'+'\\x69'+'\\x62'+'\\x6c'+'\\x65'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x6f'+'\\x73'+'\\x73'+'\\x69'+'\\x62'+'\\x6c'+'\\x65'+'\\x50'+'\\x6f'+'\\x72'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x6e'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'+'\\x28'+'\\x27'+'\\x5d'+'\\x3a'+'\\x27'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x5d'+'\\x3a'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x30'+'\\x5d'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x5d'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x31'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x7b'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2c'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x2c'+'\\x20'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x72'+'\\x65'+'\\x6e'+'\\x64'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x2c'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x75'+'\\x6c'+'\\x64'+'\\x53'+'\\x68'+'\\x6f'+'\\x77'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u53ea'+'\\u5c55'+'\\u793a'+'\\u5728'+'\\u7ebf'+'\\u4f18'+'\\u9009'+'\\u6210'+'\\u529f'+'\\u7684'+'\\u7ed3'+'\\u679c'+'\\uff0c'+'\\u5931'+'\\u8d25'+'\\x2f'+'\\u8d85'+'\\u65f6'+'\\u7684'+'\\u4e0d'+'\\u518d'+'\\u663e'+'\\u793a'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x64'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x73'+'\\x73'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x62'+'\\x6f'+'\\x74'+'\\x74'+'\\x6f'+'\\x6d'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x33'+'\\x33'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x67'+'\\x61'+'\\x70'+'\\x3a'+'\\x20'+'\\x31'+'\\x30'+'\\x70'+'\\x78'+'\\x3b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e')+('\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x73'+'\\x68'+'\\x6f'+'\\x75'+'\\x6c'+'\\x64'+'\\x53'+'\\x68'+'\\x6f'+'\\x77'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x73'+'\\x73'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x66'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x64'+'\\x69'+'\\x76'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x66'+'\\x6f'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x73'+'\\x73'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3a'+'\\x20'+'\\x31'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x66'+'\\x61'+'\\x6d'+'\\x69'+'\\x6c'+'\\x79'+'\\x3a'+'\\x20'+'\\x6d'+'\\x6f'+'\\x6e'+'\\x6f'+'\\x73'+'\\x70'+'\\x61'+'\\x63'+'\\x65'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x31'+'\\x33'+'\\x70'+'\\x78'+'\\x3b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3f'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x44'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74')+('\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x66'+'\\x66'+'\\x3b'+'\\x22'+'\\x3e'+'\\x5b'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x5d'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x6e'+'\\x66'+'\\x6f'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3a'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x44'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20'+'\\x3c'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x66'+'\\x66'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x22'+'\\x3e'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x6d'+'\\x73'+'\\x3c'+'\\x2f'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x3e'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x69'+'\\x6e'+'\\x66'+'\\x6f'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x4f'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2e'+'\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x7b'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2c'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x2c'+'\\x20'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x7d'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x54'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x28'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2c'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x20'+'\\x3f'+'\\x20'+'\\x28'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x28'+'\\x27'+'\\x43'+'\\x46'+'\\x2d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x29'+'\\x20'+'\\x3a'+'\\x20'+'\\x28'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x69'+'\\x20'+'\\x3c'+'\\x20'+'\\x74'+'\\x6f'+'\\x74'+'\\x61'+'\\x6c'+'\\x3b'+'\\x20'+'\\x69'+'\\x20'+'\\x2b'+'\\x3d'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2e'+'\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x62'+'\\x72'+'\\x65'+'\\x61'+'\\x6b'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x62'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x61'+'\\x72'+'\\x67'+'\\x65'+'\\x74'+'\\x73'+'\\x2e'+'\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'+'\\x28'+'\\x69'+'\\x2c'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x6d'+'\\x69'+'\\x6e'+'\\x28'+'\\x69'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2c'+'\\x20'+'\\x74'+'\\x6f'+'\\x74'+'\\x61'+'\\x6c'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'))+(RK?'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u062a'+'\\u0633'+'\\u062a':'\\u6d4b'+'\\u8bd5'+'\\u4e2d')+('\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x28'+'\\x69'+'\\x20'+'\\x2b'+'\\x20'+'\\x31'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2d'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x4d'+'\\x61'+'\\x74'+'\\x68'+'\\x2e'+'\\x6d'+'\\x69'+'\\x6e'+'\\x28'+'\\x69'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2c'+'\\x20'+'\\x74'+'\\x6f'+'\\x74'+'\\x61'+'\\x6c'+'\\x29'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x6f'+'\\x74'+'\\x61'+'\\x6c'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20'+'\\x28')+(RK?'\\u0631'+'\\u0634'+'\\u062a'+'\\u0647'+'\\u200c'+'\\u0647'+'\\u0627':'\\u7ebf'+'\\u7a0b')+('\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x68'+'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x29'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x50'+'\\x72'+'\\x6f'+'\\x6d'+'\\x69'+'\\x73'+'\\x65'+'\\x2e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x28'+'\\x62'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x74'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x4f'+'\\x6e'+'\\x65'+'\\x28'+'\\x74'+'\\x29'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x6f'+'\\x66'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x2e'+'\\x70'+'\\x75'+'\\x73'+'\\x68'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x6e'+'\\x64'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2c'+'\\x20'+'\\x69'+'\\x64'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x74'+'\\x65'+'\\x64'+'\\x2b'+'\\x2b'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27')+(RK?'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\u06a9'+'\\u0627'+'\\u0645'+'\\u0644'+'\\x20'+'\\u0634'+'\\u062f':'\\u6d4b'+'\\u8bd5'+'\\u5b8c'+'\\u6210')+('\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6d'+'\\x70'+'\\x6c'+'\\x65'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x6f'+'\\x74'+'\\x61'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u66f4'+'\\u65b0'+'\\u57ce'+'\\u5e02'+'\\u9009'+'\\u62e9'+'\\u5668'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x74'+'\\x6f'+'\\x70'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27')+(RK?'\\u062a'+'\\u0633'+'\\u062a'+'\\x20'+'\\u0645'+'\\u062a'+'\\u0648'+'\\u0642'+'\\u0641'+'\\x20'+'\\u0634'+'\\u062f':'\\u6d4b'+'\\u8bd5'+'\\u5df2'+'\\u505c'+'\\u6b62')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x3a'+'\\x6e'+'\\x6f'+'\\x74'+'\\x28'+'\\x3a'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x29'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x63'+'\\x62'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x65'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x64'+'\\x65'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x41'+'\\x6c'+'\\x6c'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x63'+'\\x62'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u83b7'+'\\u53d6'+'\\u9009'+'\\u4e2d'+'\\u9879'+'\\u7684'+'\\u901a'+'\\u7528'+'\\u51fd'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x3a'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27'))+(RK?'\\u0644'+'\\u0637'+'\\u0641'+'\\u0627'+'\\x20'+'\\u062d'+'\\u062f'+'\\u0627'+'\\u0642'+'\\u0644'+'\\x20'+'\\u06cc'+'\\u06a9'+'\\x20'+'\\u0645'+'\\u0648'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0627'+'\\u0646'+'\\u062a'+'\\u062e'+'\\u0627'+'\\u0628'+'\\x20'+'\\u06a9'+'\\u0646'+'\\u06cc'+'\\u062f':'\\u8bf7'+'\\u81f3'+'\\u5c11'+'\\u9009'+'\\u62e9'+'\\u4e00'+'\\u9879')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x5b'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x64'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x63'+'\\x62'+'\\x2e'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x5b'+'\\x69'+'\\x64'+'\\x78'+'\\x5d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3f'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x20'+'\\x3a'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x64'+'\\x65'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x53'+'\\x74'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3a'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x23'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x70'+'\\x75'+'\\x73'+'\\x68'+'\\x28'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x53'+'\\x74'+'\\x72'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8986'+'\\u76d6'+'\\u6dfb'+'\\u52a0'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x79'+'\\x78'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x69'+'\\x6e'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'))+(RK?'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x2e'+'\\x2e'+'\\x2e':'\\u4fdd'+'\\u5b58'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x3a'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\u06cc'+'\\u062a'+'\\u200c'+'\\u0622'+'\\u0645'+'\\u06cc'+'\\u0632'+'\\x20'+'\\u0628'+'\\u0648'+'\\u062f':'\\u5df2'+'\\u8986'+'\\u76d6')+('\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20')+(RK?'\\u0645'+'\\u0648'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0648'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0634'+'\\u062f':'\\u9879'+'\\u5e76'+'\\u5df2'+'\\u4fdd'+'\\u5b58')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u062e'+'\\u0637'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647':'\\u4fdd'+'\\u5b58'+'\\u5931'+'\\u8d25')+('\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27')+(RK?'\\u8986'+'\\u76d6'+'\\u6dfb'+'\\u52a0':'\\u8986'+'\\u76d6'+'\\u6dfb'+'\\u52a0')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u8ffd'+'\\u52a0'+'\\u6dfb'+'\\u52a0'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x6c'+'\\x69'+'\\x63'+'\\x6b'+'\\x27'+'\\x2c'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x79'+'\\x78'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x79'+'\\x78'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2e'+'\\x74'+'\\x72'+'\\x69'+'\\x6d'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x69'+'\\x6e'+'\\x28'+'\\x27'+'\\x2c'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3f'+'\\x20'+'\\x28'+'\\x63'+'\\x75'+'\\x72'+'\\x72'+'\\x65'+'\\x6e'+'\\x74'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2c'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x29'+'\\x20'+'\\x3a'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x49'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27')+(RK?'\\u062f'+'\\u0631'+'\\x20'+'\\u062d'+'\\u0627'+'\\u0644'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x2e'+'\\x2e'+'\\x2e':'\\u4fdd'+'\\u5b58'+'\\u4e2d'+'\\x2e'+'\\x2e'+'\\x2e')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x49'+'\\x50'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x3a'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x56'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x3a'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x73'+'\\x6f'+'\\x63'+'\\x6b'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x27'+'\\x29'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x73'+'\\x61'+'\\x76'+'\\x65'+'\\x43'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x28'+'\\x63'+'\\x6f'+'\\x6e'+'\\x66'+'\\x69'+'\\x67'+'\\x44'+'\\x61'+'\\x74'+'\\x61'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u0645'+'\\u0648'+'\\u0641'+'\\u0642'+'\\u06cc'+'\\u062a'+'\\u200c'+'\\u0622'+'\\u0645'+'\\u06cc'+'\\u0632'+'\\x20'+'\\u0628'+'\\u0648'+'\\u062f':'\\u5df2'+'\\u8ffd'+'\\u52a0')+('\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20')+(RK?'\\u0645'+'\\u0648'+'\\u0631'+'\\u062f'+'\\x20'+'\\u0648'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647'+'\\x20'+'\\u0634'+'\\u062f':'\\u9879'+'\\u5e76'+'\\u5df2'+'\\u4fdd'+'\\u5b58')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x77'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x28'+'\\x27')+(RK?'\\u062e'+'\\u0637'+'\\u0627'+'\\x20'+'\\u062f'+'\\u0631'+'\\x20'+'\\u0630'+'\\u062e'+'\\u06cc'+'\\u0631'+'\\u0647':'\\u4fdd'+'\\u5b58'+'\\u5931'+'\\u8d25')+('\\x3a'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x2c'+'\\x20'+'\\x27'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6f'+'\\x76'+'\\x65'+'\\x72'+'\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x42'+'\\x74'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27')+(RK?'\\u8ffd'+'\\u52a0'+'\\u6dfb'+'\\u52a0':'\\u8ffd'+'\\u52a0'+'\\u6dfb'+'\\u52a0')+('\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x69'+'\\x70'+'\\x54'+'\\x6f'+'\\x48'+'\\x65'+'\\x78'+'\\x28'+'\\x69'+'\\x70'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x70'+'\\x2e'+'\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74'+'\\x28'+'\\x27'+'\\x2e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x21'+'\\x3d'+'\\x3d'+'\\x20'+'\\x34'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x68'+'\\x65'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x20'+'\\x28'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x69'+'\\x20'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x20'+'\\x69'+'\\x20'+'\\x3c'+'\\x20'+'\\x34'+'\\x3b'+'\\x20'+'\\x69'+'\\x2b'+'\\x2b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x75'+'\\x6d'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x70'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x5b'+'\\x69'+'\\x5d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x69'+'\\x73'+'\\x4e'+'\\x61'+'\\x4e'+'\\x28'+'\\x6e'+'\\x75'+'\\x6d'+'\\x29'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x75'+'\\x6d'+'\\x20'+'\\x3c'+'\\x20'+'\\x30'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x75'+'\\x6d'+'\\x20'+'\\x3e'+'\\x20'+'\\x32'+'\\x35'+'\\x35'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x6e'+'\\x75'+'\\x6c'+'\\x6c'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x68'+'\\x65'+'\\x78'+'\\x20'+'\\x2b'+'\\x3d'+'\\x20'+'\\x6e'+'\\x75'+'\\x6d'+'\\x2e'+'\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x31'+'\\x36'+'\\x29'+'\\x2e'+'\\x70'+'\\x61'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x28'+'\\x32'+'\\x2c'+'\\x20'+'\\x27'+'\\x30'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x68'+'\\x65'+'\\x78'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4d'+'\\x61'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x53'+'\\x4a'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5723'+'\\u4f55'+'\\u585e'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x41'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u6d1b'+'\\u6749'+'\\u77f6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x45'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u897f'+'\\u96c5'+'\\u56fe'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x46'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u65e7'+'\\u91d1'+'\\u5c71'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x46'+'\\x57'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u8fbe'+'\\u62c9'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4f'+'\\x52'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u829d'+'\\u52a0'+'\\u54e5'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x49'+'\\x41'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u534e'+'\\u76db'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x54'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u4e9a'+'\\u7279'+'\\u5170'+'\\u5927'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x49'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u8fc8'+'\\u963f'+'\\u5bc6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x45'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u4e39'+'\\u4f5b'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x50'+'\\x48'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u51e4'+'\\u51f0'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x4f'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u6ce2'+'\\u58eb'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x45'+'\\x57'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u7ebd'+'\\u74e6'+'\\u514b'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4a'+'\\x46'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u7ebd'+'\\u7ea6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x41'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u62c9'+'\\u65af'+'\\u7ef4'+'\\u52a0'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x53'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u660e'+'\\u5c3c'+'\\u963f'+'\\u6ce2'+'\\u5229'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x54'+'\\x57'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5e95'+'\\u7279'+'\\u5f8b'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x48'+'\\x4c'+'\\x27'+('\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u8d39'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4c'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u590f'+'\\u6d1b'+'\\u7279'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4c'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u76d0'+'\\u6e56'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x50'+'\\x44'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u6ce2'+'\\u7279'+'\\u5170'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x41'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5723'+'\\u5730'+'\\u4e9a'+'\\u54e5'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x50'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5766'+'\\u5e15'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x49'+'\\x41'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u4f11'+'\\u65af'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x43'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5965'+'\\u5170'+'\\u591a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x41'+'\\x55'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5965'+'\\u65af'+'\\u6c40'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x4e'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u7eb3'+'\\u4ec0'+'\\u7ef4'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x52'+'\\x44'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u7f57'+'\\u5229'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x49'+'\\x4e'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5370'+'\\u7b2c'+'\\u5b89'+'\\u7eb3'+'\\u6ce2'+'\\u5229'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4d'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u54e5'+'\\u4f26'+'\\u5e03'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x43'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u582a'+'\\u8428'+'\\u65af'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x4d'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5965'+'\\u9a6c'+'\\u54c8'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x42'+'\\x51'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u963f'+'\\u5c14'+'\\u4f2f'+'\\u514b'+'\\u57fa'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x4b'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u4fc4'+'\\u514b'+'\\u62c9'+'\\u8377'+'\\u9a6c'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x45'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5b5f'+'\\u83f2'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4a'+'\\x41'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u6770'+'\\u514b'+'\\u900a'+'\\u7ef4'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x52'+'\\x49'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u91cc'+'\\u58eb'+'\\u6ee1'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x55'+'\\x46'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5e03'+'\\u6cd5'+'\\u7f57'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x49'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5339'+'\\u5179'+'\\u5821'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4c'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u514b'+'\\u5229'+'\\u592b'+'\\u5170'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x43'+'\\x56'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u8f9b'+'\\u8f9b'+'\\u90a3'+'\\u63d0'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x4b'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5bc6'+'\\u5c14'+'\\u6c83'+'\\u57fa'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5723'+'\\u8def'+'\\u6613'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x41'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u5723'+'\\u5b89'+'\\u4e1c'+'\\u5c3c'+'\\u5965'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x4e'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x98)+'\\x20'+'\\u6a80'+'\\u9999'+'\\u5c71'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x41'+'\\x4e'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5b89'+'\\u514b'+'\\u96f7'+'\\u5947'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4d'+'\\x46'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u8428'+'\\u514b'+'\\u62c9'+'\\u95e8'+'\\u6258'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x4e'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5b89'+'\\u5927'+'\\u7565'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x41'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x98)+'\\x20'+'\\u5965'+'\\u514b'+'\\u5170'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x48'+'\\x4b'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb5)+'\\x20'+'\\u9999'+'\\u6e2f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x50'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb0)+'\\x20'+'\\u53f0'+'\\u5317'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x53'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb0)+'\\x20'+'\\u53f0'+'\\u5317'+'\\u677e'+'\\u5c71'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x48'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb0)+'\\x20'+'\\u9ad8'+'\\u96c4'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4e'+'\\x52'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x88)+'\\x20'+'\\u4e1c'+'\\u4eac'+'\\u6210'+'\\u7530'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x4e'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x88)+'\\x20'+'\\u4e1c'+'\\u4eac'+'\\u7fbd'+'\\u7530'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x49'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x88)+'\\x20'+'\\u5927'+'\\u962a'+'\\u5173'+'\\u897f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x49'+'\\x54'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x88)+'\\x20'+'\\u5927'+'\\u962a'+'\\u4f0a'+'\\u4e39'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x47'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x88)+'\\x20'+'\\u540d'+'\\u53e4'+'\\u5c4b'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x46'+'\\x55'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x88)+'\\x20'+'\\u798f'+'\\u5188'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x54'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x88)+'\\x20'+'\\u672d'+'\\u5e4c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x4b'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x88)+'\\x20'+'\\u51b2'+'\\u7ef3'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x49'+'\\x43'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb6)+'\\x20'+'\\u9996'+'\\u5c14'+'\\u4ec1'+'\\u5ddd'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x4d'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb6)+'\\x20'+'\\u9996'+'\\u5c14'+'\\u91d1'+'\\u6d66'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x55'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb6)+'\\x20'+'\\u91dc'+'\\u5c71'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x53'+'\\x49'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe5)+'\\x20'+'\\u65b0'+'\\u52a0'+'\\u5761')+('\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x4b'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x79)+'\\x20'+'\\u66fc'+'\\u8c37'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x4d'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x79)+'\\x20'+'\\u66fc'+'\\u8c37'+'\\u5eca'+'\\u66fc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x55'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x95)+'\\x20'+'\\u5409'+'\\u9686'+'\\u5761'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x47'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb2)+'\\x20'+'\\u96c5'+'\\u52a0'+'\\u8fbe'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x4e'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xcf)+'\\x20'+'\\u9a6c'+'\\u5c3c'+'\\u62c9'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x45'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xcf)+'\\x20'+'\\u5bbf'+'\\u52a1'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x41'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xab)+'\\x20'+'\\u6cb3'+'\\u5185'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x47'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xab)+'\\x20'+'\\u80e1'+'\\u5fd7'+'\\u660e'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x41'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xab)+'\\x20'+'\\u5c98'+'\\u6e2f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x52'+'\\x47'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc0)+'\\x20'+'\\u4ef0'+'\\u5149'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x4e'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe8)+'\\x20'+'\\u91d1'+'\\u8fb9'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x52'+'\\x45'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe8)+'\\x20'+'\\u66b9'+'\\u7c92'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x54'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xde)+'\\x20'+'\\u4e07'+'\\u8c61'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x42'+'\\x4f'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb3)+'\\x20'+'\\u5b5f'+'\\u4e70'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x45'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb3)+'\\x20'+'\\u65b0'+'\\u5fb7'+'\\u91cc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x41'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb3)+'\\x20'+'\\u91d1'+'\\u5948'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x4c'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb3)+'\\x20'+'\\u73ed'+'\\u52a0'+'\\u7f57'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x43'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb3)+'\\x20'+'\\u52a0'+'\\u5c14'+'\\u5404'+'\\u7b54'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x48'+'\\x59'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb3)+'\\x20'+'\\u6d77'+'\\u5f97'+'\\u62c9'+'\\u5df4'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x4d'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb3)+'\\x20'+'\\u827e'+'\\u54c8'+'\\u8fc8'+'\\u8fbe'+'\\u5df4'+'\\u5fb7'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4f'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb3)+'\\x20'+'\\u79d1'+'\\u94a6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x4e'+'\\x51'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb3)+'\\x20'+'\\u6d66'+'\\u90a3'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x4f'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb3)+'\\x20'+'\\u679c'+'\\u963f'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x43'+'\\x4d'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdf)+'\\x20'+'\\u79d1'+'\\u4f26'+'\\u5761'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x41'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd2)+'\\x20'+'\\u8fbe'+'\\u5361'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x54'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xb4)+'\\x20'+'\\u52a0'+'\\u5fb7'+'\\u6ee1'+'\\u90fd'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x49'+'\\x53'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xcb)+'\\x20'+'\\u4f0a'+'\\u65af'+'\\u5170'+'\\u5821'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x48'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xcb)+'\\x20'+'\\u5361'+'\\u62c9'+'\\u5947'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x48'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xcb)+'\\x20'+'\\u62c9'+'\\u5408'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4c'+'\\x48'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdc)+'\\x20'+'\\u4f26'+'\\u6566'+'\\u5e0c'+'\\u601d'+'\\u7f57'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x47'+'\\x57'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdc)+'\\x20'+'\\u4f26'+'\\u6566'+'\\u76d6'+'\\u7279'+'\\u5a01'+'\\u514b'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xdc)+'\\x20'+'\\u4f26'+'\\u6566'+'\\u65af'+'\\u5766'+'\\u65af'+'\\u7279'+'\\u5fb7'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x54'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdc)+'\\x20'+'\\u4f26'+'\\u6566'+'\\u5362'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x41'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xdc)+'\\x20'+'\\u66fc'+'\\u5f7b'+'\\u65af'+'\\u7279'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x45'+'\\x44'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xdc)+'\\x20'+'\\u7231'+'\\u4e01'+'\\u5821'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x48'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xdc)+'\\x20'+'\\u4f2f'+'\\u660e'+'\\u7ff0'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x43'+'\\x44'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xbb)+'\\x20'+'\\u5df4'+'\\u9ece'+'\\u6234'+'\\u9ad8'+'\\u4e50'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x52'+'\\x59'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xbb)+'\\x20'+'\\u5df4'+'\\u9ece'+'\\u5965'+'\\u5229'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x52'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xbb)+'\\x20'+'\\u9a6c'+'\\u8d5b'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x59'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xbb)+'\\x20'+'\\u91cc'+'\\u6602'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x43'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xbb)+'\\x20'+'\\u5c3c'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x46'+'\\x52'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u6cd5'+'\\u5170'+'\\u514b'+'\\u798f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x55'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u6155'+'\\u5c3c'+'\\u9ed1'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x58'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u67cf'+'\\u6797'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x45'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u67cf'+'\\u6797'+'\\u52c3'+'\\u5170'+'\\u767b'+'\\u5821'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x41'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u6c49'+'\\u5821'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x55'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u675c'+'\\u585e'+'\\u5c14'+'\\u591a'+'\\u592b'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x47'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u79d1'+'\\u9686'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x54'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd4)+'\\x20'+'\\u65af'+'\\u56fe'+'\\u52a0'+'\\u7279'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x41'+'\\x4d'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe3)+'\\x20'+'\\u963f'+'\\u59c6'+'\\u65af'+'\\u7279'+'\\u4e39'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x52'+'\\x55'+'\\x27')+('\\x3a'+'\\x20'+'\\x27'+Yh(0xe2)+'\\x20'+'\\u5e03'+'\\u9c81'+'\\u585e'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x55'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xce)+'\\x20'+'\\u5362'+'\\u68ee'+'\\u5821'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x5a'+'\\x52'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xaf)+'\\x20'+'\\u82cf'+'\\u9ece'+'\\u4e16'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x56'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xaf)+'\\x20'+'\\u65e5'+'\\u5185'+'\\u74e6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x53'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xaf)+'\\x20'+'\\u5df4'+'\\u585e'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x56'+'\\x49'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xad)+'\\x20'+'\\u7ef4'+'\\u4e5f'+'\\u7eb3'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x52'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb7)+'\\x20'+'\\u5e03'+'\\u62c9'+'\\u683c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x55'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x8f)+'\\x20'+'\\u5e03'+'\\u8fbe'+'\\u4f69'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x57'+'\\x41'+'\\x57'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7e)+'\\x20'+'\\u534e'+'\\u6c99'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x52'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7e)+'\\x20'+'\\u514b'+'\\u62c9'+'\\u79d1'+'\\u592b'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x58'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc2)+'\\x20'+'\\u7c73'+'\\u5170'+'\\u9a6c'+'\\u5c14'+'\\u5f6d'+'\\u8428'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x49'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc2)+'\\x20'+'\\u7c73'+'\\u5170'+'\\u5229'+'\\u7eb3'+'\\u7279'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x46'+'\\x43'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc2)+'\\x20'+'\\u7f57'+'\\u9a6c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x43'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc2)+'\\x20'+'\\u5a01'+'\\u5c3c'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x41'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc2)+'\\x20'+'\\u90a3'+'\\u4e0d'+'\\u52d2'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x46'+'\\x4c'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc2)+'\\x20'+'\\u4f5b'+'\\u7f57'+'\\u4f26'+'\\u8428'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x47'+'\\x59'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc2)+'\\x20'+'\\u8d1d'+'\\u52a0'+'\\u83ab'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x41'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7f)+'\\x20'+'\\u9a6c'+'\\u5fb7'+'\\u91cc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x43'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7f)+'\\x20'+'\\u5df4'+'\\u585e'+'\\u7f57'+'\\u90a3'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x4d'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7f)+'\\x20'+'\\u5e15'+'\\u5c14'+'\\u9a6c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x47'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7f)+'\\x20'+'\\u9a6c'+'\\u62c9'+'\\u52a0'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x4c'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7f)+'\\x20'+'\\u74e6'+'\\u4f26'+'\\u897f'+'\\u4e9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x56'+'\\x51'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7f)+'\\x20'+'\\u585e'+'\\u7ef4'+'\\u5229'+'\\u4e9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x49'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7f)+'\\x20'+'\\u6bd5'+'\\u5c14'+'\\u5df4'+'\\u9102'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4c'+'\\x49'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x77)+'\\x20'+'\\u91cc'+'\\u65af'+'\\u672c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x50'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x77)+'\\x20'+'\\u6ce2'+'\\u5c14'+'\\u56fe'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x46'+'\\x41'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x77)+'\\x20'+'\\u6cd5'+'\\u9c81'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x44'+'\\x55'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x80)+'\\x20'+'\\u90fd'+'\\u67cf'+'\\u6797'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x50'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x89)+'\\x20'+'\\u54e5'+'\\u672c'+'\\u54c8'+'\\u6839'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x52'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa5)+'\\x20'+'\\u65af'+'\\u5fb7'+'\\u54e5'+'\\u5c14'+'\\u6469'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x4f'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa5)+'\\x20'+'\\u54e5'+'\\u5fb7'+'\\u5821'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4f'+'\\x53'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xca)+'\\x20'+'\\u5965'+'\\u65af'+'\\u9646'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x47'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xca)+'\\x20'+'\\u5351'+'\\u5c14'+'\\u6839'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x45'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa3)+'\\x20'+'\\u8d6b'+'\\u5c14'+'\\u8f9b'+'\\u57fa'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x52'+'\\x49'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x99)+'\\x20'+'\\u91cc'+'\\u52a0'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x4c'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc9)+'\\x20'+'\\u5854'+'\\u6797'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x4e'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa0)+'\\x20'+'\\u7ef4'+'\\u5c14'+'\\u7ebd'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x41'+'\\x54'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdb)+'\\x20'+'\\u96c5'+'\\u5178'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4b'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xdb)+'\\x20'+'\\u585e'+'\\u8428'+'\\u6d1b'+'\\u5c3c'+'\\u57fa'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4f'+'\\x46'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x9a)+'\\x20'+'\\u7d22'+'\\u975e'+'\\u4e9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x54'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x91)+'\\x20'+'\\u5e03'+'\\u52a0'+'\\u52d2'+'\\u65af'+'\\u7279'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x45'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc3)+'\\x20'+'\\u8d1d'+'\\u5c14'+'\\u683c'+'\\u83b1'+'\\u5fb7'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x5a'+'\\x41'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7d)+'\\x20'+'\\u8428'+'\\u683c'+'\\u52d2'+'\\u5e03'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x4a'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa6)+'\\x20'+'\\u5362'+'\\u5e03'+'\\u5c14'+'\\u96c5'+'\\u90a3'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4b'+'\\x42'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa1)+'\\x20'+'\\u57fa'+'\\u8f85'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x49'+'\\x45'+'\\x56'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa1)+'\\x20'+'\\u57fa'+'\\u8f85'+'\\u8339'+'\\u826f'+'\\u5c3c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x44'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa1)+'\\x20'+'\\u6556'+'\\u5fb7'+'\\u8428'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x53'+'\\x56'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x97)+'\\x20'+'\\u83ab'+'\\u65af'+'\\u79d1'+'\\u8c22'+'\\u5217'+'\\u6885'+'\\u6377'+'\\u6c83'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x4d'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x97))+('\\x20'+'\\u83ab'+'\\u65af'+'\\u79d1'+'\\u591a'+'\\u83ab'+'\\u6770'+'\\u591a'+'\\u6c83'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x56'+'\\x4b'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x97)+'\\x20'+'\\u83ab'+'\\u65af'+'\\u79d1'+'\\u4f0f'+'\\u52aa'+'\\u79d1'+'\\u6c83'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x45'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x97)+'\\x20'+'\\u5723'+'\\u5f7c'+'\\u5f97'+'\\u5821'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x49'+'\\x53'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7b)+'\\x20'+'\\u4f0a'+'\\u65af'+'\\u5766'+'\\u5e03'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x41'+'\\x57'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7b)+'\\x20'+'\\u4f0a'+'\\u65af'+'\\u5766'+'\\u5e03'+'\\u5c14'+'\\u8428'+'\\u6bd4'+'\\u54c8'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x45'+'\\x53'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7b)+'\\x20'+'\\u5b89'+'\\u5361'+'\\u62c9'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x59'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7b)+'\\x20'+'\\u5b89'+'\\u5854'+'\\u5229'+'\\u4e9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x44'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7b)+'\\x20'+'\\u4f0a'+'\\u5179'+'\\u5bc6'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x54'+'\\x4c'+'\\x56'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xda)+'\\x20'+'\\u7279'+'\\u62c9'+'\\u7ef4'+'\\u592b'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x4d'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x93)+'\\x20'+'\\u5b89'+'\\u66fc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x45'+'\\x59'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x87)+'\\x20'+'\\u8d1d'+'\\u9c81'+'\\u7279'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x41'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x9d)+'\\x20'+'\\u5df4'+'\\u6797'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x57'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x8c)+'\\x20'+'\\u79d1'+'\\u5a01'+'\\u7279'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x44'+'\\x58'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x81)+'\\x20'+'\\u8fea'+'\\u62dc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x55'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x81)+'\\x20'+'\\u963f'+'\\u5e03'+'\\u624e'+'\\u6bd4'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x48'+'\\x4a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x81)+'\\x20'+'\\u6c99'+'\\u8fe6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x4f'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xd1)+'\\x20'+'\\u591a'+'\\u54c8'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x43'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe6)+'\\x20'+'\\u9a6c'+'\\u65af'+'\\u5580'+'\\u7279'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x52'+'\\x55'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa8)+'\\x20'+'\\u5229'+'\\u96c5'+'\\u5f97'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4a'+'\\x45'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa8)+'\\x20'+'\\u5409'+'\\u8fbe'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x4d'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa8)+'\\x20'+'\\u8fbe'+'\\u66fc'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x43'+'\\x41'+'\\x49'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x86)+'\\x20'+'\\u5f00'+'\\u7f57'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x42'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x86)+'\\x20'+'\\u4e9a'+'\\u5386'+'\\u5c71'+'\\u5927'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x53'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x86)+'\\x20'+'\\u6c99'+'\\u59c6'+'\\u6c99'+'\\u4f0a'+'\\u8d6b'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x43'+'\\x4d'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xbc)+'\\x20'+'\\u5361'+'\\u8428'+'\\u5e03'+'\\u5170'+'\\u5361'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x52'+'\\x41'+'\\x4b'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xbc)+'\\x20'+'\\u9a6c'+'\\u62c9'+'\\u5580'+'\\u4ec0'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x55'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd3)+'\\x20'+'\\u7a81'+'\\u5c3c'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x4c'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xbe)+'\\x20'+'\\u963f'+'\\u5c14'+'\\u53ca'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4c'+'\\x4f'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x9f)+'\\x20'+'\\u62c9'+'\\u5404'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x42'+'\\x56'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x9f)+'\\x20'+'\\u963f'+'\\u5e03'+'\\u8d3e'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x43'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x92)+'\\x20'+'\\u963f'+'\\u514b'+'\\u62c9'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x42'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb8)+'\\x20'+'\\u5185'+'\\u7f57'+'\\u6bd5'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x42'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb8)+'\\x20'+'\\u8499'+'\\u5df4'+'\\u8428'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x44'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xcc)+'\\x20'+'\\u4e9a'+'\\u7684'+'\\u65af'+'\\u4e9a'+'\\u8d1d'+'\\u5df4'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x41'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7a)+'\\x20'+'\\u8fbe'+'\\u7d2f'+'\\u65af'+'\\u8428'+'\\u62c9'+'\\u59c6'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4a'+'\\x4e'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc8)+'\\x20'+'\\u7ea6'+'\\u7ff0'+'\\u5185'+'\\u65af'+'\\u5821'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x50'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc8)+'\\x20'+'\\u5f00'+'\\u666e'+'\\u6566'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x44'+'\\x55'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc8)+'\\x20'+'\\u5fb7'+'\\u73ed'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x52'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x94)+'\\x20'+'\\u54c8'+'\\u62c9'+'\\u96f7'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x55'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x82)+'\\x20'+'\\u5362'+'\\u8428'+'\\u5361'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x52'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x9b)+'\\x20'+'\\u6bdb'+'\\u91cc'+'\\u6c42'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x45'+'\\x5a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd7)+'\\x20'+'\\u585e'+'\\u820c'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x53'+'\\x59'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x90)+'\\x20'+'\\u6089'+'\\u5c3c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x45'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x90)+'\\x20'+'\\u58a8'+'\\u5c14'+'\\u672c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x4e'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x90)+'\\x20'+'\\u5e03'+'\\u91cc'+'\\u65af'+'\\u73ed'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x45'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x90)+'\\x20'+'\\u73c0'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x44'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x90)+'\\x20'+'\\u963f'+'\\u5fb7'+'\\u83b1'+'\\u5fb7'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x42'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x90)+'\\x20'+'\\u582a'+'\\u57f9'+'\\u62c9'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x4f'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x90)+'\\x20'+'\\u9ec4'+'\\u91d1')+('\\u6d77'+'\\u5cb8'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4e'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x90)+'\\x20'+'\\u51ef'+'\\u6069'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x41'+'\\x4b'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe7)+'\\x20'+'\\u5965'+'\\u514b'+'\\u5170'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x57'+'\\x4c'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe7)+'\\x20'+'\\u60e0'+'\\u7075'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x48'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe7)+'\\x20'+'\\u57fa'+'\\u7763'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x5a'+'\\x51'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe7)+'\\x20'+'\\u7687'+'\\u540e'+'\\u9547'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4e'+'\\x41'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xcd)+'\\x20'+'\\u6960'+'\\u8fea'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x50'+'\\x54'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x8e)+'\\x20'+'\\u5e15'+'\\u76ae'+'\\u63d0'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x55'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x84)+'\\x20'+'\\u5173'+'\\u5c9b'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x47'+'\\x52'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa2)+'\\x20'+'\\u5723'+'\\u4fdd'+'\\u7f57'+'\\u74dc'+'\\u9c81'+'\\u67f3'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x47'+'\\x48'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa2)+'\\x20'+'\\u5723'+'\\u4fdd'+'\\u7f57'+'\\u5b54'+'\\u6208'+'\\u5c3c'+'\\u4e9a'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x49'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa2)+'\\x20'+'\\u91cc'+'\\u7ea6'+'\\u70ed'+'\\u5185'+'\\u5362'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x53'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa2)+'\\x20'+'\\u5df4'+'\\u897f'+'\\u5229'+'\\u4e9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4e'+'\\x46'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa2)+'\\x20'+'\\u8d1d'+'\\u6d1b'+'\\u5965'+'\\u91cc'+'\\u85cf'+'\\u7279'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x4f'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xa2)+'\\x20'+'\\u963f'+'\\u96f7'+'\\u683c'+'\\u91cc'+'\\u6e2f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x57'+'\\x42'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa2)+'\\x20'+'\\u5e93'+'\\u91cc'+'\\u8482'+'\\u5df4'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x46'+'\\x4f'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa2)+'\\x20'+'\\u798f'+'\\u5854'+'\\u83b1'+'\\u8428'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x52'+'\\x45'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa2)+'\\x20'+'\\u7d2f'+'\\u897f'+'\\u8153'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x53'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa2)+'\\x20'+'\\u8428'+'\\u5c14'+'\\u74e6'+'\\u591a'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x45'+'\\x5a'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x8b)+'\\x20'+'\\u5e03'+'\\u5b9c'+'\\u8bfa'+'\\u65af'+'\\u827e'+'\\u5229'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x45'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x8b)+'\\x20'+'\\u5e03'+'\\u5b9c'+'\\u8bfa'+'\\u65af'+'\\u827e'+'\\u5229'+'\\u65af'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4f'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x8b)+'\\x20'+'\\u79d1'+'\\u5c14'+'\\u591a'+'\\u74e6'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x44'+'\\x5a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x8b)+'\\x20'+'\\u95e8'+'\\u591a'+'\\u8428'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x53'+'\\x43'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x85)+'\\x20'+'\\u5723'+'\\u5730'+'\\u4e9a'+'\\u54e5'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4c'+'\\x49'+'\\x4d'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd0)+'\\x20'+'\\u5229'+'\\u9a6c'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x4f'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x8d)+'\\x20'+'\\u6ce2'+'\\u54e5'+'\\u5927'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x44'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x8d)+'\\x20'+'\\u9ea6'+'\\u5fb7'+'\\u6797'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x4c'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x8d)+'\\x20'+'\\u5361'+'\\u5229'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x55'+'\\x49'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd8)+'\\x20'+'\\u57fa'+'\\u591a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x59'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xd8)+'\\x20'+'\\u74dc'+'\\u4e9a'+'\\u57fa'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x43'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xb1)+'\\x20'+'\\u52a0'+'\\u62c9'+'\\u52a0'+'\\u65af'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x56'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x78)+'\\x20'+'\\u8499'+'\\u5f97'+'\\u7ef4'+'\\u7684'+'\\u4e9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x41'+'\\x53'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x8a)+'\\x20'+'\\u4e9a'+'\\u677e'+'\\u68ee'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x50'+'\\x54'+'\\x59'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc5)+'\\x20'+'\\u5df4'+'\\u62ff'+'\\u9a6c'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4a'+'\\x4f'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xe1)+'\\x20'+'\\u5723'+'\\u4f55'+'\\u585e'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x55'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xbd)+'\\x20'+'\\u5371'+'\\u5730'+'\\u9a6c'+'\\u62c9'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x41'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xbf)+'\\x20'+'\\u5723'+'\\u8428'+'\\u5c14'+'\\u74e6'+'\\u591a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x47'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xa4)+'\\x20'+'\\u7279'+'\\u53e4'+'\\u897f'+'\\u52a0'+'\\u5c14'+'\\u5df4'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x47'+'\\x41'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xae)+'\\x20'+'\\u9a6c'+'\\u90a3'+'\\u74dc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x42'+'\\x5a'+'\\x45'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd6)+'\\x20'+'\\u4f2f'+'\\u5229'+'\\u5179'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x4d'+'\\x45'+'\\x58'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7c)+'\\x20'+'\\u58a8'+'\\u897f'+'\\u54e5'+'\\u57ce'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x47'+'\\x44'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7c)+'\\x20'+'\\u74dc'+'\\u8fbe'+'\\u62c9'+'\\u54c8'+'\\u62c9'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x54'+'\\x59'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7c)+'\\x20'+'\\u8499'+'\\u7279'+'\\u96f7'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x43'+'\\x55'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0x7c)+'\\x20'+'\\u574e'+'\\u6606'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x54'+'\\x49'+'\\x4a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7c)+'\\x20'+'\\u8482'+'\\u534e'+'\\u7eb3'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4a'+'\\x44'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0x7c)+'\\x20'+'\\u5723'+'\\u4f55'+'\\u585e'+'\\u5fb7'+'\\u5c14'+'\\u5361'+'\\u6c83'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x59'+'\\x59'+'\\x5a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc1)+'\\x20'+'\\u591a'+'\\u4f26'+'\\u591a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x59'+'\\x56'+'\\x52'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc1)+'\\x20'+'\\u6e29'+'\\u54e5'+'\\u534e'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x59'+'\\x55'+'\\x4c'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc1)+'\\x20'+'\\u8499'+'\\u7279'+'\\u5229'+'\\u5c14'+'\\x27'+'\\x2c'+'\\x20'+'\\x27')+('\\x59'+'\\x59'+'\\x43'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xc1)+'\\x20'+'\\u5361'+'\\u5c14'+'\\u52a0'+'\\u91cc'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x59'+'\\x45'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc1)+'\\x20'+'\\u57c3'+'\\u5fb7'+'\\u8499'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x59'+'\\x4f'+'\\x57'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc1)+'\\x20'+'\\u6e25'+'\\u592a'+'\\u534e'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x59'+'\\x57'+'\\x47'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc1)+'\\x20'+'\\u6e29'+'\\u5c3c'+'\\u4f2f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x59'+'\\x48'+'\\x5a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc1)+'\\x20'+'\\u54c8'+'\\u5229'+'\\u6cd5'+'\\u514b'+'\\u65af'+'\\x27'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x27'+'\\x48'+'\\x41'+'\\x56'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xba)+'\\x20'+'\\u54c8'+'\\u74e6'+'\\u90a3'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x4a'+'\\x55'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xdd)+'\\x20'+'\\u5723'+'\\u80e1'+'\\u5b89'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x44'+'\\x51'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xaa)+'\\x20'+'\\u5723'+'\\u591a'+'\\u660e'+'\\u5404'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x50'+'\\x41'+'\\x50'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xc7)+'\\x20'+'\\u592a'+'\\u5b50'+'\\u6e2f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4b'+'\\x49'+'\\x4e'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd5)+'\\x20'+'\\u91d1'+'\\u65af'+'\\u987f'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4e'+'\\x41'+'\\x53'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yb(0xe4)+'\\x20'+'\\u62ff'+'\\u9a9a'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x4d'+'\\x42'+'\\x4a'+'\\x27'+'\\x3a'+'\\x20'+'\\x27'+Yh(0xd5)+'\\x20'+'\\u8499'+'\\u7279'+'\\u54e5'+'\\u8d1d'+'\\x27'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4d'+'\\x61'+'\\x70'+'\\x5b'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x5d'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u57ce'+'\\u5e02'+'\\u7b5b'+'\\u9009'+'\\u76f8'+'\\u5173'+'\\u51fd'+'\\u6570'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x42'+'\\x79'+'\\x49'+'\\x64'+'\\x28'+'\\x27'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x75'+'\\x70'+'\\x64'+'\\x61'+'\\x74'+'\\x65'+'\\x43'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x21'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u4ece'+'\\u6d4b'+'\\u8bd5'+'\\u7ed3'+'\\u679c'+'\\u4e2d'+'\\u63d0'+'\\u53d6'+'\\u6240'+'\\u6709'+'\\u53ef'+'\\u7528'+'\\u7684'+'\\u57ce'+'\\u5e02'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x4d'+'\\x61'+'\\x70'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x4d'+'\\x61'+'\\x70'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x4d'+'\\x61'+'\\x70'+'\\x2e'+'\\x68'+'\\x61'+'\\x73'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x4d'+'\\x61'+'\\x70'+'\\x2e'+'\\x73'+'\\x65'+'\\x74'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x2c'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3a'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3a'+'\\x20'+'\\x67'+'\\x65'+'\\x74'+'\\x43'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x4e'+'\\x61'+'\\x6d'+'\\x65'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x2c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x3a'+'\\x20'+'\\x30'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x4d'+'\\x61'+'\\x70'+'\\x2e'+'\\x67'+'\\x65'+'\\x74'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x2e'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x2b'+'\\x2b'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x4d'+'\\x61'+'\\x70'+'\\x2e'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x62'+'\\x6c'+'\\x6f'+'\\x63'+'\\x6b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x69'+'\\x6e'+'\\x6e'+'\\x65'+'\\x72'+'\\x48'+'\\x54'+'\\x4d'+'\\x4c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u6309'+'\\u57ce'+'\\u5e02'+'\\u540d'+'\\u79f0'+'\\u6392'+'\\u5e8f'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x41'+'\\x72'+'\\x72'+'\\x61'+'\\x79'+'\\x2e'+'\\x66'+'\\x72'+'\\x6f'+'\\x6d'+'\\x28'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x4d'+'\\x61'+'\\x70'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x73'+'\\x28'+'\\x29'+'\\x29'+'\\x2e'+'\\x73'+'\\x6f'+'\\x72'+'\\x74'+'\\x28'+'\\x28'+'\\x61'+'\\x2c'+'\\x20'+'\\x62'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x61'+'\\x2e'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x63'+'\\x61'+'\\x6c'+'\\x65'+'\\x43'+'\\x6f'+'\\x6d'+'\\x70'+'\\x61'+'\\x72'+'\\x65'+'\\x28'+'\\x62'+'\\x2e'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69')+('\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x73'+'\\x73'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x3a'+'\\x20'+'\\x69'+'\\x6e'+'\\x6c'+'\\x69'+'\\x6e'+'\\x65'+'\\x2d'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x3b'+'\\x20'+'\\x61'+'\\x6c'+'\\x69'+'\\x67'+'\\x6e'+'\\x2d'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x3a'+'\\x20'+'\\x63'+'\\x65'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x66'+'\\x66'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x66'+'\\x6f'+'\\x6e'+'\\x74'+'\\x2d'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x3a'+'\\x20'+'\\x30'+'\\x2e'+'\\x38'+'\\x35'+'\\x72'+'\\x65'+'\\x6d'+'\\x3b'+'\\x20'+'\\x70'+'\\x61'+'\\x64'+'\\x64'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x20'+'\\x34'+'\\x70'+'\\x78'+'\\x20'+'\\x38'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x62'+'\\x61'+'\\x63'+'\\x6b'+'\\x67'+'\\x72'+'\\x6f'+'\\x75'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+'\\x72'+'\\x67'+'\\x62'+'\\x61'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x34'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2c'+'\\x20'+'\\x30'+'\\x2e'+'\\x34'+'\\x29'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x3a'+'\\x20'+'\\x31'+'\\x70'+'\\x78'+'\\x20'+'\\x73'+'\\x6f'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x23'+'\\x30'+'\\x30'+'\\x61'+'\\x61'+'\\x30'+'\\x30'+'\\x3b'+'\\x20'+'\\x62'+'\\x6f'+'\\x72'+'\\x64'+'\\x65'+'\\x72'+'\\x2d'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x75'+'\\x73'+'\\x3a'+'\\x20'+'\\x34'+'\\x70'+'\\x78'+'\\x3b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x73'+'\\x73'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6d'+'\\x61'+'\\x72'+'\\x67'+'\\x69'+'\\x6e'+'\\x2d'+'\\x72'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x77'+'\\x69'+'\\x64'+'\\x74'+'\\x68'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x68'+'\\x65'+'\\x69'+'\\x67'+'\\x68'+'\\x74'+'\\x3a'+'\\x20'+'\\x31'+'\\x36'+'\\x70'+'\\x78'+'\\x3b'+'\\x20'+'\\x63'+'\\x75'+'\\x72'+'\\x73'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x70'+'\\x6f'+'\\x69'+'\\x6e'+'\\x74'+'\\x65'+'\\x72'+'\\x3b'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x72'+'\\x65'+'\\x61'+'\\x74'+'\\x65'+'\\x45'+'\\x6c'+'\\x65'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x28'+'\\x27'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x2e'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20'+'\\x28'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x2e'+'\\x63'+'\\x6f'+'\\x75'+'\\x6e'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x29'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68')+('\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x73'+'\\x70'+'\\x61'+'\\x6e'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x61'+'\\x70'+'\\x70'+'\\x65'+'\\x6e'+'\\x64'+'\\x43'+'\\x68'+'\\x69'+'\\x6c'+'\\x64'+'\\x28'+'\\x6c'+'\\x61'+'\\x62'+'\\x65'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x42'+'\\x79'+'\\x43'+'\\x69'+'\\x74'+'\\x79'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u76d1'+'\\u542c'+'\\u7b5b'+'\\u9009'+'\\u6a21'+'\\u5f0f'+'\\u53d8'+'\\u5316'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x52'+'\\x61'+'\\x64'+'\\x69'+'\\x6f'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x22'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x52'+'\\x61'+'\\x64'+'\\x69'+'\\x6f'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x6f'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x61'+'\\x64'+'\\x69'+'\\x6f'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x63'+'\\x68'+'\\x61'+'\\x6e'+'\\x67'+'\\x65'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x74'+'\\x68'+'\\x69'+'\\x73'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x61'+'\\x6c'+'\\x6c'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5207'+'\\u6362'+'\\u5230'+'\\x22'+'\\u5168'+'\\u90e8'+'\\u57ce'+'\\u5e02'+'\\x22'+'\\u6a21'+'\\u5f0f'+'\\u65f6'+'\\uff0c'+'\\u81ea'+'\\u52a8'+'\\u9009'+'\\u4e2d'+'\\u6240'+'\\u6709'+'\\u57ce'+'\\u5e02'+'\\u590d'+'\\u9009'+'\\u6846'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x62'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x62'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x42'+'\\x79'+'\\x43'+'\\x69'+'\\x74'+'\\x79'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x42'+'\\x79'+'\\x43'+'\\x69'+'\\x74'+'\\x79'+'\\x28'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x21'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x29'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x6f'+'\\x63'+'\\x75'+'\\x6d'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x46'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x22'+'\\x5d'+'\\x3a'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x27'+'\\x29'+'\\x3f'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x61'+'\\x6c'+'\\x6c'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x5b'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2d'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x61'+'\\x69'+'\\x6e'+'\\x65'+'\\x72'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x41'+'\\x6c'+'\\x6c'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x4d'+'\\x6f'+'\\x64'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x61'+'\\x73'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x31'+'\\x30'+'\\x27'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u53ea'+'\\u9009'+'\\u62e9'+'\\u6700'+'\\u5feb'+'\\u7684'+'\\x31'+'\\x30'+'\\u4e2a'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x6f'+'\\x72'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x28'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x28'+'\\x7b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2c'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x20'+'\\x7d'+'\\x29'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'+'\\x28'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x73'+'\\x6f'+'\\x72'+'\\x74'+'\\x28'+'\\x28'+'\\x61'+'\\x2c'+'\\x20'+'\\x62'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x61'+'\\x2e'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x20'+'\\x2d'+'\\x20'+'\\x62'+'\\x2e'+'\\x72'+'\\x65'+'\\x73')+('\\x75'+'\\x6c'+'\\x74'+'\\x2e'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x29'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2e'+'\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x31'+'\\x30'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x61'+'\\x73'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x64'+'\\x69'+'\\x63'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x53'+'\\x65'+'\\x74'+'\\x28'+'\\x73'+'\\x6f'+'\\x72'+'\\x74'+'\\x65'+'\\x64'+'\\x52'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x73'+'\\x2e'+'\\x6d'+'\\x61'+'\\x70'+'\\x28'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x49'+'\\x6e'+'\\x74'+'\\x28'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x66'+'\\x61'+'\\x73'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x64'+'\\x69'+'\\x63'+'\\x65'+'\\x73'+'\\x2e'+'\\x68'+'\\x61'+'\\x73'+'\\x28'+'\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x29'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x29'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u7981'+'\\u7528'+'\\u57ce'+'\\u5e02'+'\\u590d'+'\\u9009'+'\\u6846'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x63'+'\\x62'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20')+('\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u6839'+'\\u636e'+'\\u9009'+'\\u4e2d'+'\\u7684'+'\\u57ce'+'\\u5e02'+'\\u7b5b'+'\\u9009'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x43'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x53'+'\\x65'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x62'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x43'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x28'+'\\x63'+'\\x62'+'\\x2e'+'\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u5982'+'\\u679c'+'\\u6240'+'\\u6709'+'\\u57ce'+'\\u5e02'+'\\u90fd'+'\\u88ab'+'\\u9009'+'\\u4e2d'+'\\uff08'+'\\u6216'+'\\u6ca1'+'\\u6709'+'\\u9009'+'\\u4e2d'+'\\u4efb'+'\\u4f55'+'\\u57ce'+'\\u5e02'+'\\uff09'+'\\uff0c'+'\\u663e'+'\\u793a'+'\\u6240'+'\\u6709'+'\\u7ed3'+'\\u679c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x20'+'\\x3e'+'\\x20'+'\\x30'+'\\x20'+'\\x26'+'\\x26'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x43'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x2e'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x43'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x2e'+'\\x73'+'\\x69'+'\\x7a'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x75'+'\\x6c'+'\\x74'+'\\x49'+'\\x74'+'\\x65'+'\\x6d'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x73'+'\\x65'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x71'+'\\x75'+'\\x65'+'\\x72'+'\\x79'+'\\x53'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'+'\\x28'+'\\x27'+'\\x69'+'\\x6e'+'\\x70'+'\\x75'+'\\x74'+'\\x5b'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x22'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x22'+'\\x5d'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x61'+'\\x6c'+'\\x6c'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x7c'+'\\x7c'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x43'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x2e'+'\\x68'+'\\x61'+'\\x73'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x66'+'\\x6c'+'\\x65'+'\\x78'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u540c'+'\\u6b65'+'\\u66f4'+'\\u65b0'+'\\u7ed3'+'\\u679c'+'\\u9879'+'\\u590d'+'\\u9009'+'\\u6846'+'\\u7684'+'\\u9009'+'\\u4e2d'+'\\u72b6'+'\\u6001'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x61'+'\\x6c'+'\\x6c'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u6240'+'\\u6709'+'\\u57ce'+'\\u5e02'+'\\u90fd'+'\\u9009'+'\\u4e2d'+'\\u65f6'+'\\uff0c'+'\\u6240'+'\\u6709'+'\\u7ed3'+'\\u679c'+'\\u9879'+'\\u590d'+'\\u9009'+'\\u6846'+'\\u90fd'+'\\u9009'+'\\u4e2d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u6ca1'+'\\u6709'+'\\u9009'+'\\u4e2d'+'\\u4efb'+'\\u4f55'+'\\u57ce'+'\\u5e02'+'\\u65f6'+'\\uff0c'+'\\u6240'+'\\u6709'+'\\u7ed3'+'\\u679c'+'\\u9879'+'\\u590d'+'\\u9009'+'\\u6846'+'\\u90fd'+'\\u53d6'+'\\u6d88'+'\\u9009'+'\\u4e2d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u6839'+'\\u636e'+'\\u57ce'+'\\u5e02'+'\\u9009'+'\\u62e9'+'\\u72b6'+'\\u6001'+'\\u540c'+'\\u6b65'+'\\u590d'+'\\u9009'+'\\u6846'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x65'+'\\x6c'+'\\x65'+'\\x63'+'\\x74'+'\\x65'+'\\x64'+'\\x43'+'\\x69'+'\\x74'+'\\x69'+'\\x65'+'\\x73'+'\\x2e'+'\\x68'+'\\x61'+'\\x73'+'\\x28'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x65'+'\\x6c'+'\\x73'+'\\x65'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x74'+'\\x65'+'\\x6d'+'\\x2e'+'\\x73'+'\\x74'+'\\x79'+'\\x6c'+'\\x65'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x70'+'\\x6c'+'\\x61'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u53d6'+'\\u6d88'+'\\u9009'+'\\u4e2d'+'\\u9690'+'\\u85cf'+'\\u7684'+'\\u7ed3'+'\\u679c'+'\\u9879'+'\\u590d'+'\\u9009'+'\\u6846'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x2e'+'\\x63'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20')+('\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x2f'+'\\x2f'+'\\x20'+'\\u542f'+'\\u7528'+'\\u57ce'+'\\u5e02'+'\\u590d'+'\\u9009'+'\\u6846'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x69'+'\\x74'+'\\x79'+'\\x43'+'\\x68'+'\\x65'+'\\x63'+'\\x6b'+'\\x62'+'\\x6f'+'\\x78'+'\\x65'+'\\x73'+'\\x2e'+'\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'+'\\x28'+'\\x63'+'\\x62'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x63'+'\\x62'+'\\x2e'+'\\x64'+'\\x69'+'\\x73'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x73'+'\\x79'+'\\x6e'+'\\x63'+'\\x20'+'\\x66'+'\\x75'+'\\x6e'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x28'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2c'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x2c'+'\\x20'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x38'+'\\x30'+'\\x30'+'\\x30'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x6c'+'\\x65'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x20'+'\\x3d'+'\\x20'+'\\x6e'+'\\x65'+'\\x77'+'\\x20'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x43'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x49'+'\\x64'+'\\x20'+'\\x3d'+'\\x20'+'\\x73'+'\\x65'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x28'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x28'+'\\x29'+'\\x2c'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x2e'+'\\x61'+'\\x64'+'\\x64'+'\\x45'+'\\x76'+'\\x65'+'\\x6e'+'\\x74'+'\\x4c'+'\\x69'+'\\x73'+'\\x74'+'\\x65'+'\\x6e'+'\\x65'+'\\x72'+'\\x28'+'\\x27'+'\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x27'+'\\x2c'+'\\x20'+'\\x28'+'\\x29'+'\\x20'+'\\x3d'+'\\x3e'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x28'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x6e'+'\\x48'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x2e'+'\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x28'+'\\x2f'+'\\x5e'+'\\x5c'+'\\x5b'+'\\x7c'+'\\x5c'+'\\x5d'+'\\x24'+'\\x2f'+'\\x67'+'\\x2c'+'\\x20'+'\\x27'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x68'+'\\x65'+'\\x78'+'\\x49'+'\\x50'+'\\x20'+'\\x3d'+'\\x20'+'\\x69'+'\\x70'+'\\x54'+'\\x6f'+'\\x48'+'\\x65'+'\\x78'+'\\x28'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x6e'+'\\x48'+'\\x6f'+'\\x73'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74')+('\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x3d'+'\\x20'+'\\x68'+'\\x65'+'\\x78'+'\\x49'+'\\x50'+'\\x20'+'\\x3f'+'\\x20'+'\\x28'+'\\x68'+'\\x65'+'\\x78'+'\\x49'+'\\x50'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2e'+'\\x6e'+'\\x69'+'\\x70'+'\\x2e'+'\\x6c'+'\\x66'+'\\x72'+'\\x65'+'\\x65'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x27'+'\\x29'+'\\x20'+'\\x3a'+'\\x20'+'\\x28'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x6e'+'\\x48'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2e'+'\\x6e'+'\\x69'+'\\x70'+'\\x2e'+'\\x6c'+'\\x66'+'\\x72'+'\\x65'+'\\x65'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x3d'+'\\x20'+'\\x27'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3a'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x2f'+'\\x27'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x67'+'\\x28'+'\\x27'+'\\x5b'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x5d'+'\\x20'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x6e'+'\\x67'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x27'+'\\x4f'+'\\x72'+'\\x69'+'\\x67'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x3a'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x2c'+'\\x20'+'\\x27'+'\\x48'+'\\x65'+'\\x78'+'\\x49'+'\\x50'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x68'+'\\x65'+'\\x78'+'\\x49'+'\\x50'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x69'+'\\x72'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x31'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x7b'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x3a'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x66'+'\\x69'+'\\x72'+'\\x73'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x20'+'\\x2d'+'\\x20'+'\\x66'+'\\x69'+'\\x72'+'\\x73'+'\\x74'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x21'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x31'+'\\x2e'+'\\x6f'+'\\x6b'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x72'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x49'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x7b'+'\\x20'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x3a'+'\\x20'+'\\x66'+'\\x69'+'\\x72'+'\\x73'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x2c'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x27'+'\\x48'+'\\x54'+'\\x54'+'\\x50'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x31'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x20'+'\\x27'+'\\x20'+'\\x2b'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x31'+'\\x2e'+'\\x73'+'\\x74'+'\\x61'+'\\x74'+'\\x75'+'\\x73'+'\\x54'+'\\x65'+'\\x78'+'\\x74'+'\\x2c'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x3a'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x74'+'\\x72'+'\\x79'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73')+('\\x74'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x31'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x67'+'\\x28'+'\\x27'+'\\x5b'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x5d'+'\\x20'+'\\x52'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x20'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2e'+'\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x28'+'\\x30'+'\\x2c'+'\\x20'+'\\x32'+'\\x30'+'\\x30'+'\\x29'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x3d'+'\\x20'+'\\x4a'+'\\x53'+'\\x4f'+'\\x4e'+'\\x2e'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x28'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x69'+'\\x66'+'\\x20'+'\\x28'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x20'+'\\x3d'+'\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x67'+'\\x28'+'\\x27'+'\\x5b'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x5d'+'\\x20'+'\\x50'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x73'+'\\x65'+'\\x63'+'\\x6f'+'\\x6e'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x32'+'\\x20'+'\\x3d'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x66'+'\\x65'+'\\x74'+'\\x63'+'\\x68'+'\\x28'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x2c'+'\\x20'+'\\x7b'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x3a'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x72'+'\\x6f'+'\\x6c'+'\\x6c'+'\\x65'+'\\x72'+'\\x2e'+'\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x61'+'\\x77'+'\\x61'+'\\x69'+'\\x74'+'\\x20'+'\\x72'+'\\x65'+'\\x73'+'\\x70'+'\\x6f'+'\\x6e'+'\\x73'+'\\x65'+'\\x32'+'\\x2e'+'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x28'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x20'+'\\x3d'+'\\x20'+'\\x44'+'\\x61'+'\\x74'+'\\x65'+'\\x2e'+'\\x6e'+'\\x6f'+'\\x77'+'\\x28'+'\\x29'+'\\x20'+'\\x2d'+'\\x20'+'\\x73'+'\\x65'+'\\x63'+'\\x6f'+'\\x6e'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6c'+'\\x65'+'\\x61'+'\\x72'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x28'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74'+'\\x49'+'\\x64'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x67'+'\\x28'+'\\x27'+'\\x5b'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x5d'+'\\x20'+'\\x46'+'\\x69'+'\\x72'+'\\x73'+'\\x74'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x66'+'\\x69'+'\\x72'+'\\x73'+'\\x74'+'\\x54'+'\\x69'+'\\x6d'+'\\x65'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x6d'+'\\x73'+'\\x20'+'\\x28'+'\\x44'+'\\x4e'+'\\x53'+'\\x2b'+'\\x54'+'\\x4c'+'\\x53'+'\\x2b'+'\\x52'+'\\x54'+'\\x54'+'\\x29'+'\\x27'+'\\x2c'+'\\x20'+'\\x27'+'\\x53'+'\\x65'+'\\x63'+'\\x6f'+'\\x6e')+('\\x64'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x20'+'\\x2b'+'\\x20'+'\\x27'+'\\x6d'+'\\x73'+'\\x20'+'\\x28'+'\\x52'+'\\x54'+'\\x54'+'\\x20'+'\\x6f'+'\\x6e'+'\\x6c'+'\\x79'+'\\x29'+'\\x27'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x7b'+'\\x20'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x3a'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x2c'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3a'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x3a'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x20'+'\\x63'+'\\x61'+'\\x74'+'\\x63'+'\\x68'+'\\x20'+'\\x28'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x29'+'\\x20'+'\\x7b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x4d'+'\\x73'+'\\x67'+'\\x20'+'\\x3d'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x20'+'\\x3d'+'\\x3d'+'\\x3d'+'\\x20'+'\\x27'+'\\x41'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x27'+'\\x20'+'\\x3f'+'\\x20'+'\\x27'))+(RK?'\\u0632'+'\\u0645'+'\\u0627'+'\\u0646'+'\\x20'+'\\u062a'+'\\u0645'+'\\u0627'+'\\u0645'+'\\x20'+'\\u0634'+'\\u062f':'\\u8d85'+'\\u65f6')+('\\x27'+'\\x20'+'\\x3a'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x2e'+'\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x6f'+'\\x6c'+'\\x65'+'\\x2e'+'\\x6c'+'\\x6f'+'\\x67'+'\\x28'+'\\x27'+'\\x5b'+'\\x4c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x54'+'\\x65'+'\\x73'+'\\x74'+'\\x5d'+'\\x20'+'\\x45'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x4d'+'\\x73'+'\\x67'+'\\x2c'+'\\x20'+'\\x27'+'\\x55'+'\\x52'+'\\x4c'+'\\x3a'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x72'+'\\x65'+'\\x74'+'\\x75'+'\\x72'+'\\x6e'+'\\x20'+'\\x7b'+'\\x20'+'\\x73'+'\\x75'+'\\x63'+'\\x63'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x20'+'\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65'+'\\x2c'+'\\x20'+'\\x6c'+'\\x61'+'\\x74'+'\\x65'+'\\x6e'+'\\x63'+'\\x79'+'\\x3a'+'\\x20'+'\\x2d'+'\\x31'+'\\x2c'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x3a'+'\\x20'+'\\x65'+'\\x72'+'\\x72'+'\\x6f'+'\\x72'+'\\x4d'+'\\x73'+'\\x67'+'\\x2c'+'\\x20'+'\\x63'+'\\x6f'+'\\x6c'+'\\x6f'+'\\x3a'+'\\x20'+'\\x27'+'\\x27'+'\\x2c'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x3a'+'\\x20'+'\\x74'+'\\x65'+'\\x73'+'\\x74'+'\\x55'+'\\x72'+'\\x6c'+'\\x20'+'\\x7d'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x7d'+'\\x29'+'\\x3b'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x73'+'\\x63'+'\\x72'+'\\x69'+'\\x70'+'\\x74'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x62'+'\\x6f'+'\\x64'+'\\x79'+'\\x3e'+'\\x0a'+'\\x20'+'\\x20'+'\\x20'+'\\x20'+'\\x3c'+'\\x2f'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3e');return new Response(RM,{'\\x73\\x74\\x61\\x74\\x75\\x73':0xc8,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x74'+'\\x65'+'\\x78'+'\\x74'+'\\x2f'+'\\x68'+'\\x74'+'\\x6d'+'\\x6c'+'\\x3b'+'\\x20'+'\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x74'+'\\x3d'+'\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38'}});}async function Db(RY,RG){const RO=V||RG;const RF=await Dh(RO);if(RY['\\x62'+'\\x79'+'\\x74'+'\\x65'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']<0x38){return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x20'+'\\x64'+'\\x61'+'\\x74'+'\\x61'+'\\x20'+'\\x2d'+'\\x20'+'\\x74'+'\\x6f'+'\\x6f'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x72'+'\\x74')};}let Rt=0x38;if(new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x38,0x39))[0x0]!==0xd||new Uint8Array(RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x39,0x3a))[0x0]!==0xa){return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x20'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x66'+'\\x6f'+'\\x72'+'\\x6d'+'\\x61'+'\\x74'+'\\x20'+'\\x28'+'\\x6d'+'\\x69'+'\\x73'+'\\x73'+'\\x69'+'\\x6e'+'\\x67'+'\\x20'+'\\x43'+'\\x52'+'\\x20'+'\\x4c'+'\\x46'+'\\x29')};}const RK=new TextDecoder()['\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,Rt));if(RK!==RF){return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x20'+'\\x70'+'\\x61'+'\\x73'+'\\x73'+'\\x77'+'\\x6f'+'\\x72'+'\\x64')};}const Rq=RY['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rt+0x2);if(Rq['\\x62'+'\\x79'+'\\x74'+'\\x65'+'\\x4c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']<0x6){return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':atob('\\x61'+'\\x57'+'\\x35'+'\\x32'+'\\x59'+'\\x57'+'\\x78'+'\\x70'+'\\x5a'+'\\x43'+'\\x42'+'\\x54'+'\\x54'+'\\x30'+'\\x4e'+'\\x4c'+'\\x55'+'\\x7a'+'\\x55'+'\\x67'+'\\x63'+'\\x6d'+'\\x56'+'\\x78'+'\\x64'+'\\x57'+'\\x56'+'\\x7a'+'\\x64'+'\\x43'+'\\x42'+'\\x6b'+'\\x59'+'\\x58'+'\\x52'+'\\x68')};}const RI=new DataView(Rq);const RS=RI['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x38'](0x0);if(RS!==0x1){return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x75'+'\\x6e'+'\\x73'+'\\x75'+'\\x70'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x63'+'\\x6f'+'\\x6d'+'\\x6d'+'\\x61'+'\\x6e'+'\\x64'+'\\x2c'+'\\x20'+'\\x6f'+'\\x6e'+'\\x6c'+'\\x79'+'\\x20'+'\\x54'+'\\x43'+'\\x50'+'\\x20'+'\\x28'+'\\x43'+'\\x4f'+'\\x4e'+'\\x4e'+'\\x45'+'\\x43'+'\\x54'+'\\x29'+'\\x20'+'\\x69'+'\\x73'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x77'+'\\x65'+'\\x64'};}const RM=RI['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x38'](0x1);let Rg=0x0;let Ri=0x2;let RC='';switch(RM){case 0x1:Rg=0x4;RC=new Uint8Array(Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Ri,Ri+Rg))['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x2e');break;case 0x3:Rg=new Uint8Array(Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Ri,Ri+0x1))[0x0];Ri+=0x1;RC=new TextDecoder()['\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Ri,Ri+Rg));break;case 0x4:Rg=0x10;const RJ=new DataView(Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Ri,Ri+Rg));const RX=[];for(let RQ=0x0;RQ<0x8;RQ++){RX['\\x70'+'\\x75'+'\\x73'+'\\x68'](RJ['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x31'+'\\x36'](RQ*0x2)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10));}RC=RX['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x3a');break;default:return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x69'+'\\x73'+'\\x20'+RM};}if(!RC){return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x69'+'\\x73'+'\\x20'+'\\x65'+'\\x6d'+'\\x70'+'\\x74'+'\\x79'+'\\x2c'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x54'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x69'+'\\x73'+'\\x20'+RM};}const Rv=Ri+Rg;const Rd=Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rv,Rv+0x2);const RH=new DataView(Rd)['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x31'+'\\x36'](0x0);return{'\\x68\\x61\\x73\\x45\\x72\\x72\\x6f\\x72':![],'\\x61\\x64\\x64\\x72\\x65\\x73\\x73\\x52\\x65\\x6d\\x6f\\x74\\x65':RC,'\\x61\\x64\\x64\\x72\\x65\\x73\\x73\\x54\\x79\\x70\\x65':RM,'\\x70\\x6f\\x72\\x74':RH,'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':RC,'\\x72\\x61\\x77\\x43\\x6c\\x69\\x65\\x6e\\x74\\x44\\x61\\x74\\x61':Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](Rv+0x4)};}async function Dh(RY){const RG=new TextEncoder();const RO=RG['\\x65'+'\\x6e'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](RY);const RF=[0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5,0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5,0xd807aa98,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174,0xe49b69c1,0xefbe4786,0xfc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7,0xc6e00bf3,0xd5a79147,0x6ca6351,0x14292967,0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85,0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3,0xd192e819,0xd6990624,0xf40e3585,0x106aa070,0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208,0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2];let Rt=[0xc1059ed8,0x367cd507,0x3070dd17,0xf70e5939,0xffc00b31,0x68581511,0x64f98fa7,0xbefa4fa4];const RK=RO['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];const Rq=RK*0x8;const RI=Math['\\x63'+'\\x65'+'\\x69'+'\\x6c']((RK+0x9)/0x40)*0x40;const RS=new Uint8Array(RI);RS['\\x73'+'\\x65'+'\\x74'](RO);RS[RK]=0x80;const RM=new DataView(RS['\\x62'+'\\x75'+'\\x66'+'\\x66'+'\\x65'+'\\x72']);RM['\\x73'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x33'+'\\x32'](RI-0x4,Rq,![]);for(let Ri=0x0;Ri<RI;Ri+=0x40){const RC=new Uint32Array(0x40);for(let Rx=0x0;Rx<0x10;Rx++){RC[Rx]=RM['\\x67'+'\\x65'+'\\x74'+'\\x55'+'\\x69'+'\\x6e'+'\\x74'+'\\x33'+'\\x32'](Ri+Rx*0x4,![]);}for(let Ry=0x10;Ry<0x40;Ry++){const Rb=Dj(RC[Ry-0xf],0x7)^Dj(RC[Ry-0xf],0x12)^RC[Ry-0xf]>>>0x3;const Rh=Dj(RC[Ry-0x2],0x11)^Dj(RC[Ry-0x2],0x13)^RC[Ry-0x2]>>>0xa;RC[Ry]=RC[Ry-0x10]+Rb+RC[Ry-0x7]+Rh>>>0x0;}let [Rv,Rd,RH,RJ,RX,RQ,Rf,RV]=Rt;for(let Rj=0x0;Rj<0x40;Rj++){const Ru=Dj(RX,0x6)^Dj(RX,0xb)^Dj(RX,0x19);const RT=RX&RQ^~RX&Rf;const Rc=RV+Ru+RT+RF[Rj]+RC[Rj]>>>0x0;const Ro=Dj(Rv,0x2)^Dj(Rv,0xd)^Dj(Rv,0x16);const Ra=Rv&Rd^Rv&RH^Rd&RH;const RW=Ro+Ra>>>0x0;RV=Rf;Rf=RQ;RQ=RX;RX=RJ+Rc>>>0x0;RJ=RH;RH=Rd;Rd=Rv;Rv=Rc+RW>>>0x0;}Rt[0x0]=Rt[0x0]+Rv>>>0x0;Rt[0x1]=Rt[0x1]+Rd>>>0x0;Rt[0x2]=Rt[0x2]+RH>>>0x0;Rt[0x3]=Rt[0x3]+RJ>>>0x0;Rt[0x4]=Rt[0x4]+RX>>>0x0;Rt[0x5]=Rt[0x5]+RQ>>>0x0;Rt[0x6]=Rt[0x6]+Rf>>>0x0;Rt[0x7]=Rt[0x7]+RV>>>0x0;}const Rg=[];for(let RE=0x0;RE<0x7;RE++){Rg['\\x70'+'\\x75'+'\\x73'+'\\x68']((Rt[RE]>>>0x18&0xff)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10)['\\x70'+'\\x61'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'](0x2,'\\x30'),(Rt[RE]>>>0x10&0xff)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10)['\\x70'+'\\x61'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'](0x2,'\\x30'),(Rt[RE]>>>0x8&0xff)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10)['\\x70'+'\\x61'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'](0x2,'\\x30'),(Rt[RE]&0xff)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10)['\\x70'+'\\x61'+'\\x64'+'\\x53'+'\\x74'+'\\x61'+'\\x72'+'\\x74'](0x2,'\\x30'));}return Rg['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('');}function Dj(RY,RG){return RY>>>RG|RY<<0x20-RG;}let Du=0x0;const DT=0x80*0x400;const Dc=0x1388;const Do=0xafc8;const Da=0x2;const DW=0x20;function DE(RY){return new Promise(RG=>setTimeout(RG,RY));}function Dm(RY,RG){for(let RO=0x0;RO<0x10;RO++){if(RY[RO]!==RG[RO]){return![];}}return!![];}class DL{#total;constructor(){this.#total=0x0;}['\\x67'+'\\x65'+'\\x74'](){return this.#total;}['\\x61'+'\\x64'+'\\x64'](RY){this.#total+=RY;}}function DZ(RY,...RG){let RO=RY['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];for(let Rt of RG){RO+=Rt['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];}const RF=new RY['\\x63'+'\\x6f'+'\\x6e'+'\\x73'+'\\x74'+'\\x72'+'\\x75'+'\\x63'+'\\x74'+'\\x6f'+'\\x72'](RO);RF['\\x73'+'\\x65'+'\\x74'](RY,0x0);RO=RY['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];for(let RK of RG){RF['\\x73'+'\\x65'+'\\x74'](RK,RO);RO+=RK['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];}return RF;}function Dz(RY){RY=RY['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'+'\\x41'+'\\x6c'+'\\x6c']('\\x2d','');const RG=[];for(let RO=0x0;RO<0x10;RO++){const RF=parseInt(RY['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'](RO*0x2,0x2),0x10);RG['\\x70'+'\\x75'+'\\x73'+'\\x68'](RF);}return RG;}function Dw(RY){return new Uint8Array(new ArrayBuffer(RY||DT));}async function Dn(RY,RG){const RO=RY['\\x67'+'\\x65'+'\\x74'+'\\x52'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72']({'\\x6d\\x6f\\x64\\x65':'\\x62'+'\\x79'+'\\x6f'+'\\x62'});try{let RF=await RO['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x41'+'\\x74'+'\\x4c'+'\\x65'+'\\x61'+'\\x73'+'\\x74'](0x1+0x10+0x1,Dw());let Rt=0x0;let RK=0x0;let Rq=RF['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65'];Rt+=RF['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];const RI=Rq[0x0];const RS=Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x1,0x1+0x10);const RM=Dz(RG);if(!Dm(RS,RM)){return'\\x69'+'\\x6e'+'\\x76'+'\\x61'+'\\x6c'+'\\x69'+'\\x64'+'\\x20'+'\\x55'+'\\x55'+'\\x49'+'\\x44';}const Rg=Rq[0x1+0x10];const Ri=0x1+0x10+0x1+Rg+0x1+0x2+0x1;if(Ri+0x1>Rt){if(RF['\\x64'+'\\x6f'+'\\x6e'+'\\x65']){return'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x20'+'\\x74'+'\\x6f'+'\\x6f'+'\\x20'+'\\x73'+'\\x68'+'\\x6f'+'\\x72'+'\\x74';}RK=Ri+0x1-Rt;RF=await RO['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x41'+'\\x74'+'\\x4c'+'\\x65'+'\\x61'+'\\x73'+'\\x74'](RK,Dw());Rt+=RF['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];Rq=DZ(Rq,RF['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']);}const RC=Rq[0x1+0x10+0x1+Rg];if(RC!==0x1){return'\\x75'+'\\x6e'+'\\x73'+'\\x75'+'\\x70'+'\\x70'+'\\x6f'+'\\x72'+'\\x74'+'\\x65'+'\\x64'+'\\x20'+'\\x63'+'\\x6f'+'\\x6d'+'\\x6d'+'\\x61'+'\\x6e'+'\\x64'+'\\x3a'+'\\x20'+RC;}const Rv=(Rq[Ri-0x1-0x2]<<0x8)+Rq[Ri-0x1-0x1];const Rd=Rq[Ri-0x1];let RH=-0x1;if(Rd===B){RH=Ri+0x4;}else if(Rd===D1){RH=Ri+0x10;}else if(Rd===D0){RH=Ri+0x1+Rq[Ri];}if(RH<0x0){return'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x20'+'\\x66'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64';}RK=RH-Rt;if(RK>0x0){if(RF['\\x64'+'\\x6f'+'\\x6e'+'\\x65']){return'\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x20'+'\\x61'+'\\x64'+'\\x64'+'\\x72'+'\\x65'+'\\x73'+'\\x73'+'\\x20'+'\\x66'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64';}RF=await RO['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x41'+'\\x74'+'\\x4c'+'\\x65'+'\\x61'+'\\x73'+'\\x74'](RK,Dw());Rt+=RF['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];Rq=DZ(Rq,RF['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']);}let RJ='';RK=Ri;switch(Rd){case B:RJ=Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](RK,RK+0x4)['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x2e');break;case D0:RJ=new TextDecoder()['\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](RK+0x1,RK+0x1+Rq[RK]));break;case D1:RJ=Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](RK,RK+0x10)['\\x72'+'\\x65'+'\\x64'+'\\x75'+'\\x63'+'\\x65']((RQ,Rf,RV,Rx)=>RV%0x2?RQ['\\x63'+'\\x6f'+'\\x6e'+'\\x63'+'\\x61'+'\\x74'](((Rx[RV-0x1]<<0x8)+Rf)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10)):RQ,[])['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x3a');break;}if(RJ['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']<0x1){return'\\x66'+'\\x61'+'\\x69'+'\\x6c'+'\\x65'+'\\x64'+'\\x20'+'\\x74'+'\\x6f'+'\\x20'+'\\x70'+'\\x61'+'\\x72'+'\\x73'+'\\x65'+'\\x20'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65';}const RX=Rq['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](RH);return{'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':RJ,'\\x70\\x6f\\x72\\x74':Rv,'\\x64\\x61\\x74\\x61':RX,'\\x72\\x65\\x73\\x70':new Uint8Array([RI,0x0]),'\\x72\\x65\\x61\\x64\\x65\\x72':RO,'\\x64\\x6f\\x6e\\x65':RF['\\x64'+'\\x6f'+'\\x6e'+'\\x65']};}catch(RQ){try{RO['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();}catch(Rf){}throw RQ;}}async function Dp(RY,RG,RO){async function RF(Rt){if(!Rt||Rt['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){return;}RY['\\x61'+'\\x64'+'\\x64'](Rt['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']);try{await RG['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](Rt);}catch(RK){throw RK;}}try{await RF(RO['\\x64'+'\\x61'+'\\x74'+'\\x61']);let Rt=0x0;while(!RO['\\x64'+'\\x6f'+'\\x6e'+'\\x65']){const RK=await RO['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72']['\\x72'+'\\x65'+'\\x61'+'\\x64'](Dw());if(RK['\\x64'+'\\x6f'+'\\x6e'+'\\x65'])break;await RF(RK['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']);RO['\\x64'+'\\x6f'+'\\x6e'+'\\x65']=RK['\\x64'+'\\x6f'+'\\x6e'+'\\x65'];Rt++;if(Rt%0xa===0x0){await DE(0x0);}if(!RK['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']||RK['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){await DE(0x2);}}}catch(Rq){throw Rq;}}function DN(RY,RG){const RO=new DL();const RF=RG['\\x67'+'\\x65'+'\\x74'+'\\x57'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x72']();const Rt=((async()=>{try{await Dp(RO,RF,RY);}catch(RK){throw RK;}finally{try{await RF['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65']();}catch(Rq){}}})());return{'\\x63\\x6f\\x75\\x6e\\x74\\x65\\x72':RO,'\\x64\\x6f\\x6e\\x65':Rt,'\\x61\\x62\\x6f\\x72\\x74':()=>{try{RF['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74']();}catch(RK){}}};}function DU(RY,RG){const RO=new DL();let RF;const Rt=new Promise((RK,Rq)=>{RF=new TransformStream({'\\x73\\x74\\x61\\x72\\x74'(Ri){RO['\\x61'+'\\x64'+'\\x64'](RY['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']);Ri['\\x65'+'\\x6e'+'\\x71'+'\\x75'+'\\x65'+'\\x75'+'\\x65'](RY);},'\\x74\\x72\\x61\\x6e\\x73\\x66\\x6f\\x72\\x6d'(Ri,RC){RO['\\x61'+'\\x64'+'\\x64'](Ri['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']);RC['\\x65'+'\\x6e'+'\\x71'+'\\x75'+'\\x65'+'\\x75'+'\\x65'](Ri);},'\\x63\\x61\\x6e\\x63\\x65\\x6c'(Ri){Rq('\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x20'+'\\x63'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x6c'+'\\x6c'+'\\x65'+'\\x64'+'\\x3a'+'\\x20'+Ri);}},null,new ByteLengthQueuingStrategy({'\\x68\\x69\\x67\\x68\\x57\\x61\\x74\\x65\\x72\\x4d\\x61\\x72\\x6b':DT}));let RI=Date['\\x6e'+'\\x6f'+'\\x77']();const RS=setInterval(()=>{if(Date['\\x6e'+'\\x6f'+'\\x77']()-RI>Do){try{RF['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74']?.('\\x69'+'\\x64'+'\\x6c'+'\\x65'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74');}catch(Ri){}clearInterval(RS);Rq('\\x69'+'\\x64'+'\\x6c'+'\\x65'+'\\x20'+'\\x74'+'\\x69'+'\\x6d'+'\\x65'+'\\x6f'+'\\x75'+'\\x74');}},0x1388);const RM=RG['\\x67'+'\\x65'+'\\x74'+'\\x52'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72']();const Rg=RF['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x67'+'\\x65'+'\\x74'+'\\x57'+'\\x72'+'\\x69'+'\\x74'+'\\x65'+'\\x72']();;((async()=>{try{let Ri=0x0;while(!![]){const RC=await RM['\\x72'+'\\x65'+'\\x61'+'\\x64']();if(RC['\\x64'+'\\x6f'+'\\x6e'+'\\x65']){break;}RI=Date['\\x6e'+'\\x6f'+'\\x77']();await Rg['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x65'](RC['\\x76'+'\\x61'+'\\x6c'+'\\x75'+'\\x65']);Ri++;if(Ri%0x5===0x0){await DE(0x0);}}await Rg['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65']();RK();}catch(Rv){Rq(Rv);}finally{try{RM['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();}catch(Rd){}try{Rg['\\x72'+'\\x65'+'\\x6c'+'\\x65'+'\\x61'+'\\x73'+'\\x65'+'\\x4c'+'\\x6f'+'\\x63'+'\\x6b']();}catch(RH){}clearInterval(RS);}})());});return{'\\x72\\x65\\x61\\x64\\x61\\x62\\x6c\\x65':RF['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'],'\\x63\\x6f\\x75\\x6e\\x74\\x65\\x72':RO,'\\x64\\x6f\\x6e\\x65':Rt,'\\x61\\x62\\x6f\\x72\\x74':()=>{try{RF['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x63'+'\\x61'+'\\x6e'+'\\x63'+'\\x65'+'\\x6c']();}catch(RK){}try{RF['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74']();}catch(Rq){}}};}async function Dk(RY,...RG){let RO=0x0;let RF;const Rt=[RY['\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'],...RG['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RK=>RK&&RK!==RY['\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'])];for(const RK of Rt){if(!RK)continue;RO=0x0;while(RO<Da){RO++;try{const Rq=connect({'\\x68\\x6f\\x73\\x74\\x6e\\x61\\x6d\\x65':RK,'\\x70\\x6f\\x72\\x74':RY['\\x70'+'\\x6f'+'\\x72'+'\\x74']});const RI=DE(Dc)['\\x74'+'\\x68'+'\\x65'+'\\x6e'](()=>{throw new Error(atob('\\x59'+'\\x32'+'\\x39'+'\\x75'+'\\x62'+'\\x6d'+'\\x56'+'\\x6a'+'\\x64'+'\\x43'+'\\x42'+'\\x30'+'\\x61'+'\\x57'+'\\x31'+'\\x6c'+'\\x62'+'\\x33'+'\\x56'+'\\x30'));});await Promise['\\x72'+'\\x61'+'\\x63'+'\\x65']([Rq['\\x6f'+'\\x70'+'\\x65'+'\\x6e'+'\\x65'+'\\x64'],RI]);const RS=DN(RY,Rq['\\x77'+'\\x72'+'\\x69'+'\\x74'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']);const RM=DU(RY['\\x72'+'\\x65'+'\\x73'+'\\x70'],Rq['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65']);return{'\\x64\\x6f\\x77\\x6e\\x6c\\x6f\\x61\\x64\\x65\\x72':RM,'\\x75\\x70\\x6c\\x6f\\x61\\x64\\x65\\x72':RS,'\\x63\\x6c\\x6f\\x73\\x65':()=>{try{Rq['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65']();}catch(Rg){}}};}catch(Rg){RF=Rg;if(RO<Da){await DE(0x1f4*RO);}}}}return null;}async function Ds(RY,RG){if(Du>=DW){return new Response('\\x54'+'\\x6f'+'\\x6f'+'\\x20'+'\\x6d'+'\\x61'+'\\x6e'+'\\x79'+'\\x20'+'\\x63'+'\\x6f'+'\\x6e'+'\\x6e'+'\\x65'+'\\x63'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x73',{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1ad});}Du++;let RO=![];const RF=()=>{if(!RO){Du=Math['\\x6d'+'\\x61'+'\\x78'](0x0,Du-0x1);RO=!![];}};try{const Rt=await Dn(RY,RG);if(typeof Rt!=='\\x6f'+'\\x62'+'\\x6a'+'\\x65'+'\\x63'+'\\x74'||!Rt){return null;}const RK=await Dk(Rt,K,'\\x31'+'\\x33'+'\\x2e'+'\\x32'+'\\x33'+'\\x30'+'\\x2e'+'\\x33'+'\\x34'+'\\x2e'+'\\x33'+'\\x30');if(RK===null){return null;}const Rq=Promise['\\x72'+'\\x61'+'\\x63'+'\\x65']([((async()=>{try{await RK['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x72']['\\x64'+'\\x6f'+'\\x6e'+'\\x65'];}catch(RI){}})()),((async()=>{try{await RK['\\x75'+'\\x70'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x72']['\\x64'+'\\x6f'+'\\x6e'+'\\x65'];}catch(RI){}})()),DE(Do)['\\x74'+'\\x68'+'\\x65'+'\\x6e'](()=>{})])['\\x66'+'\\x69'+'\\x6e'+'\\x61'+'\\x6c'+'\\x6c'+'\\x79'](()=>{try{RK['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65']();}catch(RI){}try{RK['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x72']['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74']();}catch(RS){}try{RK['\\x75'+'\\x70'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x72']['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74']();}catch(RM){}RF();});return{'\\x72\\x65\\x61\\x64\\x61\\x62\\x6c\\x65':RK['\\x64'+'\\x6f'+'\\x77'+'\\x6e'+'\\x6c'+'\\x6f'+'\\x61'+'\\x64'+'\\x65'+'\\x72']['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x61'+'\\x62'+'\\x6c'+'\\x65'],'\\x63\\x6c\\x6f\\x73\\x65\\x64':Rq};}catch(RI){RF();return null;}}async function DA(RY){try{return await Ds(RY['\\x62'+'\\x6f'+'\\x64'+'\\x79'],t);}catch(RG){return null;}}function DP(RY){if(!RY)return{'\\x65\\x72\\x72\\x6f\\x72':null};try{RY=RY['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/-/g,'\\x2b')['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/_/g,'\\x2f');return{'\\x65\\x61\\x72\\x6c\\x79\\x44\\x61\\x74\\x61':Uint8Array['\\x66'+'\\x72'+'\\x6f'+'\\x6d'](atob(RY),RG=>RG['\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x43'+'\\x6f'+'\\x64'+'\\x65'+'\\x41'+'\\x74'](0x0))['\\x62'+'\\x75'+'\\x66'+'\\x66'+'\\x65'+'\\x72'],'\\x65\\x72\\x72\\x6f\\x72':null};}catch(RG){return{'\\x65\\x72\\x72\\x6f\\x72':RG};}}function Dl(RY){try{if(RY['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x79'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65']===0x1||RY['\\x72'+'\\x65'+'\\x61'+'\\x64'+'\\x79'+'\\x53'+'\\x74'+'\\x61'+'\\x74'+'\\x65']===0x2)RY['\\x63'+'\\x6c'+'\\x6f'+'\\x73'+'\\x65']();}catch(RG){}}const Dr=Array['\\x66'+'\\x72'+'\\x6f'+'\\x6d']({'\\x6c\\x65\\x6e\\x67\\x74\\x68':0x100},(RY,RG)=>(RG+0x100)['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x10)['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x1));function De(RY,RG=0x0){const RO=(Dr[RY[RG]]+Dr[RY[RG+0x1]]+Dr[RY[RG+0x2]]+Dr[RY[RG+0x3]]+'\\x2d'+Dr[RY[RG+0x4]]+Dr[RY[RG+0x5]]+'\\x2d'+Dr[RY[RG+0x6]]+Dr[RY[RG+0x7]]+'\\x2d'+Dr[RY[RG+0x8]]+Dr[RY[RG+0x9]]+'\\x2d'+Dr[RY[RG+0xa]]+Dr[RY[RG+0xb]]+Dr[RY[RG+0xc]]+Dr[RY[RG+0xd]]+Dr[RY[RG+0xe]]+Dr[RY[RG+0xf]])['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();if(!D2(RO))throw new TypeError(U);return RO;}async function DB(){const RY=H||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';try{const RG=RY['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2c')?RY['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](RS=>RS['\\x74'+'\\x72'+'\\x69'+'\\x6d']())['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RS=>RS):[RY];const RO=await RR(RG,'\\x34'+'\\x34'+'\\x33',0x1388);if(RO['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){const RS=[];const RM=/^(\\[[\\da-fA-F:]+\\]|[\\d.]+|[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?)*)(?::(\\d+))?(?:#(.+))?$/;for(const Rg of RO){const Ri=Rg['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](RM);if(Ri){RS['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':Ri[0x1],'\\x70\\x6f\\x72\\x74':parseInt(Ri[0x2]||'\\x34'+'\\x34'+'\\x33',0xa),'\\x6e\\x61\\x6d\\x65':Ri[0x3]?.['\\x74'+'\\x72'+'\\x69'+'\\x6d']()||Ri[0x1]});}}return RS;}const RF=await fetch(RY);if(!RF['\\x6f'+'\\x6b'])return[];const Rt=await RF['\\x74'+'\\x65'+'\\x78'+'\\x74']();const RK=[];const Rq=Rt['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\r/g,'')['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x0a');const RI=/^([^:]+):(\\d+)#(.*)$/;for(const RC of Rq){const Rv=RC['\\x74'+'\\x72'+'\\x69'+'\\x6d']();if(!Rv)continue;const Rd=Rv['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](RI);if(Rd){RK['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':Rd[0x1],'\\x70\\x6f\\x72\\x74':parseInt(Rd[0x2],0xa),'\\x6e\\x61\\x6d\\x65':Rd[0x3]['\\x74'+'\\x72'+'\\x69'+'\\x6d']()||Rd[0x1]});}}return RK;}catch(RH){return[];}}function R0(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[];const RI='\\x2f'+'\\x3f'+'\\x65'+'\\x64'+'\\x3d'+'\\x32'+'\\x30'+'\\x34'+'\\x38';const RS=atob('\\x64'+'\\x6d'+'\\x78'+'\\x6c'+'\\x63'+'\\x33'+'\\x4d'+'\\x3d');RY['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RM=>{const Rg=RM['\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\s/g,'\\x5f');const Ri=RM['\\x70'+'\\x6f'+'\\x72'+'\\x74'];if(RK['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](Ri)){const RC=Rg+'\\x2d'+Ri+('\\x2d'+'\\x57'+'\\x53'+'\\x2d'+'\\x54'+'\\x4c'+'\\x53');let Rv=RS+('\\x3a'+'\\x2f'+'\\x2f')+RG+'\\x40'+RM['\\x69'+'\\x70']+'\\x3a'+Ri+('\\x3f'+'\\x65'+'\\x6e'+'\\x63'+'\\x72'+'\\x79'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x74'+'\\x6c'+'\\x73'+'\\x26'+'\\x73'+'\\x6e'+'\\x69'+'\\x3d')+RO+('\\x26'+'\\x66'+'\\x70'+'\\x3d')+(x?'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65':'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x69'+'\\x7a'+'\\x65'+'\\x64')+('\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d')+RO+('\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d')+RI;if(x){const Rd=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const RH=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rv+='\\x26'+'\\x61'+'\\x6c'+'\\x70'+'\\x6e'+'\\x3d'+'\\x68'+'\\x33'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x32'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x25'+'\\x32'+'\\x46'+'\\x31'+'\\x2e'+'\\x31'+'\\x26'+'\\x65'+'\\x63'+'\\x68'+'\\x3d'+encodeURIComponent(RH+'\\x2b'+Rd);}Rv+='\\x23'+encodeURIComponent(RC);Rq['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rv);}else if(Rt['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](Ri)){if(!g){const RJ=Rg+'\\x2d'+Ri+('\\x2d'+'\\x57'+'\\x53');const RX=RS+('\\x3a'+'\\x2f'+'\\x2f')+RG+'\\x40'+RM['\\x69'+'\\x70']+'\\x3a'+Ri+('\\x3f'+'\\x65'+'\\x6e'+'\\x63'+'\\x72'+'\\x79'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d')+RO+('\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d')+RI+'\\x23'+encodeURIComponent(RJ);Rq['\\x70'+'\\x75'+'\\x73'+'\\x68'](RX);}}else{const RQ=Rg+'\\x2d'+Ri+('\\x2d'+'\\x57'+'\\x53'+'\\x2d'+'\\x54'+'\\x4c'+'\\x53');let Rf=RS+('\\x3a'+'\\x2f'+'\\x2f')+RG+'\\x40'+RM['\\x69'+'\\x70']+'\\x3a'+Ri+('\\x3f'+'\\x65'+'\\x6e'+'\\x63'+'\\x72'+'\\x79'+'\\x70'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x74'+'\\x6c'+'\\x73'+'\\x26'+'\\x73'+'\\x6e'+'\\x69'+'\\x3d')+RO+('\\x26'+'\\x66'+'\\x70'+'\\x3d')+(x?'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65':'\\x72'+'\\x61'+'\\x6e'+'\\x64'+'\\x6f'+'\\x6d'+'\\x69'+'\\x7a'+'\\x65'+'\\x64')+('\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d')+RO+('\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d')+RI;if(x){const RV=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const Rx=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rf+='\\x26'+'\\x61'+'\\x6c'+'\\x70'+'\\x6e'+'\\x3d'+'\\x68'+'\\x33'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x32'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x25'+'\\x32'+'\\x46'+'\\x31'+'\\x2e'+'\\x31'+'\\x26'+'\\x65'+'\\x63'+'\\x68'+'\\x3d'+encodeURIComponent(Rx+'\\x2b'+RV);}Rf+='\\x23'+encodeURIComponent(RQ);Rq['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rf);}});return Rq;}function R1(RY,RG,RO,RF=null){const Rt=[];const RK=RG['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,0x8);RY['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](Rq=>{let RI=Rq['\\x69'+'\\x73'+'\\x70']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\s/g,'\\x5f');if(Rq['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']&&Rq['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){RI=RI+'\\x2d'+Rq['\\x63'+'\\x6f'+'\\x6c'+'\\x6f']['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const RS=Rq['\\x69'+'\\x70']['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x3a')?'\\x5b'+Rq['\\x69'+'\\x70']+'\\x5d':Rq['\\x69'+'\\x70'];const RM=Rq['\\x70'+'\\x6f'+'\\x72'+'\\x74']||0x1bb;const Rg=RI+'\\x2d'+RM+('\\x2d'+'\\x78'+'\\x68'+'\\x74'+'\\x74'+'\\x70');const Ri=new URLSearchParams({'\\x65\\x6e\\x63\\x72\\x79\\x70\\x74\\x69\\x6f\\x6e':'\\x6e'+'\\x6f'+'\\x6e'+'\\x65','\\x73\\x65\\x63\\x75\\x72\\x69\\x74\\x79':'\\x74'+'\\x6c'+'\\x73','\\x73\\x6e\\x69':RO,'\\x66\\x70':'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65','\\x74\\x79\\x70\\x65':'\\x78'+'\\x68'+'\\x74'+'\\x74'+'\\x70','\\x68\\x6f\\x73\\x74':RO,'\\x70\\x61\\x74\\x68':'\\x2f'+RK,'\\x6d\\x6f\\x64\\x65':'\\x73'+'\\x74'+'\\x72'+'\\x65'+'\\x61'+'\\x6d'+'\\x2d'+'\\x6f'+'\\x6e'+'\\x65'});if(x){const RC=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const Rv=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Ri['\\x73'+'\\x65'+'\\x74']('\\x61'+'\\x6c'+'\\x70'+'\\x6e','\\x68'+'\\x33'+'\\x2c'+'\\x68'+'\\x32'+'\\x2c'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x2f'+'\\x31'+'\\x2e'+'\\x31');Ri['\\x73'+'\\x65'+'\\x74']('\\x65'+'\\x63'+'\\x68',Rv+'\\x2b'+RC);}Rt['\\x70'+'\\x75'+'\\x73'+'\\x68']('\\x76'+'\\x6c'+'\\x65'+'\\x73'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+RG+'\\x40'+RS+'\\x3a'+RM+'\\x3f'+Ri['\\x74'+'\\x6f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()+'\\x23'+encodeURIComponent(Rg));});return Rt;}async function R2(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[];const RI='\\x2f'+'\\x3f'+'\\x65'+'\\x64'+'\\x3d'+'\\x32'+'\\x30'+'\\x34'+'\\x38';const RS=V||RG;RY['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RM=>{const Rg=RM['\\x6e'+'\\x61'+'\\x6d'+'\\x65']['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/\\s/g,'\\x5f');const Ri=RM['\\x70'+'\\x6f'+'\\x72'+'\\x74'];if(RK['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](Ri)){const RC=Rg+'\\x2d'+Ri+'\\x2d'+atob('\\x56'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x2d'+'\\x57'+'\\x53'+'\\x2d'+'\\x54'+'\\x4c'+'\\x53');let Rv=''+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75'+'\\x4f'+'\\x69'+'\\x38'+'\\x76')+RS+'\\x40'+RM['\\x69'+'\\x70']+'\\x3a'+Ri+('\\x3f'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x74'+'\\x6c'+'\\x73'+'\\x26'+'\\x73'+'\\x6e'+'\\x69'+'\\x3d')+RO+('\\x26'+'\\x66'+'\\x70'+'\\x3d'+'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d')+RO+('\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d')+RI;if(x){const Rd=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const RH=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rv+='\\x26'+'\\x61'+'\\x6c'+'\\x70'+'\\x6e'+'\\x3d'+'\\x68'+'\\x33'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x32'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x25'+'\\x32'+'\\x46'+'\\x31'+'\\x2e'+'\\x31'+'\\x26'+'\\x65'+'\\x63'+'\\x68'+'\\x3d'+encodeURIComponent(RH+'\\x2b'+Rd);}Rv+='\\x23'+encodeURIComponent(RC);Rq['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rv);}else if(Rt['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73'](Ri)){if(!g){const RJ=Rg+'\\x2d'+Ri+'\\x2d'+atob('\\x56'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x2d'+'\\x57'+'\\x53');const RX=''+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75'+'\\x4f'+'\\x69'+'\\x38'+'\\x76')+RS+'\\x40'+RM['\\x69'+'\\x70']+'\\x3a'+Ri+('\\x3f'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x6e'+'\\x6f'+'\\x6e'+'\\x65'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d')+RO+('\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d')+RI+'\\x23'+encodeURIComponent(RJ);Rq['\\x70'+'\\x75'+'\\x73'+'\\x68'](RX);}}else{const RQ=Rg+'\\x2d'+Ri+'\\x2d'+atob('\\x56'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75')+('\\x2d'+'\\x57'+'\\x53'+'\\x2d'+'\\x54'+'\\x4c'+'\\x53');let Rf=''+atob('\\x64'+'\\x48'+'\\x4a'+'\\x76'+'\\x61'+'\\x6d'+'\\x46'+'\\x75'+'\\x4f'+'\\x69'+'\\x38'+'\\x76')+RS+'\\x40'+RM['\\x69'+'\\x70']+'\\x3a'+Ri+('\\x3f'+'\\x73'+'\\x65'+'\\x63'+'\\x75'+'\\x72'+'\\x69'+'\\x74'+'\\x79'+'\\x3d'+'\\x74'+'\\x6c'+'\\x73'+'\\x26'+'\\x73'+'\\x6e'+'\\x69'+'\\x3d')+RO+('\\x26'+'\\x66'+'\\x70'+'\\x3d'+'\\x63'+'\\x68'+'\\x72'+'\\x6f'+'\\x6d'+'\\x65'+'\\x26'+'\\x74'+'\\x79'+'\\x70'+'\\x65'+'\\x3d'+'\\x77'+'\\x73'+'\\x26'+'\\x68'+'\\x6f'+'\\x73'+'\\x74'+'\\x3d')+RO+('\\x26'+'\\x70'+'\\x61'+'\\x74'+'\\x68'+'\\x3d')+RI;if(x){const RV=y||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';const Rx=b||'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';Rf+='\\x26'+'\\x61'+'\\x6c'+'\\x70'+'\\x6e'+'\\x3d'+'\\x68'+'\\x33'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x32'+'\\x25'+'\\x32'+'\\x43'+'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x25'+'\\x32'+'\\x46'+'\\x31'+'\\x2e'+'\\x31'+'\\x26'+'\\x65'+'\\x63'+'\\x68'+'\\x3d'+encodeURIComponent(Rx+'\\x2b'+RV);}Rf+='\\x23'+encodeURIComponent(RQ);Rq['\\x70'+'\\x75'+'\\x73'+'\\x68'](Rf);}});return Rq;}async function R3(RY){if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x47'+'\\x45'+'\\x54'){if(!o){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e','\\x6b\\x76\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64':![]}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f7,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({...a,'\\x6b\\x76\\x45\\x6e\\x61\\x62\\x6c\\x65\\x64':!![]}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}else if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x50'+'\\x4f'+'\\x53'+'\\x54'){if(!o){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e'+'\\uff0c'+'\\u65e0'+'\\u6cd5'+'\\u4fdd'+'\\u5b58'+'\\u914d'+'\\u7f6e'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f7,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}try{const RG=await RY['\\x6a'+'\\x73'+'\\x6f'+'\\x6e']();for(const [Rt,RK]of Object['\\x65'+'\\x6e'+'\\x74'+'\\x72'+'\\x69'+'\\x65'+'\\x73'](RG)){if(RK===''||RK===null||RK===undefined){delete a[Rt];}else{a[Rt]=RK;}}await D6();R5();if(RG['\\x79'+'\\x78']!==undefined){R6();}const RO=D7('\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c','')||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';const RF='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';if(RO!==RF){m['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']=0x0;I=[];S=[];}else{E=[{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x55'+'\\x53'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x55'+'\\x53','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x55'+'\\x53','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x53'+'\\x47'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x53'+'\\x47','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x53'+'\\x47','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4a'+'\\x50'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4a'+'\\x50','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4a'+'\\x50','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4b'+'\\x52'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4b'+'\\x52','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4b'+'\\x52','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x44'+'\\x45'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x44'+'\\x45','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x44'+'\\x45','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x53'+'\\x45'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x53'+'\\x45','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x53'+'\\x45','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4e'+'\\x4c'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4e'+'\\x4c','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4e'+'\\x4c','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x46'+'\\x49'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x46'+'\\x49','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x46'+'\\x49','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x47'+'\\x42'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x47'+'\\x42','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x47'+'\\x42','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65'+'\\x2e'+'\\x63'+'\\x6d'+'\\x6c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4f'+'\\x72'+'\\x61'+'\\x63'+'\\x6c'+'\\x65','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x44'+'\\x69'+'\\x67'+'\\x69'+'\\x74'+'\\x61'+'\\x6c'+'\\x4f'+'\\x63'+'\\x65'+'\\x61'+'\\x6e','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x56'+'\\x75'+'\\x6c'+'\\x74'+'\\x72','\\x70\\x6f\\x72\\x74':0x1bb},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x50'+'\\x72'+'\\x6f'+'\\x78'+'\\x79'+'\\x49'+'\\x50'+'\\x2e'+'\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2e'+'\\x43'+'\\x4d'+'\\x4c'+'\\x69'+'\\x75'+'\\x73'+'\\x73'+'\\x73'+'\\x73'+'\\x2e'+'\\x6e'+'\\x65'+'\\x74','\\x72\\x65\\x67\\x69\\x6f\\x6e':'\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d','\\x72\\x65\\x67\\x69\\x6f\\x6e\\x43\\x6f\\x64\\x65':'\\x4d'+'\\x75'+'\\x6c'+'\\x74'+'\\x61'+'\\x63'+'\\x6f'+'\\x6d','\\x70\\x6f\\x72\\x74':0x1bb}];m['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']=0x0;m['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x6e\\x61\\x6d\\x65':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2e'+'\\x31'+'\\x38'+'\\x32'+'\\x36'+'\\x38'+'\\x32'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a','\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2e'+'\\x31'+'\\x38'+'\\x32'+'\\x36'+'\\x38'+'\\x32'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x6e\\x61\\x6d\\x65':'\\x73'+'\\x70'+'\\x65'+'\\x65'+'\\x64'+'\\x2e'+'\\x6d'+'\\x61'+'\\x72'+'\\x69'+'\\x73'+'\\x61'+'\\x6c'+'\\x6e'+'\\x63'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d','\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x73'+'\\x70'+'\\x65'+'\\x65'+'\\x64'+'\\x2e'+'\\x6d'+'\\x61'+'\\x72'+'\\x69'+'\\x73'+'\\x61'+'\\x6c'+'\\x6e'+'\\x63'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x66'+'\\x72'+'\\x65'+'\\x65'+'\\x79'+'\\x78'+'\\x2e'+'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x38'+'\\x38'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x63'+'\\x66'+'\\x2e'+'\\x74'+'\\x6f'+'\\x70'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x32'+'\\x30'+'\\x32'+'\\x30'+'\\x31'+'\\x31'+'\\x31'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x69'+'\\x70'+'\\x2e'+'\\x63'+'\\x66'+'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x76'+'\\x69'+'\\x70'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x30'+'\\x73'+'\\x6d'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x30'+'\\x39'+'\\x30'+'\\x32'+'\\x32'+'\\x37'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x7a'+'\\x68'+'\\x65'+'\\x74'+'\\x65'+'\\x6e'+'\\x67'+'\\x73'+'\\x68'+'\\x61'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2e'+'\\x39'+'\\x6a'+'\\x79'+'\\x2e'+'\\x63'+'\\x63'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x7a'+'\\x65'+'\\x72'+'\\x6f'+'\\x6e'+'\\x65'+'\\x2d'+'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x70'+'\\x70'+'\\x2e'+'\\x75'+'\\x61'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x69'+'\\x70'+'\\x2e'+'\\x31'+'\\x33'+'\\x32'+'\\x33'+'\\x31'+'\\x32'+'\\x33'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x66'+'\\x75'+'\\x63'+'\\x6b'+'\\x78'+'\\x78'+'\\x73'+'\\x2e'+'\\x79'+'\\x75'+'\\x63'+'\\x68'+'\\x65'+'\\x6e'+'\\x2e'+'\\x69'+'\\x63'+'\\x75'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x69'+'\\x70'+'\\x2e'+'\\x6d'+'\\x6f'+'\\x66'+'\\x61'+'\\x73'+'\\x68'+'\\x69'+'\\x2e'+'\\x6c'+'\\x74'+'\\x64'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x31'+'\\x31'+'\\x35'+'\\x31'+'\\x35'+'\\x35'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x6e'+'\\x61'+'\\x6d'+'\\x65'+'\\x2e'+'\\x78'+'\\x69'+'\\x72'+'\\x61'+'\\x6e'+'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x75'+'\\x73'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x66'+'\\x33'+'\\x30'+'\\x35'+'\\x38'+'\\x31'+'\\x37'+'\\x31'+'\\x63'+'\\x61'+'\\x64'+'\\x2e'+'\\x30'+'\\x30'+'\\x32'+'\\x34'+'\\x30'+'\\x34'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x38'+'\\x2e'+'\\x38'+'\\x38'+'\\x39'+'\\x32'+'\\x38'+'\\x38'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x64'+'\\x6e'+'\\x2e'+'\\x74'+'\\x7a'+'\\x70'+'\\x72'+'\\x6f'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x63'+'\\x66'+'\\x2e'+'\\x38'+'\\x37'+'\\x37'+'\\x37'+'\\x37'+'\\x31'+'\\x2e'+'\\x78'+'\\x79'+'\\x7a'},{'\\x64\\x6f\\x6d\\x61\\x69\\x6e':'\\x78'+'\\x6e'+'\\x2d'+'\\x2d'+'\\x62'+'\\x36'+'\\x67'+'\\x61'+'\\x63'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'});}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u914d'+'\\u7f6e'+'\\u5df2'+'\\u4fdd'+'\\u5b58','\\x63\\x6f\\x6e\\x66\\x69\\x67':a}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}catch(Rq){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u4fdd'+'\\u5b58'+'\\u914d'+'\\u7f6e'+'\\u5931'+'\\u8d25'+'\\x3a'+'\\x20'+Rq['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65']}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f4,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x65\\x72\\x72\\x6f\\x72':'\\x4d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64'+'\\x20'+'\\x6e'+'\\x6f'+'\\x74'+'\\x20'+'\\x61'+'\\x6c'+'\\x6c'+'\\x6f'+'\\x77'+'\\x65'+'\\x64'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x195,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}async function R4(RY){if(!o){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u672a'+'\\u914d'+'\\u7f6e','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u9700'+'\\u8981'+'\\u914d'+'\\u7f6e'+'\\x4b'+'\\x56'+'\\u5b58'+'\\u50a8'+'\\u624d'+'\\u80fd'+'\\u4f7f'+'\\u7528'+'\\u6b64'+'\\u529f'+'\\u80fd'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f7,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}const RG=D7('\\x61'+'\\x65','')==='\\x79'+'\\x65'+'\\x73';if(!RG){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\x41'+'\\x50'+'\\x49'+'\\u529f'+'\\u80fd'+'\\u672a'+'\\u542f'+'\\u7528','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u51fa'+'\\u4e8e'+'\\u5b89'+'\\u5168'+'\\u8003'+'\\u8651'+'\\uff0c'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\x20'+'\\x41'+'\\x50'+'\\x49'+'\\u529f'+'\\u80fd'+'\\u9ed8'+'\\u8ba4'+'\\u5173'+'\\u95ed'+'\\u3002'+'\\u8bf7'+'\\u5728'+'\\u914d'+'\\u7f6e'+'\\u7ba1'+'\\u7406'+'\\u9875'+'\\u9762'+'\\u5f00'+'\\u542f'+'\\x22'+'\\u5141'+'\\u8bb8'+'\\x41'+'\\x50'+'\\x49'+'\\u7ba1'+'\\u7406'+'\\x22'+'\\u9009'+'\\u9879'+'\\u540e'+'\\u4f7f'+'\\u7528'+'\\u3002'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x193,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}try{if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x47'+'\\x45'+'\\x54'){const RO=D7('\\x79'+'\\x78','');const RF=R7(RO);return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':!![],'\\x63\\x6f\\x75\\x6e\\x74':RF['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],'\\x64\\x61\\x74\\x61':RF}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}else if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x50'+'\\x4f'+'\\x53'+'\\x54'){const Rt=await RY['\\x6a'+'\\x73'+'\\x6f'+'\\x6e']();const RK=Array['\\x69'+'\\x73'+'\\x41'+'\\x72'+'\\x72'+'\\x61'+'\\x79'](Rt)?Rt:[Rt];if(RK['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\u8bf7'+'\\u6c42'+'\\u6570'+'\\u636e'+'\\u4e3a'+'\\u7a7a','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u8bf7'+'\\u63d0'+'\\u4f9b'+'\\x49'+'\\x50'+'\\u6570'+'\\u636e'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x190,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}const Rq=D7('\\x79'+'\\x78','');let RI=R7(Rq);const RS=[];const RM=[];const Rg=[];for(const Ri of RK){if(!Ri['\\x69'+'\\x70']){Rg['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':'\\u672a'+'\\u77e5','\\x72\\x65\\x61\\x73\\x6f\\x6e':'\\x49'+'\\x50'+'\\u5730'+'\\u5740'+'\\u662f'+'\\u5fc5'+'\\u9700'+'\\u7684'});continue;}const RC=Ri['\\x70'+'\\x6f'+'\\x72'+'\\x74']||0x1bb;const Rv=Ri['\\x6e'+'\\x61'+'\\x6d'+'\\x65']||'\\x41'+'\\x50'+'\\x49'+'\\u4f18'+'\\u9009'+'\\x2d'+Ri['\\x69'+'\\x70']+'\\x3a'+RC;if(!D3(Ri['\\x69'+'\\x70'])&&!R9(Ri['\\x69'+'\\x70'])){Rg['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':Ri['\\x69'+'\\x70'],'\\x72\\x65\\x61\\x73\\x6f\\x6e':'\\u65e0'+'\\u6548'+'\\u7684'+'\\x49'+'\\x50'+'\\u6216'+'\\u57df'+'\\u540d'+'\\u683c'+'\\u5f0f'});continue;}const Rd=RI['\\x73'+'\\x6f'+'\\x6d'+'\\x65'](RJ=>RJ['\\x69'+'\\x70']===Ri['\\x69'+'\\x70']&&RJ['\\x70'+'\\x6f'+'\\x72'+'\\x74']===RC);if(Rd){RM['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':Ri['\\x69'+'\\x70'],'\\x70\\x6f\\x72\\x74':RC,'\\x72\\x65\\x61\\x73\\x6f\\x6e':'\\u5df2'+'\\u5b58'+'\\u5728'});continue;}const RH={'\\x69\\x70':Ri['\\x69'+'\\x70'],'\\x70\\x6f\\x72\\x74':RC,'\\x6e\\x61\\x6d\\x65':Rv,'\\x61\\x64\\x64\\x65\\x64\\x41\\x74':new Date()['\\x74'+'\\x6f'+'\\x49'+'\\x53'+'\\x4f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()};RI['\\x70'+'\\x75'+'\\x73'+'\\x68'](RH);RS['\\x70'+'\\x75'+'\\x73'+'\\x68'](RH);}if(RS['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){const RJ=R8(RI);await D8('\\x79'+'\\x78',RJ);R6();}return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':RS['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0,'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u6210'+'\\u529f'+'\\u6dfb'+'\\u52a0'+'\\x20'+RS['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']+('\\x20'+'\\u4e2a'+'\\x49'+'\\x50'),'\\x61\\x64\\x64\\x65\\x64':RS['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],'\\x73\\x6b\\x69\\x70\\x70\\x65\\x64':RM['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],'\\x65\\x72\\x72\\x6f\\x72\\x73':Rg['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'],'\\x64\\x61\\x74\\x61':{'\\x61\\x64\\x64\\x65\\x64\\x49\\x50\\x73':RS,'\\x73\\x6b\\x69\\x70\\x70\\x65\\x64\\x49\\x50\\x73':RM['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0?RM:undefined,'\\x65\\x72\\x72\\x6f\\x72\\x73':Rg['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0?Rg:undefined}}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}else if(RY['\\x6d'+'\\x65'+'\\x74'+'\\x68'+'\\x6f'+'\\x64']==='\\x44'+'\\x45'+'\\x4c'+'\\x45'+'\\x54'+'\\x45'){const RX=await RY['\\x6a'+'\\x73'+'\\x6f'+'\\x6e']();if(RX['\\x61'+'\\x6c'+'\\x6c']===!![]){const Rh=D7('\\x79'+'\\x78','');const Rj=R7(Rh);const Ru=Rj['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];await D8('\\x79'+'\\x78','');R6();return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u5df2'+'\\u6e05'+'\\u7a7a'+'\\u6240'+'\\u6709'+'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\uff0c'+'\\u5171'+'\\u5220'+'\\u9664'+'\\x20'+Ru+('\\x20'+'\\u4e2a'),'\\x64\\x65\\x6c\\x65\\x74\\x65\\x64\\x43\\x6f\\x75\\x6e\\x74':Ru}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}if(!RX['\\x69'+'\\x70']){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\x49'+'\\x50'+'\\u5730'+'\\u5740'+'\\u662f'+'\\u5fc5'+'\\u9700'+'\\u7684','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u8bf7'+'\\u63d0'+'\\u4f9b'+'\\u8981'+'\\u5220'+'\\u9664'+'\\u7684'+'\\x69'+'\\x70'+'\\u5b57'+'\\u6bb5'+'\\uff0c'+'\\u6216'+'\\u4f7f'+'\\u7528'+'\\x20'+'\\x7b'+'\\x22'+'\\x61'+'\\x6c'+'\\x6c'+'\\x22'+'\\x3a'+'\\x20'+'\\x74'+'\\x72'+'\\x75'+'\\x65'+'\\x7d'+'\\x20'+'\\u6e05'+'\\u7a7a'+'\\u6240'+'\\u6709'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x190,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}const RQ=RX['\\x70'+'\\x6f'+'\\x72'+'\\x74']||0x1bb;const Rf=D7('\\x79'+'\\x78','');let RV=R7(Rf);const Rx=RV['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'];const Ry=RV['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RT=>!(RT['\\x69'+'\\x70']===RX['\\x69'+'\\x70']&&RT['\\x70'+'\\x6f'+'\\x72'+'\\x74']===RQ));if(Ry['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===Rx){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u4e0d'+'\\u5b58'+'\\u5728','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':RX['\\x69'+'\\x70']+'\\x3a'+RQ+('\\x20'+'\\u672a'+'\\u627e'+'\\u5230')}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x194,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}const Rb=R8(Ry);await D8('\\x79'+'\\x78',Rb);R6();return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':!![],'\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u4f18'+'\\u9009'+'\\x49'+'\\x50'+'\\u5df2'+'\\u5220'+'\\u9664','\\x64\\x65\\x6c\\x65\\x74\\x65\\x64':{'\\x69\\x70':RX['\\x69'+'\\x70'],'\\x70\\x6f\\x72\\x74':RQ}}),{'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}else{return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\u4e0d'+'\\u652f'+'\\u6301'+'\\u7684'+'\\u8bf7'+'\\u6c42'+'\\u65b9'+'\\u6cd5','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':'\\u652f'+'\\u6301'+'\\u7684'+'\\u65b9'+'\\u6cd5'+'\\x3a'+'\\x20'+'\\x47'+'\\x45'+'\\x54'+'\\x2c'+'\\x20'+'\\x50'+'\\x4f'+'\\x53'+'\\x54'+'\\x2c'+'\\x20'+'\\x44'+'\\x45'+'\\x4c'+'\\x45'+'\\x54'+'\\x45'}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x195,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}catch(RT){return new Response(JSON['\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'+'\\x69'+'\\x66'+'\\x79']({'\\x73\\x75\\x63\\x63\\x65\\x73\\x73':![],'\\x65\\x72\\x72\\x6f\\x72':'\\u5904'+'\\u7406'+'\\u8bf7'+'\\u6c42'+'\\u5931'+'\\u8d25','\\x6d\\x65\\x73\\x73\\x61\\x67\\x65':RT['\\x6d'+'\\x65'+'\\x73'+'\\x73'+'\\x61'+'\\x67'+'\\x65']}),{'\\x73\\x74\\x61\\x74\\x75\\x73':0x1f4,'\\x68\\x65\\x61\\x64\\x65\\x72\\x73':{'\\x43\\x6f\\x6e\\x74\\x65\\x6e\\x74\\x2d\\x54\\x79\\x70\\x65':'\\x61'+'\\x70'+'\\x70'+'\\x6c'+'\\x69'+'\\x63'+'\\x61'+'\\x74'+'\\x69'+'\\x6f'+'\\x6e'+'\\x2f'+'\\x6a'+'\\x73'+'\\x6f'+'\\x6e'}});}}function R5(){const RY=D7('\\x77'+'\\x6b','');if(RY&&RY['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){d=RY['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x74'+'\\x6f'+'\\x55'+'\\x70'+'\\x70'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();v=d;}else{const RH=D7('\\x70','');if(RH&&RH['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){v='\\x43'+'\\x55'+'\\x53'+'\\x54'+'\\x4f'+'\\x4d';}else{d='';}}const RG=D7('\\x72'+'\\x6d','');if(RG&&RG['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x6e'+'\\x6f'){C=![];}else{C=!![];}const RO=D7('\\x65'+'\\x76','');if(RO!==undefined&&RO!==''){X=RO==='\\x79'+'\\x65'+'\\x73'||RO===!![]||RO==='\\x74'+'\\x72'+'\\x75'+'\\x65';}const RF=D7('\\x65'+'\\x74','');if(RF!==undefined&&RF!==''){Q=RF==='\\x79'+'\\x65'+'\\x73'||RF===!![]||RF==='\\x74'+'\\x72'+'\\x75'+'\\x65';}V=D7('\\x74'+'\\x70','')||'';const Rt=D7('\\x65'+'\\x78','');if(Rt!==undefined&&Rt!==''){f=Rt==='\\x79'+'\\x65'+'\\x73'||Rt===!![]||Rt==='\\x74'+'\\x72'+'\\x75'+'\\x65';}if(!X&&!Q&&!f){X=!![];}h=D7('\\x73'+'\\x63'+'\\x75','')||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x75'+'\\x72'+'\\x6c'+'\\x2e'+'\\x76'+'\\x31'+'\\x2e'+'\\x6d'+'\\x6b'+'\\x2f'+'\\x73'+'\\x75'+'\\x62';const RK=D7('\\x65'+'\\x70'+'\\x64','\\x6e'+'\\x6f');if(RK!==undefined&&RK!==''){u=RK!=='\\x6e'+'\\x6f'&&RK!==![]&&RK!=='\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65';}const Rq=D7('\\x65'+'\\x70'+'\\x69','');if(Rq!==undefined&&Rq!==''){T=Rq!=='\\x6e'+'\\x6f'&&Rq!==![]&&Rq!=='\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65';}const RI=D7('\\x65'+'\\x67'+'\\x69','');if(RI!==undefined&&RI!==''){c=RI!=='\\x6e'+'\\x6f'&&RI!==![]&&RI!=='\\x66'+'\\x61'+'\\x6c'+'\\x73'+'\\x65';}const RS=D7('\\x65'+'\\x63'+'\\x68','');if(RS!==undefined&&RS!==''){x=RS==='\\x79'+'\\x65'+'\\x73'||RS===!![]||RS==='\\x74'+'\\x72'+'\\x75'+'\\x65';}const RM=D7('\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x44'+'\\x4e'+'\\x53','');if(RM&&RM['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){y=RM['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}else{y='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x64'+'\\x6e'+'\\x73'+'\\x2e'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67'+'\\x2e'+'\\x65'+'\\x75'+'\\x2e'+'\\x6f'+'\\x72'+'\\x67'+'\\x2f'+'\\x6a'+'\\x6f'+'\\x65'+'\\x79'+'\\x62'+'\\x6c'+'\\x6f'+'\\x67';}const Rg=D7('\\x63'+'\\x75'+'\\x73'+'\\x74'+'\\x6f'+'\\x6d'+'\\x45'+'\\x43'+'\\x48'+'\\x44'+'\\x6f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e','');if(Rg&&Rg['\\x74'+'\\x72'+'\\x69'+'\\x6d']()){b=Rg['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}else{b='\\x63'+'\\x6c'+'\\x6f'+'\\x75'+'\\x64'+'\\x66'+'\\x6c'+'\\x61'+'\\x72'+'\\x65'+'\\x2d'+'\\x65'+'\\x63'+'\\x68'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d';}if(x){g=!![];}const Ri=D7('\\x64'+'\\x6b'+'\\x62'+'\\x79','');if(Ri&&Ri['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x79'+'\\x65'+'\\x73'){g=!![];}J=D7('\\x64','')||'';H=D7('\\x79'+'\\x78'+'\\x55'+'\\x52'+'\\x4c','')||'\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';const RC=D7('\\x70','');if(RC){K=RC['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}else{K='';}q=D7('\\x73','')||'';if(q){try{r=Dx(q);e=!![];}catch(RJ){e=![];}}else{e=![];}const Rv=D7('\\x79'+'\\x78'+'\\x62'+'\\x79','');if(Rv&&Rv['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()==='\\x79'+'\\x65'+'\\x73'){i=!![];}else{i=![];}const Rd='\\x68'+'\\x74'+'\\x74'+'\\x70'+'\\x73'+'\\x3a'+'\\x2f'+'\\x2f'+'\\x72'+'\\x61'+'\\x77'+'\\x2e'+'\\x67'+'\\x69'+'\\x74'+'\\x68'+'\\x75'+'\\x62'+'\\x75'+'\\x73'+'\\x65'+'\\x72'+'\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2e'+'\\x63'+'\\x6f'+'\\x6d'+'\\x2f'+'\\x71'+'\\x77'+'\\x65'+'\\x72'+'\\x2d'+'\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x2f'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2f'+'\\x72'+'\\x65'+'\\x66'+'\\x73'+'\\x2f'+'\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x73'+'\\x2f'+'\\x6d'+'\\x61'+'\\x69'+'\\x6e'+'\\x2f'+'\\x6b'+'\\x65'+'\\x6a'+'\\x69'+'\\x6c'+'\\x61'+'\\x6e'+'\\x64'+'\\x62'+'\\x65'+'\\x73'+'\\x74'+'\\x69'+'\\x70'+'\\x2e'+'\\x74'+'\\x78'+'\\x74';if(H!==Rd){m['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']=0x0;I=[];S=[];}}function R6(){const RY=D7('\\x79'+'\\x78','');if(RY){try{const RG=RY['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](RO=>RO['\\x74'+'\\x72'+'\\x69'+'\\x6d']())['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RO=>RO);I=[];S=[];RG['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RO=>{let RF='';let Rt=RO;if(RO['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x23')){const RI=RO['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x23');Rt=RI[0x0]['\\x74'+'\\x72'+'\\x69'+'\\x6d']();RF=RI[0x1]['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const {address:RK,port:Rq}=DF(Rt);if(!RF){RF='\\u81ea'+'\\u5b9a'+'\\u4e49'+'\\u4f18'+'\\u9009'+'\\x2d'+RK+(Rq?'\\x3a'+Rq:'');}if(D3(RK)){I['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':RK,'\\x70\\x6f\\x72\\x74':Rq,'\\x69\\x73\\x70':RF});}else{S['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x64\\x6f\\x6d\\x61\\x69\\x6e':RK,'\\x70\\x6f\\x72\\x74':Rq,'\\x6e\\x61\\x6d\\x65':RF});}});}catch(RO){I=[];S=[];}}else{I=[];S=[];}}function R7(RY){if(!RY||!RY['\\x74'+'\\x72'+'\\x69'+'\\x6d']())return[];const RG=RY['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](RF=>RF['\\x74'+'\\x72'+'\\x69'+'\\x6d']())['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](RF=>RF);const RO=[];for(const RF of RG){let Rt='';let RK=RF;if(RF['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x23')){const RS=RF['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x23');RK=RS[0x0]['\\x74'+'\\x72'+'\\x69'+'\\x6d']();Rt=RS[0x1]['\\x74'+'\\x72'+'\\x69'+'\\x6d']();}const {address:Rq,port:RI}=DF(RK);if(!Rt){Rt=Rq+(RI?'\\x3a'+RI:'');}RO['\\x70'+'\\x75'+'\\x73'+'\\x68']({'\\x69\\x70':Rq,'\\x70\\x6f\\x72\\x74':RI||0x1bb,'\\x6e\\x61\\x6d\\x65':Rt,'\\x61\\x64\\x64\\x65\\x64\\x41\\x74':new Date()['\\x74'+'\\x6f'+'\\x49'+'\\x53'+'\\x4f'+'\\x53'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67']()});}return RO;}function R8(RY){if(!RY||RY['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0)return'';return RY['\\x6d'+'\\x61'+'\\x70'](RG=>{const RO=RG['\\x70'+'\\x6f'+'\\x72'+'\\x74']||0x1bb;return RG['\\x69'+'\\x70']+'\\x3a'+RO+'\\x23'+RG['\\x6e'+'\\x61'+'\\x6d'+'\\x65'];})['\\x6a'+'\\x6f'+'\\x69'+'\\x6e']('\\x2c');}function R9(RY){const RG=/^(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\.)+[a-zA-Z]{2,}$/;return RG['\\x74'+'\\x65'+'\\x73'+'\\x74'](RY);}async function RD(RY){var RG=RY['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/[\t\"'\\r\\n]+/g,'\\x2c')['\\x72'+'\\x65'+'\\x70'+'\\x6c'+'\\x61'+'\\x63'+'\\x65'](/,+/g,'\\x2c');if(RG['\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x41'+'\\x74'](0x0)=='\\x2c')RG=RG['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x1);if(RG['\\x63'+'\\x68'+'\\x61'+'\\x72'+'\\x41'+'\\x74'](RG['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']-0x1)=='\\x2c')RG=RG['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x0,RG['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']-0x1);return RG['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c');}async function RR(RY,RG='\\x34'+'\\x34'+'\\x33',RO=0xbb8){if(!RY?.['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68'])return[];const RF=new Set();await Promise['\\x61'+'\\x6c'+'\\x6c'+'\\x53'+'\\x65'+'\\x74'+'\\x74'+'\\x6c'+'\\x65'+'\\x64'](RY['\\x6d'+'\\x61'+'\\x70'](async Rt=>{try{const RK=new AbortController();const Rq=setTimeout(()=>RK['\\x61'+'\\x62'+'\\x6f'+'\\x72'+'\\x74'](),RO);const RI=await fetch(Rt,{'\\x73\\x69\\x67\\x6e\\x61\\x6c':RK['\\x73'+'\\x69'+'\\x67'+'\\x6e'+'\\x61'+'\\x6c']});clearTimeout(Rq);let RS='';try{const RC=await RI['\\x61'+'\\x72'+'\\x72'+'\\x61'+'\\x79'+'\\x42'+'\\x75'+'\\x66'+'\\x66'+'\\x65'+'\\x72']();const Rv=(RI['\\x68'+'\\x65'+'\\x61'+'\\x64'+'\\x65'+'\\x72'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x63'+'\\x6f'+'\\x6e'+'\\x74'+'\\x65'+'\\x6e'+'\\x74'+'\\x2d'+'\\x74'+'\\x79'+'\\x70'+'\\x65')||'')['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']();const Rd=Rv['\\x6d'+'\\x61'+'\\x74'+'\\x63'+'\\x68'](/charset=([^\\s;]+)/i)?.[0x1]?.['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()||'';let RH=['\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38','\\x67'+'\\x62'+'\\x32'+'\\x33'+'\\x31'+'\\x32'];if(Rd['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x67'+'\\x62')||Rd['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x67'+'\\x62'+'\\x6b')||Rd['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x67'+'\\x62'+'\\x32'+'\\x33'+'\\x31'+'\\x32')){RH=['\\x67'+'\\x62'+'\\x32'+'\\x33'+'\\x31'+'\\x32','\\x75'+'\\x74'+'\\x66'+'\\x2d'+'\\x38'];}let RJ=![];for(const RX of RH){try{const RQ=new TextDecoder(RX)['\\x64'+'\\x65'+'\\x63'+'\\x6f'+'\\x64'+'\\x65'](RC);if(RQ&&RQ['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0&&!RQ['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\ufffd')){RS=RQ;RJ=!![];break;}else if(RQ&&RQ['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x0){continue;}}catch(Rf){continue;}}if(!RJ){RS=await RI['\\x74'+'\\x65'+'\\x78'+'\\x74']();}if(!RS||RS['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']===0x0){return;}}catch(RV){return;}const RM=RS['\\x74'+'\\x72'+'\\x69'+'\\x6d']()['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x0a')['\\x6d'+'\\x61'+'\\x70'](Rx=>Rx['\\x74'+'\\x72'+'\\x69'+'\\x6d']())['\\x66'+'\\x69'+'\\x6c'+'\\x74'+'\\x65'+'\\x72'](Rx=>Rx);const Rg=RM['\\x6c'+'\\x65'+'\\x6e'+'\\x67'+'\\x74'+'\\x68']>0x1&&RM[0x0]['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x2c');const Ri=/^[^\\[\\]]*:[^\\[\\]]*:[^\\[\\]]/;if(!Rg){RM['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](Rx=>{const Ry=Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x23');const [Rb,Rh]=Ry>-0x1?[Rx['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](0x0,Ry),Rx['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](Ry)]:[Rx,''];let Rj=![];if(Rb['\\x73'+'\\x74'+'\\x61'+'\\x72'+'\\x74'+'\\x73'+'\\x57'+'\\x69'+'\\x74'+'\\x68']('\\x5b')){Rj=/\\]:(\\d+)$/['\\x74'+'\\x65'+'\\x73'+'\\x74'](Rb);}else{const RT=Rb['\\x6c'+'\\x61'+'\\x73'+'\\x74'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x3a');Rj=RT>-0x1&&/^\\d+$/['\\x74'+'\\x65'+'\\x73'+'\\x74'](Rb['\\x73'+'\\x75'+'\\x62'+'\\x73'+'\\x74'+'\\x72'+'\\x69'+'\\x6e'+'\\x67'](RT+0x1));}const Ru=new URL(Rt)['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x70'+'\\x6f'+'\\x72'+'\\x74')||RG;RF['\\x61'+'\\x64'+'\\x64'](Rj?Rx:Rb+'\\x3a'+Ru+Rh);});}else{const Rx=RM[0x0]['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](Rb=>Rb['\\x74'+'\\x72'+'\\x69'+'\\x6d']());const Ry=RM['\\x73'+'\\x6c'+'\\x69'+'\\x63'+'\\x65'](0x1);if(Rx['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x49'+'\\x50'+'\\u5730'+'\\u5740')&&Rx['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u7aef'+'\\u53e3')&&Rx['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u6570'+'\\u636e'+'\\u4e2d'+'\\u5fc3')){const Rb=Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x49'+'\\x50'+'\\u5730'+'\\u5740'),Rh=Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\u7aef'+'\\u53e3');const Rj=Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\u56fd'+'\\u5bb6')>-0x1?Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\u56fd'+'\\u5bb6'):Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\u57ce'+'\\u5e02')>-0x1?Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\u57ce'+'\\u5e02'):Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\u6570'+'\\u636e'+'\\u4e2d'+'\\u5fc3');const Ru=Rx['\\x69'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'+'\\x4f'+'\\x66']('\\x54'+'\\x4c'+'\\x53');Ry['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RT=>{const Rc=RT['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](Ra=>Ra['\\x74'+'\\x72'+'\\x69'+'\\x6d']());if(Ru!==-0x1&&Rc[Ru]?.['\\x74'+'\\x6f'+'\\x4c'+'\\x6f'+'\\x77'+'\\x65'+'\\x72'+'\\x43'+'\\x61'+'\\x73'+'\\x65']()!=='\\x74'+'\\x72'+'\\x75'+'\\x65')return;const Ro=Ri['\\x74'+'\\x65'+'\\x73'+'\\x74'](Rc[Rb])?'\\x5b'+Rc[Rb]+'\\x5d':Rc[Rb];RF['\\x61'+'\\x64'+'\\x64'](Ro+'\\x3a'+Rc[Rh]+'\\x23'+Rc[Rj]);});}else if(Rx['\\x73'+'\\x6f'+'\\x6d'+'\\x65'](RT=>RT['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x49'+'\\x50'))&&Rx['\\x73'+'\\x6f'+'\\x6d'+'\\x65'](RT=>RT['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u5ef6'+'\\u8fdf'))&&Rx['\\x73'+'\\x6f'+'\\x6d'+'\\x65'](RT=>RT['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u4e0b'+'\\u8f7d'+'\\u901f'+'\\u5ea6'))){const RT=Rx['\\x66'+'\\x69'+'\\x6e'+'\\x64'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'](RW=>RW['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\x49'+'\\x50'));const Rc=Rx['\\x66'+'\\x69'+'\\x6e'+'\\x64'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'](RW=>RW['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u5ef6'+'\\u8fdf'));const Ro=Rx['\\x66'+'\\x69'+'\\x6e'+'\\x64'+'\\x49'+'\\x6e'+'\\x64'+'\\x65'+'\\x78'](RW=>RW['\\x69'+'\\x6e'+'\\x63'+'\\x6c'+'\\x75'+'\\x64'+'\\x65'+'\\x73']('\\u4e0b'+'\\u8f7d'+'\\u901f'+'\\u5ea6'));const Ra=new URL(Rt)['\\x73'+'\\x65'+'\\x61'+'\\x72'+'\\x63'+'\\x68'+'\\x50'+'\\x61'+'\\x72'+'\\x61'+'\\x6d'+'\\x73']['\\x67'+'\\x65'+'\\x74']('\\x70'+'\\x6f'+'\\x72'+'\\x74')||RG;Ry['\\x66'+'\\x6f'+'\\x72'+'\\x45'+'\\x61'+'\\x63'+'\\x68'](RW=>{const RE=RW['\\x73'+'\\x70'+'\\x6c'+'\\x69'+'\\x74']('\\x2c')['\\x6d'+'\\x61'+'\\x70'](RL=>RL['\\x74'+'\\x72'+'\\x69'+'\\x6d']());const Rm=Ri['\\x74'+'\\x65'+'\\x73'+'\\x74'](RE[RT])?'\\x5b'+RE[RT]+'\\x5d':RE[RT];RF['\\x61'+'\\x64'+'\\x64'](Rm+'\\x3a'+Ra+('\\x23'+'\\x43'+'\\x46'+'\\u4f18'+'\\u9009'+'\\x20')+RE[Rc]+('\\x6d'+'\\x73'+'\\x20')+RE[Ro]+('\\x4d'+'\\x42'+'\\x2f'+'\\x73'));});}}}catch(RW){}}));return Array['\\x66'+'\\x72'+'\\x6f'+'\\x6d'](RF);}"
  },
  {
    "path": "明文源吗",
    "content": "    // CFnew - 终端 v2.9.4\n    // 版本: v2.9.4\n    import { connect } from 'cloudflare:sockets';\n    let at = '351c9981-04b6-4103-aa4b-864aa9c91469';\n    let fallbackAddress = '';\n    let socks5Config = '';\n    let customPreferredIPs = [];\n    let customPreferredDomains = [];\n    let enableSocksDowngrade = false;\n    let disableNonTLS = false;\n    let disablePreferred = false;\n\n    let enableRegionMatching = true;\n    let currentWorkerRegion = '';\n    let manualWorkerRegion = '';\n    let piu = '';\n    let cp = '';  \n\n    let ev = true;   \n    let et = false; \n    let ex = false;  \n    let tp = '';\n    // 启用ECH功能（true启用，false禁用）\n    let enableECH = false;  \n    // 自定义DNS服务器（默认：https://dns.joeyblog.eu.org/joeyblog）\n    let customDNS = 'https://dns.joeyblog.eu.org/joeyblog';\n    // 自定义ECH域名（默认：cloudflare-ech.com）\n    let customECHDomain = 'cloudflare-ech.com';\n\n    let scu = 'https://url.v1.mk/sub';  \n    // 远程配置URL（硬编码）\n    const remoteConfigUrl = 'https://raw.githubusercontent.com/byJoey/test/refs/heads/main/tist.ini';\n\n    let epd = false;   // 优选域名默认关闭\n    let epi = true;       \n    let egi = true;          \n\n    let kvStore = null;\n    let kvConfig = {};\n\n    const regionMapping = {\n        'US': ['🇺🇸 美国', 'US', 'United States'],\n        'SG': ['🇸🇬 新加坡', 'SG', 'Singapore'],\n        'JP': ['🇯🇵 日本', 'JP', 'Japan'],\n        'KR': ['🇰🇷 韩国', 'KR', 'South Korea'],\n        'DE': ['🇩🇪 德国', 'DE', 'Germany'],\n        'SE': ['🇸🇪 瑞典', 'SE', 'Sweden'],\n        'NL': ['🇳🇱 荷兰', 'NL', 'Netherlands'],\n        'FI': ['🇫🇮 芬兰', 'FI', 'Finland'],\n        'GB': ['🇬🇧 英国', 'GB', 'United Kingdom'],\n        'Oracle': ['甲骨文', 'Oracle'],\n        'DigitalOcean': ['数码海', 'DigitalOcean'],\n        'Vultr': ['Vultr', 'Vultr'],\n        'Multacom': ['Multacom', 'Multacom']\n    };\n\n    let backupIPs = [\n        { domain: 'ProxyIP.US.CMLiussss.net', region: 'US', regionCode: 'US', port: 443 },\n        { domain: 'ProxyIP.SG.CMLiussss.net', region: 'SG', regionCode: 'SG', port: 443 },\n        { domain: 'ProxyIP.JP.CMLiussss.net', region: 'JP', regionCode: 'JP', port: 443 },\n        { domain: 'ProxyIP.KR.CMLiussss.net', region: 'KR', regionCode: 'KR', port: 443 },\n        { domain: 'ProxyIP.DE.CMLiussss.net', region: 'DE', regionCode: 'DE', port: 443 },\n        { domain: 'ProxyIP.SE.CMLiussss.net', region: 'SE', regionCode: 'SE', port: 443 },\n        { domain: 'ProxyIP.NL.CMLiussss.net', region: 'NL', regionCode: 'NL', port: 443 },\n        { domain: 'ProxyIP.FI.CMLiussss.net', region: 'FI', regionCode: 'FI', port: 443 },\n        { domain: 'ProxyIP.GB.CMLiussss.net', region: 'GB', regionCode: 'GB', port: 443 },\n        { domain: 'ProxyIP.Oracle.cmliussss.net', region: 'Oracle', regionCode: 'Oracle', port: 443 },\n        { domain: 'ProxyIP.DigitalOcean.CMLiussss.net', region: 'DigitalOcean', regionCode: 'DigitalOcean', port: 443 },\n        { domain: 'ProxyIP.Vultr.CMLiussss.net', region: 'Vultr', regionCode: 'Vultr', port: 443 },\n        { domain: 'ProxyIP.Multacom.CMLiussss.net', region: 'Multacom', regionCode: 'Multacom', port: 443 }\n    ];\n\n    const directDomains = [\n        { name: \"cloudflare.182682.xyz\", domain: \"cloudflare.182682.xyz\" }, { name: \"speed.marisalnc.com\", domain: \"speed.marisalnc.com\" },\n        { domain: \"freeyx.cloudflare88.eu.org\" }, { domain: \"bestcf.top\" }, { domain: \"cdn.2020111.xyz\" }, { domain: \"cfip.cfcdn.vip\" },\n        { domain: \"cf.0sm.com\" }, { domain: \"cf.090227.xyz\" }, { domain: \"cf.zhetengsha.eu.org\" }, { domain: \"cloudflare.9jy.cc\" },\n        { domain: \"cf.zerone-cdn.pp.ua\" }, { domain: \"cfip.1323123.xyz\" }, { domain: \"cnamefuckxxs.yuchen.icu\" }, { domain: \"cloudflare-ip.mofashi.ltd\" },\n        { domain: \"115155.xyz\" }, { domain: \"cname.xirancdn.us\" }, { domain: \"f3058171cad.002404.xyz\" }, { domain: \"8.889288.xyz\" },\n        { domain: \"cdn.tzpro.xyz\" }, { domain: \"cf.877771.xyz\" }, { domain: \"xn--b6gac.eu.org\" }\n    ];\n\n    const E_INVALID_DATA = atob('aW52YWxpZCBkYXRh');\n    const E_INVALID_USER = atob('aW52YWxpZCB1c2Vy');\n    const E_UNSUPPORTED_CMD = atob('Y29tbWFuZCBpcyBub3Qgc3VwcG9ydGVk');\n    const E_UDP_DNS_ONLY = atob('VURQIHByb3h5IG9ubHkgZW5hYmxlIGZvciBETlMgd2hpY2ggaXMgcG9ydCA1Mw==');\n    const E_INVALID_ADDR_TYPE = atob('aW52YWxpZCBhZGRyZXNzVHlwZQ==');\n    const E_EMPTY_ADDR = atob('YWRkcmVzc1ZhbHVlIGlzIGVtcHR5');\n    const E_WS_NOT_OPEN = atob('d2ViU29ja2V0LmVhZHlTdGF0ZSBpcyBub3Qgb3Blbg==');\n    const E_INVALID_ID_STR = atob('U3RyaW5naWZpZWQgaWRlbnRpZmllciBpcyBpbnZhbGlk');\n    const E_INVALID_SOCKS_ADDR = atob('SW52YWxpZCBTT0NLUyBhZGRyZXNzIGZvcm1hdA==');\n    const E_SOCKS_NO_METHOD = atob('bm8gYWNjZXB0YWJsZSBtZXRob2Rz');\n    const E_SOCKS_AUTH_NEEDED = atob('c29ja3Mgc2VydmVyIG5lZWRzIGF1dGg=');\n    const E_SOCKS_AUTH_FAIL = atob('ZmFpbCB0byBhdXRoIHNvY2tzIHNlcnZlcg==');\n    const E_SOCKS_CONN_FAIL = atob('ZmFpbCB0byBvcGVuIHNvY2tzIGNvbm5lY3Rpb24=');\n\n    let parsedSocks5Config = {};\n    let isSocksEnabled = false;\n\n    const ADDRESS_TYPE_IPV4 = 1;\n    const ADDRESS_TYPE_URL = 2;\n    const ADDRESS_TYPE_IPV6 = 3;\n\n    function isValidFormat(str) {\n        const userRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;\n        return userRegex.test(str);\n    }\n\n    function isValidIP(ip) {\n        const ipv4Regex = /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;\n        if (ipv4Regex.test(ip)) return true;\n        \n        const ipv6Regex = /^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$/;\n        if (ipv6Regex.test(ip)) return true;\n        \n        const ipv6ShortRegex = /^::1$|^::$|^(?:[0-9a-fA-F]{1,4}:)*::(?:[0-9a-fA-F]{1,4}:)*[0-9a-fA-F]{1,4}$/;\n        if (ipv6ShortRegex.test(ip)) return true;\n        \n        return false;\n    }\n\n    async function initKVStore(env) {\n        \n        if (env.C) {\n            try {\n                kvStore = env.C;\n                await loadKVConfig();\n            } catch (error) {\n                kvStore = null;\n            }\n        } else {\n        }\n    }\n\n    async function loadKVConfig() {\n        \n        if (!kvStore) {\n            return;\n        }\n        \n        try {\n            const configData = await kvStore.get('c');\n            \n            if (configData) {\n                kvConfig = JSON.parse(configData);\n            } else {\n            }\n        } catch (error) {\n            kvConfig = {};\n        }\n    }\n\n    async function saveKVConfig() {\n        if (!kvStore) {\n            return;\n        }\n        \n        try {\n            const configString = JSON.stringify(kvConfig);\n            await kvStore.put('c', configString);\n        } catch (error) {\n            throw error; \n        }\n    }\n\n    function getConfigValue(key, defaultValue = '') {\n        \n        if (kvConfig[key] !== undefined) {\n            return kvConfig[key];\n        }\n        return defaultValue;\n    }\n\n    async function setConfigValue(key, value) {\n        kvConfig[key] = value;\n        await saveKVConfig();\n    }\n\n    async function detectWorkerRegion(request) {\n        try {\n            const cfCountry = request.cf?.country;\n            \n            if (cfCountry) {\n                const countryToRegion = {\n                    'US': 'US', 'SG': 'SG', 'JP': 'JP', 'KR': 'KR',\n                    'DE': 'DE', 'SE': 'SE', 'NL': 'NL', 'FI': 'FI', 'GB': 'GB',\n                    'CN': 'SG', 'TW': 'JP', 'AU': 'SG', 'CA': 'US',\n                    'FR': 'DE', 'IT': 'DE', 'ES': 'DE', 'CH': 'DE',\n                    'AT': 'DE', 'BE': 'NL', 'DK': 'SE', 'NO': 'SE', 'IE': 'GB'\n                };\n                \n                if (countryToRegion[cfCountry]) {\n                    return countryToRegion[cfCountry];\n                }\n            }\n            \n            return 'SG';\n            \n        } catch (error) {\n            return 'SG';\n        }\n    }\n\n    async function checkIPAvailability(domain, port = 443, timeout = 2000) {\n        try {\n            const controller = new AbortController();\n            const timeoutId = setTimeout(() => controller.abort(), timeout);\n            \n            const response = await fetch(`https://${domain}`, {\n                method: 'HEAD',\n                signal: controller.signal,\n                headers: {\n                    'User-Agent': 'Mozilla/5.0 (compatible; CF-IP-Checker/1.0)'\n                }\n            });\n            \n            clearTimeout(timeoutId);\n            return response.status < 500;\n        } catch (error) {\n            return true;\n        }\n    }\n\n    async function getBestBackupIP(workerRegion = '', useRegionMatching = enableRegionMatching) {\n        \n        if (backupIPs.length === 0) {\n            return null;\n        }\n        \n        const availableIPs = backupIPs.map(ip => ({ ...ip, available: true }));\n        \n        if (useRegionMatching && workerRegion) {\n            const sortedIPs = getSmartRegionSelection(workerRegion, availableIPs, useRegionMatching);\n            if (sortedIPs.length > 0) {\n                const selectedIP = sortedIPs[0];\n                return selectedIP;\n            }\n        }\n        \n        const selectedIP = availableIPs[0];\n        return selectedIP;\n    }\n\n    function getNearbyRegions(region) {\n        const nearbyMap = {\n            'US': ['SG', 'JP', 'KR'], \n            'SG': ['JP', 'KR', 'US'], \n            'JP': ['SG', 'KR', 'US'], \n            'KR': ['JP', 'SG', 'US'], \n            'DE': ['NL', 'GB', 'SE', 'FI'], \n            'SE': ['DE', 'NL', 'FI', 'GB'], \n            'NL': ['DE', 'GB', 'SE', 'FI'], \n            'FI': ['SE', 'DE', 'NL', 'GB'], \n            'GB': ['DE', 'NL', 'SE', 'FI']  \n        };\n        \n        return nearbyMap[region] || [];\n    }\n\n    function getAllRegionsByPriority(region) {\n        const nearbyRegions = getNearbyRegions(region);\n        const allRegions = ['US', 'SG', 'JP', 'KR', 'DE', 'SE', 'NL', 'FI', 'GB'];\n        \n        return [region, ...nearbyRegions, ...allRegions.filter(r => r !== region && !nearbyRegions.includes(r))];\n    }\n\n    function getSmartRegionSelection(workerRegion, availableIPs, useRegionMatching = enableRegionMatching) {\n        \n        if (!useRegionMatching || !workerRegion) {\n            return availableIPs;\n        }\n        \n        const priorityRegions = getAllRegionsByPriority(workerRegion);\n        \n        const sortedIPs = [];\n        \n        for (const region of priorityRegions) {\n            const regionIPs = availableIPs.filter(ip => ip.regionCode === region);\n            sortedIPs.push(...regionIPs);\n        }\n        \n        return sortedIPs;\n    }\n\n    function parseAddressAndPort(input) {\n        if (input.includes('[') && input.includes(']')) {\n            const match = input.match(/^\\[([^\\]]+)\\](?::(\\d+))?$/);\n            if (match) {\n                return {\n                    address: match[1],\n                    port: match[2] ? parseInt(match[2], 10) : null\n                };\n            }\n        }\n        \n        const lastColonIndex = input.lastIndexOf(':');\n        if (lastColonIndex > 0) {\n            const address = input.substring(0, lastColonIndex);\n            const portStr = input.substring(lastColonIndex + 1);\n            const port = parseInt(portStr, 10);\n\n            // address 含 ':' 说明是裸 IPv6（如 2001:db8::1），整体当地址，无端口\n            if (!address.includes(':') && !isNaN(port) && port > 0 && port <= 65535) {\n                return { address, port };\n            }\n        }\n        \n        return { address: input, port: null };\n    }\n\n    export default {\n        async fetch(request, env, ctx) {\n            try {\n                \n                await initKVStore(env);\n                \n                at = (env.u || env.U || at).toLowerCase();\n                const subPath = (env.d || env.D || at).toLowerCase();\n                \n                const ci = getConfigValue('p', env.p || env.P);\n                let useCustomIP = false;\n                \n                const manualRegion = getConfigValue('wk', env.wk || env.WK);\n                if (manualRegion && manualRegion.trim()) {\n                    manualWorkerRegion = manualRegion.trim().toUpperCase();\n                    currentWorkerRegion = manualWorkerRegion;\n            } else if (ci && ci.trim()) {\n                    useCustomIP = true;\n                    currentWorkerRegion = 'CUSTOM';\n                } else {\n                    currentWorkerRegion = await detectWorkerRegion(request);\n                }\n                \n                const regionMatchingControl = env.rm || env.RM;\n                if (regionMatchingControl && regionMatchingControl.toLowerCase() === 'no') {\n                    enableRegionMatching = false;\n                }\n                \n                const envFallback = getConfigValue('p', env.p || env.P);\n                if (envFallback) {\n                    fallbackAddress = envFallback.trim();\n                }\n\n                socks5Config = getConfigValue('s', env.s || env.S) || socks5Config;\n                if (socks5Config) {\n                    try {\n                        parsedSocks5Config = parseSocksConfig(socks5Config);\n                        isSocksEnabled = true;\n                    } catch (err) {\n                        isSocksEnabled = false;\n                    }\n                }\n\n                const customPreferred = getConfigValue('yx', env.yx || env.YX);\n                if (customPreferred) {\n                    try {\n                        const preferredList = customPreferred.split(',').map(item => item.trim()).filter(item => item);\n                        customPreferredIPs = [];\n                        customPreferredDomains = [];\n                        \n                        preferredList.forEach(item => {\n                            \n                            let nodeName = '';\n                            let addressPart = item;\n                            \n                            if (item.includes('#')) {\n                                const parts = item.split('#');\n                                addressPart = parts[0].trim();\n                                nodeName = parts[1].trim();\n                            }\n                            \n                            const { address, port } = parseAddressAndPort(addressPart);\n                            \n                            if (!nodeName) {\n                                nodeName = '自定义优选-' + address + (port ? ':' + port : '');\n                            }\n                            \n                            if (isValidIP(address)) {\n                                customPreferredIPs.push({ \n                                    ip: address, \n                                    port: port,\n                                    isp: nodeName\n                                });\n                            } else {\n                                customPreferredDomains.push({ \n                                    domain: address, \n                                    port: port,\n                                    name: nodeName\n                                });\n                            }\n                        });\n                    } catch (err) {\n                        customPreferredIPs = [];\n                        customPreferredDomains = [];\n                    }\n                }\n\n                const downgradeControl = getConfigValue('qj', env.qj || env.QJ);\n                if (downgradeControl && downgradeControl.toLowerCase() === 'no') {\n                    enableSocksDowngrade = true;\n                }\n\n                const dkbyControl = getConfigValue('dkby', env.dkby || env.DKBY);\n                if (dkbyControl && dkbyControl.toLowerCase() === 'yes') {\n                    disableNonTLS = true;\n                }\n\n                const yxbyControl = env.yxby || env.YXBY;\n                if (yxbyControl && yxbyControl.toLowerCase() === 'yes') {\n                    disablePreferred = true;\n                }\n\n                const vlessControl = getConfigValue('ev', env.ev);\n                if (vlessControl !== undefined && vlessControl !== '') {\n                    ev = vlessControl === 'yes' || vlessControl === true || vlessControl === 'true';\n                }\n                \n            const tjControl = getConfigValue('et', env.et);\n            if (tjControl !== undefined && tjControl !== '') {\n                et = tjControl === 'yes' || tjControl === true || tjControl === 'true';\n            }\n                \n                tp = getConfigValue('tp', env.tp) || '';\n                \n                const xhttpControl = getConfigValue('ex', env.ex);\n                if (xhttpControl !== undefined && xhttpControl !== '') {\n                    ex = xhttpControl === 'yes' || xhttpControl === true || xhttpControl === 'true';\n                }\n                \n                scu = getConfigValue('scu', env.scu) || 'https://url.v1.mk/sub';\n                \n                const preferredDomainsControl = getConfigValue('epd', env.epd || 'no');\n                if (preferredDomainsControl !== undefined && preferredDomainsControl !== '') {\n                    epd = preferredDomainsControl !== 'no' && preferredDomainsControl !== false && preferredDomainsControl !== 'false';\n                }\n                \n                const preferredIPsControl = getConfigValue('epi', env.epi);\n                if (preferredIPsControl !== undefined && preferredIPsControl !== '') {\n                    epi = preferredIPsControl !== 'no' && preferredIPsControl !== false && preferredIPsControl !== 'false';\n                }\n                \n                const githubIPsControl = getConfigValue('egi', env.egi);\n                if (githubIPsControl !== undefined && githubIPsControl !== '') {\n                    egi = githubIPsControl !== 'no' && githubIPsControl !== false && githubIPsControl !== 'false';\n                }\n                \n                const echControl = getConfigValue('ech', env.ech);\n                if (echControl !== undefined && echControl !== '') {\n                    enableECH = echControl === 'yes' || echControl === true || echControl === 'true';\n                }\n                \n                // 加载自定义DNS和ECH域名配置\n                const customDNSValue = getConfigValue('customDNS', '');\n                if (customDNSValue && customDNSValue.trim()) {\n                    customDNS = customDNSValue.trim();\n                }\n                \n                const customECHDomainValue = getConfigValue('customECHDomain', '');\n                if (customECHDomainValue && customECHDomainValue.trim()) {\n                    customECHDomain = customECHDomainValue.trim();\n                }\n                \n                // 如果启用了ECH，自动启用仅TLS模式（避免80端口干扰）\n                // ECH需要TLS才能工作，所以必须禁用非TLS节点\n                if (enableECH) {\n                    disableNonTLS = true;\n                    // 检查 KV 中是否有 dkby: yes，没有就直接写入\n                    const currentDkby = getConfigValue('dkby', '');\n                    if (currentDkby !== 'yes') {\n                        await setConfigValue('dkby', 'yes');\n                    }\n                }\n                \n                if (!ev && !et && !ex) {\n                    ev = true;\n                }\n\n            piu = getConfigValue('yxURL', env.yxURL || env.YXURL) || 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n            \n            cp = getConfigValue('d', env.d || env.D) || '';\n            \n                const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n            if (piu !== defaultURL) {\n                    directDomains.length = 0;\n                    customPreferredIPs = [];\n                    customPreferredDomains = [];\n                }\n\n                const url = new URL(request.url);\n\n                if (url.pathname.includes('/api/config')) {\n                    const pathParts = url.pathname.split('/').filter(p => p);\n                    \n                    const apiIndex = pathParts.indexOf('api');\n                    if (apiIndex > 0) {\n                        const pathSegments = pathParts.slice(0, apiIndex);\n                        const pathIdentifier = pathSegments.join('/');\n                        \n                    let isValid = false;\n                    if (cp && cp.trim()) {\n                        \n                        const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim();\n                        isValid = (pathIdentifier === cleanCustomPath);\n                        } else {\n                            \n                            isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at);\n                        }\n                        \n                        if (isValid) {\n                            return await handleConfigAPI(request);\n                        } else {\n                            return new Response(JSON.stringify({ error: '路径验证失败' }), { \n                                status: 403,\n                                headers: { 'Content-Type': 'application/json' }\n                            });\n                        }\n                    }\n                    \n                    return new Response(JSON.stringify({ error: '无效的API路径' }), { \n                        status: 404,\n                        headers: { 'Content-Type': 'application/json' }\n                    });\n                }\n                \n                if (url.pathname.includes('/api/preferred-ips')) {\n                    const pathParts = url.pathname.split('/').filter(p => p);\n                \n                    const apiIndex = pathParts.indexOf('api');\n                    if (apiIndex > 0) {\n                    const pathSegments = pathParts.slice(0, apiIndex);\n                    const pathIdentifier = pathSegments.join('/');\n                    \n                    let isValid = false;\n                    if (cp && cp.trim()) {\n                        \n                        const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim();\n                        isValid = (pathIdentifier === cleanCustomPath);\n                    } else {\n                        \n                        isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at);\n                    }\n                    \n                    if (isValid) {\n                            return await handlePreferredIPsAPI(request);\n                    } else {\n                        return new Response(JSON.stringify({ error: '路径验证失败' }), { \n                                status: 403,\n                                headers: { 'Content-Type': 'application/json' }\n                            });\n                        }\n                    }\n                \n                    return new Response(JSON.stringify({ error: '无效的API路径' }), { \n                        status: 404,\n                        headers: { 'Content-Type': 'application/json' }\n                    });\n                }\n            \n            if (request.method === 'POST' && ex) {\n                const r = await handleXhttpPost(request);\n                if (r) {\n                    ctx.waitUntil(r.closed);\n                    return new Response(r.readable, {\n                        headers: {\n                            'X-Accel-Buffering': 'no',\n                            'Cache-Control': 'no-store',\n                            Connection: 'keep-alive',\n                            'User-Agent': 'Go-http-client/2.0',\n                            'Content-Type': 'application/grpc',\n                        },\n                    });\n                }\n                return new Response('Internal Server Error', { status: 500 });\n            }\n\n            if (request.headers.get('Upgrade') === atob('d2Vic29ja2V0')) {\n                return await handleWsRequest(request);\n                }\n                \n                if (request.method === 'GET') {\n                    // 处理 /{UUID}/region 或 /{自定义路径}/region\n                    if (url.pathname.endsWith('/region')) {\n                        const pathParts = url.pathname.split('/').filter(p => p);\n                        \n                        if (pathParts.length === 2 && pathParts[1] === 'region') {\n                            const pathIdentifier = pathParts[0];\n                            let isValid = false;\n                            \n                            if (cp && cp.trim()) {\n                                // 使用自定义路径\n                                const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim();\n                                isValid = (pathIdentifier === cleanCustomPath);\n                            } else {\n                                // 使用UUID路径\n                                isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at);\n                            }\n                            \n                            if (isValid) {\n                                const ci = getConfigValue('p', env.p || env.P);\n                                const manualRegion = getConfigValue('wk', env.wk || env.WK);\n                                \n                                if (manualRegion && manualRegion.trim()) {\n                                    return new Response(JSON.stringify({\n                                        region: manualRegion.trim().toUpperCase(),\n                                        detectionMethod: '手动指定地区',\n                                        manualRegion: manualRegion.trim().toUpperCase(),\n                                        timestamp: new Date().toISOString()\n                                    }), {\n                                        headers: { 'Content-Type': 'application/json' }\n                                    });\n                                } else if (ci && ci.trim()) {\n                                    return new Response(JSON.stringify({\n                                        region: 'CUSTOM',\n                                        detectionMethod: '自定义ProxyIP模式', ci: ci,\n                                        timestamp: new Date().toISOString()\n                                    }), {\n                                        headers: { 'Content-Type': 'application/json' }\n                                    });\n                                } else {\n                                    const detectedRegion = await detectWorkerRegion(request);\n                                    return new Response(JSON.stringify({\n                                        region: detectedRegion,\n                                        detectionMethod: 'API检测',\n                                        timestamp: new Date().toISOString()\n                                    }), {\n                                        headers: { 'Content-Type': 'application/json' }\n                                    });\n                                }\n                            } else {\n                                return new Response(JSON.stringify({ \n                                    error: '访问被拒绝',\n                                    message: '路径验证失败'\n                                }), { \n                                    status: 403,\n                                    headers: { 'Content-Type': 'application/json' }\n                                });\n                            }\n                        }\n                    }\n                    \n                    // 处理 /{UUID}/test-api 或 /{自定义路径}/test-api\n                    if (url.pathname.endsWith('/test-api')) {\n                        const pathParts = url.pathname.split('/').filter(p => p);\n                        \n                        if (pathParts.length === 2 && pathParts[1] === 'test-api') {\n                            const pathIdentifier = pathParts[0];\n                            let isValid = false;\n                            \n                            if (cp && cp.trim()) {\n                                // 使用自定义路径\n                                const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim();\n                                isValid = (pathIdentifier === cleanCustomPath);\n                            } else {\n                                // 使用UUID路径\n                                isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at);\n                            }\n                            \n                            if (isValid) {\n                                try {\n                                    const testRegion = await detectWorkerRegion(request);\n                                    return new Response(JSON.stringify({\n                                        detectedRegion: testRegion,\n                                        message: 'API测试完成',\n                                        timestamp: new Date().toISOString()\n                                    }), {\n                                        headers: { 'Content-Type': 'application/json' }\n                                    });\n                                } catch (error) {\n                                    return new Response(JSON.stringify({\n                                        error: error.message,\n                                        message: 'API测试失败'\n                                    }), {\n                                        status: 500,\n                                        headers: { 'Content-Type': 'application/json' }\n                                    });\n                                }\n                            } else {\n                                return new Response(JSON.stringify({ \n                                    error: '访问被拒绝',\n                                    message: '路径验证失败'\n                                }), { \n                                    status: 403,\n                                    headers: { 'Content-Type': 'application/json' }\n                                });\n                            }\n                        }\n                    }\n                    \n                    if (url.pathname === '/') {\n                        // 检查是否有自定义首页URL配置\n                        const customHomepage = getConfigValue('homepage', env.homepage || env.HOMEPAGE);\n                        if (customHomepage && customHomepage.trim()) {\n                            try {\n                                // 从自定义URL获取内容\n                                const homepageResponse = await fetch(customHomepage.trim(), {\n                                    method: 'GET',\n                                    headers: {\n                                        'User-Agent': request.headers.get('User-Agent') || 'Mozilla/5.0',\n                                        'Accept': request.headers.get('Accept') || '*/*',\n                                        'Accept-Language': request.headers.get('Accept-Language') || 'en-US,en;q=0.9',\n                                    },\n                                    redirect: 'follow'\n                                });\n                                \n                                if (homepageResponse.ok) {\n                                    // 获取响应内容\n                                    const contentType = homepageResponse.headers.get('Content-Type') || 'text/html; charset=utf-8';\n                                    const content = await homepageResponse.text();\n                                    \n                                    // 返回自定义首页内容\n                                    return new Response(content, {\n                                        status: homepageResponse.status,\n                                        headers: {\n                                            'Content-Type': contentType,\n                                            'Cache-Control': 'no-cache, no-store, must-revalidate',\n                                        }\n                                    });\n                                }\n                            } catch (error) {\n                                // 如果获取失败，继续使用默认终端页面\n                                console.error('获取自定义首页失败:', error);\n                            }\n                        }\n                        // 优先检查Cookie中的语言设置\n                        const cookieHeader = request.headers.get('Cookie') || '';\n                        let langFromCookie = null;\n                        if (cookieHeader) {\n                            const cookies = cookieHeader.split(';').map(c => c.trim());\n                            for (const cookie of cookies) {\n                                if (cookie.startsWith('preferredLanguage=')) {\n                                    langFromCookie = cookie.split('=')[1];\n                                    break;\n                                }\n                            }\n                        }\n                        \n                        let isFarsi = false;\n                        \n                        if (langFromCookie === 'fa' || langFromCookie === 'fa-IR') {\n                            isFarsi = true;\n                        } else if (langFromCookie === 'zh' || langFromCookie === 'zh-CN') {\n                            isFarsi = false;\n                        } else {\n                            // 如果没有Cookie，使用浏览器语言检测\n                            const acceptLanguage = request.headers.get('Accept-Language') || '';\n                            const browserLang = acceptLanguage.split(',')[0].split('-')[0].toLowerCase();\n                            isFarsi = browserLang === 'fa' || acceptLanguage.includes('fa-IR') || acceptLanguage.includes('fa');\n                        }\n                            \n                            const lang = isFarsi ? 'fa' : 'zh-CN';\n                            const langAttr = isFarsi ? 'fa-IR' : 'zh-CN';\n                            \n                            const translations = {\n                                zh: {\n                                    title: '终端',\n                                    terminal: '终端',\n                                    congratulations: '恭喜你来到这',\n                                    enterU: '请输入你U变量的值',\n                                    enterD: '请输入你D变量的值',\n                                    command: '命令: connect [',\n                                    uuid: 'UUID',\n                                    path: 'PATH',\n                                    inputU: '输入U变量的内容并且回车...',\n                                    inputD: '输入D变量的内容并且回车...',\n                                    connecting: '正在连接...',\n                                    invading: '正在入侵...',\n                                    success: '连接成功！返回结果...',\n                                    error: '错误: 无效的UUID格式',\n                                    reenter: '请重新输入有效的UUID'\n                                },\n                                fa: {\n                                    title: 'ترمینال',\n                                    terminal: 'ترمینال',\n                                    congratulations: 'تبریک می‌گوییم به شما',\n                                    enterU: 'لطفا مقدار متغیر U خود را وارد کنید',\n                                    enterD: 'لطفا مقدار متغیر D خود را وارد کنید',\n                                    command: 'دستور: connect [',\n                                    uuid: 'UUID',\n                                    path: 'PATH',\n                                    inputU: 'محتویات متغیر U را وارد کرده و Enter را بزنید...',\n                                    inputD: 'محتویات متغیر D را وارد کرده و Enter را بزنید...',\n                                    connecting: 'در حال اتصال...',\n                                    invading: 'در حال نفوذ...',\n                                    success: 'اتصال موفق! در حال بازگشت نتیجه...',\n                                    error: 'خطا: فرمت UUID نامعتبر',\n                                    reenter: 'لطفا UUID معتبر را دوباره وارد کنید'\n                                }\n                            };\n                            \n                            const t = translations[isFarsi ? 'fa' : 'zh'];\n                            \n                        const terminalHtml = `<!DOCTYPE html>\n        <html lang=\"${langAttr}\" dir=\"${isFarsi ? 'rtl' : 'ltr'}\">\n    <head>\n        <meta charset=\"UTF-8\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n            <title>${t.title}</title>\n        <style>\n            * { margin: 0; padding: 0; box-sizing: border-box; }\n            body {\n                font-family: \"Courier New\", monospace;\n                background: #000; color: #00ff00; min-height: 100vh;\n                overflow-x: hidden; position: relative;\n                display: flex; justify-content: center; align-items: center;\n            }\n            .matrix-bg {\n                position: fixed; top: 0; left: 0; width: 100%; height: 100%;\n                background: #000;\n                z-index: -1;\n            }\n            @keyframes bg-pulse {\n                0%, 100% { background: linear-gradient(45deg, #000 0%, #001100 50%, #000 100%); }\n                50% { background: linear-gradient(45deg, #000 0%, #002200 50%, #000 100%); }\n            }\n            .matrix-rain {\n                position: fixed; top: 0; left: 0; width: 100%; height: 100%;\n                background: transparent;\n                z-index: -1;\n                display: none;\n            }\n            @keyframes matrix-fall {\n                0% { transform: translateY(-100%); }\n                100% { transform: translateY(100vh); }\n            }\n            .matrix-code-rain {\n                position: fixed; top: 0; left: 0; width: 100%; height: 100%;\n                pointer-events: none; z-index: -1;\n                overflow: hidden;\n                display: none;\n            }\n            .matrix-column {\n                position: absolute; top: -100%; left: 0;\n                color: #00ff00; font-family: \"Courier New\", monospace;\n                font-size: 14px; line-height: 1.2;\n                text-shadow: 0 0 5px #00ff00;\n            }\n            @keyframes matrix-drop {\n                0% { top: -100%; opacity: 1; }\n                10% { opacity: 1; }\n                90% { opacity: 0.3; }\n                100% { top: 100vh; opacity: 0; }\n            }\n            .matrix-column:nth-child(odd) {\n                animation-duration: 12s;\n                animation-delay: -2s;\n            }\n            .matrix-column:nth-child(even) {\n                animation-duration: 18s;\n                animation-delay: -5s;\n            }\n            .matrix-column:nth-child(3n) {\n                animation-duration: 20s;\n                animation-delay: -8s;\n            }\n            .terminal {\n                width: 90%; max-width: 800px; height: 500px;\n                background: rgba(0, 0, 0, 0.9);\n                border: 2px solid #00ff00;\n                border-radius: 8px;\n                box-shadow: 0 0 30px rgba(0, 255, 0, 0.5), inset 0 0 20px rgba(0, 255, 0, 0.1);\n                backdrop-filter: blur(10px);\n                position: relative; z-index: 1;\n                overflow: hidden;\n            }\n            .terminal-header {\n                background: rgba(0, 20, 0, 0.8);\n                padding: 10px 15px;\n                border-bottom: 1px solid #00ff00;\n                display: flex; align-items: center;\n            }\n            .terminal-buttons {\n                display: flex; gap: 8px;\n            }\n            .terminal-button {\n                width: 12px; height: 12px; border-radius: 50%;\n                background: #ff5f57; border: none;\n            }\n            .terminal-button:nth-child(2) { background: #ffbd2e; }\n            .terminal-button:nth-child(3) { background: #28ca42; }\n            .terminal-title {\n                margin-left: 15px; color: #00ff00;\n                font-size: 14px; font-weight: bold;\n            }\n            .terminal-body {\n                padding: 20px; height: calc(100% - 50px);\n                overflow-y: auto; font-size: 14px;\n                line-height: 1.4;\n            }\n            .terminal-line {\n                margin-bottom: 8px; display: flex; align-items: center;\n            }\n            .terminal-prompt {\n                color: #00ff00; margin-right: 10px;\n                font-weight: bold;\n            }\n            .terminal-input {\n                background: transparent; border: none; outline: none;\n                color: #00ff00; font-family: \"Courier New\", monospace;\n                font-size: 14px; flex: 1;\n                caret-color: #00ff00;\n            }\n            .terminal-input::placeholder {\n                color: #00aa00; opacity: 0.7;\n            }\n            .terminal-cursor {\n                display: inline-block; width: 8px; height: 16px;\n                background: #00ff00;\n                margin-left: 2px;\n            }\n            @keyframes blink {\n                0%, 50% { opacity: 1; }\n                51%, 100% { opacity: 0; }\n            }\n            .terminal-output {\n                color: #00aa00; margin: 5px 0;\n            }\n            .terminal-error {\n                color: #ff4444; margin: 5px 0;\n            }\n            .terminal-success {\n                color: #44ff44; margin: 5px 0;\n            }\n            .matrix-text {\n                position: fixed; top: 20px; right: 20px;\n                color: #00ff00; font-family: \"Courier New\", monospace;\n                font-size: 0.8rem; opacity: 0.6;\n            }\n            @keyframes matrix-flicker {\n                0%, 100% { opacity: 0.6; }\n                50% { opacity: 1; }\n            }\n        </style>\n    </head>\n    <body>\n        <div class=\"matrix-bg\"></div>\n        <div class=\"matrix-rain\"></div>\n        <div class=\"matrix-code-rain\" id=\"matrixCodeRain\"></div>\n            <div class=\"matrix-text\">${t.terminal}</div>\n            <div style=\"position: fixed; top: 20px; left: 20px; z-index: 1000;\">\n                <select id=\"languageSelector\" style=\"background: rgba(0, 20, 0, 0.9); border: 2px solid #00ff00; color: #00ff00; padding: 8px 12px; font-family: 'Courier New', monospace; font-size: 14px; cursor: pointer; text-shadow: 0 0 5px #00ff00; box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);\" onchange=\"changeLanguage(this.value)\">\n                    <option value=\"zh\" ${!isFarsi ? 'selected' : ''}>🇨🇳 中文</option>\n                    <option value=\"fa\" ${isFarsi ? 'selected' : ''}>🇮🇷 فارسی</option>\n                </select>\n            </div>\n        <div class=\"terminal\">\n            <div class=\"terminal-header\">\n                <div class=\"terminal-buttons\">\n                    <div class=\"terminal-button\"></div>\n                    <div class=\"terminal-button\"></div>\n                    <div class=\"terminal-button\"></div>\n                </div>\n                    <div class=\"terminal-title\">${t.terminal}</div>\n            </div>\n            <div class=\"terminal-body\" id=\"terminalBody\">\n                <div class=\"terminal-line\">\n                    <span class=\"terminal-prompt\">root:~$</span>\n                        <span class=\"terminal-output\">${t.congratulations}</span>\n                </div>\n                <div class=\"terminal-line\">\n                    <span class=\"terminal-prompt\">root:~$</span>\n                        <span class=\"terminal-output\">${cp && cp.trim() ? t.enterD : t.enterU}</span>\n                </div>\n                <div class=\"terminal-line\">\n                    <span class=\"terminal-prompt\">root:~$</span>\n                        <span class=\"terminal-output\">${t.command}${cp && cp.trim() ? t.path : t.uuid}]</span>\n                </div>\n                <div class=\"terminal-line\">\n                    <span class=\"terminal-prompt\">root:~$</span>\n                        <input type=\"text\" class=\"terminal-input\" id=\"uuidInput\" placeholder=\"${cp && cp.trim() ? t.inputD : t.inputU}\" autofocus>\n                    <span class=\"terminal-cursor\"></span>\n                </div>\n            </div>\n        </div>\n        <script>\n            function createMatrixRain() {\n                const matrixContainer = document.getElementById('matrixCodeRain');\n                const matrixChars = '01ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';\n                const columns = Math.floor(window.innerWidth / 18);\n                \n                for (let i = 0; i < columns; i++) {\n                    const column = document.createElement('div');\n                    column.className = 'matrix-column';\n                    column.style.left = (i * 18) + 'px';\n                    column.style.animationDelay = Math.random() * 15 + 's';\n                    column.style.animationDuration = (Math.random() * 15 + 8) + 's';\n                    column.style.fontSize = (Math.random() * 4 + 12) + 'px';\n                    column.style.opacity = Math.random() * 0.8 + 0.2;\n                    \n                    let text = '';\n                    const charCount = Math.floor(Math.random() * 30 + 20);\n                    for (let j = 0; j < charCount; j++) {\n                        const char = matrixChars[Math.floor(Math.random() * matrixChars.length)];\n                        const brightness = Math.random() > 0.1 ? '#00ff00' : '#00aa00';\n                        text += '<span style=\"color: ' + brightness + ';\">' + char + '</span><br>';\n                    }\n                    column.innerHTML = text;\n                    matrixContainer.appendChild(column);\n                }\n                \n                setInterval(function() {\n                    const columns = matrixContainer.querySelectorAll('.matrix-column');\n                    columns.forEach(function(column) {\n                        if (Math.random() > 0.95) {\n                            const chars = column.querySelectorAll('span');\n                            if (chars.length > 0) {\n                                const randomChar = chars[Math.floor(Math.random() * chars.length)];\n                                randomChar.style.color = '#ffffff';\n                                setTimeout(function() {\n                                    randomChar.style.color = '#00ff00';\n                                }, 200);\n                            }\n                        }\n                    });\n                }, 100);\n            }\n            \n            function isValidUUID(uuid) {\n                const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;\n                return uuidRegex.test(uuid);\n            }\n            \n            function addTerminalLine(content, type = 'output') {\n                const terminalBody = document.getElementById('terminalBody');\n                const line = document.createElement('div');\n                line.className = 'terminal-line';\n                \n                const prompt = document.createElement('span');\n                prompt.className = 'terminal-prompt';\n                prompt.textContent = 'root:~$';\n                \n                const output = document.createElement('span');\n                output.className = 'terminal-' + type;\n                output.textContent = content;\n                \n                line.appendChild(prompt);\n                line.appendChild(output);\n                terminalBody.appendChild(line);\n                \n                terminalBody.scrollTop = terminalBody.scrollHeight;\n            }\n            \n            function handleUUIDInput() {\n                const input = document.getElementById('uuidInput');\n                const inputValue = input.value.trim();\n                const cp = '${ cp }';\n                \n                if (inputValue) {\n                    addTerminalLine(atob('Y29ubmVjdCA=') + inputValue, 'output');\n                        \n                        const translations = {\n                            zh: {\n                                connecting: '正在连接...',\n                                invading: '正在入侵...',\n                                success: '连接成功！返回结果...',\n                                error: '错误: 无效的UUID格式',\n                                reenter: '请重新输入有效的UUID'\n                            },\n                            fa: {\n                                connecting: 'در حال اتصال...',\n                                invading: 'در حال نفوذ...',\n                                success: 'اتصال موفق! در حال بازگشت نتیجه...',\n                                error: 'خطا: فرمت UUID نامعتبر',\n                                reenter: 'لطفا UUID معتبر را دوباره وارد کنید'\n                            }\n                        };\n                        const browserLang = navigator.language || navigator.userLanguage || '';\n                        const isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                        const t = translations[isFarsi ? 'fa' : 'zh'];\n                    \n                    if (cp) {\n                        const cleanInput = inputValue.startsWith('/') ? inputValue : '/' + inputValue;\n                            addTerminalLine(t.connecting, 'output');\n                        setTimeout(() => {\n                                addTerminalLine(t.success, 'success');\n                            setTimeout(() => {\n                                window.location.href = cleanInput;\n                            }, 1000);\n                        }, 500);\n                    } else {\n                        if (isValidUUID(inputValue)) {\n                            addTerminalLine(t.invading, 'output');\n                        setTimeout(() => {\n                                addTerminalLine(t.success, 'success');\n                            setTimeout(() => {\n                                    window.location.href = '/' + inputValue;\n                            }, 1000);\n                        }, 500);\n                    } else {\n                            addTerminalLine(t.error, 'error');\n                            addTerminalLine(t.reenter, 'output');\n                        }\n                    }\n                    \n                    input.value = '';\n                }\n            }\n                \n                function changeLanguage(lang) {\n                    localStorage.setItem('preferredLanguage', lang);\n                    // 设置Cookie（有效期1年）\n                    const expiryDate = new Date();\n                    expiryDate.setFullYear(expiryDate.getFullYear() + 1);\n                    document.cookie = 'preferredLanguage=' + lang + '; path=/; expires=' + expiryDate.toUTCString() + '; SameSite=Lax';\n                    // 刷新页面，不使用URL参数\n                    window.location.reload();\n                }\n                \n                // 页面加载时检查 localStorage 和 Cookie，并清理URL参数\n                window.addEventListener('DOMContentLoaded', function() {\n                    function getCookie(name) {\n                        const value = '; ' + document.cookie;\n                        const parts = value.split('; ' + name + '=');\n                        if (parts.length === 2) return parts.pop().split(';').shift();\n                        return null;\n                    }\n                    \n                    const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                    const urlParams = new URLSearchParams(window.location.search);\n                    const urlLang = urlParams.get('lang');\n                    \n                    // 如果URL中有语言参数，移除它并设置Cookie\n                    if (urlLang) {\n                        const currentUrl = new URL(window.location.href);\n                        currentUrl.searchParams.delete('lang');\n                        const newUrl = currentUrl.toString();\n                        \n                        // 设置Cookie\n                        const expiryDate = new Date();\n                        expiryDate.setFullYear(expiryDate.getFullYear() + 1);\n                        document.cookie = 'preferredLanguage=' + urlLang + '; path=/; expires=' + expiryDate.toUTCString() + '; SameSite=Lax';\n                        localStorage.setItem('preferredLanguage', urlLang);\n                        \n                        // 使用history API移除URL参数，不刷新页面\n                        window.history.replaceState({}, '', newUrl);\n                    } else if (savedLang) {\n                        // 如果localStorage中有但Cookie中没有，同步到Cookie\n                        const expiryDate = new Date();\n                        expiryDate.setFullYear(expiryDate.getFullYear() + 1);\n                        document.cookie = 'preferredLanguage=' + savedLang + '; path=/; expires=' + expiryDate.toUTCString() + '; SameSite=Lax';\n                    }\n                });\n            \n            document.addEventListener('DOMContentLoaded', function() {\n                const input = document.getElementById('uuidInput');\n                input.focus();\n                input.addEventListener('keypress', function(e) {\n                    if (e.key === 'Enter') {\n                        handleUUIDInput();\n                    }\n                });\n            });\n        </script>\n    </body>\n    </html>`;\n                        return new Response(terminalHtml, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } });\n                    }\n                \n            if (cp && cp.trim()) {\n                const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim() : '/' + cp.trim();\n                const normalizedCustomPath = cleanCustomPath.endsWith('/') && cleanCustomPath.length > 1 ? cleanCustomPath.slice(0, -1) : cleanCustomPath;\n                const normalizedPath = url.pathname.endsWith('/') && url.pathname.length > 1 ? url.pathname.slice(0, -1) : url.pathname;\n                    \n                    if (normalizedPath === normalizedCustomPath) {\n                        return await handleSubscriptionPage(request, at);\n                    }\n                    \n                    if (normalizedPath === normalizedCustomPath + '/sub') {\n                        return await handleSubscriptionRequest(request, at, url);\n                    }\n                    \n                    if (url.pathname.length > 1 && url.pathname !== '/') {\n                        const user = url.pathname.replace(/\\/$/, '').replace('/sub', '').substring(1);\n                        if (isValidFormat(user)) {\n                            return new Response(JSON.stringify({ \n                                error: '访问被拒绝',\n                                message: '当前 Worker 已启用自定义路径模式，UUID 访问已禁用'\n                            }), { \n                                status: 403,\n                                headers: { 'Content-Type': 'application/json' }\n                            });\n                        }\n                    }\n                } else {\n                    \n                    if (url.pathname.length > 1 && url.pathname !== '/' && !url.pathname.includes('/sub')) {\n                        const user = url.pathname.replace(/\\/$/, '').substring(1);\n                        if (isValidFormat(user)) {\n                            if (user === at) {\n                                return await handleSubscriptionPage(request, user);\n                            } else {\n                                return new Response(JSON.stringify({ error: 'UUID错误 请注意变量名称是u不是uuid' }), { \n                                    status: 403,\n                                    headers: { 'Content-Type': 'application/json' }\n                                });\n                            }\n                        }\n                    }\n                    if (url.pathname.includes('/sub')) {\n                        const pathParts = url.pathname.split('/');\n                        if (pathParts.length === 2 && pathParts[1] === 'sub') {\n                            const user = pathParts[0].substring(1);\n                            if (isValidFormat(user)) {\n                                if (user === at) {\n                                    return await handleSubscriptionRequest(request, user, url);\n                                } else {\n                                    return new Response(JSON.stringify({ error: 'UUID错误' }), { \n                                        status: 403,\n                                        headers: { 'Content-Type': 'application/json' }\n                                    });\n                                }\n                                }\n                            }\n                        }\n                    }\n                    if (url.pathname.toLowerCase().includes(`/${subPath}`)) {\n                        return await handleSubscriptionRequest(request, at);\n                    }\n                }\n                return new Response(JSON.stringify({ error: 'Not Found' }), { \n                    status: 404,\n                    headers: { 'Content-Type': 'application/json' }\n                });\n            } catch (err) {\n                return new Response(err.toString(), { status: 500 });\n            }\n        },\n    };\n\n    function generateQuantumultConfig(links) {\n        return btoa(links.join('\\n'));\n    }\n\n    // 解析 VLESS/Trojan 链接并生成 Clash 节点配置\n    function parseLinkToClashNode(link) {\n        try {\n            // 解析 VLESS 链接\n            if (link.startsWith('vless://')) {\n                const url = new URL(link);\n                const name = decodeURIComponent(url.hash.substring(1));\n                const uuid = url.username;\n                const server = url.hostname;\n                const port = parseInt(url.port) || 443;\n                const params = new URLSearchParams(url.search);\n                \n                const tls = params.get('security') === 'tls' || params.get('tls') === 'true';\n                const network = params.get('type') || 'ws';\n                const path = params.get('path') || '/?ed=2048';\n                const host = params.get('host') || server;\n                const servername = params.get('sni') || host;\n                const alpn = params.get('alpn') || 'h3,h2,http/1.1';\n                const fingerprint = params.get('fp') || params.get('client-fingerprint') || 'chrome';\n                const ech = params.get('ech');\n                \n                const node = {\n                    name: name,\n                    type: 'vless',\n                    server: server,\n                    port: port,\n                    uuid: uuid,\n                    tls: tls,\n                    network: network,\n                    'client-fingerprint': fingerprint\n                };\n                \n                if (tls) {\n                    node.servername = servername;\n                    node.alpn = alpn.split(',').map(a => a.trim());\n                    node['skip-cert-verify'] = false;\n                }\n                \n                if (network === 'ws') {\n                    node['ws-opts'] = {\n                        path: path,\n                        headers: {\n                            Host: host\n                        }\n                    };\n                }\n                \n                if (ech) {\n                    const echDomain = customECHDomain || 'cloudflare-ech.com';\n                    node['ech-opts'] = {\n                        enable: true,\n                        'query-server-name': echDomain\n                    };\n                }\n                \n                return node;\n            }\n            \n            // 解析 Trojan 链接\n            if (link.startsWith('trojan://')) {\n                const url = new URL(link);\n                const name = decodeURIComponent(url.hash.substring(1));\n                const password = url.username;\n                const server = url.hostname;\n                const port = parseInt(url.port) || 443;\n                const params = new URLSearchParams(url.search);\n                \n                const network = params.get('type') || 'ws';\n                const path = params.get('path') || '/?ed=2048';\n                const host = params.get('host') || server;\n                const sni = params.get('sni') || host;\n                const alpn = params.get('alpn') || 'h3,h2,http/1.1';\n                const ech = params.get('ech');\n                \n                const node = {\n                    name: name,\n                    type: 'trojan',\n                    server: server,\n                    port: port,\n                    password: password,\n                    network: network,\n                    sni: sni,\n                    alpn: alpn.split(',').map(a => a.trim()),\n                    'skip-cert-verify': false\n                };\n                \n                if (network === 'ws') {\n                    node['ws-opts'] = {\n                        path: path,\n                        headers: {\n                            Host: host\n                        }\n                    };\n                }\n                \n                if (ech) {\n                    const echDomain = customECHDomain || 'cloudflare-ech.com';\n                    node['ech-opts'] = {\n                        enable: true,\n                        'query-server-name': echDomain\n                    };\n                }\n                \n                return node;\n            }\n        } catch (e) {\n            return null;\n        }\n        return null;\n    }\n\n    // 生成 Clash 配置\n    async function generateClashConfig(links, request, user) {\n        // 先通过订阅转换服务获取 Clash 配置\n        const subscriptionUrl = new URL(request.url);\n        subscriptionUrl.pathname = subscriptionUrl.pathname.replace(/\\/sub$/, '') + '/sub';\n        subscriptionUrl.searchParams.set('target', 'base64');\n        const encodedUrl = encodeURIComponent(subscriptionUrl.toString());\n        const converterUrl = `${scu}?target=clash&url=${encodedUrl}&insert=false&emoji=true&list=false&xudp=false&udp=false&tfo=false&expand=true&scv=false&fdn=false&new_name=true`;\n        \n        try {\n            const response = await fetch(converterUrl);\n            if (!response.ok) {\n                throw new Error('订阅转换服务失败');\n            }\n            \n            let clashConfig = await response.text();\n            \n            // 如果 ECH 开启，为所有节点添加 ECH 参数\n            if (enableECH) {\n                // 处理单行格式的节点：  - {name: ..., server: ..., ...}\n                // 需要正确处理嵌套的花括号（如 ws-opts: {path: \"...\", headers: {Host: ...}}）\n                clashConfig = clashConfig.split('\\n').map(line => {\n                    // 检查是否是节点行（以 \"  - {\" 开头，且包含 name: 和 server:）\n                    if (/^\\s*-\\s*\\{/.test(line) && line.includes('name:') && line.includes('server:')) {\n                        // 检查是否已经有 ech-opts\n                        if (line.includes('ech-opts')) {\n                            return line; // 已有 ech-opts，不修改\n                        }\n                        // 找到最后一个 } 的位置（从右往左查找，处理嵌套花括号）\n                        const lastBraceIndex = line.lastIndexOf('}');\n                        if (lastBraceIndex > 0) {\n                            // 检查最后一个 } 之前是否有内容，确保格式正确\n                            const beforeBrace = line.substring(0, lastBraceIndex).trim();\n                            if (beforeBrace.length > 0) {\n                                // 在最后一个 } 之前添加 , ech-opts: {enable: true, query-server-name: ...}\n                                // 确保在逗号前有空格\n                                const echDomain = customECHDomain || 'cloudflare-ech.com';\n                                const needsComma = !beforeBrace.endsWith(',') && !beforeBrace.endsWith('{');\n                                return line.substring(0, lastBraceIndex) + (needsComma ? ', ' : ' ') + `ech-opts: {enable: true, query-server-name: ${echDomain}}` + line.substring(lastBraceIndex);\n                            }\n                        }\n                    }\n                    return line;\n                }).join('\\n');\n                \n                // 处理多行格式的节点（如果存在）\n                // 只处理单行格式，多行格式由订阅转换服务处理，不需要额外修改\n                // 如果订阅转换服务返回多行格式，通常已经是正确的格式\n            }\n            \n            // 替换 DNS nameserver 为阿里的加密 DNS\n            clashConfig = clashConfig.replace(/^(\\s*nameserver:\\s*\\n)((?:\\s*-\\s*[^\\n]+\\n)*)/m, (match, header, items) => {\n                // 替换所有 nameserver 项为阿里的加密 DNS\n                const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                return header + `    - ${dnsServer}\\n`;\n            });\n            \n            return clashConfig;\n        } catch (e) {\n            // 如果订阅转换失败，返回错误\n            throw new Error('无法获取 Clash 配置: ' + e.message);\n        }\n    }\n\n    // 全局变量存储ECH调试信息\n    let echDebugInfo = '';\n    \n    async function fetchECHConfig(domain) {\n        if (!enableECH) {\n            echDebugInfo = 'ECH功能已禁用';\n            return null;\n        }\n        \n        echDebugInfo = '';\n        const debugSteps = [];\n        \n        try {\n            // 优先使用 Google DNS 查询 cloudflare-ech.com 的 ECH 配置\n            debugSteps.push('尝试使用 Google DNS 查询 cloudflare-ech.com...');\n            const echDomainUrl = `https://v.recipes/dns/dns.google/dns-query?name=cloudflare-ech.com&type=65`;\n            const echResponse = await fetch(echDomainUrl, {\n                headers: {\n                    'Accept': 'application/json'\n                }\n            });\n            \n            debugSteps.push(`Google DNS 响应状态: ${echResponse.status}`);\n            \n            if (echResponse.ok) {\n                const echData = await echResponse.json();\n                debugSteps.push(`Google DNS 返回数据: ${JSON.stringify(echData).substring(0, 200)}...`);\n                \n                if (echData.Answer && echData.Answer.length > 0) {\n                    debugSteps.push(`找到 ${echData.Answer.length} 条答案记录`);\n                    for (const answer of echData.Answer) {\n                        if (answer.data) {\n                            debugSteps.push(`解析答案数据: ${typeof answer.data}, 长度: ${String(answer.data).length}`);\n                            // Google DNS 返回的数据格式可能不同，需要解析\n                            const dataStr = typeof answer.data === 'string' ? answer.data : JSON.stringify(answer.data);\n                            const echMatch = dataStr.match(/ech=([^\\s\"']+)/);\n                            if (echMatch && echMatch[1]) {\n                                echDebugInfo = debugSteps.join('\\\\n') + '\\\\n✅ 成功从 Google DNS 获取 ECH 配置';\n                                return echMatch[1];\n                            }\n                            // 如果没有找到，尝试直接使用 data（可能是 base64 编码的）\n                            if (answer.data && !dataStr.includes('ech=')) {\n                                try {\n                                    const decoded = atob(answer.data);\n                                    debugSteps.push(`尝试 base64 解码，解码后长度: ${decoded.length}`);\n                                    const decodedMatch = decoded.match(/ech=([^\\s\"']+)/);\n                                    if (decodedMatch && decodedMatch[1]) {\n                                        echDebugInfo = debugSteps.join('\\\\n') + '\\\\n✅ 成功从 Google DNS (base64解码) 获取 ECH 配置';\n                                        return decodedMatch[1];\n                                    }\n                                } catch (e) {\n                                    debugSteps.push(`base64 解码失败: ${e.message}`);\n                                }\n                            }\n                        }\n                    }\n                } else {\n                    debugSteps.push('Google DNS 未返回答案记录');\n                }\n            } else {\n                debugSteps.push(`Google DNS 请求失败: ${echResponse.status}`);\n            }\n            \n            // 如果 cloudflare-ech.com 查询失败，尝试使用 Google DNS 查询目标域名的 HTTPS 记录\n            debugSteps.push(`尝试使用 Google DNS 查询目标域名 ${domain}...`);\n            const dohUrl = `https://v.recipes/dns/dns.google/dns-query?name=${encodeURIComponent(domain)}&type=65`;\n            const response = await fetch(dohUrl, {\n                headers: {\n                    'Accept': 'application/json'\n                }\n            });\n            \n            debugSteps.push(`Google DNS (目标域名) 响应状态: ${response.status}`);\n            \n            if (response.ok) {\n                const data = await response.json();\n                debugSteps.push(`Google DNS (目标域名) 返回数据: ${JSON.stringify(data).substring(0, 200)}...`);\n                \n                if (data.Answer && data.Answer.length > 0) {\n                    debugSteps.push(`找到 ${data.Answer.length} 条答案记录`);\n                    for (const answer of data.Answer) {\n                        if (answer.data) {\n                            const dataStr = typeof answer.data === 'string' ? answer.data : JSON.stringify(answer.data);\n                            const echMatch = dataStr.match(/ech=([^\\s\"']+)/);\n                            if (echMatch && echMatch[1]) {\n                                echDebugInfo = debugSteps.join('\\\\n') + '\\\\n✅ 成功从 Google DNS (目标域名) 获取 ECH 配置';\n                                return echMatch[1];\n                            }\n                            // 尝试 base64 解码\n                            try {\n                                const decoded = atob(answer.data);\n                                const decodedMatch = decoded.match(/ech=([^\\s\"']+)/);\n                                if (decodedMatch && decodedMatch[1]) {\n                                    echDebugInfo = debugSteps.join('\\\\n') + '\\\\n✅ 成功从 Google DNS (目标域名, base64解码) 获取 ECH 配置';\n                                    return decodedMatch[1];\n                                }\n                            } catch (e) {\n                                debugSteps.push(`base64 解码失败: ${e.message}`);\n                            }\n                        }\n                    }\n                } else {\n                    debugSteps.push('Google DNS (目标域名) 未返回答案记录');\n                }\n            } else {\n                debugSteps.push(`Google DNS (目标域名) 请求失败: ${response.status}`);\n            }\n            \n            // 如果 Google DNS 失败，尝试使用 Cloudflare DNS 作为备选\n            debugSteps.push('尝试使用 Cloudflare DNS 作为备选...');\n            const cfEchUrl = `https://cloudflare-dns.com/dns-query?name=cloudflare-ech.com&type=65`;\n            const cfResponse = await fetch(cfEchUrl, {\n                headers: {\n                    'Accept': 'application/dns-json'\n                }\n            });\n            \n            debugSteps.push(`Cloudflare DNS 响应状态: ${cfResponse.status}`);\n            \n            if (cfResponse.ok) {\n                const cfData = await cfResponse.json();\n                debugSteps.push(`Cloudflare DNS 返回数据: ${JSON.stringify(cfData).substring(0, 200)}...`);\n                \n                if (cfData.Answer && cfData.Answer.length > 0) {\n                    debugSteps.push(`找到 ${cfData.Answer.length} 条答案记录`);\n                    for (const answer of cfData.Answer) {\n                        if (answer.data) {\n                            const echMatch = answer.data.match(/ech=([^\\s\"']+)/);\n                            if (echMatch && echMatch[1]) {\n                                echDebugInfo = debugSteps.join('\\\\n') + '\\\\n✅ 成功从 Cloudflare DNS 获取 ECH 配置';\n                                return echMatch[1];\n                            }\n                        }\n                    }\n                } else {\n                    debugSteps.push('Cloudflare DNS 未返回答案记录');\n                }\n            } else {\n                debugSteps.push(`Cloudflare DNS 请求失败: ${cfResponse.status}`);\n            }\n            \n            echDebugInfo = debugSteps.join('\\\\n') + '\\\\n❌ 所有DNS查询均失败，未获取到ECH配置';\n            return null;\n        } catch (error) {\n            echDebugInfo = debugSteps.join('\\\\n') + '\\\\n❌ 获取ECH配置时发生错误: ' + error.message;\n            return null;\n        }\n    }\n\n    async function handleSubscriptionRequest(request, user, url = null) {\n        if (!url) url = new URL(request.url);\n        \n        const finalLinks = [];\n        const workerDomain = url.hostname;\n        const target = url.searchParams.get('target') || 'base64';\n\n        // 如果启用了ECH，使用自定义值\n        let echConfig = null;\n        if (enableECH) {\n            const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n            const echDomain = customECHDomain || 'cloudflare-ech.com';\n            echConfig = `${echDomain}+${dnsServer}`;\n        }\n\n        async function addNodesFromList(list) {\n            if (ev) {\n                finalLinks.push(...generateLinksFromSource(list, user, workerDomain, echConfig));\n            }\n            if (et) {\n                finalLinks.push(...await generateTrojanLinksFromSource(list, user, workerDomain, echConfig));\n            }\n            if (ex) {\n                finalLinks.push(...generateXhttpLinksFromSource(list, user, workerDomain, echConfig));\n            }\n        }\n\n        if (currentWorkerRegion === 'CUSTOM') {\n            const nativeList = [{ ip: workerDomain, isp: '原生地址' }];\n            await addNodesFromList(nativeList);\n        } else {\n            try {\n                const nativeList = [{ ip: workerDomain, isp: '原生地址' }];\n                await addNodesFromList(nativeList);\n            } catch (error) {\n                if (!currentWorkerRegion) {\n                    currentWorkerRegion = await detectWorkerRegion(request);\n                }\n                \n                const bestBackupIP = await getBestBackupIP(currentWorkerRegion);\n                if (bestBackupIP) {\n                    fallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port;\n                    const backupList = [{ ip: bestBackupIP.domain, isp: 'ProxyIP-' + currentWorkerRegion }];\n                    await addNodesFromList(backupList);\n                } else {\n                    const nativeList = [{ ip: workerDomain, isp: '原生地址' }];\n                    await addNodesFromList(nativeList);\n                }\n            }\n        }\n\n        const hasCustomPreferred = customPreferredIPs.length > 0 || customPreferredDomains.length > 0;\n        \n        if (disablePreferred) {\n        } else if (hasCustomPreferred) {\n            \n            if (customPreferredIPs.length > 0 && epi) {\n                await addNodesFromList(customPreferredIPs);\n            }\n            \n            if (customPreferredDomains.length > 0 && epd) {\n                const customDomainList = customPreferredDomains.map(d => ({ ip: d.domain, isp: d.name || d.domain }));\n                await addNodesFromList(customDomainList);\n            }\n        } else {\n            \n            if (epd) {\n            const domainList = directDomains.map(d => ({ ip: d.domain, isp: d.name || d.domain }));\n                await addNodesFromList(domainList);\n            }\n\n            if (epi) {\n            const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n                if (piu === defaultURL) {\n                try {\n                    const dynamicIPList = await fetchDynamicIPs();\n                    if (dynamicIPList.length > 0) {\n                            await addNodesFromList(dynamicIPList);\n                    }\n                } catch (error) {\n                    if (!currentWorkerRegion) {\n                        currentWorkerRegion = await detectWorkerRegion(request);\n                    }\n                    \n                    const bestBackupIP = await getBestBackupIP(currentWorkerRegion);\n                    if (bestBackupIP) {\n                        fallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port;\n                        \n                        const backupList = [{ ip: bestBackupIP.domain, isp: 'ProxyIP-' + currentWorkerRegion }];\n                            await addNodesFromList(backupList);\n                        }\n                    }\n                }\n            }\n\n            if (egi) {\n            try {\n                const newIPList = await fetchAndParseNewIPs();\n                if (newIPList.length > 0) {\n                        if (ev) {\n                    finalLinks.push(...generateLinksFromNewIPs(newIPList, user, workerDomain, echConfig));\n                        }\n                        if (et) {\n                            finalLinks.push(...await generateTrojanLinksFromNewIPs(newIPList, user, workerDomain, echConfig));\n                        }\n                }\n            } catch (error) {\n                if (!currentWorkerRegion) {\n                    currentWorkerRegion = await detectWorkerRegion(request);\n                }\n                \n                const bestBackupIP = await getBestBackupIP(currentWorkerRegion);\n                if (bestBackupIP) {\n                    fallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port;\n                    \n                    const backupList = [{ ip: bestBackupIP.domain, isp: 'ProxyIP-' + currentWorkerRegion }];\n                        await addNodesFromList(backupList);\n                    }\n                }\n            }\n        }\n\n        if (finalLinks.length === 0) {\n            const errorRemark = \"所有节点获取失败\";\n            const proto = atob('dmxlc3M=');\n            const errorLink = `${proto}://00000000-0000-0000-0000-000000000000@127.0.0.1:80?encryption=none&security=none&type=ws&host=error.com&path=%2F#${encodeURIComponent(errorRemark)}`;\n            finalLinks.push(errorLink);\n        }\n\n        let subscriptionContent;\n        let contentType = 'text/plain; charset=utf-8';\n        \n        switch (target.toLowerCase()) {\n            case atob('Y2xhc2g='):\n            case atob('Y2xhc2hy'):\n                subscriptionContent = await generateClashConfig(finalLinks, request, user);\n                contentType = 'text/yaml; charset=utf-8';\n                break;\n            case atob('c3VyZ2U='):\n            case atob('c3VyZ2Uy'):\n            case atob('c3VyZ2Uz'):\n            case atob('c3VyZ2U0'):\n                subscriptionContent = generateSurgeConfig(finalLinks);\n                break;\n            case atob('cXVhbnR1bXVsdA=='):\n            case atob('cXVhbng='):\n            case 'quanx':\n                subscriptionContent = generateQuantumultConfig(finalLinks);\n                break;\n            case atob('c3M='):\n            case atob('c3Ny'):\n                subscriptionContent = generateSSConfig(finalLinks);\n                break;\n            case atob('djJyYXk='):\n                subscriptionContent = generateV2RayConfig(finalLinks);\n                break;\n            case atob('bG9vbg=='):\n                subscriptionContent = generateLoonConfig(finalLinks);\n                break;\n            default:\n                subscriptionContent = btoa(finalLinks.join('\\n'));\n        }\n        \n        const responseHeaders = { \n            'Content-Type': contentType,\n            'Cache-Control': 'no-store, no-cache, must-revalidate, max-age=0',\n        };\n        \n        // 添加ECH状态到响应头\n        if (enableECH) {\n            responseHeaders['X-ECH-Status'] = 'ENABLED';\n            if (echConfig) {\n                responseHeaders['X-ECH-Config-Length'] = String(echConfig.length);\n            }\n        }\n        \n        return new Response(subscriptionContent, {\n            headers: responseHeaders,\n        });\n    }\n\n    function generateLinksFromSource(list, user, workerDomain, echConfig = null) {\n        \n        const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095];\n        const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443];\n        \n        const defaultHttpsPorts = [443];\n        const defaultHttpPorts = disableNonTLS ? [] : [80];\n        const links = [];\n        const wsPath = '/?ed=2048';\n        const proto = atob('dmxlc3M=');\n\n        list.forEach(item => {\n            let nodeNameBase = item.isp.replace(/\\s/g, '_');\n            if (item.colo && item.colo.trim()) {\n                nodeNameBase = `${nodeNameBase}-${item.colo.trim()}`;\n            }\n            const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip;\n            \n            let portsToGenerate = [];\n            \n            if (item.port) {\n                \n                const port = item.port;\n                \n                if (CF_HTTPS_PORTS.includes(port)) {\n                    \n                    portsToGenerate.push({ port: port, tls: true });\n                } else if (CF_HTTP_PORTS.includes(port)) {\n                    \n                    if (!disableNonTLS) {\n                        portsToGenerate.push({ port: port, tls: false });\n                    }\n                } else {\n                    \n                    portsToGenerate.push({ port: port, tls: true });\n                }\n            } else {\n                \n                defaultHttpsPorts.forEach(port => {\n                    portsToGenerate.push({ port: port, tls: true });\n                });\n                defaultHttpPorts.forEach(port => {\n                    portsToGenerate.push({ port: port, tls: false });\n                });\n            }\n\n            portsToGenerate.forEach(({ port, tls }) => {\n                if (tls) {\n                    \n                    const wsNodeName = `${nodeNameBase}-${port}-WS-TLS`;\n                    const wsParams = new URLSearchParams({ \n                        encryption: 'none', \n                        security: 'tls', \n                        sni: workerDomain, \n                        fp: enableECH ? 'chrome' : 'randomized',\n                        type: 'ws', \n                        host: workerDomain, \n                        path: wsPath\n                    });\n                    \n                    // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n                    if (enableECH) {\n                        const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                        const echDomain = customECHDomain || 'cloudflare-ech.com';\n                        wsParams.set('alpn', 'h3,h2,http/1.1');\n                        wsParams.set('ech', `${echDomain}+${dnsServer}`);\n                    }\n                    \n                    links.push(`${proto}://${user}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`);\n                } else {\n                    \n                    const wsNodeName = `${nodeNameBase}-${port}-WS`;\n                    const wsParams = new URLSearchParams({\n                        encryption: 'none',\n                        security: 'none',\n                        type: 'ws',\n                        host: workerDomain,\n                        path: wsPath\n                    });\n                    links.push(`${proto}://${user}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`);\n                }\n            });\n        });\n        return links;\n    }\n\n    async function generateTrojanLinksFromSource(list, user, workerDomain, echConfig = null) {\n        \n        const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095];\n        const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443];\n        \n        const defaultHttpsPorts = [443];\n        const defaultHttpPorts = disableNonTLS ? [] : [80];\n        const links = [];\n        const wsPath = '/?ed=2048';\n        \n        const password = tp || user;\n\n        list.forEach(item => {\n            let nodeNameBase = item.isp.replace(/\\s/g, '_');\n            if (item.colo && item.colo.trim()) {\n                nodeNameBase = `${nodeNameBase}-${item.colo.trim()}`;\n            }\n            const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip;\n            \n            let portsToGenerate = [];\n            \n            if (item.port) {\n                const port = item.port;\n                \n                if (CF_HTTPS_PORTS.includes(port)) {\n                    portsToGenerate.push({ port: port, tls: true });\n                } else if (CF_HTTP_PORTS.includes(port)) {\n                    if (!disableNonTLS) {\n                        portsToGenerate.push({ port: port, tls: false });\n                    }\n                } else {\n                    portsToGenerate.push({ port: port, tls: true });\n                }\n            } else {\n                defaultHttpsPorts.forEach(port => {\n                    portsToGenerate.push({ port: port, tls: true });\n                });\n                defaultHttpPorts.forEach(port => {\n                    portsToGenerate.push({ port: port, tls: false });\n                });\n            }\n\n            portsToGenerate.forEach(({ port, tls }) => {\n                if (tls) {\n                    \n                    const wsNodeName = `${nodeNameBase}-${port}-${atob('VHJvamFu')}-WS-TLS`;\n                    const wsParams = new URLSearchParams({ \n                        security: 'tls', \n                        sni: workerDomain, \n                        fp: 'chrome',\n                        type: 'ws', \n                        host: workerDomain, \n                        path: wsPath\n                    });\n                    \n                    // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n                    if (enableECH) {\n                        const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                        const echDomain = customECHDomain || 'cloudflare-ech.com';\n                        wsParams.set('alpn', 'h3,h2,http/1.1');\n                        wsParams.set('ech', `${echDomain}+${dnsServer}`);\n                    }\n                    \n                    links.push(`${atob('dHJvamFuOi8v')}${password}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`);\n                } else {\n                    \n                    const wsNodeName = `${nodeNameBase}-${port}-${atob('VHJvamFu')}-WS`;\n                    const wsParams = new URLSearchParams({\n                        security: 'none',\n                        type: 'ws',\n                        host: workerDomain,\n                        path: wsPath\n                    });\n                    links.push(`${atob('dHJvamFuOi8v')}${password}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`);\n                }\n            });\n        });\n        return links;\n    }\n\n    async function fetchDynamicIPs() {\n        const v4Url1 = \"https://www.wetest.vip/page/cloudflare/address_v4.html\";\n        const v6Url1 = \"https://www.wetest.vip/page/cloudflare/address_v6.html\";\n        let results = [];\n\n        // 读取筛选配置（默认全部启用）\n        const ipv4Enabled = getConfigValue('ipv4', '') === '' || getConfigValue('ipv4', 'yes') !== 'no';\n        const ipv6Enabled = getConfigValue('ipv6', '') === '' || getConfigValue('ipv6', 'yes') !== 'no';\n        const ispMobile = getConfigValue('ispMobile', '') === '' || getConfigValue('ispMobile', 'yes') !== 'no';\n        const ispUnicom = getConfigValue('ispUnicom', '') === '' || getConfigValue('ispUnicom', 'yes') !== 'no';\n        const ispTelecom = getConfigValue('ispTelecom', '') === '' || getConfigValue('ispTelecom', 'yes') !== 'no';\n\n        try {\n            const fetchPromises = [];\n            if (ipv4Enabled) {\n                fetchPromises.push(fetchAndParseWetest(v4Url1));\n            } else {\n                fetchPromises.push(Promise.resolve([]));\n            }\n            if (ipv6Enabled) {\n                fetchPromises.push(fetchAndParseWetest(v6Url1));\n            } else {\n                fetchPromises.push(Promise.resolve([]));\n            }\n\n            const [ipv4List, ipv6List] = await Promise.all(fetchPromises);\n            results = [...ipv4List, ...ipv6List];\n            \n            // 按运营商筛选\n            if (results.length > 0) {\n                results = results.filter(item => {\n                    const isp = item.isp || '';\n                    if (isp.includes('移动') && !ispMobile) return false;\n                    if (isp.includes('联通') && !ispUnicom) return false;\n                    if (isp.includes('电信') && !ispTelecom) return false;\n                    return true;\n                });\n            }\n            \n            if (results.length > 0) {\n                return results;\n            }\n        } catch (e) {\n        }\n\n                return [];\n            }\n\n    async function fetchAndParseWetest(url) {\n        try {\n            const response = await fetch(url, { headers: { 'User-Agent': 'Mozilla/5.0' } });\n            if (!response.ok) {\n                return [];\n            }\n            const html = await response.text();\n            const results = [];\n            const rowRegex = /<tr[\\s\\S]*?<\\/tr>/g;\n            const cellRegex = /<td data-label=\"线路名称\">(.+?)<\\/td>[\\s\\S]*?<td data-label=\"优选地址\">([\\d.:a-fA-F]+)<\\/td>[\\s\\S]*?<td data-label=\"数据中心\">(.+?)<\\/td>/;\n\n            let match;\n            while ((match = rowRegex.exec(html)) !== null) {\n                const rowHtml = match[0];\n                const cellMatch = rowHtml.match(cellRegex);\n                if (cellMatch && cellMatch[1] && cellMatch[2]) {\n                    const colo = cellMatch[3] ? cellMatch[3].trim().replace(/<.*?>/g, '') : '';\n                    results.push({\n                        isp: cellMatch[1].trim().replace(/<.*?>/g, ''),\n                        ip: cellMatch[2].trim(),\n                        colo: colo\n                    });\n                }\n            }\n            \n            if (results.length === 0) {\n            }\n\n            return results;\n        } catch (error) {\n            return [];\n        }\n    }\n\n    async function handleWsRequest(request) {\n        // 从请求URL的path query中读取客户端自定义参数\n        // p=ProxyIP, wk=Worker地区, rm=地区匹配(no关闭), s=socks5代理\n        const reqUrl = new URL(request.url);\n        const reqFallback = reqUrl.searchParams.get('p') || '';\n        const reqRegion = (reqUrl.searchParams.get('wk') || '').toUpperCase();\n        const reqRmStr = reqUrl.searchParams.get('rm') || '';\n        const reqRm = reqRmStr ? reqRmStr.toLowerCase() !== 'no' : null;\n        const reqSocksStr = reqUrl.searchParams.get('s') || '';\n        let reqSocksConfig = null;\n        if (reqSocksStr) {\n            try { reqSocksConfig = parseSocksConfig(reqSocksStr); } catch (_) {}\n        }\n\n        // 检测并设置当前Worker地区，确保WebSocket请求能正确进行就近匹配\n        // 优先级：客户端path参数wk > 全局manualWorkerRegion > 自动检测\n        let effectiveRegion = currentWorkerRegion;\n        if (!effectiveRegion || effectiveRegion === '') {\n            if (reqRegion) {\n                effectiveRegion = reqRegion;\n            } else if (manualWorkerRegion && manualWorkerRegion.trim()) {\n                effectiveRegion = manualWorkerRegion.trim().toUpperCase();\n            } else {\n                effectiveRegion = await detectWorkerRegion(request);\n            }\n        } else if (reqRegion) {\n            effectiveRegion = reqRegion;\n        }\n        \n        const wsPair = new WebSocketPair();\n        const [clientSock, serverSock] = Object.values(wsPair);\n        serverSock.accept();\n\n        let remoteConnWrapper = { socket: null };\n        let isDnsQuery = false;\n        let protocolType = null; \n\n        const earlyData = request.headers.get(atob('c2VjLXdlYnNvY2tldC1wcm90b2NvbA==')) || '';\n        const readable = makeReadableStream(serverSock, earlyData);\n\n        readable.pipeTo(new WritableStream({\n            async write(chunk) {\n                if (isDnsQuery) return await forwardUDP(chunk, serverSock, null);\n                if (remoteConnWrapper.socket) {\n                    const writer = remoteConnWrapper.socket.writable.getWriter();\n                    await writer.write(chunk);\n                    writer.releaseLock();\n                    return;\n                }\n                \n                if (!protocolType) {\n                    \n                    if (ev && chunk.byteLength >= 24) {\n                        const vlessResult = parseWsPacketHeader(chunk, at);\n                        if (!vlessResult.hasError) {\n                            protocolType = 'vless';\n                            const { addressType, port, hostname, rawIndex, version, isUDP } = vlessResult;\n                if (isUDP) {\n                    if (port === 53) isDnsQuery = true;\n                    else throw new Error(E_UDP_DNS_ONLY);\n                }\n                const respHeader = new Uint8Array([version[0], 0]);\n                const rawData = chunk.slice(rawIndex);\n                if (isDnsQuery) return forwardUDP(rawData, serverSock, respHeader);\n                await forwardTCP(addressType, hostname, port, rawData, serverSock, respHeader, remoteConnWrapper, reqFallback, effectiveRegion, reqRm, reqSocksConfig);\n                            return;\n                        }\n                    }\n                    \n                    if (et && chunk.byteLength >= 56) {\n                        const tjResult = await parseTrojanHeader(chunk, at);\n                        if (!tjResult.hasError) {\n                            protocolType = atob('dHJvamFu');\n                            const { addressType, port, hostname, rawClientData } = tjResult;\n                            await forwardTCP(addressType, hostname, port, rawClientData, serverSock, null, remoteConnWrapper, reqFallback, effectiveRegion, reqRm, reqSocksConfig);\n                            return;\n                        }\n                    }\n                    \n                    throw new Error('Invalid protocol or authentication failed');\n                }\n            },\n        })).catch((err) => { });\n\n        return new Response(null, { status: 101, webSocket: clientSock });\n    }\n\n    async function forwardTCP(addrType, host, portNum, rawData, ws, respHeader, remoteConnWrapper, reqFallback = '', reqRegion = '', reqRm = null, reqSocksConfig = null) {\n        // 优先使用客户端path参数，其次回退到全局配置\n        const effectiveFallback = reqFallback || fallbackAddress;\n        const effectiveRegion = reqRegion || currentWorkerRegion;\n        const effectiveRegionMatching = reqRm !== null ? reqRm : enableRegionMatching;\n        const effectiveSocksConfig = reqSocksConfig || parsedSocks5Config;\n        const effectiveSocksEnabled = reqSocksConfig ? true : isSocksEnabled;\n\n        async function connectAndSend(address, port, useSocks = false) {\n            const remoteSock = useSocks ?\n                await establishSocksConnection(addrType, address, port, effectiveSocksConfig) :\n                connect({ hostname: address, port: port });\n            const writer = remoteSock.writable.getWriter();\n            await writer.write(rawData);\n            writer.releaseLock();\n            return remoteSock;\n        }\n        \n        async function retryConnection() {\n            if (enableSocksDowngrade && effectiveSocksEnabled) {\n                try {\n                    const socksSocket = await connectAndSend(host, portNum, true);\n                    remoteConnWrapper.socket = socksSocket;\n                    socksSocket.closed.catch(() => {}).finally(() => closeSocketQuietly(ws));\n                    connectStreams(socksSocket, ws, respHeader, null);\n                    return;\n                } catch (socksErr) {\n                    let backupHost, backupPort;\n                    if (effectiveFallback && effectiveFallback.trim()) {\n                        const parsed = parseAddressAndPort(effectiveFallback);\n                        backupHost = parsed.address;\n                        backupPort = parsed.port || portNum;\n                    } else {\n                        const bestBackupIP = await getBestBackupIP(effectiveRegion, effectiveRegionMatching);\n                        backupHost = bestBackupIP ? bestBackupIP.domain : host;\n                        backupPort = bestBackupIP ? bestBackupIP.port : portNum;\n                    }\n                    \n                    try {\n                        const fallbackSocket = await connectAndSend(backupHost, backupPort, false);\n                        remoteConnWrapper.socket = fallbackSocket;\n                        fallbackSocket.closed.catch(() => {}).finally(() => closeSocketQuietly(ws));\n                        connectStreams(fallbackSocket, ws, respHeader, null);\n                    } catch (fallbackErr) {\n                        closeSocketQuietly(ws);\n                    }\n                }\n            } else {\n                let backupHost, backupPort;\n                if (effectiveFallback && effectiveFallback.trim()) {\n                    const parsed = parseAddressAndPort(effectiveFallback);\n                    backupHost = parsed.address;\n                    backupPort = parsed.port || portNum;\n                } else {\n                    const bestBackupIP = await getBestBackupIP(effectiveRegion, effectiveRegionMatching);\n                    backupHost = bestBackupIP ? bestBackupIP.domain : host;\n                    backupPort = bestBackupIP ? bestBackupIP.port : portNum;\n                }\n                \n                try {\n                    const fallbackSocket = await connectAndSend(backupHost, backupPort, effectiveSocksEnabled);\n                    remoteConnWrapper.socket = fallbackSocket;\n                    fallbackSocket.closed.catch(() => {}).finally(() => closeSocketQuietly(ws));\n                    connectStreams(fallbackSocket, ws, respHeader, null);\n                } catch (fallbackErr) {\n                    closeSocketQuietly(ws);\n                }\n            }\n        }\n        \n        try {\n            const initialSocket = await connectAndSend(host, portNum, enableSocksDowngrade ? false : effectiveSocksEnabled);\n            remoteConnWrapper.socket = initialSocket;\n            connectStreams(initialSocket, ws, respHeader, retryConnection);\n        } catch (err) {\n            retryConnection();\n        }\n    }\n\n    function parseWsPacketHeader(chunk, token) {\n        if (chunk.byteLength < 24) return { hasError: true, message: E_INVALID_DATA };\n        const version = new Uint8Array(chunk.slice(0, 1));\n        if (formatIdentifier(new Uint8Array(chunk.slice(1, 17))) !== token) return { hasError: true, message: E_INVALID_USER };\n        const optLen = new Uint8Array(chunk.slice(17, 18))[0];\n        const cmd = new Uint8Array(chunk.slice(18 + optLen, 19 + optLen))[0];\n        let isUDP = false;\n        if (cmd === 1) {} else if (cmd === 2) { isUDP = true; } else { return { hasError: true, message: E_UNSUPPORTED_CMD }; }\n        const portIdx = 19 + optLen;\n        const port = new DataView(chunk.slice(portIdx, portIdx + 2)).getUint16(0);\n        let addrIdx = portIdx + 2, addrLen = 0, addrValIdx = addrIdx + 1, hostname = '';\n        const addressType = new Uint8Array(chunk.slice(addrIdx, addrValIdx))[0];\n        switch (addressType) {\n            case ADDRESS_TYPE_IPV4: addrLen = 4; hostname = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + addrLen)).join('.'); break;\n            case ADDRESS_TYPE_URL: addrLen = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + 1))[0]; addrValIdx += 1; hostname = new TextDecoder().decode(chunk.slice(addrValIdx, addrValIdx + addrLen)); break;\n            case ADDRESS_TYPE_IPV6: addrLen = 16; const ipv6 = []; const ipv6View = new DataView(chunk.slice(addrValIdx, addrValIdx + addrLen)); for (let i = 0; i < 8; i++) ipv6.push(ipv6View.getUint16(i * 2).toString(16)); hostname = ipv6.join(':'); break;\n            default: return { hasError: true, message: `${E_INVALID_ADDR_TYPE}: ${addressType}` };\n        }\n        if (!hostname) return { hasError: true, message: `${E_EMPTY_ADDR}: ${addressType}` };\n        return { hasError: false, addressType, port, hostname, isUDP, rawIndex: addrValIdx + addrLen, version };\n    }\n\n    function makeReadableStream(socket, earlyDataHeader) {\n        let cancelled = false;\n        return new ReadableStream({\n            start(controller) {\n                socket.addEventListener('message', (event) => { if (!cancelled) controller.enqueue(event.data); });\n                socket.addEventListener('close', () => { if (!cancelled) { closeSocketQuietly(socket); controller.close(); } });\n                socket.addEventListener('error', (err) => controller.error(err));\n                const { earlyData, error } = base64ToArray(earlyDataHeader);\n                if (error) controller.error(error); else if (earlyData) controller.enqueue(earlyData);\n            },\n            cancel() { cancelled = true; closeSocketQuietly(socket); }\n        });\n    }\n\n    async function connectStreams(remoteSocket, webSocket, headerData, retryFunc) {\n        let header = headerData, hasData = false;\n        await remoteSocket.readable.pipeTo(\n            new WritableStream({\n                async write(chunk, controller) {\n                    hasData = true;\n                    if (webSocket.readyState !== 1) controller.error(E_WS_NOT_OPEN);\n                    if (header) { webSocket.send(await new Blob([header, chunk]).arrayBuffer()); header = null; } \n                    else { webSocket.send(chunk); }\n                },\n                abort(reason) { },\n            })\n        ).catch((error) => { closeSocketQuietly(webSocket); });\n        if (!hasData && retryFunc) retryFunc();\n    }\n\n    async function forwardUDP(udpChunk, webSocket, respHeader) {\n        try {\n            const tcpSocket = connect({ hostname: '8.8.4.4', port: 53 });\n            let header = respHeader;\n            const writer = tcpSocket.writable.getWriter();\n            await writer.write(udpChunk);\n            writer.releaseLock();\n            await tcpSocket.readable.pipeTo(new WritableStream({\n                async write(chunk) {\n                    if (webSocket.readyState === 1) {\n                        if (header) { webSocket.send(await new Blob([header, chunk]).arrayBuffer()); header = null; } \n                        else { webSocket.send(chunk); }\n                    }\n                },\n            }));\n        } catch (error) { }\n    }\n\n    async function establishSocksConnection(addrType, address, port, socksConfig = parsedSocks5Config) {\n        const { username, password, hostname, socksPort } = socksConfig;\n        const socket = connect({ hostname, port: socksPort });\n        const writer = socket.writable.getWriter();\n        await writer.write(new Uint8Array(username ? [5, 2, 0, 2] : [5, 1, 0]));\n        const reader = socket.readable.getReader();\n        let res = (await reader.read()).value;\n        if (res[0] !== 5 || res[1] === 255) throw new Error(E_SOCKS_NO_METHOD);\n        if (res[1] === 2) {\n            if (!username || !password) throw new Error(E_SOCKS_AUTH_NEEDED);\n            const encoder = new TextEncoder();\n            const authRequest = new Uint8Array([1, username.length, ...encoder.encode(username), password.length, ...encoder.encode(password)]);\n            await writer.write(authRequest);\n            res = (await reader.read()).value;\n            if (res[0] !== 1 || res[1] !== 0) throw new Error(E_SOCKS_AUTH_FAIL);\n        }\n        const encoder = new TextEncoder(); let DSTADDR;\n        switch (addrType) {\n            case ADDRESS_TYPE_IPV4: DSTADDR = new Uint8Array([1, ...address.split('.').map(Number)]); break;\n            case ADDRESS_TYPE_URL: DSTADDR = new Uint8Array([3, address.length, ...encoder.encode(address)]); break;\n            case ADDRESS_TYPE_IPV6: DSTADDR = new Uint8Array([4, ...address.split(':').flatMap(x => [parseInt(x.slice(0, 2), 16), parseInt(x.slice(2), 16)])]); break;\n            default: throw new Error(E_INVALID_ADDR_TYPE);\n        }\n        await writer.write(new Uint8Array([5, 1, 0, ...DSTADDR, port >> 8, port & 255]));\n        res = (await reader.read()).value;\n        if (res[1] !== 0) throw new Error(E_SOCKS_CONN_FAIL);\n        writer.releaseLock(); reader.releaseLock();\n        return socket;\n    }\n\n    function parseSocksConfig(address) {\n        let [latter, former] = address.split(\"@\").reverse(); \n        let username, password, hostname, socksPort;\n        \n        if (former) { \n            const formers = former.split(\":\"); \n            if (formers.length !== 2) throw new Error(E_INVALID_SOCKS_ADDR);\n            [username, password] = formers; \n        }\n        \n        const latters = latter.split(\":\"); \n        socksPort = Number(latters.pop()); \n        if (isNaN(socksPort)) throw new Error(E_INVALID_SOCKS_ADDR);\n        \n        hostname = latters.join(\":\"); \n        if (hostname.includes(\":\") && !/^\\[.*\\]$/.test(hostname)) throw new Error(E_INVALID_SOCKS_ADDR);\n        \n        return { username, password, hostname, socksPort };\n    }\n\n    async function handleSubscriptionPage(request, user = null) {\n        if (!user) user = at;\n        \n        const url = new URL(request.url);\n        // 优先检查Cookie中的语言设置\n        const cookieHeader = request.headers.get('Cookie') || '';\n        let langFromCookie = null;\n        if (cookieHeader) {\n            const cookies = cookieHeader.split(';').map(c => c.trim());\n            for (const cookie of cookies) {\n                if (cookie.startsWith('preferredLanguage=')) {\n                    langFromCookie = cookie.split('=')[1];\n                    break;\n                }\n            }\n        }\n        \n        let isFarsi = false;\n        \n        if (langFromCookie === 'fa' || langFromCookie === 'fa-IR') {\n            isFarsi = true;\n        } else if (langFromCookie === 'zh' || langFromCookie === 'zh-CN') {\n            isFarsi = false;\n        } else {\n            // 如果没有Cookie，使用浏览器语言检测\n            const acceptLanguage = request.headers.get('Accept-Language') || '';\n            const browserLang = acceptLanguage.split(',')[0].split('-')[0].toLowerCase();\n            isFarsi = browserLang === 'fa' || acceptLanguage.includes('fa-IR') || acceptLanguage.includes('fa');\n        }\n            \n            const langAttr = isFarsi ? 'fa-IR' : 'zh-CN';\n            \n            const translations = {\n                zh: {\n                    title: '订阅中心',\n                    subtitle: '多客户端支持 • 智能优选 • 一键生成',\n                    selectClient: '[ 选择客户端 ]',\n                    systemStatus: '[ 系统状态 ]',\n                    configManagement: '[ 配置管理 ]',\n                    relatedLinks: '[ 相关链接 ]',\n                    checking: '检测中...',\n                    workerRegion: 'Worker地区: ',\n                    detectionMethod: '检测方式: ',\n                    proxyIPStatus: 'ProxyIP状态: ',\n                    currentIP: '当前使用IP: ',\n                    regionMatch: '地区匹配: ',\n                    selectionLogic: '选择逻辑: ',\n                    kvStatusChecking: '检测KV状态中...',\n                    kvEnabled: '✅ KV存储已启用，可以使用配置管理功能',\n                    kvDisabled: '⚠️ KV存储未启用或未配置',\n                    specifyRegion: '指定地区 (wk):',\n                    autoDetect: '自动检测',\n                    saveRegion: '保存地区配置',\n                    protocolSelection: '协议选择:',\n                    enableVLESS: '启用 VLESS 协议',\n                    enableTrojan: '启用 Trojan 协议',\n                    enableXhttp: '启用 xhttp 协议',\n                    trojanPassword: 'Trojan 密码 (可选):',\n                    customPath: '自定义路径 (d):',\n                    customIP: '自定义ProxyIP (p):',\n                    preferredIPs: '优选IP列表 (yx):',\n                    preferredIPsURL: '优选IP来源URL (yxURL):',\n                    latencyTest: '延迟测试',\n                    latencyTestIP: '测试IP/域名:',\n                    latencyTestIPPlaceholder: '输入IP或域名，多个用逗号分隔',\n                    latencyTestPort: '端口:',\n                    startTest: '开始测试',\n                    stopTest: '停止测试',\n                    testResult: '测试结果:',\n                    addToYx: '添加到优选列表',\n                    addSelectedToYx: '添加选中项到优选列表',\n                    selectAll: '全选',\n                    deselectAll: '取消全选',\n                    testingInProgress: '测试中...',\n                    testComplete: '测试完成',\n                    latencyMs: '延迟',\n                    timeout: '超时',\n                    ipSource: 'IP来源:',\n                    manualInput: '手动输入',\n                    cfRandomIP: 'CF随机IP',\n                    urlFetch: 'URL获取',\n                    randomCount: '生成数量:',\n                    fetchURL: '获取URL:',\n                    fetchURLPlaceholder: '输入优选IP的URL地址',\n                    generateIP: '生成IP',\n                    fetchIP: '获取IP',\n                    socks5Config: 'SOCKS5配置 (s):',\n                    customHomepage: '自定义首页URL (homepage):',\n                    customHomepagePlaceholder: '例如: https://example.com',\n                    customHomepageHint: '设置自定义URL作为首页伪装。访问根路径 / 时将显示该URL的内容。留空则显示默认终端页面。',\n                    saveConfig: '保存配置',\n                    advancedControl: '高级控制',\n                    subscriptionConverter: '订阅转换地址:',\n                    builtinPreferred: '内置优选类型:',\n                    enablePreferredDomain: '启用优选域名',\n                    enablePreferredIP: '启用优选 IP',\n                    enableGitHubPreferred: '启用 GitHub 默认优选',\n                    allowAPIManagement: '允许API管理 (ae):',\n                    regionMatching: '地区匹配 (rm):',\n                    downgradeControl: '降级控制 (qj):',\n                    tlsControl: 'TLS控制 (dkby):',\n                    preferredControl: '优选控制 (yxby):',\n                    saveAdvanced: '保存高级配置',\n                    loading: '加载中...',\n                    currentConfig: '📍 当前路径配置',\n                    refreshConfig: '刷新配置',\n                    resetConfig: '重置配置',\n                    subscriptionCopied: '订阅链接已复制',\n                    autoSubscriptionCopied: '自动识别订阅链接已复制，客户端访问时会根据User-Agent自动识别并返回对应格式',\n                    trojanPasswordPlaceholder: '留空则自动使用 UUID',\n                    trojanPasswordHint: '设置自定义 Trojan 密码。留空则使用 UUID。客户端会自动对密码进行 SHA224 哈希。',\n                    protocolHint: '可以同时启用多个协议。订阅将生成选中协议的节点。<br>• VLESS WS: 基于 WebSocket 的标准协议<br>• Trojan: 使用 SHA224 密码认证<br>• xhttp: 基于 HTTP POST 的伪装协议（需要绑定自定义域名并开启 gRPC）',\n                    enableECH: '启用 ECH (Encrypted Client Hello)',\n                    enableECHHint: '启用后，每次刷新订阅时会自动从 DoH 获取最新的 ECH 配置并添加到链接中',\n                    customDNS: '自定义 DNS 服务器',\n                    customDNSPlaceholder: '例如: https://dns.joeyblog.eu.org/joeyblog',\n                    customDNSHint: '用于ECH配置查询的DNS服务器地址（DoH格式）',\n                    customECHDomain: '自定义 ECH 域名',\n                    customECHDomainPlaceholder: '例如: cloudflare-ech.com',\n                    customECHDomainHint: 'ECH配置中使用的域名，留空则使用默认值',\n                    saveProtocol: '保存协议配置',\n                    subscriptionConverterPlaceholder: '默认: https://url.v1.mk/sub',\n                    subscriptionConverterHint: '自定义订阅转换API地址，留空则使用默认地址',\n                    builtinPreferredHint: '控制订阅中包含哪些内置优选节点。默认全部启用。',\n                    apiEnabledDefault: '默认（关闭API）',\n                    apiEnabledYes: '开启API管理',\n                    apiEnabledHint: '⚠️ 安全提醒：开启后允许通过API动态添加优选IP。建议仅在需要时开启。',\n                    regionMatchingDefault: '默认（启用地区匹配）',\n                    regionMatchingNo: '关闭地区匹配',\n                    regionMatchingHint: '设置为\"关闭\"时不进行地区智能匹配',\n                    downgradeControlDefault: '默认（不启用降级）',\n                    downgradeControlNo: '启用降级模式',\n                    downgradeControlHint: '设置为\"启用\"时：CF直连失败→SOCKS5连接→fallback地址',\n                    tlsControlDefault: '默认（保留所有节点）',\n                    tlsControlYes: '仅TLS节点',\n                    tlsControlHint: '设置为\"仅TLS节点\"时只生成带TLS的节点，不生成非TLS节点（如80端口）',\n                    preferredControlDefault: '默认（启用优选）',\n                    preferredControlYes: '关闭优选',\n                    preferredControlHint: '设置为\"关闭优选\"时只使用原生地址，不生成优选IP和域名节点',\n                    regionNames: {\n                        US: '🇺🇸 美国', SG: '🇸🇬 新加坡', JP: '🇯🇵 日本',\n                        KR: '🇰🇷 韩国', DE: '🇩🇪 德国', SE: '🇸🇪 瑞典', NL: '🇳🇱 荷兰',\n                        FI: '🇫🇮 芬兰', GB: '🇬🇧 英国'\n                    },\n                    terminal: '终端 v2.9.4',\n                    githubProject: 'GitHub 项目',\n                    autoDetectClient: '自动识别',\n                selectionLogicText: '同地区 → 邻近地区 → 其他地区',\n                customIPDisabledHint: '使用自定义ProxyIP时，地区选择已禁用',\n                customIPMode: '自定义ProxyIP模式 (p变量启用)',\n                customIPModeDesc: '自定义IP模式 (已禁用地区匹配)',\n                usingCustomProxyIP: '使用自定义ProxyIP: ',\n                customIPConfig: ' (p变量配置)',\n                customIPModeDisabled: '自定义IP模式，地区选择已禁用',\n                manualRegion: '手动指定地区',\n                manualRegionDesc: ' (手动指定)',\n                proxyIPAvailable: '10/10 可用 (ProxyIP域名预设可用)',\n                smartSelection: '智能就近选择中',\n                sameRegionIP: '同地区IP可用 (1个)',\n                cloudflareDetection: 'Cloudflare内置检测',\n                detectionFailed: '检测失败',\n                apiTestResult: 'API检测结果: ',\n                apiTestTime: '检测时间: ',\n                apiTestFailed: 'API检测失败: ',\n                unknownError: '未知错误',\n                apiTestError: 'API测试失败: ',\n                kvNotConfigured: 'KV存储未配置，无法使用配置管理功能。\\\\n\\\\n请在Cloudflare Workers中:\\\\n1. 创建KV命名空间\\\\n2. 绑定环境变量 C\\\\n3. 重新部署代码',\n                kvNotEnabled: 'KV存储未配置',\n                kvCheckFailed: 'KV存储检测失败: 响应格式错误',\n                kvCheckFailedStatus: 'KV存储检测失败 - 状态码: ',\n                kvCheckFailedError: 'KV存储检测失败 - 错误: '\n            },\n                fa: {\n                    title: 'مرکز اشتراک',\n                    subtitle: 'پشتیبانی چند کلاینت • انتخاب هوشمند • تولید یک کلیکی',\n                    selectClient: '[ انتخاب کلاینت ]',\n                    systemStatus: '[ وضعیت سیستم ]',\n                    configManagement: '[ مدیریت تنظیمات ]',\n                    relatedLinks: '[ لینک‌های مرتبط ]',\n                    checking: 'در حال بررسی...',\n                    workerRegion: 'منطقه Worker: ',\n                    detectionMethod: 'روش تشخیص: ',\n                    proxyIPStatus: 'وضعیت ProxyIP: ',\n                    currentIP: 'IP فعلی: ',\n                    regionMatch: 'تطبیق منطقه: ',\n                    selectionLogic: 'منطق انتخاب: ',\n                    kvStatusChecking: 'در حال بررسی وضعیت KV...',\n                    kvEnabled: '✅ ذخیره‌سازی KV فعال است، می‌توانید از مدیریت تنظیمات استفاده کنید',\n                    kvDisabled: '⚠️ ذخیره‌سازی KV فعال نیست یا پیکربندی نشده است',\n                    specifyRegion: 'تعیین منطقه (wk):',\n                    autoDetect: 'تشخیص خودکار',\n                    saveRegion: 'ذخیره تنظیمات منطقه',\n                    protocolSelection: 'انتخاب پروتکل:',\n                    enableVLESS: 'فعال‌سازی پروتکل VLESS',\n                    enableTrojan: 'فعال‌سازی پروتکل Trojan',\n                    enableXhttp: 'فعال‌سازی پروتکل xhttp',\n                    enableECH: 'فعال‌سازی ECH (Encrypted Client Hello)',\n                    enableECHHint: 'پس از فعال‌سازی، در هر بار تازه‌سازی اشتراک، پیکربندی ECH به‌روز به‌طور خودکار از DoH دریافت شده و به لینک‌ها اضافه می‌شود',\n                    customDNS: 'سرور DNS سفارشی',\n                    customDNSPlaceholder: 'مثال: https://dns.joeyblog.eu.org/joeyblog',\n                    customDNSHint: 'آدرس سرور DNS برای جستجوی پیکربندی ECH (فرمت DoH)',\n                    customECHDomain: 'دامنه ECH سفارشی',\n                    customECHDomainPlaceholder: 'مثال: cloudflare-ech.com',\n                    customECHDomainHint: 'دامنه استفاده شده در پیکربندی ECH، خالی بگذارید تا از مقدار پیش‌فرض استفاده شود',\n                    trojanPassword: 'رمز عبور Trojan (اختیاری):',\n                    customPath: 'مسیر سفارشی (d):',\n                    customIP: 'ProxyIP سفارشی (p):',\n                    preferredIPs: 'لیست IP ترجیحی (yx):',\n                    preferredIPsURL: 'URL منبع IP ترجیحی (yxURL):',\n                    latencyTest: 'تست تاخیر',\n                    latencyTestIP: 'IP/دامنه تست:',\n                    latencyTestIPPlaceholder: 'IP یا دامنه وارد کنید، چند مورد با کاما جدا شوند',\n                    latencyTestPort: 'پورت:',\n                    startTest: 'شروع تست',\n                    stopTest: 'توقف تست',\n                    testResult: 'نتیجه تست:',\n                    addToYx: 'افزودن به لیست ترجیحی',\n                    addSelectedToYx: 'افزودن موارد انتخاب شده',\n                    selectAll: 'انتخاب همه',\n                    deselectAll: 'لغو انتخاب',\n                    testingInProgress: 'در حال تست...',\n                    testComplete: 'تست کامل شد',\n                    latencyMs: 'تاخیر',\n                    timeout: 'زمان تمام شد',\n                    ipSource: 'منبع IP:',\n                    manualInput: 'ورودی دستی',\n                    cfRandomIP: 'IP تصادفی CF',\n                    urlFetch: 'دریافت از URL',\n                    randomCount: 'تعداد تولید:',\n                    fetchURL: 'URL دریافت:',\n                    fetchURLPlaceholder: 'آدرس URL لیست IP را وارد کنید',\n                    generateIP: 'تولید IP',\n                    fetchIP: 'دریافت IP',\n                    socks5Config: 'تنظیمات SOCKS5 (s):',\n                    customHomepage: 'URL صفحه اصلی سفارشی (homepage):',\n                    customHomepagePlaceholder: 'مثال: https://example.com',\n                    customHomepageHint: 'تنظیم URL سفارشی به عنوان استتار صفحه اصلی. هنگام دسترسی به مسیر اصلی / محتوای این URL نمایش داده می‌شود. اگر خالی بگذارید صفحه ترمینال پیش‌فرض نمایش داده می‌شود.',\n                    saveConfig: 'ذخیره تنظیمات',\n                    advancedControl: 'کنترل پیشرفته',\n                    subscriptionConverter: 'آدرس تبدیل اشتراک:',\n                    builtinPreferred: 'نوع ترجیحی داخلی:',\n                    enablePreferredDomain: 'فعال‌سازی دامنه ترجیحی',\n                    enablePreferredIP: 'فعال‌سازی IP ترجیحی',\n                    enableGitHubPreferred: 'فعال‌سازی ترجیح پیش‌فرض GitHub',\n                    allowAPIManagement: 'اجازه مدیریت API (ae):',\n                    regionMatching: 'تطبیق منطقه (rm):',\n                    downgradeControl: 'کنترل کاهش سطح (qj):',\n                    tlsControl: 'کنترل TLS (dkby):',\n                    preferredControl: 'کنترل ترجیحی (yxby):',\n                    saveAdvanced: 'ذخیره تنظیمات پیشرفته',\n                    loading: 'در حال بارگذاری...',\n                    currentConfig: '📍 پیکربندی مسیر فعلی',\n                    refreshConfig: 'تازه‌سازی تنظیمات',\n                    resetConfig: 'بازنشانی تنظیمات',\n                    subscriptionCopied: 'لینک اشتراک کپی شد',\n                    autoSubscriptionCopied: 'لینک اشتراک تشخیص خودکار کپی شد، کلاینت هنگام دسترسی بر اساس User-Agent به طور خودکار تشخیص داده و قالب مربوطه را برمی‌گرداند',\n                    trojanPasswordPlaceholder: 'خالی بگذارید تا از UUID استفاده شود',\n                    trojanPasswordHint: 'رمز عبور Trojan سفارشی را تنظیم کنید. اگر خالی بگذارید از UUID استفاده می‌شود. کلاینت به طور خودکار رمز عبور را با SHA224 هش می‌کند.',\n                    protocolHint: 'می‌توانید چندین پروتکل را همزمان فعال کنید. اشتراک گره‌های پروتکل‌های انتخاب شده را تولید می‌کند.<br>• VLESS WS: پروتکل استاندارد مبتنی بر WebSocket<br>• Trojan: احراز هویت با رمز عبور SHA224<br>• xhttp: پروتکل استتار مبتنی بر HTTP POST (نیاز به اتصال دامنه سفارشی و فعال‌سازی gRPC دارد)',\n                    saveProtocol: 'ذخیره تنظیمات پروتکل',\n                    subscriptionConverterPlaceholder: 'پیش‌فرض: https://url.v1.mk/sub',\n                    subscriptionConverterHint: 'آدرس API تبدیل اشتراک سفارشی، اگر خالی بگذارید از آدرس پیش‌فرض استفاده می‌شود',\n                    builtinPreferredHint: 'کنترل اینکه کدام گره‌های ترجیحی داخلی در اشتراک گنجانده شوند. به طور پیش‌فرض همه فعال هستند.',\n                    apiEnabledDefault: 'پیش‌فرض (بستن API)',\n                    apiEnabledYes: 'فعال‌سازی مدیریت API',\n                    apiEnabledHint: '⚠️ هشدار امنیتی: فعال‌سازی این گزینه اجازه می‌دهد IP های ترجیحی از طریق API به طور پویا اضافه شوند. توصیه می‌شود فقط در صورت نیاز فعال کنید.',\n                    regionMatchingDefault: 'پیش‌فرض (فعال‌سازی تطبیق منطقه)',\n                    regionMatchingNo: 'بستن تطبیق منطقه',\n                    regionMatchingHint: 'وقتی \"بستن\" تنظیم شود، تطبیق هوشمند منطقه انجام نمی‌شود',\n                    downgradeControlDefault: 'پیش‌فرض (عدم فعال‌سازی کاهش سطح)',\n                    downgradeControlNo: 'فعال‌سازی حالت کاهش سطح',\n                    downgradeControlHint: 'وقتی \"فعال\" تنظیم شود: اتصال مستقیم CF ناموفق → اتصال SOCKS5 → آدرس fallback',\n                    tlsControlDefault: 'پیش‌فرض (حفظ همه گره‌ها)',\n                    tlsControlYes: 'فقط گره‌های TLS',\n                    tlsControlHint: 'وقتی \"فقط گره‌های TLS\" تنظیم شود، فقط گره‌های با TLS تولید می‌شوند، گره‌های غیر TLS (مانند پورت 80) تولید نمی‌شوند',\n                    preferredControlDefault: 'پیش‌فرض (فعال‌سازی ترجیح)',\n                    preferredControlYes: 'بستن ترجیح',\n                    preferredControlHint: 'وقتی \"بستن ترجیح\" تنظیم شود، فقط از آدرس اصلی استفاده می‌شود، گره‌های IP و دامنه ترجیحی تولید نمی‌شوند',\n                    regionNames: {\n                        US: '🇺🇸 آمریکا', SG: '🇸🇬 سنگاپور', JP: '🇯🇵 ژاپن',\n                        KR: '🇰🇷 کره جنوبی', DE: '🇩🇪 آلمان', SE: '🇸🇪 سوئد', NL: '🇳🇱 هلند',\n                        FI: '🇫🇮 فنلاند', GB: '🇬🇧 بریتانیا'\n                    },\n                    terminal: 'ترمینال v2.9.4',\n                    githubProject: 'پروژه GitHub',\n                    autoDetectClient: 'تشخیص خودکار',\n                selectionLogicText: 'هم‌منطقه → منطقه مجاور → سایر مناطق',\n                customIPDisabledHint: 'هنگام استفاده از ProxyIP سفارشی، انتخاب منطقه غیرفعال است',\n                customIPMode: 'حالت ProxyIP سفارشی (متغیر p فعال است)',\n                customIPModeDesc: 'حالت IP سفارشی (تطبیق منطقه غیرفعال است)',\n                usingCustomProxyIP: 'استفاده از ProxyIP سفارشی: ',\n                customIPConfig: ' (پیکربندی متغیر p)',\n                customIPModeDisabled: 'حالت IP سفارشی، انتخاب منطقه غیرفعال است',\n                manualRegion: 'تعیین منطقه دستی',\n                manualRegionDesc: ' (تعیین دستی)',\n                proxyIPAvailable: '10/10 در دسترس (دامنه پیش‌فرض ProxyIP در دسترس است)',\n                smartSelection: 'انتخاب هوشمند نزدیک در حال انجام است',\n                sameRegionIP: 'IP هم‌منطقه در دسترس است (1)',\n                cloudflareDetection: 'تشخیص داخلی Cloudflare',\n                detectionFailed: 'تشخیص ناموفق',\n                apiTestResult: 'نتیجه تشخیص API: ',\n                apiTestTime: 'زمان تشخیص: ',\n                apiTestFailed: 'تشخیص API ناموفق: ',\n                unknownError: 'خطای ناشناخته',\n                apiTestError: 'تست API ناموفق: ',\n                kvNotConfigured: 'ذخیره‌سازی KV پیکربندی نشده است، نمی‌توانید از عملکرد مدیریت تنظیمات استفاده کنید.\\\\n\\\\nلطفا در Cloudflare Workers:\\\\n1. فضای نام KV ایجاد کنید\\\\n2. متغیر محیطی C را پیوند دهید\\\\n3. کد را دوباره مستقر کنید',\n                kvNotEnabled: 'ذخیره‌سازی KV پیکربندی نشده است',\n                kvCheckFailed: 'بررسی ذخیره‌سازی KV ناموفق: خطای فرمت پاسخ',\n                kvCheckFailedStatus: 'بررسی ذخیره‌سازی KV ناموفق - کد وضعیت: ',\n                kvCheckFailedError: 'بررسی ذخیره‌سازی KV ناموفق - خطا: '\n            }\n        };\n            \n            const t = translations[isFarsi ? 'fa' : 'zh'];\n        \n        const pageHtml = `<!DOCTYPE html>\n        <html lang=\"${langAttr}\" dir=\"${isFarsi ? 'rtl' : 'ltr'}\">\n    <head>\n        <meta charset=\"UTF-8\">\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n            <title>${t.title}</title>\n        <style>\n            * { margin: 0; padding: 0; box-sizing: border-box; }\n            body {\n                font-family: \"Courier New\", monospace;\n                background: #000; color: #00ff00; min-height: 100vh;\n                overflow-x: hidden; position: relative;\n            }\n            .matrix-bg {\n                position: fixed; top: 0; left: 0; width: 100%; height: 100%;\n                background: #000;\n                z-index: -1;\n            }\n            @keyframes bg-pulse {\n                0%, 100% { background: linear-gradient(45deg, #000 0%, #001100 50%, #000 100%); }\n                50% { background: linear-gradient(45deg, #000 0%, #002200 50%, #000 100%); }\n            }\n            .matrix-rain {\n                position: fixed; top: 0; left: 0; width: 100%; height: 100%;\n                background: transparent;\n                z-index: -1;\n                display: none;\n            }\n            @keyframes matrix-fall {\n                0% { transform: translateY(-100%); }\n                100% { transform: translateY(100vh); }\n            }\n            .matrix-code-rain {\n                position: fixed; top: 0; left: 0; width: 100%; height: 100%;\n                pointer-events: none; z-index: -1;\n                overflow: hidden;\n                display: none;\n            }\n            .matrix-column {\n                position: absolute; top: -100%; left: 0;\n                color: #00ff00; font-family: \"Courier New\", monospace;\n                font-size: 14px; line-height: 1.2;\n                text-shadow: 0 0 5px #00ff00;\n            }\n            @keyframes matrix-drop {\n                0% { top: -100%; opacity: 1; }\n                10% { opacity: 1; }\n                90% { opacity: 0.3; }\n                100% { top: 100vh; opacity: 0; }\n            }\n            .matrix-column:nth-child(odd) {\n                animation-duration: 12s;\n                animation-delay: -2s;\n            }\n            .matrix-column:nth-child(even) {\n                animation-duration: 18s;\n                animation-delay: -5s;\n            }\n            .matrix-column:nth-child(3n) {\n                animation-duration: 20s;\n                animation-delay: -8s;\n            }\n            .container { max-width: 900px; margin: 0 auto; padding: 20px; position: relative; z-index: 1; }\n            .header { text-align: center; margin-bottom: 40px; }\n            .title {\n                font-size: 3.5rem; font-weight: bold;\n                text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00;\n                margin-bottom: 10px;\n                position: relative;\n                color: #00ff00;\n            }\n            @keyframes matrix-glow {\n                from { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00; }\n                to { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00, 0 0 50px #00ff00; }\n            }\n            @keyframes matrix-pulse {\n                0%, 100% { background-position: 0% 50%; }\n                50% { background-position: 100% 50%; }\n            }\n            .subtitle { color: #00aa00; margin-bottom: 30px; font-size: 1.2rem; }\n            .card {\n                background: rgba(0, 20, 0, 0.9);\n                border: 2px solid #00ff00;\n                border-radius: 0; padding: 30px; margin-bottom: 20px;\n                box-shadow: 0 0 30px rgba(0, 255, 0, 0.5), inset 0 0 20px rgba(0, 255, 0, 0.1);\n                position: relative;\n                backdrop-filter: blur(10px);\n                box-sizing: border-box;\n                width: 100%;\n                max-width: 100%;\n            }\n            @keyframes card-glow {\n                0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 0, 0.5), inset 0 0 20px rgba(0, 255, 0, 0.1); }\n                50% { box-shadow: 0 0 40px rgba(0, 255, 0, 0.7), inset 0 0 30px rgba(0, 255, 0, 0.2); }\n            }\n            .card::before {\n                content: \"\"; position: absolute; top: 0; left: 0;\n                width: 100%; height: 100%;\n                background: none;\n                opacity: 0; pointer-events: none;\n            }\n            @keyframes scan-line {\n                0% { transform: translateX(-100%); }\n                100% { transform: translateX(100%); }\n            }\n            .card-title {\n                font-size: 1.8rem; margin-bottom: 20px;\n                color: #00ff00; text-shadow: 0 0 5px #00ff00;\n            }\n            .client-grid {\n                display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));\n                gap: 15px; margin: 20px 0;\n            }\n            .client-btn {\n                background: rgba(0, 20, 0, 0.8);\n                border: 2px solid #00ff00;\n                padding: 15px 20px; color: #00ff00;\n                font-family: \"Courier New\", monospace; font-weight: bold;\n                cursor: pointer; transition: all 0.4s ease;\n                text-align: center; position: relative;\n                overflow: hidden;\n                text-shadow: 0 0 5px #00ff00;\n                box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);\n            }\n            .client-btn::before {\n                content: \"\"; position: absolute; top: 0; left: -100%;\n                width: 100%; height: 100%;\n                background: linear-gradient(90deg, transparent, rgba(0,255,0,0.4), transparent);\n                transition: left 0.6s ease;\n            }\n            .client-btn::after {\n                content: \"\"; position: absolute; top: 0; left: 0;\n                width: 100%; height: 100%;\n                background: linear-gradient(45deg, transparent 30%, rgba(0,255,0,0.1) 50%, transparent 70%);\n                opacity: 0;\n                transition: opacity 0.3s ease;\n            }\n            .client-btn:hover::before { left: 100%; }\n            .client-btn:hover::after { opacity: 1; }\n            .client-btn:hover {\n                background: rgba(0, 255, 0, 0.3);\n                box-shadow: 0 0 25px #00ff00, 0 0 35px rgba(0, 255, 0, 0.5);\n                transform: translateY(-3px) scale(1.05);\n                text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;\n            }\n            .generate-btn {\n                background: rgba(0, 255, 0, 0.15);\n                border: 2px solid #00ff00; padding: 15px 30px;\n                color: #00ff00; font-family: \"Courier New\", monospace;\n                font-weight: bold; cursor: pointer;\n                transition: all 0.4s ease; margin-right: 15px;\n                text-shadow: 0 0 8px #00ff00;\n                box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);\n                position: relative;\n                overflow: hidden;\n            }\n            .generate-btn::before {\n                content: \"\"; position: absolute; top: 0; left: -100%;\n                width: 100%; height: 100%;\n                background: linear-gradient(90deg, transparent, rgba(0,255,0,0.5), transparent);\n                transition: left 0.8s ease;\n            }\n            .generate-btn:hover::before { left: 100%; }\n            .generate-btn:hover {\n                background: rgba(0, 255, 0, 0.4);\n                box-shadow: 0 0 30px #00ff00, 0 0 40px rgba(0, 255, 0, 0.6);\n                transform: translateY(-4px) scale(1.08);\n                text-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00;\n            }\n            .atob('c3Vic2NyaXB0aW9u')-url {\n                background: rgba(0, 0, 0, 0.9);\n                border: 2px solid #00ff00; padding: 15px;\n                word-break: break-all; font-family: \"Courier New\", monospace;\n                color: #00ff00; margin-top: 20px; display: none;\n                box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.3);\n                border-radius: 5px;\n                position: relative;\n                overflow-wrap: break-word;\n                overflow-x: auto;\n                max-width: 100%;\n                box-sizing: border-box;\n            }\n            @keyframes url-glow {\n                from { box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.3); }\n                to { box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.5); }\n            }\n            .atob('c3Vic2NyaXB0aW9u')-url::before {\n                content: \"\"; position: absolute; top: 0; left: -100%;\n                width: 100%; height: 100%;\n                background: none;\n            }\n            @keyframes url-scan {\n                0% { left: -100%; }\n                100% { left: 100%; }\n            }\n            .matrix-text {\n                position: fixed; top: 20px; right: 20px;\n                color: #00ff00; font-family: \"Courier New\", monospace;\n                font-size: 0.8rem; opacity: 0.6;\n            }\n            @keyframes matrix-flicker {\n                0%, 100% { opacity: 0.6; }\n                50% { opacity: 1; }\n            }\n        </style>\n    </head>\n    <body>\n        <div class=\"matrix-bg\"></div>\n        <div class=\"matrix-rain\"></div>\n        <div class=\"matrix-code-rain\" id=\"matrixCodeRain\"></div>\n            <div class=\"matrix-text\">${t.terminal}</div>\n            <div style=\"position: fixed; top: 20px; left: 20px; z-index: 1000;\">\n                <select id=\"languageSelector\" style=\"background: rgba(0, 20, 0, 0.9); border: 2px solid #00ff00; color: #00ff00; padding: 8px 12px; font-family: 'Courier New', monospace; font-size: 14px; cursor: pointer; text-shadow: 0 0 5px #00ff00; box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);\" onchange=\"changeLanguage(this.value)\">\n                    <option value=\"zh\" ${!isFarsi ? 'selected' : ''}>🇨🇳 中文</option>\n                    <option value=\"fa\" ${isFarsi ? 'selected' : ''}>🇮🇷 فارسی</option>\n                </select>\n            </div>\n        <div class=\"container\">\n            <div class=\"header\">\n                    <h1 class=\"title\">${t.title}</h1>\n                    <p class=\"subtitle\">${t.subtitle}</p>\n            </div>\n            <div class=\"card\">\n                    <h2 class=\"card-title\">${t.selectClient}</h2>\n                <div class=\"client-grid\">\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('Y2xhc2g='), 'CLASH')\">CLASH</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('Y2xhc2g='), 'STASH')\">STASH</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('c3VyZ2U='), 'SURGE')\">SURGE</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('c2luZ2JveA=='), 'SING-BOX')\">SING-BOX</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('bG9vbg=='), 'LOON')\">LOON</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('cXVhbng='), 'QUANTUMULT X')\">QUANTUMULT X</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('djJyYXk='), 'V2RAY')\">V2RAY</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('djJyYXk='), 'V2RAYNG')\">V2RAYNG</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('djJyYXk='), 'NEKORAY')\">NEKORAY</button>\n                    <button class=\"client-btn\" onclick=\"generateClientLink(atob('djJyYXk='), 'Shadowrocket')\">Shadowrocket</button>\n                </div>\n                <div class=atob('c3Vic2NyaXB0aW9uLXVybA==') id=\"clientSubscriptionUrl\"></div>\n            </div>\n            <div class=\"card\">\n                    <h2 class=\"card-title\">${t.systemStatus}</h2>\n                <div id=\"systemStatus\" style=\"margin: 20px 0; padding: 15px; background: rgba(0, 20, 0, 0.8); border: 2px solid #00ff00; box-shadow: 0 0 20px rgba(0, 255, 0, 0.3), inset 0 0 15px rgba(0, 255, 0, 0.1); position: relative; overflow: hidden;\">\n                        <div style=\"color: #00ff00; margin-bottom: 15px; font-weight: bold; text-shadow: 0 0 5px #00ff00;\">[ ${t.checking} ]</div>\n                        <div id=\"regionStatus\" style=\"margin: 8px 0; color: #00ff00; font-family: 'Courier New', monospace; text-shadow: 0 0 3px #00ff00;\">${t.workerRegion}${t.checking}</div>\n                        <div id=\"geoInfo\" style=\"margin: 8px 0; color: #00aa00; font-family: 'Courier New', monospace; font-size: 0.9rem; text-shadow: 0 0 3px #00aa00;\">${t.detectionMethod}${t.checking}</div>\n                        <div id=\"backupStatus\" style=\"margin: 8px 0; color: #00ff00; font-family: 'Courier New', monospace; text-shadow: 0 0 3px #00ff00;\">${t.proxyIPStatus}${t.checking}</div>\n                        <div id=\"currentIP\" style=\"margin: 8px 0; color: #00ff00; font-family: 'Courier New', monospace; text-shadow: 0 0 3px #00ff00;\">${t.currentIP}${t.checking}</div>\n                        <div id=\"echStatus\" style=\"margin: 8px 0; color: #00ff00; font-family: 'Courier New', monospace; text-shadow: 0 0 3px #00ff00; font-size: 0.9rem;\">ECH状态: ${t.checking}</div>\n                        <div id=\"regionMatch\" style=\"margin: 8px 0; color: #00ff00; font-family: 'Courier New', monospace; text-shadow: 0 0 3px #00ff00;\">${t.regionMatch}${t.checking}</div>\n                        <div id=\"selectionLogic\" style=\"margin: 8px 0; color: #00aa00; font-family: 'Courier New', monospace; font-size: 0.9rem; text-shadow: 0 0 3px #00aa00;\">${t.selectionLogic}${t.selectionLogicText}</div>\n                </div>\n            </div>\n            <div class=\"card\" id=\"configCard\" style=\"display: none;\">\n                    <h2 class=\"card-title\">${t.configManagement}</h2>\n                <div id=\"kvStatus\" style=\"margin-bottom: 20px; padding: 10px; background: rgba(0, 20, 0, 0.8); border: 1px solid #00ff00; color: #00ff00;\">\n                        ${t.kvStatusChecking}\n                </div>\n                <div id=\"configContent\" style=\"display: none;\">\n                    <form id=\"regionForm\" style=\"margin-bottom: 20px;\">\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.specifyRegion}</label>\n                            <select id=\"wkRegion\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                    <option value=\"\">${t.autoDetect}</option>\n                                    <option value=\"US\">${t.regionNames.US}</option>\n                                    <option value=\"SG\">${t.regionNames.SG}</option>\n                                    <option value=\"JP\">${t.regionNames.JP}</option>\n                                    <option value=\"KR\">${t.regionNames.KR}</option>\n                                    <option value=\"DE\">${t.regionNames.DE}</option>\n                                    <option value=\"SE\">${t.regionNames.SE}</option>\n                                    <option value=\"NL\">${t.regionNames.NL}</option>\n                                    <option value=\"FI\">${t.regionNames.FI}</option>\n                                    <option value=\"GB\">${t.regionNames.GB}</option>\n                            </select>\n                                <small id=\"wkRegionHint\" style=\"color: #00aa00; font-size: 0.85rem; display: none;\">⚠️ ${t.customIPDisabledHint}</small>\n                        </div>\n                            <button type=\"submit\" style=\"background: rgba(0, 255, 0, 0.15); border: 2px solid #00ff00; padding: 12px 24px; color: #00ff00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; margin-right: 10px; text-shadow: 0 0 8px #00ff00; transition: all 0.4s ease;\">${t.saveRegion}</button>\n                    </form>\n                    <form id=\"otherConfigForm\" style=\"margin-bottom: 20px;\">\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.protocolSelection}</label>\n                            <div style=\"padding: 15px; background: rgba(0, 20, 0, 0.6); border: 1px solid #00ff00; border-radius: 5px;\">\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                        <input type=\"checkbox\" id=\"ev\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1.1rem;\">${t.enableVLESS}</span>\n                                    </label>\n                                </div>\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                        <input type=\"checkbox\" id=\"et\" style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1.1rem;\">${t.enableTrojan}</span>\n                                    </label>\n                                </div>\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                        <input type=\"checkbox\" id=\"ex\" style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1.1rem;\">${t.enableXhttp}</span>\n                                    </label>\n                                </div>\n                                <div style=\"margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(0, 255, 0, 0.3);\">\n                                    <div style=\"margin-bottom: 10px;\">\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                            <input type=\"checkbox\" id=\"ech\" style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                                <span style=\"font-size: 1.1rem;\">${t.enableECH}</span>\n                                        </label>\n                                        <small style=\"color: #00aa00; font-size: 0.8rem; display: block; margin-top: 5px; margin-left: 26px;\">${t.enableECHHint}</small>\n                                    </div>\n                                    <div style=\"margin-top: 15px; margin-bottom: 10px;\">\n                                        <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-size: 0.95rem;\">${t.customDNS}</label>\n                                        <input type=\"text\" id=\"customDNS\" placeholder=\"${t.customDNSPlaceholder}\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                        <small style=\"color: #00aa00; font-size: 0.8rem; display: block; margin-top: 5px;\">${t.customDNSHint}</small>\n                                    </div>\n                                    <div style=\"margin-bottom: 10px;\">\n                                        <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-size: 0.95rem;\">${t.customECHDomain}</label>\n                                        <input type=\"text\" id=\"customECHDomain\" placeholder=\"${t.customECHDomainPlaceholder}\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                        <small style=\"color: #00aa00; font-size: 0.8rem; display: block; margin-top: 5px;\">${t.customECHDomainHint}</small>\n                                    </div>\n                                </div>\n                                <div style=\"margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(0, 255, 0, 0.3);\">\n                                        <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-size: 0.95rem;\">${t.trojanPassword}</label>\n                                        <input type=\"text\" id=\"tp\" placeholder=\"${t.trojanPasswordPlaceholder}\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                        <small style=\"color: #00aa00; font-size: 0.8rem; display: block; margin-top: 5px;\">${t.trojanPasswordHint}</small>\n                                </div>\n                                    <small style=\"color: #00aa00; font-size: 0.85rem; display: block; margin-top: 10px;\">${t.protocolHint}</small>\n                                    <button type=\"button\" id=\"saveProtocolBtn\" style=\"margin-top: 15px; background: rgba(0, 255, 0, 0.15); border: 2px solid #00ff00; padding: 10px 20px; color: #00ff00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; text-shadow: 0 0 8px #00ff00; transition: all 0.4s ease; width: 100%;\">${t.saveProtocol}</button>\n                            </div>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.customHomepage}</label>\n                                <input type=\"text\" id=\"customHomepage\" placeholder=\"${t.customHomepagePlaceholder}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${t.customHomepageHint}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.customPath}</label>\n                                <input type=\"text\" id=\"customPath\" placeholder=\"${isFarsi ? 'مثال: /mypath یا خالی بگذارید تا از UUID استفاده شود' : '例如: /mypath 或留空使用 UUID'}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${isFarsi ? 'مسیر اشتراک سفارشی. اگر خالی بگذارید از UUID به عنوان مسیر استفاده می‌شود.' : '自定义订阅路径。留空则使用 UUID 作为路径。'}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.customIP}</label>\n                                <input type=\"text\" id=\"customIP\" placeholder=\"${isFarsi ? 'مثال: 1.2.3.4:443' : '例如: 1.2.3.4:443'}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${isFarsi ? 'آدرس و پورت ProxyIP سفارشی' : '自定义ProxyIP地址和端口'}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.preferredIPs}</label>\n                                <input type=\"text\" id=\"yx\" placeholder=\"${isFarsi ? 'مثال: 1.2.3.4:443#گره هنگ‌کنگ,5.6.7.8:80#گره آمریکا,example.com:8443#گره سنگاپور' : '例如: 1.2.3.4:443#日本节点,5.6.7.8:80#美国节点,example.com:8443#新加坡节点'}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${isFarsi ? 'فرمت: IP:پورت#نام گره یا IP:پورت (بدون # از نام پیش‌فرض استفاده می‌شود). پشتیبانی از چندین مورد، با کاما جدا می‌شوند. <span style=\"color: #ffaa00;\">IP های اضافه شده از طریق API به طور خودکار در اینجا نمایش داده می‌شوند.</span>' : '格式: IP:端口#节点名称 或 IP:端口 (无#则使用默认名称)。支持多个，用逗号分隔。<span style=\"color: #ffaa00;\">API添加的IP会自动显示在这里。</span>'}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.preferredIPsURL}</label>\n                                <input type=\"text\" id=\"yxURL\" placeholder=\"${isFarsi ? 'پیش‌فرض: https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt' : '默认: https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${isFarsi ? 'URL منبع لیست IP ترجیحی سفارشی، اگر خالی بگذارید از آدرس پیش‌فرض استفاده می‌شود' : '自定义优选IP列表来源URL，留空则使用默认地址'}</small>\n                        </div>\n                        \n                        <div style=\"margin-bottom: 20px; padding: 15px; background: rgba(0, 40, 0, 0.6); border: 2px solid #00aa00; border-radius: 8px;\">\n                            <h4 style=\"color: #00ff00; margin: 0 0 15px 0; font-size: 1.1rem; text-shadow: 0 0 5px #00ff00;\">⚡ ${t.latencyTest}</h4>\n                            <div style=\"display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; align-items: center;\">\n                                <div style=\"min-width: 120px;\">\n                                    <label style=\"display: block; margin-bottom: 5px; color: #00ff00; font-size: 0.9rem;\">${t.ipSource}</label>\n                                    <select id=\"ipSourceSelect\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px; cursor: pointer;\">\n                                        <option value=\"manual\">${t.manualInput}</option>\n                                        <option value=\"cfRandom\">${t.cfRandomIP}</option>\n                                        <option value=\"urlFetch\">${t.urlFetch}</option>\n                                    </select>\n                                </div>\n                                <div style=\"width: 100px;\">\n                                    <label style=\"display: block; margin-bottom: 5px; color: #00ff00; font-size: 0.9rem;\">${t.latencyTestPort}</label>\n                                    <input type=\"number\" id=\"latencyTestPort\" value=\"443\" min=\"1\" max=\"65535\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                </div>\n                                <div id=\"randomCountDiv\" style=\"width: 100px; display: none;\">\n                                    <label style=\"display: block; margin-bottom: 5px; color: #00ff00; font-size: 0.9rem;\">${t.randomCount}</label>\n                                    <input type=\"number\" id=\"randomIPCount\" value=\"20\" min=\"1\" max=\"100\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                </div>\n                                <div style=\"width: 80px;\">\n                                    <label style=\"display: block; margin-bottom: 5px; color: #00ff00; font-size: 0.9rem;\">${isFarsi ? 'رشته‌ها' : '线程'}</label>\n                                    <input type=\"number\" id=\"testThreads\" value=\"5\" min=\"1\" max=\"50\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                </div>\n                            </div>\n                            <div id=\"manualInputDiv\" style=\"margin-bottom: 10px;\">\n                                <label style=\"display: block; margin-bottom: 5px; color: #00ff00; font-size: 0.9rem;\">${t.latencyTestIP}</label>\n                                <input type=\"text\" id=\"latencyTestInput\" placeholder=\"${t.latencyTestIPPlaceholder}\" style=\"width: 100%; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                            </div>\n                            <div id=\"urlFetchDiv\" style=\"margin-bottom: 10px; display: none;\">\n                                <label style=\"display: block; margin-bottom: 5px; color: #00ff00; font-size: 0.9rem;\">${t.fetchURL}</label>\n                                <div style=\"display: flex; gap: 8px;\">\n                                    <input type=\"text\" id=\"fetchURLInput\" placeholder=\"${t.fetchURLPlaceholder}\" style=\"flex: 1; padding: 10px; background: rgba(0, 0, 0, 0.8); border: 1px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 13px;\">\n                                    <button type=\"button\" id=\"fetchIPBtn\" style=\"background: rgba(0, 200, 255, 0.2); border: 1px solid #00aaff; padding: 8px 16px; color: #00aaff; font-family: 'Courier New', monospace; cursor: pointer; white-space: nowrap;\">⬇ ${t.fetchIP}</button>\n                                </div>\n                            </div>\n                            <div id=\"cfRandomDiv\" style=\"margin-bottom: 10px; display: none;\">\n                                <button type=\"button\" id=\"generateCFIPBtn\" style=\"background: rgba(0, 255, 0, 0.15); border: 1px solid #00ff00; padding: 10px 20px; color: #00ff00; font-family: 'Courier New', monospace; cursor: pointer; width: 100%; transition: all 0.3s;\">🎲 ${t.generateIP}</button>\n                            </div>\n                            <div style=\"display: flex; gap: 10px; margin-bottom: 15px;\">\n                                <button type=\"button\" id=\"startLatencyTest\" style=\"background: rgba(0, 255, 0, 0.2); border: 1px solid #00ff00; padding: 8px 16px; color: #00ff00; font-family: 'Courier New', monospace; cursor: pointer; transition: all 0.3s;\">▶ ${t.startTest}</button>\n                                <button type=\"button\" id=\"stopLatencyTest\" style=\"background: rgba(255, 0, 0, 0.2); border: 1px solid #ff4444; padding: 8px 16px; color: #ff4444; font-family: 'Courier New', monospace; cursor: pointer; display: none; transition: all 0.3s;\">⏹ ${t.stopTest}</button>\n                            </div>\n                            <div id=\"latencyTestStatus\" style=\"color: #00aa00; font-size: 0.9rem; margin-bottom: 10px; display: none;\"></div>\n                            <div id=\"latencyTestResults\" style=\"max-height: 250px; overflow-y: auto; display: none;\">\n                                <div style=\"display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;\">\n                                    <span style=\"color: #00ff00; font-weight: bold;\">${t.testResult}</span>\n                                    <div style=\"display: flex; gap: 8px;\">\n                                        <button type=\"button\" id=\"selectAllResults\" style=\"background: transparent; border: 1px solid #00aa00; padding: 4px 10px; color: #00aa00; font-size: 0.8rem; cursor: pointer;\">${t.selectAll}</button>\n                                        <button type=\"button\" id=\"deselectAllResults\" style=\"background: transparent; border: 1px solid #00aa00; padding: 4px 10px; color: #00aa00; font-size: 0.8rem; cursor: pointer;\">${t.deselectAll}</button>\n                                    </div>\n                                </div>\n                                <div id=\"cityFilterContainer\" style=\"margin-bottom: 10px; padding: 10px; background: rgba(0, 20, 0, 0.6); border: 1px solid #00aa00; border-radius: 4px; display: none;\">\n                                    <div style=\"margin-bottom: 8px;\">\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00; font-size: 0.9rem;\">\n                                            <input type=\"radio\" name=\"cityFilterMode\" value=\"all\" checked style=\"margin-right: 6px; width: 16px; height: 16px; cursor: pointer;\">\n                                            <span>${isFarsi ? '全部城市' : '全部城市'}</span>\n                                        </label>\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00; font-size: 0.9rem; margin-left: 15px;\">\n                                            <input type=\"radio\" name=\"cityFilterMode\" value=\"fastest10\" style=\"margin-right: 6px; width: 16px; height: 16px; cursor: pointer;\">\n                                            <span>${isFarsi ? '只选择最快的10个' : '只选择最快的10个'}</span>\n                                        </label>\n                                    </div>\n                                    <div id=\"cityCheckboxesContainer\" style=\"display: flex; flex-wrap: wrap; gap: 8px; max-height: 80px; overflow-y: auto; padding: 5px;\"></div>\n                                </div>\n                                <div id=\"latencyResultsList\" style=\"background: rgba(0, 0, 0, 0.5); border: 1px solid #004400; border-radius: 4px; padding: 10px;\"></div>\n                                <div style=\"margin-top: 10px; display: flex; gap: 10px;\">\n                                    <button type=\"button\" id=\"overwriteSelectedToYx\" style=\"flex: 1; background: rgba(0, 200, 0, 0.3); border: 1px solid #00ff00; padding: 10px 20px; color: #00ff00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; transition: all 0.3s;\">${isFarsi ? '覆盖添加' : '覆盖添加'}</button>\n                                    <button type=\"button\" id=\"appendSelectedToYx\" style=\"flex: 1; background: rgba(0, 150, 0, 0.3); border: 1px solid #00aa00; padding: 10px 20px; color: #00aa00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; transition: all 0.3s;\">${isFarsi ? '追加添加' : '追加添加'}</button>\n                                </div>\n                            </div>\n                        </div>\n                        \n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.socks5Config}</label>\n                                <input type=\"text\" id=\"socksConfig\" placeholder=\"${isFarsi ? 'مثال: user:pass@host:port یا host:port' : '例如: user:pass@host:port 或 host:port'}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${isFarsi ? 'آدرس پروکسی SOCKS5، برای انتقال تمام ترافیک خروجی استفاده می‌شود' : 'SOCKS5代理地址，用于转发所有出站流量'}</small>\n                        </div>\n                            <button type=\"submit\" style=\"background: rgba(0, 255, 0, 0.15); border: 2px solid #00ff00; padding: 12px 24px; color: #00ff00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; margin-right: 10px; text-shadow: 0 0 8px #00ff00; transition: all 0.4s ease;\">${t.saveConfig}</button>\n                    </form>\n                    \n                        <h3 style=\"color: #00ff00; margin: 20px 0 15px 0; font-size: 1.2rem;\">${t.advancedControl}</h3>\n                    <form id=\"advancedConfigForm\" style=\"margin-bottom: 20px;\">\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.subscriptionConverter}</label>\n                                <input type=\"text\" id=\"scu\" placeholder=\"${t.subscriptionConverterPlaceholder}\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${t.subscriptionConverterHint}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.builtinPreferred}</label>\n                            <div style=\"padding: 15px; background: rgba(0, 20, 0, 0.6); border: 1px solid #00ff00; border-radius: 5px;\">\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                        <input type=\"checkbox\" id=\"epd\" style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1.1rem;\">${t.enablePreferredDomain}</span>\n                                    </label>\n                                </div>\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                        <input type=\"checkbox\" id=\"epi\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1.1rem;\">${t.enablePreferredIP}</span>\n                                    </label>\n                                </div>\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                        <input type=\"checkbox\" id=\"egi\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1.1rem;\">${t.enableGitHubPreferred}</span>\n                                    </label>\n                                </div>\n                                    <small style=\"color: #00aa00; font-size: 0.85rem; display: block; margin-top: 10px;\">${t.builtinPreferredHint}</small>\n                            </div>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">优选IP筛选设置</label>\n                            <div style=\"padding: 15px; background: rgba(0, 20, 0, 0.6); border: 1px solid #00ff00; border-radius: 5px;\">\n                                <div style=\"margin-bottom: 15px;\">\n                                    <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">IP版本选择</label>\n                                    <div style=\"display: flex; gap: 20px; flex-wrap: wrap;\">\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                            <input type=\"checkbox\" id=\"ipv4Enabled\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1rem;\">IPv4</span>\n                                        </label>\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                            <input type=\"checkbox\" id=\"ipv6Enabled\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1rem;\">IPv6</span>\n                                        </label>\n                                    </div>\n                                </div>\n                                <div style=\"margin-bottom: 10px;\">\n                                    <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">运营商选择</label>\n                                    <div style=\"display: flex; gap: 20px; flex-wrap: wrap;\">\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                            <input type=\"checkbox\" id=\"ispMobile\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1rem;\">移动</span>\n                                        </label>\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                            <input type=\"checkbox\" id=\"ispUnicom\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1rem;\">联通</span>\n                                        </label>\n                                        <label style=\"display: inline-flex; align-items: center; cursor: pointer; color: #00ff00;\">\n                                            <input type=\"checkbox\" id=\"ispTelecom\" checked style=\"margin-right: 8px; width: 18px; height: 18px; cursor: pointer;\">\n                                            <span style=\"font-size: 1rem;\">电信</span>\n                                        </label>\n                                    </div>\n                                </div>\n                                    <small style=\"color: #00aa00; font-size: 0.85rem; display: block; margin-top: 10px;\">选择要使用的IP版本和运营商，未选中的将被过滤</small>\n                            </div>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.allowAPIManagement}</label>\n                            <select id=\"apiEnabled\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                    <option value=\"\">${t.apiEnabledDefault}</option>\n                                    <option value=\"yes\">${t.apiEnabledYes}</option>\n                            </select>\n                                <small style=\"color: #ffaa00; font-size: 0.85rem;\">${t.apiEnabledHint}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.regionMatching}</label>\n                            <select id=\"regionMatching\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                    <option value=\"\">${t.regionMatchingDefault}</option>\n                                    <option value=\"no\">${t.regionMatchingNo}</option>\n                            </select>\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${t.regionMatchingHint}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.downgradeControl}</label>\n                            <select id=\"downgradeControl\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                    <option value=\"\">${t.downgradeControlDefault}</option>\n                                    <option value=\"no\">${t.downgradeControlNo}</option>\n                            </select>\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${t.downgradeControlHint}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.tlsControl}</label>\n                            <select id=\"portControl\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                    <option value=\"\">${t.tlsControlDefault}</option>\n                                    <option value=\"yes\">${t.tlsControlYes}</option>\n                            </select>\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${t.tlsControlHint}</small>\n                        </div>\n                        <div style=\"margin-bottom: 15px;\">\n                                <label style=\"display: block; margin-bottom: 8px; color: #00ff00; font-weight: bold; text-shadow: 0 0 3px #00ff00;\">${t.preferredControl}</label>\n                            <select id=\"preferredControl\" style=\"width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.8); border: 2px solid #00ff00; color: #00ff00; font-family: 'Courier New', monospace; font-size: 14px;\">\n                                    <option value=\"\">${t.preferredControlDefault}</option>\n                                    <option value=\"yes\">${t.preferredControlYes}</option>\n                            </select>\n                                <small style=\"color: #00aa00; font-size: 0.85rem;\">${t.preferredControlHint}</small>\n                        </div>\n                            <button type=\"submit\" style=\"background: rgba(0, 255, 0, 0.15); border: 2px solid #00ff00; padding: 12px 24px; color: #00ff00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; margin-right: 10px; text-shadow: 0 0 8px #00ff00; transition: all 0.4s ease;\">${t.saveAdvanced}</button>\n                    </form>\n                    <div id=\"currentConfig\" style=\"background: rgba(0, 0, 0, 0.9); border: 1px solid #00ff00; padding: 15px; margin: 10px 0; font-family: 'Courier New', monospace; color: #00ff00;\">\n                            ${t.loading}\n                    </div>\n                    <div id=\"pathTypeInfo\" style=\"background: rgba(0, 20, 0, 0.7); border: 1px solid #00ff00; padding: 15px; margin: 10px 0; font-family: 'Courier New', monospace; color: #00ff00;\">\n                            <div style=\"font-weight: bold; margin-bottom: 8px; color: #44ff44; text-shadow: 0 0 5px #44ff44;\">${t.currentConfig}</div>\n                            <div id=\"pathTypeStatus\">${t.checking}</div>\n                    </div>\n                        <button onclick=\"loadCurrentConfig()\" style=\"background: rgba(0, 255, 0, 0.15); border: 2px solid #00ff00; padding: 12px 24px; color: #00ff00; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; margin-right: 10px; text-shadow: 0 0 8px #00ff00; transition: all 0.4s ease;\">${t.refreshConfig}</button>\n                        <button onclick=\"resetAllConfig()\" style=\"background: rgba(255, 0, 0, 0.15); border: 2px solid #ff0000; padding: 12px 24px; color: #ff0000; font-family: 'Courier New', monospace; font-weight: bold; cursor: pointer; text-shadow: 0 0 8px #ff0000; transition: all 0.4s ease;\">${t.resetConfig}</button>\n                </div>\n                <div id=\"statusMessage\" style=\"display: none; padding: 10px; margin: 10px 0; border: 1px solid #00ff00; background: rgba(0, 20, 0, 0.8); color: #00ff00; text-shadow: 0 0 5px #00ff00;\"></div>\n            </div>\n            \n            <div class=\"card\">\n                    <h2 class=\"card-title\">${t.relatedLinks}</h2>\n                <div style=\"text-align: center; margin: 20px 0;\">\n                        <a href=\"https://github.com/byJoey/cfnew\" target=\"_blank\" style=\"color: #00ff00; text-decoration: none; margin: 0 20px; font-size: 1.2rem; text-shadow: 0 0 5px #00ff00;\">${t.githubProject}</a>\n                    <a href=\"https://www.youtube.com/@joeyblog\" target=\"_blank\" style=\"color: #00ff00; text-decoration: none; margin: 0 20px; font-size: 1.2rem; text-shadow: 0 0 5px #00ff00;\">YouTube @joeyblog</a>\n                </div>\n            </div>\n        </div>\n        <script>\n            // 订阅转换地址（从服务器配置注入）\n            var SUB_CONVERTER_URL = \"${ scu }\";\n            // 远程配置URL（硬编码）\n            var REMOTE_CONFIG_URL = \"${ remoteConfigUrl }\";\n                \n                // 翻译对象\n                const translations = {\n                    zh: {\n                        subscriptionCopied: '订阅链接已复制',\n                        autoSubscriptionCopied: '自动识别订阅链接已复制，客户端访问时会根据User-Agent自动识别并返回对应格式'\n                    },\n                    fa: {\n                        subscriptionCopied: 'لینک اشتراک کپی شد',\n                        autoSubscriptionCopied: 'لینک اشتراک تشخیص خودکار کپی شد، کلاینت هنگام دسترسی بر اساس User-Agent به طور خودکار تشخیص داده و قالب مربوطه را برمی‌گرداند'\n                    }\n                };\n                \n                function getCookie(name) {\n                    const value = '; ' + document.cookie;\n                    const parts = value.split('; ' + name + '=');\n                    if (parts.length === 2) return parts.pop().split(';').shift();\n                    return null;\n                }\n                \n                const browserLang = navigator.language || navigator.userLanguage || '';\n                const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                let isFarsi = false;\n                \n                if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                    isFarsi = true;\n                } else if (savedLang === 'zh' || savedLang === 'zh-CN') {\n                    isFarsi = false;\n                } else {\n                    isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                }\n                \n                const t = translations[isFarsi ? 'fa' : 'zh'];\n                \n                function changeLanguage(lang) {\n                    localStorage.setItem('preferredLanguage', lang);\n                    // 设置Cookie（有效期1年）\n                    const expiryDate = new Date();\n                    expiryDate.setFullYear(expiryDate.getFullYear() + 1);\n                    document.cookie = 'preferredLanguage=' + lang + '; path=/; expires=' + expiryDate.toUTCString() + '; SameSite=Lax';\n                    // 刷新页面，不使用URL参数\n                    window.location.reload();\n                }\n                \n                // 页面加载时检查 localStorage 和 Cookie，并清理URL参数\n                window.addEventListener('DOMContentLoaded', function() {\n                    const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                    const urlParams = new URLSearchParams(window.location.search);\n                    const urlLang = urlParams.get('lang');\n                    \n                    // 如果URL中有语言参数，移除它并设置Cookie\n                    if (urlLang) {\n                        const currentUrl = new URL(window.location.href);\n                        currentUrl.searchParams.delete('lang');\n                        const newUrl = currentUrl.toString();\n                        \n                        // 设置Cookie\n                        const expiryDate = new Date();\n                        expiryDate.setFullYear(expiryDate.getFullYear() + 1);\n                        document.cookie = 'preferredLanguage=' + urlLang + '; path=/; expires=' + expiryDate.toUTCString() + '; SameSite=Lax';\n                        localStorage.setItem('preferredLanguage', urlLang);\n                        \n                        // 使用history API移除URL参数，不刷新页面\n                        window.history.replaceState({}, '', newUrl);\n                    } else if (savedLang) {\n                        // 如果localStorage中有但Cookie中没有，同步到Cookie\n                        const expiryDate = new Date();\n                        expiryDate.setFullYear(expiryDate.getFullYear() + 1);\n                        document.cookie = 'preferredLanguage=' + savedLang + '; path=/; expires=' + expiryDate.toUTCString() + '; SameSite=Lax';\n                    }\n                });\n            \n            function tryOpenApp(schemeUrl, fallbackCallback, timeout) {\n                timeout = timeout || 2500;\n                var appOpened = false;\n                var callbackExecuted = false;\n                var startTime = Date.now();\n                \n                var blurHandler = function() {\n                    var elapsed = Date.now() - startTime;\n                    if (elapsed < 3000 && !callbackExecuted) {\n                        appOpened = true;\n                    }\n                };\n                \n                window.addEventListener('blur', blurHandler);\n                \n                var hiddenHandler = function() {\n                    var elapsed = Date.now() - startTime;\n                    if (elapsed < 3000 && !callbackExecuted) {\n                        appOpened = true;\n                    }\n                };\n                \n                document.addEventListener('visibilitychange', hiddenHandler);\n                \n                var iframe = document.createElement('iframe');\n                iframe.style.display = 'none';\n                iframe.style.width = '1px';\n                iframe.style.height = '1px';\n                iframe.src = schemeUrl;\n                document.body.appendChild(iframe);\n                \n                setTimeout(function() {\n                    iframe.parentNode && iframe.parentNode.removeChild(iframe);\n                    window.removeEventListener('blur', blurHandler);\n                    document.removeEventListener('visibilitychange', hiddenHandler);\n                    \n                    if (!callbackExecuted) {\n                        callbackExecuted = true;\n                        if (!appOpened && fallbackCallback) {\n                            fallbackCallback();\n                        }\n                    }\n                }, timeout);\n            }\n            \n            function generateClientLink(clientType, clientName) {\n                var currentUrl = window.location.href;\n                var subscriptionUrl = currentUrl + \"/sub\";\n                var schemeUrl = '';\n                var displayName = clientName || '';\n                var finalUrl = subscriptionUrl;\n                \n                if (clientType === atob('djJyYXk=')) {\n                    finalUrl = subscriptionUrl;\n                    var urlElement = document.getElementById(\"clientSubscriptionUrl\");\n                    urlElement.textContent = finalUrl;\n                    urlElement.style.display = \"block\";\n                    urlElement.style.overflowWrap = \"break-word\";\n                    urlElement.style.wordBreak = \"break-all\";\n                    urlElement.style.overflowX = \"auto\";\n                    urlElement.style.maxWidth = \"100%\";\n                    urlElement.style.boxSizing = \"border-box\";\n                    \n                    if (clientName === 'V2RAY') {\n                        navigator.clipboard.writeText(finalUrl).then(function() {\n                                alert(displayName + \" \" + t.subscriptionCopied);\n                        });\n                    } else if (clientName === 'Shadowrocket') {\n                        schemeUrl = 'shadowrocket://add/' + encodeURIComponent(finalUrl);\n                        tryOpenApp(schemeUrl, function() {\n                            navigator.clipboard.writeText(finalUrl).then(function() {\n                                    alert(displayName + \" \" + t.subscriptionCopied);\n                            });\n                        });\n                    } else if (clientName === 'V2RAYNG') {\n                        schemeUrl = 'v2rayng://install?url=' + encodeURIComponent(finalUrl);\n                        tryOpenApp(schemeUrl, function() {\n                            navigator.clipboard.writeText(finalUrl).then(function() {\n                                    alert(displayName + \" \" + t.subscriptionCopied);\n                            });\n                        });\n                    } else if (clientName === 'NEKORAY') {\n                        schemeUrl = 'nekoray://install-config?url=' + encodeURIComponent(finalUrl);\n                        tryOpenApp(schemeUrl, function() {\n                            navigator.clipboard.writeText(finalUrl).then(function() {\n                                    alert(displayName + \" \" + t.subscriptionCopied);\n                            });\n                        });\n                    }\n                } else {\n                    // 检查 ECH 是否开启\n                    var echEnabled = document.getElementById('ech') && document.getElementById('ech').checked;\n                    \n                    // 如果 ECH 开启且是 Clash，直接使用后端接口\n                    if (echEnabled && clientType === atob('Y2xhc2g=')) {\n                        finalUrl = subscriptionUrl + \"?target=\" + clientType;\n                        var urlElement = document.getElementById(\"clientSubscriptionUrl\");\n                        urlElement.textContent = finalUrl;\n                        urlElement.style.display = \"block\";\n                        urlElement.style.overflowWrap = \"break-word\";\n                        urlElement.style.wordBreak = \"break-all\";\n                        urlElement.style.overflowX = \"auto\";\n                        urlElement.style.maxWidth = \"100%\";\n                        urlElement.style.boxSizing = \"border-box\";\n                        \n                        if (clientName === 'STASH') {\n                            schemeUrl = 'stash://install?url=' + encodeURIComponent(finalUrl);\n                            displayName = 'STASH';\n                        } else {\n                            schemeUrl = 'clash://install-config?url=' + encodeURIComponent(finalUrl);\n                            displayName = 'CLASH';\n                        }\n                        \n                        if (schemeUrl) {\n                            tryOpenApp(schemeUrl, function() {\n                                navigator.clipboard.writeText(finalUrl).then(function() {\n                                        alert(displayName + \" \" + t.subscriptionCopied);\n                                });\n                            });\n                        } else {\n                            navigator.clipboard.writeText(finalUrl).then(function() {\n                                    alert(displayName + \" \" + t.subscriptionCopied);\n                            });\n                        }\n                    } else {\n                        // 其他情况使用订阅转换服务\n                        var encodedUrl = encodeURIComponent(subscriptionUrl);\n                        finalUrl = SUB_CONVERTER_URL + \"?target=\" + clientType + \"&url=\" + encodedUrl + \"&insert=false&config=\" + encodeURIComponent(REMOTE_CONFIG_URL) + \"&emoji=true&list=false&xudp=false&udp=false&tfo=false&expand=true&scv=false&fdn=false&new_name=true\";\n                        var urlElement = document.getElementById(\"clientSubscriptionUrl\");\n                        urlElement.textContent = finalUrl;\n                        urlElement.style.display = \"block\";\n                        urlElement.style.overflowWrap = \"break-word\";\n                        urlElement.style.wordBreak = \"break-all\";\n                        urlElement.style.overflowX = \"auto\";\n                        urlElement.style.maxWidth = \"100%\";\n                        urlElement.style.boxSizing = \"border-box\";\n                        \n                        if (clientType === atob('Y2xhc2g=')) {\n                            if (clientName === 'STASH') {\n                                schemeUrl = 'stash://install?url=' + encodeURIComponent(finalUrl);\n                                displayName = 'STASH';\n                            } else {\n                                schemeUrl = 'clash://install-config?url=' + encodeURIComponent(finalUrl);\n                                displayName = 'CLASH';\n                            }\n                        } else if (clientType === atob('c3VyZ2U=')) {\n                            schemeUrl = 'surge:///install-config?url=' + encodeURIComponent(finalUrl);\n                            displayName = 'SURGE';\n                        } else if (clientType === atob('c2luZ2JveA==')) {\n                            schemeUrl = 'sing-box://install-config?url=' + encodeURIComponent(finalUrl);\n                            displayName = 'SING-BOX';\n                        } else if (clientType === atob('bG9vbg==')) {\n                            schemeUrl = 'loon://install?url=' + encodeURIComponent(finalUrl);\n                            displayName = 'LOON';\n                        } else if (clientType === atob('cXVhbng=')) {\n                            schemeUrl = 'quantumult-x://install-config?url=' + encodeURIComponent(finalUrl);\n                            displayName = 'QUANTUMULT X';\n                        }\n                        \n                        if (schemeUrl) {\n                            tryOpenApp(schemeUrl, function() {\n                                navigator.clipboard.writeText(finalUrl).then(function() {\n                                        alert(displayName + \" \" + t.subscriptionCopied);\n                                });\n                            });\n                        } else {\n                            navigator.clipboard.writeText(finalUrl).then(function() {\n                                    alert(displayName + \" \" + t.subscriptionCopied);\n                            });\n                        }\n                    }\n                }\n            }\n            \n            function createMatrixRain() {\n                const matrixContainer = document.getElementById('matrixCodeRain');\n                const matrixChars = '01ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';\n                const columns = Math.floor(window.innerWidth / 18);\n                \n                for (let i = 0; i < columns; i++) {\n                    const column = document.createElement('div');\n                    column.className = 'matrix-column';\n                    column.style.left = (i * 18) + 'px';\n                    column.style.animationDelay = Math.random() * 15 + 's';\n                    column.style.animationDuration = (Math.random() * 15 + 8) + 's';\n                    column.style.fontSize = (Math.random() * 4 + 12) + 'px';\n                    column.style.opacity = Math.random() * 0.8 + 0.2;\n                    \n                    let text = '';\n                    const charCount = Math.floor(Math.random() * 30 + 20);\n                    for (let j = 0; j < charCount; j++) {\n                        const char = matrixChars[Math.floor(Math.random() * matrixChars.length)];\n                        const brightness = Math.random() > 0.1 ? '#00ff00' : '#00aa00';\n                        text += '<span style=\"color: ' + brightness + ';\">' + char + '</span><br>';\n                    }\n                    column.innerHTML = text;\n                    matrixContainer.appendChild(column);\n                }\n                \n                setInterval(function() {\n                    const columns = matrixContainer.querySelectorAll('.matrix-column');\n                    columns.forEach(function(column) {\n                        if (Math.random() > 0.95) {\n                            const chars = column.querySelectorAll('span');\n                            if (chars.length > 0) {\n                                const randomChar = chars[Math.floor(Math.random() * chars.length)];\n                                randomChar.style.color = '#ffffff';\n                                setTimeout(function() {\n                                    randomChar.style.color = '#00ff00';\n                                }, 200);\n                            }\n                        }\n                    });\n                }, 100);\n            }\n            \n            async function checkSystemStatus() {\n                try {\n                    const cfStatus = document.getElementById('cfStatus');\n                    const regionStatus = document.getElementById('regionStatus');\n                    const geoInfo = document.getElementById('geoInfo');\n                    const backupStatus = document.getElementById('backupStatus');\n                    const currentIP = document.getElementById('currentIP');\n                    const regionMatch = document.getElementById('regionMatch');\n                    \n                        // 获取当前语言设置（优先从Cookie/localStorage读取）\n                        function getCookie(name) {\n                            const value = '; ' + document.cookie;\n                            const parts = value.split('; ' + name + '=');\n                            if (parts.length === 2) return parts.pop().split(';').shift();\n                            return null;\n                        }\n                        \n                        const browserLang = navigator.language || navigator.userLanguage || '';\n                        const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                        let isFarsi = false;\n                        \n                        if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                            isFarsi = true;\n                        } else if (savedLang === 'zh' || savedLang === 'zh-CN') {\n                            isFarsi = false;\n                        } else {\n                            isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                        }\n                        \n                        const translations = {\n                            zh: {\n                                workerRegion: 'Worker地区: ',\n                                detectionMethod: '检测方式: ',\n                                proxyIPStatus: 'ProxyIP状态: ',\n                                currentIP: '当前使用IP: ',\n                                regionMatch: '地区匹配: ',\n                                regionNames: {\n                        'US': '🇺🇸 美国', 'SG': '🇸🇬 新加坡', 'JP': '🇯🇵 日本',\n                        'KR': '🇰🇷 韩国', 'DE': '🇩🇪 德国', 'SE': '🇸🇪 瑞典', 'NL': '🇳🇱 荷兰',\n                        'FI': '🇫🇮 芬兰', 'GB': '🇬🇧 英国'\n                                },\n                                customIPMode: '自定义ProxyIP模式 (p变量启用)',\n                                customIPModeDesc: '自定义IP模式 (已禁用地区匹配)',\n                                usingCustomProxyIP: '使用自定义ProxyIP: ',\n                                customIPConfig: ' (p变量配置)',\n                                customIPModeDisabled: '自定义IP模式，地区选择已禁用',\n                                manualRegion: '手动指定地区',\n                                manualRegionDesc: ' (手动指定)',\n                                proxyIPAvailable: '10/10 可用 (ProxyIP域名预设可用)',\n                                smartSelection: '智能就近选择中',\n                                sameRegionIP: '同地区IP可用 (1个)',\n                                cloudflareDetection: 'Cloudflare内置检测',\n                                detectionFailed: '检测失败',\n                                unknown: '未知'\n                            },\n                            fa: {\n                                workerRegion: 'منطقه Worker: ',\n                                detectionMethod: 'روش تشخیص: ',\n                                proxyIPStatus: 'وضعیت ProxyIP: ',\n                                currentIP: 'IP فعلی: ',\n                                regionMatch: 'تطبیق منطقه: ',\n                                regionNames: {\n                                    'US': '🇺🇸 آمریکا', 'SG': '🇸🇬 سنگاپور', 'JP': '🇯🇵 ژاپن',\n                                    'KR': '🇰🇷 کره جنوبی', 'DE': '🇩🇪 آلمان', 'SE': '🇸🇪 سوئد', 'NL': '🇳🇱 هلند',\n                                    'FI': '🇫🇮 فنلاند', 'GB': '🇬🇧 بریتانیا'\n                                },\n                                customIPMode: 'حالت ProxyIP سفارشی (متغیر p فعال است)',\n                                customIPModeDesc: 'حالت IP سفارشی (تطبیق منطقه غیرفعال است)',\n                                usingCustomProxyIP: 'استفاده از ProxyIP سفارشی: ',\n                                customIPConfig: ' (پیکربندی متغیر p)',\n                                customIPModeDisabled: 'حالت IP سفارشی، انتخاب منطقه غیرفعال است',\n                                manualRegion: 'تعیین منطقه دستی',\n                                manualRegionDesc: ' (تعیین دستی)',\n                                proxyIPAvailable: '10/10 در دسترس (دامنه پیش‌فرض ProxyIP در دسترس است)',\n                                smartSelection: 'انتخاب هوشمند نزدیک در حال انجام است',\n                                sameRegionIP: 'IP هم‌منطقه در دسترس است (1)',\n                                cloudflareDetection: 'تشخیص داخلی Cloudflare',\n                                detectionFailed: 'تشخیص ناموفق',\n                                unknown: 'ناشناخته'\n                            }\n                        };\n                        \n                        const t = translations[isFarsi ? 'fa' : 'zh'];\n                    \n                    let detectedRegion = 'US'; // 默认值\n                    let isCustomIPMode = false;\n                    let isManualRegionMode = false;\n                    try {\n                        const response = await fetch(window.location.pathname + '/region');\n                        const data = await response.json();\n                        \n                        if (data.region === 'CUSTOM') {\n                            isCustomIPMode = true;\n                            detectedRegion = 'CUSTOM';\n                            \n                            // 获取自定义IP的详细信息\n                                const customIPInfo = data.ci || t.unknown;\n                            \n                                geoInfo.innerHTML = t.detectionMethod + '<span style=\"color: #ffaa00;\">⚙️ ' + t.customIPMode + '</span>';\n                                regionStatus.innerHTML = t.workerRegion + '<span style=\"color: #ffaa00;\">🔧 ' + t.customIPModeDesc + '</span>';\n                            \n                            // 显示自定义IP配置状态，包含具体IP\n                                if (backupStatus) backupStatus.innerHTML = t.proxyIPStatus + '<span style=\"color: #ffaa00;\">🔧 ' + t.usingCustomProxyIP + customIPInfo + '</span>';\n                                if (currentIP) currentIP.innerHTML = t.currentIP + '<span style=\"color: #ffaa00;\">✅ ' + customIPInfo + t.customIPConfig + '</span>';\n                                if (regionMatch) regionMatch.innerHTML = t.regionMatch + '<span style=\"color: #ffaa00;\">⚠️ ' + t.customIPModeDisabled + '</span>';\n                            \n                            return; // 提前返回，不执行后续的地区匹配逻辑\n                            } else if (data.detectionMethod === '手动指定地区' || data.detectionMethod === 'تعیین منطقه دستی') {\n                            isManualRegionMode = true;\n                            detectedRegion = data.region;\n                            \n                                geoInfo.innerHTML = t.detectionMethod + '<span style=\"color: #44aa44;\">' + t.manualRegion + '</span>';\n                                regionStatus.innerHTML = t.workerRegion + '<span style=\"color: #44ff44;\">🎯 ' + t.regionNames[detectedRegion] + t.manualRegionDesc + '</span>';\n                            \n                            // 显示配置状态而不是检测状态\n                                if (backupStatus) backupStatus.innerHTML = t.proxyIPStatus + '<span style=\"color: #44ff44;\">✅ ' + t.proxyIPAvailable + '</span>';\n                                if (currentIP) currentIP.innerHTML = t.currentIP + '<span style=\"color: #44ff44;\">✅ ' + t.smartSelection + '</span>';\n                                if (regionMatch) regionMatch.innerHTML = t.regionMatch + '<span style=\"color: #44ff44;\">✅ ' + t.sameRegionIP + '</span>';\n                            \n                            return; // 提前返回，不执行后续的地区匹配逻辑\n                            } else if (data.region && t.regionNames[data.region]) {\n                            detectedRegion = data.region;\n                        }\n                        \n                            geoInfo.innerHTML = t.detectionMethod + '<span style=\"color: #44ff44;\">' + t.cloudflareDetection + '</span>';\n                        \n                    } catch (e) {\n                            geoInfo.innerHTML = t.detectionMethod + '<span style=\"color: #ff4444;\">' + t.detectionFailed + '</span>';\n                    }\n                    \n                        regionStatus.innerHTML = t.workerRegion + '<span style=\"color: #44ff44;\">✅ ' + t.regionNames[detectedRegion] + '</span>';\n                    \n                    // 直接显示配置状态，不再进行检测\n                    if (backupStatus) {\n                            backupStatus.innerHTML = t.proxyIPStatus + '<span style=\"color: #44ff44;\">✅ ' + t.proxyIPAvailable + '</span>';\n                    }\n                    \n                    if (currentIP) {\n                            currentIP.innerHTML = t.currentIP + '<span style=\"color: #44ff44;\">✅ ' + t.smartSelection + '</span>';\n                    }\n                    \n                    if (regionMatch) {\n                            regionMatch.innerHTML = t.regionMatch + '<span style=\"color: #44ff44;\">✅ ' + t.sameRegionIP + '</span>';\n                    }\n                    \n                } catch (error) {\n                        function getCookie(name) {\n                            const value = '; ' + document.cookie;\n                            const parts = value.split('; ' + name + '=');\n                            if (parts.length === 2) return parts.pop().split(';').shift();\n                            return null;\n                        }\n                        \n                        const browserLang = navigator.language || navigator.userLanguage || '';\n                        const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                        let isFarsi = false;\n                        \n                        if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                            isFarsi = true;\n                        } else {\n                            isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                        }\n                        \n                        const translations = {\n                            zh: {\n                                workerRegion: 'Worker地区: ',\n                                detectionMethod: '检测方式: ',\n                                proxyIPStatus: 'ProxyIP状态: ',\n                                currentIP: '当前使用IP: ',\n                                regionMatch: '地区匹配: ',\n                                detectionFailed: '检测失败'\n                            },\n                            fa: {\n                                workerRegion: 'منطقه Worker: ',\n                                detectionMethod: 'روش تشخیص: ',\n                                proxyIPStatus: 'وضعیت ProxyIP: ',\n                                currentIP: 'IP فعلی: ',\n                                regionMatch: 'تطبیق منطقه: ',\n                                detectionFailed: 'تشخیص ناموفق'\n                            }\n                        };\n                        \n                        const t = translations[isFarsi ? 'fa' : 'zh'];\n                        \n                        document.getElementById('regionStatus').innerHTML = t.workerRegion + '<span style=\"color: #ff4444;\">❌ ' + t.detectionFailed + '</span>';\n                        document.getElementById('geoInfo').innerHTML = t.detectionMethod + '<span style=\"color: #ff4444;\">❌ ' + t.detectionFailed + '</span>';\n                        document.getElementById('backupStatus').innerHTML = t.proxyIPStatus + '<span style=\"color: #ff4444;\">❌ ' + t.detectionFailed + '</span>';\n                        document.getElementById('currentIP').innerHTML = t.currentIP + '<span style=\"color: #ff4444;\">❌ ' + t.detectionFailed + '</span>';\n                        document.getElementById('regionMatch').innerHTML = t.regionMatch + '<span style=\"color: #ff4444;\">❌ ' + t.detectionFailed + '</span>';\n                }\n            }\n            \n                async function testAPI() {\n                    try {\n                        function getCookie(name) {\n                            const value = '; ' + document.cookie;\n                            const parts = value.split('; ' + name + '=');\n                            if (parts.length === 2) return parts.pop().split(';').shift();\n                            return null;\n                        }\n                        \n                        const browserLang = navigator.language || navigator.userLanguage || '';\n                        const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                        let isFarsi = false;\n                        \n                        if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                            isFarsi = true;\n                        } else {\n                            isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                        }\n                        \n                        const translations = {\n                            zh: {\n                                apiTestResult: 'API检测结果: ',\n                                apiTestTime: '检测时间: ',\n                                apiTestFailed: 'API检测失败: ',\n                                unknownError: '未知错误',\n                                apiTestError: 'API测试失败: '\n                            },\n                            fa: {\n                                apiTestResult: 'نتیجه تشخیص API: ',\n                                apiTestTime: 'زمان تشخیص: ',\n                                apiTestFailed: 'تشخیص API ناموفق: ',\n                                unknownError: 'خطای ناشناخته',\n                                apiTestError: 'تست API ناموفق: '\n                            }\n                        };\n                        \n                        const t = translations[isFarsi ? 'fa' : 'zh'];\n                        \n                    const response = await fetch(window.location.pathname + '/test-api');\n                    const data = await response.json();\n                    \n                    if (data.detectedRegion) {\n                            alert(t.apiTestResult + data.detectedRegion + '\\\\n' + t.apiTestTime + data.timestamp);\n                    } else {\n                            alert(t.apiTestFailed + (data.error || t.unknownError));\n                    }\n                } catch (error) {\n                        function getCookie(name) {\n                            const value = '; ' + document.cookie;\n                            const parts = value.split('; ' + name + '=');\n                            if (parts.length === 2) return parts.pop().split(';').shift();\n                            return null;\n                        }\n                        \n                        const browserLang = navigator.language || navigator.userLanguage || '';\n                        const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                        let isFarsi = false;\n                        \n                        if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                            isFarsi = true;\n                        } else {\n                            isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                        }\n                        \n                        const translations = {\n                            zh: { apiTestError: 'API测试失败: ' },\n                            fa: { apiTestError: 'تست API ناموفق: ' }\n                        };\n                        \n                        const t = translations[isFarsi ? 'fa' : 'zh'];\n                        alert(t.apiTestError + error.message);\n                }\n            }\n            \n            // 配置管理相关函数\n            async function checkKVStatus() {\n                const apiUrl = window.location.pathname + '/api/config';\n                \n                try {\n                    const response = await fetch(apiUrl);\n                    \n                        function getCookie(name) {\n                            const value = '; ' + document.cookie;\n                            const parts = value.split('; ' + name + '=');\n                            if (parts.length === 2) return parts.pop().split(';').shift();\n                            return null;\n                        }\n                        \n                        const browserLang = navigator.language || navigator.userLanguage || '';\n                        const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                        let isFarsi = false;\n                        \n                        if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                            isFarsi = true;\n                        } else {\n                            isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                        }\n                        \n                        const translations = {\n                            zh: {\n                                kvDisabled: '⚠️ KV存储未启用或未配置',\n                                kvNotConfigured: 'KV存储未配置，无法使用配置管理功能。\\\\n\\\\n请在Cloudflare Workers中:\\\\n1. 创建KV命名空间\\\\n2. 绑定环境变量 C\\\\n3. 重新部署代码',\n                                kvNotEnabled: 'KV存储未配置',\n                                kvEnabled: '✅ KV存储已启用，可以使用配置管理功能',\n                                kvCheckFailed: '⚠️ KV存储检测失败',\n                                kvCheckFailedFormat: 'KV存储检测失败: 响应格式错误',\n                                kvCheckFailedStatus: 'KV存储检测失败 - 状态码: ',\n                                kvCheckFailedError: 'KV存储检测失败 - 错误: '\n                            },\n                            fa: {\n                                kvDisabled: '⚠️ ذخیره‌سازی KV فعال نیست یا پیکربندی نشده است',\n                                kvNotConfigured: 'ذخیره‌سازی KV پیکربندی نشده است، نمی‌توانید از عملکرد مدیریت تنظیمات استفاده کنید.\\\\n\\\\nلطفا در Cloudflare Workers:\\\\n1. فضای نام KV ایجاد کنید\\\\n2. متغیر محیطی C را پیوند دهید\\\\n3. کد را دوباره مستقر کنید',\n                                kvNotEnabled: 'ذخیره‌سازی KV پیکربندی نشده است',\n                                kvEnabled: '✅ ذخیره‌سازی KV فعال است، می‌توانید از مدیریت تنظیمات استفاده کنید',\n                                kvCheckFailed: '⚠️ بررسی ذخیره‌سازی KV ناموفق',\n                                kvCheckFailedFormat: 'بررسی ذخیره‌سازی KV ناموفق: خطای فرمت پاسخ',\n                                kvCheckFailedStatus: 'بررسی ذخیره‌سازی KV ناموفق - کد وضعیت: ',\n                                kvCheckFailedError: 'بررسی ذخیره‌سازی KV ناموفق - خطا: '\n                            }\n                        };\n                        \n                        const t = translations[isFarsi ? 'fa' : 'zh'];\n                        \n                        if (response.status === 503) {\n                            // KV未配置\n                            document.getElementById('kvStatus').innerHTML = '<span style=\"color: #ffaa00;\">' + t.kvDisabled + '</span>';\n                            document.getElementById('configCard').style.display = 'block';\n                            document.getElementById('currentConfig').textContent = t.kvNotConfigured;\n                    } else if (response.ok) {\n                        try {\n                        const data = await response.json();\n                        \n                            // 检查响应是否包含KV配置信息\n                            if (data && data.kvEnabled === true) {\n                                document.getElementById('kvStatus').innerHTML = '<span style=\"color: #44ff44;\">' + t.kvEnabled + '</span>';\n                                document.getElementById('configContent').style.display = 'block';\n                                document.getElementById('configCard').style.display = 'block';\n                                await loadCurrentConfig();\n                            } else {\n                                document.getElementById('kvStatus').innerHTML = '<span style=\"color: #ffaa00;\">' + t.kvDisabled + '</span>';\n                                document.getElementById('configCard').style.display = 'block';\n                                document.getElementById('currentConfig').textContent = t.kvNotEnabled;\n                                }\n                        } catch (jsonError) {\n                            document.getElementById('kvStatus').innerHTML = '<span style=\"color: #ffaa00;\">' + t.kvCheckFailed + '</span>';\n                            document.getElementById('configCard').style.display = 'block';\n                            document.getElementById('currentConfig').textContent = t.kvCheckFailedFormat;\n                        }\n                    } else {\n                        document.getElementById('kvStatus').innerHTML = '<span style=\"color: #ffaa00;\">' + t.kvDisabled + '</span>';\n                        document.getElementById('configCard').style.display = 'block';\n                        document.getElementById('currentConfig').textContent = t.kvCheckFailedStatus + response.status;\n                    }\n                } catch (error) {\n                    function getCookie(name) {\n                        const value = '; ' + document.cookie;\n                        const parts = value.split('; ' + name + '=');\n                        if (parts.length === 2) return parts.pop().split(';').shift();\n                        return null;\n                    }\n                    \n                    const browserLang = navigator.language || navigator.userLanguage || '';\n                    const savedLang = localStorage.getItem('preferredLanguage') || getCookie('preferredLanguage');\n                    let isFarsi = false;\n                    \n                    if (savedLang === 'fa' || savedLang === 'fa-IR') {\n                        isFarsi = true;\n                    } else {\n                        isFarsi = browserLang.includes('fa') || browserLang.includes('fa-IR');\n                    }\n                    \n                    const translations = {\n                        zh: {\n                            kvDisabled: '⚠️ KV存储未启用或未配置',\n                            kvCheckFailedError: 'KV存储检测失败 - 错误: '\n                        },\n                        fa: {\n                            kvDisabled: '⚠️ ذخیره‌سازی KV فعال نیست یا پیکربندی نشده است',\n                            kvCheckFailedError: 'بررسی ذخیره‌سازی KV ناموفق - خطا: '\n                        }\n                    };\n                    \n                    const t = translations[isFarsi ? 'fa' : 'zh'];\n                    \n                    document.getElementById('kvStatus').innerHTML = '<span style=\"color: #ffaa00;\">' + t.kvDisabled + '</span>';\n                    document.getElementById('configCard').style.display = 'block';\n                    document.getElementById('currentConfig').textContent = t.kvCheckFailedError + error.message;\n                }\n            }\n            \n            async function loadCurrentConfig() {\n                const apiUrl = window.location.pathname + '/api/config';\n                \n                try {\n                    const response = await fetch(apiUrl);\n                    \n                    if (response.status === 503) {\n                        document.getElementById('currentConfig').textContent = 'KV存储未配置，无法加载配置';\n                        return;\n                    }\n                    if (!response.ok) {\n                        const errorText = await response.text();\n                        document.getElementById('currentConfig').textContent = '加载配置失败: ' + errorText;\n                        return;\n                    }\n                    const config = await response.json();\n                    \n                    // 过滤掉内部字段 kvEnabled\n                    const displayConfig = {};\n                    for (const [key, value] of Object.entries(config)) {\n                        if (key !== 'kvEnabled') {\n                            displayConfig[key] = value;\n                        }\n                    }\n                    \n                    let configText = '当前配置:\\\\n';\n                    if (Object.keys(displayConfig).length === 0) {\n                        configText += '(暂无配置)';\n                    } else {\n                        for (const [key, value] of Object.entries(displayConfig)) {\n                            configText += key + ': ' + (value || '(未设置)') + '\\\\n';\n                        }\n                    }\n                    \n                    document.getElementById('currentConfig').textContent = configText;\n                    \n                    // 更新表单值\n                    document.getElementById('wkRegion').value = config.wk || '';\n                    document.getElementById('ev').checked = config.ev !== 'no';\n                    document.getElementById('et').checked = config.et === 'yes';\n                    document.getElementById('ex').checked = config.ex === 'yes';\n                    document.getElementById('ech').checked = config.ech === 'yes';\n                    document.getElementById('tp').value = config.tp || '';\n                    if (document.getElementById('customDNS')) {\n                        document.getElementById('customDNS').value = config.customDNS || '';\n                    }\n                    if (document.getElementById('customECHDomain')) {\n                        document.getElementById('customECHDomain').value = config.customECHDomain || '';\n                    }\n                    document.getElementById('scu').value = config.scu || '';\n                    document.getElementById('epd').checked = config.epd !== 'no';\n                    document.getElementById('epi').checked = config.epi !== 'no';\n                    document.getElementById('egi').checked = config.egi !== 'no';\n                    if (document.getElementById('ipv4Enabled')) document.getElementById('ipv4Enabled').checked = config.ipv4 !== 'no';\n                    if (document.getElementById('ipv6Enabled')) document.getElementById('ipv6Enabled').checked = config.ipv6 !== 'no';\n                    if (document.getElementById('ispMobile')) document.getElementById('ispMobile').checked = config.ispMobile !== 'no';\n                    if (document.getElementById('ispUnicom')) document.getElementById('ispUnicom').checked = config.ispUnicom !== 'no';\n                    if (document.getElementById('ispTelecom')) document.getElementById('ispTelecom').checked = config.ispTelecom !== 'no';\n                    document.getElementById('customPath').value = config.d || '';\n                    document.getElementById('customIP').value = config.p || '';\n                    document.getElementById('yx').value = config.yx || '';\n                    document.getElementById('yxURL').value = config.yxURL || '';\n                    document.getElementById('socksConfig').value = config.s || '';\n                    document.getElementById('customHomepage').value = config.homepage || '';\n                    document.getElementById('apiEnabled').value = config.ae || '';\n                    document.getElementById('regionMatching').value = config.rm || '';\n                    document.getElementById('downgradeControl').value = config.qj || '';\n                    document.getElementById('portControl').value = config.dkby || '';\n                    document.getElementById('preferredControl').value = config.yxby || '';\n                    \n                    // 更新路径类型显示\n                    updatePathTypeStatus(config.d);\n                    \n                    // 检查p变量，如果有值则禁用wk地区选择\n                    updateWkRegionState();\n                    \n                } catch (error) {\n                    document.getElementById('currentConfig').textContent = '加载配置失败: ' + error.message;\n                }\n            }\n            \n            // 更新路径类型显示\n            function updatePathTypeStatus(cp) {\n                const pathTypeStatus = document.getElementById('pathTypeStatus');\n                const currentUrl = window.location.href;\n                const pathParts = window.location.pathname.split('/').filter(p => p);\n                const currentPath = pathParts.length > 0 ? pathParts[0] : '';\n                \n                if (cp && cp.trim()) {\n                    // 使用自定义路径 (d)\n                    pathTypeStatus.innerHTML = '<div style=\"color: #44ff44;\">使用类型: <strong>自定义路径 (d)</strong></div>' +\n                        '<div style=\"margin-top: 5px; color: #00ff00;\">当前路径: <span style=\"color: #ffaa00;\">' + cp + '</span></div>' +\n                        '<div style=\"margin-top: 5px; font-size: 0.9rem; color: #00aa00;\">访问地址: ' + \n                        (currentUrl.split('/')[0] + '//' + currentUrl.split('/')[2]) + cp + '/sub</div>';\n                } else {\n                    // 使用 UUID (u)\n                    pathTypeStatus.innerHTML = '<div style=\"color: #44ff44;\">使用类型: <strong>UUID 路径 (u)</strong></div>' +\n                        '<div style=\"margin-top: 5px; color: #00ff00;\">当前路径: <span style=\"color: #ffaa00;\">' + (currentPath || '(UUID)') + '</span></div>' +\n                        '<div style=\"margin-top: 5px; font-size: 0.9rem; color: #00aa00;\">访问地址: ' + currentUrl.split('/sub')[0] + '/sub</div>';\n                }\n            }\n            \n            // 更新wk地区选择的启用/禁用状态\n            function updateWkRegionState() {\n                const customIPInput = document.getElementById('customIP');\n                const wkRegion = document.getElementById('wkRegion');\n                const wkRegionHint = document.getElementById('wkRegionHint');\n                \n                if (customIPInput && wkRegion) {\n                    const hasCustomIP = customIPInput.value.trim() !== '';\n                    wkRegion.disabled = hasCustomIP;\n                    \n                    // 添加视觉反馈\n                    if (hasCustomIP) {\n                        wkRegion.style.opacity = '0.5';\n                        wkRegion.style.cursor = 'not-allowed';\n                        wkRegion.style.backgroundColor = 'rgba(0, 0, 0, 0.5)';\n                        // 显示提示信息\n                        if (wkRegionHint) {\n                            wkRegionHint.style.display = 'block';\n                            wkRegionHint.style.color = '#ffaa00';\n                        }\n                    } else {\n                        wkRegion.style.opacity = '1';\n                        wkRegion.style.cursor = 'pointer';\n                        wkRegion.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';\n                        // 隐藏提示信息\n                        if (wkRegionHint) {\n                            wkRegionHint.style.display = 'none';\n                        }\n                    }\n                }\n            }\n            \n            async function saveConfig(configData) {\n                const apiUrl = window.location.pathname + '/api/config';\n                \n                try {\n                    const response = await fetch(apiUrl, {\n                        method: 'POST',\n                        headers: { 'Content-Type': 'application/json' },\n                        body: JSON.stringify(configData)\n                    });\n                    \n                    \n                    if (response.status === 503) {\n                        showStatus('KV存储未配置，无法保存配置。请先在Cloudflare Workers中配置KV存储。', 'error');\n                        return;\n                    }\n                    \n                    if (!response.ok) {\n                        const errorText = await response.text();\n                        \n                        // 尝试解析 JSON 错误信息\n                        try {\n                            const errorData = JSON.parse(errorText);\n                            showStatus(errorData.message || '保存失败', 'error');\n                        } catch (parseError) {\n                            // 如果不是 JSON，直接显示文本\n                            showStatus('保存失败: ' + errorText, 'error');\n                        }\n                        return;\n                    }\n                    \n                    const result = await response.json();\n                    \n                    showStatus(result.message, result.success ? 'success' : 'error');\n                    \n                    if (result.success) {\n                        await loadCurrentConfig();\n                        // 更新wk地区选择状态\n                        updateWkRegionState();\n                        // 保存成功后刷新页面以更新系统状态\n                        setTimeout(function() {\n                            window.location.reload();\n                        }, 1500);\n                    } else {\n                    }\n                } catch (error) {\n                    showStatus('保存失败: ' + error.message, 'error');\n                }\n            }\n            \n            function showStatus(message, type) {\n                const statusDiv = document.getElementById('statusMessage');\n                statusDiv.textContent = message;\n                statusDiv.style.display = 'block';\n                statusDiv.style.color = type === 'success' ? '#00ff00' : '#ff0000';\n                statusDiv.style.borderColor = type === 'success' ? '#00ff00' : '#ff0000';\n                \n                setTimeout(function() {\n                    statusDiv.style.display = 'none';\n                }, 3000);\n            }\n            \n            async function resetAllConfig() {\n                if (confirm('确定要重置所有配置吗？这将清空所有KV配置，恢复为环境变量设置。')) {\n                    try {\n                        const response = await fetch(window.location.pathname + '/api/config', {\n                            method: 'POST',\n                            headers: { 'Content-Type': 'application/json' },\n                            body: JSON.stringify({ \n                                wk: '',\n                                d: '',\n                                p: '',\n                                yx: '',\n                                yxURL: '',\n                                s: '', ae: '',\n                                rm: '',\n                                qj: '',\n                                dkby: '',\n                                yxby: '', ev: '', et: '', ex: '', tp: '', scu: '', epd: '', epi: '', egi: '',\n                                ipv4: '', ipv6: '', ispMobile: '', ispUnicom: '', ispTelecom: '',\n                                homepage: ''\n                            })\n                        });\n                        \n                        if (response.status === 503) {\n                            showStatus('KV存储未配置，无法重置配置。', 'error');\n                            return;\n                        }\n                        \n                        if (!response.ok) {\n                            const errorText = await response.text();\n                            \n                            // 尝试解析 JSON 错误信息\n                            try {\n                                const errorData = JSON.parse(errorText);\n                                showStatus(errorData.message || '重置失败', 'error');\n                            } catch (parseError) {\n                                // 如果不是 JSON，直接显示文本\n                                showStatus('重置失败: ' + errorText, 'error');\n                            }\n                            return;\n                        }\n                        \n                        const result = await response.json();\n                        showStatus(result.message || '配置已重置', result.success ? 'success' : 'error');\n                        \n                        if (result.success) {\n                            await loadCurrentConfig();\n                            // 更新wk地区选择状态\n                            updateWkRegionState();\n                            // 刷新页面以更新系统状态\n                            setTimeout(function() {\n                                window.location.reload();\n                            }, 1500);\n                        }\n                    } catch (error) {\n                        showStatus('重置失败: ' + error.message, 'error');\n                    }\n                }\n            }\n            \n            async function checkECHStatus() {\n                const echStatusEl = document.getElementById('echStatus');\n                \n                if (!echStatusEl) return;\n                \n                try {\n                    const currentUrl = window.location.href;\n                    const subscriptionUrl = currentUrl + '/sub';\n                    \n                    echStatusEl.innerHTML = 'ECH状态: <span style=\"color: #ffaa00;\">检测中...</span>';\n                    \n                    const response = await fetch(subscriptionUrl, {\n                        method: 'GET',\n                        headers: {\n                            'Accept': 'text/plain'\n                        }\n                    });\n                    \n                    const echStatusHeader = response.headers.get('X-ECH-Status');\n                    const echConfigLength = response.headers.get('X-ECH-Config-Length');\n                    \n                    if (echStatusHeader === 'ENABLED') {\n                        echStatusEl.innerHTML = 'ECH状态: <span style=\"color: #44ff44;\">✅ 已启用' + (echConfigLength ? ' (配置长度: ' + echConfigLength + ')' : '') + '</span>';\n                    } else {\n                        echStatusEl.innerHTML = 'ECH状态: <span style=\"color: #ffaa00;\">⚠️ 未启用</span>';\n                    }\n                } catch (error) {\n                    echStatusEl.innerHTML = 'ECH状态: <span style=\"color: #ff4444;\">❌ 检测失败: ' + error.message + '</span>';\n                }\n            }\n            \n            document.addEventListener('DOMContentLoaded', function() {\n                createMatrixRain();\n                checkSystemStatus();\n                checkKVStatus();\n                checkECHStatus();\n                \n                // ECH 开启时自动联动开启仅TLS\n                const echCheckbox = document.getElementById('ech');\n                const portControl = document.getElementById('portControl');\n                if (echCheckbox && portControl) {\n                    echCheckbox.addEventListener('change', function() {\n                        if (this.checked) {\n                            // ECH 开启时，自动设置仅TLS为 yes\n                            portControl.value = 'yes';\n                        }\n                    });\n                    \n                    // 页面加载时，如果 ECH 已勾选，也自动设置仅TLS\n                    if (echCheckbox.checked) {\n                        portControl.value = 'yes';\n                    }\n                }\n                \n                // 监听customIP输入框变化，实时更新wk地区选择状态\n                const customIPInput = document.getElementById('customIP');\n                if (customIPInput) {\n                    customIPInput.addEventListener('input', function() {\n                        updateWkRegionState();\n                    });\n                }\n                \n                // 绑定表单事件\n                const regionForm = document.getElementById('regionForm');\n                if (regionForm) {\n                    regionForm.addEventListener('submit', async function(e) {\n                        e.preventDefault();\n                        const wkRegion = document.getElementById('wkRegion').value;\n                        await saveConfig({ wk: wkRegion });\n                    });\n                }\n                \n                const saveProtocolBtn = document.getElementById('saveProtocolBtn');\n                if (saveProtocolBtn) {\n                    saveProtocolBtn.addEventListener('click', async function(e) {\n                        e.preventDefault();\n                        const configData = { \n                            ev: document.getElementById('ev').checked ? 'yes' : 'no', \n                            et: document.getElementById('et').checked ? 'yes' : 'no', \n                            ex: document.getElementById('ex').checked ? 'yes' : 'no', \n                            ech: document.getElementById('ech').checked ? 'yes' : 'no',\n                            tp: document.getElementById('tp').value,\n                            customDNS: document.getElementById('customDNS').value,\n                            customECHDomain: document.getElementById('customECHDomain').value\n                        };\n                        \n                        if (!document.getElementById('ev').checked && \n                            !document.getElementById('et').checked && \n                            !document.getElementById('ex').checked) {\n                            alert('至少需要启用一个协议！');\n                            return;\n                        }\n                        \n                        await saveConfig(configData);\n                    });\n                }\n                \n                const otherConfigForm = document.getElementById('otherConfigForm');\n                if (otherConfigForm) {\n                    otherConfigForm.addEventListener('submit', async function(e) {\n                        e.preventDefault();\n                        const configData = { ev: document.getElementById('ev').checked ? 'yes' : 'no', et: document.getElementById('et').checked ? 'yes' : 'no', ex: document.getElementById('ex').checked ? 'yes' : 'no', ech: document.getElementById('ech').checked ? 'yes' : 'no', tp: document.getElementById('tp').value,\n                            d: document.getElementById('customPath').value,\n                            p: document.getElementById('customIP').value,\n                            yx: document.getElementById('yx').value,\n                            yxURL: document.getElementById('yxURL').value,\n                            s: document.getElementById('socksConfig').value,\n                            homepage: document.getElementById('customHomepage').value,\n                            customDNS: document.getElementById('customDNS').value,\n                            customECHDomain: document.getElementById('customECHDomain').value\n                        };\n                        \n                        // 确保至少选择一个协议\n                        if (!document.getElementById('ev').checked && \n                            !document.getElementById('et').checked && \n                            !document.getElementById('ex').checked) {\n                            alert('至少需要启用一个协议！');\n                            return;\n                        }\n                        \n                        await saveConfig(configData);\n                    });\n                }\n                \n                const advancedConfigForm = document.getElementById('advancedConfigForm');\n                if (advancedConfigForm) {\n                    advancedConfigForm.addEventListener('submit', async function(e) {\n                        e.preventDefault();\n                        const configData = { scu: document.getElementById('scu').value, epd: document.getElementById('epd').checked ? 'yes' : 'no', epi: document.getElementById('epi').checked ? 'yes' : 'no', egi: document.getElementById('egi').checked ? 'yes' : 'no', ae: document.getElementById('apiEnabled').value,\n                            rm: document.getElementById('regionMatching').value,\n                            qj: document.getElementById('downgradeControl').value,\n                            dkby: document.getElementById('portControl').value,\n                            yxby: document.getElementById('preferredControl').value,\n                            ipv4: document.getElementById('ipv4Enabled').checked ? 'yes' : 'no',\n                            ipv6: document.getElementById('ipv6Enabled').checked ? 'yes' : 'no',\n                            ispMobile: document.getElementById('ispMobile').checked ? 'yes' : 'no',\n                            ispUnicom: document.getElementById('ispUnicom').checked ? 'yes' : 'no',\n                            ispTelecom: document.getElementById('ispTelecom').checked ? 'yes' : 'no'\n                        };\n                        await saveConfig(configData);\n                    });\n                }\n                \n                let testAbortController = null;\n                let testResults = [];\n                \n                const startTestBtn = document.getElementById('startLatencyTest');\n                const stopTestBtn = document.getElementById('stopLatencyTest');\n                const testStatus = document.getElementById('latencyTestStatus');\n                const testResultsDiv = document.getElementById('latencyTestResults');\n                const resultsList = document.getElementById('latencyResultsList');\n                const overwriteSelectedBtn = document.getElementById('overwriteSelectedToYx');\n                const appendSelectedBtn = document.getElementById('appendSelectedToYx');\n                const selectAllBtn = document.getElementById('selectAllResults');\n                const deselectAllBtn = document.getElementById('deselectAllResults');\n                const ipSourceSelect = document.getElementById('ipSourceSelect');\n                const manualInputDiv = document.getElementById('manualInputDiv');\n                const urlFetchDiv = document.getElementById('urlFetchDiv');\n                const latencyTestInput = document.getElementById('latencyTestInput');\n                const fetchURLInput = document.getElementById('fetchURLInput');\n                const latencyTestPort = document.getElementById('latencyTestPort');\n                const randomIPCount = document.getElementById('randomIPCount');\n                const cfRandomDiv = document.getElementById('cfRandomDiv');\n                const randomCountDiv = document.getElementById('randomCountDiv');\n                const generateCFIPBtn = document.getElementById('generateCFIPBtn');\n                const fetchIPBtn = document.getElementById('fetchIPBtn');\n                \n                if (latencyTestInput) {\n                    const savedTestInput = localStorage.getItem('latencyTestInput');\n                    if (savedTestInput) latencyTestInput.value = savedTestInput;\n                    latencyTestInput.addEventListener('input', function() {\n                        localStorage.setItem('latencyTestInput', this.value);\n                    });\n                }\n                if (fetchURLInput) {\n                    const savedFetchURL = localStorage.getItem('fetchURLInput');\n                    if (savedFetchURL) fetchURLInput.value = savedFetchURL;\n                    fetchURLInput.addEventListener('input', function() {\n                        localStorage.setItem('fetchURLInput', this.value);\n                    });\n                }\n                if (latencyTestPort) {\n                    const savedPort = localStorage.getItem('latencyTestPort');\n                    if (savedPort) latencyTestPort.value = savedPort;\n                    latencyTestPort.addEventListener('input', function() {\n                        localStorage.setItem('latencyTestPort', this.value);\n                    });\n                }\n                if (randomIPCount) {\n                    const savedCount = localStorage.getItem('randomIPCount');\n                    if (savedCount) randomIPCount.value = savedCount;\n                    randomIPCount.addEventListener('input', function() {\n                        localStorage.setItem('randomIPCount', this.value);\n                    });\n                    // 初始化时，如果默认是隐藏的，则禁用输入框\n                    if (randomCountDiv && randomCountDiv.style.display === 'none') {\n                        randomIPCount.disabled = true;\n                    }\n                }\n                const testThreadsInput = document.getElementById('testThreads');\n                if (testThreadsInput) {\n                    const savedThreads = localStorage.getItem('testThreads');\n                    if (savedThreads) testThreadsInput.value = savedThreads;\n                    testThreadsInput.addEventListener('input', function() {\n                        localStorage.setItem('testThreads', this.value);\n                    });\n                }\n                if (ipSourceSelect) {\n                    const savedSource = localStorage.getItem('ipSourceSelect');\n                    const currentSource = savedSource || ipSourceSelect.value || 'manual';\n                    if (savedSource) {\n                        ipSourceSelect.value = savedSource;\n                    }\n                    manualInputDiv.style.display = currentSource === 'manual' ? 'block' : 'none';\n                    urlFetchDiv.style.display = currentSource === 'urlFetch' ? 'block' : 'none';\n                    cfRandomDiv.style.display = currentSource === 'cfRandom' ? 'block' : 'none';\n                    randomCountDiv.style.display = currentSource === 'cfRandom' ? 'block' : 'none';\n                    // 当隐藏时禁用输入框，避免表单验证错误\n                    if (randomIPCount) {\n                        randomIPCount.disabled = currentSource !== 'cfRandom';\n                    }\n                }\n                \n                const CF_CIDR_LIST = [\n                    '173.245.48.0/20', '103.21.244.0/22', '103.22.200.0/22', '103.31.4.0/22',\n                    '141.101.64.0/18', '108.162.192.0/18', '190.93.240.0/20', '188.114.96.0/20',\n                    '197.234.240.0/22', '198.41.128.0/17', '162.158.0.0/15', '104.16.0.0/13',\n                    '104.24.0.0/14', '172.64.0.0/13', '131.0.72.0/22'\n                ];\n                \n                function generateRandomIPFromCIDR(cidr) {\n                    const [baseIP, prefixLength] = cidr.split('/');\n                    const prefix = parseInt(prefixLength);\n                    const hostBits = 32 - prefix;\n                    const ipParts = baseIP.split('.').map(p => parseInt(p));\n                    const ipInt = (ipParts[0] << 24) | (ipParts[1] << 16) | (ipParts[2] << 8) | ipParts[3];\n                    const randomOffset = Math.floor(Math.random() * Math.pow(2, hostBits));\n                    const mask = (0xFFFFFFFF << hostBits) >>> 0;\n                    const randomIP = (((ipInt & mask) >>> 0) + randomOffset) >>> 0;\n                    return [(randomIP >>> 24) & 0xFF, (randomIP >>> 16) & 0xFF, (randomIP >>> 8) & 0xFF, randomIP & 0xFF].join('.');\n                }\n                \n                function generateCFRandomIPs(count, port) {\n                    const ips = [];\n                    for (let i = 0; i < count; i++) {\n                        const cidr = CF_CIDR_LIST[Math.floor(Math.random() * CF_CIDR_LIST.length)];\n                        const ip = generateRandomIPFromCIDR(cidr);\n                        ips.push(ip + ':' + port);\n                    }\n                    return ips;\n                }\n                \n                if (ipSourceSelect) {\n                    ipSourceSelect.addEventListener('change', function() {\n                        const value = this.value;\n                        localStorage.setItem('ipSourceSelect', value);\n                        manualInputDiv.style.display = value === 'manual' ? 'block' : 'none';\n                        urlFetchDiv.style.display = value === 'urlFetch' ? 'block' : 'none';\n                        cfRandomDiv.style.display = value === 'cfRandom' ? 'block' : 'none';\n                        randomCountDiv.style.display = value === 'cfRandom' ? 'block' : 'none';\n                        // 当隐藏时禁用输入框，避免表单验证错误\n                        if (randomIPCount) {\n                            randomIPCount.disabled = value !== 'cfRandom';\n                        }\n                    });\n                }\n                \n                if (generateCFIPBtn) {\n                    generateCFIPBtn.addEventListener('click', function() {\n                        const count = parseInt(document.getElementById('randomIPCount').value) || 20;\n                        const port = document.getElementById('latencyTestPort').value || '443';\n                        const ips = generateCFRandomIPs(count, port);\n                        document.getElementById('latencyTestInput').value = ips.join(',');\n                        manualInputDiv.style.display = 'block';\n                        showStatus('${isFarsi ? 'تولید شد' : '已生成'} ' + count + ' ${isFarsi ? 'IP تصادفی CF' : '个CF随机IP'}', 'success');\n                    });\n                }\n                \n                if (fetchIPBtn) {\n                    fetchIPBtn.addEventListener('click', async function() {\n                        const urlInput = document.getElementById('fetchURLInput');\n                        const fetchUrl = urlInput.value.trim();\n                        if (!fetchUrl) {\n                            alert('${isFarsi ? 'لطفا URL را وارد کنید' : '请输入URL'}');\n                            return;\n                        }\n                        \n                        fetchIPBtn.disabled = true;\n                        fetchIPBtn.textContent = '${isFarsi ? 'در حال دریافت...' : '获取中...'}';\n                        \n                        try {\n                            // 支持多个 URL（逗号分隔）以及返回内容中逗号分隔的多个 IP/节点\n                            const urlList = Array.from(new Set(\n                                fetchUrl.split(',').map(u => u.trim()).filter(u => u)\n                            ));\n                            \n                            const allItems = [];\n                            \n                            for (const u of urlList) {\n                                const response = await fetch(u);\n                                if (!response.ok) {\n                                    throw new Error('HTTP ' + response.status + ' @ ' + u);\n                                }\n                                const text = await response.text();\n                                \n                                // 先按行分割，再在每行内按逗号分割，兼容“多行 + 逗号分隔”两种格式\n                                const perUrlItems = text\n                                    .split(/\\\\r?\\\\n/)\n                                    .map(l => l.trim())\n                                    .filter(l => l && !l.startsWith('#'))\n                                    .flatMap(l => l.split(',').map(p => p.trim()).filter(p => p));\n                                \n                                allItems.push(...perUrlItems);\n                            }\n                            \n                            if (allItems.length > 0) {\n                                document.getElementById('latencyTestInput').value = allItems.join(',');\n                                manualInputDiv.style.display = 'block';\n                                showStatus('${isFarsi ? 'دریافت شد' : '已获取'} ' + allItems.length + ' ${isFarsi ? 'IP' : '个IP'}', 'success');\n                            } else {\n                                showStatus('${isFarsi ? 'داده‌ای یافت نشد' : '未获取到数据'}', 'error');\n                            }\n                        } catch (err) {\n                            showStatus('${isFarsi ? 'خطا در دریافت' : '获取失败'}: ' + err.message, 'error');\n                        } finally {\n                            fetchIPBtn.disabled = false;\n                            fetchIPBtn.textContent = '⬇ ${isFarsi ? 'دریافت IP' : '获取IP'}';\n                        }\n                    });\n                }\n                \n                if (startTestBtn) {\n                    startTestBtn.addEventListener('click', async function() {\n                        const inputField = document.getElementById('latencyTestInput');\n                        const portField = document.getElementById('latencyTestPort');\n                        const threadsField = document.getElementById('testThreads');\n                        const inputValue = inputField.value.trim();\n                        const defaultPort = portField.value || '443';\n                        const threads = parseInt(threadsField.value) || 5;\n                        \n                        if (!inputValue) {\n                            showStatus('${isFarsi ? 'لطفا IP یا دامنه وارد کنید' : '请输入IP或域名'}', 'error');\n                            return;\n                        }\n                        \n                        const targets = inputValue.split(',').map(t => t.trim()).filter(t => t);\n                        if (targets.length === 0) return;\n                        \n                        startTestBtn.style.display = 'none';\n                        stopTestBtn.style.display = 'inline-block';\n                        testStatus.style.display = 'block';\n                        testResultsDiv.style.display = 'block';\n                        resultsList.innerHTML = '';\n                        testResults = [];\n                        if (cityFilterContainer) {\n                            cityFilterContainer.style.display = 'none';\n                        }\n                        \n                        testAbortController = new AbortController();\n                        \n                        let completed = 0;\n                        const total = targets.length;\n                        \n                        function parseTarget(target) {\n                            let host = target;\n                            let port = defaultPort;\n                            let nodeName = '';\n                            \n                            if (target.includes('#')) {\n                                const parts = target.split('#');\n                                nodeName = parts[1] || '';\n                                host = parts[0];\n                            }\n                            \n                            if (host.includes(':') && !host.startsWith('[')) {\n                                const lastColon = host.lastIndexOf(':');\n                                const possiblePort = host.substring(lastColon + 1);\n                                if (/^[0-9]+$/.test(possiblePort)) {\n                                    port = possiblePort;\n                                    host = host.substring(0, lastColon);\n                                }\n                            } else if (host.includes(']:')) {\n                                const parts = host.split(']:');\n                                host = parts[0] + ']';\n                                port = parts[1];\n                            }\n                            return { host, port, nodeName };\n                        }\n                        \n                        function renderResult(result, index, shouldShow = true) {\n                            // 只展示在线优选成功的结果，失败/超时的不再显示\n                            if (!result.success) {\n                                return null;\n                            }\n                            \n                            const resultItem = document.createElement('div');\n                            resultItem.style.cssText = 'display: flex; align-items: center; padding: 8px; border-bottom: 1px solid #003300; gap: 10px;';\n                            resultItem.dataset.index = index;\n                            resultItem.dataset.colo = result.colo || '';\n                            if (!shouldShow) {\n                                resultItem.style.display = 'none';\n                            }\n                            \n                            const checkbox = document.createElement('input');\n                            checkbox.type = 'checkbox';\n                            checkbox.checked = true;\n                            checkbox.disabled = false;\n                            checkbox.dataset.index = index;\n                            checkbox.style.cssText = 'width: 18px; height: 18px; cursor: pointer;';\n                            \n                            const info = document.createElement('div');\n                            info.style.cssText = 'flex: 1; font-family: monospace; font-size: 13px;';\n                            \n                            const coloName = result.colo ? getColoName(result.colo) : '';\n                            const coloDisplay = coloName ? ' <span style=\"color: #00aaff;\">[' + coloName + ']</span>' : '';\n                            info.innerHTML = '<span style=\"color: #00ff00;\">' + result.host + ':' + result.port + '</span>' + coloDisplay + ' <span style=\"color: #ffff00;\">' + result.latency + 'ms</span>';\n                            \n                            resultItem.appendChild(checkbox);\n                            resultItem.appendChild(info);\n                            resultsList.appendChild(resultItem);\n                            return resultItem;\n                        }\n                        \n                        async function testOne(target) {\n                            if (testAbortController.signal.aborted) return null;\n                            const { host, port, nodeName } = parseTarget(target);\n                            const result = await testLatency(host, port, testAbortController.signal);\n                            result.host = host;\n                            result.port = port;\n                            result.nodeName = (result.success && result.colo) ? (nodeName || ('CF-' + result.colo)) : (nodeName || host);\n                            return result;\n                        }\n                        \n                        for (let i = 0; i < total; i += threads) {\n                            if (testAbortController.signal.aborted) break;\n                            \n                            const batch = targets.slice(i, Math.min(i + threads, total));\n                            testStatus.textContent = '${isFarsi ? 'در حال تست' : '测试中'}: ' + (i + 1) + '-' + Math.min(i + threads, total) + '/' + total + ' (${isFarsi ? 'رشته‌ها' : '线程'}: ' + threads + ')';\n                            \n                            const results = await Promise.all(batch.map(t => testOne(t)));\n                            \n                            for (const result of results) {\n                                if (result) {\n                                    const idx = testResults.length;\n                                    testResults.push(result);\n                                    renderResult(result, idx);\n                                    completed++;\n                                }\n                            }\n                        }\n                        \n                        testStatus.textContent = '${isFarsi ? 'تست کامل شد' : '测试完成'}: ' + completed + '/' + total;\n                        startTestBtn.style.display = 'inline-block';\n                        stopTestBtn.style.display = 'none';\n                        \n                        // 更新城市选择器\n                        updateCityFilter();\n                    });\n                }\n                \n                if (stopTestBtn) {\n                    stopTestBtn.addEventListener('click', function() {\n                        if (testAbortController) {\n                            testAbortController.abort();\n                        }\n                        startTestBtn.style.display = 'inline-block';\n                        stopTestBtn.style.display = 'none';\n                        testStatus.textContent = '${isFarsi ? 'تست متوقف شد' : '测试已停止'}';\n                    });\n                }\n                \n                if (selectAllBtn) {\n                    selectAllBtn.addEventListener('click', function() {\n                        const checkboxes = resultsList.querySelectorAll('input[type=\"checkbox\"]:not(:disabled)');\n                        checkboxes.forEach(cb => cb.checked = true);\n                    });\n                }\n                \n                if (deselectAllBtn) {\n                    deselectAllBtn.addEventListener('click', function() {\n                        const checkboxes = resultsList.querySelectorAll('input[type=\"checkbox\"]');\n                        checkboxes.forEach(cb => cb.checked = false);\n                    });\n                }\n                \n                // 获取选中项的通用函数\n                function getSelectedItems() {\n                    const checkboxes = resultsList.querySelectorAll('input[type=\"checkbox\"]:checked');\n                    if (checkboxes.length === 0) {\n                        showStatus('${isFarsi ? 'لطفا حداقل یک مورد انتخاب کنید' : '请至少选择一项'}', 'error');\n                        return null;\n                    }\n                    \n                    const selectedItems = [];\n                    checkboxes.forEach(cb => {\n                        const idx = parseInt(cb.dataset.index);\n                        const result = testResults[idx];\n                        if (result && result.success) {\n                            const coloName = result.colo ? getColoName(result.colo) : result.nodeName;\n                            const itemStr = result.host + ':' + result.port + '#' + coloName;\n                            selectedItems.push(itemStr);\n                        }\n                    });\n                    \n                    return selectedItems;\n                }\n                \n                // 覆盖添加\n                if (overwriteSelectedBtn) {\n                    overwriteSelectedBtn.addEventListener('click', async function() {\n                        const selectedItems = getSelectedItems();\n                        if (!selectedItems || selectedItems.length === 0) return;\n                        \n                        const yxInput = document.getElementById('yx');\n                        const newValue = selectedItems.join(',');\n                        yxInput.value = newValue;\n                        \n                        overwriteSelectedBtn.disabled = true;\n                        appendSelectedBtn.disabled = true;\n                        overwriteSelectedBtn.textContent = '${isFarsi ? 'در حال ذخیره...' : '保存中...'}';\n                        \n                        try {\n                            const configData = {\n                                customIP: document.getElementById('customIP').value,\n                                yx: newValue,\n                                yxURL: document.getElementById('yxURL').value,\n                                socksConfig: document.getElementById('socksConfig').value\n                            };\n                            await saveConfig(configData);\n                            showStatus('${isFarsi ? 'موفقیت‌آمیز بود' : '已覆盖'} ' + selectedItems.length + ' ${isFarsi ? 'مورد و ذخیره شد' : '项并已保存'}', 'success');\n                        } catch (err) {\n                            showStatus('${isFarsi ? 'خطا در ذخیره' : '保存失败'}: ' + err.message, 'error');\n                        } finally {\n                            overwriteSelectedBtn.disabled = false;\n                            appendSelectedBtn.disabled = false;\n                            overwriteSelectedBtn.textContent = '${isFarsi ? '覆盖添加' : '覆盖添加'}';\n                        }\n                    });\n                }\n                \n                // 追加添加\n                if (appendSelectedBtn) {\n                    appendSelectedBtn.addEventListener('click', async function() {\n                        const selectedItems = getSelectedItems();\n                        if (!selectedItems || selectedItems.length === 0) return;\n                        \n                        const yxInput = document.getElementById('yx');\n                        const currentValue = yxInput.value.trim();\n                        const newItems = selectedItems.join(',');\n                        const newValue = currentValue ? (currentValue + ',' + newItems) : newItems;\n                        yxInput.value = newValue;\n                        \n                        overwriteSelectedBtn.disabled = true;\n                        appendSelectedBtn.disabled = true;\n                        appendSelectedBtn.textContent = '${isFarsi ? 'در حال ذخیره...' : '保存中...'}';\n                        \n                        try {\n                            const configData = {\n                                customIP: document.getElementById('customIP').value,\n                                yx: newValue,\n                                yxURL: document.getElementById('yxURL').value,\n                                socksConfig: document.getElementById('socksConfig').value\n                            };\n                            await saveConfig(configData);\n                            showStatus('${isFarsi ? 'موفقیت‌آمیز بود' : '已追加'} ' + selectedItems.length + ' ${isFarsi ? 'مورد و ذخیره شد' : '项并已保存'}', 'success');\n                        } catch (err) {\n                            showStatus('${isFarsi ? 'خطا در ذخیره' : '保存失败'}: ' + err.message, 'error');\n                        } finally {\n                            overwriteSelectedBtn.disabled = false;\n                            appendSelectedBtn.disabled = false;\n                            appendSelectedBtn.textContent = '${isFarsi ? '追加添加' : '追加添加'}';\n                        }\n                    });\n                }\n                \n                function ipToHex(ip) {\n                    const parts = ip.split('.');\n                    if (parts.length !== 4) return null;\n                    let hex = '';\n                    for (let i = 0; i < 4; i++) {\n                        const num = parseInt(parts[i]);\n                        if (isNaN(num) || num < 0 || num > 255) return null;\n                        hex += num.toString(16).padStart(2, '0');\n                    }\n                    return hex;\n                }\n                \n                const coloMap = {\n                    'SJC': '🇺🇸 圣何塞', 'LAX': '🇺🇸 洛杉矶', 'SEA': '🇺🇸 西雅图', 'SFO': '🇺🇸 旧金山', 'DFW': '🇺🇸 达拉斯',\n                    'ORD': '🇺🇸 芝加哥', 'IAD': '🇺🇸 华盛顿', 'ATL': '🇺🇸 亚特兰大', 'MIA': '🇺🇸 迈阿密', 'DEN': '🇺🇸 丹佛',\n                    'PHX': '🇺🇸 凤凰城', 'BOS': '🇺🇸 波士顿', 'EWR': '🇺🇸 纽瓦克', 'JFK': '🇺🇸 纽约', 'LAS': '🇺🇸 拉斯维加斯',\n                    'MSP': '🇺🇸 明尼阿波利斯', 'DTW': '🇺🇸 底特律', 'PHL': '🇺🇸 费城', 'CLT': '🇺🇸 夏洛特', 'SLC': '🇺🇸 盐湖城',\n                    'PDX': '🇺🇸 波特兰', 'SAN': '🇺🇸 圣地亚哥', 'TPA': '🇺🇸 坦帕', 'IAH': '🇺🇸 休斯顿', 'MCO': '🇺🇸 奥兰多',\n                    'AUS': '🇺🇸 奥斯汀', 'BNA': '🇺🇸 纳什维尔', 'RDU': '🇺🇸 罗利', 'IND': '🇺🇸 印第安纳波利斯', 'CMH': '🇺🇸 哥伦布',\n                    'MCI': '🇺🇸 堪萨斯城', 'OMA': '🇺🇸 奥马哈', 'ABQ': '🇺🇸 阿尔伯克基', 'OKC': '🇺🇸 俄克拉荷马城', 'MEM': '🇺🇸 孟菲斯',\n                    'JAX': '🇺🇸 杰克逊维尔', 'RIC': '🇺🇸 里士满', 'BUF': '🇺🇸 布法罗', 'PIT': '🇺🇸 匹兹堡', 'CLE': '🇺🇸 克利夫兰',\n                    'CVG': '🇺🇸 辛辛那提', 'MKE': '🇺🇸 密尔沃基', 'STL': '🇺🇸 圣路易斯', 'SAT': '🇺🇸 圣安东尼奥', 'HNL': '🇺🇸 檀香山',\n                    'ANC': '🇺🇸 安克雷奇', 'SMF': '🇺🇸 萨克拉门托', 'ONT': '🇺🇸 安大略', 'OAK': '🇺🇸 奥克兰',\n                    'HKG': '🇭🇰 香港', 'TPE': '🇹🇼 台北', 'TSA': '🇹🇼 台北松山', 'KHH': '🇹🇼 高雄',\n                    'NRT': '🇯🇵 东京成田', 'HND': '🇯🇵 东京羽田', 'KIX': '🇯🇵 大阪关西', 'ITM': '🇯🇵 大阪伊丹', 'NGO': '🇯🇵 名古屋',\n                    'FUK': '🇯🇵 福冈', 'CTS': '🇯🇵 札幌', 'OKA': '🇯🇵 冲绳',\n                    'ICN': '🇰🇷 首尔仁川', 'GMP': '🇰🇷 首尔金浦', 'PUS': '🇰🇷 釜山',\n                    'SIN': '🇸🇬 新加坡', 'BKK': '🇹🇭 曼谷', 'DMK': '🇹🇭 曼谷廊曼', 'KUL': '🇲🇾 吉隆坡', 'CGK': '🇮🇩 雅加达',\n                    'MNL': '🇵🇭 马尼拉', 'CEB': '🇵🇭 宿务', 'HAN': '🇻🇳 河内', 'SGN': '🇻🇳 胡志明', 'DAD': '🇻🇳 岘港',\n                    'RGN': '🇲🇲 仰光', 'PNH': '🇰🇭 金边', 'REP': '🇰🇭 暹粒', 'VTE': '🇱🇦 万象',\n                    'BOM': '🇮🇳 孟买', 'DEL': '🇮🇳 新德里', 'MAA': '🇮🇳 金奈', 'BLR': '🇮🇳 班加罗尔', 'CCU': '🇮🇳 加尔各答',\n                    'HYD': '🇮🇳 海得拉巴', 'AMD': '🇮🇳 艾哈迈达巴德', 'COK': '🇮🇳 科钦', 'PNQ': '🇮🇳 浦那', 'GOI': '🇮🇳 果阿',\n                    'CMB': '🇱🇰 科伦坡', 'DAC': '🇧🇩 达卡', 'KTM': '🇳🇵 加德满都', 'ISB': '🇵🇰 伊斯兰堡', 'KHI': '🇵🇰 卡拉奇', 'LHE': '🇵🇰 拉合尔',\n                    'LHR': '🇬🇧 伦敦希思罗', 'LGW': '🇬🇧 伦敦盖特威克', 'STN': '🇬🇧 伦敦斯坦斯特德', 'LTN': '🇬🇧 伦敦卢顿', 'MAN': '🇬🇧 曼彻斯特', 'EDI': '🇬🇧 爱丁堡', 'BHX': '🇬🇧 伯明翰',\n                    'CDG': '🇫🇷 巴黎戴高乐', 'ORY': '🇫🇷 巴黎奥利', 'MRS': '🇫🇷 马赛', 'LYS': '🇫🇷 里昂', 'NCE': '🇫🇷 尼斯',\n                    'FRA': '🇩🇪 法兰克福', 'MUC': '🇩🇪 慕尼黑', 'TXL': '🇩🇪 柏林', 'BER': '🇩🇪 柏林勃兰登堡', 'HAM': '🇩🇪 汉堡', 'DUS': '🇩🇪 杜塞尔多夫', 'CGN': '🇩🇪 科隆', 'STR': '🇩🇪 斯图加特',\n                    'AMS': '🇳🇱 阿姆斯特丹', 'BRU': '🇧🇪 布鲁塞尔', 'LUX': '🇱🇺 卢森堡',\n                    'ZRH': '🇨🇭 苏黎世', 'GVA': '🇨🇭 日内瓦', 'BSL': '🇨🇭 巴塞尔',\n                    'VIE': '🇦🇹 维也纳', 'PRG': '🇨🇿 布拉格', 'BUD': '🇭🇺 布达佩斯', 'WAW': '🇵🇱 华沙', 'KRK': '🇵🇱 克拉科夫',\n                    'MXP': '🇮🇹 米兰马尔彭萨', 'LIN': '🇮🇹 米兰利纳特', 'FCO': '🇮🇹 罗马', 'VCE': '🇮🇹 威尼斯', 'NAP': '🇮🇹 那不勒斯', 'FLR': '🇮🇹 佛罗伦萨', 'BGY': '🇮🇹 贝加莫',\n                    'MAD': '🇪🇸 马德里', 'BCN': '🇪🇸 巴塞罗那', 'PMI': '🇪🇸 帕尔马', 'AGP': '🇪🇸 马拉加', 'VLC': '🇪🇸 瓦伦西亚', 'SVQ': '🇪🇸 塞维利亚', 'BIO': '🇪🇸 毕尔巴鄂',\n                    'LIS': '🇵🇹 里斯本', 'OPO': '🇵🇹 波尔图', 'FAO': '🇵🇹 法鲁',\n                    'DUB': '🇮🇪 都柏林', 'CPH': '🇩🇰 哥本哈根', 'ARN': '🇸🇪 斯德哥尔摩', 'GOT': '🇸🇪 哥德堡',\n                    'OSL': '🇳🇴 奥斯陆', 'BGO': '🇳🇴 卑尔根', 'HEL': '🇫🇮 赫尔辛基', 'RIX': '🇱🇻 里加', 'TLL': '🇪🇪 塔林', 'VNO': '🇱🇹 维尔纽斯',\n                    'ATH': '🇬🇷 雅典', 'SKG': '🇬🇷 塞萨洛尼基', 'SOF': '🇧🇬 索非亚', 'OTP': '🇷🇴 布加勒斯特', 'BEG': '🇷🇸 贝尔格莱德', 'ZAG': '🇭🇷 萨格勒布', 'LJU': '🇸🇮 卢布尔雅那',\n                    'KBP': '🇺🇦 基辅', 'IEV': '🇺🇦 基辅茹良尼', 'ODS': '🇺🇦 敖德萨',\n                    'SVO': '🇷🇺 莫斯科谢列梅捷沃', 'DME': '🇷🇺 莫斯科多莫杰多沃', 'VKO': '🇷🇺 莫斯科伏努科沃', 'LED': '🇷🇺 圣彼得堡',\n                    'IST': '🇹🇷 伊斯坦布尔', 'SAW': '🇹🇷 伊斯坦布尔萨比哈', 'ESB': '🇹🇷 安卡拉', 'AYT': '🇹🇷 安塔利亚', 'ADB': '🇹🇷 伊兹密尔',\n                    'TLV': '🇮🇱 特拉维夫', 'AMM': '🇯🇴 安曼', 'BEY': '🇱🇧 贝鲁特', 'BAH': '🇧🇭 巴林', 'KWI': '🇰🇼 科威特',\n                    'DXB': '🇦🇪 迪拜', 'AUH': '🇦🇪 阿布扎比', 'SHJ': '🇦🇪 沙迦', 'DOH': '🇶🇦 多哈', 'MCT': '🇴🇲 马斯喀特',\n                    'RUH': '🇸🇦 利雅得', 'JED': '🇸🇦 吉达', 'DMM': '🇸🇦 达曼',\n                    'CAI': '🇪🇬 开罗', 'HBE': '🇪🇬 亚历山大', 'SSH': '🇪🇬 沙姆沙伊赫',\n                    'CMN': '🇲🇦 卡萨布兰卡', 'RAK': '🇲🇦 马拉喀什', 'TUN': '🇹🇳 突尼斯', 'ALG': '🇩🇿 阿尔及尔',\n                    'LOS': '🇳🇬 拉各斯', 'ABV': '🇳🇬 阿布贾', 'ACC': '🇬🇭 阿克拉', 'NBO': '🇰🇪 内罗毕', 'MBA': '🇰🇪 蒙巴萨', 'ADD': '🇪🇹 亚的斯亚贝巴', 'DAR': '🇹🇿 达累斯萨拉姆',\n                    'JNB': '🇿🇦 约翰内斯堡', 'CPT': '🇿🇦 开普敦', 'DUR': '🇿🇦 德班', 'HRE': '🇿🇼 哈拉雷', 'LUN': '🇿🇲 卢萨卡',\n                    'MRU': '🇲🇺 毛里求斯', 'SEZ': '🇸🇨 塞舌尔',\n                    'SYD': '🇦🇺 悉尼', 'MEL': '🇦🇺 墨尔本', 'BNE': '🇦🇺 布里斯班', 'PER': '🇦🇺 珀斯', 'ADL': '🇦🇺 阿德莱德', 'CBR': '🇦🇺 堪培拉', 'OOL': '🇦🇺 黄金海岸', 'CNS': '🇦🇺 凯恩斯',\n                    'AKL': '🇳🇿 奥克兰', 'WLG': '🇳🇿 惠灵顿', 'CHC': '🇳🇿 基督城', 'ZQN': '🇳🇿 皇后镇',\n                    'NAN': '🇫🇯 楠迪', 'PPT': '🇵🇫 帕皮提', 'GUM': '🇬🇺 关岛',\n                    'GRU': '🇧🇷 圣保罗瓜鲁柳斯', 'CGH': '🇧🇷 圣保罗孔戈尼亚斯', 'GIG': '🇧🇷 里约热内卢', 'BSB': '🇧🇷 巴西利亚', 'CNF': '🇧🇷 贝洛奥里藏特', 'POA': '🇧🇷 阿雷格里港', 'CWB': '🇧🇷 库里蒂巴', 'FOR': '🇧🇷 福塔莱萨', 'REC': '🇧🇷 累西腓', 'SSA': '🇧🇷 萨尔瓦多',\n                    'EZE': '🇦🇷 布宜诺斯艾利斯', 'AEP': '🇦🇷 布宜诺斯艾利斯城', 'COR': '🇦🇷 科尔多瓦', 'MDZ': '🇦🇷 门多萨',\n                    'SCL': '🇨🇱 圣地亚哥', 'LIM': '🇵🇪 利马', 'BOG': '🇨🇴 波哥大', 'MDE': '🇨🇴 麦德林', 'CLO': '🇨🇴 卡利',\n                    'UIO': '🇪🇨 基多', 'GYE': '🇪🇨 瓜亚基尔', 'CCS': '🇻🇪 加拉加斯', 'MVD': '🇺🇾 蒙得维的亚', 'ASU': '🇵🇾 亚松森',\n                    'PTY': '🇵🇦 巴拿马城', 'SJO': '🇨🇷 圣何塞', 'GUA': '🇬🇹 危地马拉城', 'SAL': '🇸🇻 圣萨尔瓦多', 'TGU': '🇭🇳 特古西加尔巴', 'MGA': '🇳🇮 马那瓜', 'BZE': '🇧🇿 伯利兹城',\n                    'MEX': '🇲🇽 墨西哥城', 'GDL': '🇲🇽 瓜达拉哈拉', 'MTY': '🇲🇽 蒙特雷', 'CUN': '🇲🇽 坎昆', 'TIJ': '🇲🇽 蒂华纳', 'SJD': '🇲🇽 圣何塞德尔卡沃',\n                    'YYZ': '🇨🇦 多伦多', 'YVR': '🇨🇦 温哥华', 'YUL': '🇨🇦 蒙特利尔', 'YYC': '🇨🇦 卡尔加里', 'YEG': '🇨🇦 埃德蒙顿', 'YOW': '🇨🇦 渥太华', 'YWG': '🇨🇦 温尼伯', 'YHZ': '🇨🇦 哈利法克斯',\n                    'HAV': '🇨🇺 哈瓦那', 'SJU': '🇵🇷 圣胡安', 'SDQ': '🇩🇴 圣多明各', 'PAP': '🇭🇹 太子港', 'KIN': '🇯🇲 金斯顿', 'NAS': '🇧🇸 拿骚', 'MBJ': '🇯🇲 蒙特哥贝'\n                };\n                \n                function getColoName(colo) {\n                    return coloMap[colo] || colo;\n                }\n                \n                // 城市筛选相关函数\n                const cityFilterContainer = document.getElementById('cityFilterContainer');\n                const cityCheckboxesContainer = document.getElementById('cityCheckboxesContainer');\n                \n                function updateCityFilter() {\n                    if (!cityFilterContainer || !cityCheckboxesContainer) return;\n                    \n                    // 从测试结果中提取所有可用的城市\n                    const cityMap = new Map();\n                    testResults.forEach((result, index) => {\n                        if (result.success && result.colo) {\n                            const colo = result.colo;\n                            if (!cityMap.has(colo)) {\n                                cityMap.set(colo, {\n                                    colo: colo,\n                                    name: getColoName(colo),\n                                    count: 0\n                                });\n                            }\n                            cityMap.get(colo).count++;\n                        }\n                    });\n                    \n                    if (cityMap.size === 0) {\n                        cityFilterContainer.style.display = 'none';\n                        return;\n                    }\n                    \n                    cityFilterContainer.style.display = 'block';\n                    cityCheckboxesContainer.innerHTML = '';\n                    \n                    // 按城市名称排序\n                    const cities = Array.from(cityMap.values()).sort((a, b) => a.name.localeCompare(b.name));\n                    \n                    cities.forEach(city => {\n                        const label = document.createElement('label');\n                        label.style.cssText = 'display: inline-flex; align-items: center; cursor: pointer; color: #00ff00; font-size: 0.85rem; padding: 4px 8px; background: rgba(0, 40, 0, 0.4); border: 1px solid #00aa00; border-radius: 4px;';\n                        \n                        const checkbox = document.createElement('input');\n                        checkbox.type = 'checkbox';\n                        checkbox.value = city.colo;\n                        checkbox.checked = true;\n                        checkbox.dataset.colo = city.colo;\n                        checkbox.style.cssText = 'margin-right: 6px; width: 16px; height: 16px; cursor: pointer;';\n                        \n                        const span = document.createElement('span');\n                        span.textContent = city.name + ' (' + city.count + ')';\n                        \n                        label.appendChild(checkbox);\n                        label.appendChild(span);\n                        cityCheckboxesContainer.appendChild(label);\n                        \n                        checkbox.addEventListener('change', filterResultsByCity);\n                    });\n                    \n                    // 监听筛选模式变化\n                    const filterModeRadios = document.querySelectorAll('input[name=\"cityFilterMode\"]');\n                    filterModeRadios.forEach(radio => {\n                        radio.addEventListener('change', function() {\n                            if (this.value === 'all') {\n                                // 切换到\"全部城市\"模式时，自动选中所有城市复选框\n                                const cityCheckboxes = cityCheckboxesContainer.querySelectorAll('input[type=\"checkbox\"]');\n                                cityCheckboxes.forEach(cb => {\n                                    cb.checked = true;\n                                    cb.disabled = false;\n                                });\n                            }\n                            filterResultsByCity();\n                        });\n                    });\n                }\n                \n                function filterResultsByCity() {\n                    if (!resultsList || !cityCheckboxesContainer) return;\n                    \n                    const filterMode = document.querySelector('input[name=\"cityFilterMode\"]:checked')?.value || 'all';\n                    const resultItems = resultsList.querySelectorAll('[data-index]');\n                    const cityCheckboxes = cityCheckboxesContainer.querySelectorAll('input[type=\"checkbox\"]');\n                    \n                    if (filterMode === 'fastest10') {\n                        // 只选择最快的10个\n                        const sortedResults = testResults\n                            .map((result, index) => ({ result, index }))\n                            .filter(item => item.result.success)\n                            .sort((a, b) => a.result.latency - b.result.latency)\n                            .slice(0, 10);\n                        \n                        const fastestIndices = new Set(sortedResults.map(item => item.index));\n                        \n                        resultItems.forEach(item => {\n                            const index = parseInt(item.dataset.index);\n                            const checkbox = item.querySelector('input[type=\"checkbox\"]');\n                            if (fastestIndices.has(index)) {\n                                item.style.display = 'flex';\n                                if (checkbox) checkbox.checked = true;\n                            } else {\n                                item.style.display = 'none';\n                                if (checkbox) checkbox.checked = false;\n                            }\n                        });\n                        \n                        // 禁用城市复选框\n                        cityCheckboxes.forEach(cb => cb.disabled = true);\n                    } else {\n                        // 根据选中的城市筛选\n                        const selectedCities = new Set();\n                        cityCheckboxes.forEach(cb => {\n                            if (cb.checked) {\n                                selectedCities.add(cb.value);\n                            }\n                        });\n                        \n                        // 如果所有城市都被选中（或没有选中任何城市），显示所有结果\n                        const allChecked = cityCheckboxes.length > 0 && selectedCities.size === cityCheckboxes.length;\n                        const noneChecked = selectedCities.size === 0;\n                        \n                        resultItems.forEach(item => {\n                            const colo = item.dataset.colo || '';\n                            const checkbox = item.querySelector('input[type=\"checkbox\"]');\n                            if (allChecked || noneChecked || selectedCities.has(colo)) {\n                                item.style.display = 'flex';\n                                // 同步更新结果项复选框的选中状态\n                                if (checkbox) {\n                                    if (allChecked) {\n                                        // 所有城市都选中时，所有结果项复选框都选中\n                                        checkbox.checked = true;\n                                    } else if (noneChecked) {\n                                        // 没有选中任何城市时，所有结果项复选框都取消选中\n                                        checkbox.checked = false;\n                                    } else {\n                                        // 根据城市选择状态同步复选框\n                                        checkbox.checked = selectedCities.has(colo);\n                                    }\n                                }\n                            } else {\n                                item.style.display = 'none';\n                                // 取消选中隐藏的结果项复选框\n                                if (checkbox) {\n                                    checkbox.checked = false;\n                                }\n                            }\n                        });\n                        \n                        // 启用城市复选框\n                        cityCheckboxes.forEach(cb => cb.disabled = false);\n                    }\n                }\n                \n                async function testLatency(host, port, signal) {\n                    const timeout = 8000;\n                    let colo = '';\n                    let testUrl = '';\n                    \n                    try {\n                        const controller = new AbortController();\n                        const timeoutId = setTimeout(() => controller.abort(), timeout);\n                        \n                        if (signal) {\n                            signal.addEventListener('abort', () => controller.abort());\n                        }\n                        \n                        const cleanHost = host.replace(/^\\\\[|\\\\]$/g, '');\n                        const hexIP = ipToHex(cleanHost);\n                        const testDomain = hexIP ? (hexIP + '.nip.lfree.org') : (cleanHost + '.nip.lfree.org');\n                        testUrl = 'https://' + testDomain + ':' + port + '/';\n                        \n                        console.log('[LatencyTest] Testing:', testUrl, 'Original:', host + ':' + port, 'HexIP:', hexIP);\n                        \n                        const firstStart = Date.now();\n                        const response1 = await fetch(testUrl, { \n                            signal: controller.signal\n                        });\n                        const firstTime = Date.now() - firstStart;\n                        \n                        if (!response1.ok) {\n                            clearTimeout(timeoutId);\n                            return { success: false, latency: firstTime, error: 'HTTP ' + response1.status + ' ' + response1.statusText, colo: '', testUrl: testUrl };\n                        }\n                        \n                        try {\n                            const text = await response1.text();\n                            console.log('[LatencyTest] Response body:', text.substring(0, 200));\n                            const data = JSON.parse(text);\n                            if (data.colo) {\n                                colo = data.colo;\n                            }\n                        } catch (e) {\n                            console.log('[LatencyTest] Parse error:', e.message);\n                        }\n                        \n                        const secondStart = Date.now();\n                        const response2 = await fetch(testUrl, { \n                            signal: controller.signal\n                        });\n                        await response2.text();\n                        const latency = Date.now() - secondStart;\n                        \n                        clearTimeout(timeoutId);\n                        \n                        console.log('[LatencyTest] First:', firstTime + 'ms (DNS+TLS+RTT)', 'Second:', latency + 'ms (RTT only)');\n                        \n                        return { success: true, latency: latency, colo: colo, testUrl: testUrl };\n                    } catch (error) {\n                        const errorMsg = error.name === 'AbortError' ? '${isFarsi ? 'زمان تمام شد' : '超时'}' : error.message;\n                        console.log('[LatencyTest] Error:', errorMsg, 'URL:', testUrl);\n                        return { success: false, latency: -1, error: errorMsg, colo: '', testUrl: testUrl };\n                    }\n                }\n            });\n        </script>\n    </body>\n    </html>`;\n        \n        return new Response(pageHtml, { \n            status: 200, \n            headers: { 'Content-Type': 'text/html; charset=utf-8' } \n        });\n    }\n\n    async function parseTrojanHeader(buffer, ut) {\n        \n        const passwordToHash = tp || ut;\n        const sha224Password = await sha224Hash(passwordToHash);\n        \n        if (buffer.byteLength < 56) {\n            return {\n                hasError: true,\n                message: \"invalid \" + atob('dHJvamFu') + \" data - too short\"\n            };\n        }\n        let crLfIndex = 56;\n        if (new Uint8Array(buffer.slice(56, 57))[0] !== 0x0d || new Uint8Array(buffer.slice(57, 58))[0] !== 0x0a) {\n            return {\n                hasError: true,\n                message: \"invalid \" + atob('dHJvamFu') + \" header format (missing CR LF)\"\n            };\n        }\n        const password = new TextDecoder().decode(buffer.slice(0, crLfIndex));\n        if (password !== sha224Password) {\n            return {\n                hasError: true,\n                message: \"invalid \" + atob('dHJvamFu') + \" password\"\n            };\n        }\n\n        const socks5DataBuffer = buffer.slice(crLfIndex + 2);\n        if (socks5DataBuffer.byteLength < 6) {\n            return {\n                hasError: true,\n                message: atob('aW52YWxpZCBTT0NLUzUgcmVxdWVzdCBkYXRh')\n            };\n        }\n\n        const view = new DataView(socks5DataBuffer);\n        const cmd = view.getUint8(0);\n        if (cmd !== 1) {\n            return {\n                hasError: true,\n                message: \"unsupported command, only TCP (CONNECT) is allowed\"\n            };\n        }\n\n        const atype = view.getUint8(1);\n        let addressLength = 0;\n        let addressIndex = 2;\n        let address = \"\";\n        switch (atype) {\n            case 1:\n                addressLength = 4;\n                address = new Uint8Array(\n                socks5DataBuffer.slice(addressIndex, addressIndex + addressLength)\n                ).join(\".\");\n                break;\n            case 3:\n                addressLength = new Uint8Array(\n                socks5DataBuffer.slice(addressIndex, addressIndex + 1)\n                )[0];\n                addressIndex += 1;\n                address = new TextDecoder().decode(\n                socks5DataBuffer.slice(addressIndex, addressIndex + addressLength)\n                );\n                break;\n            case 4:\n                addressLength = 16;\n                const dataView = new DataView(socks5DataBuffer.slice(addressIndex, addressIndex + addressLength));\n                const ipv6 = [];\n                for (let i = 0; i < 8; i++) {\n                    ipv6.push(dataView.getUint16(i * 2).toString(16));\n                }\n                address = ipv6.join(\":\");\n                break;\n            default:\n                return {\n                    hasError: true,\n                    message: `invalid addressType is ${atype}`\n                };\n        }\n\n        if (!address) {\n            return {\n                hasError: true,\n                message: `address is empty, addressType is ${atype}`\n            };\n        }\n\n        const portIndex = addressIndex + addressLength;\n        const portBuffer = socks5DataBuffer.slice(portIndex, portIndex + 2);\n        const portRemote = new DataView(portBuffer).getUint16(0);\n        \n        return {\n            hasError: false,\n            addressRemote: address,\n            addressType: atype,\n            port: portRemote,\n            hostname: address,\n            rawClientData: socks5DataBuffer.slice(portIndex + 4)\n        };\n    }\n\n    async function sha224Hash(text) {\n        const encoder = new TextEncoder();\n        const data = encoder.encode(text);\n        \n        const K = [\n            0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,\n            0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,\n            0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,\n            0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,\n            0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,\n            0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,\n            0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,\n            0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2\n        ];\n        \n        let H = [\n            0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939,\n            0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4\n        ];\n        \n        const msgLen = data.length;\n        const bitLen = msgLen * 8;\n        const paddedLen = Math.ceil((msgLen + 9) / 64) * 64;\n        const padded = new Uint8Array(paddedLen);\n        padded.set(data);\n        padded[msgLen] = 0x80;\n        \n        const view = new DataView(padded.buffer);\n        view.setUint32(paddedLen - 4, bitLen, false);\n        \n        for (let chunk = 0; chunk < paddedLen; chunk += 64) {\n            const W = new Uint32Array(64);\n            \n            for (let i = 0; i < 16; i++) {\n                W[i] = view.getUint32(chunk + i * 4, false);\n            }\n            \n            for (let i = 16; i < 64; i++) {\n                const s0 = rightRotate(W[i - 15], 7) ^ rightRotate(W[i - 15], 18) ^ (W[i - 15] >>> 3);\n                const s1 = rightRotate(W[i - 2], 17) ^ rightRotate(W[i - 2], 19) ^ (W[i - 2] >>> 10);\n                W[i] = (W[i - 16] + s0 + W[i - 7] + s1) >>> 0;\n            }\n            \n            let [a, b, c, d, e, f, g, h] = H;\n            \n            for (let i = 0; i < 64; i++) {\n                const S1 = rightRotate(e, 6) ^ rightRotate(e, 11) ^ rightRotate(e, 25);\n                const ch = (e & f) ^ (~e & g);\n                const temp1 = (h + S1 + ch + K[i] + W[i]) >>> 0;\n                const S0 = rightRotate(a, 2) ^ rightRotate(a, 13) ^ rightRotate(a, 22);\n                const maj = (a & b) ^ (a & c) ^ (b & c);\n                const temp2 = (S0 + maj) >>> 0;\n                \n                h = g;\n                g = f;\n                f = e;\n                e = (d + temp1) >>> 0;\n                d = c;\n                c = b;\n                b = a;\n                a = (temp1 + temp2) >>> 0;\n            }\n            \n            H[0] = (H[0] + a) >>> 0;\n            H[1] = (H[1] + b) >>> 0;\n            H[2] = (H[2] + c) >>> 0;\n            H[3] = (H[3] + d) >>> 0;\n            H[4] = (H[4] + e) >>> 0;\n            H[5] = (H[5] + f) >>> 0;\n            H[6] = (H[6] + g) >>> 0;\n            H[7] = (H[7] + h) >>> 0;\n        }\n        \n        const result = [];\n        for (let i = 0; i < 7; i++) {\n            result.push(\n                ((H[i] >>> 24) & 0xff).toString(16).padStart(2, '0'),\n                ((H[i] >>> 16) & 0xff).toString(16).padStart(2, '0'),\n                ((H[i] >>> 8) & 0xff).toString(16).padStart(2, '0'),\n                (H[i] & 0xff).toString(16).padStart(2, '0')\n            );\n        }\n        \n        return result.join('');\n    }\n\n    function rightRotate(value, amount) {\n        return (value >>> amount) | (value << (32 - amount));\n    }\n\n    let ACTIVE_CONNECTIONS = 0;\n    const XHTTP_BUFFER_SIZE = 128 * 1024;\n    const CONNECT_TIMEOUT_MS = 5000;\n    const IDLE_TIMEOUT_MS = 45000;\n    const MAX_RETRIES = 2;\n    const MAX_CONCURRENT = 32;\n\n    function xhttp_sleep(ms) {\n        return new Promise((r) => setTimeout(r, ms));\n    }\n\n    function validate_uuid_xhttp(id, uuid) {\n        for (let index = 0; index < 16; index++) {\n            if (id[index] !== uuid[index]) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    class XhttpCounter {\n        #total\n\n        constructor() {\n            this.#total = 0;\n        }\n\n        get() {\n            return this.#total;\n        }\n\n        add(size) {\n            this.#total += size;\n        }\n    }\n\n    function concat_typed_arrays(first, ...args) {\n        let len = first.length;\n        for (let a of args) {\n            len += a.length;\n        }\n        const r = new first.constructor(len);\n        r.set(first, 0);\n        len = first.length;\n        for (let a of args) {\n            r.set(a, len);\n            len += a.length;\n        }\n        return r;\n    }\n\n    function parse_uuid_xhttp(uuid) {\n        uuid = uuid.replaceAll('-', '');\n        const r = [];\n        for (let index = 0; index < 16; index++) {\n            const v = parseInt(uuid.substr(index * 2, 2), 16);\n            r.push(v);\n        }\n        return r;\n    }\n\n    function get_xhttp_buffer(size) {\n        return new Uint8Array(new ArrayBuffer(size || XHTTP_BUFFER_SIZE));\n    }\n\n    async function read_xhttp_header(readable, uuid_str) {\n        const reader = readable.getReader({ mode: 'byob' });\n\n        try {\n            let r = await reader.readAtLeast(1 + 16 + 1, get_xhttp_buffer());\n            let rlen = 0;\n            let idx = 0;\n            let cache = r.value;\n            rlen += r.value.length;\n\n            const version = cache[0];\n            const id = cache.slice(1, 1 + 16);\n            const uuid = parse_uuid_xhttp(uuid_str);\n            if (!validate_uuid_xhttp(id, uuid)) {\n                return `invalid UUID`;\n            }\n            const pb_len = cache[1 + 16];\n            const addr_plus1 = 1 + 16 + 1 + pb_len + 1 + 2 + 1;\n\n            if (addr_plus1 + 1 > rlen) {\n                if (r.done) {\n                    return `header too short`;\n                }\n                idx = addr_plus1 + 1 - rlen;\n                r = await reader.readAtLeast(idx, get_xhttp_buffer());\n                rlen += r.value.length;\n                cache = concat_typed_arrays(cache, r.value);\n            }\n\n            const cmd = cache[1 + 16 + 1 + pb_len];\n            if (cmd !== 1) {\n                return `unsupported command: ${cmd}`;\n            }\n            const port = (cache[addr_plus1 - 1 - 2] << 8) + cache[addr_plus1 - 1 - 1];\n            const atype = cache[addr_plus1 - 1];\n            let header_len = -1;\n            if (atype === ADDRESS_TYPE_IPV4) {\n                header_len = addr_plus1 + 4;\n            } else if (atype === ADDRESS_TYPE_IPV6) {\n                header_len = addr_plus1 + 16;\n            } else if (atype === ADDRESS_TYPE_URL) {\n                header_len = addr_plus1 + 1 + cache[addr_plus1];\n            }\n\n            if (header_len < 0) {\n                return 'read address type failed';\n            }\n\n            idx = header_len - rlen;\n            if (idx > 0) {\n                if (r.done) {\n                    return `read address failed`;\n                }\n                r = await reader.readAtLeast(idx, get_xhttp_buffer());\n                rlen += r.value.length;\n                cache = concat_typed_arrays(cache, r.value);\n            }\n\n            let hostname = '';\n            idx = addr_plus1;\n            switch (atype) {\n                case ADDRESS_TYPE_IPV4:\n                    hostname = cache.slice(idx, idx + 4).join('.');\n                    break;\n                case ADDRESS_TYPE_URL:\n                    hostname = new TextDecoder().decode(\n                        cache.slice(idx + 1, idx + 1 + cache[idx]),\n                    );\n                    break;\n                case ADDRESS_TYPE_IPV6:\n                    hostname = cache\n                        .slice(idx, idx + 16)\n                        .reduce(\n                            (s, b2, i2, a) =>\n                                i2 % 2\n                                    ? s.concat(((a[i2 - 1] << 8) + b2).toString(16))\n                                    : s,\n                            [],\n                        )\n                        .join(':');\n                    break;\n            }\n\n            if (hostname.length < 1) {\n                return 'failed to parse hostname';\n            }\n\n            const data = cache.slice(header_len);\n            return {\n                hostname,\n                port,\n                data,\n                resp: new Uint8Array([version, 0]),\n                reader,\n                done: r.done,\n            };\n        } catch (error) {\n            try { reader.releaseLock(); } catch (_) {}\n            throw error;\n        }\n    }\n\n    async function upload_to_remote_xhttp(counter, writer, httpx) {\n        async function inner_upload(d) {\n            if (!d || d.length === 0) {\n                return;\n            }\n            counter.add(d.length);\n            try {\n                await writer.write(d);\n            } catch (error) {\n                throw error;\n            }\n        }\n\n        try {\n            await inner_upload(httpx.data);\n            let chunkCount = 0;\n            while (!httpx.done) {\n                const r = await httpx.reader.read(get_xhttp_buffer());\n                if (r.done) break;\n                await inner_upload(r.value);\n                httpx.done = r.done;\n                chunkCount++;\n                if (chunkCount % 10 === 0) {\n                    await xhttp_sleep(0);\n                }\n                if (!r.value || r.value.length === 0) {\n                    await xhttp_sleep(2);\n                }\n            }\n        } catch (error) {\n            throw error;\n        }\n    }\n\n    function create_xhttp_uploader(httpx, writable) {\n        const counter = new XhttpCounter();\n        const writer = writable.getWriter();\n        \n        const done = (async () => {\n            try {\n                await upload_to_remote_xhttp(counter, writer, httpx);\n            } catch (error) {\n                throw error;\n            } finally {\n                try {\n                    await writer.close();\n                } catch (error) {\n                    \n                }\n            }\n        })();\n\n        return {\n            counter,\n            done,\n            abort: () => {\n                try { writer.abort(); } catch (_) {}\n            }\n        };\n    }\n\n    function create_xhttp_downloader(resp, remote_readable) {\n        const counter = new XhttpCounter();\n        let stream;\n\n        const done = new Promise((resolve, reject) => {\n            stream = new TransformStream(\n                {\n                    start(controller) {\n                        counter.add(resp.length);\n                        controller.enqueue(resp);\n                    },\n                    transform(chunk, controller) {\n                        counter.add(chunk.length);\n                        controller.enqueue(chunk);\n                    },\n                    cancel(reason) {\n                        reject(`download cancelled: ${reason}`);\n                    },\n                },\n                null,\n                new ByteLengthQueuingStrategy({ highWaterMark: XHTTP_BUFFER_SIZE }),\n            );\n\n            let lastActivity = Date.now();\n            const idleTimer = setInterval(() => {\n                if (Date.now() - lastActivity > IDLE_TIMEOUT_MS) {\n                    try {\n                        stream.writable.abort?.('idle timeout');\n                    } catch (_) {}\n                    clearInterval(idleTimer);\n                    reject('idle timeout');\n                }\n            }, 5000);\n\n            const reader = remote_readable.getReader();\n            const writer = stream.writable.getWriter();\n\n            ;(async () => {\n                try {\n                    let chunkCount = 0;\n                    while (true) {\n                        const r = await reader.read();\n                        if (r.done) {\n                            break;\n                        }\n                        lastActivity = Date.now();\n                        await writer.write(r.value);\n                        chunkCount++;\n                        if (chunkCount % 5 === 0) {\n                            await xhttp_sleep(0);\n                        }\n                    }\n                    await writer.close();\n                    resolve();\n                } catch (err) {\n                    reject(err);\n                } finally {\n                    try { \n                        reader.releaseLock(); \n                    } catch (_) {}\n                    try { \n                        writer.releaseLock(); \n                    } catch (_) {}\n                    clearInterval(idleTimer);\n                }\n            })();\n        });\n\n        return {\n            readable: stream.readable,\n            counter,\n            done,\n            abort: () => {\n                try { stream.readable.cancel(); } catch (_) {}\n                try { stream.writable.abort(); } catch (_) {}\n            }\n        };\n    }\n\n    async function connect_to_remote_xhttp(httpx, ...remotes) {\n        let attempt = 0;\n        let lastErr;\n        \n        const connectionList = [httpx.hostname, ...remotes.filter(r => r && r !== httpx.hostname)];\n        \n        for (const hostname of connectionList) {\n            if (!hostname) continue;\n            \n            attempt = 0;\n            while (attempt < MAX_RETRIES) {\n                attempt++;\n                try {\n                    const remote = connect({ hostname, port: httpx.port });\n                    const timeoutPromise = xhttp_sleep(CONNECT_TIMEOUT_MS).then(() => {\n                        throw new Error(atob('Y29ubmVjdCB0aW1lb3V0'));\n                    });\n                    \n                    await Promise.race([remote.opened, timeoutPromise]);\n\n                    const uploader = create_xhttp_uploader(httpx, remote.writable);\n                    const downloader = create_xhttp_downloader(httpx.resp, remote.readable);\n                    \n                    return { \n                        downloader, \n                        uploader,\n                        close: () => {\n                            try { remote.close(); } catch (_) {}\n                        }\n                    };\n                } catch (err) {\n                    lastErr = err;\n                    if (attempt < MAX_RETRIES) {\n                        await xhttp_sleep(500 * attempt);\n                    }\n                }\n            }\n        }\n        \n        return null;\n    }\n\n    async function handle_xhttp_client(body, uuid) {\n        if (ACTIVE_CONNECTIONS >= MAX_CONCURRENT) {\n            return new Response('Too many connections', { status: 429 });\n        }\n        \n        ACTIVE_CONNECTIONS++;\n        \n        let cleaned = false;\n        const cleanup = () => {\n            if (!cleaned) {\n                ACTIVE_CONNECTIONS = Math.max(0, ACTIVE_CONNECTIONS - 1);\n                cleaned = true;\n            }\n        };\n\n        try {\n            const httpx = await read_xhttp_header(body, uuid);\n            if (typeof httpx !== 'object' || !httpx) {\n                return null;\n            }\n\n            const remoteConnection = await connect_to_remote_xhttp(httpx, fallbackAddress, '13.230.34.30');\n            if (remoteConnection === null) {\n                return null;\n            }\n\n            const connectionClosed = Promise.race([\n                (async () => {\n                    try {\n                        await remoteConnection.downloader.done;\n                    } catch (err) {\n                        \n                    }\n                })(),\n                (async () => {\n                    try {\n                        await remoteConnection.uploader.done;\n                    } catch (err) {\n                        \n                    }\n                })(),\n                xhttp_sleep(IDLE_TIMEOUT_MS).then(() => {\n                    \n                })\n            ]).finally(() => {\n                try { remoteConnection.close(); } catch (_) {}\n                try { remoteConnection.downloader.abort(); } catch (_) {}\n                try { remoteConnection.uploader.abort(); } catch (_) {}\n                \n                cleanup();\n            });\n\n            return {\n                readable: remoteConnection.downloader.readable,\n                closed: connectionClosed\n            };\n        } catch (error) {\n            cleanup();\n            return null;\n        }\n    }\n\n    async function handleXhttpPost(request) {\n        try {\n            return await handle_xhttp_client(request.body, at);\n        } catch (err) {\n            return null;\n        }\n    }\n\n    function base64ToArray(b64Str) {\n        if (!b64Str) return { error: null };\n        try { b64Str = b64Str.replace(/-/g, '+').replace(/_/g, '/'); return { earlyData: Uint8Array.from(atob(b64Str), (c) => c.charCodeAt(0)).buffer, error: null }; } \n        catch (error) { return { error }; }\n    }\n\n    function closeSocketQuietly(socket) { try { if (socket.readyState === 1 || socket.readyState === 2) socket.close(); } catch (error) {} }\n\n    const hexTable = Array.from({ length: 256 }, (v, i) => (i + 256).toString(16).slice(1));\n    function formatIdentifier(arr, offset = 0) {\n        const id = (hexTable[arr[offset]]+hexTable[arr[offset+1]]+hexTable[arr[offset+2]]+hexTable[arr[offset+3]]+\"-\"+hexTable[arr[offset+4]]+hexTable[arr[offset+5]]+\"-\"+hexTable[arr[offset+6]]+hexTable[arr[offset+7]]+\"-\"+hexTable[arr[offset+8]]+hexTable[arr[offset+9]]+\"-\"+hexTable[arr[offset+10]]+hexTable[arr[offset+11]]+hexTable[arr[offset+12]]+hexTable[arr[offset+13]]+hexTable[arr[offset+14]]+hexTable[arr[offset+15]]).toLowerCase();\n        if (!isValidFormat(id)) throw new TypeError(E_INVALID_ID_STR);\n        return id;\n    }\n\n    async function fetchAndParseNewIPs() {\n        const url = piu || \"https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt\";\n        try {\n            const urls = url.includes(',') ? url.split(',').map(u => u.trim()).filter(u => u) : [url];\n            const apiResults = await fetchPreferredAPI(urls, '443', 5000);\n            \n            if (apiResults.length > 0) {\n                const results = [];\n                const regex = /^(\\[[\\da-fA-F:]+\\]|[\\d.]+|[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?)*)(?::(\\d+))?(?:#(.+))?$/;\n                \n                for (const item of apiResults) {\n                    const match = item.match(regex);\n                    if (match) {\n                        results.push({\n                            ip: match[1],\n                            port: parseInt(match[2] || '443', 10),\n                            name: match[3]?.trim() || match[1]\n                        });\n                    }\n                }\n                return results;\n            }\n            \n            const response = await fetch(url);\n            if (!response.ok) return [];\n            const text = await response.text();\n            const results = [];\n            const lines = text.trim().replace(/\\r/g, \"\").split('\\n');\n            const simpleRegex = /^([^:]+):(\\d+)#(.*)$/;\n\n            for (const line of lines) {\n                const trimmedLine = line.trim();\n                if (!trimmedLine) continue;\n                const match = trimmedLine.match(simpleRegex);\n                if (match) {\n                    results.push({\n                        ip: match[1],\n                        port: parseInt(match[2], 10),\n                        name: match[3].trim() || match[1]\n                    });\n                }\n            }\n            return results;\n        } catch (error) {\n            return [];\n        }\n    }\n\n    function generateLinksFromNewIPs(list, user, workerDomain, echConfig = null) {\n        \n        const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095];\n        const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443];\n        \n        const links = [];\n        const wsPath = '/?ed=2048';\n        const proto = atob('dmxlc3M=');\n        \n        list.forEach(item => {\n            const nodeName = item.name.replace(/\\s/g, '_');\n            const port = item.port;\n            \n            if (CF_HTTPS_PORTS.includes(port)) {\n                \n                const wsNodeName = `${nodeName}-${port}-WS-TLS`;\n                let link = `${proto}://${user}@${item.ip}:${port}?encryption=none&security=tls&sni=${workerDomain}&fp=${enableECH ? 'chrome' : 'randomized'}&type=ws&host=${workerDomain}&path=${wsPath}`;\n                \n                // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n                if (enableECH) {\n                    const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                    const echDomain = customECHDomain || 'cloudflare-ech.com';\n                    link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`;\n                }\n                \n                link += `#${encodeURIComponent(wsNodeName)}`;\n                links.push(link);\n            } else if (CF_HTTP_PORTS.includes(port)) {\n                \n                if (!disableNonTLS) {\n                    const wsNodeName = `${nodeName}-${port}-WS`;\n                    const link = `${proto}://${user}@${item.ip}:${port}?encryption=none&security=none&type=ws&host=${workerDomain}&path=${wsPath}#${encodeURIComponent(wsNodeName)}`;\n                    links.push(link);\n                }\n            } else {\n                \n                const wsNodeName = `${nodeName}-${port}-WS-TLS`;\n                let link = `${proto}://${user}@${item.ip}:${port}?encryption=none&security=tls&sni=${workerDomain}&fp=${enableECH ? 'chrome' : 'randomized'}&type=ws&host=${workerDomain}&path=${wsPath}`;\n                \n                // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n                if (enableECH) {\n                    const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                    const echDomain = customECHDomain || 'cloudflare-ech.com';\n                    link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`;\n                }\n                \n                link += `#${encodeURIComponent(wsNodeName)}`;\n                links.push(link);\n            }\n        });\n        return links;\n    }\n\n    function generateXhttpLinksFromSource(list, user, workerDomain, echConfig = null) {\n        const links = [];\n        const nodePath = user.substring(0, 8);\n        \n        list.forEach(item => {\n            let nodeNameBase = item.isp.replace(/\\s/g, '_');\n            if (item.colo && item.colo.trim()) {\n                nodeNameBase = `${nodeNameBase}-${item.colo.trim()}`;\n            }\n            const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip;\n            const port = item.port || 443;\n            \n            const wsNodeName = `${nodeNameBase}-${port}-xhttp`;\n            const params = new URLSearchParams({\n                encryption: 'none',\n                security: 'tls',\n                sni: workerDomain,\n                fp: 'chrome',\n                type: 'xhttp',\n                host: workerDomain,\n                path: `/${nodePath}`,\n                mode: 'stream-one'\n            });\n            \n            // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n            if (enableECH) {\n                const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                const echDomain = customECHDomain || 'cloudflare-ech.com';\n                params.set('alpn', 'h3,h2,http/1.1');\n                params.set('ech', `${echDomain}+${dnsServer}`);\n            }\n            \n            links.push(`vless://${user}@${safeIP}:${port}?${params.toString()}#${encodeURIComponent(wsNodeName)}`);\n        });\n        \n        return links;\n    }\n\n    async function generateTrojanLinksFromNewIPs(list, user, workerDomain, echConfig = null) {\n        \n        const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095];\n        const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443];\n        \n        const links = [];\n        const wsPath = '/?ed=2048';\n        \n        const password = tp || user;\n        \n        list.forEach(item => {\n            const nodeName = item.name.replace(/\\s/g, '_');\n            const port = item.port;\n            \n            if (CF_HTTPS_PORTS.includes(port)) {\n                \n                const wsNodeName = `${nodeName}-${port}-${atob('VHJvamFu')}-WS-TLS`;\n                let link = `${atob('dHJvamFuOi8v')}${password}@${item.ip}:${port}?security=tls&sni=${workerDomain}&fp=chrome&type=ws&host=${workerDomain}&path=${wsPath}`;\n                \n                // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n                if (enableECH) {\n                    const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                    const echDomain = customECHDomain || 'cloudflare-ech.com';\n                    link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`;\n                }\n                \n                link += `#${encodeURIComponent(wsNodeName)}`;\n                links.push(link);\n            } else if (CF_HTTP_PORTS.includes(port)) {\n                \n                if (!disableNonTLS) {\n                    const wsNodeName = `${nodeName}-${port}-${atob('VHJvamFu')}-WS`;\n                    const link = `${atob('dHJvamFuOi8v')}${password}@${item.ip}:${port}?security=none&type=ws&host=${workerDomain}&path=${wsPath}#${encodeURIComponent(wsNodeName)}`;\n                    links.push(link);\n                }\n            } else {\n                \n                const wsNodeName = `${nodeName}-${port}-${atob('VHJvamFu')}-WS-TLS`;\n                let link = `${atob('dHJvamFuOi8v')}${password}@${item.ip}:${port}?security=tls&sni=${workerDomain}&fp=chrome&type=ws&host=${workerDomain}&path=${wsPath}`;\n                \n                // 如果启用了ECH，添加ech参数（ECH需要伪装成Chrome浏览器）\n                if (enableECH) {\n                    const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog';\n                    const echDomain = customECHDomain || 'cloudflare-ech.com';\n                    link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`;\n                }\n                \n                link += `#${encodeURIComponent(wsNodeName)}`;\n                links.push(link);\n            }\n        });\n        return links;\n    }\n\n    async function handleConfigAPI(request) {\n        if (request.method === 'GET') {\n            \n            if (!kvStore) {\n                return new Response(JSON.stringify({\n                    error: 'KV存储未配置',\n                    kvEnabled: false\n                }), {\n                    status: 503,\n                    headers: { 'Content-Type': 'application/json' }\n                });\n            }\n            \n            return new Response(JSON.stringify({\n                ...kvConfig,\n                kvEnabled: true\n            }), {\n                headers: { 'Content-Type': 'application/json' }\n            });\n        } else if (request.method === 'POST') {\n            \n            if (!kvStore) {\n                return new Response(JSON.stringify({\n                    success: false,\n                    message: 'KV存储未配置，无法保存配置'\n                }), {\n                    status: 503,\n                    headers: { 'Content-Type': 'application/json' }\n                });\n            }\n            \n            try {\n                const newConfig = await request.json();\n                \n                for (const [key, value] of Object.entries(newConfig)) {\n                    if (value === '' || value === null || value === undefined) {\n                        delete kvConfig[key];\n                    } else {\n                        kvConfig[key] = value;\n                    }\n                }\n                \n                await saveKVConfig();\n                \n                updateConfigVariables();\n                \n                if (newConfig.yx !== undefined) {\n                    updateCustomPreferredFromYx();\n                }\n                \n                const newPreferredIPsURL = getConfigValue('yxURL', '') || 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n                const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n                if (newPreferredIPsURL !== defaultURL) {\n                    directDomains.length = 0;\n                    customPreferredIPs = [];\n                    customPreferredDomains = [];\n                } else {\n                    backupIPs = [\n                        { domain: 'ProxyIP.US.CMLiussss.net', region: 'US', regionCode: 'US', port: 443 },\n                        { domain: 'ProxyIP.SG.CMLiussss.net', region: 'SG', regionCode: 'SG', port: 443 },\n                        { domain: 'ProxyIP.JP.CMLiussss.net', region: 'JP', regionCode: 'JP', port: 443 },\n                        { domain: 'ProxyIP.KR.CMLiussss.net', region: 'KR', regionCode: 'KR', port: 443 },\n                        { domain: 'ProxyIP.DE.CMLiussss.net', region: 'DE', regionCode: 'DE', port: 443 },\n                        { domain: 'ProxyIP.SE.CMLiussss.net', region: 'SE', regionCode: 'SE', port: 443 },\n                        { domain: 'ProxyIP.NL.CMLiussss.net', region: 'NL', regionCode: 'NL', port: 443 },\n                        { domain: 'ProxyIP.FI.CMLiussss.net', region: 'FI', regionCode: 'FI', port: 443 },\n                        { domain: 'ProxyIP.GB.CMLiussss.net', region: 'GB', regionCode: 'GB', port: 443 },\n                        { domain: 'ProxyIP.Oracle.cmliussss.net', region: 'Oracle', regionCode: 'Oracle', port: 443 },\n                        { domain: 'ProxyIP.DigitalOcean.CMLiussss.net', region: 'DigitalOcean', regionCode: 'DigitalOcean', port: 443 },\n                        { domain: 'ProxyIP.Vultr.CMLiussss.net', region: 'Vultr', regionCode: 'Vultr', port: 443 },\n                        { domain: 'ProxyIP.Multacom.CMLiussss.net', region: 'Multacom', regionCode: 'Multacom', port: 443 }\n                    ];\n                    directDomains.length = 0;\n                    directDomains.push(\n                        { name: \"cloudflare.182682.xyz\", domain: \"cloudflare.182682.xyz\" }, \n                        { name: \"speed.marisalnc.com\", domain: \"speed.marisalnc.com\" },\n                        { domain: \"freeyx.cloudflare88.eu.org\" }, \n                        { domain: \"bestcf.top\" }, \n                        { domain: \"cdn.2020111.xyz\" }, \n                        { domain: \"cfip.cfcdn.vip\" },\n                        { domain: \"cf.0sm.com\" }, \n                        { domain: \"cf.090227.xyz\" }, \n                        { domain: \"cf.zhetengsha.eu.org\" }, \n                        { domain: \"cloudflare.9jy.cc\" },\n                        { domain: \"cf.zerone-cdn.pp.ua\" }, \n                        { domain: \"cfip.1323123.xyz\" }, \n                        { domain: \"cnamefuckxxs.yuchen.icu\" }, \n                        { domain: \"cloudflare-ip.mofashi.ltd\" },\n                        { domain: \"115155.xyz\" }, \n                        { domain: \"cname.xirancdn.us\" }, \n                        { domain: \"f3058171cad.002404.xyz\" }, \n                        { domain: \"8.889288.xyz\" },\n                        { domain: \"cdn.tzpro.xyz\" }, \n                        { domain: \"cf.877771.xyz\" }, \n                        { domain: \"xn--b6gac.eu.org\" }\n                    );\n                }\n                \n                return new Response(JSON.stringify({\n                    success: true,\n                    message: '配置已保存',\n                    config: kvConfig\n                }), {\n                    headers: { 'Content-Type': 'application/json' }\n                });\n            } catch (error) {\n                \n                return new Response(JSON.stringify({\n                    success: false,\n                    message: '保存配置失败: ' + error.message\n                }), {\n                    status: 500,\n                    headers: { 'Content-Type': 'application/json' }\n                });\n            }\n        }\n        \n        return new Response(JSON.stringify({ error: 'Method not allowed' }), { \n            status: 405,\n            headers: { 'Content-Type': 'application/json' }\n        });\n    }\n\n    async function handlePreferredIPsAPI(request) {\n        \n        if (!kvStore) {\n            return new Response(JSON.stringify({\n                success: false,\n                error: 'KV存储未配置',\n                message: '需要配置KV存储才能使用此功能'\n            }), {\n                status: 503,\n                headers: { 'Content-Type': 'application/json' }\n            });\n        }\n        \n        const ae = getConfigValue('ae', '') === 'yes';\n        if (!ae) {\n            return new Response(JSON.stringify({\n                success: false,\n                error: 'API功能未启用',\n                message: '出于安全考虑，优选IP API功能默认关闭。请在配置管理页面开启\"允许API管理\"选项后使用。'\n            }), {\n                status: 403,\n                headers: { 'Content-Type': 'application/json' }\n            });\n        }\n        \n        try {\n            if (request.method === 'GET') {\n                \n                const yxValue = getConfigValue('yx', '');\n                const pi = parseYxToArray(yxValue);\n                \n                return new Response(JSON.stringify({\n                    success: true,\n                    count: pi.length,\n                    data: pi\n                }), {\n                    headers: { 'Content-Type': 'application/json' }\n                });\n                \n            } else if (request.method === 'POST') {\n                \n                const body = await request.json();\n                \n                const ipsToAdd = Array.isArray(body) ? body : [body];\n                \n                if (ipsToAdd.length === 0) {\n                    return new Response(JSON.stringify({\n                        success: false,\n                        error: '请求数据为空',\n                        message: '请提供IP数据'\n                    }), {\n                        status: 400,\n                        headers: { 'Content-Type': 'application/json' }\n                    });\n                }\n                \n                const yxValue = getConfigValue('yx', '');\n                let pi = parseYxToArray(yxValue);\n                \n                const addedIPs = [];\n                const skippedIPs = [];\n                const errors = [];\n                \n                for (const item of ipsToAdd) {\n                    \n                    if (!item.ip) {\n                        errors.push({ ip: '未知', reason: 'IP地址是必需的' });\n                        continue;\n                    }\n                    \n                    const port = item.port || 443;\n                    const name = item.name || `API优选-${item.ip}:${port}`;\n                    \n                    if (!isValidIP(item.ip) && !isValidDomain(item.ip)) {\n                        errors.push({ ip: item.ip, reason: '无效的IP或域名格式' });\n                        continue;\n                    }\n                    \n                    const exists = pi.some(existItem => \n                        existItem.ip === item.ip && existItem.port === port\n                    );\n                    \n                    if (exists) {\n                        skippedIPs.push({ ip: item.ip, port: port, reason: '已存在' });\n                        continue;\n                    }\n                    \n                    const newIP = {\n                        ip: item.ip,\n                        port: port,\n                        name: name,\n                        addedAt: new Date().toISOString()\n                    };\n                    \n                    pi.push(newIP);\n                    addedIPs.push(newIP);\n                }\n                \n                if (addedIPs.length > 0) {\n                    const newYxValue = arrayToYx(pi);\n                    await setConfigValue('yx', newYxValue);\n                    updateCustomPreferredFromYx();\n                }\n                \n                return new Response(JSON.stringify({\n                    success: addedIPs.length > 0,\n                    message: `成功添加 ${addedIPs.length} 个IP`,\n                    added: addedIPs.length,\n                    skipped: skippedIPs.length,\n                    errors: errors.length,\n                    data: {\n                        addedIPs: addedIPs,\n                        skippedIPs: skippedIPs.length > 0 ? skippedIPs : undefined,\n                        errors: errors.length > 0 ? errors : undefined\n                    }\n                }), {\n                    headers: { 'Content-Type': 'application/json' }\n                });\n                \n            } else if (request.method === 'DELETE') {\n                \n                const body = await request.json();\n                \n                if (body.all === true) {\n                    \n                    const yxValue = getConfigValue('yx', '');\n                    const pi = parseYxToArray(yxValue);\n                    const deletedCount = pi.length;\n                    \n                    await setConfigValue('yx', '');\n                    updateCustomPreferredFromYx();\n                    \n                    return new Response(JSON.stringify({\n                        success: true,\n                        message: `已清空所有优选IP，共删除 ${deletedCount} 个`,\n                        deletedCount: deletedCount\n                    }), {\n                        headers: { 'Content-Type': 'application/json' }\n                    });\n                }\n                \n                if (!body.ip) {\n                    return new Response(JSON.stringify({\n                        success: false,\n                        error: 'IP地址是必需的',\n                        message: '请提供要删除的ip字段，或使用 {\"all\": true} 清空所有'\n                    }), {\n                        status: 400,\n                        headers: { 'Content-Type': 'application/json' }\n                    });\n                }\n                \n                const port = body.port || 443;\n                \n                const yxValue = getConfigValue('yx', '');\n                let pi = parseYxToArray(yxValue);\n                const initialLength = pi.length;\n                \n                const filteredIPs = pi.filter(item => \n                    !(item.ip === body.ip && item.port === port)\n                );\n                \n                if (filteredIPs.length === initialLength) {\n                    return new Response(JSON.stringify({\n                        success: false,\n                        error: '优选IP不存在',\n                        message: `${body.ip}:${port} 未找到`\n                    }), {\n                        status: 404,\n                        headers: { 'Content-Type': 'application/json' }\n                    });\n                }\n                \n                const newYxValue = arrayToYx(filteredIPs);\n                await setConfigValue('yx', newYxValue);\n                updateCustomPreferredFromYx();\n                \n                return new Response(JSON.stringify({\n                    success: true,\n                    message: '优选IP已删除',\n                    deleted: { ip: body.ip, port: port }\n                }), {\n                    headers: { 'Content-Type': 'application/json' }\n                });\n                \n            } else {\n                return new Response(JSON.stringify({\n                    success: false,\n                    error: '不支持的请求方法',\n                    message: '支持的方法: GET, POST, DELETE'\n                }), {\n                    status: 405,\n                    headers: { 'Content-Type': 'application/json' }\n                });\n            }\n        } catch (error) {\n            return new Response(JSON.stringify({\n                success: false,\n                error: '处理请求失败',\n                message: error.message\n            }), {\n                status: 500,\n                headers: { 'Content-Type': 'application/json' }\n            });\n        }\n    }\n\n    function updateConfigVariables() {\n        const manualRegion = getConfigValue('wk', '');\n        if (manualRegion && manualRegion.trim()) {\n            manualWorkerRegion = manualRegion.trim().toUpperCase();\n            currentWorkerRegion = manualWorkerRegion;\n        } else {\n            const ci = getConfigValue('p', '');\n            if (ci && ci.trim()) {\n                currentWorkerRegion = 'CUSTOM';\n            } else {\n                manualWorkerRegion = '';\n            }\n        }\n        \n        const regionMatchingControl = getConfigValue('rm', '');\n        if (regionMatchingControl && regionMatchingControl.toLowerCase() === 'no') {\n            enableRegionMatching = false;\n        } else {\n            enableRegionMatching = true;\n        }\n        \n        const vlessControl = getConfigValue('ev', '');\n        if (vlessControl !== undefined && vlessControl !== '') {\n            ev = vlessControl === 'yes' || vlessControl === true || vlessControl === 'true';\n        }\n        \n        const tjControl = getConfigValue('et', '');\n        if (tjControl !== undefined && tjControl !== '') {\n            et = tjControl === 'yes' || tjControl === true || tjControl === 'true';\n        }\n        \n        tp = getConfigValue('tp', '') || '';\n        \n        const xhttpControl = getConfigValue('ex', '');\n        if (xhttpControl !== undefined && xhttpControl !== '') {\n            ex = xhttpControl === 'yes' || xhttpControl === true || xhttpControl === 'true';\n        }\n        \n        if (!ev && !et && !ex) {\n            ev = true;\n        }\n        \n        scu = getConfigValue('scu', '') || 'https://url.v1.mk/sub';\n        \n        const preferredDomainsControl = getConfigValue('epd', 'no');\n        if (preferredDomainsControl !== undefined && preferredDomainsControl !== '') {\n            epd = preferredDomainsControl !== 'no' && preferredDomainsControl !== false && preferredDomainsControl !== 'false';\n        }\n        \n        const preferredIPsControl = getConfigValue('epi', '');\n        if (preferredIPsControl !== undefined && preferredIPsControl !== '') {\n            epi = preferredIPsControl !== 'no' && preferredIPsControl !== false && preferredIPsControl !== 'false';\n        }\n        \n        const githubIPsControl = getConfigValue('egi', '');\n        if (githubIPsControl !== undefined && githubIPsControl !== '') {\n            egi = githubIPsControl !== 'no' && githubIPsControl !== false && githubIPsControl !== 'false';\n        }\n        \n        const echControl = getConfigValue('ech', '');\n        if (echControl !== undefined && echControl !== '') {\n            enableECH = echControl === 'yes' || echControl === true || echControl === 'true';\n        }\n        \n        // 更新自定义DNS和ECH域名\n        const customDNSValue = getConfigValue('customDNS', '');\n        if (customDNSValue && customDNSValue.trim()) {\n            customDNS = customDNSValue.trim();\n        } else {\n            customDNS = 'https://dns.joeyblog.eu.org/joeyblog';\n        }\n        \n        const customECHDomainValue = getConfigValue('customECHDomain', '');\n        if (customECHDomainValue && customECHDomainValue.trim()) {\n            customECHDomain = customECHDomainValue.trim();\n        } else {\n            customECHDomain = 'cloudflare-ech.com';\n        }\n        \n        // 如果启用了ECH，自动启用仅TLS模式（避免80端口干扰）\n        // ECH需要TLS才能工作，所以必须禁用非TLS节点\n        if (enableECH) {\n            disableNonTLS = true;\n        }\n        \n        // 检查dkby配置（如果手动设置了dkby=yes，也会启用仅TLS）\n        const dkbyControl = getConfigValue('dkby', '');\n        if (dkbyControl && dkbyControl.toLowerCase() === 'yes') {\n            disableNonTLS = true;\n        }\n        \n        cp = getConfigValue('d', '') || '';\n        \n        piu = getConfigValue('yxURL', '') || 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n        \n        const envFallback = getConfigValue('p', '');\n        if (envFallback) {\n            fallbackAddress = envFallback.trim();\n        } else {\n            fallbackAddress = '';\n        }\n        \n        socks5Config = getConfigValue('s', '') || '';\n        if (socks5Config) {\n            try {\n                parsedSocks5Config = parseSocksConfig(socks5Config);\n                isSocksEnabled = true;\n            } catch (err) {\n                isSocksEnabled = false;\n            }\n        } else {\n            isSocksEnabled = false;\n        }\n        \n        const yxbyControl = getConfigValue('yxby', '');\n        if (yxbyControl && yxbyControl.toLowerCase() === 'yes') {\n            disablePreferred = true;\n        } else {\n            disablePreferred = false;\n        }\n        \n        const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt';\n        if (piu !== defaultURL) {\n            directDomains.length = 0;\n            customPreferredIPs = [];\n            customPreferredDomains = [];\n        }\n    }\n\n    function updateCustomPreferredFromYx() {\n        const yxValue = getConfigValue('yx', '');\n        if (yxValue) {\n            try {\n                const preferredList = yxValue.split(',').map(item => item.trim()).filter(item => item);\n                customPreferredIPs = [];\n                customPreferredDomains = [];\n                \n                preferredList.forEach(item => {\n                    let nodeName = '';\n                    let addressPart = item;\n                    \n                    if (item.includes('#')) {\n                        const parts = item.split('#');\n                        addressPart = parts[0].trim();\n                        nodeName = parts[1].trim();\n                    }\n                    \n                    const { address, port } = parseAddressAndPort(addressPart);\n                    \n                    if (!nodeName) {\n                        nodeName = '自定义优选-' + address + (port ? ':' + port : '');\n                    }\n                    \n                    if (isValidIP(address)) {\n                        customPreferredIPs.push({ \n                            ip: address, \n                            port: port,\n                            isp: nodeName\n                        });\n                    } else {\n                        customPreferredDomains.push({ \n                            domain: address, \n                            port: port,\n                            name: nodeName\n                        });\n                    }\n                });\n            } catch (err) {\n                customPreferredIPs = [];\n                customPreferredDomains = [];\n            }\n        } else {\n            customPreferredIPs = [];\n            customPreferredDomains = [];\n        }\n    }\n\n    function parseYxToArray(yxValue) {\n        if (!yxValue || !yxValue.trim()) return [];\n        \n        const items = yxValue.split(',').map(item => item.trim()).filter(item => item);\n        const result = [];\n        \n        for (const item of items) {\n            \n            let nodeName = '';\n            let addressPart = item;\n            \n            if (item.includes('#')) {\n                const parts = item.split('#');\n                addressPart = parts[0].trim();\n                nodeName = parts[1].trim();\n            }\n            \n            const { address, port } = parseAddressAndPort(addressPart);\n            \n            if (!nodeName) {\n                nodeName = address + (port ? ':' + port : '');\n            }\n            \n            result.push({\n                ip: address,\n                port: port || 443,\n                name: nodeName,\n                addedAt: new Date().toISOString()\n            });\n        }\n        \n        return result;\n    }\n\n    function arrayToYx(array) {\n        if (!array || array.length === 0) return '';\n        \n        return array.map(item => {\n            const port = item.port || 443;\n            return `${item.ip}:${port}#${item.name}`;\n        }).join(',');\n    }\n\n    function isValidDomain(domain) {\n        const domainRegex = /^(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\.)+[a-zA-Z]{2,}$/;\n        return domainRegex.test(domain);\n    }\n\n    async function parseTextToArray(content) {\n        var processed = content.replace(/[\t\"'\\r\\n]+/g, ',').replace(/,+/g, ',');\n        if (processed.charAt(0) == ',') processed = processed.slice(1);\n        if (processed.charAt(processed.length - 1) == ',') processed = processed.slice(0, processed.length - 1);\n        return processed.split(',');\n    }\n\n    async function fetchPreferredAPI(urls, defaultPort = '443', timeout = 3000) {\n        if (!urls?.length) return [];\n        const results = new Set();\n        await Promise.allSettled(urls.map(async (url) => {\n            try {\n                const controller = new AbortController();\n                const timeoutId = setTimeout(() => controller.abort(), timeout);\n                const response = await fetch(url, { signal: controller.signal });\n                clearTimeout(timeoutId);\n                let text = '';\n                try {\n                    const buffer = await response.arrayBuffer();\n                    const contentType = (response.headers.get('content-type') || '').toLowerCase();\n                    const charset = contentType.match(/charset=([^\\s;]+)/i)?.[1]?.toLowerCase() || '';\n\n                    let decoders = ['utf-8', 'gb2312'];\n                    if (charset.includes('gb') || charset.includes('gbk') || charset.includes('gb2312')) {\n                        decoders = ['gb2312', 'utf-8'];\n                    }\n\n                    let decodeSuccess = false;\n                    for (const decoder of decoders) {\n                        try {\n                            const decoded = new TextDecoder(decoder).decode(buffer);\n                            if (decoded && decoded.length > 0 && !decoded.includes('\\ufffd')) {\n                                text = decoded;\n                                decodeSuccess = true;\n                                break;\n                            } else if (decoded && decoded.length > 0) {\n                                continue;\n                            }\n                        } catch (e) {\n                            continue;\n                        }\n                    }\n\n                    if (!decodeSuccess) {\n                        text = await response.text();\n                    }\n\n                    if (!text || text.trim().length === 0) {\n                        return;\n                    }\n                } catch (e) {\n                    return;\n                }\n                const lines = text.trim().split('\\n').map(l => l.trim()).filter(l => l);\n                const isCSV = lines.length > 1 && lines[0].includes(',');\n                const IPV6_PATTERN = /^[^\\[\\]]*:[^\\[\\]]*:[^\\[\\]]/;\n                if (!isCSV) {\n                    lines.forEach(line => {\n                        const hashIndex = line.indexOf('#');\n                        const [hostPart, remark] = hashIndex > -1 ? [line.substring(0, hashIndex), line.substring(hashIndex)] : [line, ''];\n                        let hasPort = false;\n                        if (hostPart.startsWith('[')) {\n                            hasPort = /\\]:(\\d+)$/.test(hostPart);\n                        } else {\n                            const colonIndex = hostPart.lastIndexOf(':');\n                            hasPort = colonIndex > -1 && /^\\d+$/.test(hostPart.substring(colonIndex + 1));\n                        }\n                        const port = new URL(url).searchParams.get('port') || defaultPort;\n                        results.add(hasPort ? line : `${hostPart}:${port}${remark}`);\n                    });\n                } else {\n                    const headers = lines[0].split(',').map(h => h.trim());\n                    const dataLines = lines.slice(1);\n                    if (headers.includes('IP地址') && headers.includes('端口') && headers.includes('数据中心')) {\n                        const ipIdx = headers.indexOf('IP地址'), portIdx = headers.indexOf('端口');\n                        const remarkIdx = headers.indexOf('国家') > -1 ? headers.indexOf('国家') :\n                            headers.indexOf('城市') > -1 ? headers.indexOf('城市') : headers.indexOf('数据中心');\n                        const tlsIdx = headers.indexOf('TLS');\n                        dataLines.forEach(line => {\n                            const cols = line.split(',').map(c => c.trim());\n                            if (tlsIdx !== -1 && cols[tlsIdx]?.toLowerCase() !== 'true') return;\n                            const wrappedIP = IPV6_PATTERN.test(cols[ipIdx]) ? `[${cols[ipIdx]}]` : cols[ipIdx];\n                            results.add(`${wrappedIP}:${cols[portIdx]}#${cols[remarkIdx]}`);\n                        });\n                    } else if (headers.some(h => h.includes('IP')) && headers.some(h => h.includes('延迟')) && headers.some(h => h.includes('下载速度'))) {\n                        const ipIdx = headers.findIndex(h => h.includes('IP'));\n                        const delayIdx = headers.findIndex(h => h.includes('延迟'));\n                        const speedIdx = headers.findIndex(h => h.includes('下载速度'));\n                        const port = new URL(url).searchParams.get('port') || defaultPort;\n                        dataLines.forEach(line => {\n                            const cols = line.split(',').map(c => c.trim());\n                            const wrappedIP = IPV6_PATTERN.test(cols[ipIdx]) ? `[${cols[ipIdx]}]` : cols[ipIdx];\n                            results.add(`${wrappedIP}:${port}#CF优选 ${cols[delayIdx]}ms ${cols[speedIdx]}MB/s`);\n                        });\n                    }\n                }\n            } catch (e) { }\n        }));\n        return Array.from(results);\n    }\n"
  }
]