@evomap/evolver 1.89.0 → 1.89.1
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/CONTRIBUTING.md +19 -0
- package/README.ja-JP.md +9 -32
- package/README.ko-KR.md +9 -32
- package/README.md +530 -86
- package/README.zh-CN.md +4 -31
- package/SKILL.md +1 -1
- package/assets/cover.png +0 -0
- package/index.js +1 -1
- package/package.json +17 -6
- package/scripts/a2a_export.js +63 -0
- package/scripts/a2a_ingest.js +79 -0
- package/scripts/a2a_promote.js +118 -0
- package/scripts/analyze_by_skill.js +121 -0
- package/scripts/build_binaries.js +479 -0
- package/scripts/check-changelog.js +166 -0
- package/scripts/extract_log.js +85 -0
- package/scripts/generate_history.js +75 -0
- package/scripts/gep_append_event.js +96 -0
- package/scripts/gep_personality_report.js +234 -0
- package/scripts/human_report.js +147 -0
- package/scripts/recall-verify-report.js +234 -0
- package/scripts/recover_loop.js +61 -0
- package/scripts/seed-merchants.js +91 -0
- package/scripts/suggest_version.js +89 -0
- package/scripts/validate-modules.js +38 -0
- package/scripts/validate-suite.js +78 -0
- package/skills/index.json +14 -0
- package/src/evolve/guards.js +1 -721
- package/src/evolve/pipeline/collect.js +1 -1283
- package/src/evolve/pipeline/dispatch.js +1 -421
- package/src/evolve/pipeline/enrich.js +1 -434
- package/src/evolve/pipeline/hub.js +1 -319
- package/src/evolve/pipeline/select.js +1 -274
- package/src/evolve/pipeline/signals.js +1 -206
- package/src/evolve/utils.js +1 -264
- package/src/evolve.js +1 -350
- package/src/forceUpdate.js +105 -20
- package/src/gep/a2aProtocol.js +1 -4395
- package/src/gep/autoDistillConv.js +1 -205
- package/src/gep/autoDistillLlm.js +1 -315
- package/src/gep/candidateEval.js +1 -92
- package/src/gep/candidates.js +1 -198
- package/src/gep/contentHash.js +1 -30
- package/src/gep/conversationSniffer.js +1 -266
- package/src/gep/crypto.js +1 -89
- package/src/gep/curriculum.js +1 -163
- package/src/gep/deviceId.js +1 -218
- package/src/gep/envFingerprint.js +1 -118
- package/src/gep/epigenetics.js +1 -31
- package/src/gep/execBridge.js +1 -711
- package/src/gep/explore.js +1 -289
- package/src/gep/hash.js +1 -15
- package/src/gep/hubFetch.js +1 -359
- package/src/gep/hubReview.js +1 -207
- package/src/gep/hubSearch.js +1 -526
- package/src/gep/hubVerify.js +1 -306
- package/src/gep/learningSignals.js +1 -89
- package/src/gep/memoryGraph.js +1 -1374
- package/src/gep/memoryGraphAdapter.js +1 -203
- package/src/gep/mutation.js +1 -203
- package/src/gep/narrativeMemory.js +1 -108
- package/src/gep/openPRRegistry.js +1 -205
- package/src/gep/personality.js +1 -423
- package/src/gep/policyCheck.js +1 -599
- package/src/gep/prompt.js +1 -836
- package/src/gep/recallInject.js +1 -409
- package/src/gep/recallVerifier.js +1 -318
- package/src/gep/reflection.js +1 -177
- package/src/gep/selector.js +1 -602
- package/src/gep/skillDistiller.js +1 -1294
- package/src/gep/skillPublisher.js +1 -1
- package/src/gep/solidify.js +1 -1699
- package/src/gep/strategy.js +1 -136
- package/src/gep/tokenSavings.js +1 -88
- package/src/gep/workspaceKeychain.js +1 -174
- package/src/proxy/extensions/traceControl.js +1 -99
- package/src/proxy/inject.js +1 -52
- package/src/proxy/lifecycle/manager.js +2 -0
- package/src/proxy/trace/extractor.js +1 -534
- package/src/proxy/trace/usage.js +1 -105
- package/.cursor/BUGBOT.md +0 -182
- package/.env.example +0 -68
- package/.git-commit-guard-token +0 -1
- package/.github/CODEOWNERS +0 -63
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +0 -23
- package/.github/pull_request_template.md +0 -45
- package/.github/workflows/test.yml +0 -75
- package/CHANGELOG.md +0 -1123
- package/README.public.md +0 -594
- package/SECURITY.md +0 -108
- package/assets/gep/events.jsonl +0 -3
- package/examples/atp-consumer-quickstart.md +0 -100
- package/examples/hello-world.md +0 -38
- package/proxy-package.json +0 -39
- package/public.manifest.json +0 -141
- /package/assets/gep/{genes.json → genes.seed.json} +0 -0
- /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
package/src/gep/hubFetch.js
CHANGED
|
@@ -1,359 +1 @@
|
|
|
1
|
-
// hubFetch -- single chokepoint for every Hub-facing HTTP call.
|
|
2
|
-
//
|
|
3
|
-
// Two protections, both bypassable only via EVOMAP_HUB_ALLOW_INSECURE=1:
|
|
4
|
-
//
|
|
5
|
-
// 1. URL schema check. Rejects anything that does not parse as https://.
|
|
6
|
-
// This catches every misconfigured / attacker-supplied env var even
|
|
7
|
-
// when the caller bypassed resolveHubUrl() and read process.env
|
|
8
|
-
// directly (httpTransportSend / getHubUrl() / per-call opts.hubUrl /
|
|
9
|
-
// proxy this.hubUrl all reach here).
|
|
10
|
-
//
|
|
11
|
-
// 2. TLS verification. Built-in fetch validates certificates by default,
|
|
12
|
-
// but NODE_TLS_REJECT_UNAUTHORIZED=0 disables that globally. Passing
|
|
13
|
-
// an explicit undici.Agent with connect.rejectUnauthorized:true as
|
|
14
|
-
// the dispatcher makes Hub traffic immune to that env var.
|
|
15
|
-
//
|
|
16
|
-
// Escape hatch: EVOMAP_HUB_ALLOW_INSECURE=1 disables BOTH protections (used
|
|
17
|
-
// for local dev / mock hubs on http:// or with self-signed certs). Any
|
|
18
|
-
// value other than exactly "1" is treated as absent.
|
|
19
|
-
|
|
20
|
-
// Use BOTH Agent and fetch from the same undici package. Node's global
|
|
21
|
-
// fetch is built on an internal undici, and an Agent created from the
|
|
22
|
-
// installed `undici` package is not interface-compatible with it — mixing
|
|
23
|
-
// them yields `UND_ERR_INVALID_ARG: invalid onRequestStart method` at
|
|
24
|
-
// request time. Pulling fetch from the same package keeps them in sync.
|
|
25
|
-
const https = require('https');
|
|
26
|
-
const { Agent, fetch: undiciFetch, buildConnector } = require('undici');
|
|
27
|
-
|
|
28
|
-
// Cap idle keep-alive well below consumer-router NAT eviction (typically
|
|
29
|
-
// 60-300s). undici's default keepAliveTimeout is 600s, which means after an
|
|
30
|
-
// idle period the next request reuses a socket the NAT has already silently
|
|
31
|
-
// dropped and only fails after AbortSignal timeout — a major contributor to
|
|
32
|
-
// post-idle heartbeat death. headers/bodyTimeout are bounded so a wedged
|
|
33
|
-
// socket cannot stall the heartbeat indefinitely.
|
|
34
|
-
// Connect options shared between agents.
|
|
35
|
-
// - rejectUnauthorized: TLS verification, immune to NODE_TLS_REJECT_UNAUTHORIZED=0.
|
|
36
|
-
// - timeout: TCP+TLS handshake deadline.
|
|
37
|
-
// - autoSelectFamily: Happy Eyeballs. On dual-stack networks where the v6
|
|
38
|
-
// route black-holes after sleep/wake (common with residential routers),
|
|
39
|
-
// without this Node tries v6 first and only falls back to v4 after the
|
|
40
|
-
// full connect.timeout (~10s). With autoSelectFamily the v4 attempt
|
|
41
|
-
// races in within ~250ms, so the first post-wake hub call is fast
|
|
42
|
-
// instead of suffering a guaranteed 10s pause.
|
|
43
|
-
const _connectOpts = {
|
|
44
|
-
rejectUnauthorized: true,
|
|
45
|
-
timeout: 10_000,
|
|
46
|
-
autoSelectFamily: true,
|
|
47
|
-
autoSelectFamilyAttemptTimeout: 250,
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
// Round-8 (§21.6): wrap undici's built-in connector so we can enable
|
|
51
|
-
// OS-level TCP keepalive on the underlying socket. macOS default
|
|
52
|
-
// TCP_KEEPIDLE is 7200s -- way too long for our 10s heartbeat
|
|
53
|
-
// AbortSignal to ever benefit from kernel-level dead-socket detection.
|
|
54
|
-
// undici's keepAliveTimeout (10s above) trims sockets that have been
|
|
55
|
-
// idle in our pool, but a socket that is freshly idle (1-9s) and gets
|
|
56
|
-
// silently NAT-evicted during the macOS sleep window is reused on
|
|
57
|
-
// wake, the next request hangs until the AbortSignal trips, and the
|
|
58
|
-
// dispatcher pool fills with "destroying" sockets that pin capacity.
|
|
59
|
-
// With setKeepAlive(true, 15_000) the kernel fires TCP keepalive
|
|
60
|
-
// probes after 15s of socket idle, sees the silent drop within a few
|
|
61
|
-
// probe intervals, and surfaces ECONNRESET to the next read -- so
|
|
62
|
-
// reuse of a dead socket fails fast instead of hanging until app-
|
|
63
|
-
// layer timeout. autoSelectFamily, rejectUnauthorized, connect.timeout
|
|
64
|
-
// all still apply because we delegate to buildConnector(opts).
|
|
65
|
-
const _baseConnect = buildConnector(_connectOpts);
|
|
66
|
-
function _connectWithKeepAlive(opts, cb) {
|
|
67
|
-
return _baseConnect(opts, function (err, socket) {
|
|
68
|
-
if (err) return cb(err, socket);
|
|
69
|
-
try {
|
|
70
|
-
if (socket && typeof socket.setKeepAlive === 'function') {
|
|
71
|
-
socket.setKeepAlive(true, 15_000);
|
|
72
|
-
}
|
|
73
|
-
} catch (_) { /* never block connect on a setKeepAlive failure */ }
|
|
74
|
-
cb(null, socket);
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
// Marker so the #160 TLS-pinning contract (dispatcher.options.connect
|
|
78
|
-
// .rejectUnauthorized === true) remains introspectable now that
|
|
79
|
-
// `connect` is a function wrapping buildConnector(_connectOpts) instead
|
|
80
|
-
// of a plain options object. The actual TLS pinning is enforced by
|
|
81
|
-
// _connectOpts above; this property only mirrors that intent for tests
|
|
82
|
-
// and readers.
|
|
83
|
-
_connectWithKeepAlive.rejectUnauthorized = true;
|
|
84
|
-
|
|
85
|
-
function _makeStrictAgent() {
|
|
86
|
-
return new Agent({
|
|
87
|
-
connect: _connectWithKeepAlive,
|
|
88
|
-
keepAliveTimeout: 10_000,
|
|
89
|
-
keepAliveMaxTimeout: 60_000,
|
|
90
|
-
headersTimeout: 30_000,
|
|
91
|
-
bodyTimeout: 30_000,
|
|
92
|
-
pipelining: 1,
|
|
93
|
-
});
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
function _makeLongPollAgent() {
|
|
97
|
-
return new Agent({
|
|
98
|
-
connect: _connectWithKeepAlive,
|
|
99
|
-
keepAliveTimeout: 10_000,
|
|
100
|
-
keepAliveMaxTimeout: 60_000,
|
|
101
|
-
headersTimeout: 65_000,
|
|
102
|
-
bodyTimeout: 65_000,
|
|
103
|
-
pipelining: 1,
|
|
104
|
-
});
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
function _makeMailboxAgent() {
|
|
108
|
-
return new Agent({
|
|
109
|
-
connect: _connectWithKeepAlive,
|
|
110
|
-
keepAliveTimeout: 10_000,
|
|
111
|
-
keepAliveMaxTimeout: 60_000,
|
|
112
|
-
// Sits just above the highest mailbox AbortSignal (inbound=35s) so the
|
|
113
|
-
// app-layer signal is the authority on cancellation, while still
|
|
114
|
-
// bounding wedged-socket lifetime well below "forever".
|
|
115
|
-
headersTimeout: 45_000,
|
|
116
|
-
bodyTimeout: 45_000,
|
|
117
|
-
pipelining: 1,
|
|
118
|
-
});
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
// Default agent for short hub calls (heartbeat, hello, transport, publish).
|
|
122
|
-
// Header/body timeouts (30s) are bounded so a wedged socket cannot stall
|
|
123
|
-
// the heartbeat loop (HEARTBEAT_TIMEOUT_MS=10s leaves a 3x margin).
|
|
124
|
-
// keepAliveTimeout is well below consumer-router NAT eviction (typically
|
|
125
|
-
// 60-300s) so the next call after an idle period gets a fresh socket
|
|
126
|
-
// rather than reusing one the NAT has silently dropped.
|
|
127
|
-
// Node's native `https.Agent` for callers that build their own
|
|
128
|
-
// `https.request(...)` transport (atpExecute._postJson). hubFetch pins
|
|
129
|
-
// TLS verification for fetch() via the undici Agent above; this is the
|
|
130
|
-
// equivalent for the `node:https` API so the second protection layer
|
|
131
|
-
// described at the top of this file is honoured everywhere, not just by
|
|
132
|
-
// hubFetch.
|
|
133
|
-
const _strictHttpsAgent = new https.Agent({ rejectUnauthorized: true });
|
|
134
|
-
|
|
135
|
-
// Long-poll agent for /a2a/events/poll. The application-layer
|
|
136
|
-
// AbortSignal.timeout for that path is 60s (EVENT_POLL_TIMEOUT_MS), but
|
|
137
|
-
// _strictAgent's headersTimeout=30s would otherwise fire first and abort
|
|
138
|
-
// every long poll at 30s -- the hub gets no chance to deliver an event
|
|
139
|
-
// that arrives in the 30-55s window. Headers/body timeouts here sit just
|
|
140
|
-
// above the app-layer 60s ceiling so the AbortSignal is the visible
|
|
141
|
-
// timeout signal.
|
|
142
|
-
// Mailbox agent for /a2a/mailbox/inbound (35s AbortSignal) and
|
|
143
|
-
// /a2a/mailbox/outbound (30s AbortSignal). _strictAgent's 30s
|
|
144
|
-
// headers/bodyTimeout would fire AT OR BEFORE those app signals,
|
|
145
|
-
// silently capping inbound at 30s (regression vs main where _strictAgent
|
|
146
|
-
// had undici defaults ~300s) and racing with outbound's identical 30s
|
|
147
|
-
// signal. The 45s ceiling here keeps the app-layer AbortSignal as the
|
|
148
|
-
// authority while still bounding a wedged socket.
|
|
149
|
-
let _strictAgent = _makeStrictAgent();
|
|
150
|
-
let _longPollAgent = _makeLongPollAgent();
|
|
151
|
-
let _mailboxAgent = _makeMailboxAgent();
|
|
152
|
-
|
|
153
|
-
// Drain and rebuild both undici agents. Called from the index.js SIGCONT
|
|
154
|
-
// handler on macOS resume: undici's keepAliveTimeout is measured from
|
|
155
|
-
// "socket goes idle" on libuv's monotonic clock, which freezes through
|
|
156
|
-
// sleep. The next post-wake request can therefore reuse a socket the
|
|
157
|
-
// NAT silently dropped during the suspend window and only fail after the
|
|
158
|
-
// 30s headersTimeout -- well above HEARTBEAT_TIMEOUT_MS (10s). The
|
|
159
|
-
// AbortSignal trips first but the socket may linger in the pool's
|
|
160
|
-
// "destroying" state, pinning capacity. Closing both agents forces all
|
|
161
|
-
// idle sockets shut and frees the per-host autoSelectFamily cache so a
|
|
162
|
-
// stale "v6 wins" decision from before sleep does not stick when v6 is
|
|
163
|
-
// now black-holed. In-flight requests still finish on their existing
|
|
164
|
-
// socket (close() does not abort them). Cheap to call -- safe to invoke
|
|
165
|
-
// even if nothing changed.
|
|
166
|
-
function drainPool() {
|
|
167
|
-
const old = [_strictAgent, _longPollAgent, _mailboxAgent];
|
|
168
|
-
_strictAgent = _makeStrictAgent();
|
|
169
|
-
_longPollAgent = _makeLongPollAgent();
|
|
170
|
-
_mailboxAgent = _makeMailboxAgent();
|
|
171
|
-
for (const agent of old) {
|
|
172
|
-
try {
|
|
173
|
-
// Agent.close() returns a Promise that resolves when all in-flight
|
|
174
|
-
// requests finish. We do not await it -- the new agents already
|
|
175
|
-
// serve fresh calls, and the old ones drain naturally.
|
|
176
|
-
const p = agent.close();
|
|
177
|
-
if (p && typeof p.catch === 'function') p.catch(() => {});
|
|
178
|
-
} catch (_) {}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
function _pickDispatcher(url) {
|
|
183
|
-
// Three dispatcher pools, picked by exact path match:
|
|
184
|
-
// - /a2a/events/poll -> _longPollAgent (65s timeouts)
|
|
185
|
-
// - /a2a/mailbox/{inbound,outbound} -> _mailboxAgent (45s timeouts)
|
|
186
|
-
// - everything else -> _strictAgent (30s timeouts)
|
|
187
|
-
//
|
|
188
|
-
// The split exists because each path has a different app-layer
|
|
189
|
-
// AbortSignal ceiling: event poll = 60s, mailbox inbound = 35s, mailbox
|
|
190
|
-
// outbound = 30s (racy against strict's 30s), heartbeat / hello /
|
|
191
|
-
// transport = <= 10s. The strict agent's 30s headers/bodyTimeout
|
|
192
|
-
// would otherwise fire BEFORE the longer app signals, silently
|
|
193
|
-
// capping those paths and making AbortSignal cosmetic. Mailbox /
|
|
194
|
-
// long-poll dispatchers keep the app-layer signal as the visible
|
|
195
|
-
// timeout while still bounding wedged-socket lifetime.
|
|
196
|
-
//
|
|
197
|
-
// Match on path (not host) to avoid coupling to a specific hub URL.
|
|
198
|
-
//
|
|
199
|
-
// Round-6 (§19.8): previously the matcher accepted both
|
|
200
|
-
// `pathname === '/a2a/events/poll'` AND `pathname.endsWith('/a2a/events/poll')`.
|
|
201
|
-
// The endsWith branch was a needless widening that also caught
|
|
202
|
-
// unrelated paths such as `/admin/a2a/events/poll`, `/v2/a2a/events/poll`,
|
|
203
|
-
// or any future hub path that happens to end with the same suffix --
|
|
204
|
-
// those would silently inherit the 65s long-poll timeout when they
|
|
205
|
-
// should fail fast on the 30s strict timeout. Use exact match only.
|
|
206
|
-
// For hub deployments mounted under a base path (rare; not in the
|
|
207
|
-
// current hub repo), set EVOLVER_LONG_POLL_PATH to override.
|
|
208
|
-
const longPollPath = process.env.EVOLVER_LONG_POLL_PATH || '/a2a/events/poll';
|
|
209
|
-
try {
|
|
210
|
-
const u = new URL(url);
|
|
211
|
-
if (u.pathname === longPollPath) {
|
|
212
|
-
return _longPollAgent;
|
|
213
|
-
}
|
|
214
|
-
if (u.pathname === '/a2a/mailbox/inbound' || u.pathname === '/a2a/mailbox/outbound') {
|
|
215
|
-
return _mailboxAgent;
|
|
216
|
-
}
|
|
217
|
-
} catch {
|
|
218
|
-
// fall through to strict
|
|
219
|
-
}
|
|
220
|
-
return _strictAgent;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
// Test seam: lets unit tests swap in a mock fetch without forking the call
|
|
224
|
-
// path. Production code must NEVER reassign this from outside the module.
|
|
225
|
-
let _fetchImpl = undiciFetch;
|
|
226
|
-
function _setFetchImplForTest(fn) { _fetchImpl = fn || undiciFetch; }
|
|
227
|
-
|
|
228
|
-
// Error codes that indicate a network-layer disruption rather than an
|
|
229
|
-
// application-layer error. On Linux, a NetworkManager reconnect, VPN
|
|
230
|
-
// re-establishment, or WiFi hand-off invalidates the 5-tuples of all
|
|
231
|
-
// existing TCP connections in the undici pool. The kernel surfaces the
|
|
232
|
-
// break as one of these codes on the next read/write; undici wraps them
|
|
233
|
-
// in Error objects but preserves the original .code property.
|
|
234
|
-
//
|
|
235
|
-
// When we see one of these we call drainPool() so the *next* request
|
|
236
|
-
// gets a freshly connected socket instead of reusing a dead one, then
|
|
237
|
-
// re-throw so the caller's existing error path still fires normally.
|
|
238
|
-
// ECONNRESET -- TCP RST received (NM reconnect, VPN teardown)
|
|
239
|
-
// ENETDOWN -- network interface went offline
|
|
240
|
-
// ENETUNREACH -- no route to host (transient during re-IP)
|
|
241
|
-
// EHOSTUNREACH-- host unreachable (routing table flush)
|
|
242
|
-
// ENOTCONN -- socket not connected (rare but seen on interface bounce)
|
|
243
|
-
// UND_ERR_SOCKET -- undici's own wrapper for abrupt socket closure
|
|
244
|
-
const _NETWORK_DISRUPTION_CODES = new Set([
|
|
245
|
-
'ECONNRESET',
|
|
246
|
-
'ENETDOWN',
|
|
247
|
-
'ENETUNREACH',
|
|
248
|
-
'EHOSTUNREACH',
|
|
249
|
-
'ENOTCONN',
|
|
250
|
-
'UND_ERR_SOCKET',
|
|
251
|
-
]);
|
|
252
|
-
|
|
253
|
-
function _isNetworkDisruptionError(err) {
|
|
254
|
-
if (!err) return false;
|
|
255
|
-
// undici may carry the original code either on err.code or on err.cause.code
|
|
256
|
-
if (_NETWORK_DISRUPTION_CODES.has(err.code)) return true;
|
|
257
|
-
if (err.cause && _NETWORK_DISRUPTION_CODES.has(err.cause.code)) return true;
|
|
258
|
-
return false;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
function _validateHubUrl(url) {
|
|
262
|
-
let parsed;
|
|
263
|
-
try {
|
|
264
|
-
parsed = new URL(url);
|
|
265
|
-
} catch {
|
|
266
|
-
throw new Error(
|
|
267
|
-
'[hubFetch] Hub URL is not a valid URL: ' + JSON.stringify(url) + '. ' +
|
|
268
|
-
'Set EVOMAP_HUB_ALLOW_INSECURE=1 to bypass (local dev / mock hub only).'
|
|
269
|
-
);
|
|
270
|
-
}
|
|
271
|
-
if (parsed.protocol !== 'https:') {
|
|
272
|
-
throw new Error(
|
|
273
|
-
'[hubFetch] Hub URL must use https:// — got ' + JSON.stringify(url) + '. ' +
|
|
274
|
-
'Set EVOMAP_HUB_ALLOW_INSECURE=1 to bypass (local dev / mock hub only).'
|
|
275
|
-
);
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
// Public scheme-only guard for callers that already manage their own HTTP
|
|
280
|
-
// transport (Node's `http`/`https` modules, the platform `fetch`, etc.) and
|
|
281
|
-
// just want to honour the same "https-only unless EVOMAP_HUB_ALLOW_INSECURE=1"
|
|
282
|
-
// posture hubFetch enforces. Throws synchronously on bad input — match
|
|
283
|
-
// _validateHubUrl's throw semantics so call sites can wrap in try/catch.
|
|
284
|
-
//
|
|
285
|
-
// Use this instead of bare URL/fetch when you cannot route through hubFetch
|
|
286
|
-
// (e.g. the existing src/atp/atpExecute.js and src/atp/hubClient.js paths
|
|
287
|
-
// that use http.request / native fetch directly).
|
|
288
|
-
function enforceHubScheme(url) {
|
|
289
|
-
if (process.env.EVOMAP_HUB_ALLOW_INSECURE === '1') return;
|
|
290
|
-
_validateHubUrl(url);
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
// async so synchronous validation throws become Promise rejections — every
|
|
294
|
-
// caller already awaits / .then()s the result, and this makes the function
|
|
295
|
-
// behave uniformly for `assert.rejects(...)` in tests.
|
|
296
|
-
async function hubFetch(url, options) {
|
|
297
|
-
if (process.env.EVOMAP_HUB_ALLOW_INSECURE === '1') {
|
|
298
|
-
// Insecure mode is documented as "local dev / mock hub on http:// or
|
|
299
|
-
// self-signed cert". In that mode use the platform fetch — Node's
|
|
300
|
-
// built-in global.fetch is identical engine to undici, but keeping it
|
|
301
|
-
// as the platform lookup lets tests that stub `global.fetch = mockImpl`
|
|
302
|
-
// intercept the call without forking through _setFetchImplForTest. If
|
|
303
|
-
// a test has explicitly installed the seam, honor that — the explicit
|
|
304
|
-
// override wins over the implicit global lookup.
|
|
305
|
-
const insecureFetch = (_fetchImpl !== undiciFetch) ? _fetchImpl : global.fetch;
|
|
306
|
-
return insecureFetch(url, options);
|
|
307
|
-
}
|
|
308
|
-
_validateHubUrl(url);
|
|
309
|
-
// Object.assign last-wins is intentional: a caller-supplied dispatcher
|
|
310
|
-
// would defeat the TLS guard, so we always force ours. No current caller
|
|
311
|
-
// passes one; revisit if that changes.
|
|
312
|
-
const dispatcher = _pickDispatcher(url);
|
|
313
|
-
try {
|
|
314
|
-
return await _fetchImpl(url, Object.assign({}, options, { dispatcher }));
|
|
315
|
-
} catch (err) {
|
|
316
|
-
// On Linux a NetworkManager reconnect, VPN re-establishment, or WiFi
|
|
317
|
-
// hand-off silently invalidates all existing TCP sockets in the undici
|
|
318
|
-
// pool. The kernel surfaces the break as a network-disruption error
|
|
319
|
-
// code on the next read/write. Without drainPool() the next request
|
|
320
|
-
// reuses another dead socket from the same pool and suffers the same
|
|
321
|
-
// error again. Draining here lets the *next* call open a fresh
|
|
322
|
-
// connection immediately without waiting for the heartbeat's normal
|
|
323
|
-
// interval or the drift-detector's 2*interval poke window.
|
|
324
|
-
//
|
|
325
|
-
// We call drainPool() synchronously before re-throwing so the caller's
|
|
326
|
-
// existing error path (heartbeat .catch, poll .catch, etc.) fires as
|
|
327
|
-
// normal -- this is purely a pool-hygiene side-effect, not a retry.
|
|
328
|
-
if (_isNetworkDisruptionError(err)) {
|
|
329
|
-
try {
|
|
330
|
-
drainPool();
|
|
331
|
-
} catch (_) { /* never block the throw on a pool-drain failure */ }
|
|
332
|
-
}
|
|
333
|
-
throw err;
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
module.exports = {
|
|
338
|
-
hubFetch,
|
|
339
|
-
drainPool,
|
|
340
|
-
_isNetworkDisruptionError,
|
|
341
|
-
_validateHubUrl,
|
|
342
|
-
enforceHubScheme,
|
|
343
|
-
// For callers that must build their own HTTP transport. The Node
|
|
344
|
-
// native case (`https.request(...)`) needs an Agent pinned to
|
|
345
|
-
// rejectUnauthorized:true so a global `NODE_TLS_REJECT_UNAUTHORIZED=0`
|
|
346
|
-
// cannot weaken the Hub channel; pass `strictHttpsAgent` as
|
|
347
|
-
// `options.agent`. Skip when `EVOMAP_HUB_ALLOW_INSECURE=1`, matching
|
|
348
|
-
// hubFetch's own escape-hatch behaviour.
|
|
349
|
-
//
|
|
350
|
-
// For fetch-based callers do NOT pair a hand-rolled Agent with
|
|
351
|
-
// `global.fetch`: `global.fetch` is backed by Node's *internal*
|
|
352
|
-
// undici, and an Agent from the installed `undici` package crashes
|
|
353
|
-
// it with `UND_ERR_INVALID_ARG: invalid onRequestStart method`
|
|
354
|
-
// (see the warning at the top of this file). Route through
|
|
355
|
-
// `hubFetch()` itself instead — it already applies the dispatcher
|
|
356
|
-
// from the right undici copy.
|
|
357
|
-
strictHttpsAgent: _strictHttpsAgent,
|
|
358
|
-
_setFetchImplForTest,
|
|
359
|
-
};
|
|
1
|
+
const _0x349149=_0x3bb6;(function(_0x1af5c2,_0x9c1498){const _0x4d598a=_0x3bb6,_0x4d746f=_0x1af5c2();while(!![]){try{const _0x16885f=parseInt(_0x4d598a(0x1b8,'\x37\x72\x47\x67'))/(0x1a95+-0x554+-0xaa0*0x2)+parseInt(_0x4d598a(0x20e,'\x74\x6c\x6a\x49'))/(0xa1*-0x29+0x24cb+-0xb00)*(-parseInt(_0x4d598a(0x1f8,'\x76\x6e\x67\x52'))/(-0x2188+-0x18f8+0x3a83))+parseInt(_0x4d598a(0x249,'\x37\x72\x47\x67'))/(0xcc7*0x2+0x25ab*-0x1+-0x40b*-0x3)+parseInt(_0x4d598a(0x1e8,'\x44\x63\x25\x4e'))/(0x2*0x389+-0x1e*0xb1+0xdb1)+-parseInt(_0x4d598a(0x272,'\x73\x4d\x23\x70'))/(0x3ca*-0x6+0x1*0x25c1+0xb*-0x15d)+parseInt(_0x4d598a(0x215,'\x78\x23\x71\x74'))/(0x1d53+-0xf1f+-0xbf*0x13)+parseInt(_0x4d598a(0x250,'\x69\x7a\x58\x53'))/(0x17ce+-0x181*0x16+0x950);if(_0x16885f===_0x9c1498)break;else _0x4d746f['push'](_0x4d746f['shift']());}catch(_0x2c8c82){_0x4d746f['push'](_0x4d746f['shift']());}}}(_0x354c,0x4bb13+0x1669f*-0x7+-0x17*-0x9f6e));const _0x439c5a=require(_0x349149(0x27d,'\x51\x6b\x56\x6b')),{Agent:_0x576355,fetch:_0x94d389,buildConnector:_0x5ce6f1}=require('\x75\x6e\x64\x69\x63\x69'),_0x24a894={};_0x24a894[_0x349149(0x273,'\x55\x4a\x59\x52')+_0x349149(0x266,'\x79\x32\x66\x55')+'\x65\x64']=!![],_0x24a894[_0x349149(0x1fa,'\x4a\x74\x78\x43')]=0x2710,_0x24a894[_0x349149(0x1e2,'\x74\x6c\x6a\x49')+_0x349149(0x20d,'\x78\x23\x71\x74')]=!![],_0x24a894['\x61\x75\x74\x6f\x53\x65\x6c\x65'+_0x349149(0x218,'\x36\x4e\x51\x4e')+_0x349149(0x1da,'\x4f\x79\x57\x44')+_0x349149(0x24d,'\x73\x29\x36\x43')]=0xfa;const _0x4a1302=_0x24a894,_0x4a0f93=_0x5ce6f1(_0x4a1302);function _0x3c2630(_0x4188e1,_0x5af460){const _0x84b763=_0x349149,_0x4717b9={'\x58\x41\x5a\x4e\x55':_0x84b763(0x26d,'\x6b\x5b\x69\x38'),'\x64\x4b\x63\x71\x79':function(_0xc72c8c,_0x3fe49f){return _0xc72c8c===_0x3fe49f;},'\x52\x76\x56\x51\x72':function(_0x1156e2,_0x37dd2e){return _0x1156e2(_0x37dd2e);},'\x43\x70\x49\x4c\x67':_0x84b763(0x1ef,'\x74\x6c\x6a\x49'),'\x6b\x64\x70\x6d\x54':_0x84b763(0x26e,'\x55\x4a\x59\x52'),'\x6c\x49\x4b\x6c\x51':function(_0x16a857,_0x135c06,_0x2112ae){return _0x16a857(_0x135c06,_0x2112ae);},'\x45\x76\x49\x41\x6d':_0x84b763(0x252,'\x39\x49\x7a\x5d')};return _0x4717b9[_0x84b763(0x231,'\x55\x25\x57\x21')](_0x4a0f93,_0x4188e1,function(_0x5bac18,_0xb8175b){const _0xc039b2=_0x84b763,_0x13b401={'\x42\x65\x59\x67\x77':_0x4717b9[_0xc039b2(0x206,'\x4a\x4c\x4c\x48')],'\x54\x41\x54\x73\x57':function(_0xba3d07,_0x5f27d3){const _0x53b3d1=_0xc039b2;return _0x4717b9[_0x53b3d1(0x1e7,'\x58\x4a\x79\x5b')](_0xba3d07,_0x5f27d3);},'\x4e\x54\x42\x43\x61':function(_0x4af0cb,_0x4ef2ff){const _0x318860=_0xc039b2;return _0x4717b9[_0x318860(0x24f,'\x29\x7a\x6f\x4c')](_0x4af0cb,_0x4ef2ff);}};if(_0x4717b9[_0xc039b2(0x291,'\x75\x28\x66\x26')]!==_0x4717b9[_0xc039b2(0x247,'\x6f\x5d\x50\x5d')]){if(_0x5bac18)return _0x4717b9['\x6c\x49\x4b\x6c\x51'](_0x5af460,_0x5bac18,_0xb8175b);try{_0x4717b9[_0xc039b2(0x289,'\x55\x4a\x59\x52')](_0x4717b9[_0xc039b2(0x264,'\x44\x75\x43\x55')],_0x4717b9[_0xc039b2(0x1d2,'\x49\x33\x79\x5d')])?_0xb8175b&&_0x4717b9[_0xc039b2(0x23c,'\x43\x74\x77\x74')](typeof _0xb8175b[_0xc039b2(0x1d5,'\x39\x49\x7a\x5d')+_0xc039b2(0x29f,'\x44\x63\x25\x4e')],_0x4717b9[_0xc039b2(0x225,'\x6b\x5b\x69\x38')])&&_0xb8175b['\x73\x65\x74\x4b\x65\x65\x70\x41'+_0xc039b2(0x228,'\x4d\x56\x50\x49')](!![],0x5453+0x3886+-0x5241*0x1):_0x2a7430&&typeof _0x2dacdc[_0xc039b2(0x1cf,'\x55\x26\x31\x33')+_0xc039b2(0x201,'\x75\x28\x66\x26')]===_0x13b401[_0xc039b2(0x1d9,'\x79\x32\x66\x55')]&&_0x1af4e8[_0xc039b2(0x1f6,'\x54\x77\x74\x53')+_0xc039b2(0x237,'\x73\x79\x4a\x5d')](!![],-0x2fda+0x1*-0x6727+0x1*0xd199);}catch(_0x695391){}_0x4717b9['\x6c\x49\x4b\x6c\x51'](_0x5af460,null,_0xb8175b);}else{if(_0x13b401[_0xc039b2(0x1bb,'\x4e\x6f\x49\x4c')](_0x1db194.env.EVOMAP_HUB_ALLOW_INSECURE,'\x31'))return;_0x13b401[_0xc039b2(0x260,'\x4b\x35\x4d\x79')](_0x404cf7,_0x2cb01b);}});}_0x3c2630[_0x349149(0x224,'\x55\x25\x57\x21')+_0x349149(0x25d,'\x5d\x40\x26\x74')+'\x65\x64']=!![];function _0x2ab9b7(){const _0x41df4d=_0x349149,_0x556fed={};return _0x556fed[_0x41df4d(0x20b,'\x62\x77\x57\x73')]=_0x3c2630,_0x556fed[_0x41df4d(0x230,'\x58\x4a\x79\x5b')+_0x41df4d(0x1b0,'\x66\x66\x40\x43')]=0x2710,_0x556fed['\x6b\x65\x65\x70\x41\x6c\x69\x76'+_0x41df4d(0x280,'\x29\x41\x21\x31')+_0x41df4d(0x28c,'\x55\x25\x57\x21')]=0xea60,_0x556fed[_0x41df4d(0x270,'\x75\x28\x66\x26')+_0x41df4d(0x1e9,'\x6f\x5d\x50\x5d')]=0x7530,_0x556fed[_0x41df4d(0x229,'\x39\x49\x7a\x5d')+_0x41df4d(0x220,'\x43\x74\x77\x74')]=0x7530,_0x556fed[_0x41df4d(0x23f,'\x4a\x4c\x4c\x48')+'\x6e\x67']=0x1,new _0x576355(_0x556fed);}function _0x153b87(){const _0x53b55e=_0x349149,_0x138625={};return _0x138625[_0x53b55e(0x20b,'\x62\x77\x57\x73')]=_0x3c2630,_0x138625[_0x53b55e(0x28d,'\x55\x66\x6c\x23')+_0x53b55e(0x25f,'\x73\x4d\x23\x70')]=0x2710,_0x138625[_0x53b55e(0x21d,'\x36\x4e\x51\x4e')+'\x65\x4d\x61\x78\x54\x69\x6d\x65'+_0x53b55e(0x20c,'\x78\x7a\x2a\x4c')]=0xea60,_0x138625['\x68\x65\x61\x64\x65\x72\x73\x54'+_0x53b55e(0x25b,'\x55\x25\x57\x21')]=0xfde8,_0x138625[_0x53b55e(0x21c,'\x49\x29\x33\x66')+_0x53b55e(0x25a,'\x62\x77\x57\x73')]=0xfde8,_0x138625[_0x53b55e(0x1ee,'\x4d\x56\x50\x49')+'\x6e\x67']=0x1,new _0x576355(_0x138625);}function _0x566ba1(){const _0x1ceedb=_0x349149,_0x589695={'\x42\x79\x78\x6d\x48':function(_0x525011,_0x71f726){return _0x525011!==_0x71f726;},'\x49\x47\x65\x7a\x4b':_0x1ceedb(0x1f4,'\x79\x32\x66\x55'),'\x51\x74\x4b\x6e\x58':_0x1ceedb(0x29a,'\x55\x4a\x59\x52'),'\x46\x56\x68\x78\x46':'\x28\x28\x28\x2e\x2b\x29\x2b\x29'+'\x2b\x29\x2b\x24','\x7a\x76\x55\x76\x45':function(_0xba0362,_0x4fe1cb){return _0xba0362!==_0x4fe1cb;},'\x6d\x6f\x4e\x50\x44':_0x1ceedb(0x276,'\x71\x25\x28\x47'),'\x72\x73\x45\x47\x55':_0x1ceedb(0x22d,'\x44\x63\x25\x4e'),'\x53\x7a\x6a\x47\x66':function(_0x2f4b40){return _0x2f4b40();}},_0x180d7a=(function(){let _0x4b51c1=!![];return function(_0x22ceb4,_0x40540f){const _0x1c5f55=_0x3bb6,_0x4bb856={'\x6d\x52\x6c\x67\x4e':function(_0x1e53ea,_0x2e9927){const _0x93def9=_0x3bb6;return _0x589695[_0x93def9(0x274,'\x43\x74\x77\x74')](_0x1e53ea,_0x2e9927);},'\x4f\x73\x4a\x66\x49':_0x589695[_0x1c5f55(0x2a2,'\x6c\x74\x6e\x39')],'\x54\x78\x50\x6a\x6c':_0x589695[_0x1c5f55(0x233,'\x4f\x79\x57\x44')]},_0x3d9c3c=_0x4b51c1?function(){const _0x5ac4a1=_0x1c5f55;if(_0x40540f){if(_0x4bb856[_0x5ac4a1(0x25e,'\x55\x26\x31\x33')](_0x4bb856[_0x5ac4a1(0x1be,'\x29\x7a\x6f\x4c')],_0x4bb856[_0x5ac4a1(0x1f0,'\x44\x63\x25\x4e')])){const _0xd3cb49=_0x40540f[_0x5ac4a1(0x1e3,'\x54\x77\x74\x53')](_0x22ceb4,arguments);return _0x40540f=null,_0xd3cb49;}else{if(_0x239db0(_0x3453b))try{_0x56cf04();}catch(_0x1b8534){}throw _0x4fa692;}}}:function(){};return _0x4b51c1=![],_0x3d9c3c;};}()),_0x27c2d2=_0x180d7a(this,function(){const _0x2f25c4=_0x1ceedb,_0x544e51={};_0x544e51[_0x2f25c4(0x226,'\x43\x74\x77\x74')]=_0x589695[_0x2f25c4(0x1f1,'\x76\x6e\x67\x52')];const _0x2cf068=_0x544e51;return _0x589695[_0x2f25c4(0x275,'\x36\x4e\x51\x4e')](_0x589695[_0x2f25c4(0x1b6,'\x62\x77\x57\x73')],_0x589695[_0x2f25c4(0x1c8,'\x58\x4a\x79\x5b')])?_0x27c2d2[_0x2f25c4(0x244,'\x6c\x74\x6e\x39')]()[_0x2f25c4(0x29b,'\x74\x6c\x6a\x49')](_0x589695[_0x2f25c4(0x258,'\x4e\x6f\x49\x4c')])[_0x2f25c4(0x23b,'\x55\x25\x57\x21')]()[_0x2f25c4(0x22c,'\x78\x7a\x2a\x4c')+_0x2f25c4(0x1ca,'\x58\x4a\x79\x5b')](_0x27c2d2)[_0x2f25c4(0x21f,'\x4f\x79\x57\x44')](_0x589695[_0x2f25c4(0x1d6,'\x74\x6c\x6a\x49')]):_0x1d4e5d[_0x2f25c4(0x1c0,'\x79\x32\x66\x55')]()[_0x2f25c4(0x1bf,'\x73\x56\x76\x78')](_0x2f25c4(0x204,'\x49\x33\x79\x5d')+'\x2b\x29\x2b\x24')['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x2f25c4(0x1e6,'\x73\x4d\x23\x70')+_0x2f25c4(0x242,'\x4f\x79\x57\x44')](_0x48a32e)[_0x2f25c4(0x2a3,'\x79\x32\x66\x55')](TugHfy[_0x2f25c4(0x255,'\x55\x66\x6c\x23')]);});_0x589695[_0x1ceedb(0x235,'\x36\x4e\x51\x4e')](_0x27c2d2);const _0x2eb1d1={};return _0x2eb1d1[_0x1ceedb(0x24b,'\x71\x25\x28\x47')]=_0x3c2630,_0x2eb1d1['\x6b\x65\x65\x70\x41\x6c\x69\x76'+_0x1ceedb(0x205,'\x26\x67\x43\x4c')]=0x2710,_0x2eb1d1[_0x1ceedb(0x277,'\x51\x6b\x56\x6b')+_0x1ceedb(0x246,'\x71\x25\x28\x47')+_0x1ceedb(0x27f,'\x51\x6b\x56\x6b')]=0xea60,_0x2eb1d1[_0x1ceedb(0x1df,'\x73\x4d\x23\x70')+_0x1ceedb(0x296,'\x59\x43\x23\x68')]=0xafc8,_0x2eb1d1[_0x1ceedb(0x22e,'\x4a\x74\x78\x43')+_0x1ceedb(0x23d,'\x49\x29\x33\x66')]=0xafc8,_0x2eb1d1[_0x1ceedb(0x22b,'\x4e\x48\x36\x31')+'\x6e\x67']=0x1,new _0x576355(_0x2eb1d1);}const _0x39ec46={};_0x39ec46[_0x349149(0x1ce,'\x79\x32\x66\x55')+_0x349149(0x1f9,'\x58\x7a\x52\x4c')+'\x65\x64']=!![];const _0x2a9456=new _0x439c5a['\x41\x67\x65\x6e\x74'](_0x39ec46);let _0x18f925=_0x2ab9b7(),_0x4aa97c=_0x153b87(),_0x1c3cd4=_0x566ba1();function _0x6ff5fb(){const _0x145852=_0x349149,_0x3e3061={'\x6b\x77\x6b\x68\x71':_0x145852(0x29e,'\x36\x4e\x51\x4e')+_0x145852(0x257,'\x79\x32\x66\x55')+_0x145852(0x202,'\x78\x7a\x2a\x4c'),'\x50\x47\x53\x74\x6b':function(_0x3b340b,_0x2e779b){return _0x3b340b===_0x2e779b;},'\x49\x69\x79\x72\x59':_0x145852(0x21e,'\x55\x4a\x59\x52')+_0x145852(0x232,'\x6b\x5b\x69\x38')+_0x145852(0x26b,'\x73\x4d\x23\x70'),'\x78\x49\x6c\x79\x74':function(_0x10d929){return _0x10d929();},'\x66\x58\x70\x58\x69':function(_0xa4a51){return _0xa4a51();},'\x6c\x64\x67\x50\x4b':function(_0x36de9e){return _0x36de9e();},'\x48\x62\x4e\x57\x62':function(_0x40d4f6,_0x4f6a7d){return _0x40d4f6!==_0x4f6a7d;},'\x7a\x6e\x52\x55\x66':_0x145852(0x20f,'\x4e\x6f\x49\x4c')},_0xd5140f=[_0x18f925,_0x4aa97c,_0x1c3cd4];_0x18f925=_0x3e3061[_0x145852(0x23e,'\x6c\x74\x6e\x39')](_0x2ab9b7),_0x4aa97c=_0x3e3061['\x66\x58\x70\x58\x69'](_0x153b87),_0x1c3cd4=_0x3e3061[_0x145852(0x1b4,'\x54\x77\x74\x53')](_0x566ba1);for(const _0x1ecdfb of _0xd5140f){if(_0x3e3061[_0x145852(0x21a,'\x5d\x40\x26\x74')](_0x3e3061[_0x145852(0x1c6,'\x39\x49\x7a\x5d')],_0x145852(0x1b5,'\x37\x72\x47\x67')))try{const _0x126a31=_0x1ecdfb[_0x145852(0x1ba,'\x47\x56\x49\x79')]();if(_0x126a31&&_0x3e3061[_0x145852(0x221,'\x33\x76\x4c\x37')](typeof _0x126a31[_0x145852(0x236,'\x6b\x5b\x69\x38')],_0x145852(0x26d,'\x6b\x5b\x69\x38')))_0x126a31[_0x145852(0x282,'\x29\x7a\x6f\x4c')](()=>{});}catch(_0x5341af){}else{const _0x4b07a9=new _0x5dc32b(_0xfea31e);if(_0x4b07a9[_0x145852(0x29d,'\x39\x49\x7a\x5d')]===_0x5406e4)return _0x47ed93;if(_0x4b07a9[_0x145852(0x1e1,'\x43\x74\x77\x74')]===_0x3e3061[_0x145852(0x24e,'\x37\x72\x47\x67')]||_0x3e3061[_0x145852(0x283,'\x76\x6e\x67\x52')](_0x4b07a9['\x70\x61\x74\x68\x6e\x61\x6d\x65'],_0x3e3061[_0x145852(0x1eb,'\x78\x23\x71\x74')]))return _0x12794f;}}}function _0x5f417f(_0x2379ea){const _0x5e1c1f=_0x349149,_0x502bd7={};_0x502bd7[_0x5e1c1f(0x219,'\x4b\x35\x4d\x79')]=_0x5e1c1f(0x286,'\x4b\x35\x4d\x79'),_0x502bd7[_0x5e1c1f(0x1e4,'\x73\x4d\x23\x70')]=_0x5e1c1f(0x299,'\x58\x7a\x52\x4c')+_0x5e1c1f(0x22a,'\x4e\x6f\x49\x4c'),_0x502bd7[_0x5e1c1f(0x1ec,'\x55\x66\x6c\x23')]=function(_0x30225b,_0x307d13){return _0x30225b===_0x307d13;},_0x502bd7[_0x5e1c1f(0x1f7,'\x73\x4d\x23\x70')]=_0x5e1c1f(0x26a,'\x33\x76\x4c\x37')+_0x5e1c1f(0x298,'\x74\x6c\x6a\x49')+_0x5e1c1f(0x25c,'\x58\x4a\x79\x5b'),_0x502bd7[_0x5e1c1f(0x263,'\x73\x79\x4a\x5d')]=_0x5e1c1f(0x223,'\x5d\x40\x26\x74')+'\x6c\x62\x6f\x78\x2f\x6f\x75\x74'+_0x5e1c1f(0x293,'\x51\x6b\x56\x6b'),_0x502bd7[_0x5e1c1f(0x222,'\x5d\x40\x26\x74')]=function(_0x40b404,_0x38ec32){return _0x40b404===_0x38ec32;},_0x502bd7[_0x5e1c1f(0x214,'\x4d\x56\x50\x49')]='\x61\x57\x4d\x42\x68';const _0x1d4394=_0x502bd7,_0x390fe1=process.env.EVOLVER_LONG_POLL_PATH||_0x1d4394[_0x5e1c1f(0x28b,'\x6c\x74\x6e\x39')];try{const _0x37b1fd=new URL(_0x2379ea);if(_0x1d4394[_0x5e1c1f(0x1b7,'\x55\x4a\x59\x52')](_0x37b1fd[_0x5e1c1f(0x1b1,'\x73\x4d\x23\x70')],_0x390fe1))return _0x4aa97c;if(_0x1d4394[_0x5e1c1f(0x284,'\x4d\x56\x50\x49')](_0x37b1fd[_0x5e1c1f(0x1db,'\x6b\x5b\x69\x38')],_0x1d4394[_0x5e1c1f(0x27b,'\x71\x25\x28\x47')])||_0x1d4394[_0x5e1c1f(0x254,'\x29\x7a\x6f\x4c')](_0x37b1fd[_0x5e1c1f(0x285,'\x55\x26\x31\x33')],_0x1d4394[_0x5e1c1f(0x24c,'\x71\x25\x28\x47')])){if(_0x1d4394[_0x5e1c1f(0x210,'\x6f\x5d\x50\x5d')](_0x1d4394['\x55\x6c\x4b\x74\x67'],_0x5e1c1f(0x29c,'\x55\x4a\x59\x52')))return _0x1c3cd4;else try{const _0x4025a8=_0x1ef61a[_0x5e1c1f(0x288,'\x58\x4a\x79\x5b')]();if(_0x4025a8&&typeof _0x4025a8[_0x5e1c1f(0x1b2,'\x78\x23\x71\x74')]===VestIq[_0x5e1c1f(0x269,'\x6f\x5d\x50\x5d')])_0x4025a8[_0x5e1c1f(0x207,'\x5d\x40\x26\x74')](()=>{});}catch(_0x3912e6){}}}catch{}return _0x18f925;}let _0xcfae7a=_0x94d389;function _0x3bb6(_0x48c51b,_0x41679c){_0x48c51b=_0x48c51b-(-0x141*-0x10+-0xebd+-0x3a3);const _0x39a5ff=_0x354c();let _0x27eae1=_0x39a5ff[_0x48c51b];if(_0x3bb6['\x58\x64\x6c\x76\x45\x65']===undefined){var _0x586796=function(_0xabc1a7){const _0x1a88a3='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x4f8d81='',_0x5bd887='',_0xbb55=_0x4f8d81+_0x586796,_0x59571a=(''+function(){return 0xc2*0xd+-0x1*0x1567+0xb8d;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1ced+-0x26f6+-0x202*-0x5);for(let _0x4714c9=0x31f*0x3+-0xadf+0x182,_0x320ebe,_0xe10a26,_0x5654e3=-0x8b*-0x1+-0x2204+0x30b*0xb;_0xe10a26=_0xabc1a7['\x63\x68\x61\x72\x41\x74'](_0x5654e3++);~_0xe10a26&&(_0x320ebe=_0x4714c9%(0xf27+-0x659*0x1+0x7d*-0x12)?_0x320ebe*(-0x44a+-0x1a6+-0xc*-0x84)+_0xe10a26:_0xe10a26,_0x4714c9++%(0x314+-0x245+-0xcb))?_0x4f8d81+=_0x59571a||_0xbb55['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5654e3+(0x2623+-0x1cac+-0x13*0x7f))-(-0x1*-0x1471+-0x2515*-0x1+0x236*-0x1a)!==0x188c+-0x137d+0x5*-0x103?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x97*0x40+0x62*-0x44+-0xab9&_0x320ebe>>(-(0x16e0+0xdf1+-0x24cf)*_0x4714c9&0x10fb+0x18af+-0x29a4)):_0x4714c9:0x2542+-0x1899+-0xca9){_0xe10a26=_0x1a88a3['\x69\x6e\x64\x65\x78\x4f\x66'](_0xe10a26);}for(let _0x14146f=0x4ab*0x1+-0x1*0x2176+0x1ccb,_0x5c853a=_0x4f8d81['\x6c\x65\x6e\x67\x74\x68'];_0x14146f<_0x5c853a;_0x14146f++){_0x5bd887+='\x25'+('\x30\x30'+_0x4f8d81['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x14146f)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10aa*0x1+-0x2213+0x1179))['\x73\x6c\x69\x63\x65'](-(0x2d1*-0xc+0x20f8+0xd6));}return decodeURIComponent(_0x5bd887);};const _0x5f2ba9=function(_0xa97669,_0x3138c5){let _0x5ea958=[],_0x5b3707=-0x21cd+-0x5*-0x65e+0x1*0x1f7,_0x30f23e,_0x145308='';_0xa97669=_0x586796(_0xa97669);let _0xf429a2;for(_0xf429a2=-0x7ed+0x546+0x2a7;_0xf429a2<0x12d1+-0x10f0+0x9*-0x19;_0xf429a2++){_0x5ea958[_0xf429a2]=_0xf429a2;}for(_0xf429a2=0x57b+-0x6d7+0x15c;_0xf429a2<-0x152b+0x7d0+0xe5b;_0xf429a2++){_0x5b3707=(_0x5b3707+_0x5ea958[_0xf429a2]+_0x3138c5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf429a2%_0x3138c5['\x6c\x65\x6e\x67\x74\x68']))%(-0x2486+0x1473+0x1113),_0x30f23e=_0x5ea958[_0xf429a2],_0x5ea958[_0xf429a2]=_0x5ea958[_0x5b3707],_0x5ea958[_0x5b3707]=_0x30f23e;}_0xf429a2=-0x133*0x1e+-0x1b*-0xa6+-0x2*-0x93c,_0x5b3707=-0x13f8+-0x2010+-0x4*-0xd02;for(let _0x4f89a2=0x2cd*-0xd+0x1b9c+0x1*0x8cd;_0x4f89a2<_0xa97669['\x6c\x65\x6e\x67\x74\x68'];_0x4f89a2++){_0xf429a2=(_0xf429a2+(-0x1*0x85+-0x54d+0x5d3))%(-0x15cd+0x1*0x1a30+-0x363*0x1),_0x5b3707=(_0x5b3707+_0x5ea958[_0xf429a2])%(-0xb0+-0x2*-0xbf4+-0x1638),_0x30f23e=_0x5ea958[_0xf429a2],_0x5ea958[_0xf429a2]=_0x5ea958[_0x5b3707],_0x5ea958[_0x5b3707]=_0x30f23e,_0x145308+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0xa97669['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4f89a2)^_0x5ea958[(_0x5ea958[_0xf429a2]+_0x5ea958[_0x5b3707])%(0x1*-0x201d+0x2377+-0x25a*0x1)]);}return _0x145308;};_0x3bb6['\x52\x42\x64\x6f\x46\x4e']=_0x5f2ba9,_0x3bb6['\x71\x75\x63\x4d\x55\x46']={},_0x3bb6['\x58\x64\x6c\x76\x45\x65']=!![];}const _0x2b057f=_0x39a5ff[0x855+-0x1*-0x2255+-0x2aaa],_0x1aab61=_0x48c51b+_0x2b057f,_0x5ce65e=_0x3bb6['\x71\x75\x63\x4d\x55\x46'][_0x1aab61];if(!_0x5ce65e){if(_0x3bb6['\x5a\x70\x68\x65\x58\x7a']===undefined){const _0x3d0cb2=function(_0x1db00e){this['\x53\x41\x75\x55\x76\x45']=_0x1db00e,this['\x62\x62\x79\x48\x5a\x55']=[-0x1a06+0x1f*-0x11+-0x1c16*-0x1,0xd15+0x2548+-0x325d,-0x1*0x23bd+-0x134d+0x5*0xb02],this['\x41\x48\x6b\x6f\x76\x73']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x53\x6e\x54\x4d\x77\x69']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4a\x44\x42\x63\x44\x4e']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x3d0cb2['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x50\x53\x44\x6d\x44\x4d']=function(){const _0xe4252a=new RegExp(this['\x53\x6e\x54\x4d\x77\x69']+this['\x4a\x44\x42\x63\x44\x4e']),_0xc1f83a=_0xe4252a['\x74\x65\x73\x74'](this['\x41\x48\x6b\x6f\x76\x73']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x62\x62\x79\x48\x5a\x55'][-0x1f5f+0x923+-0x1*-0x163d]:--this['\x62\x62\x79\x48\x5a\x55'][-0xd6*0x15+0x1*-0x11ba+0x2348];return this['\x58\x4e\x50\x4b\x70\x42'](_0xc1f83a);},_0x3d0cb2['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x58\x4e\x50\x4b\x70\x42']=function(_0x323b6d){if(!Boolean(~_0x323b6d))return _0x323b6d;return this['\x78\x48\x63\x65\x4a\x51'](this['\x53\x41\x75\x55\x76\x45']);},_0x3d0cb2['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x78\x48\x63\x65\x4a\x51']=function(_0x5cba4b){for(let _0x30a472=-0x143f+0x1*-0x1b6b+0x2faa,_0x48a0d0=this['\x62\x62\x79\x48\x5a\x55']['\x6c\x65\x6e\x67\x74\x68'];_0x30a472<_0x48a0d0;_0x30a472++){this['\x62\x62\x79\x48\x5a\x55']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x48a0d0=this['\x62\x62\x79\x48\x5a\x55']['\x6c\x65\x6e\x67\x74\x68'];}return _0x5cba4b(this['\x62\x62\x79\x48\x5a\x55'][0x2*-0x795+0x3db+0xb4f]);},(''+function(){return 0x1*-0x20b4+0xd62+0x1352;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x99d+0x63*-0x59+0x2c09)&&new _0x3d0cb2(_0x3bb6)['\x50\x53\x44\x6d\x44\x4d'](),_0x3bb6['\x5a\x70\x68\x65\x58\x7a']=!![];}_0x27eae1=_0x3bb6['\x52\x42\x64\x6f\x46\x4e'](_0x27eae1,_0x41679c),_0x3bb6['\x71\x75\x63\x4d\x55\x46'][_0x1aab61]=_0x27eae1;}else _0x27eae1=_0x5ce65e;return _0x27eae1;}function _0x33f70e(_0x4247cf){const _0x21d66e=_0x349149,_0x3fa981={};_0x3fa981[_0x21d66e(0x213,'\x55\x25\x57\x21')]=function(_0x30555e,_0x440e7e){return _0x30555e||_0x440e7e;};const _0x21666a=_0x3fa981;_0xcfae7a=_0x21666a[_0x21d66e(0x1b3,'\x71\x25\x28\x47')](_0x4247cf,_0x94d389);}const _0x379f33=new Set([_0x349149(0x1f2,'\x4b\x35\x4d\x79')+'\x45\x54','\x45\x4e\x45\x54\x44\x4f\x57\x4e',_0x349149(0x278,'\x51\x6b\x56\x6b')+_0x349149(0x28f,'\x72\x57\x4e\x52'),_0x349149(0x268,'\x73\x79\x4a\x5d')+_0x349149(0x20a,'\x51\x6b\x56\x6b'),_0x349149(0x239,'\x73\x79\x4a\x5d'),_0x349149(0x1fe,'\x44\x63\x25\x4e')+_0x349149(0x211,'\x4a\x4c\x4c\x48')]);function _0x295082(_0x4b31fb){const _0x59e00e=_0x349149;if(!_0x4b31fb)return![];if(_0x379f33['\x68\x61\x73'](_0x4b31fb[_0x59e00e(0x287,'\x79\x32\x66\x55')]))return!![];if(_0x4b31fb[_0x59e00e(0x243,'\x6b\x5b\x69\x38')]&&_0x379f33[_0x59e00e(0x1d7,'\x4d\x56\x50\x49')](_0x4b31fb['\x63\x61\x75\x73\x65'][_0x59e00e(0x1f3,'\x78\x7a\x2a\x4c')]))return!![];return![];}function _0x107a9c(_0x42c6ce){const _0x5bd650=_0x349149,_0x49aa95={'\x61\x72\x79\x56\x56':function(_0x36c522,_0x2e5d4a,_0x5aa1a5){return _0x36c522(_0x2e5d4a,_0x5aa1a5);},'\x74\x49\x6b\x43\x74':function(_0x35fbba,_0x3bee3a){return _0x35fbba===_0x3bee3a;},'\x47\x62\x79\x74\x6d':_0x5bd650(0x200,'\x4e\x6f\x49\x4c'),'\x67\x44\x76\x74\x6f':function(_0x29bf8f,_0x26fe79,_0x5e061c){return _0x29bf8f(_0x26fe79,_0x5e061c);},'\x46\x4f\x46\x67\x49':function(_0x38eccc,_0x91fb18){return _0x38eccc!==_0x91fb18;},'\x6b\x69\x6e\x73\x6f':_0x5bd650(0x261,'\x75\x28\x66\x26'),'\x6e\x7a\x61\x76\x78':_0x5bd650(0x1ea,'\x4a\x74\x78\x43'),'\x54\x46\x58\x65\x4a':function(_0x5c8ed0,_0x2f16ac){return _0x5c8ed0+_0x2f16ac;},'\x75\x69\x7a\x4e\x41':_0x5bd650(0x1c1,'\x51\x6b\x56\x6b')+_0x5bd650(0x1dd,'\x5d\x40\x26\x74')+_0x5bd650(0x271,'\x51\x6b\x56\x6b')+_0x5bd650(0x262,'\x78\x7a\x2a\x4c')+_0x5bd650(0x26f,'\x37\x72\x47\x67'),'\x66\x52\x57\x65\x44':_0x5bd650(0x1c4,'\x4e\x48\x36\x31')+_0x5bd650(0x1f5,'\x54\x77\x74\x53')+_0x5bd650(0x1cd,'\x73\x4d\x23\x70')+'\x45\x43\x55\x52\x45\x3d\x31\x20'+_0x5bd650(0x1c9,'\x26\x67\x43\x4c')+_0x5bd650(0x279,'\x75\x28\x66\x26')+_0x5bd650(0x27e,'\x29\x41\x21\x31')+_0x5bd650(0x208,'\x44\x75\x43\x55')+_0x5bd650(0x212,'\x6b\x5b\x69\x38'),'\x41\x63\x52\x79\x6e':function(_0x1dc5a4,_0x51dcd9){return _0x1dc5a4!==_0x51dcd9;},'\x6c\x6a\x73\x47\x58':_0x5bd650(0x265,'\x55\x66\x6c\x23')+_0x5bd650(0x1cc,'\x6f\x5d\x50\x5d')+_0x5bd650(0x24a,'\x73\x29\x36\x43')+_0x5bd650(0x290,'\x69\x7a\x58\x53')+_0x5bd650(0x27a,'\x43\x74\x77\x74')+_0x5bd650(0x241,'\x5d\x40\x26\x74')};let _0x2c23ce;try{_0x2c23ce=new URL(_0x42c6ce);}catch{if(_0x49aa95[_0x5bd650(0x294,'\x4a\x4c\x4c\x48')](_0x49aa95[_0x5bd650(0x240,'\x75\x28\x66\x26')],_0x49aa95[_0x5bd650(0x2a1,'\x73\x29\x36\x43')]))throw new Error(_0x49aa95[_0x5bd650(0x292,'\x55\x26\x31\x33')](_0x49aa95[_0x5bd650(0x1c3,'\x44\x75\x43\x55')](_0x49aa95[_0x5bd650(0x1fb,'\x6b\x5b\x69\x38')](_0x49aa95[_0x5bd650(0x256,'\x79\x32\x66\x55')],JSON[_0x5bd650(0x248,'\x73\x4d\x23\x70')+'\x79'](_0x42c6ce)),'\x2e\x20'),_0x49aa95[_0x5bd650(0x26c,'\x79\x32\x66\x55')]));else{if(_0x56ab40)return dSGbaA[_0x5bd650(0x234,'\x76\x6e\x67\x52')](_0x30168f,_0x590dbe,_0x305a3a);try{_0x585ec2&&dSGbaA[_0x5bd650(0x1fc,'\x44\x75\x43\x55')](typeof _0x422e29[_0x5bd650(0x23a,'\x73\x29\x36\x43')+_0x5bd650(0x2a0,'\x55\x4a\x59\x52')],dSGbaA[_0x5bd650(0x1e5,'\x58\x7a\x52\x4c')])&&_0x298794[_0x5bd650(0x1dc,'\x66\x66\x40\x43')+_0x5bd650(0x209,'\x36\x4e\x51\x4e')](!![],-0xb*0x571+-0x869*-0x7+0x3b94);}catch(_0x218171){}dSGbaA['\x67\x44\x76\x74\x6f'](_0x2713f8,null,_0x54399a);}}if(_0x49aa95['\x41\x63\x52\x79\x6e'](_0x2c23ce[_0x5bd650(0x1c7,'\x73\x4d\x23\x70')],_0x5bd650(0x281,'\x55\x66\x6c\x23')))throw new Error(_0x49aa95[_0x5bd650(0x28a,'\x78\x23\x71\x74')](_0x49aa95[_0x5bd650(0x1c5,'\x69\x7a\x58\x53')](_0x49aa95[_0x5bd650(0x1cb,'\x5d\x40\x26\x74')]+JSON[_0x5bd650(0x1bd,'\x73\x29\x36\x43')+'\x79'](_0x42c6ce),'\x2e\x20'),_0x49aa95[_0x5bd650(0x1e0,'\x6b\x5b\x69\x38')]));}function _0x255bdf(_0x478b4a){const _0x9710bf=_0x349149,_0xc0b4f7={};_0xc0b4f7[_0x9710bf(0x27c,'\x39\x49\x7a\x5d')]=function(_0x183879,_0x11a81e){return _0x183879===_0x11a81e;};const _0x300ee5=_0xc0b4f7;if(_0x300ee5[_0x9710bf(0x217,'\x36\x4e\x51\x4e')](process.env.EVOMAP_HUB_ALLOW_INSECURE,'\x31'))return;_0x107a9c(_0x478b4a);}function _0x354c(){const _0x51467a=['\x57\x51\x4e\x64\x48\x6d\x6b\x4e\x77\x73\x48\x34','\x57\x36\x68\x64\x47\x43\x6b\x6b\x41\x53\x6f\x56','\x6b\x33\x30\x6f\x57\x50\x2f\x63\x4b\x71','\x69\x4a\x30\x6e\x6b\x5a\x4f','\x6a\x53\x6b\x33\x57\x35\x4a\x64\x4d\x6d\x6b\x66\x73\x6d\x6f\x50\x6c\x61','\x57\x36\x71\x2f\x76\x43\x6b\x52\x42\x43\x6f\x71\x57\x50\x33\x64\x51\x47','\x57\x4f\x72\x33\x73\x74\x56\x64\x47\x71','\x41\x65\x70\x63\x4d\x43\x6f\x50\x77\x71','\x6b\x4a\x42\x63\x4d\x58\x4c\x57','\x69\x6d\x6b\x67\x74\x38\x6b\x4a\x6a\x38\x6f\x69\x78\x4b\x6d','\x43\x47\x44\x63\x6b\x61','\x6c\x6d\x6b\x33\x6a\x66\x56\x63\x4e\x61','\x75\x68\x68\x64\x4c\x53\x6b\x6f\x72\x43\x6b\x71\x41\x53\x6f\x55','\x79\x4b\x74\x64\x56\x43\x6b\x6e\x44\x43\x6b\x33\x72\x43\x6f\x55','\x77\x6d\x6f\x6f\x57\x37\x70\x63\x52\x43\x6b\x56','\x78\x4c\x64\x64\x48\x66\x79\x70\x57\x52\x74\x63\x4d\x38\x6f\x75\x57\x36\x5a\x63\x50\x77\x42\x63\x4f\x76\x34','\x71\x74\x62\x7a\x65\x77\x75\x67\x57\x51\x6c\x64\x56\x57','\x57\x35\x46\x64\x53\x43\x6b\x4d\x71\x43\x6f\x6c\x57\x50\x35\x6a','\x57\x52\x37\x64\x48\x38\x6f\x4c\x57\x35\x33\x63\x56\x61','\x57\x34\x4a\x63\x4d\x43\x6f\x4e\x73\x71\x69','\x57\x34\x37\x63\x4e\x65\x52\x63\x4a\x43\x6f\x37\x67\x43\x6b\x46\x7a\x43\x6b\x62\x57\x35\x66\x35\x57\x37\x37\x63\x56\x71','\x41\x78\x78\x63\x4a\x43\x6f\x43\x43\x6d\x6b\x4f\x6f\x53\x6b\x42','\x57\x35\x6c\x64\x4f\x43\x6b\x50\x57\x51\x47\x4a\x63\x32\x35\x38\x57\x37\x71\x4b\x57\x50\x57\x61\x57\x51\x53','\x76\x47\x42\x63\x47\x6d\x6f\x47\x6c\x62\x42\x63\x4f\x73\x30','\x7a\x6d\x6f\x44\x57\x52\x2f\x63\x53\x71','\x46\x48\x31\x69\x6b\x71','\x45\x6d\x6b\x33\x57\x37\x38\x35\x6b\x71','\x6b\x68\x56\x63\x50\x53\x6f\x32\x46\x57\x46\x64\x55\x68\x38','\x57\x34\x6c\x64\x47\x75\x68\x64\x4d\x43\x6f\x37\x6a\x53\x6b\x58\x57\x34\x47','\x57\x52\x56\x63\x4f\x38\x6b\x6b\x65\x65\x71','\x75\x43\x6b\x66\x57\x50\x54\x49\x57\x37\x47','\x57\x35\x70\x63\x53\x38\x6f\x4e\x6b\x48\x34\x6b\x79\x58\x47','\x57\x51\x65\x4d\x57\x34\x65\x6e','\x57\x36\x4e\x64\x54\x53\x6b\x7a\x57\x50\x69','\x57\x36\x53\x59\x6b\x53\x6f\x46\x78\x61\x76\x41','\x46\x48\x31\x73','\x61\x77\x61\x58\x57\x4f\x5a\x63\x50\x75\x7a\x39\x73\x71','\x57\x35\x39\x54\x79\x71\x5a\x64\x48\x53\x6b\x69\x66\x61','\x43\x74\x5a\x63\x47\x38\x6f\x6e\x65\x47','\x57\x4f\x4a\x64\x4d\x6d\x6b\x5a\x78\x49\x47','\x57\x52\x64\x63\x52\x43\x6b\x74\x66\x76\x74\x64\x50\x61','\x57\x4f\x78\x64\x52\x38\x6f\x72\x57\x34\x68\x64\x4e\x57\x4f','\x42\x53\x6b\x63\x57\x4f\x4f\x4d\x57\x34\x71','\x57\x34\x65\x36\x42\x53\x6b\x36\x7a\x47','\x75\x59\x7a\x62\x57\x35\x2f\x64\x55\x62\x57\x4d\x79\x4d\x2f\x63\x53\x6d\x6b\x57\x6d\x43\x6f\x55','\x57\x50\x2f\x64\x50\x43\x6f\x66\x57\x35\x2f\x63\x47\x47','\x57\x4f\x4f\x76\x57\x35\x57\x2f\x6a\x47','\x57\x51\x34\x37\x57\x37\x65\x6a\x62\x43\x6b\x39\x68\x71\x69','\x6d\x43\x6b\x39\x71\x53\x6b\x4e\x69\x71','\x45\x53\x6b\x67\x57\x51\x66\x77\x57\x37\x69','\x70\x53\x6f\x32\x6b\x4a\x57','\x57\x52\x6a\x4c\x57\x51\x52\x64\x52\x38\x6b\x50\x46\x4d\x2f\x63\x4d\x47','\x57\x51\x79\x51\x57\x35\x69\x79\x6b\x43\x6b\x34\x67\x61\x30','\x6a\x6d\x6f\x44\x6c\x53\x6f\x4a\x57\x4f\x4c\x4f\x57\x34\x68\x63\x56\x71','\x78\x53\x6b\x4b\x57\x34\x4f\x62\x65\x57\x4f','\x6f\x78\x4c\x44','\x57\x36\x52\x64\x56\x4c\x79\x53\x57\x36\x79','\x45\x53\x6b\x76\x57\x50\x35\x50\x57\x36\x75','\x68\x43\x6b\x66\x57\x35\x31\x47\x57\x52\x2f\x63\x51\x4a\x68\x63\x52\x47','\x7a\x6d\x6b\x70\x57\x4f\x6d\x57\x57\x36\x78\x64\x4c\x38\x6f\x58\x57\x36\x71','\x57\x52\x6c\x64\x47\x6d\x6f\x4e\x57\x37\x42\x63\x4f\x57','\x70\x30\x66\x42\x72\x74\x53','\x63\x4c\x30\x41\x57\x50\x33\x63\x50\x67\x4c\x2b\x71\x47','\x57\x37\x47\x2f\x75\x38\x6b\x52','\x57\x50\x37\x64\x47\x58\x4e\x64\x47\x38\x6b\x77\x71\x53\x6f\x6c\x44\x61','\x78\x47\x46\x63\x4e\x43\x6b\x53\x6b\x62\x64\x63\x4f\x49\x38','\x67\x53\x6f\x36\x6b\x73\x33\x63\x48\x53\x6f\x39\x6a\x53\x6f\x31','\x43\x47\x44\x69\x70\x4e\x44\x54\x71\x49\x79','\x41\x68\x5a\x63\x51\x6d\x6f\x4c\x75\x61','\x57\x34\x68\x64\x54\x38\x6b\x56\x78\x43\x6f\x57\x57\x4f\x6a\x71\x67\x47','\x57\x4f\x33\x64\x51\x6d\x6b\x34\x6d\x30\x72\x6a\x6e\x32\x6a\x56\x61\x4b\x38\x4c\x57\x34\x34','\x57\x50\x4a\x64\x4a\x32\x4b\x49\x57\x51\x33\x63\x47\x43\x6b\x52\x65\x57','\x45\x53\x6b\x4a\x57\x51\x69\x35\x57\x35\x43','\x57\x4f\x42\x64\x4f\x38\x6f\x73\x57\x34\x64\x64\x4d\x75\x56\x64\x4b\x77\x47','\x46\x6d\x6b\x31\x57\x36\x61\x44\x6b\x61','\x64\x72\x6c\x63\x49\x4a\x44\x47','\x57\x50\x34\x31\x57\x35\x30\x56\x64\x47','\x57\x4f\x4e\x64\x4f\x6d\x6f\x6a\x57\x35\x56\x63\x4e\x47','\x57\x51\x64\x63\x55\x38\x6f\x5a\x66\x61','\x78\x76\x6c\x64\x48\x76\x6d\x67\x57\x52\x78\x63\x4c\x43\x6f\x59\x57\x37\x52\x63\x49\x78\x42\x63\x4f\x4c\x4f','\x57\x4f\x4e\x63\x4e\x6d\x6f\x6b\x6a\x76\x37\x63\x4a\x61\x33\x64\x4c\x47','\x69\x6d\x6b\x57\x57\x37\x2f\x64\x53\x6d\x6b\x69\x73\x6d\x6f\x30\x63\x61','\x79\x53\x6b\x66\x57\x52\x4f\x48\x57\x37\x74\x64\x49\x53\x6f\x6b\x57\x36\x30','\x6d\x4b\x44\x6b\x75\x59\x43','\x57\x52\x39\x2f\x57\x52\x4f','\x6e\x6d\x6b\x73\x57\x35\x79\x6d\x62\x47','\x57\x50\x70\x63\x49\x38\x6b\x47\x6f\x33\x33\x64\x4d\x73\x52\x63\x4a\x61','\x79\x38\x6f\x44\x57\x51\x46\x63\x50\x38\x6b\x6f','\x78\x43\x6b\x71\x57\x34\x38','\x77\x43\x6b\x55\x57\x35\x4b','\x57\x4f\x4e\x64\x4f\x6d\x6f\x69\x57\x34\x56\x63\x4b\x57','\x6f\x6d\x6b\x30\x57\x36\x4b\x62\x61\x61\x71\x48\x74\x71','\x42\x57\x64\x63\x49\x38\x6f\x33\x68\x48\x52\x63\x55\x49\x61','\x74\x33\x78\x64\x52\x78\x4b\x48\x57\x51\x6d\x44\x57\x35\x38','\x57\x51\x56\x64\x4a\x43\x6b\x59\x77\x57\x4b','\x42\x6d\x6f\x75\x57\x34\x46\x63\x4a\x6d\x6b\x65\x42\x49\x62\x2f','\x57\x36\x72\x34\x57\x35\x68\x64\x53\x58\x70\x64\x47\x63\x31\x42\x65\x48\x65\x6c\x6c\x6d\x6b\x50','\x61\x43\x6b\x7a\x57\x51\x56\x64\x4c\x53\x6b\x79\x78\x53\x6f\x57\x41\x71','\x73\x76\x46\x64\x4f\x4d\x38\x71\x57\x51\x4b\x65','\x73\x32\x56\x64\x4d\x66\x75\x48','\x6f\x53\x6b\x34\x57\x36\x37\x64\x4c\x6d\x6b\x79\x77\x71','\x57\x52\x57\x38\x57\x4f\x56\x63\x52\x66\x53','\x57\x35\x74\x64\x4a\x32\x70\x64\x47\x53\x6f\x49','\x57\x35\x42\x64\x50\x6d\x6b\x54\x57\x51\x34\x50\x64\x58\x66\x54\x57\x35\x30\x4a\x57\x51\x75\x74','\x77\x76\x78\x63\x52\x38\x6f\x53\x72\x38\x6b\x7a\x64\x43\x6b\x6d','\x57\x52\x2f\x64\x49\x4a\x46\x64\x4d\x43\x6b\x65','\x57\x52\x74\x63\x50\x6d\x6f\x6d\x57\x35\x76\x64','\x57\x35\x46\x64\x54\x75\x78\x64\x4b\x6d\x6f\x31','\x67\x4a\x57\x70\x64\x5a\x4f','\x66\x6d\x6b\x77\x6f\x66\x6c\x63\x53\x71','\x64\x43\x6b\x44\x6c\x77\x74\x64\x4e\x5a\x33\x64\x4a\x59\x4b','\x44\x49\x78\x63\x48\x53\x6f\x37\x68\x47','\x7a\x75\x4a\x64\x50\x53\x6b\x4f\x76\x43\x6b\x47\x72\x38\x6f\x61','\x57\x36\x43\x4f\x6d\x61','\x46\x38\x6b\x68\x57\x4f\x57\x36\x57\x37\x70\x64\x4c\x57','\x57\x50\x5a\x64\x4e\x32\x69\x32','\x75\x38\x6b\x72\x57\x50\x54\x50\x57\x37\x2f\x63\x54\x74\x4e\x63\x56\x71','\x57\x36\x56\x64\x56\x64\x6a\x2b\x57\x35\x47','\x45\x53\x6f\x30\x57\x35\x5a\x63\x49\x6d\x6b\x70\x7a\x4a\x58\x54','\x6b\x38\x6b\x72\x71\x53\x6b\x55\x63\x61','\x77\x53\x6f\x38\x57\x52\x4a\x63\x56\x6d\x6b\x67','\x7a\x75\x48\x68\x42\x78\x76\x2b\x77\x59\x57','\x57\x51\x33\x63\x47\x43\x6f\x72\x6a\x75\x4b','\x57\x37\x4e\x63\x50\x53\x6f\x66\x73\x58\x53','\x6b\x62\x4b\x69\x63\x48\x4b\x35\x6d\x6d\x6b\x44','\x61\x6d\x6b\x6b\x6e\x4e\x74\x63\x4e\x59\x42\x64\x49\x64\x65','\x42\x43\x6b\x73\x57\x4f\x35\x54\x57\x37\x4e\x63\x4f\x5a\x68\x63\x53\x57','\x57\x4f\x4e\x63\x4d\x53\x6f\x6b\x69\x4b\x4e\x63\x4c\x47\x33\x64\x49\x47','\x57\x50\x74\x64\x4b\x43\x6b\x61\x46\x62\x75','\x57\x50\x78\x64\x4d\x64\x43\x35\x57\x51\x6c\x64\x47\x6d\x6f\x4c\x61\x47','\x46\x43\x6f\x70\x57\x34\x64\x63\x49\x38\x6b\x6f','\x62\x38\x6b\x54\x66\x78\x4e\x63\x54\x61','\x57\x4f\x5a\x64\x54\x6d\x6f\x74\x57\x35\x56\x63\x47\x4b\x33\x64\x49\x33\x69','\x73\x6d\x6f\x44\x76\x43\x6f\x42\x57\x34\x61','\x57\x52\x6e\x52\x57\x52\x78\x63\x4c\x4d\x42\x64\x49\x64\x75','\x79\x6d\x6f\x72\x57\x51\x4a\x63\x53\x6d\x6b\x65\x6f\x53\x6b\x33\x61\x71','\x57\x37\x37\x64\x55\x38\x6f\x36\x57\x52\x70\x63\x55\x43\x6b\x4e\x57\x35\x46\x63\x48\x57','\x6c\x53\x6b\x79\x57\x4f\x68\x64\x4e\x6d\x6f\x79\x70\x33\x39\x64\x57\x37\x50\x42\x57\x4f\x2f\x64\x48\x6d\x6f\x4f','\x45\x43\x6f\x7a\x44\x53\x6f\x4e\x57\x34\x76\x58\x57\x37\x78\x63\x55\x47','\x66\x68\x76\x72\x74\x58\x79','\x57\x52\x43\x35\x57\x36\x69\x45\x6c\x71','\x45\x33\x64\x64\x51\x33\x65\x32','\x57\x34\x46\x64\x4b\x53\x6b\x2f\x57\x51\x52\x63\x49\x38\x6f\x52\x57\x35\x64\x63\x4e\x47','\x57\x36\x4e\x64\x55\x43\x6b\x46\x57\x4f\x37\x63\x4e\x38\x6f\x6a\x57\x36\x56\x63\x52\x71','\x45\x38\x6b\x75\x57\x36\x68\x63\x55\x6d\x6b\x6f\x6b\x38\x6b\x4c\x6f\x71','\x6a\x74\x79\x67\x64\x78\x37\x49\x47\x6c\x64\x63\x50\x38\x6b\x4f','\x42\x76\x42\x64\x49\x4b\x4b\x57','\x57\x52\x56\x64\x54\x48\x42\x64\x52\x43\x6b\x6d','\x57\x34\x74\x64\x47\x38\x6b\x55\x57\x51\x52\x63\x55\x71','\x42\x6d\x6b\x7a\x6a\x4a\x38\x67\x57\x52\x70\x64\x4f\x61\x4f','\x57\x34\x70\x64\x47\x53\x6b\x55','\x6b\x43\x6b\x57\x69\x4a\x66\x59\x57\x37\x78\x63\x52\x71\x69','\x67\x57\x75\x6a\x67\x63\x58\x4d','\x57\x36\x78\x64\x4d\x65\x68\x64\x53\x6d\x6f\x34','\x70\x63\x46\x63\x4f\x62\x76\x44','\x57\x34\x75\x41\x76\x43\x6b\x6e\x7a\x61','\x57\x37\x42\x64\x4a\x59\x50\x58\x57\x37\x4a\x64\x56\x6d\x6b\x63\x78\x71','\x61\x38\x6b\x57\x42\x53\x6b\x6f\x68\x43\x6f\x5a\x44\x68\x34','\x61\x53\x6b\x71\x6a\x4e\x4b','\x57\x50\x64\x64\x48\x4d\x6d\x48\x57\x4f\x4b','\x42\x38\x6f\x33\x46\x38\x6f\x5a\x57\x35\x38','\x6e\x4c\x69\x56\x57\x4f\x4a\x63\x47\x47','\x6a\x53\x6b\x69\x57\x34\x61\x34\x70\x61','\x45\x43\x6b\x46\x57\x50\x30','\x67\x62\x71\x79\x67\x62\x34\x57\x6c\x43\x6b\x69','\x6f\x6d\x6b\x6e\x6d\x61\x48\x62\x57\x37\x4e\x63\x52\x48\x6d','\x68\x38\x6b\x39\x6e\x61','\x57\x50\x74\x63\x4f\x43\x6f\x39\x57\x52\x39\x59\x74\x73\x6a\x56','\x73\x38\x6f\x65\x57\x4f\x64\x63\x4d\x6d\x6b\x67','\x57\x35\x6c\x64\x51\x61\x7a\x38\x57\x35\x57','\x57\x34\x37\x64\x4d\x6d\x6b\x56\x57\x52\x74\x63\x52\x47','\x57\x51\x78\x63\x52\x43\x6b\x77\x6f\x76\x47','\x6d\x53\x6b\x4d\x57\x37\x4a\x64\x4b\x53\x6b\x6b\x71\x57','\x57\x52\x33\x64\x53\x78\x48\x73\x57\x36\x44\x47','\x61\x43\x6b\x78\x64\x38\x6b\x5a\x6b\x5a\x37\x64\x4d\x4d\x71','\x57\x4f\x66\x53\x71\x48\x6c\x63\x56\x43\x6b\x69\x66\x53\x6f\x4d','\x64\x59\x71\x46\x67\x63\x75\x72\x57\x52\x33\x64\x4f\x61','\x41\x43\x6f\x55\x7a\x6d\x6f\x54\x57\x34\x4b','\x57\x50\x35\x52\x74\x62\x4a\x64\x53\x43\x6b\x6a','\x41\x53\x6f\x52\x75\x43\x6f\x61\x57\x34\x34','\x57\x4f\x5a\x64\x4a\x71\x4e\x64\x4b\x53\x6b\x53\x73\x53\x6f\x6c\x44\x61','\x57\x36\x69\x55\x57\x4f\x75\x6a\x72\x38\x6b\x35\x65\x62\x69','\x75\x66\x6c\x63\x56\x38\x6f\x4d','\x7a\x38\x6f\x76\x41\x53\x6f\x4e','\x70\x43\x6b\x56\x57\x36\x52\x64\x4a\x43\x6b\x76','\x62\x43\x6b\x43\x57\x35\x38\x70\x6f\x71','\x65\x53\x6b\x41\x69\x32\x37\x63\x4b\x5a\x57','\x6e\x38\x6f\x36\x6d\x5a\x52\x64\x4a\x43\x6f\x61\x6d\x6d\x6b\x68','\x42\x38\x6f\x62\x57\x34\x68\x63\x4a\x43\x6b\x65\x41\x63\x72\x38','\x61\x78\x75\x64\x57\x4f\x37\x63\x4f\x61','\x75\x4c\x64\x64\x52\x33\x69\x33','\x46\x75\x78\x64\x52\x53\x6b\x77\x77\x57','\x57\x50\x65\x39\x57\x52\x46\x63\x56\x65\x75','\x57\x36\x75\x59\x63\x53\x6f\x48\x46\x71','\x77\x53\x6f\x57\x42\x6d\x6f\x62\x57\x34\x6d','\x57\x36\x76\x2b\x57\x35\x42\x64\x54\x62\x37\x64\x48\x76\x6e\x70\x6a\x47\x57\x6a\x70\x61','\x57\x34\x74\x64\x52\x6d\x6b\x56\x79\x53\x6f\x4f','\x78\x38\x6f\x73\x6e\x53\x6b\x67\x57\x50\x75','\x7a\x64\x6c\x63\x55\x53\x6f\x57\x64\x57','\x57\x50\x68\x64\x55\x38\x6b\x68\x71\x53\x6f\x57\x57\x4f\x6a\x72','\x69\x6d\x6b\x48\x57\x37\x4e\x64\x4b\x53\x6b\x64\x73\x53\x6f\x54\x6c\x57','\x57\x34\x4e\x64\x49\x4e\x2f\x64\x54\x43\x6f\x7a','\x70\x38\x6b\x4f\x57\x51\x6c\x63\x4c\x38\x6f\x4e\x57\x34\x61','\x66\x43\x6b\x71\x65\x77\x4a\x63\x47\x4a\x33\x64\x4a\x59\x57','\x57\x37\x46\x64\x4e\x38\x6b\x56\x57\x52\x4a\x63\x4a\x6d\x6f\x49\x57\x34\x33\x63\x49\x57','\x69\x43\x6f\x43\x57\x35\x58\x4b\x57\x52\x78\x63\x4c\x43\x6f\x4a\x57\x37\x47\x36\x69\x65\x53\x7a','\x57\x36\x4a\x63\x4c\x53\x6f\x75\x42\x5a\x57','\x6f\x43\x6f\x32\x6c\x77\x4a\x63\x52\x38\x6f\x63\x62\x38\x6f\x72','\x57\x52\x78\x63\x4c\x6d\x6f\x61\x57\x37\x50\x71','\x57\x4f\x42\x64\x47\x49\x2f\x64\x52\x38\x6b\x4b','\x42\x38\x6f\x73\x57\x35\x52\x63\x4b\x43\x6b\x66\x41\x49\x7a\x31','\x57\x4f\x68\x64\x4d\x75\x4b\x76\x57\x52\x4b','\x57\x35\x70\x64\x55\x47\x4a\x64\x4c\x53\x6f\x4e\x6f\x43\x6b\x4c\x57\x34\x38','\x57\x4f\x46\x64\x48\x78\x34','\x78\x53\x6b\x6f\x57\x50\x58\x67\x57\x34\x47','\x57\x51\x4a\x64\x54\x6d\x6f\x49\x46\x49\x48\x55\x57\x4f\x79\x69','\x75\x38\x6f\x53\x57\x37\x52\x63\x53\x53\x6b\x31\x71\x61\x44\x6b','\x65\x38\x6b\x41\x6b\x68\x4e\x63\x4b\x59\x64\x64\x54\x63\x75','\x57\x37\x78\x64\x49\x59\x50\x73\x57\x37\x70\x64\x55\x6d\x6b\x46\x45\x71','\x57\x52\x70\x64\x4e\x43\x6b\x57\x78\x5a\x35\x34\x57\x36\x34\x50','\x6b\x43\x6b\x66\x57\x52\x42\x63\x48\x38\x6f\x72\x57\x35\x4f\x70','\x72\x73\x78\x64\x48\x38\x6b\x7a\x6f\x71','\x63\x61\x4e\x63\x47\x62\x66\x78\x57\x37\x6c\x64\x47\x43\x6f\x69','\x46\x53\x6b\x51\x57\x35\x30\x50\x61\x61','\x57\x4f\x2f\x64\x49\x71\x4e\x64\x53\x43\x6b\x4e\x74\x53\x6f\x77\x75\x61','\x57\x51\x54\x79\x72\x72\x6c\x64\x4c\x61','\x57\x37\x57\x33\x76\x47','\x57\x50\x42\x64\x4b\x4e\x57\x39\x57\x50\x37\x63\x4d\x43\x6b\x58','\x69\x38\x6b\x41\x67\x33\x56\x63\x48\x57','\x42\x6d\x6b\x31\x57\x35\x38\x77\x68\x72\x6c\x63\x4f\x43\x6f\x59','\x57\x50\x52\x64\x4f\x6d\x6f\x6a\x57\x35\x64\x63\x4d\x65\x78\x64\x49\x78\x4b','\x69\x43\x6f\x6c\x6c\x48\x5a\x64\x4a\x43\x6f\x6b\x6e\x43\x6b\x59','\x77\x53\x6b\x35\x57\x34\x39\x6a\x57\x36\x78\x63\x50\x78\x64\x63\x4b\x47','\x77\x6d\x6b\x4d\x42\x33\x4a\x64\x4e\x53\x6b\x4a\x64\x53\x6f\x52\x57\x36\x6d\x77\x75\x73\x4b','\x44\x38\x6f\x66\x57\x35\x74\x63\x47\x43\x6b\x70\x45\x5a\x50\x6e','\x57\x4f\x5a\x64\x4b\x38\x6f\x51\x57\x35\x33\x63\x53\x47','\x6a\x4d\x31\x44\x73\x4a\x62\x66\x57\x36\x52\x63\x51\x47','\x57\x4f\x58\x37\x77\x71\x78\x64\x47\x43\x6b\x65\x66\x6d\x6f\x48','\x43\x66\x68\x64\x55\x43\x6b\x51\x41\x71','\x44\x43\x6f\x5a\x57\x34\x2f\x63\x51\x6d\x6b\x4b','\x7a\x59\x44\x75\x64\x77\x43','\x46\x6d\x6f\x70\x57\x35\x56\x63\x4c\x53\x6b\x45\x45\x5a\x58\x36','\x57\x50\x46\x64\x4f\x77\x38\x4a\x57\x50\x75','\x64\x71\x4e\x64\x55\x38\x6b\x30\x61\x6d\x6f\x6b\x77\x6d\x6b\x33\x57\x35\x53\x63\x62\x38\x6b\x79\x6a\x57'];_0x354c=function(){return _0x51467a;};return _0x354c();}async function _0x464ece(_0x2b98a0,_0x36900b){const _0xf91a3f=_0x349149,_0x129b11={'\x4e\x6c\x47\x50\x76':function(_0x56e431,_0x271d91){return _0x56e431===_0x271d91;},'\x75\x64\x78\x67\x74':function(_0x8ccdab,_0x32816b){return _0x8ccdab!==_0x32816b;},'\x67\x74\x64\x46\x4c':function(_0x820a66,_0x37d368,_0x515de8){return _0x820a66(_0x37d368,_0x515de8);},'\x53\x6b\x76\x5a\x70':function(_0x53c931,_0x239764){return _0x53c931(_0x239764);},'\x55\x76\x54\x4a\x59':function(_0x219a46,_0x402c50){return _0x219a46(_0x402c50);}};if(_0x129b11['\x4e\x6c\x47\x50\x76'](process.env.EVOMAP_HUB_ALLOW_INSECURE,'\x31')){const _0x26b3b0=_0x129b11[_0xf91a3f(0x216,'\x6b\x5b\x69\x38')](_0xcfae7a,_0x94d389)?_0xcfae7a:global['\x66\x65\x74\x63\x68'];return _0x129b11[_0xf91a3f(0x1b9,'\x4a\x74\x78\x43')](_0x26b3b0,_0x2b98a0,_0x36900b);}_0x129b11[_0xf91a3f(0x1d4,'\x4f\x79\x57\x44')](_0x107a9c,_0x2b98a0);const _0x1ede20=_0x129b11[_0xf91a3f(0x203,'\x4f\x79\x57\x44')](_0x5f417f,_0x2b98a0);try{const _0xbe83a8={};return _0xbe83a8[_0xf91a3f(0x1d3,'\x76\x6e\x67\x52')+'\x65\x72']=_0x1ede20,await _0xcfae7a(_0x2b98a0,Object[_0xf91a3f(0x295,'\x73\x29\x36\x43')]({},_0x36900b,_0xbe83a8));}catch(_0x5a7ec4){if(_0x129b11[_0xf91a3f(0x253,'\x69\x7a\x58\x53')](_0x295082,_0x5a7ec4))try{_0x6ff5fb();}catch(_0x4b1f5d){}throw _0x5a7ec4;}}const _0x3c1362={};_0x3c1362['\x68\x75\x62\x46\x65\x74\x63\x68']=_0x464ece,_0x3c1362['\x64\x72\x61\x69\x6e\x50\x6f\x6f'+'\x6c']=_0x6ff5fb,_0x3c1362[_0x349149(0x297,'\x72\x57\x4e\x52')+'\x72\x6b\x44\x69\x73\x72\x75\x70'+_0x349149(0x259,'\x54\x77\x74\x53')+'\x72']=_0x295082,_0x3c1362[_0x349149(0x267,'\x5d\x40\x26\x74')+_0x349149(0x1d1,'\x73\x56\x76\x78')]=_0x107a9c,_0x3c1362[_0x349149(0x251,'\x44\x63\x25\x4e')+_0x349149(0x1ed,'\x73\x29\x36\x43')]=_0x255bdf,_0x3c1362[_0x349149(0x1d0,'\x6f\x5d\x50\x5d')+_0x349149(0x28e,'\x29\x41\x21\x31')]=_0x2a9456,_0x3c1362[_0x349149(0x245,'\x4e\x6f\x49\x4c')+_0x349149(0x227,'\x78\x23\x71\x74')+_0x349149(0x21b,'\x4e\x48\x36\x31')]=_0x33f70e,module[_0x349149(0x1d8,'\x58\x4a\x79\x5b')]=_0x3c1362;
|