@evomap/evolver 1.89.0 → 1.89.2
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 +14 -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/oauthLogin.js +34 -0
- 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
|
@@ -1,118 +1 @@
|
|
|
1
|
-
// Environment fingerprint capture for GEP assets.
|
|
2
|
-
// Records the runtime environment so that cross-environment diffusion
|
|
3
|
-
// success rates (GDI) can be measured scientifically.
|
|
4
|
-
|
|
5
|
-
const os = require('os');
|
|
6
|
-
const fs = require('fs');
|
|
7
|
-
const path = require('path');
|
|
8
|
-
const crypto = require('crypto');
|
|
9
|
-
const { getRepoRoot } = require('./paths');
|
|
10
|
-
const { getDeviceId, isContainer } = require('./deviceId');
|
|
11
|
-
|
|
12
|
-
// Resolve the underlying LLM model name powering this evolver node.
|
|
13
|
-
//
|
|
14
|
-
// Until now the only source was the explicit EVOLVER_MODEL_NAME env var, so
|
|
15
|
-
// nodes that never set it published assets with no model at all -- the Hub
|
|
16
|
-
// could not tell which model produced a Gene/Capsule, breaking the by-model
|
|
17
|
-
// leaderboard and depriving anti-sybil clustering of a strong signal.
|
|
18
|
-
//
|
|
19
|
-
// We now fall back to the model env vars the common host CLIs expose
|
|
20
|
-
// (Claude Code / Codex / Cursor / generic OpenAI-compatible runners). When
|
|
21
|
-
// nothing is discoverable we return the literal 'unknown' rather than null so
|
|
22
|
-
// that downstream aggregation always has a stable, groupable value and can
|
|
23
|
-
// distinguish "ran but model undetectable" from "field absent (old client)".
|
|
24
|
-
function detectModelName() {
|
|
25
|
-
const candidates = [
|
|
26
|
-
process.env.EVOLVER_MODEL_NAME,
|
|
27
|
-
process.env.ANTHROPIC_MODEL,
|
|
28
|
-
process.env.CLAUDE_MODEL,
|
|
29
|
-
process.env.CLAUDE_CODE_MODEL,
|
|
30
|
-
process.env.OPENAI_MODEL,
|
|
31
|
-
process.env.CODEX_MODEL,
|
|
32
|
-
process.env.CURSOR_MODEL,
|
|
33
|
-
];
|
|
34
|
-
for (const c of candidates) {
|
|
35
|
-
const v = (c || '').trim();
|
|
36
|
-
if (v) return v.slice(0, 100);
|
|
37
|
-
}
|
|
38
|
-
return 'unknown';
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
// Capture a structured environment fingerprint.
|
|
42
|
-
// This is embedded into Capsules, EvolutionEvents, and ValidationReports.
|
|
43
|
-
function captureEnvFingerprint() {
|
|
44
|
-
const repoRoot = getRepoRoot();
|
|
45
|
-
let pkgVersion = null;
|
|
46
|
-
let pkgName = null;
|
|
47
|
-
|
|
48
|
-
// Read evolver's own package.json via __dirname so that npm-installed
|
|
49
|
-
// deployments report the correct evolver version. getRepoRoot() walks
|
|
50
|
-
// up to the nearest .git directory, which resolves to the HOST project
|
|
51
|
-
// when evolver is an npm dependency -- producing a wrong name/version.
|
|
52
|
-
const ownPkgPath = path.resolve(__dirname, '..', '..', 'package.json');
|
|
53
|
-
try {
|
|
54
|
-
const raw = fs.readFileSync(ownPkgPath, 'utf8');
|
|
55
|
-
const pkg = JSON.parse(raw);
|
|
56
|
-
pkgVersion = pkg && pkg.version ? String(pkg.version) : null;
|
|
57
|
-
pkgName = pkg && pkg.name ? String(pkg.name) : null;
|
|
58
|
-
} catch (e) {}
|
|
59
|
-
|
|
60
|
-
if (!pkgVersion) {
|
|
61
|
-
try {
|
|
62
|
-
const raw = fs.readFileSync(path.join(repoRoot, 'package.json'), 'utf8');
|
|
63
|
-
const pkg = JSON.parse(raw);
|
|
64
|
-
pkgVersion = pkg && pkg.version ? String(pkg.version) : null;
|
|
65
|
-
pkgName = pkg && pkg.name ? String(pkg.name) : null;
|
|
66
|
-
} catch (e) {}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
const region = (process.env.EVOLVER_REGION || '').trim().toLowerCase().slice(0, 5) || undefined;
|
|
70
|
-
|
|
71
|
-
return {
|
|
72
|
-
device_id: getDeviceId(),
|
|
73
|
-
node_version: process.version,
|
|
74
|
-
platform: process.platform,
|
|
75
|
-
arch: process.arch,
|
|
76
|
-
os_release: os.release(),
|
|
77
|
-
hostname: crypto.createHash('sha256').update(os.hostname()).digest('hex').slice(0, 12),
|
|
78
|
-
evolver_version: pkgVersion,
|
|
79
|
-
client: pkgName || 'evolver',
|
|
80
|
-
client_version: pkgVersion,
|
|
81
|
-
// Underlying LLM model. NOT folded into envFingerprintKey() below: a node
|
|
82
|
-
// can swap models without changing its environment class, so the grouping
|
|
83
|
-
// key must stay model-independent. The model travels as its own field.
|
|
84
|
-
model: detectModelName(),
|
|
85
|
-
region: region,
|
|
86
|
-
cwd: crypto.createHash('sha256').update(process.cwd()).digest('hex').slice(0, 12),
|
|
87
|
-
container: isContainer(),
|
|
88
|
-
captured_at: new Date().toISOString(),
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// Compute a short fingerprint key for comparison and grouping.
|
|
93
|
-
// Two nodes with the same key are considered "same environment class".
|
|
94
|
-
function envFingerprintKey(fp) {
|
|
95
|
-
if (!fp || typeof fp !== 'object') return 'unknown';
|
|
96
|
-
const parts = [
|
|
97
|
-
fp.device_id || '',
|
|
98
|
-
fp.node_version || '',
|
|
99
|
-
fp.platform || '',
|
|
100
|
-
fp.arch || '',
|
|
101
|
-
fp.hostname || '',
|
|
102
|
-
fp.client || fp.evolver_version || '',
|
|
103
|
-
fp.client_version || fp.evolver_version || '',
|
|
104
|
-
].join('|');
|
|
105
|
-
return crypto.createHash('sha256').update(parts, 'utf8').digest('hex').slice(0, 16);
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
// Check if two fingerprints are from the same environment class.
|
|
109
|
-
function isSameEnvClass(fpA, fpB) {
|
|
110
|
-
return envFingerprintKey(fpA) === envFingerprintKey(fpB);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
module.exports = {
|
|
114
|
-
captureEnvFingerprint,
|
|
115
|
-
envFingerprintKey,
|
|
116
|
-
isSameEnvClass,
|
|
117
|
-
detectModelName,
|
|
118
|
-
};
|
|
1
|
+
function _0xb963(_0x3300d5,_0x469a0d){_0x3300d5=_0x3300d5-(0x1*0x1097+0x7*0x46c+-0x2db2);const _0x1136df=_0x3dc7();let _0x3182ed=_0x1136df[_0x3300d5];if(_0xb963['\x4a\x6c\x55\x45\x49\x66']===undefined){var _0x2b49d9=function(_0x15c6fb){const _0x273efe='\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 _0x45a6b3='',_0x53dc1a='',_0x132c4d=_0x45a6b3+_0x2b49d9,_0x3bcc6b=(''+function(){return 0x935*0x1+-0x197e*-0x1+-0x22b3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x2c*0x6f+0x1f3e+0xb*-0x11b);for(let _0x662024=0x25e9+0x1c64+-0xb*0x607,_0x33ee45,_0x3b7235,_0xffd339=0xd0b+-0x21c7+0x14bc;_0x3b7235=_0x15c6fb['\x63\x68\x61\x72\x41\x74'](_0xffd339++);~_0x3b7235&&(_0x33ee45=_0x662024%(-0x942+-0x1*0xdcc+0x1712)?_0x33ee45*(0x2fb*-0x2+-0x122b+0x1861)+_0x3b7235:_0x3b7235,_0x662024++%(-0x9*0x421+0x20f4+0x439))?_0x45a6b3+=_0x3bcc6b||_0x132c4d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xffd339+(0x77*0x2+0x24ae+0x3*-0xc86))-(-0x2*0x10a3+0x7f7+-0x873*-0x3)!==-0x5*0x5ba+0xd78+-0x50e*-0x3?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x2401*-0x1+0x42b+0x29*0xcd&_0x33ee45>>(-(0x1905+-0x265*0xa+-0x111)*_0x662024&-0x2b*-0x71+-0x24fa+0x1205)):_0x662024:0x25*-0x9d+0x37a+-0x1*-0x1337){_0x3b7235=_0x273efe['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3b7235);}for(let _0x257318=-0x29*-0xd3+-0x57a*-0x2+-0x2cbf,_0x4665de=_0x45a6b3['\x6c\x65\x6e\x67\x74\x68'];_0x257318<_0x4665de;_0x257318++){_0x53dc1a+='\x25'+('\x30\x30'+_0x45a6b3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x257318)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x55*-0x6b+0x26d3+-0x1*0x33c))['\x73\x6c\x69\x63\x65'](-(-0xf3c+0xae8*-0x2+0x250e));}return decodeURIComponent(_0x53dc1a);};const _0x427042=function(_0x5e16b2,_0x4dc051){let _0x1457c6=[],_0x58f084=-0x1e6c+0x13*-0xe+0x1f76,_0x9ea7d,_0x50cb83='';_0x5e16b2=_0x2b49d9(_0x5e16b2);let _0x5277c9;for(_0x5277c9=0x4*0x933+-0x2*-0x3ee+-0x2ca8;_0x5277c9<0x1*-0x1066+-0xe5*-0x1f+-0xa55;_0x5277c9++){_0x1457c6[_0x5277c9]=_0x5277c9;}for(_0x5277c9=0x2430+0x41+-0x2471;_0x5277c9<-0xe*-0x20a+0x2*-0x6b1+-0xe2a;_0x5277c9++){_0x58f084=(_0x58f084+_0x1457c6[_0x5277c9]+_0x4dc051['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5277c9%_0x4dc051['\x6c\x65\x6e\x67\x74\x68']))%(0x61d*0x1+-0xe5d+0x940),_0x9ea7d=_0x1457c6[_0x5277c9],_0x1457c6[_0x5277c9]=_0x1457c6[_0x58f084],_0x1457c6[_0x58f084]=_0x9ea7d;}_0x5277c9=-0x24a4+-0x35b*-0xa+0x2*0x18b,_0x58f084=-0x20ee*0x1+-0x2278+0x2*0x21b3;for(let _0x41ff08=-0x123d+0x1*-0x4b7+0xd*0x1c4;_0x41ff08<_0x5e16b2['\x6c\x65\x6e\x67\x74\x68'];_0x41ff08++){_0x5277c9=(_0x5277c9+(0x1891+0x1091+-0x2921))%(-0x1822+0xab1+-0xe71*-0x1),_0x58f084=(_0x58f084+_0x1457c6[_0x5277c9])%(0x8*0x1cb+0x87e+0x22f*-0xa),_0x9ea7d=_0x1457c6[_0x5277c9],_0x1457c6[_0x5277c9]=_0x1457c6[_0x58f084],_0x1457c6[_0x58f084]=_0x9ea7d,_0x50cb83+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5e16b2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x41ff08)^_0x1457c6[(_0x1457c6[_0x5277c9]+_0x1457c6[_0x58f084])%(0x23fa+0x267b*-0x1+0x381*0x1)]);}return _0x50cb83;};_0xb963['\x7a\x46\x47\x50\x6d\x52']=_0x427042,_0xb963['\x6e\x64\x53\x4e\x4a\x47']={},_0xb963['\x4a\x6c\x55\x45\x49\x66']=!![];}const _0x23e3ef=_0x1136df[-0xa51+0xad6+0x1*-0x85],_0x47125a=_0x3300d5+_0x23e3ef,_0x4a0367=_0xb963['\x6e\x64\x53\x4e\x4a\x47'][_0x47125a];if(!_0x4a0367){if(_0xb963['\x62\x51\x50\x53\x4e\x7a']===undefined){const _0x1242ee=function(_0xc5d7dc){this['\x72\x49\x61\x68\x61\x6d']=_0xc5d7dc,this['\x68\x66\x4e\x66\x67\x72']=[-0x204d+-0xa*-0x1f0+0x296*0x5,-0x26*-0x2d+0x2542+-0x2bf0,-0x1365+-0x1*0x12be+0x2623],this['\x6d\x48\x54\x79\x6a\x4c']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x50\x51\x46\x67\x6f\x73']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x47\x41\x44\x47\x4d\x74']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x1242ee['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x79\x57\x50\x75\x58\x75']=function(){const _0x5f4a68=new RegExp(this['\x50\x51\x46\x67\x6f\x73']+this['\x47\x41\x44\x47\x4d\x74']),_0xbac178=_0x5f4a68['\x74\x65\x73\x74'](this['\x6d\x48\x54\x79\x6a\x4c']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x68\x66\x4e\x66\x67\x72'][0x2188+-0x2543*-0x1+-0x46ca]:--this['\x68\x66\x4e\x66\x67\x72'][-0x5*-0x11d+-0xfe8+0xa57];return this['\x4c\x6a\x76\x58\x4b\x46'](_0xbac178);},_0x1242ee['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x6a\x76\x58\x4b\x46']=function(_0x57a240){if(!Boolean(~_0x57a240))return _0x57a240;return this['\x47\x57\x4d\x67\x61\x47'](this['\x72\x49\x61\x68\x61\x6d']);},_0x1242ee['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x47\x57\x4d\x67\x61\x47']=function(_0x34ab85){for(let _0x484a11=0x93*-0x11+-0x9c0+0x1383,_0x4e222b=this['\x68\x66\x4e\x66\x67\x72']['\x6c\x65\x6e\x67\x74\x68'];_0x484a11<_0x4e222b;_0x484a11++){this['\x68\x66\x4e\x66\x67\x72']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x4e222b=this['\x68\x66\x4e\x66\x67\x72']['\x6c\x65\x6e\x67\x74\x68'];}return _0x34ab85(this['\x68\x66\x4e\x66\x67\x72'][0x1853+-0x8a3+-0xfb0]);},(''+function(){return-0x1245*0x2+-0x2088+0x4512;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x1e1+0x186b+-0x1a4b)&&new _0x1242ee(_0xb963)['\x79\x57\x50\x75\x58\x75'](),_0xb963['\x62\x51\x50\x53\x4e\x7a']=!![];}_0x3182ed=_0xb963['\x7a\x46\x47\x50\x6d\x52'](_0x3182ed,_0x469a0d),_0xb963['\x6e\x64\x53\x4e\x4a\x47'][_0x47125a]=_0x3182ed;}else _0x3182ed=_0x4a0367;return _0x3182ed;}const _0x9cfe4e=_0xb963;(function(_0x3f7283,_0x28fbbd){const _0x589c39=_0xb963,_0xe32c61=_0x3f7283();while(!![]){try{const _0x32ed17=-parseInt(_0x589c39(0x228,'\x76\x7a\x48\x48'))/(-0x1*-0x95b+0x1fdb+0x1*-0x2935)*(parseInt(_0x589c39(0x210,'\x62\x32\x6b\x41'))/(0xabb*-0x2+0x14a8+-0x1a*-0x8))+parseInt(_0x589c39(0x1ea,'\x78\x46\x68\x56'))/(-0x1835+0x213a*0x1+0x2*-0x481)*(parseInt(_0x589c39(0x24a,'\x79\x65\x64\x47'))/(0x70b*0x5+-0xabf+0x61d*-0x4))+-parseInt(_0x589c39(0x1eb,'\x7a\x6c\x23\x45'))/(0x2581+-0xd00+-0x187c)+-parseInt(_0x589c39(0x23b,'\x62\x32\x6b\x41'))/(-0x5b1+0x1127*0x1+-0xb70)*(parseInt(_0x589c39(0x1dc,'\x31\x45\x48\x59'))/(-0x1356+0x1267+0x7b*0x2))+-parseInt(_0x589c39(0x24c,'\x5e\x23\x71\x47'))/(0x4f*0xe+0x1410+-0x185a)+-parseInt(_0x589c39(0x222,'\x4e\x6e\x6f\x77'))/(-0x20d1+-0x1b32+0x1ab*0x24)+parseInt(_0x589c39(0x244,'\x52\x25\x6b\x46'))/(0xb*-0x2d5+0x1*0x12be+0xc73);if(_0x32ed17===_0x28fbbd)break;else _0xe32c61['push'](_0xe32c61['shift']());}catch(_0x5691d5){_0xe32c61['push'](_0xe32c61['shift']());}}}(_0x3dc7,-0x1*0x2de55+-0x1*0x26fd6+0x7cc5b));const _0x4315fa=(function(){let _0x3831dc=!![];return function(_0x11eba3,_0x40ea9a){const _0x52560b=_0x3831dc?function(){const _0x54896c=_0xb963;if(_0x40ea9a){const _0x6f6005=_0x40ea9a[_0x54896c(0x21e,'\x76\x4e\x5a\x4e')](_0x11eba3,arguments);return _0x40ea9a=null,_0x6f6005;}}:function(){};return _0x3831dc=![],_0x52560b;};}()),_0xb41af3=_0x4315fa(this,function(){const _0x3ec1a7=_0xb963,_0x1127a7={};_0x1127a7[_0x3ec1a7(0x1e4,'\x54\x73\x44\x4e')]=_0x3ec1a7(0x214,'\x31\x45\x48\x59')+_0x3ec1a7(0x1da,'\x78\x46\x68\x56');const _0x1927e7=_0x1127a7;return _0xb41af3[_0x3ec1a7(0x245,'\x42\x58\x6f\x33')]()[_0x3ec1a7(0x25c,'\x43\x48\x77\x23')](_0x1927e7['\x55\x58\x61\x69\x49'])[_0x3ec1a7(0x1fd,'\x65\x77\x7a\x61')]()[_0x3ec1a7(0x22f,'\x25\x6c\x30\x62')+_0x3ec1a7(0x251,'\x70\x66\x38\x44')](_0xb41af3)[_0x3ec1a7(0x25e,'\x42\x26\x54\x44')](_0x3ec1a7(0x25d,'\x54\x73\x44\x4e')+'\x2b\x29\x2b\x24');});_0xb41af3();function _0x3dc7(){const _0x4df498=['\x6d\x67\x71\x39\x69\x47\x68\x64\x53\x6d\x6f\x7a\x44\x33\x4a\x63\x53\x43\x6b\x43\x46\x47','\x57\x51\x4c\x54\x64\x38\x6b\x46\x78\x38\x6f\x67','\x68\x38\x6f\x7a\x72\x53\x6f\x57\x57\x4f\x34','\x74\x6d\x6f\x68\x57\x34\x6d\x74\x75\x47','\x57\x36\x74\x63\x55\x6d\x6b\x77\x57\x50\x78\x64\x4e\x57','\x61\x6d\x6f\x6b\x6a\x38\x6b\x6b\x57\x4f\x54\x71\x57\x36\x44\x48','\x66\x6d\x6f\x37\x57\x51\x5a\x63\x52\x32\x35\x4a\x78\x71\x34','\x57\x36\x4a\x63\x55\x47\x4e\x64\x4a\x53\x6b\x75','\x57\x50\x46\x63\x51\x53\x6f\x30\x76\x6d\x6b\x65','\x68\x49\x74\x64\x54\x43\x6f\x73\x43\x61','\x57\x34\x53\x31\x57\x52\x64\x63\x4e\x32\x6c\x64\x48\x48\x53\x6f','\x66\x6d\x6f\x75\x57\x52\x6c\x63\x51\x4e\x56\x64\x4d\x4b\x68\x64\x47\x57','\x57\x50\x44\x63\x6d\x6d\x6b\x38\x79\x57','\x57\x34\x52\x63\x56\x48\x78\x64\x4a\x53\x6b\x5a','\x57\x50\x43\x72\x57\x52\x4b\x34\x57\x52\x4c\x6a\x57\x51\x64\x63\x4f\x57','\x57\x50\x5a\x63\x56\x38\x6f\x62\x7a\x47','\x57\x36\x75\x62\x57\x35\x38\x4c\x43\x6d\x6f\x31\x57\x34\x4e\x64\x4e\x71','\x57\x4f\x4e\x63\x51\x6d\x6f\x30\x57\x51\x46\x64\x48\x49\x69\x56\x71\x6d\x6f\x34\x75\x73\x68\x63\x4a\x6d\x6b\x52','\x57\x34\x6d\x7a\x7a\x66\x64\x64\x51\x61','\x67\x38\x6b\x74\x65\x63\x56\x63\x53\x38\x6f\x6b\x6a\x4b\x30','\x57\x52\x66\x53\x6f\x43\x6f\x6f\x70\x43\x6f\x44','\x57\x51\x38\x38\x42\x6d\x6b\x30\x57\x35\x65','\x61\x43\x6b\x71\x71\x61\x78\x63\x4f\x43\x6b\x58\x57\x50\x30','\x57\x52\x37\x64\x54\x4e\x68\x64\x53\x4a\x65','\x63\x53\x6f\x6f\x57\x50\x78\x63\x54\x33\x70\x64\x4b\x4c\x42\x64\x4e\x61','\x57\x35\x74\x63\x54\x53\x6f\x52\x57\x4f\x54\x70\x57\x51\x6e\x6e\x75\x38\x6f\x74\x68\x5a\x53','\x57\x35\x2f\x63\x53\x63\x78\x64\x50\x47','\x57\x4f\x39\x54\x6d\x30\x53\x35\x57\x51\x7a\x2b\x57\x50\x47','\x57\x51\x52\x64\x48\x38\x6f\x4d\x41\x61','\x57\x37\x30\x54\x44\x53\x6b\x66\x7a\x43\x6b\x61\x57\x51\x52\x64\x49\x61','\x61\x43\x6f\x6b\x46\x53\x6f\x4f\x57\x4f\x47','\x57\x35\x52\x63\x53\x38\x6b\x79\x57\x35\x53\x47','\x6f\x43\x6f\x33\x57\x50\x5a\x63\x4b\x78\x61','\x66\x43\x6f\x47\x57\x50\x4e\x64\x4f\x57','\x6a\x47\x5a\x64\x53\x43\x6f\x69\x46\x47','\x57\x52\x31\x51\x62\x6d\x6f\x64\x57\x52\x69','\x57\x35\x37\x63\x50\x48\x64\x63\x54\x30\x30\x52\x75\x61\x69\x5a\x74\x43\x6f\x2f\x64\x48\x75','\x64\x53\x6f\x31\x57\x50\x6c\x63\x56\x47','\x57\x52\x7a\x54\x64\x53\x6f\x53\x64\x71','\x67\x53\x6b\x4a\x44\x6d\x6f\x54\x57\x50\x79','\x43\x43\x6b\x34\x75\x4c\x62\x78\x44\x6d\x6b\x62','\x57\x35\x42\x64\x4c\x38\x6b\x39\x73\x53\x6f\x44\x57\x50\x79\x35','\x63\x53\x6f\x7a\x78\x6d\x6f\x33\x57\x50\x78\x63\x47\x57','\x77\x43\x6b\x78\x79\x6d\x6f\x69\x57\x35\x30\x68\x57\x52\x6e\x54\x57\x36\x33\x63\x4b\x43\x6b\x37\x57\x50\x72\x46','\x57\x52\x6c\x64\x51\x38\x6b\x34\x57\x35\x4b\x51','\x57\x35\x30\x56\x57\x52\x42\x63\x4b\x68\x65','\x68\x53\x6f\x61\x6a\x53\x6b\x6e\x57\x4f\x58\x45\x57\x36\x71','\x43\x43\x6f\x68\x57\x36\x76\x6d\x57\x37\x37\x63\x47\x47','\x57\x36\x61\x7a\x73\x53\x6f\x31\x6e\x66\x66\x4c\x6b\x47','\x6c\x6d\x6b\x6a\x70\x5a\x30\x37\x57\x36\x4e\x63\x52\x71','\x57\x52\x6c\x64\x52\x38\x6b\x50\x57\x35\x53\x37','\x64\x53\x6f\x67\x57\x35\x66\x4e\x57\x37\x75','\x67\x43\x6f\x64\x57\x4f\x74\x63\x54\x32\x64\x64\x4a\x30\x68\x64\x54\x61','\x57\x4f\x74\x64\x55\x38\x6b\x42\x76\x38\x6f\x51\x57\x50\x71\x6b','\x57\x50\x61\x46\x44\x76\x57','\x57\x37\x6d\x7a\x71\x53\x6f\x4b\x70\x65\x50\x69\x6d\x71','\x57\x4f\x44\x62\x6e\x38\x6b\x53\x43\x4c\x2f\x63\x48\x43\x6f\x4e','\x57\x37\x68\x64\x52\x53\x6f\x70\x78\x38\x6b\x47\x57\x37\x70\x64\x50\x71','\x43\x43\x6f\x46\x57\x52\x78\x63\x50\x47\x43\x42','\x57\x4f\x68\x63\x54\x43\x6f\x54\x44\x38\x6b\x6f','\x63\x43\x6f\x66\x57\x37\x66\x78\x57\x35\x2f\x64\x52\x53\x6b\x74\x64\x61','\x63\x38\x6f\x70\x57\x34\x50\x33\x57\x37\x4e\x64\x4b\x53\x6b\x6a','\x44\x4b\x78\x63\x53\x38\x6f\x66\x75\x43\x6b\x61\x77\x47','\x68\x6d\x6f\x64\x74\x53\x6b\x53\x57\x34\x2f\x64\x4d\x57','\x57\x35\x5a\x63\x50\x43\x6b\x75\x57\x37\x69','\x6e\x61\x43\x2b\x63\x4b\x38','\x64\x6d\x6b\x61\x68\x49\x70\x63\x47\x38\x6f\x67\x6f\x68\x43','\x79\x43\x6f\x44\x57\x37\x30\x6f\x57\x52\x2f\x64\x4d\x57','\x57\x35\x78\x64\x4a\x53\x6b\x77\x57\x36\x53\x56\x57\x50\x48\x79','\x46\x43\x6f\x74\x57\x51\x4f','\x57\x37\x2f\x63\x56\x43\x6b\x4c\x57\x36\x4b\x44','\x77\x6d\x6f\x49\x57\x34\x69\x6c\x79\x71','\x57\x51\x2f\x64\x4f\x38\x6b\x65\x57\x37\x69\x38','\x66\x6d\x6f\x4d\x57\x50\x42\x63\x54\x47','\x67\x38\x6b\x74\x61\x49\x64\x63\x4d\x43\x6f\x76\x6c\x57','\x45\x4c\x33\x63\x55\x57','\x61\x43\x6b\x6f\x74\x57\x52\x63\x55\x53\x6b\x4a','\x57\x34\x54\x54\x6c\x38\x6f\x56\x57\x51\x7a\x58\x57\x37\x4e\x63\x54\x43\x6b\x66\x41\x76\x5a\x64\x4c\x59\x47','\x57\x51\x5a\x63\x49\x62\x78\x63\x53\x4e\x42\x64\x54\x38\x6b\x5a\x6a\x47','\x57\x36\x4e\x64\x4e\x6d\x6b\x64\x57\x35\x56\x63\x51\x47','\x6e\x67\x79\x2f\x69\x57\x4a\x64\x53\x6d\x6b\x4f\x7a\x4c\x33\x63\x51\x43\x6b\x51\x72\x53\x6b\x71','\x73\x53\x6b\x32\x57\x34\x79\x30\x6d\x61','\x57\x37\x6d\x7a\x78\x43\x6f\x6e\x62\x47','\x57\x52\x76\x46\x57\x50\x39\x75\x6b\x6d\x6b\x54\x57\x36\x42\x64\x47\x6d\x6f\x36\x57\x52\x4e\x64\x51\x4d\x4b','\x57\x37\x74\x63\x51\x43\x6b\x44\x69\x6d\x6b\x73','\x6b\x58\x58\x46\x57\x34\x6c\x64\x55\x30\x4b\x49\x57\x4f\x53\x72\x78\x6d\x6f\x37\x57\x37\x61\x69','\x64\x38\x6f\x70\x57\x35\x4c\x47\x57\x35\x42\x64\x4c\x6d\x6b\x6c\x67\x57','\x6c\x71\x6d\x77\x65\x61','\x43\x4b\x47\x46','\x79\x38\x6b\x6d\x57\x36\x52\x64\x4a\x61','\x57\x34\x42\x64\x4e\x43\x6b\x4a','\x57\x36\x64\x64\x52\x49\x56\x63\x4f\x71\x2f\x63\x53\x67\x75','\x42\x38\x6b\x4a\x63\x57\x30\x5a\x57\x37\x46\x63\x49\x38\x6b\x39','\x57\x34\x78\x63\x51\x38\x6b\x36\x65\x38\x6b\x49','\x42\x31\x4b\x62\x57\x34\x47','\x78\x5a\x6e\x44\x76\x4e\x34','\x57\x37\x30\x34\x46\x31\x74\x64\x54\x33\x74\x63\x4f\x57','\x6f\x53\x6b\x70\x68\x59\x57','\x57\x4f\x34\x31\x42\x43\x6b\x2f','\x57\x37\x6c\x63\x50\x74\x70\x64\x4a\x6d\x6b\x43\x64\x6d\x6b\x76\x57\x37\x34','\x70\x6d\x6b\x54\x41\x64\x53','\x57\x52\x70\x64\x4b\x43\x6f\x4f\x44\x6d\x6b\x4c\x57\x37\x65','\x57\x37\x30\x32\x77\x6d\x6b\x4b\x57\x34\x53\x39\x57\x35\x70\x63\x4d\x71','\x68\x73\x64\x64\x50\x53\x6f\x74\x44\x53\x6f\x73','\x70\x6d\x6f\x73\x71\x43\x6f\x39','\x66\x43\x6f\x4b\x57\x50\x56\x63\x55\x4d\x48\x56','\x61\x38\x6f\x4a\x57\x50\x53','\x69\x38\x6b\x64\x57\x51\x38\x69\x57\x52\x33\x64\x4e\x6d\x6b\x7a\x57\x51\x68\x64\x50\x53\x6b\x76\x62\x61\x53\x2f','\x57\x52\x42\x63\x48\x48\x46\x63\x53\x68\x79','\x6d\x43\x6b\x79\x41\x4c\x4c\x6a\x44\x57','\x57\x4f\x62\x6c\x6c\x38\x6b\x32\x7a\x75\x4a\x63\x52\x38\x6f\x54','\x64\x53\x6f\x71\x57\x50\x33\x63\x52\x47','\x57\x50\x42\x64\x56\x53\x6f\x43\x57\x52\x34','\x57\x50\x7a\x53\x6c\x43\x6b\x66\x71\x71','\x57\x36\x71\x5a\x42\x43\x6b\x46\x45\x43\x6b\x79\x57\x52\x42\x63\x48\x6d\x6b\x65\x57\x51\x64\x64\x4f\x4a\x75\x36','\x64\x43\x6f\x52\x57\x4f\x70\x63\x4c\x33\x69','\x6a\x61\x6c\x64\x51\x38\x6b\x41\x65\x43\x6b\x58\x41\x30\x2f\x64\x47\x53\x6f\x72\x63\x71','\x76\x6d\x6f\x78\x57\x50\x33\x63\x54\x72\x4b','\x6c\x6d\x6f\x78\x57\x52\x2f\x63\x4b\x66\x61','\x74\x30\x4b\x76\x57\x52\x37\x63\x52\x57','\x57\x36\x75\x66\x74\x38\x6f\x47\x6a\x4c\x53','\x43\x65\x68\x63\x55\x43\x6f\x69\x75\x38\x6b\x61\x79\x67\x43','\x57\x4f\x62\x67\x65\x43\x6f\x4a\x57\x51\x4b','\x73\x53\x6f\x74\x57\x34\x75\x57\x44\x6d\x6f\x65\x57\x35\x4f','\x43\x6d\x6f\x63\x57\x4f\x52\x63\x4c\x62\x65','\x7a\x43\x6b\x7a\x57\x37\x70\x64\x4f\x6d\x6b\x33','\x57\x35\x42\x64\x4c\x38\x6b\x4c\x79\x43\x6f\x46\x57\x4f\x38\x72\x57\x51\x38','\x77\x43\x6b\x4f\x57\x35\x4e\x63\x4b\x47\x38','\x57\x4f\x56\x63\x54\x6d\x6b\x4a\x57\x37\x69\x49\x42\x73\x4f','\x69\x38\x6b\x64\x57\x36\x46\x64\x53\x4b\x6a\x41\x62\x53\x6b\x62\x6d\x6d\x6b\x68\x57\x50\x74\x64\x4b\x47','\x42\x43\x6f\x62\x57\x36\x43\x53\x76\x61','\x57\x34\x38\x57\x57\x52\x4f','\x41\x43\x6f\x30\x44\x4c\x4c\x6f\x42\x6d\x6b\x4b','\x57\x4f\x72\x58\x6c\x6d\x6f\x38\x68\x57','\x74\x38\x6b\x2f\x57\x35\x30\x4b\x70\x64\x74\x64\x50\x61','\x57\x37\x4f\x41\x71\x53\x6f\x56','\x46\x43\x6b\x6d\x57\x36\x74\x64\x47\x53\x6b\x65\x41\x6d\x6f\x33\x41\x57','\x42\x65\x47\x76\x57\x4f\x70\x63\x51\x48\x35\x38','\x63\x49\x5a\x64\x4f\x6d\x6f\x65\x7a\x53\x6f\x6f','\x64\x74\x46\x64\x4f\x53\x6f\x61\x79\x43\x6f\x46\x57\x35\x5a\x64\x51\x57','\x6b\x61\x34\x76\x67\x30\x70\x64\x51\x61'];_0x3dc7=function(){return _0x4df498;};return _0x3dc7();}const _0x42620f=require('\x6f\x73'),_0x5026d3=require('\x66\x73'),_0x3ec94b=require(_0x9cfe4e(0x259,'\x52\x25\x6b\x46')),_0x1addaa=require(_0x9cfe4e(0x226,'\x41\x24\x32\x71')),{getRepoRoot:_0x476c56}=require(_0x9cfe4e(0x1ee,'\x39\x42\x52\x52')),{getDeviceId:_0x566769,isContainer:_0x132b6d}=require(_0x9cfe4e(0x205,'\x67\x4f\x64\x46')+'\x49\x64');function _0x5dbbbc(){const _0xa9f746=_0x9cfe4e,_0x559033={};_0x559033[_0xa9f746(0x1e0,'\x4a\x4b\x76\x58')]=function(_0x558c3a,_0x4cbfbf){return _0x558c3a||_0x4cbfbf;},_0x559033[_0xa9f746(0x215,'\x67\x58\x50\x46')]=_0xa9f746(0x20d,'\x48\x69\x23\x4f');const _0x3a4b2d=_0x559033,_0x44ad4c=[process.env.EVOLVER_MODEL_NAME,process.env.ANTHROPIC_MODEL,process.env.CLAUDE_MODEL,process.env.CLAUDE_CODE_MODEL,process.env.OPENAI_MODEL,process.env.CODEX_MODEL,process.env.CURSOR_MODEL];for(const _0x393b02 of _0x44ad4c){const _0x58b6da=_0x3a4b2d['\x56\x75\x4b\x53\x45'](_0x393b02,'')[_0xa9f746(0x1d9,'\x4a\x4b\x76\x58')]();if(_0x58b6da)return _0x58b6da[_0xa9f746(0x254,'\x43\x53\x35\x21')](-0x257*-0x1+0x95b+-0x3e6*0x3,0x7*-0x8+-0xee0+0xf7c);}return _0x3a4b2d[_0xa9f746(0x263,'\x42\x58\x6f\x33')];}function _0x1a0a23(){const _0x1e8129=_0x9cfe4e,_0x113543={'\x68\x74\x74\x49\x52':function(_0x4641d3,_0x551aef){return _0x4641d3||_0x551aef;},'\x51\x68\x75\x63\x42':function(_0x206a5e){return _0x206a5e();},'\x63\x6c\x76\x4c\x54':_0x1e8129(0x1f2,'\x28\x51\x5b\x4c')+_0x1e8129(0x213,'\x43\x48\x77\x23'),'\x64\x43\x47\x69\x75':function(_0x4b1bfc,_0x25dc2c){return _0x4b1bfc!==_0x25dc2c;},'\x51\x6c\x64\x61\x53':_0x1e8129(0x1db,'\x25\x6c\x30\x62'),'\x5a\x67\x56\x43\x4e':_0x1e8129(0x255,'\x5e\x23\x71\x47'),'\x48\x44\x69\x77\x76':function(_0x206401,_0xfab602){return _0x206401(_0xfab602);},'\x42\x6e\x4e\x50\x55':function(_0x301264,_0x226a01){return _0x301264(_0x226a01);},'\x55\x4d\x41\x44\x59':function(_0x41fd7f,_0x164f50){return _0x41fd7f(_0x164f50);},'\x48\x49\x76\x69\x6b':function(_0x20cefe,_0x32dc){return _0x20cefe(_0x32dc);},'\x67\x64\x6f\x41\x6f':_0x1e8129(0x23c,'\x7a\x6c\x23\x45'),'\x74\x59\x4a\x6a\x76':_0x1e8129(0x235,'\x49\x5b\x6a\x66'),'\x4c\x64\x58\x4a\x45':function(_0x433a73){return _0x433a73();},'\x59\x63\x63\x4a\x6c':_0x1e8129(0x23a,'\x41\x24\x32\x71')},_0x10fd17=_0x113543[_0x1e8129(0x20c,'\x52\x25\x6b\x46')](_0x476c56);let _0x3c3e9a=null,_0x3b5f55=null;const _0x3afe44=_0x3ec94b[_0x1e8129(0x241,'\x67\x6e\x74\x78')](__dirname,'\x2e\x2e','\x2e\x2e',_0x113543[_0x1e8129(0x249,'\x70\x54\x75\x23')]);try{if(_0x113543['\x64\x43\x47\x69\x75'](_0x113543[_0x1e8129(0x223,'\x62\x32\x6b\x41')],'\x72\x42\x74\x5a\x47')){const _0x4b7c3d=kDkwDp[_0x1e8129(0x21a,'\x54\x73\x44\x4e')](_0x314c1c,'')[_0x1e8129(0x240,'\x65\x77\x7a\x61')]();if(_0x4b7c3d)return _0x4b7c3d[_0x1e8129(0x22a,'\x70\x7a\x32\x66')](0xf20+0xb*-0x27b+0xc29,-0x184e+0x4c9+0x13e9);}else{const _0x3d19ef=_0x5026d3[_0x1e8129(0x20a,'\x67\x6e\x74\x78')+_0x1e8129(0x258,'\x67\x6e\x74\x78')](_0x3afe44,_0x113543[_0x1e8129(0x256,'\x51\x57\x47\x6a')]),_0x497618=JSON[_0x1e8129(0x1e9,'\x41\x50\x24\x5a')](_0x3d19ef);_0x3c3e9a=_0x497618&&_0x497618[_0x1e8129(0x234,'\x70\x7a\x32\x66')]?_0x113543[_0x1e8129(0x209,'\x36\x6c\x4e\x35')](String,_0x497618[_0x1e8129(0x1f0,'\x28\x61\x6a\x32')]):null,_0x3b5f55=_0x497618&&_0x497618[_0x1e8129(0x21c,'\x65\x77\x7a\x61')]?_0x113543[_0x1e8129(0x24b,'\x43\x53\x35\x21')](String,_0x497618[_0x1e8129(0x206,'\x51\x30\x48\x61')]):null;}}catch(_0xb62d45){}if(!_0x3c3e9a)try{const _0x33e6b3=_0x5026d3[_0x1e8129(0x24d,'\x70\x7a\x32\x66')+_0x1e8129(0x25f,'\x67\x58\x50\x46')](_0x3ec94b[_0x1e8129(0x1f1,'\x70\x54\x75\x23')](_0x10fd17,_0x113543[_0x1e8129(0x1fa,'\x63\x64\x56\x67')]),_0x1e8129(0x25b,'\x4a\x6e\x63\x5e')),_0x3da865=JSON[_0x1e8129(0x200,'\x42\x26\x54\x44')](_0x33e6b3);_0x3c3e9a=_0x3da865&&_0x3da865[_0x1e8129(0x252,'\x58\x44\x75\x6e')]?_0x113543[_0x1e8129(0x246,'\x66\x44\x58\x5e')](String,_0x3da865[_0x1e8129(0x234,'\x70\x7a\x32\x66')]):null,_0x3b5f55=_0x3da865&&_0x3da865[_0x1e8129(0x211,'\x6e\x63\x76\x61')]?_0x113543[_0x1e8129(0x219,'\x42\x26\x54\x44')](String,_0x3da865[_0x1e8129(0x250,'\x28\x51\x5b\x4c')]):null;}catch(_0x52a670){}const _0x52a419=(process.env.EVOLVER_REGION||'')[_0x1e8129(0x240,'\x65\x77\x7a\x61')]()[_0x1e8129(0x212,'\x6a\x7a\x50\x5d')+_0x1e8129(0x1ed,'\x54\x34\x79\x41')]()[_0x1e8129(0x224,'\x54\x34\x79\x41')](0x7cb*0x1+-0x6f5+0xd6*-0x1,0xb5c+0x2369+-0x2ec0)||undefined;return{'\x64\x65\x76\x69\x63\x65\x5f\x69\x64':_0x113543[_0x1e8129(0x229,'\x62\x32\x6b\x41')](_0x566769),'\x6e\x6f\x64\x65\x5f\x76\x65\x72\x73\x69\x6f\x6e':process[_0x1e8129(0x225,'\x4e\x6e\x6f\x77')],'\x70\x6c\x61\x74\x66\x6f\x72\x6d':process[_0x1e8129(0x227,'\x70\x54\x75\x23')],'\x61\x72\x63\x68':process[_0x1e8129(0x237,'\x78\x46\x68\x56')],'\x6f\x73\x5f\x72\x65\x6c\x65\x61\x73\x65':_0x42620f['\x72\x65\x6c\x65\x61\x73\x65'](),'\x68\x6f\x73\x74\x6e\x61\x6d\x65':_0x1addaa[_0x1e8129(0x1f5,'\x42\x26\x54\x44')+'\x73\x68']('\x73\x68\x61\x32\x35\x36')[_0x1e8129(0x1e2,'\x70\x54\x75\x23')](_0x42620f[_0x1e8129(0x1fc,'\x4e\x6e\x6f\x77')]())[_0x1e8129(0x231,'\x7a\x6c\x23\x45')](_0x113543[_0x1e8129(0x1fb,'\x6b\x64\x36\x65')])[_0x1e8129(0x248,'\x28\x61\x6a\x32')](0x2410*-0x1+-0x1daa+0x41ba,0x19*-0x68+-0x2537+-0x3d*-0xc7),'\x65\x76\x6f\x6c\x76\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x3c3e9a,'\x63\x6c\x69\x65\x6e\x74':_0x113543[_0x1e8129(0x1e7,'\x28\x51\x5b\x4c')](_0x3b5f55,_0x113543['\x74\x59\x4a\x6a\x76']),'\x63\x6c\x69\x65\x6e\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x3c3e9a,'\x6d\x6f\x64\x65\x6c':_0x113543[_0x1e8129(0x23f,'\x62\x32\x6b\x41')](_0x5dbbbc),'\x72\x65\x67\x69\x6f\x6e':_0x52a419,'\x63\x77\x64':_0x1addaa[_0x1e8129(0x1f5,'\x42\x26\x54\x44')+'\x73\x68'](_0x113543[_0x1e8129(0x217,'\x65\x77\x7a\x61')])[_0x1e8129(0x260,'\x65\x77\x7a\x61')](process[_0x1e8129(0x261,'\x65\x77\x7a\x61')]())[_0x1e8129(0x20b,'\x31\x45\x48\x59')](_0x113543[_0x1e8129(0x216,'\x78\x46\x68\x56')])[_0x1e8129(0x203,'\x25\x6c\x30\x62')](-0x985*0x2+-0x26*-0x51+-0x2*-0x382,-0x1c0d+-0xb3d+0x13*0x212),'\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72':_0x113543[_0x1e8129(0x204,'\x6d\x2a\x58\x5e')](_0x132b6d),'\x63\x61\x70\x74\x75\x72\x65\x64\x5f\x61\x74':new Date()[_0x1e8129(0x233,'\x70\x7a\x32\x66')+_0x1e8129(0x242,'\x49\x5b\x6a\x66')]()};}function _0x3480c4(_0x47039b){const _0x599372=_0x9cfe4e,_0x212ca0={};_0x212ca0[_0x599372(0x23d,'\x78\x46\x68\x56')]=function(_0x183604,_0x130e8d){return _0x183604!==_0x130e8d;},_0x212ca0[_0x599372(0x1ef,'\x31\x45\x48\x59')]=_0x599372(0x1f6,'\x33\x39\x64\x2a'),_0x212ca0[_0x599372(0x1e6,'\x7a\x6c\x23\x45')]='\x75\x6e\x6b\x6e\x6f\x77\x6e',_0x212ca0[_0x599372(0x23e,'\x63\x64\x56\x67')]=_0x599372(0x236,'\x67\x58\x50\x46'),_0x212ca0[_0x599372(0x238,'\x33\x39\x64\x2a')]=_0x599372(0x218,'\x65\x77\x7a\x61'),_0x212ca0['\x63\x68\x50\x47\x43']=_0x599372(0x24f,'\x5e\x23\x71\x47');const _0x1f3f94=_0x212ca0;if(!_0x47039b||_0x1f3f94[_0x599372(0x1ec,'\x63\x64\x56\x67')](typeof _0x47039b,_0x1f3f94['\x51\x74\x72\x57\x51']))return _0x1f3f94[_0x599372(0x1ff,'\x51\x30\x48\x61')];const _0x165e48=[_0x47039b[_0x599372(0x265,'\x25\x6c\x30\x62')+'\x64']||'',_0x47039b['\x6e\x6f\x64\x65\x5f\x76\x65\x72'+_0x599372(0x22d,'\x23\x79\x66\x50')]||'',_0x47039b[_0x599372(0x20f,'\x4a\x4b\x76\x58')]||'',_0x47039b['\x61\x72\x63\x68']||'',_0x47039b['\x68\x6f\x73\x74\x6e\x61\x6d\x65']||'',_0x47039b[_0x599372(0x1f8,'\x25\x46\x42\x45')]||_0x47039b[_0x599372(0x201,'\x54\x34\x79\x41')+_0x599372(0x257,'\x36\x6c\x4e\x35')]||'',_0x47039b[_0x599372(0x22e,'\x70\x54\x75\x23')+_0x599372(0x221,'\x67\x58\x50\x46')]||_0x47039b[_0x599372(0x239,'\x67\x6e\x74\x78')+_0x599372(0x1f3,'\x5e\x23\x71\x47')]||''][_0x599372(0x24e,'\x33\x39\x64\x2a')]('\x7c');return _0x1addaa[_0x599372(0x1e3,'\x49\x5b\x6a\x66')+'\x73\x68'](_0x1f3f94[_0x599372(0x1dd,'\x4a\x4b\x76\x58')])[_0x599372(0x243,'\x48\x69\x23\x4f')](_0x165e48,_0x1f3f94[_0x599372(0x232,'\x51\x30\x48\x61')])[_0x599372(0x1f4,'\x42\x26\x54\x44')](_0x1f3f94[_0x599372(0x21d,'\x31\x45\x48\x59')])[_0x599372(0x1fe,'\x6d\x2a\x58\x5e')](0x3*0x119+-0x1792+0x1447,-0x180c+-0xbc8+0x1*0x23e4);}function _0x312d43(_0x43e72c,_0x275117){const _0x392afa=_0x9cfe4e,_0x43fed5={'\x51\x61\x59\x77\x44':function(_0x5449e2,_0x40635a){return _0x5449e2===_0x40635a;},'\x55\x64\x72\x4e\x6c':function(_0x3c9e0a,_0x37c897){return _0x3c9e0a(_0x37c897);},'\x41\x61\x4f\x76\x6d':function(_0x6b8906,_0x2a6fe5){return _0x6b8906(_0x2a6fe5);}};return _0x43fed5[_0x392afa(0x20e,'\x63\x50\x70\x21')](_0x43fed5[_0x392afa(0x1e1,'\x5e\x23\x71\x47')](_0x3480c4,_0x43e72c),_0x43fed5[_0x392afa(0x1df,'\x7a\x6c\x23\x45')](_0x3480c4,_0x275117));}const _0x12796b={};_0x12796b[_0x9cfe4e(0x22b,'\x4a\x4b\x76\x58')+_0x9cfe4e(0x202,'\x4a\x4b\x76\x58')+_0x9cfe4e(0x1f9,'\x67\x58\x50\x46')]=_0x1a0a23,_0x12796b[_0x9cfe4e(0x207,'\x79\x65\x64\x47')+_0x9cfe4e(0x253,'\x76\x7a\x48\x48')+'\x79']=_0x3480c4,_0x12796b[_0x9cfe4e(0x25a,'\x6d\x2a\x58\x5e')+_0x9cfe4e(0x264,'\x39\x42\x52\x52')]=_0x312d43,_0x12796b[_0x9cfe4e(0x1e8,'\x70\x66\x38\x44')+_0x9cfe4e(0x220,'\x70\x66\x38\x44')]=_0x5dbbbc,module[_0x9cfe4e(0x1e5,'\x63\x64\x56\x67')]=_0x12796b;
|
package/src/gep/epigenetics.js
CHANGED
|
@@ -1,31 +1 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
const cfg = require('../config');
|
|
4
|
-
|
|
5
|
-
function resolveEnvContext(envFingerprint) {
|
|
6
|
-
const platform = envFingerprint && envFingerprint.platform ? String(envFingerprint.platform) : '';
|
|
7
|
-
const arch = envFingerprint && envFingerprint.arch ? String(envFingerprint.arch) : '';
|
|
8
|
-
const nodeVersion = envFingerprint && envFingerprint.node_version ? String(envFingerprint.node_version) : '';
|
|
9
|
-
return [platform, arch, nodeVersion].filter(Boolean).join('/') || 'unknown';
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
function getEpigeneticBoost(gene, envFingerprint) {
|
|
13
|
-
if (!gene || !Array.isArray(gene.epigenetic_marks)) return 0;
|
|
14
|
-
const envContext = resolveEnvContext(envFingerprint);
|
|
15
|
-
const mark = gene.epigenetic_marks.find(function (m) { return m && m.context === envContext; });
|
|
16
|
-
return mark ? Number(mark.boost) || 0 : 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function isEpigeneticallySuppressed(gene, envFingerprint) {
|
|
20
|
-
if (!gene || !Array.isArray(gene.epigenetic_marks) || gene.epigenetic_marks.length === 0) {
|
|
21
|
-
return false;
|
|
22
|
-
}
|
|
23
|
-
const envContext = resolveEnvContext(envFingerprint);
|
|
24
|
-
const mark = gene.epigenetic_marks.find(function (m) { return m && m.context === envContext; });
|
|
25
|
-
if (!mark) return false;
|
|
26
|
-
const boost = Number(mark.boost);
|
|
27
|
-
if (!Number.isFinite(boost)) return false;
|
|
28
|
-
return boost <= cfg.GENE_EPIGENETIC_HARD_BOOST;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
module.exports = { resolveEnvContext, getEpigeneticBoost, isEpigeneticallySuppressed };
|
|
1
|
+
const _0xe48f35=_0x4705;function _0xea03(){const _0x5119e4=['\x64\x59\x33\x63\x51\x6d\x6f\x67\x57\x4f\x54\x53\x64\x57','\x57\x34\x38\x35\x57\x52\x38\x5a\x69\x61','\x57\x4f\x66\x63\x57\x51\x58\x32','\x67\x6d\x6b\x37\x57\x34\x42\x64\x50\x43\x6f\x6f','\x57\x50\x74\x64\x53\x33\x56\x64\x52\x59\x34\x4c\x57\x34\x6c\x64\x47\x61\x2f\x64\x50\x38\x6b\x7a\x57\x37\x74\x64\x4e\x57','\x7a\x4a\x68\x64\x47\x30\x38','\x57\x37\x5a\x63\x52\x43\x6b\x4c\x6a\x49\x31\x52\x45\x30\x47','\x57\x50\x57\x75\x57\x34\x65\x6f\x72\x47','\x57\x4f\x68\x64\x4e\x49\x75\x64\x57\x37\x75\x44\x57\x37\x7a\x49','\x57\x36\x72\x7a\x57\x4f\x4f\x4b\x72\x77\x42\x63\x4a\x49\x43','\x57\x37\x34\x59\x57\x51\x37\x64\x4b\x43\x6f\x30\x70\x71','\x71\x53\x6f\x53\x57\x52\x79\x68\x57\x51\x4a\x64\x51\x53\x6f\x57\x77\x47','\x57\x34\x61\x56\x57\x50\x47\x48\x6f\x6d\x6b\x4f\x75\x6d\x6f\x67','\x6a\x30\x42\x63\x51\x43\x6b\x30\x44\x59\x68\x63\x4d\x38\x6b\x2f','\x71\x4d\x65\x6b\x6c\x38\x6b\x2b\x57\x52\x79','\x6b\x43\x6b\x6d\x77\x43\x6b\x41','\x71\x53\x6f\x38\x57\x51\x57\x41\x57\x51\x64\x64\x56\x38\x6f\x2b\x72\x57','\x79\x71\x68\x64\x50\x43\x6f\x2f\x61\x33\x37\x64\x4c\x43\x6f\x4b','\x6e\x76\x39\x59\x57\x51\x4c\x61','\x57\x50\x38\x53\x57\x36\x66\x78\x6b\x58\x64\x64\x53\x76\x4a\x64\x4c\x38\x6f\x31\x57\x35\x6c\x63\x48\x38\x6f\x2f\x63\x71','\x57\x34\x65\x56\x57\x50\x4b\x48\x6f\x61','\x71\x57\x4a\x64\x55\x61\x66\x52\x72\x72\x4e\x63\x49\x33\x70\x64\x4d\x72\x71','\x57\x35\x58\x71\x6b\x6d\x6f\x43\x57\x52\x65','\x57\x35\x4a\x64\x54\x61\x44\x2f\x63\x38\x6b\x66\x57\x34\x44\x76','\x46\x67\x65\x4f\x41\x67\x71','\x71\x6d\x6f\x44\x57\x37\x4a\x64\x47\x53\x6b\x6f','\x76\x67\x4f\x70\x6d\x38\x6f\x47\x57\x51\x37\x64\x51\x38\x6f\x47\x63\x71','\x6e\x49\x4f\x48\x57\x36\x4a\x64\x49\x72\x70\x64\x4e\x47','\x46\x38\x6f\x73\x77\x53\x6b\x45\x6c\x47\x58\x4e','\x57\x52\x65\x4d\x79\x43\x6f\x67\x6b\x59\x69\x62\x66\x71','\x61\x43\x6b\x58\x57\x34\x5a\x64\x4f\x6d\x6f\x6a','\x70\x43\x6f\x33\x57\x34\x39\x63\x57\x37\x38\x5a\x57\x36\x6e\x4e\x57\x36\x46\x63\x53\x72\x70\x63\x4c\x6d\x6f\x55','\x67\x6d\x6b\x4b\x57\x35\x53\x6c','\x71\x53\x6f\x50\x57\x52\x4a\x63\x48\x38\x6b\x6e\x57\x51\x4f\x34\x65\x57','\x57\x52\x6e\x73\x78\x47\x74\x64\x51\x61','\x57\x50\x6e\x65\x57\x50\x66\x4d\x68\x43\x6f\x77\x44\x38\x6b\x37','\x63\x38\x6f\x6e\x44\x38\x6f\x2b\x67\x38\x6b\x75','\x45\x4d\x79\x30\x42\x4b\x69','\x75\x6d\x6f\x6c\x61\x38\x6f\x74\x57\x4f\x47','\x57\x51\x46\x64\x54\x38\x6f\x70\x43\x33\x4f\x48\x69\x68\x46\x64\x48\x43\x6f\x67\x6d\x43\x6b\x50\x57\x37\x34','\x73\x4d\x42\x64\x50\x31\x74\x63\x47\x43\x6f\x37\x57\x4f\x42\x63\x55\x57','\x6a\x6d\x6b\x6e\x61\x6d\x6b\x42\x6a\x4a\x50\x51\x57\x36\x71\x2b','\x45\x6d\x6f\x34\x57\x52\x50\x78\x57\x51\x35\x65\x57\x37\x52\x63\x53\x61','\x57\x37\x58\x4e\x69\x38\x6f\x43\x57\x52\x42\x63\x4e\x67\x78\x64\x52\x57','\x6c\x6d\x6b\x31\x57\x34\x74\x64\x47\x53\x6f\x71','\x68\x38\x6b\x2f\x57\x35\x79\x68','\x75\x38\x6f\x77\x74\x4e\x4e\x64\x4c\x38\x6f\x2f\x57\x35\x46\x64\x52\x6d\x6f\x6b','\x6d\x43\x6b\x72\x73\x38\x6b\x6a\x57\x36\x64\x63\x52\x64\x43\x79\x79\x32\x72\x66\x57\x50\x46\x63\x55\x76\x65','\x6f\x63\x47\x55\x75\x77\x46\x63\x55\x38\x6f\x53\x57\x37\x65','\x57\x34\x6d\x2b\x57\x35\x70\x64\x53\x53\x6f\x66\x45\x38\x6b\x56\x57\x52\x6d','\x57\x50\x69\x42\x77\x6d\x6f\x64\x61\x71','\x57\x4f\x56\x64\x51\x32\x78\x63\x55\x68\x7a\x2f\x57\x50\x64\x64\x51\x47','\x69\x61\x43\x6e\x57\x34\x57\x39\x57\x36\x42\x63\x49\x47','\x78\x62\x4f\x2f\x57\x37\x4a\x64\x56\x47','\x57\x34\x6e\x71\x63\x31\x52\x64\x48\x71','\x6c\x6d\x6b\x2b\x57\x36\x69\x65\x57\x37\x57\x45\x57\x51\x56\x63\x48\x38\x6b\x69\x66\x4d\x75\x43\x57\x4f\x43','\x7a\x43\x6f\x61\x42\x4b\x4c\x6b','\x65\x76\x54\x53\x57\x50\x6a\x67\x57\x35\x65\x55\x79\x47','\x62\x6d\x6b\x6c\x66\x65\x37\x64\x4e\x6d\x6f\x65\x57\x34\x75','\x7a\x31\x6e\x4a\x57\x52\x64\x63\x53\x6d\x6b\x69\x57\x35\x6d\x73\x63\x61','\x45\x4e\x65\x50\x6d\x43\x6b\x49','\x64\x53\x6b\x4c\x57\x36\x46\x64\x50\x47','\x72\x43\x6f\x51\x57\x50\x30\x64\x57\x51\x52\x64\x4d\x53\x6f\x30\x72\x47','\x57\x35\x38\x7a\x57\x37\x43\x47\x78\x53\x6f\x70\x76\x53\x6b\x7a\x57\x35\x48\x7a\x65\x47','\x6f\x5a\x75\x53\x7a\x77\x43','\x43\x74\x79\x72\x57\x35\x78\x64\x50\x73\x6c\x64\x55\x78\x4b','\x41\x30\x62\x6c\x57\x50\x7a\x5a\x57\x52\x46\x64\x4c\x77\x38','\x57\x50\x4e\x64\x4a\x68\x50\x43\x76\x47\x78\x63\x4e\x57','\x66\x6d\x6b\x2b\x57\x37\x74\x64\x55\x53\x6f\x66\x57\x37\x72\x51\x62\x6d\x6b\x59\x57\x34\x37\x64\x4e\x43\x6f\x31\x72\x71','\x69\x4c\x75\x65\x57\x35\x56\x63\x50\x53\x6b\x70\x70\x4b\x30','\x57\x36\x68\x63\x4f\x43\x6b\x50\x70\x5a\x35\x57\x46\x4c\x57','\x79\x68\x69\x64\x70\x38\x6b\x6f','\x65\x59\x64\x63\x4e\x6d\x6f\x66\x57\x4f\x76\x50\x63\x53\x6b\x5a','\x75\x58\x5a\x64\x52\x4d\x6a\x64','\x7a\x38\x6b\x67\x57\x52\x69\x52\x57\x51\x34','\x57\x51\x79\x41\x57\x50\x78\x64\x48\x43\x6f\x4c\x43\x57\x75','\x70\x43\x6b\x5a\x57\x34\x74\x64\x4e\x57','\x46\x57\x66\x56\x57\x4f\x46\x64\x53\x53\x6b\x69\x61\x66\x30\x54\x78\x53\x6f\x46','\x57\x50\x62\x32\x57\x34\x69\x33\x67\x38\x6b\x32\x72\x6d\x6f\x4e\x68\x61','\x68\x53\x6f\x6e\x44\x6d\x6f\x4b','\x73\x43\x6b\x52\x57\x34\x4c\x41\x67\x38\x6b\x4c\x75\x38\x6f\x33','\x68\x6d\x6b\x4d\x57\x35\x65\x65\x7a\x6d\x6f\x30\x65\x59\x79','\x64\x53\x6b\x68\x6a\x76\x46\x64\x4d\x6d\x6f\x6f\x57\x35\x52\x64\x4d\x47','\x45\x43\x6f\x6a\x78\x43\x6b\x6a\x6b\x48\x48\x2f\x57\x37\x4b','\x6d\x59\x52\x63\x50\x53\x6b\x46\x45\x61','\x57\x37\x44\x42\x57\x36\x68\x63\x48\x43\x6b\x4d\x79\x4a\x6d\x49\x6e\x53\x6b\x73\x57\x51\x61','\x6b\x48\x53\x4c\x57\x35\x65\x32\x57\x37\x46\x63\x49\x49\x6d','\x6c\x64\x57\x62\x57\x36\x4a\x64\x4d\x62\x4f','\x57\x4f\x37\x64\x47\x73\x75\x6b','\x57\x52\x34\x49\x71\x43\x6f\x62','\x57\x36\x44\x38\x57\x50\x7a\x62\x57\x37\x48\x61\x57\x4f\x34','\x57\x51\x62\x38\x41\x71\x42\x64\x55\x53\x6b\x66\x57\x52\x4e\x63\x50\x57','\x43\x43\x6f\x31\x42\x65\x66\x77','\x57\x34\x4e\x63\x4f\x63\x74\x63\x56\x67\x31\x35','\x57\x52\x69\x57\x57\x35\x75\x71\x7a\x31\x6a\x2b','\x6f\x49\x4b\x6a\x57\x37\x33\x64\x4e\x48\x5a\x64\x47\x47\x4b','\x68\x5a\x70\x63\x51\x53\x6f\x70\x57\x4f\x66\x31\x62\x6d\x6b\x30','\x57\x50\x71\x4f\x57\x36\x57\x72\x44\x32\x52\x63\x55\x61\x5a\x64\x47\x47','\x57\x50\x68\x64\x4a\x30\x54\x63\x78\x71','\x57\x36\x58\x33\x57\x4f\x62\x6e\x57\x35\x4f','\x64\x6d\x6f\x30\x57\x50\x4b\x44\x74\x43\x6b\x4f\x73\x53\x6f\x52\x65\x49\x47\x4b'];_0xea03=function(){return _0x5119e4;};return _0xea03();}(function(_0x11bcc7,_0x3a7098){const _0x539c82=_0x4705,_0x2f5a85=_0x11bcc7();while(!![]){try{const _0x56a396=-parseInt(_0x539c82(0xc8,'\x6c\x75\x32\x42'))/(-0x93d+0x1*0x230d+-0x19cf)+-parseInt(_0x539c82(0xa3,'\x26\x78\x53\x21'))/(-0xb1*0x2d+0x1*-0xed+0x200c)+-parseInt(_0x539c82(0x88,'\x40\x6f\x63\x4f'))/(0x535+-0x1*-0x1786+0xe5c*-0x2)+-parseInt(_0x539c82(0xbf,'\x44\x74\x72\x56'))/(-0x24fe+0x57*0x6d+0x3*-0x3)*(parseInt(_0x539c82(0xd1,'\x74\x28\x59\x48'))/(-0x1a71*-0x1+0x1d94+-0x3800))+-parseInt(_0x539c82(0xad,'\x5a\x38\x5a\x45'))/(0x2511*-0x1+-0x2c3+0x27da)*(-parseInt(_0x539c82(0x83,'\x70\x24\x46\x69'))/(0x106f+-0x1b87+0xb1f))+-parseInt(_0x539c82(0x9e,'\x6c\x64\x6f\x4c'))/(-0x1e5a+0x711+0x1751)*(-parseInt(_0x539c82(0xc3,'\x50\x28\x5a\x21'))/(-0x1117+-0x2*-0x8a9+-0x32*0x1))+parseInt(_0x539c82(0xb3,'\x78\x53\x70\x37'))/(0x16d3+-0x1*0x419+-0x12b0);if(_0x56a396===_0x3a7098)break;else _0x2f5a85['push'](_0x2f5a85['shift']());}catch(_0x3507d0){_0x2f5a85['push'](_0x2f5a85['shift']());}}}(_0xea03,0x8bab6+0x130445+0x788f3*-0x2));const _0x1e42a2=(function(){const _0xf41ebb=_0x4705,_0x5c9005={'\x43\x43\x4a\x48\x44':function(_0x271d0c,_0x4ea925){return _0x271d0c===_0x4ea925;},'\x64\x6f\x53\x4c\x79':function(_0x1b3834,_0x590caa){return _0x1b3834(_0x590caa);},'\x49\x74\x6a\x6f\x6e':function(_0x2b04c0,_0x452b17){return _0x2b04c0<=_0x452b17;},'\x65\x47\x6a\x70\x58':_0xf41ebb(0xce,'\x26\x78\x53\x21')};let _0x1502c2=!![];return function(_0x493d0e,_0x538efd){const _0x15ac52={'\x54\x65\x6d\x65\x5a':function(_0x100f3a,_0x28b1d2){const _0x478915=_0x4705;return _0x5c9005[_0x478915(0xb9,'\x40\x75\x76\x64')](_0x100f3a,_0x28b1d2);},'\x4e\x76\x67\x77\x44':function(_0x505561,_0x21b9d9){const _0x1e9c3e=_0x4705;return _0x5c9005[_0x1e9c3e(0x7b,'\x41\x77\x79\x77')](_0x505561,_0x21b9d9);},'\x44\x58\x4c\x71\x54':function(_0xf42f4e,_0x564264){const _0x4b5c95=_0x4705;return _0x5c9005[_0x4b5c95(0xa9,'\x73\x7a\x48\x28')](_0xf42f4e,_0x564264);},'\x6a\x48\x61\x46\x53':function(_0x44d24c,_0x276e2a){return _0x44d24c!==_0x276e2a;},'\x56\x61\x6d\x54\x6a':_0x5c9005['\x65\x47\x6a\x70\x58']},_0x1b73f8=_0x1502c2?function(){const _0x5879f1=_0x4705,_0x54ffc1={'\x64\x74\x61\x42\x42':function(_0x294053,_0x129431){return _0x15ac52['\x54\x65\x6d\x65\x5a'](_0x294053,_0x129431);},'\x54\x75\x4d\x79\x68':function(_0x5ad547,_0x5dc47a){const _0x1a4e08=_0x4705;return _0x15ac52[_0x1a4e08(0xcb,'\x71\x57\x71\x46')](_0x5ad547,_0x5dc47a);},'\x53\x44\x43\x49\x4c':function(_0x56e09c,_0x1d611e){const _0x3f7bf6=_0x4705;return _0x15ac52[_0x3f7bf6(0xc4,'\x56\x57\x52\x21')](_0x56e09c,_0x1d611e);}};if(_0x538efd){if(_0x15ac52['\x6a\x48\x61\x46\x53'](_0x15ac52[_0x5879f1(0x96,'\x45\x4c\x6b\x61')],_0x15ac52[_0x5879f1(0x87,'\x45\x63\x5b\x32')])){if(!_0x30102b||!_0x255960[_0x5879f1(0x9f,'\x45\x56\x68\x4e')](_0xfd6ac2[_0x5879f1(0xae,'\x39\x37\x76\x67')+_0x5879f1(0x8a,'\x64\x6f\x6b\x7a')])||_0x54ffc1[_0x5879f1(0x9d,'\x57\x49\x50\x50')](_0x297791[_0x5879f1(0xd5,'\x4d\x25\x64\x52')+_0x5879f1(0xc9,'\x74\x28\x59\x48')][_0x5879f1(0x92,'\x71\x57\x71\x46')],-0x76e+-0xd10+0x147e))return![];const _0x398933=_0x1b3d40(_0x30c9dd),_0x2c5bd0=_0x300811['\x65\x70\x69\x67\x65\x6e\x65\x74'+_0x5879f1(0x8f,'\x66\x21\x64\x43')][_0x5879f1(0x89,'\x6e\x62\x28\x5e')](function(_0x370b2a){const _0xb96ebf=_0x5879f1;return _0x370b2a&&_0x370b2a[_0xb96ebf(0x7d,'\x30\x43\x44\x5e')]===_0x398933;});if(!_0x2c5bd0)return![];const _0x54ec44=_0x54ffc1[_0x5879f1(0xc0,'\x71\x57\x71\x46')](_0xf203a0,_0x2c5bd0[_0x5879f1(0x98,'\x21\x50\x4b\x36')]);if(!_0x4dc867[_0x5879f1(0xda,'\x5e\x6a\x31\x35')](_0x54ec44))return![];return _0x54ffc1[_0x5879f1(0xcd,'\x6e\x62\x28\x5e')](_0x54ec44,_0x5e9df3[_0x5879f1(0x9b,'\x2a\x74\x21\x38')+'\x47\x45\x4e\x45\x54\x49\x43\x5f'+_0x5879f1(0xb5,'\x5d\x26\x50\x77')+'\x53\x54']);}else{const _0x1580a1=_0x538efd[_0x5879f1(0x81,'\x47\x65\x5a\x70')](_0x493d0e,arguments);return _0x538efd=null,_0x1580a1;}}}:function(){};return _0x1502c2=![],_0x1b73f8;};}()),_0x4e7b20=_0x1e42a2(this,function(){const _0x233928=_0x4705;return _0x4e7b20[_0x233928(0xa7,'\x50\x28\x5a\x21')]()[_0x233928(0x8e,'\x2a\x55\x76\x73')](_0x233928(0xc6,'\x5e\x6a\x31\x35')+_0x233928(0x93,'\x78\x53\x70\x37'))[_0x233928(0xca,'\x64\x6f\x6b\x7a')]()[_0x233928(0x90,'\x21\x50\x4b\x36')+'\x74\x6f\x72'](_0x4e7b20)[_0x233928(0xdb,'\x45\x56\x68\x4e')](_0x233928(0x91,'\x36\x43\x4b\x49')+_0x233928(0xc1,'\x6c\x75\x32\x42'));});_0x4e7b20();'use strict';const _0x4e9cc4=require(_0xe48f35(0xb7,'\x40\x6f\x63\x4f')+'\x67');function _0x533144(_0x22b2ec){const _0x337bc7=_0xe48f35,_0x411594={'\x54\x69\x44\x66\x71':function(_0x9e022b,_0x2402ac){return _0x9e022b(_0x2402ac);},'\x4f\x73\x76\x69\x48':_0x337bc7(0x84,'\x6b\x73\x6c\x40')},_0x5c579b=_0x22b2ec&&_0x22b2ec[_0x337bc7(0x7a,'\x73\x25\x6d\x58')]?_0x411594['\x54\x69\x44\x66\x71'](String,_0x22b2ec[_0x337bc7(0xd4,'\x70\x24\x46\x69')]):'',_0x13f165=_0x22b2ec&&_0x22b2ec[_0x337bc7(0x78,'\x40\x51\x63\x7a')]?String(_0x22b2ec[_0x337bc7(0xa4,'\x4d\x25\x64\x52')]):'',_0x21b5e2=_0x22b2ec&&_0x22b2ec[_0x337bc7(0x95,'\x36\x43\x4b\x49')+_0x337bc7(0xd0,'\x45\x63\x5b\x32')]?String(_0x22b2ec[_0x337bc7(0xc5,'\x40\x75\x76\x64')+_0x337bc7(0xd3,'\x36\x6b\x6b\x25')]):'';return[_0x5c579b,_0x13f165,_0x21b5e2][_0x337bc7(0xa8,'\x36\x6b\x6b\x25')](Boolean)[_0x337bc7(0x77,'\x5d\x34\x58\x74')]('\x2f')||_0x411594[_0x337bc7(0x9c,'\x73\x7a\x48\x28')];}function _0x42a875(_0x4e38e8,_0x4d40c5){const _0x1c2bc1=_0xe48f35,_0x3c7914={'\x4f\x6b\x67\x51\x6d':function(_0x1e1ea8,_0x10503a){return _0x1e1ea8===_0x10503a;},'\x63\x42\x56\x76\x74':function(_0x2e7637,_0x4a8be4){return _0x2e7637(_0x4a8be4);},'\x6e\x73\x66\x63\x50':function(_0x17be6a,_0x5ad1e7){return _0x17be6a(_0x5ad1e7);}};if(!_0x4e38e8||!Array[_0x1c2bc1(0xcf,'\x70\x4d\x4d\x43')](_0x4e38e8[_0x1c2bc1(0x8c,'\x5d\x34\x58\x74')+'\x69\x63\x5f\x6d\x61\x72\x6b\x73']))return 0xb*-0x13b+0x6*-0x355+0x3*0xb2d;const _0x402780=_0x3c7914[_0x1c2bc1(0xa6,'\x73\x25\x6d\x58')](_0x533144,_0x4d40c5),_0x1dafc5=_0x4e38e8[_0x1c2bc1(0xac,'\x41\x25\x5d\x35')+_0x1c2bc1(0xcc,'\x6b\x73\x6c\x40')][_0x1c2bc1(0x86,'\x50\x28\x5a\x21')](function(_0x42085f){const _0x35278c=_0x1c2bc1;return _0x42085f&&_0x3c7914[_0x35278c(0xa2,'\x45\x63\x5b\x32')](_0x42085f[_0x35278c(0xb8,'\x5e\x6a\x31\x35')],_0x402780);});return _0x1dafc5?_0x3c7914[_0x1c2bc1(0x82,'\x34\x56\x56\x6d')](Number,_0x1dafc5[_0x1c2bc1(0xb0,'\x45\x63\x5b\x32')])||0x148c+0x20c1+-0x354d:0x191b+-0x3c*-0x11+-0x1d17;}function _0x45ef7c(_0x1a144d,_0x107c3f){const _0x313c6f=_0xe48f35,_0x15b8e6={'\x4d\x4b\x7a\x6a\x44':function(_0x56bc4f,_0x4c58fa){return _0x56bc4f===_0x4c58fa;},'\x70\x5a\x51\x44\x65':_0x313c6f(0x9a,'\x31\x4d\x4b\x56'),'\x78\x54\x6a\x53\x71':function(_0x4fb898,_0x3a72d2){return _0x4fb898(_0x3a72d2);},'\x52\x6e\x71\x6d\x59':function(_0x464e97,_0xf86c00){return _0x464e97(_0xf86c00);},'\x6c\x79\x49\x61\x6c':function(_0x2b9420,_0x37a06){return _0x2b9420<=_0x37a06;}};if(!_0x1a144d||!Array[_0x313c6f(0xc7,'\x47\x65\x5a\x70')](_0x1a144d[_0x313c6f(0x7f,'\x6b\x73\x6c\x40')+_0x313c6f(0xc9,'\x74\x28\x59\x48')])||_0x15b8e6[_0x313c6f(0xb6,'\x40\x51\x63\x7a')](_0x1a144d[_0x313c6f(0xac,'\x41\x25\x5d\x35')+_0x313c6f(0xd6,'\x4d\x74\x69\x4d')][_0x313c6f(0x7c,'\x40\x6f\x63\x4f')],-0x4c*0x2+0x266f+0x25d7*-0x1))return _0x15b8e6[_0x313c6f(0x8b,'\x30\x43\x44\x5e')](_0x15b8e6['\x70\x5a\x51\x44\x65'],_0x15b8e6[_0x313c6f(0xbc,'\x41\x77\x79\x77')])?![]:_0x3574b4&&_0x3fcd43[_0x313c6f(0xbe,'\x4d\x74\x69\x4d')]===_0x27568e;const _0x3122bb=_0x15b8e6['\x78\x54\x6a\x53\x71'](_0x533144,_0x107c3f),_0x1c9a34=_0x1a144d[_0x313c6f(0x7e,'\x45\x56\x68\x4e')+'\x69\x63\x5f\x6d\x61\x72\x6b\x73'][_0x313c6f(0xb1,'\x4d\x25\x64\x52')](function(_0x54f91c){const _0x418b89=_0x313c6f;return _0x54f91c&&_0x15b8e6[_0x418b89(0xd8,'\x39\x24\x51\x4c')](_0x54f91c[_0x418b89(0xa0,'\x5a\x38\x5a\x45')],_0x3122bb);});if(!_0x1c9a34)return![];const _0x5da871=_0x15b8e6[_0x313c6f(0xaa,'\x78\x53\x70\x37')](Number,_0x1c9a34[_0x313c6f(0xba,'\x46\x29\x36\x61')]);if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x5da871))return![];return _0x15b8e6[_0x313c6f(0x85,'\x21\x50\x4b\x36')](_0x5da871,_0x4e9cc4[_0x313c6f(0xaf,'\x31\x4d\x4b\x56')+_0x313c6f(0xb4,'\x56\x57\x52\x21')+_0x313c6f(0x8d,'\x34\x4b\x21\x40')+'\x53\x54']);}function _0x4705(_0x1ca2c9,_0x41453f){_0x1ca2c9=_0x1ca2c9-(-0x225+-0x1c1+-0x45d*-0x1);const _0x51e82f=_0xea03();let _0x17745a=_0x51e82f[_0x1ca2c9];if(_0x4705['\x45\x79\x44\x76\x4d\x68']===undefined){var _0xaa212e=function(_0x1635c2){const _0x2f7570='\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 _0x495a33='',_0x54a4c3='',_0xafc589=_0x495a33+_0xaa212e,_0x2a101b=(''+function(){return 0x131e*0x1+-0x57*0x9+-0x100f;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x170a+0x8a*0x18+-0x23f9);for(let _0x3a90f4=-0x1340+-0xb68+0xa38*0x3,_0xe801a4,_0x4d3729,_0x397448=0x1e7*0x1+-0xec3*-0x2+-0x1f6d;_0x4d3729=_0x1635c2['\x63\x68\x61\x72\x41\x74'](_0x397448++);~_0x4d3729&&(_0xe801a4=_0x3a90f4%(-0x149e+0x1fba+-0xb18)?_0xe801a4*(-0xe2c+0x282*0x5+0x1e2)+_0x4d3729:_0x4d3729,_0x3a90f4++%(0xf*0x1cf+0x1645+0x2b*-0x126))?_0x495a33+=_0x2a101b||_0xafc589['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x397448+(-0x471+-0x1ed1*0x1+-0x6*-0x5e2))-(-0x1e*-0x109+0x1*0x2b3+-0x21b7)!==-0x86*-0x7+0x1ce1+-0x208b?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xc9e+0x248*0x7+-0x3f1*0x7&_0xe801a4>>(-(-0x2*-0xc2+0x1761+-0x18e3)*_0x3a90f4&-0x789*0x5+0xe7*0x1+0xc44*0x3)):_0x3a90f4:0x1b*0x15e+0x1*-0x203b+-0x1*0x4af){_0x4d3729=_0x2f7570['\x69\x6e\x64\x65\x78\x4f\x66'](_0x4d3729);}for(let _0x592114=-0x245a+-0x241*-0x3+0xf*0x1f9,_0x580684=_0x495a33['\x6c\x65\x6e\x67\x74\x68'];_0x592114<_0x580684;_0x592114++){_0x54a4c3+='\x25'+('\x30\x30'+_0x495a33['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x592114)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1*-0x187c+0x1d0e*-0x1+0x4a2))['\x73\x6c\x69\x63\x65'](-(-0x140*0x1f+0x11a8*0x2+-0x7e*-0x7));}return decodeURIComponent(_0x54a4c3);};const _0x3b1cd4=function(_0x44fee3,_0x1ea867){let _0x53c99c=[],_0xecc7ed=0xd75*-0x1+0xd5*0x9+-0xbf*-0x8,_0x35d215,_0xa8445d='';_0x44fee3=_0xaa212e(_0x44fee3);let _0x1dab92;for(_0x1dab92=-0x27d*0xb+-0x18d0+-0x49*-0xb7;_0x1dab92<-0xe*-0x1d3+0x84*0x2d+-0x17df*0x2;_0x1dab92++){_0x53c99c[_0x1dab92]=_0x1dab92;}for(_0x1dab92=0x13dd+-0x1*0x939+-0xaa4;_0x1dab92<-0x1b83+-0x2132+0x1*0x3db5;_0x1dab92++){_0xecc7ed=(_0xecc7ed+_0x53c99c[_0x1dab92]+_0x1ea867['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1dab92%_0x1ea867['\x6c\x65\x6e\x67\x74\x68']))%(0x1a*0x29+0x30b+-0x635*0x1),_0x35d215=_0x53c99c[_0x1dab92],_0x53c99c[_0x1dab92]=_0x53c99c[_0xecc7ed],_0x53c99c[_0xecc7ed]=_0x35d215;}_0x1dab92=-0x1*-0x1dbd+-0x8a9+-0x1514,_0xecc7ed=0x103*0x15+0x1*0x6a2+0x3d*-0x75;for(let _0x3653eb=0x7d1+0xedb+-0x16ac;_0x3653eb<_0x44fee3['\x6c\x65\x6e\x67\x74\x68'];_0x3653eb++){_0x1dab92=(_0x1dab92+(0x1*-0x956+-0x131b+-0x296*-0xb))%(-0xbda+0x1d7f+-0x10a5),_0xecc7ed=(_0xecc7ed+_0x53c99c[_0x1dab92])%(0x2651+-0x2*-0x7b+-0x2647),_0x35d215=_0x53c99c[_0x1dab92],_0x53c99c[_0x1dab92]=_0x53c99c[_0xecc7ed],_0x53c99c[_0xecc7ed]=_0x35d215,_0xa8445d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x44fee3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3653eb)^_0x53c99c[(_0x53c99c[_0x1dab92]+_0x53c99c[_0xecc7ed])%(-0x594+0x5c5+0xcf*0x1)]);}return _0xa8445d;};_0x4705['\x49\x63\x7a\x4f\x58\x50']=_0x3b1cd4,_0x4705['\x78\x52\x59\x75\x4f\x73']={},_0x4705['\x45\x79\x44\x76\x4d\x68']=!![];}const _0xf3af64=_0x51e82f[-0x10c5*-0x1+-0x755*0x2+-0x21b*0x1],_0x404610=_0x1ca2c9+_0xf3af64,_0x49925d=_0x4705['\x78\x52\x59\x75\x4f\x73'][_0x404610];if(!_0x49925d){if(_0x4705['\x6f\x55\x79\x59\x56\x51']===undefined){const _0x41c44f=function(_0x5da101){this['\x44\x71\x66\x6c\x57\x51']=_0x5da101,this['\x41\x79\x54\x42\x54\x6a']=[0x7c5+0x1c59+-0x241d*0x1,-0x148a+0x1d7b+0x2fb*-0x3,-0xaa0+0x14*0x7a+-0x23*-0x8],this['\x6f\x6a\x61\x4d\x48\x71']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x56\x4f\x79\x75\x71\x43']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x41\x41\x56\x54\x51\x42']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x41c44f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6f\x76\x48\x6e\x52\x6a']=function(){const _0x29c8af=new RegExp(this['\x56\x4f\x79\x75\x71\x43']+this['\x41\x41\x56\x54\x51\x42']),_0x49d65e=_0x29c8af['\x74\x65\x73\x74'](this['\x6f\x6a\x61\x4d\x48\x71']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x41\x79\x54\x42\x54\x6a'][-0x1dcd+0xfd5*-0x1+0x2da3]:--this['\x41\x79\x54\x42\x54\x6a'][0xe*-0xf4+0x3*0x178+0x8f0];return this['\x72\x4c\x49\x47\x58\x67'](_0x49d65e);},_0x41c44f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x72\x4c\x49\x47\x58\x67']=function(_0x4b14fe){if(!Boolean(~_0x4b14fe))return _0x4b14fe;return this['\x5a\x4b\x6e\x59\x7a\x6b'](this['\x44\x71\x66\x6c\x57\x51']);},_0x41c44f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x5a\x4b\x6e\x59\x7a\x6b']=function(_0x9a9227){for(let _0x305672=-0x11f6+0x37*-0x9e+0x33e8,_0x279afc=this['\x41\x79\x54\x42\x54\x6a']['\x6c\x65\x6e\x67\x74\x68'];_0x305672<_0x279afc;_0x305672++){this['\x41\x79\x54\x42\x54\x6a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x279afc=this['\x41\x79\x54\x42\x54\x6a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x9a9227(this['\x41\x79\x54\x42\x54\x6a'][-0x15*-0xcf+-0xb97+-0x564]);},(''+function(){return-0x1368+-0x1897*-0x1+-0x52f*0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x1015+0x236e+0x4*-0x4d6)&&new _0x41c44f(_0x4705)['\x6f\x76\x48\x6e\x52\x6a'](),_0x4705['\x6f\x55\x79\x59\x56\x51']=!![];}_0x17745a=_0x4705['\x49\x63\x7a\x4f\x58\x50'](_0x17745a,_0x41453f),_0x4705['\x78\x52\x59\x75\x4f\x73'][_0x404610]=_0x17745a;}else _0x17745a=_0x49925d;return _0x17745a;}const _0x1cb90f={};_0x1cb90f[_0xe48f35(0xbd,'\x45\x4c\x6b\x61')+_0xe48f35(0xa1,'\x40\x51\x63\x7a')+'\x74']=_0x533144,_0x1cb90f[_0xe48f35(0xa5,'\x6c\x75\x32\x42')+_0xe48f35(0xc2,'\x66\x21\x64\x43')+'\x73\x74']=_0x42a875,_0x1cb90f[_0xe48f35(0x94,'\x66\x21\x64\x43')+_0xe48f35(0xd7,'\x5a\x38\x5a\x45')+'\x53\x75\x70\x70\x72\x65\x73\x73'+'\x65\x64']=_0x45ef7c,module[_0xe48f35(0x79,'\x34\x56\x56\x6d')]=_0x1cb90f;
|