human-verify 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +210 -0
- package/backend/index.js +1 -0
- package/frontend/human-verify.es.js +1 -0
- package/frontend/human-verify.umd.js +1 -0
- package/package.json +32 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 gamerunwuyazi
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
# HumanVerify 人机验证库
|
|
2
|
+
|
|
3
|
+
基于行为特征分析的人机验证库,前后端分离架构。
|
|
4
|
+
|
|
5
|
+
## 包内容
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
human-verify/
|
|
9
|
+
├── frontend/
|
|
10
|
+
│ ├── human-verify.es.js # 前端 ES 模块(混淆)
|
|
11
|
+
│ └── human-verify.umd.js # 前端 UMD 模块(混淆)
|
|
12
|
+
├── backend/
|
|
13
|
+
│ └── index.js # 后端验证库(混淆)
|
|
14
|
+
└── package.json
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 安装
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install human-verify
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## 前端使用
|
|
24
|
+
|
|
25
|
+
### 组件模式(Vue 3 项目)
|
|
26
|
+
|
|
27
|
+
```vue
|
|
28
|
+
<script setup>
|
|
29
|
+
import { HumanVerify } from 'human-verify'
|
|
30
|
+
</script>
|
|
31
|
+
|
|
32
|
+
<template>
|
|
33
|
+
<HumanVerify
|
|
34
|
+
backend-url="/api"
|
|
35
|
+
@verified="onVerified"
|
|
36
|
+
@failed="onFailed"
|
|
37
|
+
/>
|
|
38
|
+
</template>
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### 函数模式
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
import { humanVerify } from 'human-verify'
|
|
45
|
+
|
|
46
|
+
const result = await humanVerify({
|
|
47
|
+
backendUrl: '/api',
|
|
48
|
+
onProgress: (progress, status) => {
|
|
49
|
+
console.log(`${progress}%: ${status}`)
|
|
50
|
+
}
|
|
51
|
+
})
|
|
52
|
+
|
|
53
|
+
if (result.passed) {
|
|
54
|
+
console.log('验证通过,token:', result.token)
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### 自定义元素模式(纯 HTML)
|
|
59
|
+
|
|
60
|
+
```html
|
|
61
|
+
<!-- 需要 Vue 3 全局构建 -->
|
|
62
|
+
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
|
|
63
|
+
<script src="/lib/human-verify.umd.js"></script>
|
|
64
|
+
|
|
65
|
+
<human-verify backend-url="/api" onverify-id="my-callback"></human-verify>
|
|
66
|
+
|
|
67
|
+
<script>
|
|
68
|
+
window.HumanVerifyCallbacks.set('my-callback', (result) => {
|
|
69
|
+
if (result.passed) {
|
|
70
|
+
console.log('验证通过,得分:', result.score, 'token:', result.token)
|
|
71
|
+
} else {
|
|
72
|
+
console.log('验证失败:', result.reason)
|
|
73
|
+
}
|
|
74
|
+
})
|
|
75
|
+
</script>
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### 组件属性
|
|
79
|
+
|
|
80
|
+
| 属性 | 类型 | 默认值 | 说明 |
|
|
81
|
+
|------|------|--------|------|
|
|
82
|
+
| `backend-url` | `string` | `'/api'` | 后端 API 基础路径 |
|
|
83
|
+
| `timeout` | `number` | `30000` | 超时时间(ms) |
|
|
84
|
+
| `onverify-id` | `string` | — | 回调 ID,通过 `window.HumanVerifyCallbacks.set(id, fn)` 注册 |
|
|
85
|
+
|
|
86
|
+
### 组件事件
|
|
87
|
+
|
|
88
|
+
| 事件 | detail | 说明 |
|
|
89
|
+
|------|--------|------|
|
|
90
|
+
| `verified` | `{ passed, score, token }` | 验证通过 |
|
|
91
|
+
| `failed` | `{ reason, score }` | 验证失败 |
|
|
92
|
+
| `progress` | `{ progress, status }` | 进度更新 |
|
|
93
|
+
|
|
94
|
+
### 返回结果
|
|
95
|
+
|
|
96
|
+
```ts
|
|
97
|
+
interface VerifyResult {
|
|
98
|
+
passed: boolean // 是否通过
|
|
99
|
+
score: number // 行为评分 (0-100)
|
|
100
|
+
token?: string // 验证通过后的 token(防重放)
|
|
101
|
+
reason?: string // 失败原因
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## 后端使用
|
|
106
|
+
|
|
107
|
+
```ts
|
|
108
|
+
import {
|
|
109
|
+
createSession,
|
|
110
|
+
verifySession,
|
|
111
|
+
generatePOWChallenge,
|
|
112
|
+
verifyPOWSolution,
|
|
113
|
+
detectAutomation,
|
|
114
|
+
analyzeBehavior
|
|
115
|
+
} from 'human-verify/backend'
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
> 后端库为 ESM 格式,Node.js 18+。
|
|
119
|
+
|
|
120
|
+
### 函数列表
|
|
121
|
+
|
|
122
|
+
| 函数 | 参数 | 返回值 | 说明 |
|
|
123
|
+
|------|------|--------|------|
|
|
124
|
+
| `createSession()` | 无 | `{ sessionId, publicKey, challenge, expiresAt }` | 创建会话,生成 RSA 密钥对 |
|
|
125
|
+
| `verifySession(sessionId, encryptedData, threshold?)` | sessionId, 加密数据, 分数阈值(默认 50) | `{ success, passed, score, token?, reason? }` | 验证加密数据并评分,验证后销毁会话 |
|
|
126
|
+
| `generatePOWChallenge(sessionId)` | sessionId | `{ success, challenge, difficulty, requiredLeadingBits }` | 根据评分生成 POW 挑战 |
|
|
127
|
+
| `verifyPOWSolution(sessionId, nonce)` | sessionId, nonce | `{ success, passed, token?, score? }` | 验证 POW 结果 |
|
|
128
|
+
| `detectAutomation(fingerprint)` | DeviceFingerprint | `{ isBot, reason }` | 检测自动化工具 |
|
|
129
|
+
| `analyzeBehavior(data, challengeResult)` | 行为数据, 挑战结果 | `{ passed, score, details }` | 分析行为数据 |
|
|
130
|
+
|
|
131
|
+
### 示例
|
|
132
|
+
|
|
133
|
+
```ts
|
|
134
|
+
import express from 'express'
|
|
135
|
+
import { createSession, verifySession, generatePOWChallenge, verifyPOWSolution } from 'human-verify/backend'
|
|
136
|
+
|
|
137
|
+
const app = express()
|
|
138
|
+
app.use(express.json())
|
|
139
|
+
|
|
140
|
+
// 1. 创建验证会话
|
|
141
|
+
app.post('/api/verify/challenge', (req, res) => {
|
|
142
|
+
const session = createSession()
|
|
143
|
+
res.json(session)
|
|
144
|
+
})
|
|
145
|
+
|
|
146
|
+
// 2. 行为验证 + POW 挑战
|
|
147
|
+
app.post('/api/verify/pow-challenge', (req, res) => {
|
|
148
|
+
const { sessionId, encryptedData, threshold } = req.body
|
|
149
|
+
const result = verifySession(sessionId, encryptedData, threshold)
|
|
150
|
+
if (!result.success) {
|
|
151
|
+
return res.status(400).json({ error: result.error })
|
|
152
|
+
}
|
|
153
|
+
if (!result.passed) {
|
|
154
|
+
return res.json({ passed: false, score: result.score, reason: result.reason })
|
|
155
|
+
}
|
|
156
|
+
const pow = generatePOWChallenge(sessionId)
|
|
157
|
+
res.json({ passed: true, score: result.score, token: result.token, pow })
|
|
158
|
+
})
|
|
159
|
+
|
|
160
|
+
// 3. POW 验证
|
|
161
|
+
app.post('/api/verify/pow-verify', (req, res) => {
|
|
162
|
+
const { sessionId, nonce } = req.body
|
|
163
|
+
const result = verifyPOWSolution(sessionId, nonce)
|
|
164
|
+
if (!result.success) {
|
|
165
|
+
return res.status(400).json({ error: result.error })
|
|
166
|
+
}
|
|
167
|
+
res.json({ passed: result.passed, token: result.token, score: result.score })
|
|
168
|
+
})
|
|
169
|
+
|
|
170
|
+
app.listen(3000)
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
## 验证流程
|
|
174
|
+
|
|
175
|
+
```
|
|
176
|
+
前端 后端
|
|
177
|
+
│ │
|
|
178
|
+
│ POST /api/verify/challenge │
|
|
179
|
+
│ ──────────────────────────────────────────► │ createSession()
|
|
180
|
+
│ ◄────────────────────────────────────────── │ → { sessionId, publicKey }
|
|
181
|
+
│ │
|
|
182
|
+
│ 采集指纹 + 行为数据 │
|
|
183
|
+
│ Web Worker 加密(RSA + AES) │
|
|
184
|
+
│ │
|
|
185
|
+
│ POST /api/verify/pow-challenge │
|
|
186
|
+
│ { sessionId, encryptedData } │
|
|
187
|
+
│ ──────────────────────────────────────────► │ verifySession() → 评分
|
|
188
|
+
│ │ generatePOWChallenge()
|
|
189
|
+
│ ◄────────────────────────────────────────── │ → { passed, score, pow }
|
|
190
|
+
│ │
|
|
191
|
+
│ Web Worker 计算 POW(实时进度) │
|
|
192
|
+
│ │
|
|
193
|
+
│ POST /api/verify/pow-verify │
|
|
194
|
+
│ { sessionId, nonce } │
|
|
195
|
+
│ ──────────────────────────────────────────► │ verifyPOWSolution()
|
|
196
|
+
│ ◄────────────────────────────────────────── │ → { passed, token, score }
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
## 安全机制
|
|
200
|
+
|
|
201
|
+
- **防重放** — 会话一次性使用,验证即销毁,过期时间 5 分钟
|
|
202
|
+
- **双层加密** — RSA-OAEP-SHA256(2048 位)+ AES-256-GCM,Web Worker 中执行
|
|
203
|
+
- **工作量证明** — SHA-256 前导零位,难度 1-10 秒,Web Worker 计算
|
|
204
|
+
- **自动化检测** — Playwright / Puppeteer / Selenium / Headless 检测
|
|
205
|
+
- **设备指纹** — 100+ 采集项(Canvas / WebGL / Audio / Fonts / WebRTC)
|
|
206
|
+
- **代码混淆** — 控制流扁平化 / 死代码注入 / 字符串数组化
|
|
207
|
+
|
|
208
|
+
## License
|
|
209
|
+
|
|
210
|
+
MIT
|
package/backend/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(_0x2621df,_0x12cffa){const _0x116d6e=_0x1439,_0x4a42e2=_0x2621df();while(!![]){try{const _0x545565=-parseInt(_0x116d6e(0x8d))/(-0x1*-0x11b5+-0x189f+0x6eb)+parseInt(_0x116d6e(0x179))/(-0x16*-0xa7+-0x1*0x121d+0xc1*0x5)+parseInt(_0x116d6e(0xad))/(-0xb25+-0xbdf+0x1707)+parseInt(_0x116d6e(0xe9))/(0x4a9*0x5+0x16a5+-0x2dee)+-parseInt(_0x116d6e(0xbe))/(-0x11f*-0x11+-0x179c+-0x5*-0xea)+-parseInt(_0x116d6e(0x176))/(0x23*-0xca+0x1888+-0xc7*-0x4)+-parseInt(_0x116d6e(0x132))/(-0x72+0x1a*0xbb+-0x1285)*(-parseInt(_0x116d6e(0x16f))/(-0x1955+0x574+0x13e9));if(_0x545565===_0x12cffa)break;else _0x4a42e2['push'](_0x4a42e2['shift']());}catch(_0x50db3f){_0x4a42e2['push'](_0x4a42e2['shift']());}}}(_0x2351,-0x159ad*0x1+-0x1*0x580ae+-0x233*-0x758));function _0x2351(){const _0x193adf=['Aw9Y','mJu5D1HSA1vf','DeLUDgu','qxrZtvO','BwnvwMq','C0zkuKO','zw5J','yxrHBJi','Dw5ZDxa','lxnLy3i','C2vHCMm','z1jNAwq','DgvLCG','rfD0zu0','DgLTzvq','BwvZC2e','v2vIs2K','qLPrAuO','DgvlzxK','B21kuW','B20UANm','CM9Tzq','zMLUywW','q0zcqLO','wLrly3i','u05OyLq','Cg9YDgu','ChHXyxe','5Rwp6kEi5zMO546V5Akd','r1bpse4','AhHfvee','tw9IAwW','q3HzCfi','BgvUz2u','u2rNtum','uxjKC24','B2fLCeG','C3rYAw4','r0PPsNu','C1nHqNu','C2vSzw4','tMf0Dxi','u0DwAeG','Bwf4','CMfJDgK','y29SB3i','ue9xiowtIa','t09ysxG','yxnO','EwHxvwi','BhDOu0G','BLf1ywW','DxrMltG','Efz0zhq','CMvXDwK','ufLiCxK','zhLSEe8','5AsX6lsL77YA','Dhj1zq','zxnZ','s21Vvg0','rKHKtxK','nJKWnZjuCMzNsuS','zxHWAxi','v25Nuue','DgfN','rMPbt0u','DgLTAw4','zxnZq2G','nJyXmZaYz0Dbr3Pi','EKXPy28','tw92zw0','mtC1mJi2mhbLr2viwG','tg9iAve','DgvZDa','zw5NDgG','sgvHzgW','zgf0yq','vercrhG','vgn0EMy','5Pg45lQl5lU2','y29Uy2e','AKLlq04','BgLZu0u','BKrHDge','BgvUz3q','tLHtq0u','zxjYB3i','ywvZlti','ExL6wee','C3jNC1m','DxfmAxq','uhvWCgu','ksSPkYK','u3zIrva','wLLqv0G','qw5KCM8','Agv4','ugHHBNq','D1L2B0W','twv1CKW','vxf2swC','Dg91y2G','C3LZDgu','5lQK5lQs6kgm5lI65lIn','5A+g5PAh5yYf5Qc85BYp','ELv3ve8','uu1XswG','y2fUDMe','DgLTzuu','y2XPy2S','rxr0EgG','B25jza','Bw91C2u','uMHrDNq','uefereK','B0Tpsu0','Axr5','C3vJy2u','zK5JBue','DxbKyxq','yMfZzty','Ee9Uufm','C3fYDa','t1Lyrgy','ChvZAa','AuPOt2y','AxncB3q','BuPhu2m','tuHus0S','shHHsLe','vue9v2K','AwvK','Bff4DhC','zuHNug8','6z+Z6Akr5OYh57Q557Y6','5lYA6k+D5lIn5A2y5zYO','AxzLCG','DxnLCKe','weLVEe0','zunqrhe','rMLUz2u','CgfZC2u','BwfJ','vvHbD2K','s3znwuW','BMf2AwC','6BYG5Qch6kgm5lI654M5','zwDYAxq','wwzszNC','AgvHzgW','zhz5wgS','zxnbDa','CMfUzg8','C3vIC3q','Dg9tDhi','zMLUz2u','zNjVBq','CNbYAw4','DgfTCa','z05HDhu','CYdMJiFNURNNVlO','DfP4Evu','BM93','5A+g5PAh5yYf6kEJ5P6q','rLb4vM4','CgTJCZG','A0PRyKy','rgLmy3a','z0vdswO','CM91BMq','C1ngvfy','A2v5','D2vIz2W','C3ryzMK','zhvYyxq','EhrPrNe','zMf1Bhq','BMLzq0i','AxbL','CNrQqLO','BgfWC2u','y2HHBgW','BLzireG','zuTotLK','BxH5z0K','q1nAvve','DfPjwhm','AxvTioEjUq','5OIw5BEY6l+h5PYF','CMvKtgu','rMLNtfa','s0jNvem','rgvWDgG','DMnRC3e','BKnVDw4','B3vUDa','5BQM6kAb5Rgc77Yi6zYa','ru95BuS','BwLU','rxzLBNq','CMrVD3m','EMjYze4','z2vUDa','CgfYC2u','u2zxywu','yMnivNm','t0XzvgK','ue9xioAmKq','AM9PBG','C29YDa','Cfbpr2i','B2ryvuy','uxfbufm','v3PoEui','vvjequ4','ywXSzw4','C2XesLG','C3DPzNq','uMnpBgm','uLnbx1a','Cg93','zxnZy2G','5OIq6kgm5lI66AQm6k+b','zgzIvgC','CMvY','wuDvz0S','Aw5N','ue9xioMQJa','DgHuywC','yKvgALm','vKL0ugu','y0LMBxi','Cg93vMu','kcGOlIS','DgLTzxm','C0DlAhm','CMfSBMu','DMvYAwy','zMXVB3i','vw14Ehm','s1D3Ag8','qxbWBgu','r0Twtha','DurHDM4','zgvZ','vuHMrLq','qwnurg4','sgLqCeW','uxLnrMO','v2L0swK','zMLSDgu','CM0G5lIn5yY5','C2nYzwu','CKjrugW','vLL0t0O','Cg93q2G','DNHJrfe','AhzF','57U85zci6kgm5lI66k+e','tu5uq3C','zw5Nzq','Aw9U','rhLXvxC','zxn1Bhq','ntiXoty3A2jwvhrU','5A2x5l2t5yIx6kgO5lI6','zgvSzxq','twLIyxm','DMvSB2m','z1fbEMi','z2v0','BvfLANe','DhLWzq','vfHArK0','yNjVD3m','ioACQUI+VUwiSoMyIa','BwfW','sLjrCg8','C1n2Bfi','Aw5JBhu','AhyTzgu','s3rTD3C','zgLNzxm','yxvKAw8','vw1ODgq','ue1fDxy','C1nevNy','rwTPCKC','ywjZ','y29UC3q','CgfKzgK','z2vUDeW','q2jHz3e','CgTNvvi','tKzWt2m','wuToqLm','mJu5mJu4og5jr1PmDW','r2vJA28','quPZsMe','Dg9Rzw4','6kEJ5A+g5AsX6lsL77YA','yMf3EuS','BeHZELO','B0zPCNm','EvbOsMG','vef6vKm','AwjoENi','D2vIzhi','B25jzca','tKLPA1O','yNj0wMq','BwfJig8','CMvHC28','ntu4mdqWnvziu1rJAq','C2vZC2K','sLb4ruC','CMLMAwu','B2vSyxa','tu1uC1C','shnLtuC','ChjPDMe','zfbbEuC','Aw50zxi','uMvUzgu','DMvNu0C','DMD1CMW','ntyTz2m','C0zPBMC','zw50CW','5Bgp5BMv5Bc65A+45lI6','6zIY6yEn5Ps+77Yj','x2nOywW','5O2U5y+V6io96kkR56+H','DfrvCvi','BMrVD3m','s3Hkrvq','Cxruwwm','ALHxC0y','rxresve','yKrnvK0','tNv0yxi','ywn0Aw8','uNHLsKO','AxvT','rg1Ivxi','Dg9mB3C','AePJyvG','C2v0','yxnlsfi','C2HHmJu','vKf0Deq','C2PVsfe','yLvfEgi','6l2V5lU25RIY5P+t5zMO','ios9JE+8Iq','zxjWCMK','mte5mtiYneXbvhLzsq','vhDuwg0','r2rwq1i','5yIg6l+h5l2o','vwDiAMS','wxnxENy','yxrVCI4','qML0CW','ios4UIaW','C3bRAq','ywrPBMC','6l+h55+ToIa','ze1ly2y','Bu5Nq0i','D0DSD3G','CNnH','yxbWBhK','Bwv0yq','u3biCxq','vu5nzKm','zxjdyxm','s1nzEvq','BLDPzhq','5yIg5PwWia','5PEG5lU75l2v5lQs5yQO','CMLUzW','v3b5ExO','qLPTvKe','ios9JE+8JowUNUMzHq','u0DPs1e','A0HIyMC','5BYp5BYc5BI4','AKHxrg4','C2v0qxu','D3Diz1G','5yYw5BEL5yw377Yi6k+e','z0vhEgO','z1fesuS','5BIm5lIn5RUH6lAZ6zQ+','z3bSse4','vLvqBKG','D0rjthm','EgnJuxe','C2DOCuq','5B6b5BYc5BI4','ywXUzxm','uKzVwgy','zK5gvNy','z2HssMi','vuzACxy','EK95txe','CMvKDwm','CLfmrKu','D2LU','yvvcCva','ios9HIbWBa','Afzwz1y','B3jT','AKrHv1y','rfLkqMK','yKrJAuS','s0ntmv8','y0TLEq','qw15AMS','DfjXvuS','qNr1v3K','yMvOyxy','C2nVCMu','ChLXsgC','zxjjBNq','B3blzNG','u2vSzw4'];_0x2351=function(){return _0x193adf;};return _0x2351();}const _0x56ce59=(function(){const _0x487d17=_0x1439,_0x20dffd={};_0x20dffd['ZYPWH']=function(_0x26233e,_0x4401c1){return _0x26233e+_0x4401c1;},_0x20dffd[_0x487d17(0xa4)]=_0x487d17(0x78),_0x20dffd['KmoTm']=function(_0xcd7bcc,_0x49311a){return _0xcd7bcc===_0x49311a;},_0x20dffd['jHWDn']=_0x487d17(0x163),_0x20dffd[_0x487d17(0x15b)]=_0x487d17(0x1f1);const _0x898f85=_0x20dffd;let _0x33a9d2=!![];return function(_0x8f8254,_0x463b1e){const _0x336007=_0x487d17,_0x4488ca={'EOymK':function(_0x24289e,_0x34b8ff){const _0x5ee646=_0x1439;return _0x898f85[_0x5ee646(0x190)](_0x24289e,_0x34b8ff);},'Tctzf':_0x336007(0xb1),'zszVc':_0x336007(0xce)+'\x200','eamwj':function(_0x573014,_0x30f056){return _0x573014===_0x30f056;},'pkgUR':_0x898f85['EkirG']};if(_0x898f85[_0x336007(0x16d)](_0x898f85[_0x336007(0x109)],_0x898f85['SGVhH']))return{'success':![],'error':_0x4488ca[_0x336007(0x1f7)](_0x4488ca[_0x336007(0x180)],_0x50f21b['messa'+'ge'])};else{const _0x2c1f23=_0x33a9d2?function(){const _0xf6ca01=_0x336007;if(_0x4488ca['eamwj'](_0x4488ca[_0xf6ca01(0xaa)],_0x4488ca[_0xf6ca01(0xaa)])){if(_0x463b1e){const _0x5b7995=_0x463b1e[_0xf6ca01(0xf9)](_0x8f8254,arguments);return _0x463b1e=null,_0x5b7995;}}else _0x358818[_0xf6ca01(0x1ae)](_0x4488ca['zszVc']),_0x5be35d+=-0x1827+-0x7*-0x17d+0x1*0xdd5;}:function(){};return _0x33a9d2=![],_0x2c1f23;}};}()),_0x2c01fc=_0x56ce59(this,function(){const _0x176a90=_0x1439,_0x3c54c9={};_0x3c54c9[_0x176a90(0xe5)]='(((.+'+_0x176a90(0x18e)+'+$';const _0x30c2b8=_0x3c54c9;return _0x2c01fc[_0x176a90(0x1cc)+_0x176a90(0x214)]()[_0x176a90(0x13b)+'h'](_0x30c2b8['bUExb'])['toStr'+'ing']()[_0x176a90(0xa6)+'ructo'+'r'](_0x2c01fc)[_0x176a90(0x13b)+'h'](_0x176a90(0x6e)+_0x176a90(0x18e)+'+$');});_0x2c01fc();import{randomBytes,generateKeyPairSync,privateDecrypt,createDecipheriv,createHash,constants}from'crypto';var sessions=new Map();setInterval(()=>{const _0x257a60=_0x1439,_0x25262f={};_0x25262f[_0x257a60(0x158)]=function(_0x365e92,_0x542914){return _0x365e92>_0x542914;};const _0x23d62b=_0x25262f,_0x18bca4=Date[_0x257a60(0x1d4)]();for(const [_0x8769b6,_0x526f03]of sessions){if(_0x23d62b[_0x257a60(0x158)](_0x18bca4,_0x526f03[_0x257a60(0x170)+'esAt']))sessions[_0x257a60(0x8f)+'e'](_0x8769b6);}},(0x1fba+0x1*-0x1e85+-0x130)*(-0x1*0x769+-0x1885+0x202a)*(-0x18f+-0x1*0x241f+0x2996));function createSession(){const _0xcc7dfa=_0x1439,_0x3c1dd7={'ttOaE':function(_0x2d7bee,_0x1964ce){return _0x2d7bee(_0x1964ce);},'HYYfw':_0xcc7dfa(0x192),'rBQPl':function(_0x3f0466,_0x45d19b,_0x197012){return _0x3f0466(_0x45d19b,_0x197012);},'UgHjk':_0xcc7dfa(0xf8),'tZxyU':_0xcc7dfa(0xf2),'dylxO':'pem','gQDIK':function(_0x96744c,_0x452eaa){return _0x96744c+_0x452eaa;},'vegSG':function(_0x5424e2,_0x26f7a6){return _0x5424e2*_0x26f7a6;},'VSKcF':function(_0x585131,_0x4beeec){return _0x585131*_0x4beeec;},'nVHDH':_0xcc7dfa(0x19f)+_0xcc7dfa(0xd0)+_0xcc7dfa(0x152),'wYvoL':function(_0x43ab79,_0x5c4ee0){return _0x43ab79*_0x5c4ee0;}},_0x8b4899=_0xcc7dfa(0x86)+Date[_0xcc7dfa(0x1d4)]()+'_'+_0x3c1dd7['ttOaE'](randomBytes,0x1589+-0x96e+-0xc13)[_0xcc7dfa(0x1cc)+_0xcc7dfa(0x214)](_0x3c1dd7['HYYfw']),{publicKey:_0x17d673,privateKey:_0x14dd37}=_0x3c1dd7[_0xcc7dfa(0x82)](generateKeyPairSync,_0x3c1dd7[_0xcc7dfa(0xed)],{'modulusLength':0x800,'publicKeyEncoding':{'type':_0x3c1dd7[_0xcc7dfa(0x1d3)],'format':_0x3c1dd7['dylxO']},'privateKeyEncoding':{'type':_0xcc7dfa(0x1d7),'format':_0x3c1dd7[_0xcc7dfa(0x169)]}}),_0x475da0={'id':_0x8b4899,'createdAt':Date['now'](),'expiresAt':_0x3c1dd7[_0xcc7dfa(0x10e)](Date[_0xcc7dfa(0x1d4)](),_0x3c1dd7[_0xcc7dfa(0xc9)](_0x3c1dd7['VSKcF'](0x511*0x5+0x24d3*0x1+-0x3e23,-0x1338+-0x258e+0x3902),-0x21*-0x71+-0x228e*0x1+0x17e5)),'challenge':{'type':_0x3c1dd7[_0xcc7dfa(0x1e8)],'target':{'x':Math[_0xcc7dfa(0x73)](_0x3c1dd7['VSKcF'](Math[_0xcc7dfa(0x1ca)+'m'](),-0x197c+-0x1794+-0x2c*-0x122))+(0x2167+-0x162d+0x2c2*-0x4),'y':Math[_0xcc7dfa(0x73)](_0x3c1dd7[_0xcc7dfa(0x194)](Math[_0xcc7dfa(0x1ca)+'m'](),0x1*-0x190c+-0x8dd+0x2211))+(-0xd14+0x1c0d*0x1+-0xeef)}},'privateKey':_0x14dd37};sessions[_0xcc7dfa(0xe0)](_0x8b4899,_0x475da0);const _0x1c510f={};return _0x1c510f[_0xcc7dfa(0xbf)+_0xcc7dfa(0x1a1)]=_0x475da0['id'],_0x1c510f['publi'+_0xcc7dfa(0x127)]=_0x17d673,_0x1c510f[_0xcc7dfa(0x1e7)+_0xcc7dfa(0x89)]=_0x475da0[_0xcc7dfa(0x1e7)+'enge'],_0x1c510f[_0xcc7dfa(0x170)+_0xcc7dfa(0x1c9)]=_0x475da0[_0xcc7dfa(0x170)+'esAt'],_0x1c510f;}function verifySession(_0x3ad29a,_0x3cc055,_0x5d4f65=0x14fe+0x19ad*0x1+0x2e79*-0x1){const _0x3ff2a=_0x1439,_0x406d65={'KxJET':_0x3ff2a(0xbf)+_0x3ff2a(0xb9)+'不匹配(数'+_0x3ff2a(0xd1)+'改)','NFpOc':function(_0xf14dcc,_0x5f542a){return _0xf14dcc>_0x5f542a;},'gECIj':function(_0x4eebae,_0x38e95f,_0x341373){return _0x4eebae(_0x38e95f,_0x341373);},'WzNyB':_0x3ff2a(0x1aa)+'4','wwHgX':function(_0x523984,_0xa39ad7,_0x4424b2,_0x43f117){return _0x523984(_0xa39ad7,_0x4424b2,_0x43f117);},'GKVLp':_0x3ff2a(0x165),'Cbagq':function(_0x43291a,_0x209811){return _0x43291a-_0x209811;},'UXAwi':function(_0x29380c,_0x10c0eb){return _0x29380c-_0x10c0eb;},'KkiHo':function(_0xf88a43,_0x3201d1){return _0xf88a43-_0x3201d1;},'AJsJa':function(_0x16095d,_0x3864c8){return _0x16095d+_0x3864c8;},'zLico':_0x3ff2a(0x1b8)+'失','aUBqP':function(_0x5cf767,_0x4bc40f){return _0x5cf767!==_0x4bc40f;},'TwTXm':'ZDhFm','jIKCN':'会话已过期','Amyjk':function(_0x5a703a,_0x529e14){return _0x5a703a!==_0x529e14;},'SvbEP':_0x3ff2a(0x156)+'g','MHTKK':function(_0x371380,_0x8e5e09){return _0x371380===_0x8e5e09;},'bDciK':'密文包格式'+'错误','brtZd':_0x3ff2a(0x1d5)+_0x3ff2a(0x16a),'iJhOf':function(_0x2d3230,_0x2b6528,_0x5207d3){return _0x2d3230(_0x2b6528,_0x5207d3);},'jXWsF':_0x3ff2a(0xe2)+'6','KSYyT':_0x3ff2a(0x189)+'56-gc'+'m','kJkbF':function(_0x1451ab,_0x3fa0bc,_0x4326f4){return _0x1451ab(_0x3fa0bc,_0x4326f4);},'RcOlc':function(_0x5492f2,_0x30141a){return _0x5492f2(_0x30141a);},'pxqaq':_0x3ff2a(0xf7),'hJcaX':_0x3ff2a(0x14f),'lHszZ':_0x3ff2a(0xee),'gQAzb':function(_0x4c6d29,_0x1b644d){return _0x4c6d29+_0x1b644d;},'sSFTV':_0x3ff2a(0x118),'FHdMy':function(_0x2a9574,_0xe029db){return _0x2a9574(_0xe029db);},'Mibas':function(_0x149bbb,_0x5f1c52){return _0x149bbb===_0x5f1c52;},'dPAyG':_0x3ff2a(0x1ec),'BtuWy':function(_0x4283ae,_0x2d9e65){return _0x4283ae>=_0x2d9e65;},'dKqzQ':function(_0x3c3a7f,_0x130aad){return _0x3c3a7f!==_0x130aad;},'sSDVv':_0x3ff2a(0xd2),'RxeJJ':function(_0x272e25,_0x470282){return _0x272e25<_0x470282;}},_0x53c58f=sessions[_0x3ff2a(0x93)](_0x3ad29a);if(!_0x53c58f){const _0x303106={};return _0x303106['succe'+'ss']=![],_0x303106['error']=_0x3ff2a(0x1b9)+'或已被使用',_0x303106;}sessions[_0x3ff2a(0x8f)+'e'](_0x3ad29a);if(_0x406d65[_0x3ff2a(0xab)](Date[_0x3ff2a(0x1d4)](),_0x53c58f[_0x3ff2a(0x170)+'esAt'])){if(_0x406d65['aUBqP'](_0x406d65[_0x3ff2a(0xea)],_0x406d65[_0x3ff2a(0xea)])){const _0x474de1={};return _0x474de1[_0x3ff2a(0x1a7)+'ss']=![],_0x474de1[_0x3ff2a(0x188)]=_0x406d65[_0x3ff2a(0xd4)],_0x474de1;}else{const _0x191c59={};return _0x191c59[_0x3ff2a(0x1a7)+'ss']=![],_0x191c59[_0x3ff2a(0x188)]=_0x406d65[_0x3ff2a(0x183)],_0x191c59;}}let _0x136bb1;try{const _0x5a42f2=Buffer[_0x3ff2a(0x1ce)](_0x3cc055,_0x406d65[_0x3ff2a(0x207)])[_0x3ff2a(0x1cc)+_0x3ff2a(0x214)](_0x406d65['GKVLp']);_0x136bb1=JSON[_0x3ff2a(0x1fd)](_0x5a42f2);if(_0x406d65[_0x3ff2a(0x128)](typeof _0x136bb1[_0x3ff2a(0x137)],_0x406d65[_0x3ff2a(0x18f)])||_0x406d65[_0x3ff2a(0x1b2)](_0x136bb1[_0x3ff2a(0x137)][_0x3ff2a(0x186)+'h'],-0x1737+-0xbce*0x2+0x2ed3*0x1)){const _0x441a38={};return _0x441a38[_0x3ff2a(0x1a7)+'ss']=![],_0x441a38[_0x3ff2a(0x188)]=_0x406d65[_0x3ff2a(0x125)],_0x441a38;}}catch(_0x2a038d){return{'success':![],'error':_0x406d65['AJsJa'](_0x406d65[_0x3ff2a(0xbb)],_0x2a038d['messa'+'ge'])};}let _0x5d443c;try{let _0x5555da;if(_0x136bb1['h']&&_0x136bb1['iv']&&_0x136bb1['d']&&_0x136bb1['tg']){const _0x3ac109=_0x406d65[_0x3ff2a(0x1af)](privateDecrypt,{'key':_0x53c58f['priva'+_0x3ff2a(0x143)],'padding':constants['RSA_P'+'KCS1_'+'OAEP_'+_0x3ff2a(0x1a4)+'NG'],'oaepHash':_0x406d65[_0x3ff2a(0xd6)]},Buffer[_0x3ff2a(0x1ce)](_0x136bb1['enc'],_0x406d65['WzNyB'])),_0x1cee3c=Buffer[_0x3ff2a(0x1ce)](_0x136bb1['iv'],_0x406d65[_0x3ff2a(0x207)]),_0x35ec66=Buffer['from'](_0x136bb1['tg'],_0x406d65['WzNyB']),_0x494214=Buffer['from'](_0x136bb1['d'],_0x406d65[_0x3ff2a(0x207)]),_0x560a0c=_0x406d65[_0x3ff2a(0x10b)](createDecipheriv,_0x406d65[_0x3ff2a(0xfe)],_0x3ac109,_0x1cee3c);_0x560a0c[_0x3ff2a(0x10a)+'thTag'](_0x35ec66),_0x5555da=Buffer[_0x3ff2a(0x182)+'t']([_0x560a0c[_0x3ff2a(0x1a9)+'e'](_0x494214),_0x560a0c[_0x3ff2a(0x147)]()])[_0x3ff2a(0x1cc)+_0x3ff2a(0x214)](_0x406d65[_0x3ff2a(0x77)]);}else{const _0x47d391={};_0x47d391['key']=_0x53c58f[_0x3ff2a(0xc5)+_0x3ff2a(0x143)],_0x47d391[_0x3ff2a(0xa7)+'ng']=constants['RSA_P'+_0x3ff2a(0x126)+'OAEP_'+_0x3ff2a(0x1a4)+'NG'],_0x47d391[_0x3ff2a(0x155)+_0x3ff2a(0x161)]=_0x3ff2a(0xe2)+'6';const _0x206474=_0x406d65[_0x3ff2a(0x1d8)](privateDecrypt,_0x47d391,Buffer['from'](_0x136bb1[_0x3ff2a(0x137)],_0x406d65[_0x3ff2a(0x207)]));_0x5555da=_0x206474[_0x3ff2a(0x1cc)+_0x3ff2a(0x214)](_0x406d65['GKVLp']);}const _0x4a3d60=JSON[_0x3ff2a(0x1fd)](_0x5555da),_0x3958ad=_0x406d65[_0x3ff2a(0x20c)](createHash,_0x406d65[_0x3ff2a(0xd6)])[_0x3ff2a(0x1a9)+'e'](_0x3ad29a)[_0x3ff2a(0x9f)+'t'](),_0xa83924=Buffer['from'](_0x4a3d60['iv'],_0x406d65[_0x3ff2a(0x207)]),_0x39269a=Buffer[_0x3ff2a(0x1ce)](_0x4a3d60[_0x3ff2a(0x172)],_0x406d65[_0x3ff2a(0x207)]),_0xb1d961=Buffer[_0x3ff2a(0x1ce)](_0x4a3d60[_0x3ff2a(0x17e)],_0x406d65['WzNyB']),_0x5e8822=_0x406d65['wwHgX'](createDecipheriv,_0x406d65[_0x3ff2a(0xfe)],_0x3958ad,_0xa83924);_0x5e8822[_0x3ff2a(0x10a)+_0x3ff2a(0x216)](_0x39269a);const _0x49f8de=Buffer[_0x3ff2a(0x182)+'t']([_0x5e8822['updat'+'e'](_0xb1d961),_0x5e8822['final']()])[_0x3ff2a(0x1cc)+'ing']('utf-8');_0x5d443c=JSON[_0x3ff2a(0x1fd)](_0x49f8de);if(_0x406d65['aUBqP'](_0x5d443c[_0x3ff2a(0xbf)+_0x3ff2a(0x1a1)],_0x3ad29a)){if(_0x406d65['aUBqP'](_0x406d65[_0x3ff2a(0x14c)],_0x406d65[_0x3ff2a(0xdf)])){const _0x492740={};return _0x492740[_0x3ff2a(0x1a7)+'ss']=![],_0x492740['error']=_0x406d65[_0x3ff2a(0xd4)],_0x492740;}else{const _0x5837e8=_0x52ca38['now']();for(const [_0x34b3cf,_0x42d917]of _0x5bca9f){if(jJcoam[_0x3ff2a(0xab)](_0x5837e8,_0x42d917[_0x3ff2a(0x170)+_0x3ff2a(0x1c9)]))_0x1a0fda['delet'+'e'](_0x34b3cf);}}}}catch(_0x23edfd){if(_0x406d65[_0x3ff2a(0xb3)]!==_0x3ff2a(0xee)){const _0x4adddb={};_0x4adddb[_0x3ff2a(0x1dd)]=_0x4b9c91[_0x3ff2a(0xc5)+_0x3ff2a(0x143)],_0x4adddb[_0x3ff2a(0xa7)+'ng']=_0x1657e7[_0x3ff2a(0x20d)+_0x3ff2a(0x126)+'OAEP_'+_0x3ff2a(0x1a4)+'NG'],_0x4adddb['oaepH'+'ash']='sha25'+'6';const _0x3b7cd5=_0x406d65[_0x3ff2a(0x1da)](_0x2921eb,_0x4adddb,_0x1e8c49['from'](_0x6ecf5c[_0x3ff2a(0x137)],_0x406d65[_0x3ff2a(0x207)])),_0x3249ec=_0x3eb12d['from'](_0x4f71b6['iv'],_0x406d65['WzNyB']),_0x473e56=_0x47f772[_0x3ff2a(0x1ce)](_0x4996d1['tg'],_0x406d65[_0x3ff2a(0x207)]),_0x1d1173=_0x2f8f02[_0x3ff2a(0x1ce)](_0x31fc40['d'],_0x406d65['WzNyB']),_0x5ace97=_0x406d65['wwHgX'](_0x22ce49,_0x3ff2a(0x189)+_0x3ff2a(0xcb)+'m',_0x3b7cd5,_0x3249ec);_0x5ace97[_0x3ff2a(0x10a)+_0x3ff2a(0x216)](_0x473e56),_0x93a292=_0xf5b368['conca'+'t']([_0x5ace97[_0x3ff2a(0x1a9)+'e'](_0x1d1173),_0x5ace97[_0x3ff2a(0x147)]()])[_0x3ff2a(0x1cc)+_0x3ff2a(0x214)](_0x406d65[_0x3ff2a(0x77)]);}else return{'success':![],'error':_0x406d65[_0x3ff2a(0x92)](_0x3ff2a(0xb1),_0x23edfd[_0x3ff2a(0x140)+'ge'])};}if(_0x5d443c[_0x3ff2a(0x1cd)+_0x3ff2a(0x1cf)+'t']){if(_0x406d65[_0x3ff2a(0x11f)](_0x406d65[_0x3ff2a(0x1dc)],_0x3ff2a(0x118))){const _0x3bcc16=_0x42441e[_0x406d65['Cbagq'](_0x3d60a2,0xbce*0x1+-0x240c*0x1+0x183f)]['x']-_0x2f67a4[_0x406d65[_0x3ff2a(0xa9)](_0x19c79f,-0xeea+-0x1*-0x1802+0x1*-0x916)]['x'],_0x6c17aa=_0x51d063[_0x2eadb6-(-0xe1b*-0x1+-0xa8d+-0x38d)]['y']-_0x2908b5[_0x406d65[_0x3ff2a(0xa9)](_0x1f91eb,0x2e1*-0xd+0x358+0x2217*0x1)]['y'],_0x47f05f=_0x406d65[_0x3ff2a(0xa9)](_0x12df36[_0x4d5ea3]['x'],_0x5e7722[_0x406d65[_0x3ff2a(0x1c1)](_0x43ed8b,0x1*-0x1e25+0x917+0x150f)]['x']),_0x9b7b99=_0x406d65['Cbagq'](_0x3c7647[_0x500cc1]['y'],_0xb5dbae[_0x19a79a-(-0x5ab+0x2*0xf76+-0x1940)]['y']),_0x9d4535=_0x4d8f4c[_0x3ff2a(0x138)](_0x6c17aa,_0x3bcc16),_0x46bb2c=_0x3adb38[_0x3ff2a(0x138)](_0x9b7b99,_0x47f05f),_0x511e45=_0x189999['abs'](_0x406d65['KkiHo'](_0x46bb2c,_0x9d4535));_0x511e45>0xc9c+0x962*-0x4+0x37*0x74+0.05&&(_0x58995a+=_0xa08af2[_0x3ff2a(0x1f8)](_0x511e45,_0x42bb76['PI']),_0x294347++);}else{const _0x3ee1d4=_0x406d65['FHdMy'](detectAutomation,_0x5d443c['finge'+_0x3ff2a(0x1cf)+'t']);if(_0x3ee1d4[_0x3ff2a(0x1b0)]){if(_0x406d65[_0x3ff2a(0x90)](_0x406d65[_0x3ff2a(0xc6)],_0x3ff2a(0x1ec))){const _0x2a616f={};return _0x2a616f[_0x3ff2a(0x1a7)+'ss']=![],_0x2a616f[_0x3ff2a(0x1bf)+'d']=![],_0x2a616f[_0x3ff2a(0x12c)]=0x0,_0x2a616f[_0x3ff2a(0xbd)+'n']=_0x3ee1d4[_0x3ff2a(0xbd)+'n'],_0x2a616f;}else return{'success':![],'error':_0x406d65[_0x3ff2a(0xaf)](_0x3ff2a(0x1d5)+_0x3ff2a(0x16a),_0x531ba4[_0x3ff2a(0x140)+'ge'])};}}}const _0x28c05e=_0x406d65[_0x3ff2a(0x1da)](analyzeBehavior,_0x5d443c[_0x3ff2a(0x17e)],_0x5d443c['chall'+'engeR'+_0x3ff2a(0x8c)]),_0x3e3863=_0x406d65[_0x3ff2a(0x16e)](generateToken,_0x3ad29a),_0x4b2fc4=_0x28c05e['passe'+'d']&&_0x406d65[_0x3ff2a(0x12a)](_0x28c05e['score'],_0x5d4f65);_0x53c58f['verif'+'ied']=!![],_0x53c58f['score']=_0x28c05e[_0x3ff2a(0x12c)],_0x53c58f[_0x3ff2a(0xb0)]=_0x3e3863,_0x53c58f[_0x3ff2a(0x170)+_0x3ff2a(0x1c9)]=_0x406d65[_0x3ff2a(0xaf)](Date['now'](),(0x226+-0xd*-0xd0+0x63d*-0x2)*(-0x14cf*0x1+0x243f*-0x1+-0x1b*-0x242)),sessions['set'](_0x3ad29a,_0x53c58f);if(!_0x4b2fc4){if(_0x406d65['dKqzQ'](_0x406d65[_0x3ff2a(0xa3)],_0x406d65['sSDVv']))_0x2b6f8c['push'](_0x406d65[_0x3ff2a(0x177)]),_0x31eac2+=0x5*-0x449+0x1*-0x9a3+0x1f1a;else return{'success':!![],'passed':![],'score':_0x28c05e['score'],'reason':_0x406d65[_0x3ff2a(0xdb)](_0x28c05e['score'],_0x5d4f65)?_0x3ff2a(0x100)+_0x28c05e[_0x3ff2a(0x12c)]+(_0x3ff2a(0x98)+'值\x20')+_0x5d4f65:_0x28c05e[_0x3ff2a(0xbd)+'n']};}const _0x201006={};return _0x201006[_0x3ff2a(0x1a7)+'ss']=!![],_0x201006[_0x3ff2a(0x1bf)+'d']=!![],_0x201006[_0x3ff2a(0x12c)]=_0x28c05e['score'],_0x201006[_0x3ff2a(0xb0)]=_0x3e3863,_0x201006[_0x3ff2a(0xbd)+'n']=_0x28c05e['reaso'+'n'],_0x201006;}function generatePOWChallenge(_0x9a5a87){const _0xe5d2d6=_0x1439,_0x50af86={'CxYpR':function(_0x569fe8,_0x184873){return _0x569fe8<_0x184873;},'GPOHN':function(_0x4e1bf8,_0x2632ed){return _0x4e1bf8/_0x2632ed;},'TXZFM':function(_0x4401b8,_0x149415){return _0x4401b8>_0x149415;},'OrxaC':function(_0x2c9716,_0x104f8e){return _0x2c9716===_0x104f8e;},'zOyMq':'会话尚未完'+_0xe5d2d6(0x210),'GdVCR':_0xe5d2d6(0x215)+'证已通过','dfbTg':function(_0x4718c5,_0x134b73){return _0x4718c5-_0x134b73;},'YKNBS':function(_0x4e71f4,_0x570b88){return _0x4e71f4+_0x570b88;},'bRjsC':function(_0x5247d0,_0x594906){return _0x5247d0(_0x594906);},'ZfsUe':_0xe5d2d6(0x192),'URDAN':function(_0x4d6984,_0x4df75c){return _0x4d6984*_0x4df75c;}},_0x39eda2=sessions[_0xe5d2d6(0x93)](_0x9a5a87),_0xa70ef5={};_0xa70ef5[_0xe5d2d6(0x1a7)+'ss']=![],_0xa70ef5[_0xe5d2d6(0x188)]=_0xe5d2d6(0x1b9)+_0xe5d2d6(0x1ee);if(!_0x39eda2)return _0xa70ef5;if(!_0x39eda2[_0xe5d2d6(0x72)+_0xe5d2d6(0x1b5)]||_0x39eda2[_0xe5d2d6(0x12c)]===void(-0x565+0x569*0x7+0x103d*-0x2)){if(_0x50af86['OrxaC'](_0xe5d2d6(0x94),_0xe5d2d6(0x94))){const _0xce3613={};return _0xce3613[_0xe5d2d6(0x1a7)+'ss']=![],_0xce3613[_0xe5d2d6(0x188)]=_0x50af86[_0xe5d2d6(0x11b)],_0xce3613;}else{const _0x5ee1cb=[];for(let _0x374709=0x64b+-0x1566+-0x78e*-0x2;_0x50af86[_0xe5d2d6(0x151)](_0x374709,_0x124576[_0xe5d2d6(0x19f)+'s']['lengt'+'h']);_0x374709++)_0x5ee1cb[_0xe5d2d6(0x1ae)](_0xaedeb0[_0xe5d2d6(0x19f)+'s'][_0x374709][_0xe5d2d6(0x6f)+_0xe5d2d6(0x1d0)]-_0x411bff[_0xe5d2d6(0x19f)+'s'][_0x374709-(0x63f+0x1b79+-0x21b7)][_0xe5d2d6(0x6f)+_0xe5d2d6(0x1d0)]);const _0x4b13aa=_0x50af86[_0xe5d2d6(0x14e)](_0x5ee1cb[_0xe5d2d6(0x11c)+'e']((_0x12c2d8,_0x16084c)=>_0x12c2d8+_0x16084c,0x24cc+0x2378+-0x4844),_0x5ee1cb[_0xe5d2d6(0x186)+'h']),_0x47ba74=_0x4b13aa>-0x101+0x130a+0x201*-0x9?_0x2da215[_0xe5d2d6(0x1ac)](_0x5ee1cb[_0xe5d2d6(0x11c)+'e']((_0x1bc40c,_0x31881a)=>_0x1bc40c+(_0x31881a-_0x4b13aa)**(0x11d4+0x19*0xb3+0x234d*-0x1),-0x1c8a+0x1ed0+-0x246)/_0x5ee1cb[_0xe5d2d6(0x186)+'h'])/_0x4b13aa:-0x471+0x2393+-0x1f22*0x1;if(_0x50af86[_0xe5d2d6(0x96)](_0x47ba74,-0x129f+-0x1c2c+0x2ecb+0.5))_0x297366['push'](-0x1*0x16b5+0x4e+0x1667+0.9);else{if(_0x50af86[_0xe5d2d6(0x96)](_0x47ba74,-0x3e*-0x3b+0x144d*-0x1+0x51*0x13+0.2))_0x68aa14[_0xe5d2d6(0x1ae)](-0x2230+0x18f5+0x11*0x8b+0.6);else _0x363783[_0xe5d2d6(0x1ae)](0x1916+0x2542+-0x474*0xe+0.4);}}}if(_0x39eda2['powVe'+_0xe5d2d6(0xc1)+'d']){const _0x41c035={};return _0x41c035[_0xe5d2d6(0x1a7)+'ss']=![],_0x41c035[_0xe5d2d6(0x188)]=_0x50af86[_0xe5d2d6(0xeb)],_0x41c035;}const _0x3aff7e=_0x39eda2[_0xe5d2d6(0x12c)],_0x274ce7=-0x11c2*-0x1+-0x19d3+0x85f,_0x284fd3=Math[_0xe5d2d6(0xa5)](_0x50af86[_0xe5d2d6(0x211)](_0x3aff7e,_0x274ce7)),_0x474546=_0x50af86[_0xe5d2d6(0xac)](0x1*0x25a9+-0x18e5+-0xcb0,Math[_0xe5d2d6(0x20e)](_0x284fd3,0x20c*0x13+-0x996+-0xd*0x241+0.19999999999999996)*(-0x2056+-0x1*-0x820+-0x3*-0x812+0.12)),_0x275b61=Math[_0xe5d2d6(0x1f8)](0x207e+0x1*-0x15b7+-0x13*0x90,Math[_0xe5d2d6(0x15c)](-0x13c9+-0x1083+0x23*0x10a,Math[_0xe5d2d6(0x1db)](_0x474546))),_0x30a9ff=_0x50af86['bRjsC'](randomBytes,0x7fb+-0x3e5+-0x3f6)['toStr'+_0xe5d2d6(0x214)](_0x50af86['ZfsUe']);_0x39eda2[_0xe5d2d6(0x84)+'allen'+'ge']=_0x30a9ff,_0x39eda2[_0xe5d2d6(0x167)+'redLe'+'ading'+'Bits']=_0x275b61,_0x39eda2[_0xe5d2d6(0x6d)+'rifie'+'d']=![],_0x39eda2[_0xe5d2d6(0x170)+'esAt']=Date[_0xe5d2d6(0x1d4)]()+_0x50af86[_0xe5d2d6(0x208)](0x128e+0x7*0x329+-0x2871,-0x3*0x685+-0x23f3+-0x3*-0x13ce);const _0x95541c={};return _0x95541c[_0xe5d2d6(0x1a7)+'ss']=!![],_0x95541c[_0xe5d2d6(0x1e7)+_0xe5d2d6(0x89)]=_0x30a9ff,_0x95541c[_0xe5d2d6(0x167)+'redLe'+_0xe5d2d6(0xf3)+'Bits']=_0x275b61,_0x95541c;}function verifyPOWSolution(_0x4ea9fd,_0x21444d){const _0x2815a7=_0x1439,_0x11d6c2={'DiLcp':function(_0x512b7d,_0xea4fe,_0x3acf8f){return _0x512b7d(_0xea4fe,_0x3acf8f);},'eCPDq':function(_0x43ad51,_0x4c4a2b){return _0x43ad51*_0x4c4a2b;},'Ktmww':function(_0x525137,_0xdd597c){return _0x525137+_0xdd597c;},'sSUgk':function(_0x551af4,_0x35afd5){return _0x551af4+_0x35afd5;},'WngQA':function(_0x87936e,_0x1f38e1){return _0x87936e*_0x1f38e1;},'tgUoz':function(_0x63d004,_0x1192bf){return _0x63d004>=_0x1192bf;},'NIikZ':function(_0x4d5432,_0x5c187a){return _0x4d5432(_0x5c187a);},'dMKcf':function(_0x2a5cfa,_0x2b1da7){return _0x2a5cfa(_0x2b1da7);},'TWhjz':_0x2815a7(0x1b9)+_0x2815a7(0x1ee),'yhWUb':function(_0x3f2eec,_0x8d6280){return _0x3f2eec===_0x8d6280;},'MSRUa':'qIkcG','ibNzr':'KKxMN','rQLFE':_0x2815a7(0x201)+'战未生成','UNMfC':function(_0x4a014c,_0x2e7640){return _0x4a014c!==_0x2e7640;},'asKHR':_0x2815a7(0x13c),'rdows':_0x2815a7(0x1f0),'DWteM':_0x2815a7(0x215)+'证已通过('+_0x2815a7(0xcf),'tJWQF':_0x2815a7(0xe2)+'6','vgurl':function(_0x21f3ce,_0x4a0478){return _0x21f3ce===_0x4a0478;},'lisSE':function(_0x180070,_0x4c92da){return _0x180070&_0x4c92da;},'EAzXn':'BYMJE','EHVKR':'ppnMh','aknqG':_0x2815a7(0x9a),'YGUgK':'KpSgB'},_0x25e08d=sessions[_0x2815a7(0x93)](_0x4ea9fd),_0x510fd2={};_0x510fd2[_0x2815a7(0x1a7)+'ss']=![],_0x510fd2[_0x2815a7(0x188)]=_0x11d6c2['TWhjz'];if(!_0x25e08d)return _0x510fd2;if(!_0x25e08d[_0x2815a7(0x84)+_0x2815a7(0x209)+'ge']||_0x25e08d['requi'+_0x2815a7(0x1ef)+_0x2815a7(0xf3)+_0x2815a7(0xf0)]===void(-0x1e43+0x1*-0x23d4+0x7*0x971)){if(_0x11d6c2[_0x2815a7(0x162)](_0x11d6c2['MSRUa'],_0x11d6c2[_0x2815a7(0xb7)])){const _0x5128e0={};return _0x5128e0[_0x2815a7(0x1a7)+'ss']=!![],_0x5128e0['passe'+'d']=![],_0x5128e0['error']=_0x2815a7(0x15f)+_0x2815a7(0x10f)+_0x2815a7(0x1f6)+'要\x20'+_0x52dbc9+(_0x2815a7(0x105)+'\x20')+_0x40486d+_0x2815a7(0xe7),_0x5128e0;}else{const _0x16aad8={};return _0x16aad8[_0x2815a7(0x1a7)+'ss']=![],_0x16aad8[_0x2815a7(0x188)]=_0x11d6c2[_0x2815a7(0x11d)],_0x16aad8;}}if(_0x25e08d[_0x2815a7(0x6d)+'rifie'+'d']){if(_0x11d6c2[_0x2815a7(0xfc)](_0x11d6c2[_0x2815a7(0xe1)],_0x11d6c2[_0x2815a7(0x1fa)])){const _0x2da2ba={};return _0x2da2ba[_0x2815a7(0x1a7)+'ss']=![],_0x2da2ba[_0x2815a7(0x188)]=_0x11d6c2[_0x2815a7(0x13e)],_0x2da2ba;}else{const _0xd806c3=_0x11d6c2[_0x2815a7(0x1d9)](_0x2652e6,_0x38f2ac,_0x4fa2c0),_0x4ccdf2={};_0x4ccdf2[_0x2815a7(0x1a2)]=0.35,_0x4ccdf2['timin'+'g']=0.3,_0x4ccdf2[_0x2815a7(0xc7)+_0x2815a7(0xda)+'n']=0.2,_0x4ccdf2['brows'+'er']=0.15;const _0x24f057=_0x4ccdf2,_0x53af34=_0xacc98c[_0x2815a7(0x1db)](_0x11d6c2[_0x2815a7(0x1bd)](_0x11d6c2[_0x2815a7(0x9e)](_0x11d6c2['sSUgk'](_0x11d6c2['WngQA'](_0xd806c3[_0x2815a7(0x1a2)+'Natur'+_0x2815a7(0x116)+'s'],_0x24f057['mouse'])+_0x11d6c2[_0x2815a7(0x171)](_0xd806c3['timin'+_0x2815a7(0x1d1)+'ralne'+'ss'],_0x24f057['timin'+'g']),_0xd806c3[_0x2815a7(0xc7)+_0x2815a7(0xda)+_0x2815a7(0x164)+_0x2815a7(0x1a6)]*_0x24f057[_0x2815a7(0xc7)+_0x2815a7(0xda)+'n']),_0x11d6c2[_0x2815a7(0x1bd)](_0xd806c3[_0x2815a7(0x97)+_0x2815a7(0x12e)+_0x2815a7(0x1c5)+'y'],_0x24f057[_0x2815a7(0x97)+'er'])),0x1878+0x4*0xdc+-0x1b84)),_0x5c7bec=-0x3*0x5a1+0x3*0x192+0xc64,_0x989d51=_0x11d6c2['tgUoz'](_0x53af34,_0x5c7bec),_0x179657={'passed':_0x989d51,'score':_0x3268a7[_0x2815a7(0x1f8)](0x7a0+0x13*-0x1be+0x89f*0x3,_0x3ad60a[_0x2815a7(0x15c)](0xc7c+0x17bf+-0x2*0x121d,_0x53af34)),'details':{'mouseScore':_0xcc8b65['round'](_0x11d6c2[_0x2815a7(0x171)](_0xd806c3[_0x2815a7(0x1a2)+_0x2815a7(0x15a)+_0x2815a7(0x116)+'s'],0x39*-0x2b+-0xad9+-0xde*-0x18)),'timingScore':_0x2ff3da[_0x2815a7(0x1db)](_0xd806c3['timin'+_0x2815a7(0x1d1)+_0x2815a7(0x71)+'ss']*(-0xb52+0x97a*0x2+-0x73e)),'interactionScore':_0x18f1f2['round'](_0xd806c3[_0x2815a7(0xc7)+_0x2815a7(0xda)+'nQual'+'ity']*(-0xa33+-0x4*0x404+0x1aa7)),'browserScore':_0x41ce4d[_0x2815a7(0x1db)](_0x11d6c2[_0x2815a7(0x1bd)](_0xd806c3[_0x2815a7(0x97)+'erInt'+_0x2815a7(0x1c5)+'y'],-0xfdb+0x21f3+-0x11b4))}};return _0x989d51?_0x179657['token']=_0x11d6c2[_0x2815a7(0xba)](_0x1bf578,_0x52f67a[_0x2815a7(0xbf)+_0x2815a7(0x1a1)]):_0x179657[_0x2815a7(0xbd)+'n']=_0x11d6c2['dMKcf'](_0x2e7f15,_0xd806c3),_0x179657;}}const _0x3508c=_0x11d6c2[_0x2815a7(0xf5)](createHash,_0x11d6c2['tJWQF'])[_0x2815a7(0x1a9)+'e'](_0x11d6c2['Ktmww'](_0x25e08d['powCh'+_0x2815a7(0x209)+'ge'],_0x21444d))[_0x2815a7(0x9f)+'t']();let _0x111a2e=0xd9+-0x19*-0x5+-0x156;for(const _0x424a36 of _0x3508c){if(_0x424a36===-0xc27+0xf17+-0x2f0)_0x111a2e+=-0x373*0x4+0x79c*0x5+-0x1838;else{let _0x2f374b=_0x424a36;while(_0x11d6c2[_0x2815a7(0xca)](_0x11d6c2[_0x2815a7(0x184)](_0x2f374b,-0x1d14+0x1cd4+-0x40*-0x3),0x1e8c+-0x677*0x5+0x1c7)){_0x11d6c2['EAzXn']===_0x11d6c2['EHVKR']?_0x1aa29e[_0x2815a7(0x1ae)](0xe*-0x287+-0xbda+0x2f3c+0.6):(_0x111a2e++,_0x2f374b<<=0xf40+-0x1*0x175d+0x40f*0x2);}break;}}const _0x203ce8=_0x25e08d[_0x2815a7(0x167)+'redLe'+_0x2815a7(0xf3)+_0x2815a7(0xf0)];if(_0x111a2e<_0x203ce8){if(_0x11d6c2['aknqG']===_0x11d6c2[_0x2815a7(0x213)])_0x4d684f+=_0x94d5ae['min'](_0x52b4f1,_0x72dc5e['PI']),_0x26c27e++;else{const _0xcc918f={};return _0xcc918f[_0x2815a7(0x1a7)+'ss']=!![],_0xcc918f[_0x2815a7(0x1bf)+'d']=![],_0xcc918f[_0x2815a7(0x188)]=_0x2815a7(0x15f)+_0x2815a7(0x10f)+'度要求(需'+'要\x20'+_0x203ce8+('\x20位,实际'+'\x20')+_0x111a2e+'\x20位)',_0xcc918f;}}_0x25e08d[_0x2815a7(0x6d)+'rifie'+'d']=!![],sessions[_0x2815a7(0x8f)+'e'](_0x4ea9fd);const _0x396ecd={};return _0x396ecd['succe'+'ss']=!![],_0x396ecd[_0x2815a7(0x1bf)+'d']=!![],_0x396ecd[_0x2815a7(0xb0)]=_0x25e08d[_0x2815a7(0xb0)],_0x396ecd[_0x2815a7(0x12c)]=_0x25e08d['score'],_0x396ecd;}function detectAutomation(_0x382c2b){const _0x2c8af0=_0x1439,_0x3a2233={'cIfmr':function(_0x5cd218,_0x46d202){return _0x5cd218(_0x46d202);},'Lemvf':function(_0x178c74,_0x1aa0e4,_0x3d1cc0){return _0x178c74(_0x1aa0e4,_0x3d1cc0);},'Qrdsn':_0x2c8af0(0xf8),'HxaJQ':'spki','EyHkn':'pem','odokU':function(_0x44a852,_0x5bec50){return _0x44a852+_0x5bec50;},'sGKhs':function(_0x1dcda1,_0x5f58da){return _0x1dcda1*_0x5f58da;},'Umxxs':function(_0x2c24e3,_0x3b5384){return _0x2c24e3*_0x3b5384;},'opKfx':_0x2c8af0(0x19f)+_0x2c8af0(0xd0)+_0x2c8af0(0x152),'oKOIM':function(_0x14fe93,_0x2ebdfe){return _0x14fe93+_0x2ebdfe;},'tNKnO':function(_0x3868eb,_0x5c02f9){return _0x3868eb+_0x5c02f9;},'stXfi':_0x2c8af0(0x192),'NXSCE':function(_0x4bcefa,_0x4ec694){return _0x4bcefa(_0x4ec694);},'LoHiQ':_0x2c8af0(0xe2)+'6','xVtdt':_0x2c8af0(0x9d)+_0x2c8af0(0x1e2)+_0x2c8af0(0x13a)+'et','thWNR':_0x2c8af0(0x1c3)+_0x2c8af0(0xef)+_0x2c8af0(0xb8)+'iver='+_0x2c8af0(0x16b),'AQAbs':'Headl'+_0x2c8af0(0x175)+'rome\x20'+'标识','TDBDx':'Phant'+_0x2c8af0(0x145)+'\x20特征','HseMG':_0x2c8af0(0x130)+_0x2c8af0(0x1ed)+'征','niYCB':'windo'+'ws','zbrdN':_0x2c8af0(0x11e),'gbjWf':_0x2c8af0(0x1b4)+_0x2c8af0(0xd3)+_0x2c8af0(0x120)+'atfor'+'m\x20不匹配','VAttD':_0x2c8af0(0xbc)+'s','SfWae':'macin'+'tosh','Mmbik':_0x2c8af0(0x1c0),'eKNNY':_0x2c8af0(0x1c7)+_0x2c8af0(0x20f)+_0x2c8af0(0x146),'xccQq':'UA\x20含\x20'+'Headl'+_0x2c8af0(0x175)+'rome','sFJRJ':_0x2c8af0(0x20b)+'shade'+'r','sghqD':'llvmp'+_0x2c8af0(0x1e4),'srgsS':function(_0xc717da,_0x9b0601){return _0xc717da===_0x9b0601;},'yPhJh':_0x2c8af0(0x15e)+_0x2c8af0(0x1f2)+_0x2c8af0(0xf1),'oelap':_0x2c8af0(0x8e)+'空','slDJX':function(_0x5b2386,_0x306ee7){return _0x5b2386===_0x306ee7;},'ghRJb':_0x2c8af0(0x139)+_0x2c8af0(0x14b)+'d','mYRXE':_0x2c8af0(0x188),'bEFjS':_0x2c8af0(0x1b8)+'失','KWwho':_0x2c8af0(0x101),'FPxVn':function(_0x33927b,_0x5bff1d){return _0x33927b===_0x5bff1d;},'bDMVM':'无鼠标或触'+_0x2c8af0(0x181),'DmbUr':function(_0x5d0860,_0xfbd880){return _0x5d0860<_0xfbd880;},'bawyK':function(_0x4620ea,_0x2f1c98){return _0x4620ea!==_0x2f1c98;},'VUPnH':_0x2c8af0(0xe4),'fNcmA':'doiKe','AtsMZ':'Canva'+_0x2c8af0(0x1d2)+'失','hVVgV':function(_0x424709,_0x1b8997){return _0x424709>=_0x1b8997;},'qtTYc':_0x2c8af0(0x1e5)},_0xb5f2e=[];let _0x4d87b1=-0xa7*0x13+0x1*-0x2177+0x496*0xa;_0x382c2b[_0x2c8af0(0xfa)][_0x2c8af0(0xb8)+_0x2c8af0(0x1ba)]&&(_0xb5f2e['push'](_0x3a2233['thWNR']),_0x4d87b1+=0xf6b+0xdda+-0x1*0x1ce1);_0x382c2b['meta'][_0x2c8af0(0x1c7)+_0x2c8af0(0x16c)]&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233['AQAbs']),_0x4d87b1+=-0x218b*-0x1+-0x12*-0x115+-0x34a1);_0x382c2b[_0x2c8af0(0xfa)]['phant'+'om']&&(_0xb5f2e['push'](_0x3a2233[_0x2c8af0(0x17f)]),_0x4d87b1+=-0x1fe4+-0x13c*0x11+0x3544);_0x382c2b[_0x2c8af0(0xfa)]['selen'+_0x2c8af0(0xdc)]&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233[_0x2c8af0(0xc4)]),_0x4d87b1+=0x43a*-0x2+-0x220+-0x9*-0x138);const _0x3bd5b8=_0x382c2b[_0x2c8af0(0x97)+'er'][_0x2c8af0(0x1bb)+'gent'][_0x2c8af0(0xde)+_0x2c8af0(0xfd)+'e'](),_0x430539=_0x382c2b[_0x2c8af0(0x198)+'m']['platf'+_0x2c8af0(0x122)][_0x2c8af0(0xde)+_0x2c8af0(0xfd)+'e']();_0x3bd5b8[_0x2c8af0(0x9c)+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0x1e3)])&&!_0x430539['inclu'+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0x1fb)])&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233['gbjWf']),_0x4d87b1+=-0x13*0x1eb+0x1d28+0x767);(_0x3bd5b8['inclu'+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0xe3)])||_0x3bd5b8['inclu'+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0x1fe)]))&&!_0x430539['inclu'+_0x2c8af0(0x79)](_0x3a2233['Mmbik'])&&(_0xb5f2e[_0x2c8af0(0x1ae)]('UA=Ma'+'c\x20但\x20p'+'latfo'+_0x2c8af0(0x80)+'配'),_0x4d87b1+=-0x7d1+0x230d+0x216*-0xd);_0x3bd5b8[_0x2c8af0(0x9c)+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0x1e9)])&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233[_0x2c8af0(0x113)]),_0x4d87b1+=-0x75d*-0x5+-0xb*-0xb3+0x2*-0x160f);const _0xd5e7de=_0x382c2b['brows'+'er'][_0x2c8af0(0x1de)+'Rende'+'rer'][_0x2c8af0(0xde)+_0x2c8af0(0xfd)+'e']();(_0xd5e7de[_0x2c8af0(0x9c)+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0x136)])||_0xd5e7de[_0x2c8af0(0x9c)+_0x2c8af0(0x79)](_0x3a2233[_0x2c8af0(0x114)]))&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x2c8af0(0xe6)+':\x20'+_0x382c2b[_0x2c8af0(0x97)+'er'][_0x2c8af0(0x1de)+_0x2c8af0(0xc8)+_0x2c8af0(0x212)]),_0x4d87b1+=0x4c*-0x55+-0xa81*-0x1+0x3*0x4fd);(_0x382c2b[_0x2c8af0(0x198)+'m'][_0x2c8af0(0x81)+_0x2c8af0(0xff)+'h']===-0x4d4+0x164c+-0x1178||_0x382c2b['syste'+'m'][_0x2c8af0(0x81)+'nHeig'+'ht']===0x1cad+0xb08+-0x1*0x27b5)&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x2c8af0(0xce)+'\x200'),_0x4d87b1+=-0x11da+0x175e+-0x56b);_0x3a2233['srgsS'](_0x382c2b[_0x2c8af0(0x198)+'m'][_0x2c8af0(0x15e)+_0x2c8af0(0x1f2)],0xe02+0x89b*-0x2+-0x52*-0xa)&&(_0xb5f2e['push'](_0x3a2233[_0x2c8af0(0xb5)]),_0x4d87b1+=0x9*-0x202+0x1cdd+-0xabc);_0x3a2233[_0x2c8af0(0x18b)](_0x382c2b[_0x2c8af0(0x97)+'er']['fontC'+_0x2c8af0(0x1f5)],0x7*-0x29b+-0x82*0x21+0x22ff)&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233[_0x2c8af0(0xc2)]),_0x4d87b1+=-0x151*0x3+0x77e+-0x4*0xdf);(_0x3a2233[_0x2c8af0(0x20a)](_0x382c2b['brows'+'er'][_0x2c8af0(0xa0)+_0x2c8af0(0x1be)+'rprin'+'t'],_0x3a2233[_0x2c8af0(0x119)])||_0x3a2233['srgsS'](_0x382c2b['brows'+'er'][_0x2c8af0(0xa0)+_0x2c8af0(0x1be)+_0x2c8af0(0x1cf)+'t'],_0x3a2233['mYRXE']))&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233[_0x2c8af0(0x217)]),_0x4d87b1+=-0x1bcf+-0x7*0x239+0x2b68);_0x382c2b[_0x2c8af0(0x12b)+_0x2c8af0(0x131)][_0x2c8af0(0xc7)+_0x2c8af0(0xda)+_0x2c8af0(0x1f4)+'t']===-0x1*0x12c2+-0x3*-0x7e6+-0x4f0&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233[_0x2c8af0(0x75)]),_0x4d87b1+=-0x1195*0x1+-0x4c*-0x22+-0x3*-0x289);_0x3a2233[_0x2c8af0(0x1d6)](_0x382c2b['behav'+_0x2c8af0(0x131)][_0x2c8af0(0x1a2)+'Movem'+_0x2c8af0(0xcd)],-0x6ed+-0x1d6b+0x2458)&&_0x382c2b[_0x2c8af0(0x12b)+_0x2c8af0(0x131)][_0x2c8af0(0x197)+_0x2c8af0(0x1f9)+'s']===-0x1*-0x70f+-0x2345+0x2*0xe1b&&(_0xb5f2e[_0x2c8af0(0x1ae)](_0x3a2233[_0x2c8af0(0xd8)]),_0x4d87b1+=-0x1bec+0x137+-0x1*-0x1ac9);if(_0x3a2233[_0x2c8af0(0xdd)](_0x382c2b[_0x2c8af0(0xfa)]['userA'+_0x2c8af0(0xa8)+_0x2c8af0(0x17c)],-0x5b2+0x893+-0x1*0x2c3)){if(_0x3a2233[_0x2c8af0(0xb2)](_0x3a2233[_0x2c8af0(0x111)],_0x3a2233['VUPnH'])){const _0x1be9eb=_0x2c8af0(0x86)+_0x162891[_0x2c8af0(0x1d4)]()+'_'+mHZzvW[_0x2c8af0(0x6c)](_0x152473,-0x2587+0xd39+-0x2*-0xc2b)[_0x2c8af0(0x1cc)+_0x2c8af0(0x214)]('hex'),_0x219d54={};_0x219d54[_0x2c8af0(0x95)]=_0x2c8af0(0x1d7),_0x219d54['forma'+'t']='pem';const {publicKey:_0x32f2a5,privateKey:_0x3be8a7}=mHZzvW['Lemvf'](_0x4d3652,mHZzvW[_0x2c8af0(0x154)],{'modulusLength':0x800,'publicKeyEncoding':{'type':mHZzvW[_0x2c8af0(0x1b3)],'format':mHZzvW['EyHkn']},'privateKeyEncoding':_0x219d54}),_0x1e75f5={'id':_0x1be9eb,'createdAt':_0x521ced['now'](),'expiresAt':mHZzvW['odokU'](_0xbc8a76[_0x2c8af0(0x1d4)](),mHZzvW[_0x2c8af0(0x70)](mHZzvW[_0x2c8af0(0x74)](-0xe5f+0x22f9+0x1*-0x1495,0x598+0x5*0x167+-0xc5f),0x1*0xbf9+0xfb7+0x5f2*-0x4)),'challenge':{'type':mHZzvW[_0x2c8af0(0x12f)],'target':{'x':mHZzvW[_0x2c8af0(0x1a5)](_0x17dc5f['floor'](_0x21e812[_0x2c8af0(0x1ca)+'m']()*(-0x1*0x15e1+-0x1*-0x180d+-0x4*0x59)),-0x479*-0x7+-0x1b80+0xb9*-0x5),'y':mHZzvW['tNKnO'](_0x4dacc1[_0x2c8af0(0x73)](mHZzvW[_0x2c8af0(0x74)](_0xc2eca[_0x2c8af0(0x1ca)+'m'](),0x1f1d+0x13bb*-0x1+-0x1df*0x6)),0x553+-0x1*-0x166d+-0x1bb6*0x1)}},'privateKey':_0x3be8a7};_0x4cf72d[_0x2c8af0(0xe0)](_0x1be9eb,_0x1e75f5);const _0x1b78b6={};return _0x1b78b6[_0x2c8af0(0xbf)+_0x2c8af0(0x1a1)]=_0x1e75f5['id'],_0x1b78b6['publi'+_0x2c8af0(0x127)]=_0x32f2a5,_0x1b78b6['chall'+'enge']=_0x1e75f5[_0x2c8af0(0x1e7)+'enge'],_0x1b78b6['expir'+_0x2c8af0(0x1c9)]=_0x1e75f5['expir'+_0x2c8af0(0x1c9)],_0x1b78b6;}else _0xb5f2e[_0x2c8af0(0x1ae)]('UA\x20长度'+_0x2c8af0(0xf4)+_0x382c2b[_0x2c8af0(0xfa)][_0x2c8af0(0x1bb)+_0x2c8af0(0xa8)+_0x2c8af0(0x17c)]),_0x4d87b1+=0x5*0x5c+0x166*0x13+0x388*-0x8;}if(_0x382c2b[_0x2c8af0(0x97)+'er'][_0x2c8af0(0x19d)+'sFing'+_0x2c8af0(0xe8)+'nt']==='unsup'+_0x2c8af0(0x14b)+'d'||_0x3a2233[_0x2c8af0(0x18b)](_0x382c2b['brows'+'er'][_0x2c8af0(0x19d)+_0x2c8af0(0xcc)+_0x2c8af0(0xe8)+'nt'],_0x3a2233['mYRXE'])){if(_0x3a2233[_0x2c8af0(0x1a8)]!==_0x3a2233[_0x2c8af0(0x1a8)]){const _0x214886=mHZzvW['cIfmr'](_0x33a2b2,_0x53a399[_0x2c8af0(0x1cd)+_0x2c8af0(0x1cf)+'t']);if(_0x214886[_0x2c8af0(0x1b0)]){const _0x3c8985={};return _0x3c8985[_0x2c8af0(0x1a7)+'ss']=![],_0x3c8985[_0x2c8af0(0x1bf)+'d']=![],_0x3c8985[_0x2c8af0(0x12c)]=0x0,_0x3c8985[_0x2c8af0(0xbd)+'n']=_0x214886[_0x2c8af0(0xbd)+'n'],_0x3c8985;}}else _0xb5f2e['push'](_0x3a2233[_0x2c8af0(0x134)]),_0x4d87b1+=0x2265+-0x41f*0x2+0x4b*-0x59;}if(_0x3a2233[_0x2c8af0(0x121)](_0x4d87b1,0x219f+-0xa*-0x285+-0x15d*0x2b)){if(_0x2c8af0(0x1e5)===_0x3a2233[_0x2c8af0(0xd5)])return{'isBot':!![],'reason':'检测到自动'+_0x2c8af0(0x10c)+'分\x20'+_0x4d87b1+'):'+_0xb5f2e[_0x2c8af0(0x202)](';')};else{const _0x2fcbea=_0x332c0b[_0x2c8af0(0x1d4)](),_0x61e8f6=_0x3a2233[_0x2c8af0(0x6c)](_0x4ecc54,-0x3e*-0x9b+-0x17a8+0xdda*-0x1)[_0x2c8af0(0x1cc)+_0x2c8af0(0x214)](_0x3a2233[_0x2c8af0(0x1df)]),_0x2c2210=_0x75741e+'.'+_0x2fcbea+'.'+_0x61e8f6,_0x40f913=_0x3a2233[_0x2c8af0(0x187)](_0x2a334d,_0x3a2233[_0x2c8af0(0x17a)])[_0x2c8af0(0x1a9)+'e']((_0x453b96.env.HV_SECRET||_0x3a2233[_0x2c8af0(0x166)])+'.'+_0x2c2210)['diges'+'t'](_0x3a2233['stXfi'])['subst'+_0x2c8af0(0x102)](-0xd*-0x279+-0xf*-0x1da+0x1*-0x3beb,-0x26*-0xe8+0x1*0x1bdc+-0x2*0x1f16);return _0x2c8af0(0x86)+_0x2c2210+'_'+_0x40f913;}}const _0x2ee95e={};return _0x2ee95e[_0x2c8af0(0x1b0)]=![],_0x2ee95e[_0x2c8af0(0xbd)+'n']='',_0x2ee95e;}function analyzeBehavior(_0x209e11,_0x3e2cf4){const _0x2d1382=_0x1439,_0x3e3d75={'SGiKQ':function(_0x2c8648,_0x194ee7){return _0x2c8648*_0x194ee7;},'eHgPo':function(_0x12e32b,_0x162665){return _0x12e32b+_0x162665;},'JPxEG':function(_0x383300,_0x50a8bd){return _0x383300*_0x50a8bd;},'Wpyyz':function(_0x4bb1a,_0x853d7a){return _0x4bb1a*_0x853d7a;},'bdKJl':function(_0x34a945,_0x529443){return _0x34a945>=_0x529443;},'OLYTi':function(_0x493fdc,_0x2cc56c){return _0x493fdc*_0x2cc56c;},'ROLsO':function(_0x17a73f,_0x3df964){return _0x17a73f*_0x3df964;},'DyqUw':function(_0x28d776,_0x1b7aa7){return _0x28d776(_0x1b7aa7);}},_0x1202df=computeSignals(_0x209e11,_0x3e2cf4),_0x27169b={};_0x27169b[_0x2d1382(0x1a2)]=0.35,_0x27169b[_0x2d1382(0x174)+'g']=0.3,_0x27169b[_0x2d1382(0xc7)+_0x2d1382(0xda)+'n']=0.2,_0x27169b['brows'+'er']=0.15;const _0x5618d2=_0x27169b,_0x293ef6=Math[_0x2d1382(0x1db)](_0x3e3d75[_0x2d1382(0x106)](_0x3e3d75[_0x2d1382(0x1b7)](_0x3e3d75['eHgPo'](_0x1202df[_0x2d1382(0x1a2)+'Natur'+_0x2d1382(0x116)+'s']*_0x5618d2[_0x2d1382(0x1a2)]+_0x3e3d75[_0x2d1382(0xc0)](_0x1202df['timin'+'gNatu'+_0x2d1382(0x71)+'ss'],_0x5618d2[_0x2d1382(0x174)+'g']),_0x3e3d75[_0x2d1382(0x106)](_0x1202df[_0x2d1382(0xc7)+_0x2d1382(0xda)+_0x2d1382(0x164)+'ity'],_0x5618d2[_0x2d1382(0xc7)+_0x2d1382(0xda)+'n'])),_0x3e3d75[_0x2d1382(0x103)](_0x1202df['brows'+'erInt'+_0x2d1382(0x1c5)+'y'],_0x5618d2[_0x2d1382(0x97)+'er'])),-0x1d*0xc7+-0x157d+0xb1b*0x4)),_0x5de43e=0x562*0x5+-0x30a*-0x9+-0x360d*0x1,_0x12dac1=_0x3e3d75['bdKJl'](_0x293ef6,_0x5de43e),_0x581efd={'passed':_0x12dac1,'score':Math[_0x2d1382(0x1f8)](-0x99*-0x15+-0xb71*-0x2+0x2*-0x1186,Math[_0x2d1382(0x15c)](0x23a+-0x2a4+0x6b*0x1,_0x293ef6)),'details':{'mouseScore':Math['round'](_0x3e3d75[_0x2d1382(0x106)](_0x1202df[_0x2d1382(0x1a2)+_0x2d1382(0x15a)+_0x2d1382(0x116)+'s'],0x109f+0x293*0xe+-0x1*0x3445)),'timingScore':Math[_0x2d1382(0x1db)](_0x3e3d75[_0x2d1382(0x200)](_0x1202df['timin'+_0x2d1382(0x1d1)+_0x2d1382(0x71)+'ss'],-0x2410+-0x16fe+-0x3b72*-0x1)),'interactionScore':Math[_0x2d1382(0x1db)](_0x1202df['inter'+_0x2d1382(0xda)+_0x2d1382(0x164)+_0x2d1382(0x1a6)]*(-0x1688+-0x9*-0x355+-0x711)),'browserScore':Math[_0x2d1382(0x1db)](_0x3e3d75['ROLsO'](_0x1202df[_0x2d1382(0x97)+'erInt'+_0x2d1382(0x1c5)+'y'],-0x917+0x1425*0x1+0x6*-0x1c7))}};return _0x12dac1?_0x581efd[_0x2d1382(0xb0)]=generateToken(_0x209e11['sessi'+_0x2d1382(0x1a1)]):_0x581efd[_0x2d1382(0xbd)+'n']=_0x3e3d75[_0x2d1382(0x8b)](determineFailureReason,_0x1202df),_0x581efd;}function computeSignals(_0x227ced,_0x12ffb4){const _0x1bc0f8=_0x1439,_0xe7c6c={'gEGxj':function(_0x4734a2,_0x28168e){return _0x4734a2(_0x28168e);},'VYtOJ':function(_0x1287b0,_0x5c7944){return _0x1287b0(_0x5c7944);}};return{'mouseNaturalness':_0xe7c6c[_0x1bc0f8(0x10d)](analyzeMouseMovement,_0x227ced[_0x1bc0f8(0x1a2)+_0x1bc0f8(0x178)+_0x1bc0f8(0xcd)]),'timingNaturalness':_0xe7c6c[_0x1bc0f8(0x83)](analyzeTiming,_0x227ced),'interactionQuality':analyzeInteraction(_0x12ffb4),'browserIntegrity':_0xe7c6c[_0x1bc0f8(0x83)](analyzeBrowser,_0x227ced[_0x1bc0f8(0x1bb)+'gent'])};}function analyzeMouseMovement(_0x44e601){const _0x402dee=_0x1439,_0x2761fc={};_0x2761fc[_0x402dee(0x117)]=function(_0x56581d,_0x55c63a){return _0x56581d<_0x55c63a;},_0x2761fc['yyzXA']=function(_0x2153a4,_0xc0750c){return _0x2153a4-_0xc0750c;},_0x2761fc[_0x402dee(0x1c6)]=function(_0x220ebe,_0x162e61){return _0x220ebe-_0x162e61;},_0x2761fc['WitIi']=function(_0x45bc4e,_0x190722){return _0x45bc4e-_0x190722;},_0x2761fc[_0x402dee(0x85)]=function(_0x4646e9,_0x4b991c){return _0x4646e9-_0x4b991c;},_0x2761fc[_0x402dee(0x149)]=function(_0x15e3eb,_0x2ad0b2){return _0x15e3eb>_0x2ad0b2;},_0x2761fc[_0x402dee(0x88)]=function(_0x3d9313,_0x5bec14){return _0x3d9313/_0x5bec14;},_0x2761fc[_0x402dee(0x1ab)]=function(_0x42b2d8,_0x2e4ce8){return _0x42b2d8*_0x2e4ce8;},_0x2761fc[_0x402dee(0x168)]=function(_0x3e0bc2,_0x279a42){return _0x3e0bc2/_0x279a42;},_0x2761fc[_0x402dee(0x1ff)]=function(_0x151472,_0x2c87d2){return _0x151472/_0x2c87d2;},_0x2761fc[_0x402dee(0x7c)]=function(_0x50effa,_0x543342){return _0x50effa>_0x543342;},_0x2761fc[_0x402dee(0xfb)]=function(_0x5d85c0,_0x5c3839){return _0x5d85c0<_0x5c3839;},_0x2761fc[_0x402dee(0x7d)]=function(_0x5c8e0a,_0x10ceeb){return _0x5c8e0a-_0x10ceeb;},_0x2761fc[_0x402dee(0xd9)]=function(_0x3dbf3,_0x1afd12){return _0x3dbf3-_0x1afd12;},_0x2761fc['VItPe']=function(_0x1823bb,_0x3748f0){return _0x1823bb>_0x3748f0;},_0x2761fc[_0x402dee(0x1b6)]=function(_0x2af40c,_0x1e837f){return _0x2af40c>_0x1e837f;},_0x2761fc[_0x402dee(0xa2)]=function(_0x39ee88,_0x16d557){return _0x39ee88+_0x16d557;};const _0x3096d2=_0x2761fc;if(_0x3096d2['RFoXf'](_0x44e601['lengt'+'h'],0xddf+0x26*0x61+-0x71*0x40))return 0x1f87+-0xb24+0x1*-0x1463+0.3;let _0x564cd=-0x4*-0x37b+0xe59*0x2+-0x2a9e,_0x38a4a1=-0xca*-0x1+-0x285*0x4+0x4a5*0x2;for(let _0x4ad8ea=0x8*0x65+-0x35*0x5b+-0x27*-0x67;_0x4ad8ea<_0x44e601['lengt'+'h'];_0x4ad8ea++){const _0x5e1dfd=_0x44e601[_0x3096d2[_0x402dee(0x18a)](_0x4ad8ea,-0x230e+-0xca*0x23+0x3ead)]['x']-_0x44e601[_0x4ad8ea-(0x42d*0x1+-0x5*-0x525+0x4*-0x779)]['x'],_0x4609e4=_0x44e601[_0x3096d2['YfRfw'](_0x4ad8ea,0x31c+0x57*0x6d+0x12*-0x23b)]['y']-_0x44e601[_0x3096d2[_0x402dee(0x7e)](_0x4ad8ea,-0x7*-0x175+-0x10fb+-0x2*-0x365)]['y'],_0x3d5ad5=_0x3096d2['WitIi'](_0x44e601[_0x4ad8ea]['x'],_0x44e601[_0x3096d2[_0x402dee(0x18a)](_0x4ad8ea,0xa*0x3e4+0x2c*0xd9+0x1*-0x4c33)]['x']),_0x4b7d9c=_0x44e601[_0x4ad8ea]['y']-_0x44e601[_0x3096d2[_0x402dee(0x18a)](_0x4ad8ea,-0x2311+0x266d+-0x1*0x35b)]['y'],_0x4a7225=Math[_0x402dee(0x138)](_0x4609e4,_0x5e1dfd),_0x45b02f=Math[_0x402dee(0x138)](_0x4b7d9c,_0x3d5ad5),_0x481691=Math['abs'](_0x3096d2[_0x402dee(0x85)](_0x45b02f,_0x4a7225));_0x3096d2[_0x402dee(0x149)](_0x481691,-0x1850+-0x131*-0xe+0x7a2+0.05)&&(_0x564cd+=Math[_0x402dee(0x1f8)](_0x481691,Math['PI']),_0x38a4a1++);}const _0x4ed47c=_0x3096d2[_0x402dee(0x149)](_0x38a4a1,0x155f+0x2236+0x11*-0x345)?_0x3096d2[_0x402dee(0x88)](_0x564cd,_0x38a4a1):-0x14ed*0x1+0x79*-0x21+0x1*0x2486,_0x27df39=Math[_0x402dee(0x1f8)](-0x1e4*0x1+-0x6e*0x5a+0x2891,_0x3096d2[_0x402dee(0x1ab)](_0x4ed47c,-0x1*-0xa7+-0x162c+-0x3*-0x72d)),_0x5bfb83=_0x44e601[_0x402dee(0x99)](_0x96f08e=>_0x96f08e[_0x402dee(0x91)+_0x402dee(0x1a6)]||0x22c3+-0x34f*-0xb+-0x18*0x2f7)[_0x402dee(0x7f)+'r'](_0x414ea6=>_0x414ea6>-0x1*0x11a1+0xf5b+0x246);if(_0x3096d2[_0x402dee(0x117)](_0x5bfb83[_0x402dee(0x186)+'h'],-0x1015*0x1+0x18de+-0x8c6))return Math[_0x402dee(0x15c)](0xd40+0x245c+-0x319c+0.3,_0x27df39*(-0x43c+-0x1eff*0x1+0x233b+0.5));const _0x3fef96=_0x3096d2[_0x402dee(0x168)](_0x5bfb83[_0x402dee(0x11c)+'e']((_0x4b4f67,_0x34ec29)=>_0x4b4f67+_0x34ec29,0x1*-0x1cfc+-0x2189*0x1+0xb*0x5af),_0x5bfb83['lengt'+'h']),_0x190cd4=_0x3096d2[_0x402dee(0x1ff)](_0x5bfb83['reduc'+'e']((_0x3fceeb,_0xa80ff1)=>_0x3fceeb+(_0xa80ff1-_0x3fef96)**(0x1f38+0x1*-0x22c6+0x390),-0x1334*-0x1+-0x8*0x1ba+0x14*-0x45),_0x5bfb83[_0x402dee(0x186)+'h']),_0x390f08=_0x3096d2[_0x402dee(0x149)](_0x3fef96,-0x239a+0x180b+-0x10d*-0xb)?_0x3096d2[_0x402dee(0x88)](Math[_0x402dee(0x1ac)](_0x190cd4),_0x3fef96):0x2*-0x883+-0x1*0x1a2f+-0x2b35*-0x1;let _0x3d7a88;if(_0x3096d2[_0x402dee(0x149)](_0x390f08,-0xc12+-0x731+0x1345))_0x3d7a88=0x69d+-0x1540+0xea3+0.7;else{if(_0x3096d2[_0x402dee(0x149)](_0x390f08,0x2e8+-0x1f67+0x5*0x5b3+0.8))_0x3d7a88=0xd6*0x5+0x5ab*-0x4+0x127f;else{if(_0x3096d2['ZTKcr'](_0x390f08,0xb*0x18b+0x2408+-0x3501+0.4))_0x3d7a88=0x2*0xe95+-0x13ee+-0x93c+0.7;else{if(_0x3096d2['HiPpL'](_0x390f08,-0x4*-0x76+0x100+-0x2d8+0.2))_0x3d7a88=-0x20c0+-0x5bd*-0x3+-0x29*-0x61+0.4;else _0x3d7a88=0x865*0x3+0x17a9+0x3*-0x1048+0.1;}}}const _0x1a8430=[];for(let _0x40e846=0x1ca0+-0xddf+-0xec0;_0x3096d2['SpHqt'](_0x40e846,_0x44e601[_0x402dee(0x186)+'h']);_0x40e846++)_0x1a8430[_0x402dee(0x1ae)](_0x3096d2[_0x402dee(0x7d)](_0x44e601[_0x40e846][_0x402dee(0x6f)+_0x402dee(0x1d0)],_0x44e601[_0x3096d2['Nutar'](_0x40e846,-0x916+-0x1*0x50e+0xe25)][_0x402dee(0x6f)+'tamp']));const _0x56a582=_0x1a8430[_0x402dee(0x11c)+'e']((_0x4b1b6c,_0x16a415)=>_0x4b1b6c+_0x16a415,0x1*-0x17a9+-0x14ca+0x2c73*0x1)/_0x1a8430['lengt'+'h'],_0x4e8c43=_0x56a582>-0x214*-0x4+0x2*-0x6cb+0x546?_0x3096d2[_0x402dee(0x168)](Math[_0x402dee(0x1ac)](_0x3096d2[_0x402dee(0x168)](_0x1a8430[_0x402dee(0x11c)+'e']((_0x5c821b,_0x4c9cbe)=>_0x5c821b+(_0x4c9cbe-_0x56a582)**(0x25c2+0xee7+-0x34a7),0x18+0x58c+0x1*-0x5a4),_0x1a8430[_0x402dee(0x186)+'h'])),_0x56a582):0x70f+-0x7*0xa6+0x5*-0x81;let _0x5e50b5;if(_0x3096d2[_0x402dee(0x6b)](_0x4e8c43,0x5*-0x91+0x1c2b*0x1+-0x1956+0.8))_0x5e50b5=-0xed*-0x1+0x3*0x3bb+0x21*-0x5e+0.9;else{if(_0x3096d2[_0x402dee(0x1b6)](_0x4e8c43,0x1*-0x266d+-0xab1+0x311e+0.4))_0x5e50b5=0x8*-0x389+-0x11af+0x2df7+0.8;else{if(_0x3096d2[_0x402dee(0x149)](_0x4e8c43,0xff3+-0x2376+-0xf*-0x14d+0.2))_0x5e50b5=0xc70+0x172e+-0x1*0x239e+0.5;else _0x5e50b5=-0x125*0x8+-0x18c3+-0x1c9*-0x13+0.2;}}return _0x3096d2[_0x402dee(0xa2)](_0x3096d2[_0x402dee(0xa2)](_0x3096d2['xOnPS'](_0x27df39,0x20*-0xb9+-0x769*-0x5+-0xded+0.35),_0x3d7a88*(0x22d3*0x1+-0x19a3*-0x1+0x6d*-0x8e+0.35)),_0x3096d2[_0x402dee(0x1ab)](_0x5e50b5,0x4*0x37c+-0xd69+-0x87+0.3));}function analyzeTiming(_0x128893){const _0x171b46=_0x1439,_0x226a8e={'dlbMj':_0x171b46(0x19a)+'错误','odXUF':_0x171b46(0x17d)+_0x171b46(0x175)+_0x171b46(0x146),'hZAOB':'Phant'+'omJS','ViPcq':_0x171b46(0x159)+_0x171b46(0xdc),'kHbbg':'webdr'+_0x171b46(0x1ba),'gplHN':'Mobil'+'e','CSZUQ':_0x171b46(0x191)+'id','DYJBi':_0x171b46(0x76)+_0x171b46(0x141)+'t','eIOsR':_0x171b46(0xae),'UFZqv':function(_0x2dc900,_0x2d0080){return _0x2dc900(_0x2d0080);},'Umhtd':function(_0x20117c,_0x534158){return _0x20117c(_0x534158);},'SdgMC':function(_0x4b58ee,_0x313101){return _0x4b58ee>_0x313101;},'XHMWI':function(_0x353f39,_0x254118){return _0x353f39+_0x254118;},'sSvlR':function(_0x523888,_0x17d90b){return _0x523888*_0x17d90b;},'BZQiJ':function(_0x52fe5f,_0x414cc8){return _0x52fe5f-_0x414cc8;},'EtDIQ':function(_0x1ce4dc,_0x393135){return _0x1ce4dc<=_0x393135;},'XIoxM':function(_0x277f88,_0x276b31){return _0x277f88<_0x276b31;},'jwcbg':function(_0x237c87,_0x104b02){return _0x237c87+_0x104b02;},'FjAOE':function(_0x18fdc2,_0x5abb9f){return _0x18fdc2!==_0x5abb9f;},'GJiJu':_0x171b46(0x19c),'DLRht':function(_0x35439f,_0x150df7){return _0x35439f<_0x150df7;},'jptWV':function(_0x15e46c,_0x5cd73a){return _0x15e46c-_0x5cd73a;},'dvyXk':function(_0x521146,_0x2f1d2c){return _0x521146/_0x2f1d2c;},'mJGSc':function(_0x5c4013,_0x50d486){return _0x5c4013>_0x50d486;},'RhQvt':function(_0x1ec2e2,_0x48d3aa){return _0x1ec2e2>=_0x48d3aa;},'TAzVC':function(_0x4866e5,_0x5bf40c){return _0x4866e5===_0x5bf40c;},'mxygI':'AZylH','KvMYL':_0x171b46(0x129),'Pirdr':_0x171b46(0x1ad),'MMTsW':_0x171b46(0x7b),'UnQbv':function(_0x506717,_0x3408c4){return _0x506717>_0x3408c4;}},_0x638f48=[];if(_0x226a8e[_0x171b46(0x153)](_0x128893['timeT'+_0x171b46(0xb4)+_0x171b46(0x133)+_0x171b46(0x15d)+'on'],0x2*-0x7d4+-0x1b4d+-0x2af5*-0x1)){const _0x51e722=_0x128893[_0x171b46(0x13f)+_0x171b46(0xb4)+_0x171b46(0x133)+'racti'+'on'];if(_0x226a8e[_0x171b46(0x153)](_0x51e722,0x61f*-0x2+-0xa2*0x36+0x12e*0x29)&&_0x51e722<0x133+-0x2*-0x37f+0x1*0x170f)_0x638f48['push'](Math[_0x171b46(0x1f8)](0xbba+0xc79+-0x1832,_0x226a8e['XHMWI'](_0x226a8e[_0x171b46(0x9b)](_0x226a8e[_0x171b46(0x142)](_0x51e722,0xef5+-0x18bb+0x9e*0x13)/(-0x10a9+0x212*0x2+0x4d9*0x5),-0x5f+0x1*0x312+0x2b3*-0x1+0.5),-0x7fe+-0x1c9*0xd+0x1*0x1f33+0.5)));else{if(_0x226a8e[_0x171b46(0xd7)](_0x51e722,-0xb5*0x3+-0x22a8*-0x1+-0x1e95))_0x638f48[_0x171b46(0x1ae)](-0xa39*0x1+0x34d*-0x3+-0xe*-0x170+0.3);else _0x638f48['push'](0x158a+0x28a+-0x2e*0x86+0.5);}}else _0x638f48[_0x171b46(0x1ae)](0x1cbd+-0x2*-0x1106+-0x3ec9+0.5);const _0x37d053=_0x128893[_0x171b46(0x19e)+_0x171b46(0x1e6)+'d'];if(_0x226a8e[_0x171b46(0x153)](_0x37d053,-0x1567+-0x487*0x4+-0x3d*-0xd7)&&_0x226a8e[_0x171b46(0x1bc)](_0x37d053,-0x1b1cd*0x1+0x3dbb*-0x7+0x44c4a))_0x638f48[_0x171b46(0x1ae)](Math[_0x171b46(0x1f8)](0xd03+0x7a*0x49+-0xa1*0x4c,_0x226a8e['jwcbg'](_0x226a8e['BZQiJ'](_0x37d053,-0x15db+0xf73+0x3a0*0x5)/(-0x1e7*-0x9+0x9303+-0x5602)*(0x1ff*0xb+-0x307*0x2+-0xfe7+0.4),0x12c*0x1+-0x250a+-0x11ef*-0x2+0.6)));else{if(_0x37d053<=-0xac5*0x3+0x12bf*-0x1+0x3ec6)_0x638f48[_0x171b46(0x1ae)](-0x13b2*-0x1+0x4*-0x5+-0x51*0x3e+0.3);else _0x638f48['push'](0x1989+-0x630+-0x27*0x7f+0.5);}if(_0x128893[_0x171b46(0x19f)+'s']['lengt'+'h']>=-0xde2+0x1fd9+0x1*-0x11f3){if(_0x226a8e[_0x171b46(0x173)](_0x226a8e[_0x171b46(0x157)],_0x226a8e[_0x171b46(0x157)])){const _0x1ec298={};return _0x1ec298['succe'+'ss']=![],_0x1ec298['error']=OvkBtB['dlbMj'],_0x1ec298;}else{const _0x59bca8=[];for(let _0x13062b=-0x105e+0x7b9*0x1+-0x1*-0x8a6;_0x226a8e['DLRht'](_0x13062b,_0x128893[_0x171b46(0x19f)+'s'][_0x171b46(0x186)+'h']);_0x13062b++)_0x59bca8[_0x171b46(0x1ae)](_0x226a8e[_0x171b46(0x142)](_0x128893[_0x171b46(0x19f)+'s'][_0x13062b][_0x171b46(0x6f)+_0x171b46(0x1d0)],_0x128893[_0x171b46(0x19f)+'s'][_0x226a8e['jptWV'](_0x13062b,0x8a7*-0x4+0x1*0x21aa+0xf3)][_0x171b46(0x6f)+_0x171b46(0x1d0)]));const _0x34a248=_0x59bca8[_0x171b46(0x11c)+'e']((_0x5406dc,_0x129bea)=>_0x5406dc+_0x129bea,-0x212c*-0x1+-0xc70+0xa5e*-0x2)/_0x59bca8['lengt'+'h'],_0x332437=_0x34a248>0x1d3+0x1b0a+-0x1cdd?_0x226a8e[_0x171b46(0x1c8)](Math[_0x171b46(0x1ac)](_0x59bca8[_0x171b46(0x11c)+'e']((_0x5bd4be,_0x4a022d)=>_0x5bd4be+(_0x4a022d-_0x34a248)**(0x24fc+-0x11*-0x10f+0x36f9*-0x1),-0x1fa2+0x11f3+0xdaf)/_0x59bca8[_0x171b46(0x186)+'h']),_0x34a248):0xf32+0x7*-0xd4+-0x966*0x1;if(_0x332437>-0x1da5+-0x511*0x1+0x22b6+0.5)_0x638f48[_0x171b46(0x1ae)](0x1f6f+-0x3e6*0x3+-0x13bd+0.9);else{if(_0x226a8e[_0x171b46(0x1b1)](_0x332437,-0x4*-0x24d+-0x1*0x1795+-0x3*-0x4cb+0.2))_0x638f48['push'](-0x1f91+-0x1*0x207d+0x38f*0x12+0.6);else _0x638f48['push'](0x168e+0x67*0x35+0x2be1*-0x1+0.4);}}}else{if(_0x226a8e[_0x171b46(0x1a3)](_0x128893[_0x171b46(0x19f)+'s']['lengt'+'h'],0x187d*0x1+0x5*0x635+0x3d*-0xe9)){if(_0x226a8e[_0x171b46(0xb6)](_0x226a8e[_0x171b46(0x1ea)],_0x226a8e[_0x171b46(0x1c2)])){let _0x1a4dae=-0x1f16+0x1b6*0x2+-0x1*-0x1baa+0.7;if(_0x9c53b9[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e[_0x171b46(0x205)]))_0x1a4dae-=0x810+0x65*0x29+-0x183d+0.6;if(_0x4ce04d[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e['hZAOB']))_0x1a4dae-=-0x114e+0x1d5c+0xc0e*-0x1+0.7;if(_0x5af06a['inclu'+'des'](_0x171b46(0x18d)+_0x171b46(0x13d)))_0x1a4dae-=-0x1246+0x5eb+-0xc5b*-0x1+0.6;if(_0x1e3f9e[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e['ViPcq']))_0x1a4dae-=0x1480*-0x1+0x23cc+-0x59*0x2c+0.6;if(_0x478b8d[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e[_0x171b46(0x107)]))_0x1a4dae-=-0x6e*0x26+-0x2b3*-0x5+0x19*0x1d+0.5;if(!/Chrome|Firefox|Safari|Edg|OPR/i['test'](_0x5bf4a4))_0x1a4dae-=0x3d*0x65+0x214+0x45*-0x61+0.4;if((_0x10f0b5['inclu'+_0x171b46(0x79)](_0x226a8e[_0x171b46(0x110)])||_0x45ca66[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e[_0x171b46(0x1eb)]))&&!_0x3e733e[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e[_0x171b46(0x124)])&&!_0x45828b[_0x171b46(0x9c)+_0x171b46(0x79)](_0x226a8e['eIOsR']))_0x1a4dae-=-0x304*-0x5+0x168e+-0x25a2*0x1+0.3;return _0x4072f6[_0x171b46(0x15c)](0xd1+-0x1*0x1253+0x1182,_0xda1f['min'](0x1*-0x18e9+-0x251*-0x7+-0x1*-0x8b3,_0x1a4dae));}else _0x638f48[_0x171b46(0x1ae)](-0xa8+0x16e2+-0x163a+0.6);}else _0x638f48[_0x171b46(0x1ae)](0x1002+-0xe9+0x305*-0x5+0.6);}const _0x40945e=_0x128893['click'+'s'][_0x171b46(0x7f)+'r'](_0x56edb4=>_0x56edb4[_0x171b46(0x95)]===_0x171b46(0x1a2)+'up'&&_0x56edb4[_0x171b46(0x1e0)+_0x171b46(0x8a)]>-0x52*0x30+0x10*0x1d4+0x4*-0x378)[_0x171b46(0x99)](_0x8c572b=>_0x8c572b[_0x171b46(0x1e0)+'ion']);if(_0x226a8e['mJGSc'](_0x40945e[_0x171b46(0x186)+'h'],0xbda*0x2+0x937+-0x20eb)){if(_0x226a8e['FjAOE'](_0x226a8e['Pirdr'],_0x226a8e['Pirdr']))_0x4dcdb0[_0x171b46(0x1ae)]('字体列表为'+'空'),_0x2b94e1+=-0x12da+0x137a*0x2+-0x140b;else{const _0x47ee55=_0x226a8e[_0x171b46(0x1c8)](_0x40945e[_0x171b46(0x11c)+'e']((_0x4d417a,_0x4c771a)=>_0x4d417a+_0x4c771a,0x265c+-0x1b41+-0xb1b),_0x40945e[_0x171b46(0x186)+'h']);if(_0x226a8e[_0x171b46(0x153)](_0x47ee55,0x56f*-0x1+0x1fa4+-0x75*0x39)&&_0x47ee55<0x49*0x4b+0x253c+0x38ab*-0x1)_0x638f48['push'](0x1c1+-0x561+-0x1d0*-0x2+0.9);else{if(_0x47ee55<=0x1c39*0x1+-0x10f1+0x2c8*-0x4)_0x638f48[_0x171b46(0x1ae)](0x91e*0x2+0x1*-0x90f+-0x1b*0x57+0.4);else _0x638f48[_0x171b46(0x1ae)](0x1f0e+0x8*-0x490+0x572+0.5);}}}else{if(_0x226a8e[_0x171b46(0xb6)](_0x226a8e[_0x171b46(0xc3)],_0x226a8e[_0x171b46(0xc3)]))_0x638f48[_0x171b46(0x1ae)](-0x1710+0x1773*0x1+-0x1*0x63+0.6);else return{'mouseNaturalness':OvkBtB[_0x171b46(0x11a)](_0x597951,_0x2f7150[_0x171b46(0x1a2)+'Movem'+_0x171b46(0xcd)]),'timingNaturalness':_0x20ebbc(_0x21a987),'interactionQuality':OvkBtB[_0x171b46(0xa1)](_0x78c9f3,_0x3f07f0),'browserIntegrity':_0x451ba0(_0x4703c1[_0x171b46(0x1bb)+_0x171b46(0x1fc)])};}return _0x226a8e['UnQbv'](_0x638f48[_0x171b46(0x186)+'h'],0x1d92+0x2494+-0x4226*0x1)?_0x638f48['reduc'+'e']((_0xee93ed,_0x28eacd)=>_0xee93ed+_0x28eacd,0x207e+-0x3a*-0x18+0x3cb*-0xa)/_0x638f48[_0x171b46(0x186)+'h']:-0x14e0*-0x1+0x1a64+-0x2f44+0.5;}function analyzeInteraction(_0x46776b){const _0x4c1280=_0x1439,_0x2c0b6a={};_0x2c0b6a[_0x4c1280(0x112)]=function(_0x1029cb,_0x340172){return _0x1029cb>_0x340172;};const _0x20b3ac=_0x2c0b6a,{trajectoryPoints:_0x71e548}=_0x46776b[_0x4c1280(0xc7)+'actio'+_0x4c1280(0x185)];if(_0x20b3ac[_0x4c1280(0x112)](_0x71e548,-0xe3c+0x248f+-0x1*0x163f))return 0x1bd7+0x13c2+-0x2f99*0x1+0.95;if(_0x20b3ac[_0x4c1280(0x112)](_0x71e548,-0x855+0x1*0x9b6+-0x157))return-0x18*-0x5c+-0x1969*-0x1+-0x2209+0.8;if(_0x71e548>-0x102e+0x4*-0xa2+0x12bb)return 0xb1*-0x11+0x1*0x425+-0x3ce*-0x2+0.6;if(_0x71e548>0xb97+0x109e+0x1c33*-0x1)return 0x224*0xd+0x198b+-0x355f+0.3;return-0x491+0x24ea+0x27d*-0xd+0.1;}function analyzeBrowser(_0x26d811){const _0x28bac3=_0x1439,_0x85178e={};_0x85178e[_0x28bac3(0x204)]=_0x28bac3(0x17d)+_0x28bac3(0x175)+_0x28bac3(0x146),_0x85178e[_0x28bac3(0x18c)]=_0x28bac3(0x18d)+_0x28bac3(0x13d),_0x85178e[_0x28bac3(0x1f3)]=_0x28bac3(0x159)+_0x28bac3(0xdc),_0x85178e[_0x28bac3(0x1e1)]=_0x28bac3(0xb8)+'iver',_0x85178e[_0x28bac3(0xf6)]=_0x28bac3(0x150)+'e',_0x85178e[_0x28bac3(0x206)]=_0x28bac3(0x76)+_0x28bac3(0x141)+'t';const _0xf3792c=_0x85178e;let _0x27397f=-0x1*0x16d4+0x881*0x2+0x1*0x5d2+0.7;if(_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0xf3792c[_0x28bac3(0x204)]))_0x27397f-=-0x138b*-0x1+-0x1*0x3eb+-0xfa0+0.6;if(_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0x28bac3(0x193)+_0x28bac3(0x144)))_0x27397f-=0x10b1*-0x1+0x5ac+-0x193*-0x7+0.7;if(_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0xf3792c[_0x28bac3(0x18c)]))_0x27397f-=0x5*0x75+-0x7a6+0x1*0x55d+0.6;if(_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0xf3792c[_0x28bac3(0x1f3)]))_0x27397f-=0x25*0x1b+0x4a1*-0x6+0x7f5*0x3+0.6;if(_0x26d811[_0x28bac3(0x9c)+'des'](_0xf3792c[_0x28bac3(0x1e1)]))_0x27397f-=0x1f39+-0x1b4e+-0x3b*0x11+0.5;if(!/Chrome|Firefox|Safari|Edg|OPR/i[_0x28bac3(0x17b)](_0x26d811))_0x27397f-=0x327*0x1+-0x1219+0xef2+0.4;if((_0x26d811[_0x28bac3(0x9c)+'des'](_0xf3792c[_0x28bac3(0xf6)])||_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0x28bac3(0x191)+'id'))&&!_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0xf3792c[_0x28bac3(0x206)])&&!_0x26d811[_0x28bac3(0x9c)+_0x28bac3(0x79)](_0x28bac3(0xae)))_0x27397f-=0x66e*-0x3+0xadd*-0x3+0x2bb*0x13+0.3;return Math[_0x28bac3(0x15c)](0x11f4+0x3*0x38f+-0x1ca1,Math[_0x28bac3(0x1f8)](0x20b9*-0x1+0x5e*0x4+0x1f42,_0x27397f));}function _0x1439(_0x306971,_0x395ffb){_0x306971=_0x306971-(-0x1*-0x1999+-0x3*0x8f5+0x1b1);const _0x30ded6=_0x2351();let _0x12c95e=_0x30ded6[_0x306971];if(_0x1439['MwKxWv']===undefined){var _0x40102a=function(_0x23427a){const _0x4084e9='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x54fcda='',_0x205400='',_0x2a0934=_0x54fcda+_0x40102a,_0x462fe3=(''+function(){return 0x15b5+0x2256+-0x380b;})['indexOf']('\x0a')!==-(0x89f*0x4+-0x7*0x23b+-0x12de);for(let _0xac1a3c=-0x4e0+0x1cc2*0x1+-0x17e2,_0x2921eb,_0x4b9c91,_0x1657e7=-0x11b8+-0x891+-0x1*-0x1a49;_0x4b9c91=_0x23427a['charAt'](_0x1657e7++);~_0x4b9c91&&(_0x2921eb=_0xac1a3c%(-0x1463+0x1*0xd87+-0xdc*-0x8)?_0x2921eb*(-0x26bd+-0x3b1+0x2aae)+_0x4b9c91:_0x4b9c91,_0xac1a3c++%(-0x373+0x20bf+-0x1d48))?_0x54fcda+=_0x462fe3||_0x2a0934['charCodeAt'](_0x1657e7+(-0x15c0+0x1831+-0x267))-(-0x2556+0x8*-0x463+-0x4878*-0x1)!==0x1*-0xb47+-0xd4e+0x1895?String['fromCharCode'](0xb17+-0x208+-0x810*0x1&_0x2921eb>>(-(0xce*-0x9+-0x1d05*-0x1+0x15c5*-0x1)*_0xac1a3c&0xa06*0x1+-0x1*0x25e9+-0x595*-0x5)):_0xac1a3c:0x15*-0x1f+-0x1ea4+0x6a3*0x5){_0x4b9c91=_0x4084e9['indexOf'](_0x4b9c91);}for(let _0x1e8c49=-0x8b9*0x3+-0x23+0x1a4e,_0x6ecf5c=_0x54fcda['length'];_0x1e8c49<_0x6ecf5c;_0x1e8c49++){_0x205400+='%'+('00'+_0x54fcda['charCodeAt'](_0x1e8c49)['toString'](-0x284+0xbe*-0x18+0x1464))['slice'](-(-0x17d*0x13+-0x1*-0x2403+-0x7ba));}return decodeURIComponent(_0x205400);};_0x1439['uiNcte']=_0x40102a,_0x1439['xQnrJU']={},_0x1439['MwKxWv']=!![];}const _0x7be524=_0x30ded6[-0x15d1+-0x1c1b+0x31ec],_0x1ca33e=_0x306971+_0x7be524,_0x4d9c9a=_0x1439['xQnrJU'][_0x1ca33e];if(!_0x4d9c9a){const _0x3eb12d=function(_0x4f71b6){this['MltDAa']=_0x4f71b6,this['nDaObn']=[0x2*-0x135b+0x3c*0x64+0xf47,0x8c3+-0x223a*-0x1+-0x2afd,0x25b8+-0x31+-0x1*0x2587],this['OFrQBD']=function(){return'newState';},this['yuBtxm']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['cmGcQQ']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x3eb12d['prototype']['IuQToB']=function(){const _0x47f772=new RegExp(this['yuBtxm']+this['cmGcQQ']),_0x4996d1=_0x47f772['test'](this['OFrQBD']['toString']())?--this['nDaObn'][-0x1*0x1159+-0x16f2+0x284c]:--this['nDaObn'][-0x32a+0x10ba+-0xd90];return this['JSRNvx'](_0x4996d1);},_0x3eb12d['prototype']['JSRNvx']=function(_0x2f8f02){if(!Boolean(~_0x2f8f02))return _0x2f8f02;return this['fxzxoq'](this['MltDAa']);},_0x3eb12d['prototype']['fxzxoq']=function(_0x31fc40){for(let _0x22ce49=-0x5c*0x61+-0x1139+0x3415,_0x93a292=this['nDaObn']['length'];_0x22ce49<_0x93a292;_0x22ce49++){this['nDaObn']['push'](Math['round'](Math['random']())),_0x93a292=this['nDaObn']['length'];}return _0x31fc40(this['nDaObn'][-0x1*-0x111c+0x1377+-0x2493]);},(''+function(){return-0x6c6+0x7b9+-0xf3;})['indexOf']('\x0a')===-(-0x13*0x123+-0x1cd3+-0x14b*-0x27)&&new _0x3eb12d(_0x1439)['IuQToB'](),_0x12c95e=_0x1439['uiNcte'](_0x12c95e),_0x1439['xQnrJU'][_0x1ca33e]=_0x12c95e;}else _0x12c95e=_0x4d9c9a;return _0x12c95e;}function determineFailureReason(_0x174140){const _0x4caba8=_0x1439,_0x179e2a={};_0x179e2a[_0x4caba8(0x195)]=function(_0x17620c,_0x32aa64){return _0x17620c<_0x32aa64;},_0x179e2a['SNhbT']=_0x4caba8(0x1a2),_0x179e2a['BZmVA']=function(_0x384e77,_0x40bdd2){return _0x384e77<_0x40bdd2;},_0x179e2a[_0x4caba8(0x1a0)]=_0x4caba8(0x174)+'g',_0x179e2a[_0x4caba8(0x19b)]=_0x4caba8(0x97)+'er',_0x179e2a[_0x4caba8(0x12d)]='操作时间模'+_0x4caba8(0x108),_0x179e2a[_0x4caba8(0x135)]=_0x4caba8(0xc7)+'actio'+'n',_0x179e2a[_0x4caba8(0x148)]=_0x4caba8(0x199)+'自然',_0x179e2a[_0x4caba8(0x160)]=_0x4caba8(0x14d)+'异常',_0x179e2a[_0x4caba8(0x196)]=_0x4caba8(0x87)+_0x4caba8(0xec);const _0x3aad76=_0x179e2a,_0x5e0829=[];if(_0x3aad76['MeurL'](_0x174140[_0x4caba8(0x1a2)+_0x4caba8(0x15a)+_0x4caba8(0x116)+'s'],0x229c+0x6*-0x352+0x1d6*-0x8+0.4))_0x5e0829[_0x4caba8(0x1ae)]([_0x3aad76['SNhbT'],_0x174140[_0x4caba8(0x1a2)+_0x4caba8(0x15a)+_0x4caba8(0x116)+'s']]);if(_0x3aad76['BZmVA'](_0x174140[_0x4caba8(0x174)+_0x4caba8(0x1d1)+'ralne'+'ss'],-0x4*0x1a8+0xae7+-0x447+0.4))_0x5e0829[_0x4caba8(0x1ae)]([_0x3aad76[_0x4caba8(0x1a0)],_0x174140['timin'+_0x4caba8(0x1d1)+'ralne'+'ss']]);if(_0x3aad76[_0x4caba8(0x195)](_0x174140[_0x4caba8(0xc7)+_0x4caba8(0xda)+_0x4caba8(0x164)+_0x4caba8(0x1a6)],0x20*-0x73+0x212a+-0x5*0x3c2+0.4))_0x5e0829['push']([_0x4caba8(0xc7)+_0x4caba8(0xda)+'n',_0x174140[_0x4caba8(0xc7)+_0x4caba8(0xda)+_0x4caba8(0x164)+_0x4caba8(0x1a6)]]);if(_0x3aad76[_0x4caba8(0x104)](_0x174140['brows'+'erInt'+_0x4caba8(0x1c5)+'y'],0x301*0x1+-0x1*-0xf33+-0x1234+0.4))_0x5e0829['push']([_0x3aad76['zUwTO'],_0x174140[_0x4caba8(0x97)+_0x4caba8(0x12e)+_0x4caba8(0x1c5)+'y']]);_0x5e0829[_0x4caba8(0x203)]((_0x29df01,_0x3f3198)=>_0x29df01[-0x843+-0x1a95+-0x1*-0x22d9]-_0x3f3198[0x2*0x86b+-0x131*0x16+0x961]);switch(_0x5e0829[-0x1*-0x2103+0x1ee1+0x234*-0x1d]?.[0x1836+0x11*-0x7a+-0x101c]){case _0x3aad76[_0x4caba8(0x14a)]:return _0x4caba8(0x1c4)+_0x4caba8(0x115);case _0x3aad76[_0x4caba8(0x1a0)]:return _0x3aad76[_0x4caba8(0x12d)];case _0x3aad76[_0x4caba8(0x135)]:return _0x3aad76[_0x4caba8(0x148)];case _0x3aad76[_0x4caba8(0x19b)]:return _0x3aad76[_0x4caba8(0x160)];default:return _0x3aad76['UqvIg'];}}function generateToken(_0x15cad6){const _0x553f38=_0x1439,_0x22dc49={};_0x22dc49[_0x553f38(0x123)]='hex',_0x22dc49[_0x553f38(0x7a)]=_0x553f38(0xe2)+'6';const _0x458c0c=_0x22dc49,_0x12d69d=Date['now'](),_0x1c2fd6=randomBytes(-0xcf7*-0x3+-0xe83*0x2+0x1*-0x9d7)[_0x553f38(0x1cc)+_0x553f38(0x214)](_0x458c0c[_0x553f38(0x123)]),_0x4165d3=_0x15cad6+'.'+_0x12d69d+'.'+_0x1c2fd6,_0x71ac1d=createHash(_0x458c0c[_0x553f38(0x7a)])[_0x553f38(0x1a9)+'e']((process.env.HV_SECRET||_0x553f38(0x9d)+'fault'+_0x553f38(0x13a)+'et')+'.'+_0x4165d3)['diges'+'t'](_0x458c0c[_0x553f38(0x123)])[_0x553f38(0x1cb)+'ring'](-0x8f8+0xc28+0x18*-0x22,-0x29d*-0x6+0x3d*-0x9b+-0x1a5*-0xd);return'hv_'+_0x4165d3+'_'+_0x71ac1d;}export{analyzeBehavior,createSession,detectAutomation,generatePOWChallenge,verifyPOWSolution,verifySession};
|