@evomap/evolver-core 2.0.0 → 2.0.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/dist/algo/antiDistill.js +1 -167
- package/dist/algo/bans.js +1 -33
- package/dist/algo/candidateAssembly.js +1 -273
- package/dist/algo/capabilityCandidates.js +1 -146
- package/dist/algo/confidence.js +1 -196
- package/dist/algo/conversationSniffer.js +1 -149
- package/dist/algo/cycleEngine.js +1 -625
- package/dist/algo/cycleFailureClassifier.js +1 -112
- package/dist/algo/epigenetics.js +1 -41
- package/dist/algo/evolutionEvent.js +1 -24
- package/dist/algo/exploration.js +1 -68
- package/dist/algo/geneHealth.js +1 -17
- package/dist/algo/geneIntake.js +1 -128
- package/dist/algo/genePromotion.js +1 -53
- package/dist/algo/geneSelection.js +1 -546
- package/dist/algo/index.js +1 -22
- package/dist/algo/memoryGraph.js +1 -86
- package/dist/algo/mutation.js +1 -22
- package/dist/algo/orchestrator.js +1 -87
- package/dist/algo/publishEligibility.js +1 -52
- package/dist/algo/solidify.js +1 -63
- package/dist/algo/strategyPresets.js +1 -61
- package/dist/algo/ucb1.js +1 -156
- package/dist/benchmark/antiGeneBenchmark.js +1 -252
- package/dist/benchmark/antiGeneImpact.js +1 -34
- package/dist/benchmark/antiGeneRollout.js +1 -269
- package/dist/benchmark/benchmark.js +1 -26
- package/dist/benchmark/evolutionThesisSolver.js +1 -41
- package/dist/benchmark/index.js +1 -7
- package/dist/benchmark/selectionFlatAbstention.js +1 -481
- package/dist/benchmark/thesis.js +1 -150
- package/dist/benchmark/triggerShift.js +1 -106
- package/dist/cycle/cycleTimeline.js +1 -74
- package/dist/cycle/index.js +1 -2
- package/dist/cycle/stateMachine.js +1 -25
- package/dist/hub/agentDirectory.js +1 -104
- package/dist/hub/assetCallLog.js +1 -195
- package/dist/hub/bindings.js +1 -121
- package/dist/hub/capability.js +1 -1
- package/dist/hub/conversationDistiller.js +1 -264
- package/dist/hub/fake.js +1 -70
- package/dist/hub/hubReview.js +1 -106
- package/dist/hub/index.js +1 -11
- package/dist/hub/ingest.js +1 -15
- package/dist/hub/questionGenerator.js +1 -408
- package/dist/hub/reuseDecision.js +1 -127
- package/dist/hub/sanitize.js +1 -322
- package/dist/material/boundary.js +1 -14
- package/dist/material/consumer.js +1 -55
- package/dist/material/emit.js +1 -52
- package/dist/material/factory.js +1 -25
- package/dist/material/index.js +1 -9
- package/dist/material/materialArchive.js +1 -466
- package/dist/material/materialStore.js +1 -69
- package/dist/material/sampling.js +1 -39
- package/dist/material/sources.js +1 -33
- package/dist/material/watermark.js +1 -76
- package/dist/personality/drift.js +1 -106
- package/dist/personality/events.js +1 -37
- package/dist/personality/evolveOps.js +1 -93
- package/dist/personality/index.js +1 -11
- package/dist/personality/mutate.js +1 -39
- package/dist/personality/pivot.js +1 -22
- package/dist/personality/prompt.js +1 -62
- package/dist/personality/riskGate.js +1 -80
- package/dist/personality/schema.js +1 -119
- package/dist/personality/select.js +1 -71
- package/dist/personality/stats.js +1 -82
- package/dist/personality/store.js +1 -92
- package/dist/schema/common.js +1 -17
- package/dist/schema/evolutionGraph.js +1 -187
- package/dist/schema/index.js +1 -6
- package/dist/schema/material.js +1 -50
- package/dist/schema/problem.js +1 -45
- package/dist/schema/proofOfWork.js +1 -9
- package/dist/schema/signal.js +1 -19
- package/dist/signals/curriculum.js +1 -202
- package/dist/signals/cycleHistoryFromEvents.js +1 -105
- package/dist/signals/expand.js +1 -293
- package/dist/signals/extractor.js +1 -82
- package/dist/signals/index.js +1 -8
- package/dist/signals/metaSignals.js +1 -200
- package/dist/signals/signalGate.js +1 -40
- package/dist/signals/taskDomain.js +1 -43
- package/dist/signals/traceSignals.js +1 -123
- package/dist/strategy/constraintAblation.js +1 -2820
- package/dist/strategy/constraintAblationPredicates.js +1 -339
- package/dist/strategy/experiment.js +1 -63
- package/dist/strategy/index.js +1 -3
- package/dist/strategy/strategyPoint.js +1 -23
- package/package.json +1 -1
package/dist/benchmark/thesis.js
CHANGED
|
@@ -1,150 +1 @@
|
|
|
1
|
-
function summarize(arm, samples) {
|
|
2
|
-
const n = samples.length;
|
|
3
|
-
if (n === 0)
|
|
4
|
-
return { arm, n: 0, passes: 0, passRate: 0, avgCost: 0, reuseRate: 0 };
|
|
5
|
-
const passes = samples.filter((s) => s.passed).length;
|
|
6
|
-
return {
|
|
7
|
-
arm,
|
|
8
|
-
n,
|
|
9
|
-
passes,
|
|
10
|
-
passRate: passes / n,
|
|
11
|
-
reuseRate: samples.filter((s) => s.reusedGene).length / n,
|
|
12
|
-
avgCost: samples.reduce((a, s) => a + s.cost, 0) / n,
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
/** Normal CDF via an Abramowitz-Stegun erf approximation — deterministic, no stats dependency, ample precision
|
|
16
|
-
* for a p-value gate (|error| < 1.5e-7). Used for the two-sided p-value of the two-proportion z test. */
|
|
17
|
-
function normalCdf(x) {
|
|
18
|
-
const t = 1 / (1 + 0.2316419 * Math.abs(x));
|
|
19
|
-
const d = 0.3989422804014327 * Math.exp((-x * x) / 2);
|
|
20
|
-
const p = d * t * (0.31938153 + t * (-0.356563782 + t * (1.781477937 + t * (-1.821255978 + t * 1.330274429))));
|
|
21
|
-
return x >= 0 ? 1 - p : p;
|
|
22
|
-
}
|
|
23
|
-
/** Inverse normal CDF (Acklam's rational approximation) — for the (1 − alpha) CI's critical value, so alpha is
|
|
24
|
-
* honoured rather than hard-coding z=1.96. Domain (0,1); deterministic. */
|
|
25
|
-
function normalQuantile(p) {
|
|
26
|
-
if (p <= 0)
|
|
27
|
-
return -Infinity;
|
|
28
|
-
if (p >= 1)
|
|
29
|
-
return Infinity;
|
|
30
|
-
const a = [-3.969683028665376e1, 2.209460984245205e2, -2.759285104469687e2, 1.38357751867269e2, -3.066479806614716e1, 2.506628277459239];
|
|
31
|
-
const b = [-5.447609879822406e1, 1.615858368580409e2, -1.556989798598866e2, 6.680131188771972e1, -1.328068155288572e1];
|
|
32
|
-
const c = [-7.784894002430293e-3, -3.223964580411365e-1, -2.400758277161838, -2.549732539343734, 4.374664141464968, 2.938163982698783];
|
|
33
|
-
const d = [7.784695709041462e-3, 3.224671290700398e-1, 2.445134137142996, 3.754408661907416];
|
|
34
|
-
const pLow = 0.02425;
|
|
35
|
-
if (p < pLow) {
|
|
36
|
-
const q = Math.sqrt(-2 * Math.log(p));
|
|
37
|
-
return (((((c[0] * q + c[1]) * q + c[2]) * q + c[3]) * q + c[4]) * q + c[5]) / ((((d[0] * q + d[1]) * q + d[2]) * q + d[3]) * q + 1);
|
|
38
|
-
}
|
|
39
|
-
if (p <= 1 - pLow) {
|
|
40
|
-
const q = p - 0.5;
|
|
41
|
-
const r = q * q;
|
|
42
|
-
return (((((a[0] * r + a[1]) * r + a[2]) * r + a[3]) * r + a[4]) * r + a[5]) * q / (((((b[0] * r + b[1]) * r + b[2]) * r + b[3]) * r + b[4]) * r + 1);
|
|
43
|
-
}
|
|
44
|
-
const q = Math.sqrt(-2 * Math.log(1 - p));
|
|
45
|
-
return -(((((c[0] * q + c[1]) * q + c[2]) * q + c[3]) * q + c[4]) * q + c[5]) / ((((d[0] * q + d[1]) * q + d[2]) * q + d[3]) * q + 1);
|
|
46
|
-
}
|
|
47
|
-
/** Two-proportion test of (evolver − baseline) pass rates. Significance uses the POOLED-variance z test (the
|
|
48
|
-
* standard test of H0: p1 = p2); the reported CI uses the UNPOOLED (Wald) standard error (the standard interval
|
|
49
|
-
* for the difference). Zero pooled variance (both arms all-pass or all-fail) → no testable difference. */
|
|
50
|
-
function twoProportionTest(x1, n1, x2, n2, alpha) {
|
|
51
|
-
const p1 = x1 / n1;
|
|
52
|
-
const p2 = x2 / n2;
|
|
53
|
-
const delta = p1 - p2;
|
|
54
|
-
const pooled = (x1 + x2) / (n1 + n2);
|
|
55
|
-
const sePooled = Math.sqrt(pooled * (1 - pooled) * (1 / n1 + 1 / n2));
|
|
56
|
-
const z = sePooled > 0 ? delta / sePooled : 0;
|
|
57
|
-
const pValue = sePooled > 0 ? 2 * (1 - normalCdf(Math.abs(z))) : 1;
|
|
58
|
-
const zCrit = normalQuantile(1 - alpha / 2);
|
|
59
|
-
const seWald = Math.sqrt((p1 * (1 - p1)) / n1 + (p2 * (1 - p2)) / n2);
|
|
60
|
-
return { z, pValue, significant: pValue <= alpha, ciLow: delta - zCrit * seWald, ciHigh: delta + zCrit * seWald };
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Achieved power + the per-arm sample size needed to call the experiment "powered". Answers what a bare
|
|
64
|
-
* `no_significant_diff` cannot: was an effect of the minimum interesting size (minDelta) likely to be DETECTED at
|
|
65
|
-
* this n, or is the null just underpowered? Plans around the OBSERVED baseline rate using the two-proportion
|
|
66
|
-
* normal approximation; equal-n via the harmonic mean of the two arms (so unequal arms degrade gracefully).
|
|
67
|
-
*/
|
|
68
|
-
function powerAnalysis(baselineRate, minDelta, n1, n2, alpha, targetPower) {
|
|
69
|
-
const delta = Math.abs(minDelta);
|
|
70
|
-
if (delta <= 0)
|
|
71
|
-
return { power: 0, requiredN: Infinity }; // no effect size to power for
|
|
72
|
-
const p2 = Math.min(1, Math.max(0, baselineRate));
|
|
73
|
-
const p1 = Math.min(1, Math.max(0, p2 + delta));
|
|
74
|
-
// EFFECTIVE effect size after clamping to [0,1]: a minDelta lift off a near-ceiling baseline isn't fully
|
|
75
|
-
// achievable (p1 caps at 1), so the realizable effect is p1 - p2 <= minDelta. Using the raw minDelta here would
|
|
76
|
-
// overstate power and understate requiredN (Bugbot #286). At the ceiling (p2=1) there is no headroom at all.
|
|
77
|
-
const effDelta = p1 - p2;
|
|
78
|
-
if (effDelta <= 0)
|
|
79
|
-
return { power: 0, requiredN: Infinity };
|
|
80
|
-
const pbar = (p1 + p2) / 2;
|
|
81
|
-
const varNull = 2 * pbar * (1 - pbar); // pooled-null variance (numerator uses sqrt of this)
|
|
82
|
-
const varAlt = p1 * (1 - p1) + p2 * (1 - p2); // alternative variance (the two arms' combined spread)
|
|
83
|
-
const za = normalQuantile(1 - alpha / 2);
|
|
84
|
-
const zb = normalQuantile(targetPower);
|
|
85
|
-
const nEff = n1 > 0 && n2 > 0 ? 2 / (1 / n1 + 1 / n2) : 0;
|
|
86
|
-
let power = 0;
|
|
87
|
-
if (nEff > 0) {
|
|
88
|
-
const seAlt = Math.sqrt(varAlt / nEff);
|
|
89
|
-
// Perfect separation (both arms at a 0/1 boundary) has zero alt-variance → the effect is detectable with
|
|
90
|
-
// certainty; otherwise the standard upper-tail power of the two-proportion z test.
|
|
91
|
-
power = seAlt > 0 ? normalCdf((effDelta - za * Math.sqrt(varNull / nEff)) / seAlt) : 1;
|
|
92
|
-
}
|
|
93
|
-
const num = za * Math.sqrt(varNull) + zb * Math.sqrt(varAlt);
|
|
94
|
-
return { power: Math.min(1, Math.max(0, power)), requiredN: Math.ceil((num * num) / (effDelta * effDelta)) };
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Run both arms over the same task suite and compare. A verdict of evolver_better/worse requires BOTH a practical
|
|
98
|
-
* delta (|passRateDelta| >= minPassRateDelta) AND statistical significance (two-proportion test p <= alpha);
|
|
99
|
-
* otherwise no_significant_diff. reuseRate and costDelta are reported, never scored.
|
|
100
|
-
*/
|
|
101
|
-
export async function runThesis(suite, solver, opts = {}) {
|
|
102
|
-
const minDelta = opts.minPassRateDelta ?? 0.05;
|
|
103
|
-
const minSamples = opts.minSamples ?? 30;
|
|
104
|
-
const alpha = opts.alpha ?? 0.05;
|
|
105
|
-
const targetPower = opts.targetPower ?? 0.8;
|
|
106
|
-
const baselineSamples = [];
|
|
107
|
-
const evolverSamples = [];
|
|
108
|
-
if (opts.interleave) {
|
|
109
|
-
for (const task of suite.tasks) {
|
|
110
|
-
baselineSamples.push(await solver(task, 'baseline'));
|
|
111
|
-
evolverSamples.push(await solver(task, 'evolver'));
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
else {
|
|
115
|
-
for (const task of suite.tasks)
|
|
116
|
-
baselineSamples.push(await solver(task, 'baseline'));
|
|
117
|
-
for (const task of suite.tasks)
|
|
118
|
-
evolverSamples.push(await solver(task, 'evolver'));
|
|
119
|
-
}
|
|
120
|
-
const baseline = summarize('baseline', baselineSamples);
|
|
121
|
-
const evolver = summarize('evolver', evolverSamples);
|
|
122
|
-
const passRateDelta = evolver.passRate - baseline.passRate;
|
|
123
|
-
const costDelta = evolver.avgCost - baseline.avgCost;
|
|
124
|
-
// Power read of the result: with the observed baseline rate and this n, could a minDelta effect have been seen?
|
|
125
|
-
const { power, requiredN } = powerAnalysis(baseline.passRate, minDelta, baseline.n, evolver.n, alpha, targetPower);
|
|
126
|
-
// Two-proportion significance test of (evolver − baseline). Guarded against n=0 (only reachable when minSamples
|
|
127
|
-
// is forced to 0); an empty arm has no testable difference. Otherwise this is the gate that stops a verdict from
|
|
128
|
-
// riding on sampling noise.
|
|
129
|
-
const test = baseline.n > 0 && evolver.n > 0
|
|
130
|
-
? twoProportionTest(evolver.passes, evolver.n, baseline.passes, baseline.n, alpha)
|
|
131
|
-
: { z: 0, pValue: 1, significant: false, ciLow: passRateDelta, ciHigh: passRateDelta };
|
|
132
|
-
// Verdict needs BOTH bars: a practical delta (>= minDelta) AND statistical significance (p <= alpha). A 5pt
|
|
133
|
-
// delta at n=30 is ~0.4σ — well inside noise — so the practical bar alone could call noise a win; the
|
|
134
|
-
// significance bar is what makes the headline thesis number defensible.
|
|
135
|
-
let verdict;
|
|
136
|
-
if (baseline.n < minSamples || evolver.n < minSamples)
|
|
137
|
-
verdict = 'insufficient_samples';
|
|
138
|
-
else if (test.significant && passRateDelta >= minDelta)
|
|
139
|
-
verdict = 'evolver_better';
|
|
140
|
-
else if (test.significant && passRateDelta <= -minDelta)
|
|
141
|
-
verdict = 'evolver_worse';
|
|
142
|
-
else
|
|
143
|
-
verdict = 'no_significant_diff';
|
|
144
|
-
return {
|
|
145
|
-
suite: suite.name, baseline, evolver, passRateDelta, costDelta,
|
|
146
|
-
z: test.z, pValue: test.pValue, significant: test.significant, ciLow: test.ciLow, ciHigh: test.ciHigh,
|
|
147
|
-
power, requiredN,
|
|
148
|
-
verdict,
|
|
149
|
-
};
|
|
150
|
-
}
|
|
1
|
+
(function(_0x1f8dbb,_0x496cf0){const _0x513c58=_0x5627,_0x3ec628=_0x1f8dbb();while(!![]){try{const _0x35da61=parseInt(_0x513c58(0x1d5,'\x24\x32\x42\x50'))/(0x2697+0xaa6+-0x313c)+-parseInt(_0x513c58(0x1fd,'\x2a\x33\x33\x37'))/(-0x2*0xc9d+0x2*0x19a+0x1608)*(-parseInt(_0x513c58(0x1d6,'\x69\x57\x66\x77'))/(-0x683+-0x56*0x5d+0x4*0x971))+parseInt(_0x513c58(0x1f1,'\x26\x28\x24\x32'))/(0x19af+-0x12*-0x21f+-0x3fd9)*(parseInt(_0x513c58(0x233,'\x26\x46\x6e\x57'))/(0x311*-0x3+0x65*0x1d+0x1*-0x239))+parseInt(_0x513c58(0x1f5,'\x6a\x59\x24\x32'))/(-0x2323+0x1*0x1d87+0x5a2)*(parseInt(_0x513c58(0x20a,'\x61\x55\x34\x4d'))/(0x63e+-0x102e+0x9f7))+-parseInt(_0x513c58(0x203,'\x48\x79\x4c\x63'))/(-0x1*-0x5e5+0x36d+0x1d*-0x52)*(parseInt(_0x513c58(0x218,'\x6f\x42\x64\x23'))/(0x932+-0x2f*-0x1+-0x68*0x17))+-parseInt(_0x513c58(0x1e1,'\x79\x28\x2a\x4a'))/(0x4*0x45a+-0x19a2+0x844)+-parseInt(_0x513c58(0x21d,'\x23\x63\x52\x58'))/(-0x217c+0x14c3+0xcc4)*(-parseInt(_0x513c58(0x1e3,'\x4e\x4b\x24\x74'))/(0x2a2*0xc+0x1b5e+-0x3aea*0x1));if(_0x35da61===_0x496cf0)break;else _0x3ec628['push'](_0x3ec628['shift']());}catch(_0xa2833c){_0x3ec628['push'](_0x3ec628['shift']());}}}(_0x480d,0x72296+-0x563*-0x460+-0x10ec0d));function _0x5627(_0x3ccdfa,_0xdf5cda){_0x3ccdfa=_0x3ccdfa-(0x821*0x1+-0x2420+0x1dd2);const _0x4c5429=_0x480d();let _0x19416c=_0x4c5429[_0x3ccdfa];if(_0x5627['\x53\x44\x58\x56\x63\x75']===undefined){var _0x516106=function(_0x5bfc30){const _0x3c7cf4='\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 _0x468b98='',_0x2ba86c='';for(let _0x1f4cee=-0x1fbb+-0x1*0x2146+0x3*0x15ab,_0x4b808d,_0xed9152,_0x5a0e9a=0x186f+0xe49*-0x1+-0xa26;_0xed9152=_0x5bfc30['\x63\x68\x61\x72\x41\x74'](_0x5a0e9a++);~_0xed9152&&(_0x4b808d=_0x1f4cee%(-0x10aa+0x1703+-0x655)?_0x4b808d*(0xa9*0x2+0x3a6+0x97*-0x8)+_0xed9152:_0xed9152,_0x1f4cee++%(-0x7*-0x37c+-0x10ac+-0x7b4))?_0x468b98+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xa34+-0x6e8+-0x1*0x24d&_0x4b808d>>(-(-0x1a*0xf7+0x454*0x3+0xc1c)*_0x1f4cee&-0x1f*0xec+-0x1f0*-0x6+0x52*0x35)):0x2184+-0x485+-0x1cff){_0xed9152=_0x3c7cf4['\x69\x6e\x64\x65\x78\x4f\x66'](_0xed9152);}for(let _0x22103c=0x2699+-0xaa1+-0x1bf8,_0x284aa7=_0x468b98['\x6c\x65\x6e\x67\x74\x68'];_0x22103c<_0x284aa7;_0x22103c++){_0x2ba86c+='\x25'+('\x30\x30'+_0x468b98['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x22103c)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*0x761+-0x1c0c+0x14bb))['\x73\x6c\x69\x63\x65'](-(0xc5*-0x1d+-0x17f7+0x2e4a));}return decodeURIComponent(_0x2ba86c);};const _0x4a9a72=function(_0x3f72db,_0x1007fb){let _0xca98b0=[],_0x1da2fa=0xdd*0x11+-0xd4c+-0x1*0x161,_0x5bbf61,_0xdb809d='';_0x3f72db=_0x516106(_0x3f72db);let _0x3eabe0;for(_0x3eabe0=0x17ca+-0x1131+0x1*-0x699;_0x3eabe0<-0xfba*0x1+-0x760+0x181a;_0x3eabe0++){_0xca98b0[_0x3eabe0]=_0x3eabe0;}for(_0x3eabe0=-0x1bc4+0x2685*-0x1+0x4249*0x1;_0x3eabe0<0x1384*-0x2+0x3*-0x1bd+0x41d*0xb;_0x3eabe0++){_0x1da2fa=(_0x1da2fa+_0xca98b0[_0x3eabe0]+_0x1007fb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3eabe0%_0x1007fb['\x6c\x65\x6e\x67\x74\x68']))%(-0xff*-0x1e+-0x153*0x1a+0x58c),_0x5bbf61=_0xca98b0[_0x3eabe0],_0xca98b0[_0x3eabe0]=_0xca98b0[_0x1da2fa],_0xca98b0[_0x1da2fa]=_0x5bbf61;}_0x3eabe0=0x1*-0x1522+0x1f7e*-0x1+0x34a0,_0x1da2fa=0x47d+0x1*0xedd+-0x135a;for(let _0x3f9f4d=-0xe81+0xd82+0xff;_0x3f9f4d<_0x3f72db['\x6c\x65\x6e\x67\x74\x68'];_0x3f9f4d++){_0x3eabe0=(_0x3eabe0+(0x2*-0x3f1+0x6cf*-0x4+0x231f*0x1))%(-0x20c0*0x1+0x28c*-0xd+0x42dc*0x1),_0x1da2fa=(_0x1da2fa+_0xca98b0[_0x3eabe0])%(0x1b68+-0xa93*0x1+0xc1*-0x15),_0x5bbf61=_0xca98b0[_0x3eabe0],_0xca98b0[_0x3eabe0]=_0xca98b0[_0x1da2fa],_0xca98b0[_0x1da2fa]=_0x5bbf61,_0xdb809d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x3f72db['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3f9f4d)^_0xca98b0[(_0xca98b0[_0x3eabe0]+_0xca98b0[_0x1da2fa])%(0x13b9+-0x16d9*-0x1+-0x2992)]);}return _0xdb809d;};_0x5627['\x45\x56\x6a\x52\x79\x52']=_0x4a9a72,_0x5627['\x51\x51\x78\x69\x4a\x5a']={},_0x5627['\x53\x44\x58\x56\x63\x75']=!![];}const _0x333ec8=_0x4c5429[0xfa0+0x19*0xa+-0x109a],_0x1ad7a7=_0x3ccdfa+_0x333ec8,_0x378450=_0x5627['\x51\x51\x78\x69\x4a\x5a'][_0x1ad7a7];return!_0x378450?(_0x5627['\x6e\x46\x7a\x4b\x68\x6b']===undefined&&(_0x5627['\x6e\x46\x7a\x4b\x68\x6b']=!![]),_0x19416c=_0x5627['\x45\x56\x6a\x52\x79\x52'](_0x19416c,_0xdf5cda),_0x5627['\x51\x51\x78\x69\x4a\x5a'][_0x1ad7a7]=_0x19416c):_0x19416c=_0x378450,_0x19416c;}function _0x480d(){const _0x2a9405=['\x57\x35\x4a\x64\x54\x30\x66\x78\x57\x51\x33\x63\x4e\x61','\x57\x52\x69\x36\x7a\x61','\x61\x4a\x65\x72\x6c\x4e\x54\x33\x57\x35\x4f\x45','\x57\x4f\x79\x34\x57\x37\x58\x6f\x6d\x43\x6b\x76\x57\x52\x78\x64\x52\x38\x6f\x6c\x6e\x72\x57\x54','\x77\x78\x68\x63\x4d\x53\x6f\x68\x75\x38\x6b\x39\x57\x50\x33\x64\x47\x57\x46\x64\x53\x72\x54\x30\x6a\x61','\x57\x51\x5a\x64\x48\x53\x6b\x58','\x57\x51\x65\x37\x57\x37\x61','\x57\x4f\x66\x67\x68\x57','\x57\x4f\x56\x63\x51\x43\x6f\x6a\x6d\x6d\x6b\x54','\x66\x43\x6b\x51\x57\x51\x2f\x63\x49\x43\x6b\x68','\x70\x53\x6b\x35\x66\x49\x75\x4b\x45\x4c\x53\x74','\x57\x35\x30\x73\x78\x38\x6b\x31\x70\x4b\x34\x56\x76\x49\x38','\x68\x38\x6f\x68\x57\x50\x47','\x57\x34\x42\x64\x4c\x66\x65\x2b','\x57\x51\x33\x63\x51\x53\x6f\x51\x57\x36\x2f\x64\x4b\x71','\x68\x43\x6b\x4a\x6e\x48\x57\x7a','\x57\x50\x38\x47\x57\x37\x30\x36\x62\x4e\x57\x67\x73\x57','\x78\x4d\x39\x32\x41\x63\x75\x48\x57\x4f\x79\x49\x57\x37\x37\x63\x4d\x38\x6f\x45\x57\x51\x71\x30','\x57\x35\x6c\x64\x52\x6d\x6b\x57\x57\x37\x76\x54\x46\x4e\x6a\x37','\x75\x77\x56\x64\x4a\x67\x2f\x63\x48\x6d\x6f\x67\x46\x47','\x7a\x68\x6c\x63\x50\x38\x6f\x68\x43\x30\x64\x64\x53\x65\x57','\x41\x38\x6b\x32\x69\x6d\x6b\x38\x6d\x71\x71','\x69\x38\x6b\x5a\x66\x4a\x74\x63\x47\x53\x6f\x79','\x43\x6d\x6f\x6e\x71\x59\x70\x64\x52\x61','\x71\x38\x6b\x41\x57\x52\x74\x63\x4c\x43\x6b\x6f\x57\x51\x70\x64\x56\x64\x34','\x57\x36\x44\x53\x57\x34\x69','\x57\x4f\x30\x47\x57\x37\x30\x53\x64\x32\x79','\x63\x53\x6b\x45\x57\x35\x6e\x6e\x57\x34\x6e\x67\x72\x73\x53','\x57\x52\x42\x63\x51\x53\x6f\x2f','\x65\x63\x70\x63\x4a\x65\x4a\x63\x4c\x6d\x6b\x34\x57\x34\x6e\x48','\x7a\x53\x6b\x32\x41\x53\x6f\x37\x57\x50\x62\x72\x6b\x47\x75','\x42\x53\x6b\x6e\x57\x36\x75\x6a\x45\x61','\x57\x52\x33\x63\x51\x68\x56\x63\x4c\x77\x68\x64\x4f\x49\x33\x64\x4b\x57','\x57\x52\x33\x64\x4e\x43\x6b\x32\x57\x37\x79','\x41\x53\x6b\x43\x61\x43\x6b\x2f','\x44\x6d\x6b\x49\x70\x6d\x6b\x56','\x57\x51\x70\x63\x51\x68\x69','\x43\x38\x6b\x59\x70\x43\x6b\x57\x6e\x47','\x75\x5a\x78\x64\x4f\x53\x6f\x44\x72\x43\x6f\x47\x65\x4b\x57','\x57\x4f\x64\x64\x4d\x67\x54\x69\x57\x51\x56\x63\x4a\x66\x57','\x64\x74\x57\x39','\x7a\x6d\x6b\x57\x57\x34\x61','\x46\x6d\x6b\x42\x68\x6d\x6b\x4e\x57\x50\x58\x66\x62\x64\x61','\x73\x58\x61\x78\x57\x50\x52\x64\x4e\x38\x6f\x35\x57\x37\x56\x63\x52\x53\x6b\x31','\x62\x4b\x6a\x64','\x68\x59\x68\x64\x4b\x6d\x6b\x76\x61\x43\x6f\x34\x57\x37\x2f\x64\x55\x71','\x61\x4c\x72\x68','\x57\x34\x78\x64\x53\x30\x69\x4d\x73\x47\x65','\x57\x51\x64\x64\x47\x43\x6b\x52','\x57\x37\x54\x49\x57\x35\x42\x64\x55\x49\x50\x53\x57\x52\x37\x64\x48\x47','\x43\x4b\x53\x74\x57\x52\x53','\x57\x37\x37\x64\x47\x48\x48\x43','\x45\x53\x6b\x65\x6f\x38\x6b\x49\x57\x4f\x31\x69','\x75\x53\x6f\x63\x57\x50\x75\x43\x57\x4f\x4b\x46\x66\x64\x50\x36\x57\x4f\x52\x63\x54\x47\x72\x67','\x57\x52\x56\x63\x50\x38\x6f\x52','\x72\x38\x6b\x68\x42\x47','\x6a\x4b\x4f\x66\x57\x52\x4e\x64\x54\x64\x47\x73\x57\x34\x47','\x6a\x38\x6b\x37\x63\x73\x78\x63\x49\x38\x6f\x64\x57\x34\x70\x63\x53\x57','\x63\x4b\x31\x70','\x63\x53\x6f\x6f\x78\x61','\x57\x4f\x42\x63\x4a\x43\x6b\x41\x57\x37\x68\x63\x51\x66\x6c\x63\x51\x58\x53','\x6c\x43\x6f\x6b\x43\x30\x6e\x7a\x57\x4f\x37\x64\x4a\x6d\x6b\x47','\x69\x6d\x6f\x35\x57\x52\x56\x63\x4d\x53\x6b\x71','\x57\x37\x76\x4b\x57\x52\x70\x64\x49\x5a\x52\x63\x49\x63\x64\x64\x50\x38\x6f\x31','\x44\x72\x7a\x46\x57\x36\x4e\x63\x51\x57\x71\x44\x57\x37\x38\x68\x78\x5a\x6d','\x68\x6d\x6f\x78\x69\x38\x6f\x73\x57\x37\x46\x64\x4c\x6d\x6b\x58\x57\x37\x33\x64\x4d\x78\x56\x64\x4c\x43\x6f\x70','\x46\x6d\x6b\x42\x68\x6d\x6b\x4e\x57\x50\x58\x66\x62\x61','\x66\x53\x6f\x57\x57\x51\x33\x64\x54\x71','\x44\x43\x6b\x5a\x57\x34\x64\x64\x47\x38\x6b\x62\x57\x52\x38','\x75\x58\x47\x64\x6c\x38\x6f\x56\x46\x53\x6f\x74\x57\x52\x37\x64\x47\x47','\x57\x50\x70\x63\x4b\x61\x65','\x57\x4f\x38\x4b\x57\x36\x4f\x51\x63\x78\x61','\x69\x38\x6b\x34\x57\x4f\x75','\x62\x75\x31\x65\x6c\x6d\x6f\x6b\x77\x38\x6f\x35\x57\x50\x65','\x57\x34\x78\x63\x48\x6d\x6b\x37\x65\x6d\x6f\x51\x57\x34\x65\x6d','\x6a\x6d\x6f\x72\x57\x37\x4a\x63\x4a\x61','\x57\x34\x78\x64\x47\x4c\x2f\x64\x55\x61\x46\x64\x47\x38\x6b\x78\x41\x30\x6c\x63\x53\x6d\x6f\x41\x57\x52\x48\x33','\x57\x36\x50\x55\x6a\x78\x5a\x63\x48\x6d\x6f\x44\x6f\x53\x6f\x55\x61\x53\x6f\x65\x65\x61','\x57\x36\x4a\x64\x49\x58\x4f','\x43\x53\x6f\x73\x41\x61\x2f\x64\x54\x6d\x6f\x59\x68\x57','\x63\x74\x70\x63\x4b\x76\x71','\x70\x6d\x6f\x47\x57\x4f\x6c\x63\x49\x43\x6f\x75\x57\x37\x52\x64\x48\x68\x70\x63\x53\x38\x6b\x54\x57\x51\x56\x63\x4a\x71','\x74\x53\x6b\x47\x57\x37\x78\x63\x50\x53\x6f\x4e\x7a\x6d\x6f\x58\x57\x35\x37\x64\x50\x53\x6f\x43\x57\x36\x64\x63\x53\x71','\x57\x35\x4a\x64\x4a\x65\x30','\x63\x73\x52\x63\x48\x30\x38','\x78\x53\x6b\x68\x7a\x43\x6b\x70\x57\x52\x30','\x57\x34\x78\x64\x48\x76\x78\x63\x50\x65\x37\x63\x53\x43\x6f\x51\x76\x77\x65','\x45\x6d\x6b\x32\x79\x38\x6f\x66\x57\x50\x48\x65\x6d\x64\x71','\x57\x4f\x6d\x68\x57\x37\x35\x6f\x74\x72\x52\x64\x4f\x49\x68\x64\x4b\x78\x76\x4f\x62\x4e\x71','\x66\x78\x64\x64\x56\x43\x6f\x70','\x57\x34\x37\x64\x47\x4c\x70\x64\x53\x71\x68\x64\x4c\x53\x6f\x2b\x62\x38\x6b\x73','\x57\x36\x4c\x4d\x57\x35\x68\x64\x56\x72\x31\x2f','\x57\x35\x74\x64\x4b\x30\x71\x6a\x75\x62\x46\x64\x4b\x71','\x65\x38\x6b\x72\x57\x35\x72\x42\x57\x36\x6e\x6c\x76\x63\x38','\x61\x43\x6f\x46\x57\x4f\x74\x63\x54\x57','\x6d\x53\x6f\x4c\x7a\x57\x78\x63\x4c\x53\x6b\x6e\x6e\x61\x71','\x43\x6d\x6f\x62\x7a\x49\x61','\x57\x52\x5a\x63\x52\x6d\x6f\x30\x57\x36\x4a\x64\x4b\x43\x6b\x2f','\x57\x52\x4e\x63\x50\x67\x34','\x6b\x6d\x6b\x2b\x63\x5a\x30','\x6c\x6d\x6f\x54\x45\x61','\x64\x4b\x62\x74\x57\x52\x56\x64\x50\x38\x6f\x46\x57\x36\x42\x63\x4e\x61','\x44\x43\x6b\x5a\x57\x34\x64\x64\x47\x38\x6b\x62\x57\x51\x47','\x57\x35\x7a\x4b\x57\x52\x34\x63\x7a\x38\x6f\x66\x57\x52\x4a\x64\x55\x57','\x79\x38\x6f\x51\x57\x34\x37\x63\x47\x66\x39\x50\x57\x34\x75'];_0x480d=function(){return _0x2a9405;};return _0x480d();}function summarize(_0x2841b7,_0x19e708){const _0x6d9f7e=_0x5627,_0x402e2b=_0x19e708['\x6c\x65\x6e\x67\x74\x68'];if(_0x402e2b===0x2*-0x1eb+0x5de*0x3+-0xdc4)return{'\x61\x72\x6d':_0x2841b7,'\x6e':0x0,'\x70\x61\x73\x73\x65\x73':0x0,'\x70\x61\x73\x73\x52\x61\x74\x65':0x0,'\x61\x76\x67\x43\x6f\x73\x74':0x0,'\x72\x65\x75\x73\x65\x52\x61\x74\x65':0x0};const _0x3aa34a=_0x19e708[_0x6d9f7e(0x208,'\x35\x77\x33\x36')](_0x25af40=>_0x25af40[_0x6d9f7e(0x1ef,'\x51\x24\x38\x64')])[_0x6d9f7e(0x207,'\x34\x25\x54\x65')];return{'\x61\x72\x6d':_0x2841b7,'\x6e':_0x402e2b,'\x70\x61\x73\x73\x65\x73':_0x3aa34a,'\x70\x61\x73\x73\x52\x61\x74\x65':_0x3aa34a/_0x402e2b,'\x72\x65\x75\x73\x65\x52\x61\x74\x65':_0x19e708[_0x6d9f7e(0x1ea,'\x56\x25\x26\x26')](_0x341872=>_0x341872[_0x6d9f7e(0x206,'\x21\x71\x65\x4b')+'\x6e\x65'])[_0x6d9f7e(0x1f2,'\x62\x31\x38\x6d')]/_0x402e2b,'\x61\x76\x67\x43\x6f\x73\x74':_0x19e708[_0x6d9f7e(0x239,'\x4e\x57\x43\x4c')]((_0x7c052,_0x42d8da)=>_0x7c052+_0x42d8da['\x63\x6f\x73\x74'],0xa13+-0x11a5*-0x2+0xf1f*-0x3)/_0x402e2b};}function normalCdf(_0x2d134f){const _0x52ce2b=_0x5627,_0x48ae96=(-0x6c1+0x10f*-0x20+-0x5ce*-0x7)/(-0x1453+-0x6*-0x19a+0xc4*0xe+(-0x174e+0x22b0+-0x3e*0x2f+0.2316419)*Math[_0x52ce2b(0x21a,'\x48\x79\x4c\x63')](_0x2d134f)),_0x159b23=(-0x2349+-0x1*-0x13b1+0xf98+0.3989422804014327)*Math[_0x52ce2b(0x220,'\x33\x59\x5a\x5b')](-_0x2d134f*_0x2d134f/(-0x233d+0x1*0xe59+0x14e6*0x1)),_0xed8bff=_0x159b23*_0x48ae96*(0xad*0x35+0x2*-0x11d7+0x7*-0x5+0.31938153+_0x48ae96*(-(0x1215+-0x5*0x511+-0x1*-0x740+0.356563782)+_0x48ae96*(0x1c7a+-0x6a*-0x2f+-0x1*0x2fef+0.781477937+_0x48ae96*(-(0x131*0x1e+-0x38f+-0x202e+0.8212559779999999)+_0x48ae96*(0x80e+0x1bb5+0x18e*-0x17+0.3302744289999999)))));return _0x2d134f>=-0x5ee+0x27a+0x34*0x11?-0x1232+0x22f7+-0x10c4-_0xed8bff:_0xed8bff;}function normalQuantile(_0x4ca68f){const _0x374687=_0x5627;if(_0x4ca68f<=0x8*-0x295+0xae7*0x1+0x9c1)return-Infinity;if(_0x4ca68f>=0xc11+-0x1*0x14bd+0x1*0x8ad)return Infinity;const _0x1c454f=[-(0x1d7*0x9+-0x4fe+0x3ce*-0x3+0.696830286653757),-0xb38+0x1f47+-0x1333+0.9460984245204997,-(-0x14db+0xe2*-0x29+0x3a20+0.9285104469686871),0x1e3d*0x1+0xca1*-0x1+-0x1112+0.3577518672690019,-(-0x253f+0x18*0x5f+0x1c75+0.66479806614716),0x7d1+-0x788+0x1*-0x47+0.5066282774592392],_0x4efef9=[-(0xade+-0x7*-0x3af+-0x2471+0.4760987982240579),-0x3*0x4e6+0xa1a+-0x7*-0xbf+0.5858368580408921,-(-0x1be5+-0x9d0+0x2650+0.6989798598866059),0x14cb*0x1+-0x36*-0x74+0x2d01*-0x1+0.8013118877197201,-(0x59c*0x5+0x10ae*-0x1+-0x1*0xb51+0.2806815528857207)],_0x411792=[-(0xf*-0x1d8+0x4e*-0x3e+-0x6*-0x7c2+0.007784894002430293),-(0x3*-0x6c7+-0xe9b+0x22f0+0.3223964580411365),-(-0x18*-0x153+0x4*0x655+-0x1*0x391a+0.4007582771618381),-(0x6fc+-0xc0*-0x11+-0x5*0x3f2+0.5497325393437338),0x5*-0x139+-0x1f71+0x2592+0.37466414146496785,0x1553+0x79*-0x1f+-0x6aa+0.9381639826987831],_0x12583e=[0x1*0xd4b+-0xce3*0x1+-0x68+0.007784695709041462,-0x24*-0xcb+-0x1c*-0x67+-0x31*0xd0+0.3224671290700398,0x1a3d+-0x16df*-0x1+-0x105e*0x3+0.445134137142996,0x1934+0x1*0x111f+-0x2a50+0.7544086619074162],_0x2e85f4=0x8de+-0x8c9*0x3+0x117d+0.02425;if(_0x4ca68f<_0x2e85f4){const _0x19d7ed=Math[_0x374687(0x214,'\x36\x72\x79\x65')](-(-0x9f9+-0xd6a+0x1765)*Math[_0x374687(0x20e,'\x56\x25\x26\x26')](_0x4ca68f));return(((((_0x411792[-0x26a8+0x2274+0x2*0x21a]*_0x19d7ed+_0x411792[0x1*-0x9d9+0x1*0xeb3+-0x49*0x11])*_0x19d7ed+_0x411792[0x1365+0xf06+-0x2269])*_0x19d7ed+_0x411792[-0x1633+-0x1957+0x2f8d])*_0x19d7ed+_0x411792[-0x18c0+-0x56f+-0x1e33*-0x1])*_0x19d7ed+_0x411792[0x2463+-0x1*-0x1b63+-0x3fc1])/((((_0x12583e[0x1*-0xedd+0x1*0x1052+0x175*-0x1]*_0x19d7ed+_0x12583e[0x1c6d+0x2e8+-0x1f54])*_0x19d7ed+_0x12583e[-0x19c0*-0x1+0x1b87+-0xd*0x419])*_0x19d7ed+_0x12583e[-0x8d3+0x25d*-0xb+0x1*0x22d5])*_0x19d7ed+(0x1c54+-0x619+0x2*-0xb1d));}if(_0x4ca68f<=-0x1*0xd01+0x661+0x6a1*0x1-_0x2e85f4){if(_0x374687(0x1fb,'\x4b\x73\x65\x45')===_0x374687(0x230,'\x61\x55\x34\x4d')){const _0x5b7d7b=_0x550be0[_0x374687(0x23a,'\x4b\x73\x65\x45')](_0x2a63c6);if(_0x5b7d7b<=-0x1f87+0xfd5+0x7*0x23e)return{'\x70\x6f\x77\x65\x72':0x0,'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':_0x6fabf5};const _0x23deef=_0x8c7e2f[_0x374687(0x222,'\x46\x48\x6a\x7a')](0x420+-0x27a*0x2+-0x3*-0x47,_0x11a900[_0x374687(0x22c,'\x33\x59\x5a\x5b')](0x179c+0xb5d+-0x22f9*0x1,_0x7550ea)),_0x3721dd=_0x3d8d14[_0x374687(0x1dc,'\x26\x41\x39\x47')](-0x2*0xd13+-0x14e*-0x7+0x1105*0x1,_0x4a512d[_0x374687(0x1f9,'\x2a\x33\x33\x37')](-0x34*0x95+-0x1*0x2162+0x3fa6,_0x23deef+_0x5b7d7b)),_0x6429c2=_0x3721dd-_0x23deef;if(_0x6429c2<=0x98*-0x36+0xfaa*-0x1+0x2fba)return{'\x70\x6f\x77\x65\x72':0x0,'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':_0xbb50d0};const _0xa5ff9c=(_0x3721dd+_0x23deef)/(-0x2379+-0x51e+0x2899),_0x45deed=(0x1*-0x1f91+-0x134*0xe+-0x14f*-0x25)*_0xa5ff9c*(-0xaeb+0x2e0+0x80c-_0xa5ff9c),_0x3f1823=_0x3721dd*(0x680+0x1e40+0x1*-0x24bf-_0x3721dd)+_0x23deef*(-0x665*0x1+-0x21a7+0x280d-_0x23deef),_0x1c3d5b=_0x197f87(-0x6*-0x64d+0x6d9*-0x1+-0x1ef4-_0x104bbc/(0x8b*0x17+-0x5fb+-0x680)),_0x4b69a4=_0x5e313b(_0x1ccaff),_0x5d6e5d=_0x10f862>0xa20+0x29*0x95+-0x21fd&&_0x15bd8a>0x1*-0x1a87+-0x152b+0x6*0x7f3?(-0xc5*0x3+-0x2247+0x1*0x2498)/((-0x2397+-0x4a3*0x3+-0x3181*-0x1)/_0x3dd825+(-0x1629+-0x158*-0xd+0x4b2)/_0x34f1c5):0x684+0xb9b*0x1+0x121f*-0x1;let _0x40ae8e=-0xbd+-0x2dd+0x39a;if(_0x5d6e5d>0x1e6a+-0x1863*-0x1+0x1*-0x36cd){const _0x165c22=_0x1aa92a[_0x374687(0x225,'\x63\x34\x41\x51')](_0x3f1823/_0x5d6e5d);_0x40ae8e=_0x165c22>-0x1731+0x175d+-0x2c?_0x281099((_0x6429c2-_0x1c3d5b*_0x4c9723[_0x374687(0x1e7,'\x61\x55\x34\x4d')](_0x45deed/_0x5d6e5d))/_0x165c22):-0x1*-0xc77+0x1*-0x1751+-0x1*-0xadb;}const _0x5949d2=_0x1c3d5b*_0x136c91[_0x374687(0x1ec,'\x42\x21\x25\x48')](_0x45deed)+_0x4b69a4*_0x1cb7bb[_0x374687(0x225,'\x63\x34\x41\x51')](_0x3f1823);return{'\x70\x6f\x77\x65\x72':_0x582300[_0x374687(0x1fe,'\x61\x55\x34\x4d')](-0x114+0x243a+-0x2325,_0x46f903['\x6d\x61\x78'](-0x1549+-0x1d66+0x32af,_0x40ae8e)),'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':_0x3d4d42[_0x374687(0x1e9,'\x68\x59\x33\x63')](_0x5949d2*_0x5949d2/(_0x6429c2*_0x6429c2))};}else{const _0x448e20=_0x4ca68f-(-0xba3+-0x2f*0x6+0xcbd+0.5),_0x4447a5=_0x448e20*_0x448e20;return(((((_0x1c454f[0x1*0x12ef+0x878+-0x57b*0x5]*_0x4447a5+_0x1c454f[-0xb21+-0x2456+0x2f78])*_0x4447a5+_0x1c454f[-0x2601*-0x1+0x1fd*0x2+0x23*-0x133])*_0x4447a5+_0x1c454f[0x1*0xa22+-0x829+-0xfb*0x2])*_0x4447a5+_0x1c454f[0x12fc+0x1*-0x3d7+0x3*-0x50b])*_0x4447a5+_0x1c454f[0x10*-0x1e2+-0x2061+0x3e86])*_0x448e20/(((((_0x4efef9[0x2300+0x24ee+-0xb*0x68a]*_0x4447a5+_0x4efef9[-0x22ac+-0x1b*-0xe5+-0x2*-0x543])*_0x4447a5+_0x4efef9[-0x23fa+-0xd99+0x3195])*_0x4447a5+_0x4efef9[-0x5*0x730+-0x240c+-0x1*-0x47ff])*_0x4447a5+_0x4efef9[0x1*0x1009+-0x1937+0x932])*_0x4447a5+(-0x44c+-0x20*0xbd+0x3*0x94f));}}const _0x559e6c=Math[_0x374687(0x1e2,'\x6f\x42\x64\x23')](-(0x9ef+-0x3*-0x6cd+-0x1e54)*Math[_0x374687(0x20b,'\x57\x77\x54\x70')](-0x5*0x235+0x8*-0x4b4+-0x30aa*-0x1-_0x4ca68f));return-(((((_0x411792[0xc4e+0x509*0x1+-0x1157]*_0x559e6c+_0x411792[-0x1f*0xbb+0x62e+-0x7c*-0x22])*_0x559e6c+_0x411792[-0x1*-0x23ff+0x9bb+-0x2c*0x10a])*_0x559e6c+_0x411792[0x19ee+0xbd6+0x5*-0x78d])*_0x559e6c+_0x411792[-0xc64+0x1faf*-0x1+0x1*0x2c17])*_0x559e6c+_0x411792[0x123*0x1+0x5*0x5a2+-0x1d48])/((((_0x12583e[-0x2*0x7d5+-0x1904+0x28ae]*_0x559e6c+_0x12583e[0x30*0xb8+-0x13e7+-0xe98])*_0x559e6c+_0x12583e[0x240f+-0x23e*-0x6+-0x3181])*_0x559e6c+_0x12583e[0x1*-0x71+0x25f1+-0x257d])*_0x559e6c+(0x259f+0x2288+-0x4826));}function twoProportionTest(_0x51359c,_0x5b0dfd,_0xa4c303,_0x25b1aa,_0x391c1d){const _0x339d3e=_0x5627,_0x58fcfc=_0x51359c/_0x5b0dfd,_0x1a79c5=_0xa4c303/_0x25b1aa,_0x30c253=_0x58fcfc-_0x1a79c5,_0x5d8d62=(_0x51359c+_0xa4c303)/(_0x5b0dfd+_0x25b1aa),_0x207879=Math[_0x339d3e(0x1ff,'\x26\x41\x39\x47')](_0x5d8d62*(-0xb5f+0x132b+0x299*-0x3-_0x5d8d62)*((0xa3f*0x2+-0xd52+-0x72b)/_0x5b0dfd+(-0x24*-0x97+0xd8a*-0x1+-0xb*0xb3)/_0x25b1aa)),_0xb165e=_0x207879>0x8b7*-0x2+0x1082+0x4*0x3b?_0x30c253/_0x207879:-0x17bc+-0x69*-0x8+0x1474,_0x2490dd=_0x207879>-0xdaf+-0xe57+0x11*0x1a6?(-0x2e5*0xd+-0x1*-0x1079+0x152a)*(0x382+0x34*0x49+-0x1255-normalCdf(Math[_0x339d3e(0x228,'\x56\x25\x26\x26')](_0xb165e))):0x52*-0x49+-0x1b81+0x1*0x32e4,_0x27bade=normalQuantile(-0x61*0x1+-0x435+0x19*0x2f-_0x391c1d/(-0x133f*-0x1+0x1*-0xdb9+-0x584)),_0x4ff4e6=Math[_0x339d3e(0x215,'\x34\x25\x54\x65')](_0x58fcfc*(-0xb51*-0x2+0x3*-0xb11+0xa92-_0x58fcfc)/_0x5b0dfd+_0x1a79c5*(-0x45c+-0xb8c+0xfe9-_0x1a79c5)/_0x25b1aa);return{'\x7a':_0xb165e,'\x70\x56\x61\x6c\x75\x65':_0x2490dd,'\x73\x69\x67\x6e\x69\x66\x69\x63\x61\x6e\x74':_0x2490dd<=_0x391c1d,'\x63\x69\x4c\x6f\x77':_0x30c253-_0x27bade*_0x4ff4e6,'\x63\x69\x48\x69\x67\x68':_0x30c253+_0x27bade*_0x4ff4e6};}function powerAnalysis(_0x291722,_0x328482,_0x4f7bb9,_0xa1922a,_0x257c06,_0x4b14d7){const _0x43d4ba=_0x5627,_0x2839cf=Math[_0x43d4ba(0x21b,'\x51\x24\x38\x64')](_0x328482);if(_0x2839cf<=0x1c77+-0x2*0xbc3+-0x4f1)return{'\x70\x6f\x77\x65\x72':0x0,'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':Infinity};const _0x2b054b=Math[_0x43d4ba(0x22d,'\x50\x4b\x4c\x31')](0x1f*-0xf2+0x6ff+-0x1c*-0xcc,Math[_0x43d4ba(0x1ed,'\x5d\x48\x55\x6e')](-0x7*-0x317+0xd70+-0x2311,_0x291722)),_0x2d9f40=Math['\x6d\x69\x6e'](0x6b*0x52+0x1737*-0x1+-0xb0e,Math[_0x43d4ba(0x1f3,'\x69\x57\x66\x77')](0x95a+0x24cd+0x5*-0x93b,_0x2b054b+_0x2839cf)),_0x1154e4=_0x2d9f40-_0x2b054b;if(_0x1154e4<=0xd*0x203+-0x28f+-0x8*0x2f3)return{'\x70\x6f\x77\x65\x72':0x0,'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':Infinity};const _0x19350a=(_0x2d9f40+_0x2b054b)/(-0x202a+-0x7f*-0x4+-0x7*-0x450),_0x63e67a=(0x1*-0x1e25+-0x6d4*0x3+-0x1*-0x32a3)*_0x19350a*(-0x179b*-0x1+0xfc7+-0x251*0x11-_0x19350a),_0x3b14b4=_0x2d9f40*(0x1b81+-0x1b28+-0x58-_0x2d9f40)+_0x2b054b*(-0x1*-0xa6+-0x1ae0+0x1a3b*0x1-_0x2b054b),_0x974530=normalQuantile(0x1554+-0x1*-0x1bb1+-0x3104-_0x257c06/(-0x1e6a+0x1*0x1ccb+0x1a1*0x1)),_0x1eb64a=normalQuantile(_0x4b14d7),_0x26cac1=_0x4f7bb9>0x81b*0x3+0x62*0x64+-0x5*0xc85&&_0xa1922a>0x897+0x2*-0x1123+0x107*0x19?(-0x145d*0x1+-0xea7+0x2306)/((0x1*-0x73b+-0xf96+0x16d2)/_0x4f7bb9+(-0x2c*-0xce+0x159a+-0x1*0x3901)/_0xa1922a):0x1b24+-0xb71*0x2+-0x442;let _0x32b926=-0x2d0+-0x80f+-0xfd*-0xb;if(_0x26cac1>0x6d*-0x3+-0x7d3*-0x1+-0x68c){const _0x202a65=Math['\x73\x71\x72\x74'](_0x3b14b4/_0x26cac1);_0x32b926=_0x202a65>-0x1333+-0x1771+0x2aa4?normalCdf((_0x1154e4-_0x974530*Math[_0x43d4ba(0x214,'\x36\x72\x79\x65')](_0x63e67a/_0x26cac1))/_0x202a65):0x57c+-0x3b*-0x79+-0x215e;}const _0x3728cd=_0x974530*Math[_0x43d4ba(0x1d4,'\x26\x28\x24\x32')](_0x63e67a)+_0x1eb64a*Math[_0x43d4ba(0x1ec,'\x42\x21\x25\x48')](_0x3b14b4);return{'\x70\x6f\x77\x65\x72':Math[_0x43d4ba(0x216,'\x4c\x55\x61\x74')](-0x1eed+-0x8*0x1e7+0x2e26,Math[_0x43d4ba(0x229,'\x26\x46\x6e\x57')](-0x121a+0x4b1*0x5+-0x55b,_0x32b926)),'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':Math[_0x43d4ba(0x224,'\x4e\x7a\x46\x6d')](_0x3728cd*_0x3728cd/(_0x1154e4*_0x1154e4))};}export async function runThesis(_0x1dd341,_0x47b9ad,_0x3cc455={}){const _0x1b9735=_0x5627,_0xfe35cd=_0x3cc455[_0x1b9735(0x1e0,'\x57\x25\x34\x62')+_0x1b9735(0x22e,'\x66\x31\x24\x41')]??0x21ff+-0x1bc*0x4+-0x1b0f+0.05,_0x3ee9fe=_0x3cc455[_0x1b9735(0x22f,'\x50\x6e\x45\x35')+'\x65\x73']??0xb99+0xeda+0x9*-0x2ed,_0x457e83=_0x3cc455[_0x1b9735(0x1fa,'\x49\x5b\x56\x65')]??-0x12c1+0x2df+0xfe2+0.05,_0x559607=_0x3cc455[_0x1b9735(0x21f,'\x56\x21\x31\x78')+_0x1b9735(0x1eb,'\x4c\x55\x61\x74')]??0x13*-0x125+0x703*-0x5+0x38ce+0.8,_0x491cbf=[],_0x14bd2d=[];if(_0x3cc455[_0x1b9735(0x20d,'\x28\x65\x39\x59')+'\x76\x65'])for(const _0xa7518a of _0x1dd341[_0x1b9735(0x217,'\x34\x25\x54\x65')]){_0x491cbf[_0x1b9735(0x1d9,'\x79\x32\x65\x26')](await _0x47b9ad(_0xa7518a,_0x1b9735(0x22b,'\x35\x77\x33\x36'))),_0x14bd2d['\x70\x75\x73\x68'](await _0x47b9ad(_0xa7518a,_0x1b9735(0x205,'\x4d\x40\x21\x63')));}else{if(_0x1b9735(0x211,'\x32\x64\x59\x6a')===_0x1b9735(0x201,'\x42\x21\x25\x48')){for(const _0xfcc8ee of _0x1dd341[_0x1b9735(0x1de,'\x26\x46\x6e\x57')])_0x491cbf['\x70\x75\x73\x68'](await _0x47b9ad(_0xfcc8ee,_0x1b9735(0x202,'\x4e\x57\x43\x4c')));for(const _0x139e6b of _0x1dd341['\x74\x61\x73\x6b\x73'])_0x14bd2d[_0x1b9735(0x213,'\x46\x48\x6a\x7a')](await _0x47b9ad(_0x139e6b,_0x1b9735(0x234,'\x36\x72\x79\x65')));}else{const _0x5ae1bc=(0x59*-0x13+0x43*-0x53+-0x1c55*-0x1)/(0x2*-0x107e+-0x373*0x6+-0x1*-0x35af+(0xf*0x11a+-0xe*-0x17f+0x6d*-0x58+0.2316419)*_0x232b85[_0x1b9735(0x21a,'\x48\x79\x4c\x63')](_0x17bac4)),_0x166b23=(-0x697+-0x214+0x8ab+0.3989422804014327)*_0xcb90a[_0x1b9735(0x1d7,'\x63\x34\x41\x51')](-_0x3c23fa*_0x274222/(0x11cc+-0x161f+0x455)),_0x554f26=_0x166b23*_0x5ae1bc*(0x7b9+0x13a9+-0x1b62+0.31938153+_0x5ae1bc*(-(0x8da+-0x1c7e+0x68c*0x3+0.356563782)+_0x5ae1bc*(-0x13d5+0x179d+0x3c7*-0x1+0.781477937+_0x5ae1bc*(-(-0x1*-0x1511+0x1cfb*-0x1+0x7eb+0.8212559779999999)+_0x5ae1bc*(-0x703*-0x2+0x2557*0x1+-0x335c+0.3302744289999999)))));return _0xe52559>=0x2573+0x16ec+-0x3c5f?-0x20a7+-0x1212+0x32ba-_0x554f26:_0x554f26;}}const _0x1464a9=summarize(_0x1b9735(0x23b,'\x33\x59\x5a\x5b'),_0x491cbf),_0x414f3f=summarize(_0x1b9735(0x1d3,'\x59\x35\x67\x71'),_0x14bd2d),_0x3218b6=_0x414f3f[_0x1b9735(0x1e6,'\x28\x65\x39\x59')]-_0x1464a9[_0x1b9735(0x223,'\x57\x77\x54\x70')],_0x879032=_0x414f3f[_0x1b9735(0x1e5,'\x26\x41\x39\x47')]-_0x1464a9[_0x1b9735(0x1d8,'\x68\x59\x33\x63')],{power:_0x1f46aa,requiredN:_0x43d3bf}=powerAnalysis(_0x1464a9[_0x1b9735(0x1ee,'\x23\x63\x52\x58')],_0xfe35cd,_0x1464a9['\x6e'],_0x414f3f['\x6e'],_0x457e83,_0x559607),_0x18c15d=_0x1464a9['\x6e']>-0x4bb+-0x2*0xe03+0x1*0x20c1&&_0x414f3f['\x6e']>-0x7a2*0x5+-0x1e*0x117+0x46dc?twoProportionTest(_0x414f3f[_0x1b9735(0x236,'\x51\x24\x38\x64')],_0x414f3f['\x6e'],_0x1464a9[_0x1b9735(0x20c,'\x4e\x57\x43\x4c')],_0x1464a9['\x6e'],_0x457e83):{'\x7a':0x0,'\x70\x56\x61\x6c\x75\x65':0x1,'\x73\x69\x67\x6e\x69\x66\x69\x63\x61\x6e\x74':![],'\x63\x69\x4c\x6f\x77':_0x3218b6,'\x63\x69\x48\x69\x67\x68':_0x3218b6};let _0x115f7b;if(_0x1464a9['\x6e']<_0x3ee9fe||_0x414f3f['\x6e']<_0x3ee9fe)_0x115f7b=_0x1b9735(0x1f0,'\x6a\x59\x24\x32')+_0x1b9735(0x20f,'\x79\x32\x65\x26')+_0x1b9735(0x1dd,'\x79\x32\x65\x26');else{if(_0x18c15d[_0x1b9735(0x212,'\x4c\x55\x61\x74')+_0x1b9735(0x21e,'\x33\x59\x5a\x5b')]&&_0x3218b6>=_0xfe35cd)_0x115f7b=_0x1b9735(0x1fc,'\x42\x21\x25\x48')+_0x1b9735(0x1e4,'\x57\x77\x54\x70');else{if(_0x18c15d[_0x1b9735(0x210,'\x57\x25\x34\x62')+_0x1b9735(0x1f7,'\x46\x48\x6a\x7a')]&&_0x3218b6<=-_0xfe35cd)_0x115f7b=_0x1b9735(0x21c,'\x36\x72\x79\x65')+_0x1b9735(0x200,'\x56\x25\x26\x26');else _0x115f7b=_0x1b9735(0x1f4,'\x48\x79\x4c\x63')+_0x1b9735(0x22a,'\x65\x6d\x77\x50')+_0x1b9735(0x238,'\x4e\x4b\x24\x74');}}return{'\x73\x75\x69\x74\x65':_0x1dd341[_0x1b9735(0x235,'\x6f\x48\x74\x6c')],'\x62\x61\x73\x65\x6c\x69\x6e\x65':_0x1464a9,'\x65\x76\x6f\x6c\x76\x65\x72':_0x414f3f,'\x70\x61\x73\x73\x52\x61\x74\x65\x44\x65\x6c\x74\x61':_0x3218b6,'\x63\x6f\x73\x74\x44\x65\x6c\x74\x61':_0x879032,'\x7a':_0x18c15d['\x7a'],'\x70\x56\x61\x6c\x75\x65':_0x18c15d[_0x1b9735(0x221,'\x26\x41\x39\x47')],'\x73\x69\x67\x6e\x69\x66\x69\x63\x61\x6e\x74':_0x18c15d[_0x1b9735(0x1e8,'\x5d\x48\x55\x6e')+_0x1b9735(0x1f8,'\x6e\x42\x74\x52')],'\x63\x69\x4c\x6f\x77':_0x18c15d[_0x1b9735(0x209,'\x68\x59\x33\x63')],'\x63\x69\x48\x69\x67\x68':_0x18c15d[_0x1b9735(0x226,'\x36\x72\x79\x65')],'\x70\x6f\x77\x65\x72':_0x1f46aa,'\x72\x65\x71\x75\x69\x72\x65\x64\x4e':_0x43d3bf,'\x76\x65\x72\x64\x69\x63\x74':_0x115f7b};}
|
|
@@ -1,106 +1 @@
|
|
|
1
|
-
// Offline replay guard for trigger/context overfitting. Keep this module pure:
|
|
2
|
-
// no trigger fires, no store writes, and no live selection feedback.
|
|
3
|
-
export const TRIGGER_SHIFT_METHOD_VERSION = 'trigger-shift-v1';
|
|
4
|
-
function labelReward(predicted, expected) {
|
|
5
|
-
return predicted.trim() === expected.trim() ? 1 : 0;
|
|
6
|
-
}
|
|
7
|
-
function decisionLabel(decision) {
|
|
8
|
-
return decision.label.trim();
|
|
9
|
-
}
|
|
10
|
-
function mean(values) {
|
|
11
|
-
if (values.length === 0)
|
|
12
|
-
return 0;
|
|
13
|
-
return values.reduce((sum, value) => sum + value, 0) / values.length;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @experimental Offline trigger-shift replay evaluator. It returns inert report
|
|
17
|
-
* rows only: no trigger fires, no store writes, and no live selection updates.
|
|
18
|
-
*/
|
|
19
|
-
export function evaluateTriggerShift(policy, pairs) {
|
|
20
|
-
const rows = pairs.map((pair) => {
|
|
21
|
-
const train = policy.predict(pair.train);
|
|
22
|
-
const shifted = policy.predict(pair.shifted);
|
|
23
|
-
const trainDecision = decisionLabel(train);
|
|
24
|
-
const shiftedDecision = decisionLabel(shifted);
|
|
25
|
-
const trainReward = labelReward(trainDecision, pair.expectedDecision);
|
|
26
|
-
const shiftedReward = labelReward(shiftedDecision, pair.expectedDecision);
|
|
27
|
-
return {
|
|
28
|
-
pairId: pair.id,
|
|
29
|
-
objectiveId: pair.objectiveId,
|
|
30
|
-
axis: pair.axis,
|
|
31
|
-
trainTaskId: pair.train.id,
|
|
32
|
-
shiftedTaskId: pair.shifted.id,
|
|
33
|
-
expectedDecision: pair.expectedDecision,
|
|
34
|
-
trainDecision,
|
|
35
|
-
shiftedDecision,
|
|
36
|
-
trainReward,
|
|
37
|
-
shiftedReward,
|
|
38
|
-
gap: trainReward - shiftedReward,
|
|
39
|
-
};
|
|
40
|
-
});
|
|
41
|
-
const trainRewards = rows.map((row) => row.trainReward);
|
|
42
|
-
const shiftedRewards = rows.map((row) => row.shiftedReward);
|
|
43
|
-
const gaps = rows.map((row) => row.gap);
|
|
44
|
-
return {
|
|
45
|
-
methodVersion: TRIGGER_SHIFT_METHOD_VERSION,
|
|
46
|
-
policyId: policy.id,
|
|
47
|
-
pairs: rows.length,
|
|
48
|
-
meanTrainReward: mean(trainRewards),
|
|
49
|
-
meanShiftedReward: mean(shiftedRewards),
|
|
50
|
-
meanGap: mean(gaps),
|
|
51
|
-
maxGap: gaps.length === 0 ? 0 : Math.max(...gaps),
|
|
52
|
-
rows,
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
/** @experimental Tiny public calibration/demo suite; not a live threshold. */
|
|
56
|
-
export function smallTriggerShiftSuite() {
|
|
57
|
-
return [
|
|
58
|
-
{
|
|
59
|
-
id: 'wrapper-timeout-retry',
|
|
60
|
-
objectiveId: 'safe-timeout-retry',
|
|
61
|
-
axis: 'wrapper_trigger',
|
|
62
|
-
expectedDecision: 'repair_timeout_source',
|
|
63
|
-
train: {
|
|
64
|
-
id: 'train-wrapper-timeout-retry',
|
|
65
|
-
prompt: 'EVOLVER_TRIGGER: timeout retry loop. Fix the timeout source instead of adding more retries.',
|
|
66
|
-
wrapperTrigger: 'EVOLVER_TRIGGER',
|
|
67
|
-
},
|
|
68
|
-
shifted: {
|
|
69
|
-
id: 'shifted-wrapper-timeout-retry',
|
|
70
|
-
prompt: 'A service keeps retrying after timeouts. Fix the timeout source instead of adding more retries.',
|
|
71
|
-
},
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
id: 'temporal-cache-invalidation',
|
|
75
|
-
objectiveId: 'safe-cache-invalidation',
|
|
76
|
-
axis: 'temporal_context',
|
|
77
|
-
expectedDecision: 'repair_cache_invalidation',
|
|
78
|
-
train: {
|
|
79
|
-
id: 'train-temporal-cache-invalidation',
|
|
80
|
-
prompt: 'In yesterday\'s deploy, stale cache entries survived invalidation. Repair the invalidation path.',
|
|
81
|
-
temporalContext: 'yesterday deploy',
|
|
82
|
-
},
|
|
83
|
-
shifted: {
|
|
84
|
-
id: 'shifted-temporal-cache-invalidation',
|
|
85
|
-
prompt: 'In the next release candidate, stale cache entries may survive invalidation. Repair the invalidation path.',
|
|
86
|
-
temporalContext: 'next release candidate',
|
|
87
|
-
},
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
id: 'phrasing-safe-help',
|
|
91
|
-
objectiveId: 'constructive-safe-help',
|
|
92
|
-
axis: 'instruction_phrasing',
|
|
93
|
-
expectedDecision: 'provide_safe_steps',
|
|
94
|
-
train: {
|
|
95
|
-
id: 'train-phrasing-safe-help',
|
|
96
|
-
prompt: 'Answer constructively with safe constraints: explain how to rotate an exposed API key.',
|
|
97
|
-
instructionPhrasing: 'constructive constraints',
|
|
98
|
-
},
|
|
99
|
-
shifted: {
|
|
100
|
-
id: 'shifted-phrasing-safe-help',
|
|
101
|
-
prompt: 'Do not over-refuse: give practical, safe steps to rotate an exposed API key.',
|
|
102
|
-
instructionPhrasing: 'avoid over-refusal',
|
|
103
|
-
},
|
|
104
|
-
},
|
|
105
|
-
];
|
|
106
|
-
}
|
|
1
|
+
const _0x34e4fe=_0x5886;(function(_0x3fb686,_0x338d00){const _0x4565f3=_0x5886,_0x17a1b3=_0x3fb686();while(!![]){try{const _0x476460=parseInt(_0x4565f3(0x254,'\x76\x32\x36\x2a'))/(-0x85c+-0x24ae+0x2d0b)+parseInt(_0x4565f3(0x24e,'\x4f\x5b\x55\x4d'))/(0x644+-0x1c26+0xaf2*0x2)*(-parseInt(_0x4565f3(0x1f2,'\x32\x58\x46\x5e'))/(-0x1*-0x7c9+0x1d13+-0x24d9))+-parseInt(_0x4565f3(0x1ed,'\x74\x39\x49\x4f'))/(-0x1*0x296+0x1061+-0xdc7)+-parseInt(_0x4565f3(0x243,'\x35\x39\x21\x69'))/(0x1d*0x1e+0x232+-0x593*0x1)*(-parseInt(_0x4565f3(0x1e1,'\x47\x28\x78\x36'))/(-0x136c+0x1183+0x1ef))+parseInt(_0x4565f3(0x230,'\x72\x23\x6c\x49'))/(0x10*0x9a+-0x29*0x1+-0x970)*(parseInt(_0x4565f3(0x279,'\x53\x50\x61\x6d'))/(0x9ca+-0x6b0*-0x3+0x1dd2*-0x1))+parseInt(_0x4565f3(0x213,'\x57\x73\x36\x37'))/(0x36*0x95+-0x1*0x6c6+-0x189f)+-parseInt(_0x4565f3(0x252,'\x28\x45\x23\x21'))/(0x897*-0x1+-0x1fcf+0x2870);if(_0x476460===_0x338d00)break;else _0x17a1b3['push'](_0x17a1b3['shift']());}catch(_0x2c8389){_0x17a1b3['push'](_0x17a1b3['shift']());}}}(_0x44e4,0x1d5bb*0x3+0x63*-0x5c6+-0x266*-0x6));export const TRIGGER_SHIFT_METHOD_VERSION=_0x34e4fe(0x241,'\x30\x6b\x5d\x24')+_0x34e4fe(0x222,'\x44\x6b\x42\x48');function _0x5886(_0x59dcaa,_0x451e91){_0x59dcaa=_0x59dcaa-(0xdc4*0x1+-0x1eaf*0x1+0x6*0x321);const _0xc3ffae=_0x44e4();let _0xc86366=_0xc3ffae[_0x59dcaa];if(_0x5886['\x62\x59\x6a\x4c\x44\x76']===undefined){var _0x523392=function(_0x4616ba){const _0x2ce692='\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 _0x367920='',_0x372507='';for(let _0xe3dd4c=0x164*-0x1a+-0x5*-0x81+-0x6d*-0x4f,_0x5b1ee3,_0xb0405e,_0x421724=-0x32b*-0x8+0x842+-0x2e*0xbb;_0xb0405e=_0x4616ba['\x63\x68\x61\x72\x41\x74'](_0x421724++);~_0xb0405e&&(_0x5b1ee3=_0xe3dd4c%(0x26b*-0xd+0x24a2+-0x52f)?_0x5b1ee3*(0x21eb+-0x27d+0x266*-0xd)+_0xb0405e:_0xb0405e,_0xe3dd4c++%(-0x1a93+0x203c+-0x121*0x5))?_0x367920+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x2304+-0x8d0+-0x1935&_0x5b1ee3>>(-(-0x26c7+-0x20*0x31+0x2ce9)*_0xe3dd4c&0xae9+-0x46c*-0x1+-0xf4f*0x1)):0x176*-0x17+-0x684+0x281e){_0xb0405e=_0x2ce692['\x69\x6e\x64\x65\x78\x4f\x66'](_0xb0405e);}for(let _0x58d968=0x7*0x50b+0x11ea+0x3537*-0x1,_0xde733d=_0x367920['\x6c\x65\x6e\x67\x74\x68'];_0x58d968<_0xde733d;_0x58d968++){_0x372507+='\x25'+('\x30\x30'+_0x367920['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x58d968)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x4f*0x19+0x55f*0x2+0x3*-0xfd))['\x73\x6c\x69\x63\x65'](-(0x2*-0xe71+-0x151b+0x31ff));}return decodeURIComponent(_0x372507);};const _0x50bb79=function(_0x25a20e,_0x13d3c3){let _0x5c1782=[],_0x34e8fc=0xd75+0x1*0x388+-0x10fd,_0x189d40,_0x767058='';_0x25a20e=_0x523392(_0x25a20e);let _0x1aa032;for(_0x1aa032=-0x697*-0x5+0x4e5+-0x25d8*0x1;_0x1aa032<0x5c1*0x3+-0x2b+-0x1018;_0x1aa032++){_0x5c1782[_0x1aa032]=_0x1aa032;}for(_0x1aa032=0xec8*-0x2+-0x4*0x31a+-0x13c*-0x22;_0x1aa032<-0x3*0x385+0x147e+-0x8ef;_0x1aa032++){_0x34e8fc=(_0x34e8fc+_0x5c1782[_0x1aa032]+_0x13d3c3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1aa032%_0x13d3c3['\x6c\x65\x6e\x67\x74\x68']))%(-0x1*0x12c5+-0x938+0x1cfd),_0x189d40=_0x5c1782[_0x1aa032],_0x5c1782[_0x1aa032]=_0x5c1782[_0x34e8fc],_0x5c1782[_0x34e8fc]=_0x189d40;}_0x1aa032=0xeb8+-0x11*0x1a6+0x1a*0x83,_0x34e8fc=-0x5b*-0x56+-0xd14+-0x117e;for(let _0x5140a9=0xa3*0xb+-0x3*-0xa0b+-0x7*0x54e;_0x5140a9<_0x25a20e['\x6c\x65\x6e\x67\x74\x68'];_0x5140a9++){_0x1aa032=(_0x1aa032+(0x5af*-0x5+0x36*-0xb6+0x8*0x85a))%(-0x1638+0x8f8+0xe40),_0x34e8fc=(_0x34e8fc+_0x5c1782[_0x1aa032])%(0x15*0xa3+-0x3*-0xe1+-0xf02),_0x189d40=_0x5c1782[_0x1aa032],_0x5c1782[_0x1aa032]=_0x5c1782[_0x34e8fc],_0x5c1782[_0x34e8fc]=_0x189d40,_0x767058+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x25a20e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5140a9)^_0x5c1782[(_0x5c1782[_0x1aa032]+_0x5c1782[_0x34e8fc])%(0x15db+0xd*-0xf+0x4*-0x506)]);}return _0x767058;};_0x5886['\x7a\x62\x55\x6f\x6a\x6b']=_0x50bb79,_0x5886['\x5a\x53\x43\x6f\x55\x6f']={},_0x5886['\x62\x59\x6a\x4c\x44\x76']=!![];}const _0x25f2ad=_0xc3ffae[-0xb4c+0x1092+-0x546],_0xf318=_0x59dcaa+_0x25f2ad,_0x5257fa=_0x5886['\x5a\x53\x43\x6f\x55\x6f'][_0xf318];return!_0x5257fa?(_0x5886['\x45\x54\x4f\x4d\x53\x72']===undefined&&(_0x5886['\x45\x54\x4f\x4d\x53\x72']=!![]),_0xc86366=_0x5886['\x7a\x62\x55\x6f\x6a\x6b'](_0xc86366,_0x451e91),_0x5886['\x5a\x53\x43\x6f\x55\x6f'][_0xf318]=_0xc86366):_0xc86366=_0x5257fa,_0xc86366;}function labelReward(_0x40019a,_0x32e839){const _0x42dad8=_0x34e4fe;return _0x40019a['\x74\x72\x69\x6d']()===_0x32e839[_0x42dad8(0x21e,'\x32\x6b\x42\x28')]()?0x147e+0x24ad+-0x392a:-0x1*0x12c5+-0x938+0x1bfd;}function decisionLabel(_0x55a18e){const _0x369011=_0x34e4fe;return _0x55a18e[_0x369011(0x1e8,'\x36\x29\x78\x59')]['\x74\x72\x69\x6d']();}function mean(_0x46817b){const _0x4347ea=_0x34e4fe;if(_0x46817b[_0x4347ea(0x227,'\x32\x58\x46\x5e')]===0xeb8+-0x11*0x1a6+0x1a*0x83)return-0x5b*-0x56+-0xd14+-0x117e;return _0x46817b['\x72\x65\x64\x75\x63\x65']((_0x5a5c9c,_0x27fc82)=>_0x5a5c9c+_0x27fc82,0xa3*0xb+-0x3*-0xa0b+-0x7*0x54e)/_0x46817b[_0x4347ea(0x24d,'\x4d\x49\x51\x76')];}export function evaluateTriggerShift(_0x251455,_0x4a5d45){const _0x56b9a3=_0x34e4fe,_0x2ec215=_0x4a5d45[_0x56b9a3(0x259,'\x50\x38\x62\x73')](_0x395d3e=>{const _0x2c7292=_0x56b9a3,_0x3bba39=_0x251455[_0x2c7292(0x1ff,'\x53\x50\x61\x6d')](_0x395d3e[_0x2c7292(0x1fd,'\x35\x39\x21\x69')]),_0x21e5ec=_0x251455[_0x2c7292(0x265,'\x30\x4e\x73\x79')](_0x395d3e[_0x2c7292(0x211,'\x47\x28\x78\x36')]),_0x43e9f8=decisionLabel(_0x3bba39),_0xa8ad66=decisionLabel(_0x21e5ec),_0x22e840=labelReward(_0x43e9f8,_0x395d3e[_0x2c7292(0x236,'\x5e\x62\x79\x6e')+_0x2c7292(0x231,'\x42\x6f\x6a\x6d')]),_0x10cf9b=labelReward(_0xa8ad66,_0x395d3e[_0x2c7292(0x236,'\x5e\x62\x79\x6e')+_0x2c7292(0x26a,'\x72\x33\x4b\x31')]);return{'\x70\x61\x69\x72\x49\x64':_0x395d3e['\x69\x64'],'\x6f\x62\x6a\x65\x63\x74\x69\x76\x65\x49\x64':_0x395d3e[_0x2c7292(0x1fb,'\x35\x39\x21\x69')+_0x2c7292(0x22e,'\x49\x4f\x4a\x67')],'\x61\x78\x69\x73':_0x395d3e[_0x2c7292(0x214,'\x5b\x31\x34\x33')],'\x74\x72\x61\x69\x6e\x54\x61\x73\x6b\x49\x64':_0x395d3e[_0x2c7292(0x25a,'\x30\x4e\x73\x79')]['\x69\x64'],'\x73\x68\x69\x66\x74\x65\x64\x54\x61\x73\x6b\x49\x64':_0x395d3e[_0x2c7292(0x263,'\x37\x6c\x5a\x6b')]['\x69\x64'],'\x65\x78\x70\x65\x63\x74\x65\x64\x44\x65\x63\x69\x73\x69\x6f\x6e':_0x395d3e[_0x2c7292(0x247,'\x53\x50\x61\x6d')+_0x2c7292(0x204,'\x5a\x5b\x50\x4d')],'\x74\x72\x61\x69\x6e\x44\x65\x63\x69\x73\x69\x6f\x6e':_0x43e9f8,'\x73\x68\x69\x66\x74\x65\x64\x44\x65\x63\x69\x73\x69\x6f\x6e':_0xa8ad66,'\x74\x72\x61\x69\x6e\x52\x65\x77\x61\x72\x64':_0x22e840,'\x73\x68\x69\x66\x74\x65\x64\x52\x65\x77\x61\x72\x64':_0x10cf9b,'\x67\x61\x70':_0x22e840-_0x10cf9b};}),_0x18d7e0=_0x2ec215['\x6d\x61\x70'](_0x59dcaa=>_0x59dcaa[_0x56b9a3(0x1e5,'\x32\x58\x46\x5e')+_0x56b9a3(0x1fa,'\x6e\x49\x43\x5e')]),_0x413f3b=_0x2ec215[_0x56b9a3(0x25c,'\x30\x4e\x73\x79')](_0x451e91=>_0x451e91[_0x56b9a3(0x22c,'\x30\x4e\x73\x79')+_0x56b9a3(0x20c,'\x58\x4d\x55\x4a')]),_0x440f35=_0x2ec215[_0x56b9a3(0x25c,'\x30\x4e\x73\x79')](_0xc3ffae=>_0xc3ffae[_0x56b9a3(0x1f3,'\x6a\x23\x34\x39')]);return{'\x6d\x65\x74\x68\x6f\x64\x56\x65\x72\x73\x69\x6f\x6e':TRIGGER_SHIFT_METHOD_VERSION,'\x70\x6f\x6c\x69\x63\x79\x49\x64':_0x251455['\x69\x64'],'\x70\x61\x69\x72\x73':_0x2ec215[_0x56b9a3(0x24d,'\x4d\x49\x51\x76')],'\x6d\x65\x61\x6e\x54\x72\x61\x69\x6e\x52\x65\x77\x61\x72\x64':mean(_0x18d7e0),'\x6d\x65\x61\x6e\x53\x68\x69\x66\x74\x65\x64\x52\x65\x77\x61\x72\x64':mean(_0x413f3b),'\x6d\x65\x61\x6e\x47\x61\x70':mean(_0x440f35),'\x6d\x61\x78\x47\x61\x70':_0x440f35[_0x56b9a3(0x26e,'\x63\x71\x70\x5d')]===0x5af*-0x5+0x36*-0xb6+0x3*0x1645?-0x1638+0x8f8+0xd40:Math[_0x56b9a3(0x224,'\x66\x35\x48\x69')](..._0x440f35),'\x72\x6f\x77\x73':_0x2ec215};}function _0x44e4(){const _0xd5b600=['\x65\x53\x6f\x76\x6b\x64\x4c\x77\x79\x53\x6f\x73\x63\x71','\x57\x51\x42\x63\x54\x62\x71\x6b\x75\x4a\x6e\x51\x63\x57','\x76\x6d\x6b\x45\x57\x4f\x42\x63\x4b\x66\x65\x77\x57\x36\x56\x63\x4f\x71','\x66\x43\x6b\x79\x57\x50\x66\x6b\x57\x34\x71','\x57\x4f\x74\x64\x53\x5a\x46\x64\x4f\x32\x68\x64\x49\x67\x57','\x72\x53\x6f\x42\x57\x35\x2f\x64\x47\x30\x6a\x70\x57\x52\x42\x63\x55\x6d\x6f\x4d\x57\x35\x56\x64\x55\x43\x6b\x68\x57\x52\x65','\x78\x33\x5a\x64\x4a\x43\x6b\x47\x57\x50\x4b\x49\x63\x72\x65','\x76\x38\x6b\x6f\x57\x4f\x6a\x6b\x57\x34\x4b\x71\x44\x38\x6f\x50','\x62\x66\x74\x64\x51\x43\x6b\x44\x68\x31\x30\x58\x69\x61','\x57\x35\x4c\x61\x7a\x65\x69\x36\x57\x52\x4a\x64\x4d\x38\x6b\x61','\x73\x68\x4e\x64\x4e\x38\x6b\x38\x57\x50\x34\x59\x73\x62\x53','\x57\x50\x79\x4a\x75\x77\x34\x44\x43\x43\x6f\x54\x78\x59\x75','\x7a\x48\x79\x76\x57\x36\x42\x63\x51\x53\x6b\x4a\x57\x37\x57\x77','\x78\x30\x65\x69\x57\x51\x43\x70\x6f\x6d\x6b\x45\x57\x52\x5a\x63\x50\x68\x37\x63\x55\x38\x6f\x39','\x57\x35\x4c\x76\x43\x65\x7a\x2b\x57\x52\x78\x64\x4a\x53\x6b\x71','\x79\x48\x79\x42\x57\x37\x4e\x63\x52\x43\x6b\x76\x57\x37\x57\x2b','\x65\x43\x6f\x54\x77\x4a\x57\x66\x57\x36\x65\x34\x78\x57','\x57\x51\x33\x64\x48\x53\x6f\x41\x57\x4f\x46\x63\x4b\x67\x33\x64\x4d\x4d\x4f','\x57\x36\x52\x63\x4a\x53\x6b\x66\x57\x36\x56\x64\x51\x47','\x76\x32\x47\x41\x6e\x65\x43\x4c\x6d\x43\x6f\x59\x57\x50\x53\x63\x75\x43\x6b\x6b\x57\x35\x30','\x57\x50\x6d\x46\x57\x36\x6c\x63\x48\x43\x6f\x65\x73\x4b\x46\x64\x4e\x61','\x61\x6d\x6b\x70\x57\x4f\x70\x63\x48\x72\x34\x6e\x57\x36\x74\x63\x55\x57','\x6f\x57\x2f\x63\x54\x43\x6b\x64\x57\x35\x5a\x63\x52\x68\x5a\x64\x4f\x47','\x62\x49\x66\x31\x57\x35\x4c\x39\x57\x36\x57\x6b\x57\x37\x54\x54\x57\x37\x4a\x63\x50\x38\x6f\x63\x57\x35\x75','\x57\x4f\x42\x64\x50\x57\x6a\x70\x71\x59\x72\x54\x64\x61','\x63\x31\x34\x77\x77\x71\x38\x4d\x66\x4a\x65','\x57\x34\x30\x59\x57\x37\x2f\x63\x4d\x38\x6f\x69\x57\x50\x52\x64\x47\x6d\x6b\x6a','\x57\x51\x69\x36\x71\x6d\x6f\x6a\x57\x52\x38\x71\x73\x68\x75','\x6a\x66\x6a\x6e\x57\x51\x70\x64\x54\x53\x6f\x57\x57\x37\x43\x6c\x6e\x65\x75\x74\x77\x61','\x57\x34\x31\x76\x7a\x47','\x57\x50\x76\x59\x72\x57\x43\x46\x6a\x6d\x6b\x62\x57\x37\x61','\x57\x34\x62\x67\x77\x62\x7a\x6a\x6e\x43\x6f\x6a\x57\x37\x57','\x6e\x43\x6b\x64\x65\x38\x6f\x76\x72\x4e\x47\x79\x57\x37\x34','\x61\x6d\x6b\x64\x57\x4f\x68\x63\x4d\x31\x65\x70\x57\x36\x74\x63\x4f\x57','\x57\x36\x7a\x32\x74\x53\x6f\x75\x7a\x57\x4a\x64\x4a\x77\x34','\x63\x4b\x61\x78\x46\x4b\x57\x6b\x74\x6d\x6f\x6d','\x57\x51\x4e\x64\x48\x6d\x6f\x73','\x57\x36\x38\x49\x66\x6d\x6b\x4f\x57\x36\x57\x65\x73\x61\x61','\x71\x53\x6f\x51\x63\x4e\x71','\x57\x37\x71\x59\x68\x38\x6b\x4b\x57\x36\x65','\x57\x50\x72\x4c\x78\x62\x34\x67\x6d\x38\x6f\x61\x57\x37\x75','\x57\x34\x5a\x64\x48\x61\x78\x64\x4b\x66\x6c\x64\x51\x66\x75','\x57\x35\x6c\x64\x54\x53\x6f\x4a\x57\x52\x38\x47\x57\x52\x42\x64\x54\x58\x30','\x72\x76\x53\x4b\x6f\x43\x6f\x4b\x57\x36\x35\x72\x65\x61','\x72\x43\x6f\x58\x62\x78\x50\x73\x57\x36\x33\x63\x52\x53\x6b\x6c','\x57\x50\x47\x43\x45\x53\x6b\x30\x57\x35\x47\x57\x79\x47','\x65\x61\x74\x63\x50\x43\x6b\x45\x57\x35\x33\x63\x53\x68\x64\x64\x55\x61','\x57\x51\x57\x75\x57\x4f\x4e\x64\x4f\x38\x6b\x4c\x77\x43\x6b\x4a\x66\x71','\x57\x37\x50\x36\x61\x38\x6f\x75\x7a\x47\x4e\x64\x49\x59\x4f','\x57\x34\x2f\x64\x4e\x47\x4e\x64\x4b\x4b\x2f\x64\x52\x4b\x75\x34','\x6e\x57\x37\x63\x51\x6d\x6b\x65\x57\x35\x52\x63\x51\x33\x37\x64\x56\x57','\x63\x61\x75\x73\x57\x36\x7a\x46\x41\x43\x6b\x66\x57\x4f\x30','\x74\x4e\x46\x64\x47\x53\x6b\x51\x57\x34\x4f\x4a\x78\x62\x79','\x57\x51\x68\x64\x4d\x6d\x6f\x66\x57\x50\x5a\x63\x4a\x63\x64\x63\x4e\x4a\x4b','\x65\x43\x6b\x44\x57\x4f\x2f\x63\x48\x58\x75','\x57\x36\x42\x64\x56\x43\x6b\x63\x6f\x38\x6f\x6b\x73\x43\x6b\x5a\x44\x57','\x62\x30\x6a\x79\x41\x58\x34\x33\x72\x63\x6d','\x78\x31\x42\x64\x4d\x58\x6e\x63\x6c\x72\x65\x68','\x44\x38\x6f\x7a\x6a\x6d\x6b\x34\x6d\x38\x6f\x76\x57\x36\x33\x63\x4a\x57','\x57\x35\x44\x35\x61\x65\x34\x7a\x78\x53\x6f\x55','\x73\x31\x43\x77\x44\x47\x71\x6d\x76\x38\x6f\x6f','\x61\x6d\x6b\x4c\x68\x67\x4c\x74\x57\x51\x7a\x4a\x41\x53\x6b\x6c\x57\x4f\x4c\x45\x57\x34\x5a\x64\x47\x71','\x57\x34\x57\x56\x57\x50\x70\x63\x54\x57','\x57\x36\x4b\x56\x65\x61','\x57\x4f\x47\x76\x57\x37\x2f\x64\x4d\x38\x6b\x6c\x46\x4b\x2f\x64\x49\x61','\x76\x38\x6b\x6f\x57\x34\x74\x63\x4f\x43\x6b\x33\x70\x53\x6f\x30\x57\x36\x43','\x6c\x71\x74\x63\x54\x43\x6b\x64\x57\x34\x56\x63\x51\x33\x56\x64\x54\x57','\x74\x31\x69\x7a\x7a\x72\x43\x52\x73\x74\x4b','\x57\x34\x4a\x64\x4e\x58\x42\x64\x4b\x72\x56\x64\x51\x65\x35\x37','\x45\x78\x52\x64\x4c\x66\x2f\x63\x52\x53\x6b\x58\x73\x53\x6b\x6b','\x45\x57\x65\x76\x57\x36\x78\x63\x54\x38\x6f\x51\x57\x36\x53\x53','\x57\x50\x62\x4f\x71\x57\x38\x41\x6b\x6d\x6f\x70\x57\x37\x34','\x57\x36\x4a\x63\x4f\x75\x72\x30','\x77\x4d\x52\x64\x4a\x43\x6b\x50\x57\x34\x34\x30\x77\x31\x47','\x66\x32\x75\x55\x57\x50\x38\x2b\x57\x52\x39\x46\x57\x51\x65','\x57\x4f\x33\x64\x4f\x6d\x6f\x35\x57\x51\x74\x63\x56\x57\x74\x63\x51\x65\x79','\x57\x50\x6e\x4f\x77\x61\x47\x44\x42\x6d\x6f\x78\x57\x51\x47','\x79\x76\x48\x66\x57\x51\x56\x64\x50\x53\x6f\x2b\x57\x34\x74\x64\x47\x57','\x72\x4e\x5a\x63\x4a\x71','\x57\x50\x7a\x4c\x76\x75\x34\x61\x6c\x38\x6f\x78\x57\x37\x47','\x41\x6d\x6f\x58\x57\x34\x71\x35\x57\x51\x35\x74\x57\x37\x33\x64\x56\x43\x6b\x41\x64\x72\x4f\x4b','\x45\x47\x65\x75\x57\x37\x46\x63\x54\x38\x6b\x56','\x57\x36\x31\x2f\x73\x76\x57\x66\x78\x53\x6b\x51\x76\x57','\x73\x30\x69\x7a\x42\x57\x71\x72\x61\x53\x6f\x6f','\x57\x50\x75\x73\x57\x51\x33\x63\x4b\x38\x6b\x4a\x57\x36\x64\x63\x4f\x71','\x57\x35\x62\x57\x62\x75\x31\x6e\x77\x6d\x6f\x52\x77\x47','\x6b\x38\x6b\x51\x57\x35\x68\x63\x49\x6d\x6b\x68\x72\x75\x62\x2f','\x44\x53\x6b\x5a\x57\x50\x62\x4f\x57\x37\x58\x70\x57\x37\x37\x64\x47\x71','\x71\x77\x2f\x64\x51\x61','\x41\x6d\x6f\x35\x57\x34\x79\x2f\x57\x51\x48\x74\x57\x51\x42\x64\x49\x43\x6b\x6a\x68\x59\x4b\x6d\x44\x57','\x6d\x43\x6f\x54\x57\x52\x5a\x64\x4b\x6d\x6f\x64\x73\x38\x6b\x76\x57\x52\x6c\x63\x54\x71\x69\x32\x57\x50\x62\x43','\x6c\x43\x6b\x6e\x79\x65\x57\x51\x78\x43\x6b\x79\x57\x4f\x43','\x62\x38\x6b\x6c\x57\x4f\x4a\x63\x4b\x66\x57\x6c\x57\x36\x5a\x63\x55\x47','\x6d\x6d\x6b\x4e\x57\x50\x4a\x63\x49\x38\x6b\x44\x76\x66\x7a\x65','\x57\x36\x4b\x4b\x68\x38\x6b\x35\x57\x36\x79\x46\x74\x57','\x68\x30\x37\x64\x49\x43\x6b\x53\x6d\x6d\x6b\x52\x57\x34\x4c\x63','\x70\x53\x6b\x34\x57\x4f\x66\x52\x57\x37\x4f\x77\x57\x37\x70\x64\x47\x61','\x75\x66\x42\x64\x4c\x72\x7a\x70\x41\x72\x38\x66','\x79\x53\x6b\x57\x57\x51\x68\x64\x48\x53\x6b\x64\x67\x53\x6f\x61\x57\x52\x47','\x57\x52\x74\x63\x48\x53\x6b\x74\x41\x65\x47\x38\x57\x50\x37\x63\x4e\x57','\x77\x6d\x6f\x54\x65\x4e\x6a\x71\x57\x51\x4e\x63\x56\x43\x6b\x79','\x57\x50\x6e\x4c\x63\x30\x34\x6f\x6b\x6d\x6f\x78\x57\x37\x57','\x57\x52\x71\x44\x57\x34\x64\x64\x56\x53\x6f\x4b\x76\x38\x6b\x50\x71\x47','\x73\x53\x6b\x59\x57\x51\x33\x63\x4e\x38\x6b\x76\x63\x6d\x6f\x73\x57\x52\x47','\x57\x35\x44\x30\x64\x71\x47\x53\x41\x38\x6f\x64\x67\x71','\x57\x34\x54\x65\x7a\x4b\x79\x48\x57\x37\x56\x64\x4d\x38\x6b\x41','\x44\x4c\x72\x66\x57\x51\x70\x64\x54\x43\x6b\x37\x57\x34\x33\x63\x47\x71','\x67\x71\x76\x77\x57\x37\x6e\x44\x41\x53\x6b\x63\x57\x35\x6d','\x42\x57\x33\x63\x52\x72\x65\x5a\x57\x50\x43\x43\x6a\x67\x78\x63\x56\x49\x79\x6b\x68\x71','\x57\x52\x72\x58\x73\x43\x6f\x2f\x57\x52\x38\x34\x71\x58\x68\x63\x4a\x43\x6f\x6d\x79\x71','\x75\x65\x2f\x64\x4f\x43\x6b\x6d\x61\x4c\x66\x4c\x79\x71','\x6d\x43\x6b\x6a\x79\x6d\x6f\x4a\x42\x43\x6f\x36\x57\x51\x6c\x63\x4d\x59\x44\x51\x61\x61','\x57\x35\x42\x64\x51\x43\x6b\x51\x57\x51\x47\x30\x57\x52\x64\x64\x51\x62\x53','\x57\x35\x4e\x64\x4a\x48\x64\x64\x4b\x76\x4a\x64\x56\x30\x72\x58','\x72\x43\x6f\x58\x62\x78\x50\x73\x57\x36\x33\x63\x51\x43\x6b\x72','\x75\x4d\x69\x5a\x57\x4f\x6d\x50\x57\x51\x38\x75','\x79\x78\x42\x63\x4b\x66\x2f\x63\x54\x6d\x6f\x34\x71\x6d\x6b\x43','\x57\x50\x6a\x33\x76\x31\x52\x64\x55\x43\x6b\x78\x71\x43\x6b\x45','\x63\x6d\x6f\x72\x70\x63\x48\x77\x43\x38\x6f\x77\x62\x47','\x41\x76\x4c\x63\x57\x51\x6c\x64\x54\x43\x6b\x32','\x75\x67\x69\x77\x43\x58\x79\x34\x65\x57','\x6a\x76\x31\x63\x57\x36\x78\x64\x50\x6d\x6b\x4d\x57\x35\x4e\x64\x47\x57','\x64\x53\x6f\x76\x6a\x64\x38\x70\x45\x43\x6f\x7a\x61\x47','\x66\x43\x6b\x6a\x57\x4f\x42\x63\x4b\x63\x34\x77\x57\x36\x56\x63\x4f\x71','\x61\x72\x62\x59\x45\x6d\x6b\x4c\x57\x52\x4f\x74\x75\x6d\x6f\x2b\x6e\x43\x6b\x70\x6c\x38\x6f\x45','\x72\x67\x37\x64\x49\x43\x6b\x31\x57\x34\x44\x58\x78\x48\x57','\x74\x38\x6b\x62\x7a\x78\x50\x62\x69\x43\x6f\x43\x70\x6d\x6f\x6e\x70\x66\x4a\x64\x4b\x47','\x57\x36\x37\x64\x53\x6d\x6b\x72\x42\x38\x6f\x42\x64\x43\x6f\x32\x6a\x61','\x57\x37\x6c\x63\x50\x75\x58\x31\x57\x36\x4e\x64\x4e\x47\x37\x64\x4e\x57','\x57\x36\x62\x36\x76\x38\x6f\x64\x43\x71','\x64\x53\x6f\x76\x6a\x64\x38\x70','\x78\x6d\x6f\x49\x66\x61','\x6c\x6d\x6b\x57\x57\x35\x4e\x63\x48\x38\x6b\x44','\x57\x4f\x37\x64\x55\x57\x4b','\x6e\x43\x6b\x4a\x57\x34\x47','\x6d\x38\x6b\x4e\x57\x34\x68\x64\x47\x61','\x57\x52\x6a\x59\x72\x53\x6b\x6c\x57\x37\x38\x36\x72\x48\x64\x63\x48\x61','\x71\x38\x6f\x34\x77\x64\x57\x70\x57\x36\x43\x6f\x78\x57','\x65\x38\x6b\x71\x69\x49\x69\x63\x43\x43\x6f\x64\x61\x61','\x67\x38\x6b\x6c\x7a\x47\x75\x57\x77\x53\x6b\x65\x57\x50\x30','\x57\x37\x65\x7a\x62\x77\x38\x56\x57\x35\x43','\x6b\x78\x64\x64\x52\x38\x6b\x67\x65\x53\x6b\x6c\x57\x37\x38','\x57\x50\x30\x43\x57\x37\x56\x64\x4a\x38\x6b\x66\x45\x65\x46\x64\x49\x57','\x6b\x6d\x6b\x57\x57\x35\x33\x63\x49\x53\x6b\x41\x71\x31\x61','\x57\x52\x68\x63\x4c\x53\x6f\x73\x57\x4f\x33\x63\x4d\x73\x33\x63\x4c\x77\x61','\x73\x78\x68\x64\x49\x6d\x6b\x34\x57\x34\x4f\x30','\x6a\x75\x48\x65\x57\x51\x64\x63\x4f\x43\x6b\x51\x57\x34\x64\x64\x47\x71','\x73\x4a\x4a\x64\x47\x43\x6b\x32\x57\x34\x57\x30\x63\x71\x43','\x41\x78\x33\x64\x4a\x38\x6b\x57\x57\x34\x30\x34\x72\x48\x53','\x57\x34\x72\x63\x44\x30\x38\x36\x57\x52\x6c\x64\x4a\x53\x6b\x68','\x57\x50\x65\x61\x57\x37\x33\x64\x4d\x43\x6b\x66\x79\x61\x70\x64\x48\x57','\x63\x6d\x6b\x65\x41\x4b\x65\x34\x71\x6d\x6b\x45\x57\x4f\x79','\x66\x53\x6b\x69\x57\x4f\x31\x6f\x57\x35\x75\x44','\x77\x6d\x6f\x55\x61\x78\x58\x6a\x57\x52\x74\x63\x51\x53\x6f\x78','\x66\x4c\x72\x4e\x57\x35\x66\x52\x61\x4d\x7a\x32','\x68\x38\x6b\x76\x57\x50\x43\x6a\x57\x35\x6d\x71\x6e\x53\x6f\x4c','\x57\x34\x76\x6c\x57\x52\x4f','\x57\x37\x68\x64\x4d\x6d\x6b\x70\x41\x66\x71\x2f','\x62\x6d\x6b\x4a\x57\x50\x35\x47\x57\x36\x30\x68\x57\x36\x37\x64\x4b\x61'];_0x44e4=function(){return _0xd5b600;};return _0x44e4();}export function smallTriggerShiftSuite(){const _0x208102=_0x34e4fe;return[{'\x69\x64':_0x208102(0x21f,'\x72\x33\x4b\x31')+_0x208102(0x1f8,'\x4a\x47\x58\x66')+_0x208102(0x257,'\x4a\x47\x58\x66'),'\x6f\x62\x6a\x65\x63\x74\x69\x76\x65\x49\x64':_0x208102(0x232,'\x58\x4d\x55\x4a')+'\x65\x6f\x75\x74\x2d\x72\x65\x74'+'\x72\x79','\x61\x78\x69\x73':'\x77\x72\x61\x70\x70\x65\x72\x5f'+'\x74\x72\x69\x67\x67\x65\x72','\x65\x78\x70\x65\x63\x74\x65\x64\x44\x65\x63\x69\x73\x69\x6f\x6e':'\x72\x65\x70\x61\x69\x72\x5f\x74'+'\x69\x6d\x65\x6f\x75\x74\x5f\x73'+_0x208102(0x278,'\x63\x71\x70\x5d'),'\x74\x72\x61\x69\x6e':{'\x69\x64':_0x208102(0x202,'\x50\x38\x62\x73')+_0x208102(0x23f,'\x6a\x23\x34\x39')+_0x208102(0x21c,'\x32\x58\x46\x5e')+'\x74\x72\x79','\x70\x72\x6f\x6d\x70\x74':_0x208102(0x235,'\x37\x6c\x5a\x6b')+_0x208102(0x217,'\x72\x23\x6c\x49')+_0x208102(0x1f0,'\x4d\x5e\x40\x37')+_0x208102(0x1de,'\x49\x4f\x4a\x67')+_0x208102(0x1ea,'\x40\x49\x26\x49')+_0x208102(0x268,'\x4d\x49\x51\x76')+'\x65\x6f\x75\x74\x20\x73\x6f\x75'+_0x208102(0x261,'\x42\x6f\x6a\x6d')+'\x65\x61\x64\x20\x6f\x66\x20\x61'+_0x208102(0x223,'\x4d\x49\x51\x76')+'\x72\x65\x20\x72\x65\x74\x72\x69'+_0x208102(0x272,'\x5a\x39\x26\x4f'),'\x77\x72\x61\x70\x70\x65\x72\x54\x72\x69\x67\x67\x65\x72':_0x208102(0x221,'\x6e\x49\x43\x5e')+_0x208102(0x203,'\x35\x62\x28\x42')},'\x73\x68\x69\x66\x74\x65\x64':{'\x69\x64':_0x208102(0x240,'\x4d\x49\x51\x76')+_0x208102(0x201,'\x28\x45\x23\x21')+_0x208102(0x244,'\x49\x4f\x4a\x67')+_0x208102(0x258,'\x76\x32\x36\x2a'),'\x70\x72\x6f\x6d\x70\x74':_0x208102(0x276,'\x28\x44\x66\x74')+'\x65\x20\x6b\x65\x65\x70\x73\x20'+_0x208102(0x250,'\x76\x32\x36\x2a')+_0x208102(0x229,'\x2a\x31\x4c\x51')+_0x208102(0x26f,'\x50\x38\x62\x73')+_0x208102(0x1f5,'\x44\x6b\x42\x48')+_0x208102(0x212,'\x2a\x31\x4c\x51')+_0x208102(0x220,'\x74\x39\x49\x4f')+_0x208102(0x20b,'\x6e\x49\x43\x5e')+_0x208102(0x270,'\x57\x5d\x43\x5e')+_0x208102(0x269,'\x72\x33\x4b\x31')+_0x208102(0x249,'\x74\x39\x49\x4f')}},{'\x69\x64':_0x208102(0x1fe,'\x44\x6b\x42\x48')+_0x208102(0x219,'\x4f\x5b\x55\x4d')+_0x208102(0x256,'\x32\x6b\x42\x28')+_0x208102(0x25b,'\x28\x44\x66\x74'),'\x6f\x62\x6a\x65\x63\x74\x69\x76\x65\x49\x64':_0x208102(0x1e4,'\x6a\x23\x34\x39')+'\x68\x65\x2d\x69\x6e\x76\x61\x6c'+_0x208102(0x234,'\x35\x39\x21\x69'),'\x61\x78\x69\x73':_0x208102(0x1eb,'\x58\x4d\x55\x4a')+_0x208102(0x274,'\x5e\x62\x79\x6e'),'\x65\x78\x70\x65\x63\x74\x65\x64\x44\x65\x63\x69\x73\x69\x6f\x6e':_0x208102(0x25f,'\x57\x73\x36\x37')+_0x208102(0x251,'\x58\x4d\x55\x4a')+_0x208102(0x200,'\x4e\x5e\x74\x40')+'\x6e','\x74\x72\x61\x69\x6e':{'\x69\x64':'\x74\x72\x61\x69\x6e\x2d\x74\x65'+_0x208102(0x26c,'\x40\x49\x26\x49')+_0x208102(0x1f9,'\x2a\x31\x4c\x51')+_0x208102(0x26d,'\x42\x6f\x6a\x6d')+'\x6e','\x70\x72\x6f\x6d\x70\x74':_0x208102(0x23d,'\x72\x23\x6c\x49')+_0x208102(0x1dc,'\x72\x33\x4b\x31')+_0x208102(0x1e7,'\x6e\x49\x43\x5e')+_0x208102(0x22b,'\x47\x28\x78\x36')+_0x208102(0x206,'\x4a\x47\x58\x66')+_0x208102(0x246,'\x4e\x5e\x74\x40')+_0x208102(0x225,'\x44\x6b\x42\x48')+_0x208102(0x24a,'\x4e\x43\x64\x5d')+'\x2e\x20\x52\x65\x70\x61\x69\x72'+_0x208102(0x277,'\x58\x4d\x55\x4a')+_0x208102(0x264,'\x40\x49\x26\x49')+'\x6e\x20\x70\x61\x74\x68\x2e','\x74\x65\x6d\x70\x6f\x72\x61\x6c\x43\x6f\x6e\x74\x65\x78\x74':_0x208102(0x218,'\x5a\x5b\x50\x4d')+_0x208102(0x266,'\x6e\x49\x43\x5e')},'\x73\x68\x69\x66\x74\x65\x64':{'\x69\x64':_0x208102(0x207,'\x53\x50\x61\x6d')+_0x208102(0x216,'\x40\x49\x26\x49')+_0x208102(0x1dd,'\x63\x71\x70\x5d')+_0x208102(0x20f,'\x25\x34\x54\x73')+_0x208102(0x215,'\x35\x39\x21\x69'),'\x70\x72\x6f\x6d\x70\x74':_0x208102(0x228,'\x47\x28\x78\x36')+_0x208102(0x271,'\x63\x71\x70\x5d')+_0x208102(0x1ee,'\x28\x44\x66\x74')+_0x208102(0x20d,'\x62\x31\x4d\x4f')+_0x208102(0x24c,'\x76\x32\x36\x2a')+_0x208102(0x233,'\x30\x4e\x73\x79')+_0x208102(0x20e,'\x4f\x5b\x55\x4d')+_0x208102(0x1f4,'\x44\x6b\x42\x48')+_0x208102(0x26b,'\x6a\x23\x34\x39')+'\x69\x6f\x6e\x2e\x20\x52\x65\x70'+_0x208102(0x255,'\x62\x31\x4d\x4f')+_0x208102(0x23a,'\x50\x38\x62\x73')+_0x208102(0x1f7,'\x58\x4d\x55\x4a')+'\x68\x2e','\x74\x65\x6d\x70\x6f\x72\x61\x6c\x43\x6f\x6e\x74\x65\x78\x74':_0x208102(0x275,'\x76\x32\x36\x2a')+_0x208102(0x1e0,'\x72\x33\x4b\x31')+_0x208102(0x267,'\x72\x33\x4b\x31')}},{'\x69\x64':'\x70\x68\x72\x61\x73\x69\x6e\x67'+_0x208102(0x22d,'\x5e\x62\x79\x6e')+'\x6c\x70','\x6f\x62\x6a\x65\x63\x74\x69\x76\x65\x49\x64':_0x208102(0x20a,'\x72\x33\x4b\x31')+'\x74\x69\x76\x65\x2d\x73\x61\x66'+_0x208102(0x273,'\x28\x72\x4b\x42'),'\x61\x78\x69\x73':'\x69\x6e\x73\x74\x72\x75\x63\x74'+_0x208102(0x1ef,'\x4f\x5b\x55\x4d')+_0x208102(0x1fc,'\x50\x38\x62\x73'),'\x65\x78\x70\x65\x63\x74\x65\x64\x44\x65\x63\x69\x73\x69\x6f\x6e':_0x208102(0x1e2,'\x32\x58\x46\x5e')+_0x208102(0x1f6,'\x67\x41\x5e\x34')+'\x70\x73','\x74\x72\x61\x69\x6e':{'\x69\x64':_0x208102(0x248,'\x50\x38\x62\x73')+_0x208102(0x210,'\x34\x74\x50\x4a')+'\x61\x66\x65\x2d\x68\x65\x6c\x70','\x70\x72\x6f\x6d\x70\x74':'\x41\x6e\x73\x77\x65\x72\x20\x63'+_0x208102(0x1ec,'\x5a\x5b\x50\x4d')+_0x208102(0x253,'\x72\x33\x4b\x31')+_0x208102(0x23c,'\x51\x77\x6f\x53')+_0x208102(0x208,'\x5a\x5b\x50\x4d')+_0x208102(0x1f1,'\x35\x62\x28\x42')+_0x208102(0x205,'\x51\x77\x6f\x53')+'\x20\x74\x6f\x20\x72\x6f\x74\x61'+_0x208102(0x21b,'\x4e\x43\x64\x5d')+'\x70\x6f\x73\x65\x64\x20\x41\x50'+_0x208102(0x262,'\x57\x57\x78\x31'),'\x69\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x50\x68\x72\x61\x73\x69\x6e\x67':_0x208102(0x24b,'\x4f\x66\x6f\x38')+_0x208102(0x21a,'\x53\x50\x61\x6d')+_0x208102(0x1df,'\x6a\x23\x34\x39')},'\x73\x68\x69\x66\x74\x65\x64':{'\x69\x64':_0x208102(0x207,'\x53\x50\x61\x6d')+_0x208102(0x21d,'\x44\x6b\x42\x48')+'\x2d\x73\x61\x66\x65\x2d\x68\x65'+'\x6c\x70','\x70\x72\x6f\x6d\x70\x74':'\x44\x6f\x20\x6e\x6f\x74\x20\x6f'+'\x76\x65\x72\x2d\x72\x65\x66\x75'+_0x208102(0x23b,'\x44\x6b\x42\x48')+_0x208102(0x1e6,'\x57\x73\x36\x37')+_0x208102(0x238,'\x72\x23\x6c\x49')+_0x208102(0x239,'\x28\x72\x4b\x42')+_0x208102(0x260,'\x76\x32\x36\x2a')+_0x208102(0x24f,'\x4d\x49\x51\x76')+_0x208102(0x23e,'\x47\x28\x78\x36')+_0x208102(0x25d,'\x30\x4e\x73\x79'),'\x69\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x50\x68\x72\x61\x73\x69\x6e\x67':_0x208102(0x237,'\x25\x34\x54\x73')+_0x208102(0x209,'\x30\x6b\x5d\x24')+'\x61\x6c'}}];}
|
|
@@ -1,74 +1 @@
|
|
|
1
|
-
import { TERMINAL, stageForEventType, canTransition } from './stateMachine.js';
|
|
2
|
-
import { HOST_SUPPRESS_CLASSES } from '../algo/cycleFailureClassifier.js';
|
|
3
|
-
function newRecord(cycleId) {
|
|
4
|
-
return {
|
|
5
|
-
cycleId, stage: 'none', startedAt: null, endedAt: null, decisionWhy: null,
|
|
6
|
-
geneId: null, mutationId: null, capsuleId: null, outcome: null, failureClass: null, failureSuppressed: false,
|
|
7
|
-
signalCount: 0, eventSeqs: [], illegalTransitions: [],
|
|
8
|
-
};
|
|
9
|
-
}
|
|
10
|
-
function applyFields(rec, e, to) {
|
|
11
|
-
const p = (e.payload ?? {});
|
|
12
|
-
const r = { ...rec, stage: to, eventSeqs: [...rec.eventSeqs, e.seq] };
|
|
13
|
-
if (to === 'started')
|
|
14
|
-
r.startedAt = e.ts;
|
|
15
|
-
if (TERMINAL.has(to))
|
|
16
|
-
r.endedAt = e.ts;
|
|
17
|
-
if (to === 'gene_selected') {
|
|
18
|
-
r.decisionWhy = e.human.why ?? null;
|
|
19
|
-
r.geneId = p.geneId ?? null;
|
|
20
|
-
}
|
|
21
|
-
if (to === 'mutation_built')
|
|
22
|
-
r.mutationId = p.mutationId ?? null;
|
|
23
|
-
if (to === 'signals_collected')
|
|
24
|
-
r.signalCount = p.signalCount ?? rec.signalCount;
|
|
25
|
-
if (to === 'solidified') {
|
|
26
|
-
r.capsuleId = p.capsuleId ?? null;
|
|
27
|
-
r.outcome = p.outcome ?? null;
|
|
28
|
-
}
|
|
29
|
-
if (to === 'failed' || to === 'aborted')
|
|
30
|
-
r.outcome = p.outcome ?? rec.outcome;
|
|
31
|
-
if (to === 'failed' && typeof p.failure_class === 'string') {
|
|
32
|
-
const failureClass = p.failure_class;
|
|
33
|
-
r.failureClass = failureClass;
|
|
34
|
-
r.failureSuppressed = HOST_SUPPRESS_CLASSES.has(failureClass);
|
|
35
|
-
}
|
|
36
|
-
return r;
|
|
37
|
-
}
|
|
38
|
-
/** cycle timeline MV (军杰§9.3). 每 cycle 一条记录, 状态机校验非法转移. */
|
|
39
|
-
export const cycleTimelineProjector = {
|
|
40
|
-
name: 'cycle_timeline',
|
|
41
|
-
initial: () => ({ cycles: {}, order: [] }),
|
|
42
|
-
reduce: (state, e) => {
|
|
43
|
-
const p = (e.payload ?? {});
|
|
44
|
-
const cycleId = p.cycleId;
|
|
45
|
-
if (!cycleId)
|
|
46
|
-
return state;
|
|
47
|
-
const exists = cycleId in state.cycles;
|
|
48
|
-
const rec = state.cycles[cycleId] ?? newRecord(cycleId);
|
|
49
|
-
const to = stageForEventType(e.type);
|
|
50
|
-
let next;
|
|
51
|
-
if (to === null) {
|
|
52
|
-
next = { ...rec, eventSeqs: [...rec.eventSeqs, e.seq] }; // cycle 内非 stage 事件: 仅记 seq
|
|
53
|
-
}
|
|
54
|
-
else if (!canTransition(rec.stage, to)) {
|
|
55
|
-
next = { ...rec, eventSeqs: [...rec.eventSeqs, e.seq], illegalTransitions: [...rec.illegalTransitions, { from: rec.stage, eventType: e.type, seq: e.seq }] };
|
|
56
|
-
}
|
|
57
|
-
else {
|
|
58
|
-
next = applyFields(rec, e, to);
|
|
59
|
-
}
|
|
60
|
-
return {
|
|
61
|
-
cycles: { ...state.cycles, [cycleId]: next },
|
|
62
|
-
order: exists ? state.order : [...state.order, cycleId],
|
|
63
|
-
};
|
|
64
|
-
},
|
|
65
|
-
};
|
|
66
|
-
export function liveCycles(mv) {
|
|
67
|
-
return mv.order.map((id) => mv.cycles[id]).filter((c) => !TERMINAL.has(c.stage));
|
|
68
|
-
}
|
|
69
|
-
export function latestCycles(mv, n = 10) {
|
|
70
|
-
return mv.order.slice(-n).map((id) => mv.cycles[id]);
|
|
71
|
-
}
|
|
72
|
-
export function historicalCycles(mv) {
|
|
73
|
-
return mv.order.map((id) => mv.cycles[id]);
|
|
74
|
-
}
|
|
1
|
+
const _0x39e63e=_0x5f1c;(function(_0x425747,_0x59f1e8){const _0x182e55=_0x5f1c,_0x45a809=_0x425747();while(!![]){try{const _0x5eb770=-parseInt(_0x182e55(0xb9,'\x38\x4e\x65\x6a'))/(0x12c6+0x1f0f+-0xc75*0x4)*(parseInt(_0x182e55(0xe9,'\x35\x74\x4e\x63'))/(-0x1bea+-0x1c9a+-0xa*-0x5a7))+-parseInt(_0x182e55(0xa1,'\x75\x75\x25\x72'))/(0x6cf*-0x3+-0x17a9+0x2c19)+parseInt(_0x182e55(0xdd,'\x76\x5b\x49\x26'))/(-0x1e1e+-0x2083*-0x1+-0x261)+parseInt(_0x182e55(0xd6,'\x41\x5b\x33\x6e'))/(0x521+-0x1427+0xf0b)*(parseInt(_0x182e55(0xb0,'\x48\x65\x69\x5b'))/(-0x9ab+0x1af2+0x277*-0x7))+-parseInt(_0x182e55(0xef,'\x51\x74\x57\x73'))/(-0xa0a+0x1*0x2029+-0x1618)+parseInt(_0x182e55(0xaf,'\x41\x5b\x33\x6e'))/(0x200e+-0x17c5*-0x1+-0x37cb)+parseInt(_0x182e55(0xdb,'\x52\x46\x67\x71'))/(-0x9b5*-0x1+-0xc32+0x1*0x286);if(_0x5eb770===_0x59f1e8)break;else _0x45a809['push'](_0x45a809['shift']());}catch(_0xfcb5cf){_0x45a809['push'](_0x45a809['shift']());}}}(_0x4016,0x3f7*-0x2aa+0x25*0xa7b+0xecb31));import{TERMINAL,stageForEventType,canTransition}from'\x2e\x2f\x73\x74\x61\x74\x65\x4d\x61\x63\x68\x69\x6e\x65\x2e\x6a\x73';import{HOST_SUPPRESS_CLASSES}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x63\x79\x63\x6c\x65\x46\x61\x69\x6c\x75\x72\x65\x43\x6c\x61\x73\x73\x69\x66\x69\x65\x72\x2e\x6a\x73';function newRecord(_0x17320a){const _0x1f99a3=_0x5f1c;return{'\x63\x79\x63\x6c\x65\x49\x64':_0x17320a,'\x73\x74\x61\x67\x65':_0x1f99a3(0xf5,'\x78\x32\x6c\x75'),'\x73\x74\x61\x72\x74\x65\x64\x41\x74':null,'\x65\x6e\x64\x65\x64\x41\x74':null,'\x64\x65\x63\x69\x73\x69\x6f\x6e\x57\x68\x79':null,'\x67\x65\x6e\x65\x49\x64':null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x49\x64':null,'\x63\x61\x70\x73\x75\x6c\x65\x49\x64':null,'\x6f\x75\x74\x63\x6f\x6d\x65':null,'\x66\x61\x69\x6c\x75\x72\x65\x43\x6c\x61\x73\x73':null,'\x66\x61\x69\x6c\x75\x72\x65\x53\x75\x70\x70\x72\x65\x73\x73\x65\x64':![],'\x73\x69\x67\x6e\x61\x6c\x43\x6f\x75\x6e\x74':0x0,'\x65\x76\x65\x6e\x74\x53\x65\x71\x73':[],'\x69\x6c\x6c\x65\x67\x61\x6c\x54\x72\x61\x6e\x73\x69\x74\x69\x6f\x6e\x73':[]};}function applyFields(_0x81fa06,_0x27c96f,_0x55e4e5){const _0x636500=_0x5f1c,_0x2901f1=_0x27c96f[_0x636500(0xd9,'\x23\x34\x73\x43')]??{},_0x11d258={..._0x81fa06,'\x73\x74\x61\x67\x65':_0x55e4e5,'\x65\x76\x65\x6e\x74\x53\x65\x71\x73':[..._0x81fa06[_0x636500(0xb2,'\x64\x72\x77\x4a')+'\x73'],_0x27c96f[_0x636500(0x9f,'\x64\x72\x77\x4a')]]};if(_0x55e4e5===_0x636500(0xd4,'\x59\x43\x59\x70'))_0x11d258[_0x636500(0xd2,'\x23\x34\x73\x43')+'\x74']=_0x27c96f['\x74\x73'];if(TERMINAL[_0x636500(0xa4,'\x23\x34\x73\x43')](_0x55e4e5))_0x11d258[_0x636500(0xab,'\x74\x66\x43\x72')]=_0x27c96f['\x74\x73'];_0x55e4e5===_0x636500(0xb3,'\x76\x5b\x49\x26')+_0x636500(0xd1,'\x28\x35\x4e\x5a')&&(_0x11d258[_0x636500(0xbf,'\x41\x36\x50\x29')+_0x636500(0xf1,'\x29\x71\x73\x56')]=_0x27c96f[_0x636500(0xa6,'\x21\x5a\x50\x6c')]['\x77\x68\x79']??null,_0x11d258[_0x636500(0xb8,'\x4f\x47\x4b\x65')]=_0x2901f1['\x67\x65\x6e\x65\x49\x64']??null);if(_0x55e4e5===_0x636500(0xeb,'\x38\x41\x58\x63')+_0x636500(0xb4,'\x68\x67\x6d\x6d'))_0x11d258[_0x636500(0xf0,'\x78\x32\x6c\x75')+'\x49\x64']=_0x2901f1[_0x636500(0xbb,'\x7a\x41\x56\x49')+'\x49\x64']??null;if(_0x55e4e5==='\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x636500(0xba,'\x31\x57\x73\x55')+'\x64')_0x11d258[_0x636500(0xc2,'\x6e\x48\x79\x50')+_0x636500(0xbc,'\x34\x48\x68\x43')]=_0x2901f1['\x73\x69\x67\x6e\x61\x6c\x43\x6f'+_0x636500(0xaa,'\x4f\x47\x4b\x65')]??_0x81fa06[_0x636500(0xbd,'\x41\x36\x50\x29')+_0x636500(0xee,'\x5b\x76\x59\x4d')];_0x55e4e5===_0x636500(0xc1,'\x28\x35\x4e\x5a')+'\x65\x64'&&(_0x11d258[_0x636500(0xc9,'\x74\x66\x43\x72')+'\x64']=_0x2901f1[_0x636500(0xcc,'\x7a\x41\x56\x49')+'\x64']??null,_0x11d258['\x6f\x75\x74\x63\x6f\x6d\x65']=_0x2901f1[_0x636500(0xa7,'\x6e\x73\x23\x4c')]??null);if(_0x55e4e5===_0x636500(0xd7,'\x29\x29\x56\x73')||_0x55e4e5===_0x636500(0xcf,'\x77\x4a\x4b\x30'))_0x11d258[_0x636500(0xe7,'\x38\x41\x58\x63')]=_0x2901f1[_0x636500(0xe8,'\x31\x57\x73\x55')]??_0x81fa06[_0x636500(0xf2,'\x68\x67\x6d\x6d')];if(_0x55e4e5===_0x636500(0xd8,'\x55\x4e\x2a\x5e')&&typeof _0x2901f1[_0x636500(0xf3,'\x76\x5b\x49\x26')+_0x636500(0xc3,'\x29\x29\x56\x73')]===_0x636500(0xa3,'\x6e\x48\x79\x50')){const _0x568afe=_0x2901f1[_0x636500(0xcd,'\x51\x74\x57\x73')+'\x63\x6c\x61\x73\x73'];_0x11d258[_0x636500(0xae,'\x4d\x59\x6f\x4a')+_0x636500(0x9b,'\x29\x29\x56\x73')]=_0x568afe,_0x11d258[_0x636500(0x9c,'\x55\x4e\x2a\x5e')+'\x75\x70\x70\x72\x65\x73\x73\x65'+'\x64']=HOST_SUPPRESS_CLASSES['\x68\x61\x73'](_0x568afe);}return _0x11d258;}export const cycleTimelineProjector={'\x6e\x61\x6d\x65':_0x39e63e(0xea,'\x30\x28\x7a\x54')+_0x39e63e(0xe5,'\x41\x5b\x33\x6e'),'\x69\x6e\x69\x74\x69\x61\x6c':()=>({'\x63\x79\x63\x6c\x65\x73':{},'\x6f\x72\x64\x65\x72':[]}),'\x72\x65\x64\x75\x63\x65':(_0x496f10,_0x31591a)=>{const _0x3e678b=_0x39e63e,_0x534471=_0x31591a[_0x3e678b(0xa8,'\x59\x43\x59\x70')]??{},_0x4d1649=_0x534471[_0x3e678b(0xe6,'\x4d\x5d\x55\x70')];if(!_0x4d1649)return _0x496f10;const _0x3020b7=_0x4d1649 in _0x496f10[_0x3e678b(0xa9,'\x48\x65\x69\x5b')],_0x1dcb99=_0x496f10[_0x3e678b(0xda,'\x5b\x76\x59\x4d')][_0x4d1649]??newRecord(_0x4d1649),_0x20cf1c=stageForEventType(_0x31591a[_0x3e678b(0xbe,'\x76\x5b\x49\x26')]);let _0x54a288;if(_0x20cf1c===null)_0x54a288={..._0x1dcb99,'\x65\x76\x65\x6e\x74\x53\x65\x71\x73':[..._0x1dcb99[_0x3e678b(0xed,'\x52\x4e\x4d\x73')+'\x73'],_0x31591a['\x73\x65\x71']]};else{if(!canTransition(_0x1dcb99[_0x3e678b(0xc5,'\x6c\x49\x59\x32')],_0x20cf1c))_0x54a288={..._0x1dcb99,'\x65\x76\x65\x6e\x74\x53\x65\x71\x73':[..._0x1dcb99['\x65\x76\x65\x6e\x74\x53\x65\x71'+'\x73'],_0x31591a[_0x3e678b(0xe2,'\x59\x43\x59\x70')]],'\x69\x6c\x6c\x65\x67\x61\x6c\x54\x72\x61\x6e\x73\x69\x74\x69\x6f\x6e\x73':[..._0x1dcb99[_0x3e678b(0xdc,'\x38\x4e\x65\x6a')+_0x3e678b(0xd5,'\x29\x29\x56\x73')+'\x6e\x73'],{'\x66\x72\x6f\x6d':_0x1dcb99[_0x3e678b(0xc6,'\x30\x28\x7a\x54')],'\x65\x76\x65\x6e\x74\x54\x79\x70\x65':_0x31591a[_0x3e678b(0xc4,'\x56\x47\x68\x31')],'\x73\x65\x71':_0x31591a[_0x3e678b(0xa2,'\x7a\x41\x56\x49')]}]};else{if(_0x3e678b(0xd3,'\x40\x52\x25\x62')===_0x3e678b(0xac,'\x4d\x5d\x55\x70'))return _0x3adf0d[_0x3e678b(0xdf,'\x29\x29\x56\x73')][_0x3e678b(0xe1,'\x55\x4e\x2a\x5e')](-_0x528d4e)[_0x3e678b(0x9d,'\x76\x5b\x49\x26')](_0xa98f00=>_0x3e6452[_0x3e678b(0x9a,'\x7a\x41\x56\x49')][_0xa98f00]);else _0x54a288=applyFields(_0x1dcb99,_0x31591a,_0x20cf1c);}}return{'\x63\x79\x63\x6c\x65\x73':{..._0x496f10[_0x3e678b(0xb7,'\x6e\x48\x79\x50')],[_0x4d1649]:_0x54a288},'\x6f\x72\x64\x65\x72':_0x3020b7?_0x496f10[_0x3e678b(0xe3,'\x35\x74\x4e\x63')]:[..._0x496f10[_0x3e678b(0xb6,'\x21\x5a\x50\x6c')],_0x4d1649]};}};export function liveCycles(_0x29004f){const _0xeb11a3=_0x39e63e;return _0x29004f[_0xeb11a3(0xf4,'\x41\x36\x50\x29')][_0xeb11a3(0xa0,'\x30\x28\x7a\x54')](_0x58aedb=>_0x29004f['\x63\x79\x63\x6c\x65\x73'][_0x58aedb])['\x66\x69\x6c\x74\x65\x72'](_0x1a7cb0=>!TERMINAL[_0xeb11a3(0xe4,'\x29\x57\x63\x36')](_0x1a7cb0[_0xeb11a3(0xe0,'\x4d\x5d\x55\x70')]));}function _0x4016(){const _0xd93bd7=['\x79\x38\x6f\x72\x57\x34\x58\x58\x71\x53\x6f\x55\x67\x76\x4b','\x57\x37\x4a\x63\x4b\x6d\x6f\x73\x57\x50\x54\x4b\x57\x52\x56\x63\x56\x38\x6b\x62','\x6c\x53\x6b\x77\x76\x43\x6f\x56\x57\x50\x52\x64\x4a\x77\x66\x41\x75\x61\x76\x63\x6b\x38\x6b\x62\x42\x61','\x72\x43\x6b\x75\x57\x50\x4c\x36\x57\x37\x4a\x63\x4e\x75\x43','\x45\x43\x6b\x65\x57\x34\x52\x64\x4b\x38\x6f\x39\x72\x43\x6b\x4c\x57\x52\x58\x4a\x57\x36\x64\x64\x51\x75\x53\x57','\x57\x50\x42\x64\x4b\x59\x4e\x63\x4e\x32\x53','\x57\x34\x69\x74\x6f\x38\x6b\x75\x46\x47\x2f\x64\x55\x48\x6d','\x73\x6d\x6b\x2f\x43\x43\x6b\x4d\x75\x71','\x57\x35\x43\x74\x41\x4a\x48\x55\x57\x37\x37\x64\x49\x71','\x57\x50\x70\x63\x4a\x47\x50\x31\x57\x52\x76\x33\x57\x36\x6e\x7a','\x71\x53\x6f\x77\x76\x4e\x38\x6a\x43\x6d\x6b\x51\x62\x57','\x57\x4f\x46\x63\x4a\x47\x31\x51\x57\x52\x4c\x4e','\x57\x37\x79\x45\x57\x50\x54\x44\x57\x51\x76\x5a','\x57\x34\x65\x67\x69\x38\x6b\x6b\x7a\x71\x56\x64\x55\x47','\x72\x76\x75\x4f\x79\x38\x6b\x49\x57\x52\x4f','\x71\x72\x5a\x63\x48\x4e\x56\x64\x49\x4a\x39\x39\x57\x37\x6a\x52\x76\x4e\x70\x63\x48\x38\x6b\x69\x57\x35\x75','\x57\x36\x2f\x63\x53\x6d\x6f\x55\x57\x37\x38\x37\x68\x31\x43\x7a','\x57\x37\x34\x41\x57\x52\x37\x63\x4d\x74\x4e\x64\x51\x57\x37\x64\x4c\x62\x6c\x64\x4a\x32\x42\x63\x49\x38\x6b\x6a','\x68\x6d\x6f\x2b\x57\x50\x7a\x6a\x76\x38\x6b\x38\x57\x51\x57','\x57\x4f\x37\x63\x4e\x71\x62\x4a\x57\x51\x34','\x57\x37\x2f\x64\x47\x53\x6b\x52\x57\x4f\x42\x64\x52\x57','\x57\x36\x6d\x74\x57\x50\x54\x73\x57\x51\x75','\x57\x35\x43\x63\x45\x47','\x77\x43\x6b\x67\x57\x4f\x6c\x64\x52\x53\x6b\x76','\x67\x53\x6f\x30\x74\x61','\x68\x53\x6b\x64\x43\x31\x43\x64\x72\x47','\x57\x36\x2f\x64\x4a\x38\x6b\x50\x57\x4f\x33\x64\x52\x38\x6f\x4e\x57\x37\x57','\x77\x53\x6b\x38\x57\x34\x4a\x63\x55\x66\x58\x51\x46\x61','\x6e\x4b\x56\x64\x55\x43\x6b\x6d\x57\x4f\x4b\x44\x79\x57','\x62\x6d\x6b\x4a\x57\x50\x42\x64\x53\x53\x6b\x31\x57\x51\x72\x4e','\x77\x38\x6b\x79\x57\x52\x43\x57\x57\x51\x44\x41\x57\x37\x56\x64\x55\x61','\x77\x6d\x6b\x38\x57\x34\x4a\x63\x55\x4b\x44\x55\x44\x53\x6f\x44','\x69\x4c\x6a\x44\x57\x52\x33\x63\x49\x31\x34','\x45\x53\x6f\x71\x62\x53\x6b\x35\x57\x35\x52\x63\x52\x74\x75\x46','\x75\x30\x69\x2f','\x57\x51\x52\x64\x49\x6d\x6b\x6a\x57\x34\x61\x4b\x57\x37\x56\x64\x52\x53\x6b\x56\x57\x52\x70\x63\x49\x43\x6b\x73\x57\x34\x4a\x63\x50\x61','\x71\x38\x6f\x43\x57\x50\x6a\x72\x43\x43\x6b\x53\x57\x51\x72\x45','\x61\x64\x78\x63\x50\x57','\x57\x37\x61\x75\x6c\x43\x6f\x76\x61\x61\x75\x58','\x57\x51\x4c\x6c\x57\x36\x37\x64\x47\x4e\x33\x63\x4f\x66\x33\x64\x55\x47','\x57\x52\x4e\x64\x4a\x75\x56\x64\x56\x77\x61','\x71\x6d\x6f\x67\x57\x4f\x48\x76','\x79\x38\x6f\x6a\x57\x35\x39\x55\x75\x53\x6f\x58','\x57\x4f\x33\x63\x4a\x48\x44\x31','\x57\x37\x79\x45\x57\x50\x54\x44\x57\x52\x76\x4c\x57\x50\x66\x56','\x57\x51\x6a\x6c\x57\x37\x43','\x68\x38\x6b\x7a\x57\x51\x39\x58\x79\x43\x6b\x77\x57\x52\x35\x5a','\x57\x34\x4a\x64\x53\x38\x6b\x46','\x76\x43\x6b\x61\x57\x51\x71','\x71\x4e\x33\x63\x4d\x53\x6f\x39\x71\x76\x79\x7a\x57\x34\x66\x39\x43\x43\x6b\x42\x57\x34\x74\x63\x4c\x47','\x43\x38\x6f\x76\x57\x34\x30','\x62\x43\x6b\x36\x57\x34\x4a\x64\x4c\x57\x71\x39','\x57\x35\x4b\x67\x6b\x71','\x67\x53\x6b\x71\x57\x35\x71\x68\x6d\x6d\x6f\x33\x57\x37\x39\x62\x79\x77\x33\x64\x50\x38\x6f\x7a\x57\x37\x79','\x70\x6d\x6b\x4c\x7a\x66\x65\x79','\x57\x34\x7a\x2b\x7a\x43\x6f\x67\x75\x49\x52\x64\x52\x57','\x57\x35\x71\x67\x43\x49\x7a\x31\x57\x37\x52\x64\x49\x71','\x57\x50\x69\x68\x64\x53\x6b\x55\x65\x53\x6b\x73','\x75\x77\x76\x57','\x46\x53\x6f\x45\x57\x34\x56\x63\x52\x65\x4c\x30\x57\x51\x4f','\x57\x35\x42\x64\x4c\x43\x6b\x45\x57\x52\x64\x64\x4f\x57','\x57\x36\x56\x63\x56\x43\x6f\x59','\x57\x51\x54\x62\x46\x43\x6b\x39\x57\x35\x7a\x44\x6d\x63\x61','\x71\x43\x6f\x45\x6c\x47\x50\x41\x66\x6d\x6f\x50\x66\x43\x6b\x79\x57\x4f\x39\x57\x57\x4f\x7a\x44','\x57\x34\x62\x6d\x77\x53\x6f\x58\x71\x53\x6f\x74\x43\x77\x4e\x63\x56\x58\x39\x4c\x75\x43\x6b\x4c','\x43\x53\x6f\x68\x65\x57','\x57\x35\x37\x64\x4f\x6d\x6b\x6c\x63\x78\x56\x64\x4f\x53\x6f\x5a\x57\x52\x69','\x57\x51\x48\x70\x57\x36\x4e\x64\x49\x31\x46\x63\x4f\x76\x33\x64\x49\x71','\x57\x34\x61\x64\x6c\x6d\x6f\x46\x61\x58\x57','\x57\x52\x35\x6d\x46\x43\x6b\x59\x57\x34\x79','\x6f\x38\x6b\x49\x42\x76\x75\x65','\x66\x43\x6b\x33\x57\x35\x4e\x64\x4b\x47\x38\x50','\x71\x32\x35\x51\x68\x53\x6b\x4b\x57\x51\x30','\x57\x52\x70\x64\x51\x53\x6b\x5a\x57\x51\x35\x54\x72\x4e\x79\x63\x57\x35\x4a\x64\x50\x53\x6b\x74\x43\x57','\x6f\x4c\x68\x64\x4f\x43\x6b\x64\x57\x4f\x6d\x74\x43\x4e\x69','\x42\x43\x6f\x66\x57\x34\x48\x4a\x71\x38\x6f\x52\x65\x33\x34','\x70\x43\x6f\x41\x57\x4f\x43','\x57\x51\x78\x64\x4c\x4b\x4a\x64\x54\x4e\x70\x64\x56\x38\x6b\x48\x57\x4f\x75','\x57\x52\x54\x74\x57\x37\x46\x64\x49\x57','\x57\x52\x6c\x64\x4d\x4b\x5a\x64\x53\x77\x68\x64\x55\x53\x6b\x6e\x57\x4f\x71','\x57\x35\x69\x45\x6f\x43\x6b\x6b\x42\x58\x4b','\x57\x4f\x64\x64\x4e\x5a\x68\x63\x4b\x32\x53\x32\x6e\x66\x71','\x62\x43\x6b\x4e\x57\x35\x33\x64\x4b\x61\x53\x32\x57\x4f\x75\x46','\x57\x4f\x6c\x63\x47\x57\x76\x31\x57\x51\x38','\x57\x35\x53\x77\x57\x36\x47\x4a','\x57\x52\x35\x2f\x46\x77\x70\x64\x4e\x61','\x73\x38\x6b\x76\x57\x52\x75\x37\x57\x51\x43','\x67\x43\x6b\x38\x57\x35\x37\x64\x4d\x58\x47','\x57\x51\x66\x6e\x57\x34\x75\x63\x57\x37\x75\x4c\x57\x34\x62\x5a\x57\x34\x2f\x64\x4c\x6d\x6b\x37\x57\x52\x4e\x64\x50\x47','\x45\x6d\x6f\x72\x57\x35\x2f\x63\x55\x4c\x48\x7a\x57\x52\x56\x64\x49\x71','\x57\x37\x34\x44\x57\x52\x2f\x63\x4d\x74\x37\x64\x50\x61\x5a\x64\x4c\x63\x78\x64\x51\x4e\x52\x63\x56\x6d\x6b\x44','\x6d\x53\x6b\x69\x57\x4f\x30\x32\x61\x6d\x6b\x31\x73\x4b\x68\x64\x4d\x38\x6f\x43\x42\x43\x6f\x4e\x75\x47'];_0x4016=function(){return _0xd93bd7;};return _0x4016();}function _0x5f1c(_0xf5f162,_0x459f69){_0xf5f162=_0xf5f162-(0x88*0x1+0x1*-0x1bbb+-0x1*-0x1bcd);const _0x4967ef=_0x4016();let _0x35f353=_0x4967ef[_0xf5f162];if(_0x5f1c['\x77\x6e\x6d\x4c\x6c\x64']===undefined){var _0x1b024b=function(_0x43c43b){const _0x3fa919='\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 _0x38a997='',_0x38655e='';for(let _0x220ca6=-0x1*-0x201b+0x4*-0x2b1+-0x25f*0x9,_0x544250,_0x36fdf5,_0x1703c0=-0x11c*-0x1+-0x1*-0x9ef+-0xb*0x101;_0x36fdf5=_0x43c43b['\x63\x68\x61\x72\x41\x74'](_0x1703c0++);~_0x36fdf5&&(_0x544250=_0x220ca6%(-0xa70+-0x1e6+0xc5a)?_0x544250*(0x1*-0x10f+0xfd4+-0x7*0x213)+_0x36fdf5:_0x36fdf5,_0x220ca6++%(0x52*-0x47+0x259*0xb+-0x311))?_0x38a997+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x8af*-0x1+0x112b+-0x18db&_0x544250>>(-(0x14f9+-0x127*0x10+-0x287)*_0x220ca6&-0x2f5*0x5+0x10*0x101+-0x141)):0x7f5+-0xc95*-0x3+-0x2db4){_0x36fdf5=_0x3fa919['\x69\x6e\x64\x65\x78\x4f\x66'](_0x36fdf5);}for(let _0x306d58=0x1782+0x2*-0x89f+-0x644,_0x5268aa=_0x38a997['\x6c\x65\x6e\x67\x74\x68'];_0x306d58<_0x5268aa;_0x306d58++){_0x38655e+='\x25'+('\x30\x30'+_0x38a997['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x306d58)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x18*-0xbb+-0x1ef2*0x1+0x308a*0x1))['\x73\x6c\x69\x63\x65'](-(-0x14c4*-0x1+-0xa+-0x14b8));}return decodeURIComponent(_0x38655e);};const _0x38bfdc=function(_0x4cab72,_0x340690){let _0x402826=[],_0x5f42c6=0x2703+-0x3*0x5c6+-0x15b1,_0x52ac0f,_0x535820='';_0x4cab72=_0x1b024b(_0x4cab72);let _0x4e9bb4;for(_0x4e9bb4=-0x10ec+0x7*-0x10f+-0x1855*-0x1;_0x4e9bb4<-0x3da*-0x1+0x1*-0x25dc+0x2302;_0x4e9bb4++){_0x402826[_0x4e9bb4]=_0x4e9bb4;}for(_0x4e9bb4=0xa3*-0x11+0x20f8+-0x1625;_0x4e9bb4<0x1923+0x7*0x371+-0x303a;_0x4e9bb4++){_0x5f42c6=(_0x5f42c6+_0x402826[_0x4e9bb4]+_0x340690['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4e9bb4%_0x340690['\x6c\x65\x6e\x67\x74\x68']))%(0xd23+0x1df2+0x201*-0x15),_0x52ac0f=_0x402826[_0x4e9bb4],_0x402826[_0x4e9bb4]=_0x402826[_0x5f42c6],_0x402826[_0x5f42c6]=_0x52ac0f;}_0x4e9bb4=0x1369+0x1fa9+-0x2*0x1989,_0x5f42c6=-0x5f*-0x1b+0x12a*-0xd+0xb*0x77;for(let _0xf69fea=0x135b*-0x1+-0xaa4+-0x1*-0x1dff;_0xf69fea<_0x4cab72['\x6c\x65\x6e\x67\x74\x68'];_0xf69fea++){_0x4e9bb4=(_0x4e9bb4+(0x1*0xa57+0x211a+-0x2b70))%(0xe09*-0x1+-0x23ef+0x32f8),_0x5f42c6=(_0x5f42c6+_0x402826[_0x4e9bb4])%(-0x63*0x2c+-0x1e7*0xe+-0xa*-0x477),_0x52ac0f=_0x402826[_0x4e9bb4],_0x402826[_0x4e9bb4]=_0x402826[_0x5f42c6],_0x402826[_0x5f42c6]=_0x52ac0f,_0x535820+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x4cab72['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf69fea)^_0x402826[(_0x402826[_0x4e9bb4]+_0x402826[_0x5f42c6])%(-0x1*0x9fc+0x18ac+0xc*-0x124)]);}return _0x535820;};_0x5f1c['\x4a\x6e\x4b\x64\x52\x51']=_0x38bfdc,_0x5f1c['\x71\x52\x47\x57\x6b\x46']={},_0x5f1c['\x77\x6e\x6d\x4c\x6c\x64']=!![];}const _0x5b4c06=_0x4967ef[0x9*0x126+-0x1*-0x145a+-0x4*0x7ac],_0x41e920=_0xf5f162+_0x5b4c06,_0x50fe2f=_0x5f1c['\x71\x52\x47\x57\x6b\x46'][_0x41e920];return!_0x50fe2f?(_0x5f1c['\x44\x6c\x69\x54\x4c\x75']===undefined&&(_0x5f1c['\x44\x6c\x69\x54\x4c\x75']=!![]),_0x35f353=_0x5f1c['\x4a\x6e\x4b\x64\x52\x51'](_0x35f353,_0x459f69),_0x5f1c['\x71\x52\x47\x57\x6b\x46'][_0x41e920]=_0x35f353):_0x35f353=_0x50fe2f,_0x35f353;}export function latestCycles(_0x2b8646,_0x51fd14=-0x2dc*0x3+0x13a*-0x7+0x1134){const _0xd23c5f=_0x39e63e;return _0x2b8646['\x6f\x72\x64\x65\x72'][_0xd23c5f(0xb5,'\x4d\x59\x6f\x4a')](-_0x51fd14)[_0xd23c5f(0xb1,'\x52\x4e\x4d\x73')](_0x2fef26=>_0x2b8646[_0xd23c5f(0xec,'\x42\x4a\x44\x70')][_0x2fef26]);}export function historicalCycles(_0x324fa5){const _0x223872=_0x39e63e;return _0x324fa5[_0x223872(0xc7,'\x6e\x48\x79\x50')][_0x223872(0xad,'\x38\x4e\x65\x6a')](_0x1b02d7=>_0x324fa5[_0x223872(0xc0,'\x23\x34\x73\x43')][_0x1b02d7]);}
|
package/dist/cycle/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export * from './cycleTimeline.js';
|
|
1
|
+
function _0x52d8(){var _0x12bb3b=['\x41\x6d\x6b\x35\x57\x52\x76\x57\x76\x6d\x6b\x38\x57\x36\x42\x63\x4a\x33\x62\x39\x64\x43\x6b\x78\x79\x71','\x72\x38\x6b\x54\x41\x62\x64\x64\x51\x6d\x6b\x74\x68\x61\x69\x62\x6f\x71','\x6b\x67\x53\x4e\x57\x50\x54\x68\x57\x51\x56\x64\x52\x4a\x46\x64\x53\x43\x6b\x61','\x6c\x32\x75\x47\x57\x50\x58\x6a\x57\x52\x68\x64\x53\x4a\x37\x64\x48\x43\x6b\x39','\x6b\x4d\x47\x4a\x57\x50\x57\x43\x57\x35\x78\x64\x55\x63\x78\x64\x50\x43\x6b\x30\x57\x50\x6c\x63\x54\x47','\x70\x32\x56\x64\x4d\x43\x6f\x6c\x45\x53\x6b\x41\x77\x43\x6f\x5a\x57\x36\x44\x37\x6d\x59\x61\x7a','\x57\x34\x30\x52\x71\x78\x4a\x63\x53\x43\x6b\x66\x65\x76\x64\x64\x52\x43\x6f\x5a','\x57\x34\x30\x55\x71\x78\x56\x63\x56\x38\x6b\x62\x68\x76\x37\x64\x56\x53\x6f\x63','\x57\x52\x69\x5a\x72\x6d\x6f\x7a\x45\x64\x38\x35\x79\x63\x2f\x63\x4a\x38\x6b\x33\x79\x4e\x53','\x57\x34\x39\x76\x57\x51\x33\x64\x47\x6d\x6f\x55\x57\x36\x62\x4e\x42\x4d\x46\x64\x55\x66\x54\x34\x57\x35\x6e\x78','\x78\x6d\x6b\x4b\x46\x43\x6b\x41\x57\x4f\x74\x63\x50\x72\x2f\x63\x53\x73\x38\x71\x57\x4f\x46\x63\x4b\x71','\x57\x50\x52\x63\x4f\x53\x6f\x6b\x57\x34\x2f\x64\x53\x76\x6d\x4f\x62\x71\x37\x64\x47\x71','\x70\x59\x74\x63\x54\x6d\x6b\x63\x62\x6d\x6f\x5a\x6f\x71','\x57\x34\x53\x4f\x72\x68\x68\x64\x50\x38\x6f\x34\x46\x77\x56\x64\x56\x38\x6f\x2b\x44\x38\x6f\x30\x57\x4f\x38','\x69\x53\x6b\x76\x66\x4e\x6e\x75\x79\x76\x68\x64\x56\x53\x6f\x61\x62\x32\x33\x63\x4d\x38\x6f\x6e','\x57\x51\x6c\x64\x4c\x38\x6b\x42\x57\x52\x66\x67\x78\x43\x6f\x65\x57\x52\x57\x35\x68\x57','\x57\x37\x42\x63\x54\x4d\x6a\x75\x45\x6d\x6b\x36\x57\x35\x6c\x63\x53\x53\x6b\x2f\x57\x34\x4f\x61\x57\x52\x56\x63\x55\x38\x6b\x4f','\x6b\x4e\x42\x63\x50\x32\x79\x75\x76\x67\x57\x58\x42\x6d\x6b\x50\x57\x35\x74\x64\x4a\x38\x6b\x2b'];_0x52d8=function(){return _0x12bb3b;};return _0x52d8();}(function(_0x30b33b,_0x5c3e23){var _0x5e5d40=_0x3716,_0x458539=_0x30b33b();while(!![]){try{var _0xf1f618=-parseInt(_0x5e5d40(0x11e,'\x67\x74\x63\x21'))/(-0x49*-0x42+-0x1397+0xc6)+parseInt(_0x5e5d40(0x114,'\x25\x21\x59\x75'))/(-0x27*0xc+-0x1491*-0x1+0x5*-0x3bf)*(parseInt(_0x5e5d40(0x122,'\x58\x44\x63\x4f'))/(-0x7*0x164+-0x4f*-0x5+-0x7*-0x12c))+-parseInt(_0x5e5d40(0x119,'\x6c\x45\x5d\x71'))/(0x22f7+0x35*0x6e+-0x39b9)+-parseInt(_0x5e5d40(0x11b,'\x59\x6e\x52\x48'))/(-0xf*0x107+0x5*-0x149+0x15db)*(-parseInt(_0x5e5d40(0x117,'\x4d\x38\x37\x4b'))/(0x10a3*-0x1+-0x3*0xc01+-0x4*-0xd2b))+-parseInt(_0x5e5d40(0x121,'\x67\x78\x4a\x33'))/(0x10*0x7+-0x20ca+0x2061)*(parseInt(_0x5e5d40(0x113,'\x23\x34\x70\x4c'))/(0x1*0x13a0+0x3*0x69b+-0x2769))+-parseInt(_0x5e5d40(0x11a,'\x75\x6e\x57\x34'))/(0x13f4+-0x22b8+0xecd*0x1)+parseInt(_0x5e5d40(0x111,'\x72\x70\x4b\x6b'))/(-0x3b*0x23+-0x6ec+-0xf07*-0x1);if(_0xf1f618===_0x5c3e23)break;else _0x458539['push'](_0x458539['shift']());}catch(_0x309d77){_0x458539['push'](_0x458539['shift']());}}}(_0x52d8,0x2488*0x18+-0x76ef+-0x9d*-0xe66));function _0x3716(_0xb960b7,_0x2b7137){_0xb960b7=_0xb960b7-(0x5*0x413+-0x76b+-0xb3*0x11);var _0x17ece9=_0x52d8();var _0x2b02da=_0x17ece9[_0xb960b7];if(_0x3716['\x4d\x63\x76\x68\x6d\x45']===undefined){var _0x4749cf=function(_0x4653aa){var _0x3d5bfe='\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';var _0x52fe37='',_0x2b95f1='';for(var _0x51fa0b=0x1*-0xdab+0xcbe+-0xed*-0x1,_0x1121aa,_0x2fff70,_0x401d53=0xe08+-0x1239+0x1d*0x25;_0x2fff70=_0x4653aa['\x63\x68\x61\x72\x41\x74'](_0x401d53++);~_0x2fff70&&(_0x1121aa=_0x51fa0b%(-0x1508+-0x6*-0x1cd+0xa3e)?_0x1121aa*(-0x3*0x7eb+0x166b+0x196)+_0x2fff70:_0x2fff70,_0x51fa0b++%(-0x1*-0x1bc+0x31*-0x19+-0x5*-0x9d))?_0x52fe37+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xe9*0x22+0x1*-0x20b1+0x40a2&_0x1121aa>>(-(-0x34*-0x41+-0x1e3c+0x885*0x2)*_0x51fa0b&0x1d8b+-0xa83+0x2*-0x981)):0x1bd3+0x1bb9+0x1bc6*-0x2){_0x2fff70=_0x3d5bfe['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2fff70);}for(var _0x1d721e=0x26c4*0x1+-0x1d44+-0x980,_0x21ad31=_0x52fe37['\x6c\x65\x6e\x67\x74\x68'];_0x1d721e<_0x21ad31;_0x1d721e++){_0x2b95f1+='\x25'+('\x30\x30'+_0x52fe37['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1d721e)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xb0d+0x2f*-0x8b+0xe88))['\x73\x6c\x69\x63\x65'](-(0x81d+-0x113b*0x2+0x1a5b));}return decodeURIComponent(_0x2b95f1);};var _0x815341=function(_0x24dd10,_0x202c0e){var _0x2d161a=[],_0x49c196=-0x16b2+-0x32*0x21+-0x175*-0x14,_0x4e9b57,_0x304835='';_0x24dd10=_0x4749cf(_0x24dd10);var _0x532230;for(_0x532230=-0xdba+0x1*-0x184f+0x2609;_0x532230<0x1*0x2699+-0x26e8+0x1*0x14f;_0x532230++){_0x2d161a[_0x532230]=_0x532230;}for(_0x532230=-0xbf0+-0xb*-0x242+0x7f*-0x1a;_0x532230<-0x16*0x37+0x1b2+0x408;_0x532230++){_0x49c196=(_0x49c196+_0x2d161a[_0x532230]+_0x202c0e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x532230%_0x202c0e['\x6c\x65\x6e\x67\x74\x68']))%(0x6*0xf7+-0x1356+0xe8c),_0x4e9b57=_0x2d161a[_0x532230],_0x2d161a[_0x532230]=_0x2d161a[_0x49c196],_0x2d161a[_0x49c196]=_0x4e9b57;}_0x532230=0xc01*-0x3+0x138d+-0x2b*-0x62,_0x49c196=0x10*0x7+-0x20ca+0x205a;for(var _0x6009e0=0x1*0x13a0+0x3*0x69b+-0x2771;_0x6009e0<_0x24dd10['\x6c\x65\x6e\x67\x74\x68'];_0x6009e0++){_0x532230=(_0x532230+(0x13f4+-0x22b8+0xec5*0x1))%(-0x3b*0x23+-0x6ec+-0xffd*-0x1),_0x49c196=(_0x49c196+_0x2d161a[_0x532230])%(0x16b*0x4+-0xc5+-0x9*0x6f),_0x4e9b57=_0x2d161a[_0x532230],_0x2d161a[_0x532230]=_0x2d161a[_0x49c196],_0x2d161a[_0x49c196]=_0x4e9b57,_0x304835+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x24dd10['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x6009e0)^_0x2d161a[(_0x2d161a[_0x532230]+_0x2d161a[_0x49c196])%(-0x6a*-0x2+-0x2259*0x1+-0x1*-0x2285)]);}return _0x304835;};_0x3716['\x50\x4b\x67\x75\x6c\x73']=_0x815341,_0x3716['\x5a\x6e\x5a\x76\x48\x6b']={},_0x3716['\x4d\x63\x76\x68\x6d\x45']=!![];}var _0x363b40=_0x17ece9[-0x165*0xc+0x1997+0x1*-0x8db],_0x2bea90=_0xb960b7+_0x363b40,_0x533428=_0x3716['\x5a\x6e\x5a\x76\x48\x6b'][_0x2bea90];return!_0x533428?(_0x3716['\x45\x4d\x61\x59\x73\x6e']===undefined&&(_0x3716['\x45\x4d\x61\x59\x73\x6e']=!![]),_0x2b02da=_0x3716['\x50\x4b\x67\x75\x6c\x73'](_0x2b02da,_0x2b7137),_0x3716['\x5a\x6e\x5a\x76\x48\x6b'][_0x2bea90]=_0x2b02da):_0x2b02da=_0x533428,_0x2b02da;}export*from'\x2e\x2f\x73\x74\x61\x74\x65\x4d\x61\x63\x68\x69\x6e\x65\x2e\x6a\x73';export*from'\x2e\x2f\x63\x79\x63\x6c\x65\x54\x69\x6d\x65\x6c\x69\x6e\x65\x2e\x6a\x73';
|
|
@@ -1,25 +1 @@
|
|
|
1
|
-
export const TERMINAL = new Set(['solidified', 'failed', 'aborted']);
|
|
2
|
-
const ALLOWED = {
|
|
3
|
-
none: ['started'],
|
|
4
|
-
started: ['signals_collected', 'gene_selected', 'failed', 'aborted'],
|
|
5
|
-
signals_collected: ['gene_selected', 'failed', 'aborted'],
|
|
6
|
-
gene_selected: ['mutation_built', 'solidified', 'failed', 'aborted'],
|
|
7
|
-
mutation_built: ['solidified', 'failed', 'aborted'],
|
|
8
|
-
solidified: [], failed: [], aborted: [],
|
|
9
|
-
};
|
|
10
|
-
/** 事件类型 → 它把 cycle 推进到的 stage (非 stage 事件返回 null). */
|
|
11
|
-
export function stageForEventType(type) {
|
|
12
|
-
switch (type) {
|
|
13
|
-
case 'cycle.started': return 'started';
|
|
14
|
-
case 'cycle.signals_collected': return 'signals_collected';
|
|
15
|
-
case 'decision.gene_selected': return 'gene_selected';
|
|
16
|
-
case 'mutation.built': return 'mutation_built';
|
|
17
|
-
case 'cycle.solidified': return 'solidified';
|
|
18
|
-
case 'cycle.failed': return 'failed';
|
|
19
|
-
case 'cycle.aborted': return 'aborted';
|
|
20
|
-
default: return null;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
export function canTransition(from, to) {
|
|
24
|
-
return ALLOWED[from].includes(to);
|
|
25
|
-
}
|
|
1
|
+
const _0x570b4b=_0x3467;(function(_0x5eca7a,_0x6fe746){const _0x31ea49=_0x3467,_0x3dd110=_0x5eca7a();while(!![]){try{const _0x4c6d96=parseInt(_0x31ea49(0x1e2,'\x68\x42\x45\x64'))/(-0x1bef*-0x1+-0x10d5+-0x3b3*0x3)*(parseInt(_0x31ea49(0x1d2,'\x38\x39\x56\x4b'))/(-0x10+-0x20df+-0x1*-0x20f1))+-parseInt(_0x31ea49(0x1bc,'\x78\x45\x61\x40'))/(0x189a+-0x185b+0x1e*-0x2)*(-parseInt(_0x31ea49(0x1d3,'\x21\x6b\x4e\x75'))/(0x1*-0x539+-0x59d+0x1*0xada))+parseInt(_0x31ea49(0x1c0,'\x38\x39\x56\x4b'))/(-0xe93+0x1f*-0xf+0x1*0x1069)+-parseInt(_0x31ea49(0x1c1,'\x55\x55\x65\x56'))/(-0x125f*0x1+0x86*-0x17+0x93*0x35)+parseInt(_0x31ea49(0x1da,'\x26\x68\x5b\x49'))/(0x72f+-0x1cf0+0x15c8)+-parseInt(_0x31ea49(0x1b7,'\x4f\x30\x6b\x45'))/(-0x1e7b+0x1*0x131b+-0x248*-0x5)+-parseInt(_0x31ea49(0x1ce,'\x68\x4f\x68\x4b'))/(0x19db+0x18ab+-0x327d);if(_0x4c6d96===_0x6fe746)break;else _0x3dd110['push'](_0x3dd110['shift']());}catch(_0x48b9e1){_0x3dd110['push'](_0x3dd110['shift']());}}}(_0x1a52,0x16f7*-0x49+-0x5aca6+-0x12c1ab*-0x1));export const TERMINAL=new Set(['\x73\x6f\x6c\x69\x64\x69\x66\x69'+'\x65\x64',_0x570b4b(0x1e0,'\x75\x2a\x6e\x73'),_0x570b4b(0x1e3,'\x68\x5b\x63\x5a')]);const ALLOWED={'\x6e\x6f\x6e\x65':[_0x570b4b(0x1b6,'\x4f\x4b\x39\x56')],'\x73\x74\x61\x72\x74\x65\x64':[_0x570b4b(0x1ed,'\x32\x52\x39\x71')+_0x570b4b(0x1ba,'\x2a\x63\x4c\x4e')+'\x64',_0x570b4b(0x1c5,'\x33\x32\x33\x45')+_0x570b4b(0x1e7,'\x5b\x46\x37\x6d'),_0x570b4b(0x1cc,'\x71\x39\x44\x34'),_0x570b4b(0x1e9,'\x57\x35\x75\x69')],'\x73\x69\x67\x6e\x61\x6c\x73\x5f\x63\x6f\x6c\x6c\x65\x63\x74\x65\x64':[_0x570b4b(0x1b4,'\x4f\x30\x6b\x45')+'\x65\x63\x74\x65\x64',_0x570b4b(0x1db,'\x6b\x52\x38\x66'),_0x570b4b(0x1ca,'\x45\x30\x40\x75')],'\x67\x65\x6e\x65\x5f\x73\x65\x6c\x65\x63\x74\x65\x64':[_0x570b4b(0x1bf,'\x39\x77\x49\x56')+'\x5f\x62\x75\x69\x6c\x74',_0x570b4b(0x1d0,'\x49\x56\x6f\x45')+'\x65\x64',_0x570b4b(0x1d8,'\x51\x56\x66\x34'),_0x570b4b(0x1cd,'\x21\x6b\x4e\x75')],'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x62\x75\x69\x6c\x74':[_0x570b4b(0x1dd,'\x6d\x21\x39\x55')+'\x65\x64',_0x570b4b(0x1e6,'\x57\x5e\x76\x49'),_0x570b4b(0x1c7,'\x5b\x46\x37\x6d')],'\x73\x6f\x6c\x69\x64\x69\x66\x69\x65\x64':[],'\x66\x61\x69\x6c\x65\x64':[],'\x61\x62\x6f\x72\x74\x65\x64':[]};function _0x3467(_0x3c5e8e,_0x890bef){_0x3c5e8e=_0x3c5e8e-(-0xb11+0x43*0x34+-0xd7*0x1);const _0x550920=_0x1a52();let _0x1d0e6e=_0x550920[_0x3c5e8e];if(_0x3467['\x50\x73\x6b\x4a\x59\x4a']===undefined){var _0x38c384=function(_0x26eb5d){const _0x2d97d0='\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 _0x591a52='',_0x587bbb='';for(let _0x4aa74e=0x1f3d+0x21f6+-0x1*0x4133,_0x2f138b,_0x44ef1b,_0x2c8bc9=0x1*0xfd3+0xcf1*-0x1+-0x2e2;_0x44ef1b=_0x26eb5d['\x63\x68\x61\x72\x41\x74'](_0x2c8bc9++);~_0x44ef1b&&(_0x2f138b=_0x4aa74e%(0x2*-0x62d+-0xa93*0x1+-0x1*-0x16f1)?_0x2f138b*(-0x51*-0x3f+0xa26+-0x1dd5)+_0x44ef1b:_0x44ef1b,_0x4aa74e++%(-0x186a+-0xfd*0x7+-0x1*-0x1f59))?_0x591a52+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x2*0x955+-0x600+0x19a9*0x1&_0x2f138b>>(-(-0xd*0x270+0x8c*0x5+0x2*0xe7b)*_0x4aa74e&0x186e+0x2038+0x38a*-0x10)):0x2123+0xb52+-0x257*0x13){_0x44ef1b=_0x2d97d0['\x69\x6e\x64\x65\x78\x4f\x66'](_0x44ef1b);}for(let _0x516860=-0x3*0x447+-0x1ae+0xe83*0x1,_0x36e1e7=_0x591a52['\x6c\x65\x6e\x67\x74\x68'];_0x516860<_0x36e1e7;_0x516860++){_0x587bbb+='\x25'+('\x30\x30'+_0x591a52['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x516860)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x267b*-0x1+0x16f*-0x16+-0x6e1))['\x73\x6c\x69\x63\x65'](-(-0x1eb1+-0x1e4b+-0x25*-0x1a6));}return decodeURIComponent(_0x587bbb);};const _0x49be27=function(_0x2f68de,_0x7bc914){let _0x3056ab=[],_0xac9bbf=0x471*0x6+-0xc71+-0xe35*0x1,_0x440e36,_0x501d99='';_0x2f68de=_0x38c384(_0x2f68de);let _0x59f122;for(_0x59f122=-0x2468+0x15ef+0xe79;_0x59f122<-0x3*0x195+-0xc2*0x23+0x2045;_0x59f122++){_0x3056ab[_0x59f122]=_0x59f122;}for(_0x59f122=-0x3*0x2d5+0xc26+0x5*-0xbb;_0x59f122<-0x4*0x52+0x1a83+-0x183b;_0x59f122++){_0xac9bbf=(_0xac9bbf+_0x3056ab[_0x59f122]+_0x7bc914['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x59f122%_0x7bc914['\x6c\x65\x6e\x67\x74\x68']))%(0x1*0x17c9+0x155f+-0x2c28),_0x440e36=_0x3056ab[_0x59f122],_0x3056ab[_0x59f122]=_0x3056ab[_0xac9bbf],_0x3056ab[_0xac9bbf]=_0x440e36;}_0x59f122=0x98*0x1b+0x337*-0x7+-0x679*-0x1,_0xac9bbf=-0x1d7b+-0x14c2+-0x323d*-0x1;for(let _0x55f752=-0xaf1*-0x1+0x97*0x9+-0x1040;_0x55f752<_0x2f68de['\x6c\x65\x6e\x67\x74\x68'];_0x55f752++){_0x59f122=(_0x59f122+(-0x25c5+-0x21a2+0x1c9*0x28))%(-0x1d65+-0xbc4*-0x3+0xfb*-0x5),_0xac9bbf=(_0xac9bbf+_0x3056ab[_0x59f122])%(0x1484+0x142f+-0x27b3),_0x440e36=_0x3056ab[_0x59f122],_0x3056ab[_0x59f122]=_0x3056ab[_0xac9bbf],_0x3056ab[_0xac9bbf]=_0x440e36,_0x501d99+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2f68de['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x55f752)^_0x3056ab[(_0x3056ab[_0x59f122]+_0x3056ab[_0xac9bbf])%(-0x1*0x773+-0x1a3b+0x22ae)]);}return _0x501d99;};_0x3467['\x4f\x74\x49\x5a\x44\x75']=_0x49be27,_0x3467['\x6b\x51\x70\x54\x64\x73']={},_0x3467['\x50\x73\x6b\x4a\x59\x4a']=!![];}const _0x2c42b2=_0x550920[0x1*0x1ffc+-0x3e*-0x6b+-0x39e6],_0x4665a2=_0x3c5e8e+_0x2c42b2,_0x281424=_0x3467['\x6b\x51\x70\x54\x64\x73'][_0x4665a2];return!_0x281424?(_0x3467['\x72\x72\x52\x53\x49\x62']===undefined&&(_0x3467['\x72\x72\x52\x53\x49\x62']=!![]),_0x1d0e6e=_0x3467['\x4f\x74\x49\x5a\x44\x75'](_0x1d0e6e,_0x890bef),_0x3467['\x6b\x51\x70\x54\x64\x73'][_0x4665a2]=_0x1d0e6e):_0x1d0e6e=_0x281424,_0x1d0e6e;}export function stageForEventType(_0x545d22){const _0x34d0b7=_0x570b4b;switch(_0x545d22){case _0x34d0b7(0x1d7,'\x5b\x54\x21\x36')+_0x34d0b7(0x1df,'\x48\x53\x75\x77'):return _0x34d0b7(0x1eb,'\x73\x36\x4c\x6f');case _0x34d0b7(0x1ec,'\x57\x49\x29\x64')+_0x34d0b7(0x1be,'\x57\x5e\x76\x49')+_0x34d0b7(0x1c6,'\x5a\x24\x56\x57'):return _0x34d0b7(0x1cf,'\x68\x5b\x63\x5a')+_0x34d0b7(0x1d9,'\x45\x30\x40\x75')+'\x64';case'\x64\x65\x63\x69\x73\x69\x6f\x6e'+_0x34d0b7(0x1e5,'\x45\x30\x40\x75')+_0x34d0b7(0x1d1,'\x32\x50\x76\x2a'):return _0x34d0b7(0x1b4,'\x4f\x30\x6b\x45')+_0x34d0b7(0x1c3,'\x50\x72\x35\x49');case _0x34d0b7(0x1ea,'\x57\x5e\x76\x49')+_0x34d0b7(0x1e1,'\x5a\x29\x79\x4a'):return _0x34d0b7(0x1bd,'\x68\x4f\x68\x4b')+'\x5f\x62\x75\x69\x6c\x74';case _0x34d0b7(0x1c4,'\x77\x42\x37\x79')+'\x6c\x69\x64\x69\x66\x69\x65\x64':return'\x73\x6f\x6c\x69\x64\x69\x66\x69'+'\x65\x64';case _0x34d0b7(0x1c8,'\x45\x30\x40\x75')+_0x34d0b7(0x1dc,'\x31\x54\x73\x61'):return _0x34d0b7(0x1c9,'\x66\x76\x6d\x76');case _0x34d0b7(0x1b5,'\x6a\x6e\x35\x6f')+_0x34d0b7(0x1d5,'\x32\x52\x39\x71'):return _0x34d0b7(0x1bb,'\x57\x58\x6a\x34');default:return null;}}export function canTransition(_0x65cada,_0x209c6e){const _0x4e9abb=_0x570b4b;return ALLOWED[_0x65cada][_0x4e9abb(0x1b8,'\x31\x54\x73\x61')](_0x209c6e);}function _0x1a52(){const _0x174a61=['\x57\x52\x71\x65\x57\x50\x57\x4a\x72\x57\x65\x47','\x6b\x72\x44\x35\x57\x35\x6c\x64\x54\x76\x68\x63\x49\x43\x6b\x79\x6e\x62\x66\x6e\x57\x37\x6d','\x57\x35\x74\x64\x48\x43\x6f\x37\x57\x36\x78\x63\x4b\x4d\x37\x63\x51\x38\x6f\x57','\x43\x66\x33\x63\x4c\x71\x31\x49\x77\x53\x6f\x36\x57\x34\x68\x63\x4a\x4c\x46\x64\x48\x6d\x6f\x33\x6d\x57','\x57\x51\x52\x63\x4b\x59\x35\x42\x71\x6d\x6b\x34\x43\x4d\x75','\x6e\x43\x6b\x34\x57\x34\x6c\x63\x53\x38\x6b\x4d\x57\x37\x64\x63\x49\x57','\x57\x51\x35\x70\x57\x36\x2f\x63\x53\x61\x33\x63\x53\x4e\x44\x65\x57\x4f\x56\x63\x55\x71','\x57\x52\x66\x55\x63\x57\x4e\x63\x52\x4c\x70\x64\x4f\x38\x6f\x31','\x6f\x4b\x42\x64\x4e\x63\x31\x63\x57\x52\x39\x48\x6b\x61','\x69\x6d\x6b\x30\x57\x37\x53\x6a\x45\x38\x6b\x7a\x65\x65\x61','\x70\x38\x6b\x4a\x6a\x31\x68\x64\x56\x4d\x6c\x64\x4b\x72\x4a\x64\x4e\x63\x54\x55\x66\x78\x4f','\x57\x35\x70\x64\x51\x72\x4f\x4f\x6f\x78\x6e\x45\x57\x35\x6e\x54\x57\x35\x74\x63\x48\x76\x42\x64\x54\x57','\x57\x37\x56\x64\x48\x68\x71\x67\x68\x43\x6b\x6c\x43\x4e\x70\x64\x48\x53\x6f\x2f\x57\x35\x38','\x57\x37\x44\x6e\x43\x61\x50\x4b','\x57\x37\x30\x57\x42\x43\x6f\x68\x57\x50\x37\x63\x52\x67\x44\x62','\x57\x50\x46\x64\x4f\x77\x5a\x63\x54\x43\x6f\x4c\x57\x34\x4a\x64\x4e\x38\x6b\x46','\x57\x52\x54\x4f\x57\x35\x65\x4d\x57\x37\x78\x63\x4c\x76\x47','\x62\x75\x31\x31\x62\x6d\x6f\x43\x6e\x77\x4f','\x76\x77\x54\x52\x69\x77\x68\x64\x4b\x38\x6b\x44\x76\x47','\x57\x37\x2f\x64\x48\x77\x37\x64\x56\x53\x6f\x62\x57\x34\x4f','\x76\x33\x62\x4e\x70\x33\x64\x63\x4d\x6d\x6b\x46','\x42\x62\x4e\x63\x49\x33\x75\x69\x57\x35\x65\x37\x64\x4a\x4a\x64\x48\x4c\x5a\x63\x56\x4a\x57','\x57\x4f\x4c\x4d\x57\x36\x78\x63\x52\x43\x6f\x76\x57\x51\x43','\x46\x43\x6f\x4b\x57\x50\x6c\x64\x51\x53\x6b\x32\x74\x49\x65','\x57\x36\x38\x54\x73\x66\x52\x64\x52\x57\x6c\x63\x55\x43\x6f\x35\x6f\x63\x64\x64\x53\x38\x6f\x59\x57\x37\x61','\x41\x64\x5a\x64\x48\x4e\x78\x63\x4a\x4e\x33\x64\x47\x53\x6b\x44','\x57\x51\x62\x48\x57\x35\x50\x64\x57\x37\x4c\x61\x57\x51\x6c\x64\x50\x57','\x69\x38\x6b\x61\x57\x52\x78\x63\x55\x68\x5a\x63\x55\x57','\x70\x53\x6b\x52\x69\x66\x4e\x64\x56\x47\x56\x63\x4c\x74\x4e\x64\x4a\x64\x76\x55','\x6b\x38\x6b\x32\x57\x34\x33\x64\x4e\x53\x6b\x74\x46\x74\x38\x57\x62\x57','\x57\x35\x62\x44\x72\x6d\x6f\x46\x57\x37\x4a\x63\x55\x6d\x6f\x75\x57\x36\x30','\x57\x4f\x4c\x49\x57\x4f\x72\x41\x76\x47','\x57\x36\x61\x30\x57\x4f\x71\x64\x57\x35\x64\x63\x50\x4b\x42\x63\x48\x75\x38','\x79\x38\x6f\x65\x44\x6d\x6b\x53\x63\x59\x70\x64\x47\x38\x6b\x54','\x77\x58\x38\x58\x79\x31\x70\x63\x56\x71','\x76\x78\x31\x4b\x69\x77\x68\x63\x4e\x53\x6b\x70\x75\x47','\x6a\x38\x6b\x4e\x57\x36\x70\x63\x56\x53\x6b\x76\x79\x30\x37\x63\x4e\x43\x6b\x2f\x73\x53\x6f\x65\x57\x4f\x4a\x64\x4f\x57','\x71\x47\x74\x63\x4c\x43\x6f\x65\x45\x43\x6b\x6d','\x57\x35\x74\x64\x48\x38\x6f\x39\x57\x36\x30','\x70\x53\x6f\x64\x6b\x6d\x6b\x4f\x7a\x49\x42\x63\x55\x6d\x6b\x31','\x43\x4c\x56\x63\x4c\x57\x65\x79\x69\x43\x6b\x2b\x57\x34\x52\x63\x4a\x30\x38','\x70\x43\x6f\x62\x66\x43\x6f\x30\x57\x52\x6d','\x57\x51\x44\x4e\x70\x6d\x6b\x77\x57\x36\x42\x64\x4c\x71','\x57\x34\x4f\x6b\x46\x38\x6f\x72\x57\x35\x70\x63\x54\x71','\x42\x38\x6f\x67\x57\x52\x68\x63\x4c\x43\x6b\x6d\x57\x37\x37\x63\x56\x74\x79','\x45\x4a\x46\x64\x4a\x4d\x4e\x63\x4d\x33\x74\x64\x4c\x71','\x6e\x62\x52\x64\x4b\x67\x79\x4b\x57\x52\x7a\x52\x63\x31\x65\x30\x64\x78\x4e\x64\x51\x57','\x67\x68\x76\x54\x69\x32\x68\x63\x4f\x53\x6b\x69\x75\x47','\x6f\x30\x4e\x64\x4c\x63\x31\x75\x57\x4f\x71','\x61\x75\x58\x55\x65\x38\x6f\x6d','\x44\x6d\x6b\x76\x43\x43\x6f\x33\x6f\x33\x4e\x63\x49\x53\x6b\x74\x72\x4d\x4e\x63\x4b\x30\x75','\x43\x75\x42\x63\x52\x43\x6f\x6c\x57\x34\x58\x30\x69\x57','\x6d\x66\x33\x64\x49\x73\x62\x66\x57\x4f\x4c\x54\x6b\x71','\x57\x51\x78\x63\x51\x74\x33\x63\x48\x43\x6b\x77\x62\x72\x69','\x6b\x6d\x6b\x68\x57\x4f\x66\x74\x57\x34\x2f\x64\x4a\x6d\x6b\x39\x57\x51\x69','\x57\x50\x76\x35\x57\x50\x44\x72\x75\x57\x2f\x63\x4f\x49\x43','\x44\x30\x53\x49\x57\x4f\x68\x63\x4b\x58\x74\x63\x55\x6d\x6b\x37','\x41\x6d\x6f\x43\x57\x4f\x31\x4f\x66\x53\x6f\x56\x57\x36\x69\x76'];_0x1a52=function(){return _0x174a61;};return _0x1a52();}
|