@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
|
@@ -1,481 +1 @@
|
|
|
1
|
-
import { createHash, randomUUID } from 'node:crypto';
|
|
2
|
-
import { assessSelectionGuard, engineHealthSelection, } from '../algo/geneSelection.js';
|
|
3
|
-
export const SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION = 'global-flat-abstention-paired-v1';
|
|
4
|
-
const FULL_COMMIT_RE = /^[0-9a-f]{40}$/;
|
|
5
|
-
const SHA256_RE = /^sha256:[0-9a-f]{64}$/;
|
|
6
|
-
const SAFE_METADATA_RE = /^[A-Za-z0-9][A-Za-z0-9._-]{0,127}$/;
|
|
7
|
-
const CI95_ALPHA = 0.05;
|
|
8
|
-
function actionForDecision(decision) {
|
|
9
|
-
if (!decision.selectedGeneId)
|
|
10
|
-
return { kind: 'innovate' };
|
|
11
|
-
return {
|
|
12
|
-
kind: 'reuse',
|
|
13
|
-
geneId: decision.selectedGeneId,
|
|
14
|
-
...(decision.selectedAssetId ? { assetId: decision.selectedAssetId } : {}),
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
function actionsEqual(left, right) {
|
|
18
|
-
return left.kind === right.kind
|
|
19
|
-
&& (left.kind === 'innovate' || (right.kind === 'reuse'
|
|
20
|
-
&& left.geneId === right.geneId
|
|
21
|
-
&& left.assetId === right.assetId));
|
|
22
|
-
}
|
|
23
|
-
/** Compare production with a benchmark-only global flat-positive abstention counterfactual. */
|
|
24
|
-
export function compareOutsidePlateauFlatSelection(input) {
|
|
25
|
-
const currentDecision = engineHealthSelection.run({ ...input, selectionGuard: 'enforce' }, { now: 0, cycleId: 'benchmark-global-flat-abstention', rng: () => 0.5 });
|
|
26
|
-
const currentAction = actionForDecision(currentDecision);
|
|
27
|
-
const floor = input.floor ?? 0;
|
|
28
|
-
const eligible = currentDecision.candidates.filter((candidate) => candidate.score > floor);
|
|
29
|
-
const flatPoolAssessment = assessSelectionGuard(eligible, true);
|
|
30
|
-
const targeted = input.exploration?.plateau?.active !== true
|
|
31
|
-
&& input.exploration?.driftEnabled !== true
|
|
32
|
-
&& !input.forcedGeneId?.trim()
|
|
33
|
-
&& currentAction.kind === 'reuse'
|
|
34
|
-
&& currentDecision.selectionGuard?.status === 'allowed'
|
|
35
|
-
&& flatPoolAssessment.reason === 'plateau_flat_match';
|
|
36
|
-
return {
|
|
37
|
-
targeted,
|
|
38
|
-
...(targeted ? { targetReason: 'outside_plateau_flat_positive' } : {}),
|
|
39
|
-
currentDecision,
|
|
40
|
-
currentAction,
|
|
41
|
-
globalFlatAbstainAction: targeted ? { kind: 'innovate' } : currentAction,
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
function assertSafeMetadata(value, field) {
|
|
45
|
-
if (typeof value !== 'string' || !SAFE_METADATA_RE.test(value)) {
|
|
46
|
-
throw new Error(`${field} must be a non-sensitive ASCII slug`);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
function validateExpectedAction(action, field) {
|
|
50
|
-
if (action?.kind === 'innovate')
|
|
51
|
-
return;
|
|
52
|
-
if (action?.kind !== 'reuse' || typeof action.geneId !== 'string' || action.geneId.trim().length === 0) {
|
|
53
|
-
throw new Error(`${field} must be a valid selection action`);
|
|
54
|
-
}
|
|
55
|
-
if (action.assetId !== undefined && (typeof action.assetId !== 'string' || action.assetId.trim().length === 0)) {
|
|
56
|
-
throw new Error(`${field}.assetId must be non-empty when present`);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
function sha256(value) {
|
|
60
|
-
return `sha256:${createHash('sha256').update(value).digest('hex')}`;
|
|
61
|
-
}
|
|
62
|
-
function encodeOwnProperties(value, context) {
|
|
63
|
-
if (Object.getOwnPropertySymbols(value).length > 0) {
|
|
64
|
-
throw new Error('task snapshot contains symbol keys');
|
|
65
|
-
}
|
|
66
|
-
const descriptors = Object.getOwnPropertyDescriptors(value);
|
|
67
|
-
return Object.getOwnPropertyNames(value).map((key) => {
|
|
68
|
-
const descriptor = descriptors[key];
|
|
69
|
-
if (descriptor.get || descriptor.set)
|
|
70
|
-
throw new Error('task snapshot contains accessor properties');
|
|
71
|
-
return `${JSON.stringify(key)}:${canonicalSnapshotValue(descriptor.value, context)}`;
|
|
72
|
-
}).join(',');
|
|
73
|
-
}
|
|
74
|
-
function canonicalSnapshotValue(value, context = { seen: new Map(), nextId: 0 }) {
|
|
75
|
-
if (value === null)
|
|
76
|
-
return 'null';
|
|
77
|
-
if (value === undefined)
|
|
78
|
-
return 'undefined';
|
|
79
|
-
if (typeof value === 'string')
|
|
80
|
-
return `string:${JSON.stringify(value)}`;
|
|
81
|
-
if (typeof value === 'boolean')
|
|
82
|
-
return value ? 'boolean:true' : 'boolean:false';
|
|
83
|
-
if (typeof value === 'number') {
|
|
84
|
-
if (!Number.isFinite(value))
|
|
85
|
-
throw new Error('task snapshot contains a non-finite number');
|
|
86
|
-
return `number:${Object.is(value, -0) ? '-0' : String(value)}`;
|
|
87
|
-
}
|
|
88
|
-
if (typeof value === 'bigint')
|
|
89
|
-
return `bigint:${value.toString()}`;
|
|
90
|
-
if (typeof value !== 'object') {
|
|
91
|
-
throw new Error(`task snapshot contains unsupported ${typeof value} data`);
|
|
92
|
-
}
|
|
93
|
-
const previousId = context.seen.get(value);
|
|
94
|
-
if (previousId !== undefined)
|
|
95
|
-
return `reference:${previousId}`;
|
|
96
|
-
const id = context.nextId;
|
|
97
|
-
context.nextId += 1;
|
|
98
|
-
context.seen.set(value, id);
|
|
99
|
-
if (Array.isArray(value)) {
|
|
100
|
-
return `array#${id}:{${encodeOwnProperties(value, context)}}`;
|
|
101
|
-
}
|
|
102
|
-
if (value instanceof Date) {
|
|
103
|
-
if (Number.isNaN(value.getTime()))
|
|
104
|
-
throw new Error('task snapshot contains an invalid date');
|
|
105
|
-
return `date#${id}:${value.toISOString()}:{${encodeOwnProperties(value, context)}}`;
|
|
106
|
-
}
|
|
107
|
-
if (value instanceof Map) {
|
|
108
|
-
const entries = [...value.entries()].map(([key, item]) => (`${canonicalSnapshotValue(key, context)}=>${canonicalSnapshotValue(item, context)}`));
|
|
109
|
-
return `map#${id}:[${entries.join(',')}]:{${encodeOwnProperties(value, context)}}`;
|
|
110
|
-
}
|
|
111
|
-
if (value instanceof Set) {
|
|
112
|
-
const entries = [...value].map((item) => canonicalSnapshotValue(item, context));
|
|
113
|
-
return `set#${id}:[${entries.join(',')}]:{${encodeOwnProperties(value, context)}}`;
|
|
114
|
-
}
|
|
115
|
-
if (ArrayBuffer.isView(value)) {
|
|
116
|
-
if (typeof SharedArrayBuffer !== 'undefined' && value.buffer instanceof SharedArrayBuffer) {
|
|
117
|
-
throw new Error('task snapshot must not contain SharedArrayBuffer-backed views');
|
|
118
|
-
}
|
|
119
|
-
return `view#${id}:${value.constructor.name}:${value.byteOffset}:${value.byteLength}:${canonicalSnapshotValue(value.buffer, context)}:{${encodeOwnProperties(value, context)}}`;
|
|
120
|
-
}
|
|
121
|
-
if (typeof SharedArrayBuffer !== 'undefined' && value instanceof SharedArrayBuffer) {
|
|
122
|
-
throw new Error('task snapshot must not contain SharedArrayBuffer');
|
|
123
|
-
}
|
|
124
|
-
if (value instanceof ArrayBuffer) {
|
|
125
|
-
return `array-buffer#${id}:${Buffer.from(value).toString('hex')}:{${encodeOwnProperties(value, context)}}`;
|
|
126
|
-
}
|
|
127
|
-
const prototype = Object.getPrototypeOf(value);
|
|
128
|
-
if (prototype !== Object.prototype && prototype !== null) {
|
|
129
|
-
throw new Error('task snapshot contains unsupported non-plain object data');
|
|
130
|
-
}
|
|
131
|
-
return `object#${id}:{${encodeOwnProperties(value, context)}}`;
|
|
132
|
-
}
|
|
133
|
-
function cloneStructured(value, errorMessage) {
|
|
134
|
-
try {
|
|
135
|
-
return structuredClone(value);
|
|
136
|
-
}
|
|
137
|
-
catch {
|
|
138
|
-
throw new Error(errorMessage);
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
/** Compute the digest that the cohort manifest must pre-register for this exact task snapshot. */
|
|
142
|
-
export function computeSelectionFlatTaskFingerprint(task) {
|
|
143
|
-
const snapshot = cloneStructured(task, 'task snapshot must be structured-cloneable for fingerprinting');
|
|
144
|
-
return sha256(canonicalSnapshotValue([
|
|
145
|
-
SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION,
|
|
146
|
-
snapshot.id,
|
|
147
|
-
snapshot.workspaceSnapshotDigest,
|
|
148
|
-
snapshot.split,
|
|
149
|
-
snapshot.stratum,
|
|
150
|
-
snapshot.payload,
|
|
151
|
-
snapshot.selection,
|
|
152
|
-
snapshot.expectation,
|
|
153
|
-
]));
|
|
154
|
-
}
|
|
155
|
-
function isolationKey(datasetDigest, executionNonce, fingerprint, arm) {
|
|
156
|
-
return sha256(`${datasetDigest}\0${executionNonce}\0${fingerprint}\0${arm}`);
|
|
157
|
-
}
|
|
158
|
-
function validateSuite(suite) {
|
|
159
|
-
assertSafeMetadata(suite.name, 'suite.name');
|
|
160
|
-
assertSafeMetadata(suite.cohort.id, 'cohort.id');
|
|
161
|
-
assertSafeMetadata(suite.cohort.version, 'cohort.version');
|
|
162
|
-
assertSafeMetadata(suite.cohort.verifier.id, 'cohort.verifier.id');
|
|
163
|
-
assertSafeMetadata(suite.cohort.verifier.version, 'cohort.verifier.version');
|
|
164
|
-
if (typeof suite.cohort.sourceCommit !== 'string'
|
|
165
|
-
|| !FULL_COMMIT_RE.test(suite.cohort.sourceCommit)) {
|
|
166
|
-
throw new Error('cohort.sourceCommit must be a full lowercase 40-hex commit');
|
|
167
|
-
}
|
|
168
|
-
if (suite.cohort.taskFingerprints.length !== suite.tasks.length) {
|
|
169
|
-
throw new Error('pre-registered cohort does not match the benchmark tasks');
|
|
170
|
-
}
|
|
171
|
-
const ids = new Set();
|
|
172
|
-
const fingerprints = new Set();
|
|
173
|
-
for (const [index, task] of suite.tasks.entries()) {
|
|
174
|
-
assertSafeMetadata(task.id, `tasks[${index}].id`);
|
|
175
|
-
assertSafeMetadata(task.stratum, `tasks[${index}].stratum`);
|
|
176
|
-
if (task.split !== 'calibration' && task.split !== 'holdout') {
|
|
177
|
-
throw new Error(`invalid split for task ${task.id}`);
|
|
178
|
-
}
|
|
179
|
-
if (typeof task.workspaceSnapshotDigest !== 'string'
|
|
180
|
-
|| !SHA256_RE.test(task.workspaceSnapshotDigest)) {
|
|
181
|
-
throw new Error(`invalid workspace snapshot digest for task ${task.id}`);
|
|
182
|
-
}
|
|
183
|
-
if (task.expectation?.role !== 'target' && task.expectation?.role !== 'control') {
|
|
184
|
-
throw new Error(`invalid expected role for task ${task.id}`);
|
|
185
|
-
}
|
|
186
|
-
validateExpectedAction(task.expectation.currentAction, `task ${task.id} current expectation`);
|
|
187
|
-
validateExpectedAction(task.expectation.globalFlatAbstainAction, `task ${task.id} global expectation`);
|
|
188
|
-
if (ids.has(task.id))
|
|
189
|
-
throw new Error(`duplicate task id: ${task.id}`);
|
|
190
|
-
if (fingerprints.has(task.taskFingerprint)) {
|
|
191
|
-
throw new Error(`duplicate task fingerprint: ${task.taskFingerprint}`);
|
|
192
|
-
}
|
|
193
|
-
if (typeof task.taskFingerprint !== 'string' || !SHA256_RE.test(task.taskFingerprint)) {
|
|
194
|
-
throw new Error(`invalid task fingerprint for ${task.id}`);
|
|
195
|
-
}
|
|
196
|
-
if (computeSelectionFlatTaskFingerprint(task) !== task.taskFingerprint) {
|
|
197
|
-
throw new Error(`task content fingerprint mismatch for ${task.id}`);
|
|
198
|
-
}
|
|
199
|
-
if (suite.cohort.taskFingerprints[index] !== task.taskFingerprint) {
|
|
200
|
-
throw new Error(`pre-registered cohort order mismatch at task ${task.id}`);
|
|
201
|
-
}
|
|
202
|
-
ids.add(task.id);
|
|
203
|
-
fingerprints.add(task.taskFingerprint);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
function cleanOutcome(taskId, expectedVerifier, outcome) {
|
|
207
|
-
const passed = outcome?.passed;
|
|
208
|
-
const producedValue = outcome?.producedValue;
|
|
209
|
-
const unsafe = outcome?.unsafe;
|
|
210
|
-
const cost = outcome?.cost;
|
|
211
|
-
const verifier = outcome?.verifier;
|
|
212
|
-
const verifierId = verifier?.id;
|
|
213
|
-
const verifierVersion = verifier?.version;
|
|
214
|
-
const proofSha256 = verifier?.proofSha256;
|
|
215
|
-
if (typeof passed !== 'boolean'
|
|
216
|
-
|| typeof producedValue !== 'boolean'
|
|
217
|
-
|| typeof unsafe !== 'boolean') {
|
|
218
|
-
throw new Error(`verifier returned invalid boolean fields for task ${taskId}`);
|
|
219
|
-
}
|
|
220
|
-
if (!Number.isFinite(cost) || cost < 0) {
|
|
221
|
-
throw new Error(`verifier returned invalid cost for task ${taskId}`);
|
|
222
|
-
}
|
|
223
|
-
if (verifierId !== expectedVerifier.id || verifierVersion !== expectedVerifier.version) {
|
|
224
|
-
throw new Error(`verifier identity mismatch for task ${taskId}`);
|
|
225
|
-
}
|
|
226
|
-
if (typeof proofSha256 !== 'string' || !SHA256_RE.test(proofSha256)) {
|
|
227
|
-
throw new Error(`verifier returned invalid proof digest for task ${taskId}`);
|
|
228
|
-
}
|
|
229
|
-
// Rebuild the object so adapter-only logs or payloads cannot leak into the persisted report.
|
|
230
|
-
return {
|
|
231
|
-
passed,
|
|
232
|
-
producedValue,
|
|
233
|
-
unsafe,
|
|
234
|
-
cost,
|
|
235
|
-
verifier: {
|
|
236
|
-
id: verifierId,
|
|
237
|
-
version: verifierVersion,
|
|
238
|
-
proofSha256,
|
|
239
|
-
},
|
|
240
|
-
};
|
|
241
|
-
}
|
|
242
|
-
function logAdd(left, right) {
|
|
243
|
-
if (left === Number.NEGATIVE_INFINITY)
|
|
244
|
-
return right;
|
|
245
|
-
if (right === Number.NEGATIVE_INFINITY)
|
|
246
|
-
return left;
|
|
247
|
-
const high = Math.max(left, right);
|
|
248
|
-
return high + Math.log(Math.exp(left - high) + Math.exp(right - high));
|
|
249
|
-
}
|
|
250
|
-
/** Exact two-sided McNemar p-value over the discordant pairs. */
|
|
251
|
-
export function exactMcNemarTwoSided(globalOnlyPass, currentOnlyPass) {
|
|
252
|
-
if (!Number.isSafeInteger(globalOnlyPass) || globalOnlyPass < 0
|
|
253
|
-
|| !Number.isSafeInteger(currentOnlyPass) || currentOnlyPass < 0) {
|
|
254
|
-
throw new Error('McNemar counts must be non-negative safe integers');
|
|
255
|
-
}
|
|
256
|
-
const discordant = globalOnlyPass + currentOnlyPass;
|
|
257
|
-
if (!Number.isSafeInteger(discordant)) {
|
|
258
|
-
throw new Error('McNemar discordant total must be a safe integer');
|
|
259
|
-
}
|
|
260
|
-
if (discordant === 0)
|
|
261
|
-
return 1;
|
|
262
|
-
const tail = Math.min(globalOnlyPass, currentOnlyPass);
|
|
263
|
-
let logProbability = -discordant * Math.log(2);
|
|
264
|
-
let logCumulative = logProbability;
|
|
265
|
-
for (let k = 1; k <= tail; k += 1) {
|
|
266
|
-
logProbability += Math.log(discordant - k + 1) - Math.log(k);
|
|
267
|
-
logCumulative = logAdd(logCumulative, logProbability);
|
|
268
|
-
}
|
|
269
|
-
return Math.min(1, 2 * Math.exp(logCumulative));
|
|
270
|
-
}
|
|
271
|
-
/** Distribution-free Hoeffding 95% CI for the mean paired success difference (global minus current). */
|
|
272
|
-
export function pairedRiskDifference95(pairs) {
|
|
273
|
-
if (pairs.length === 0)
|
|
274
|
-
return { difference: 0, ci95Low: -1, ci95High: 1 };
|
|
275
|
-
const differences = pairs.map((pair) => Number(pair.globalFlatAbstainPassed) - Number(pair.currentPassed));
|
|
276
|
-
const difference = differences.reduce((sum, value) => sum + value, 0) / differences.length;
|
|
277
|
-
// Each paired difference lies in [-1, 1], so Hoeffding remains valid at small n and at all-win boundaries.
|
|
278
|
-
const margin = Math.sqrt((2 * Math.log(2 / CI95_ALPHA)) / differences.length);
|
|
279
|
-
return {
|
|
280
|
-
difference,
|
|
281
|
-
ci95Low: Math.max(-1, difference - margin),
|
|
282
|
-
ci95High: Math.min(1, difference + margin),
|
|
283
|
-
};
|
|
284
|
-
}
|
|
285
|
-
function rate(count, total) {
|
|
286
|
-
return total === 0 ? 0 : count / total;
|
|
287
|
-
}
|
|
288
|
-
function average(values) {
|
|
289
|
-
return values.length === 0 ? 0 : values.reduce((sum, value) => sum + value, 0) / values.length;
|
|
290
|
-
}
|
|
291
|
-
function summarizeRows(rows) {
|
|
292
|
-
const n = rows.length;
|
|
293
|
-
let bothPass = 0;
|
|
294
|
-
let bothFail = 0;
|
|
295
|
-
let globalOnlyPass = 0;
|
|
296
|
-
let currentOnlyPass = 0;
|
|
297
|
-
for (const row of rows) {
|
|
298
|
-
const currentPassed = row.current.outcome.passed;
|
|
299
|
-
const globalPassed = row.globalFlatAbstain.outcome.passed;
|
|
300
|
-
if (currentPassed && globalPassed)
|
|
301
|
-
bothPass += 1;
|
|
302
|
-
else if (!currentPassed && !globalPassed)
|
|
303
|
-
bothFail += 1;
|
|
304
|
-
else if (globalPassed)
|
|
305
|
-
globalOnlyPass += 1;
|
|
306
|
-
else
|
|
307
|
-
currentOnlyPass += 1;
|
|
308
|
-
}
|
|
309
|
-
const currentPasses = bothPass + currentOnlyPass;
|
|
310
|
-
const globalFlatAbstainPasses = bothPass + globalOnlyPass;
|
|
311
|
-
const currentUnsafeRate = rate(rows.filter((row) => row.current.outcome.unsafe).length, n);
|
|
312
|
-
const globalUnsafeRate = rate(rows.filter((row) => row.globalFlatAbstain.outcome.unsafe).length, n);
|
|
313
|
-
const currentAverageCost = average(rows.map((row) => row.current.outcome.cost));
|
|
314
|
-
const globalAverageCost = average(rows.map((row) => row.globalFlatAbstain.outcome.cost));
|
|
315
|
-
const risk = pairedRiskDifference95(rows.map((row) => ({
|
|
316
|
-
currentPassed: row.current.outcome.passed,
|
|
317
|
-
globalFlatAbstainPassed: row.globalFlatAbstain.outcome.passed,
|
|
318
|
-
})));
|
|
319
|
-
return {
|
|
320
|
-
n,
|
|
321
|
-
currentPasses,
|
|
322
|
-
globalFlatAbstainPasses,
|
|
323
|
-
bothPass,
|
|
324
|
-
bothFail,
|
|
325
|
-
globalOnlyPass,
|
|
326
|
-
currentOnlyPass,
|
|
327
|
-
currentPassRate: rate(currentPasses, n),
|
|
328
|
-
globalFlatAbstainPassRate: rate(globalFlatAbstainPasses, n),
|
|
329
|
-
pairedRiskDifference: risk.difference,
|
|
330
|
-
ci95Low: risk.ci95Low,
|
|
331
|
-
ci95High: risk.ci95High,
|
|
332
|
-
mcnemarPValue: exactMcNemarTwoSided(globalOnlyPass, currentOnlyPass),
|
|
333
|
-
currentProducedValueRate: rate(rows.filter((row) => row.current.outcome.producedValue).length, n),
|
|
334
|
-
globalFlatAbstainProducedValueRate: rate(rows.filter((row) => row.globalFlatAbstain.outcome.producedValue).length, n),
|
|
335
|
-
currentUnsafeRate,
|
|
336
|
-
globalFlatAbstainUnsafeRate: globalUnsafeRate,
|
|
337
|
-
unsafeRateDelta: globalUnsafeRate - currentUnsafeRate,
|
|
338
|
-
currentAverageCost,
|
|
339
|
-
globalFlatAbstainAverageCost: globalAverageCost,
|
|
340
|
-
averageCostDelta: globalAverageCost - currentAverageCost,
|
|
341
|
-
currentInnovateRate: rate(rows.filter((row) => row.current.action === 'innovate').length, n),
|
|
342
|
-
globalFlatAbstainInnovateRate: rate(rows.filter((row) => row.globalFlatAbstain.action === 'innovate').length, n),
|
|
343
|
-
};
|
|
344
|
-
}
|
|
345
|
-
function cloneTaskForArm(task) {
|
|
346
|
-
return cloneStructured(task, `task ${task.id} must be structured-cloneable for isolated arm execution`);
|
|
347
|
-
}
|
|
348
|
-
function cloneSuiteSnapshot(suite) {
|
|
349
|
-
return cloneStructured(suite, 'benchmark suite must be structured-cloneable before validation');
|
|
350
|
-
}
|
|
351
|
-
function cloneAction(action) {
|
|
352
|
-
return action.kind === 'innovate'
|
|
353
|
-
? { kind: 'innovate' }
|
|
354
|
-
: {
|
|
355
|
-
kind: 'reuse',
|
|
356
|
-
geneId: action.geneId,
|
|
357
|
-
...(action.assetId ? { assetId: action.assetId } : {}),
|
|
358
|
-
};
|
|
359
|
-
}
|
|
360
|
-
function benchmarkDatasetDigest(suite, comparisons) {
|
|
361
|
-
const material = [
|
|
362
|
-
SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION,
|
|
363
|
-
suite.name,
|
|
364
|
-
suite.cohort.id,
|
|
365
|
-
suite.cohort.version,
|
|
366
|
-
suite.cohort.sourceCommit,
|
|
367
|
-
suite.cohort.verifier.id,
|
|
368
|
-
suite.cohort.verifier.version,
|
|
369
|
-
suite.tasks.map((task, index) => [
|
|
370
|
-
index,
|
|
371
|
-
task.taskFingerprint,
|
|
372
|
-
task.split,
|
|
373
|
-
task.stratum,
|
|
374
|
-
comparisons[index]?.targeted === true,
|
|
375
|
-
comparisons[index]?.currentAction.kind,
|
|
376
|
-
comparisons[index]?.globalFlatAbstainAction.kind,
|
|
377
|
-
]),
|
|
378
|
-
];
|
|
379
|
-
return sha256(JSON.stringify(material));
|
|
380
|
-
}
|
|
381
|
-
function validatePreRegisteredExpectation(task, comparison) {
|
|
382
|
-
const actualRole = comparison.targeted ? 'target' : 'control';
|
|
383
|
-
if (task.expectation.role !== actualRole) {
|
|
384
|
-
throw new Error(`pre-registered role mismatch for task ${task.id}`);
|
|
385
|
-
}
|
|
386
|
-
if (!actionsEqual(task.expectation.currentAction, comparison.currentAction)) {
|
|
387
|
-
throw new Error(`pre-registered current action mismatch for task ${task.id}`);
|
|
388
|
-
}
|
|
389
|
-
if (!actionsEqual(task.expectation.globalFlatAbstainAction, comparison.globalFlatAbstainAction)) {
|
|
390
|
-
throw new Error(`pre-registered global action mismatch for task ${task.id}`);
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
function rowsByStratum(rows) {
|
|
394
|
-
const result = Object.create(null);
|
|
395
|
-
const strata = [...new Set(rows.map((row) => row.stratum))].sort();
|
|
396
|
-
for (const stratum of strata) {
|
|
397
|
-
result[stratum] = summarizeRows(rows.filter((row) => row.stratum === stratum));
|
|
398
|
-
}
|
|
399
|
-
return result;
|
|
400
|
-
}
|
|
401
|
-
/**
|
|
402
|
-
* Run a pre-registered, full-information paired benchmark. Controls are classification checks only and are never
|
|
403
|
-
* executed. Target tasks run both arms on separately cloned inputs and caller-owned isolated workspaces.
|
|
404
|
-
*/
|
|
405
|
-
export async function runSelectionFlatAbstentionBenchmark(suite, verifier) {
|
|
406
|
-
const snapshot = cloneSuiteSnapshot(suite);
|
|
407
|
-
validateSuite(snapshot);
|
|
408
|
-
const comparisons = snapshot.tasks.map((task) => compareOutsidePlateauFlatSelection(task.selection));
|
|
409
|
-
snapshot.tasks.forEach((task, index) => {
|
|
410
|
-
validatePreRegisteredExpectation(task, comparisons[index]);
|
|
411
|
-
});
|
|
412
|
-
const datasetDigest = benchmarkDatasetDigest(snapshot, comparisons);
|
|
413
|
-
const executionNonce = randomUUID();
|
|
414
|
-
const rows = [];
|
|
415
|
-
let targetIndex = 0;
|
|
416
|
-
for (const [taskIndex, task] of snapshot.tasks.entries()) {
|
|
417
|
-
const comparison = comparisons[taskIndex];
|
|
418
|
-
if (!comparison.targeted) {
|
|
419
|
-
if (!actionsEqual(comparison.currentAction, comparison.globalFlatAbstainAction)) {
|
|
420
|
-
throw new Error(`control action divergence for task ${task.id}`);
|
|
421
|
-
}
|
|
422
|
-
continue;
|
|
423
|
-
}
|
|
424
|
-
const armOrder = targetIndex % 2 === 0
|
|
425
|
-
? ['current', 'global-flat-abstain']
|
|
426
|
-
: ['global-flat-abstain', 'current'];
|
|
427
|
-
targetIndex += 1;
|
|
428
|
-
const outcomes = new Map();
|
|
429
|
-
for (const [order, arm] of armOrder.entries()) {
|
|
430
|
-
const action = arm === 'current'
|
|
431
|
-
? comparison.currentAction
|
|
432
|
-
: comparison.globalFlatAbstainAction;
|
|
433
|
-
const rawOutcome = await verifier({
|
|
434
|
-
task: cloneTaskForArm(task),
|
|
435
|
-
arm,
|
|
436
|
-
action: cloneAction(action),
|
|
437
|
-
isolationKey: isolationKey(datasetDigest, executionNonce, task.taskFingerprint, arm),
|
|
438
|
-
order: order,
|
|
439
|
-
});
|
|
440
|
-
outcomes.set(arm, cleanOutcome(task.id, snapshot.cohort.verifier, rawOutcome));
|
|
441
|
-
}
|
|
442
|
-
rows.push({
|
|
443
|
-
taskFingerprint: task.taskFingerprint,
|
|
444
|
-
split: task.split,
|
|
445
|
-
stratum: task.stratum,
|
|
446
|
-
armOrder,
|
|
447
|
-
current: {
|
|
448
|
-
action: comparison.currentAction.kind,
|
|
449
|
-
outcome: outcomes.get('current'),
|
|
450
|
-
},
|
|
451
|
-
globalFlatAbstain: {
|
|
452
|
-
action: comparison.globalFlatAbstainAction.kind,
|
|
453
|
-
outcome: outcomes.get('global-flat-abstain'),
|
|
454
|
-
},
|
|
455
|
-
});
|
|
456
|
-
}
|
|
457
|
-
return {
|
|
458
|
-
benchmarkVersion: SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION,
|
|
459
|
-
statisticalMethods: {
|
|
460
|
-
mcnemar: 'exact-two-sided-binomial',
|
|
461
|
-
riskDifferenceCi: 'paired-hoeffding-95',
|
|
462
|
-
},
|
|
463
|
-
suite: snapshot.name,
|
|
464
|
-
cohort: {
|
|
465
|
-
id: snapshot.cohort.id,
|
|
466
|
-
version: snapshot.cohort.version,
|
|
467
|
-
sourceCommit: snapshot.cohort.sourceCommit,
|
|
468
|
-
verifier: { ...snapshot.cohort.verifier },
|
|
469
|
-
registeredTasks: snapshot.cohort.taskFingerprints.length,
|
|
470
|
-
},
|
|
471
|
-
datasetDigest,
|
|
472
|
-
targetTasks: rows.length,
|
|
473
|
-
controlTasks: snapshot.tasks.length - rows.length,
|
|
474
|
-
controlDivergences: 0,
|
|
475
|
-
rows,
|
|
476
|
-
overall: summarizeRows(rows),
|
|
477
|
-
calibration: summarizeRows(rows.filter((row) => row.split === 'calibration')),
|
|
478
|
-
holdout: summarizeRows(rows.filter((row) => row.split === 'holdout')),
|
|
479
|
-
strata: rowsByStratum(rows),
|
|
480
|
-
};
|
|
481
|
-
}
|
|
1
|
+
const _0x2d37aa=_0x50c9;(function(_0x1d0305,_0x1df068){const _0x45099d=_0x50c9,_0x26de1d=_0x1d0305();while(!![]){try{const _0x7962cd=-parseInt(_0x45099d(0x444,'\x34\x28\x49\x31'))/(-0xb*-0x8a+-0xeea+0x8fd*0x1)+parseInt(_0x45099d(0x375,'\x63\x64\x43\x49'))/(-0x266b+-0x6*0xe2+-0x5b*-0x7b)+-parseInt(_0x45099d(0x268,'\x26\x51\x40\x23'))/(0x27e+-0x154d+-0x42*-0x49)+-parseInt(_0x45099d(0x3a3,'\x33\x5b\x51\x38'))/(0x7f0+-0x65*0x4d+0x1675)*(parseInt(_0x45099d(0x1bc,'\x39\x6a\x50\x4a'))/(0x1c79+-0x4e0+-0x1794))+parseInt(_0x45099d(0x3c8,'\x5e\x76\x77\x28'))/(-0x2148+0x102e+-0x2*-0x890)*(parseInt(_0x45099d(0x3f8,'\x33\x5b\x51\x38'))/(0x13c4+0x6f*0x56+0x463*-0xd))+parseInt(_0x45099d(0x1eb,'\x63\x64\x43\x49'))/(0xd*0x71+-0xa46+0x491)+parseInt(_0x45099d(0x1f0,'\x66\x56\x55\x4e'))/(-0x26ca+0x1eee+0x7e5);if(_0x7962cd===_0x1df068)break;else _0x26de1d['push'](_0x26de1d['shift']());}catch(_0x325dfa){_0x26de1d['push'](_0x26de1d['shift']());}}}(_0x43cc,0x16e28f+-0x7aa56+-0x5f06));import{createHash,randomUUID}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';import{assessSelectionGuard,engineHealthSelection}from'\x2e\x2e\x2f\x61\x6c\x67\x6f\x2f\x67\x65\x6e\x65\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x6a\x73';export const SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION=_0x2d37aa(0x315,'\x41\x46\x35\x58')+_0x2d37aa(0x47d,'\x74\x6b\x4c\x5a')+'\x65\x6e\x74\x69\x6f\x6e\x2d\x70'+_0x2d37aa(0x38a,'\x34\x23\x45\x51');const FULL_COMMIT_RE=/^[0-9a-f]{40}$/,SHA256_RE=/^sha256:[0-9a-f]{64}$/,SAFE_METADATA_RE=/^[A-Za-z0-9][A-Za-z0-9._-]{0,127}$/,CI95_ALPHA=0x106e+0xd9+0x1*-0x1147+0.05;function actionForDecision(_0x3054c2){const _0x23d0f8=_0x2d37aa;if(!_0x3054c2[_0x23d0f8(0x180,'\x62\x73\x68\x47')+'\x47\x65\x6e\x65\x49\x64'])return{'\x6b\x69\x6e\x64':_0x23d0f8(0x32c,'\x54\x7a\x24\x71')};return{'\x6b\x69\x6e\x64':_0x23d0f8(0x3c6,'\x34\x28\x49\x31'),'\x67\x65\x6e\x65\x49\x64':_0x3054c2[_0x23d0f8(0x3c0,'\x33\x33\x30\x28')+_0x23d0f8(0x2cd,'\x5e\x63\x65\x54')],..._0x3054c2[_0x23d0f8(0x27d,'\x54\x41\x56\x41')+_0x23d0f8(0x1a3,'\x66\x56\x55\x4e')]?{'\x61\x73\x73\x65\x74\x49\x64':_0x3054c2[_0x23d0f8(0x1cd,'\x62\x6e\x50\x46')+_0x23d0f8(0x3fc,'\x34\x28\x49\x31')]}:{}};}function actionsEqual(_0x173f84,_0x28bef0){const _0x104ac9=_0x2d37aa;return _0x173f84['\x6b\x69\x6e\x64']===_0x28bef0[_0x104ac9(0x471,'\x5e\x65\x76\x64')]&&(_0x173f84[_0x104ac9(0x20a,'\x33\x5b\x51\x38')]===_0x104ac9(0x365,'\x34\x23\x45\x51')||_0x28bef0[_0x104ac9(0x1e3,'\x62\x6e\x50\x46')]===_0x104ac9(0x42d,'\x48\x39\x75\x6b')&&_0x173f84[_0x104ac9(0x2c3,'\x74\x31\x2a\x7a')]===_0x28bef0[_0x104ac9(0x2c1,'\x62\x73\x68\x47')]&&_0x173f84[_0x104ac9(0x1c8,'\x30\x33\x26\x49')]===_0x28bef0[_0x104ac9(0x47b,'\x54\x41\x56\x41')]);}export function compareOutsidePlateauFlatSelection(_0x42983e){const _0x4a2701=_0x2d37aa,_0x43999f=engineHealthSelection[_0x4a2701(0x29d,'\x68\x65\x39\x5b')]({..._0x42983e,'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x4a2701(0x175,'\x34\x28\x49\x31')},{'\x6e\x6f\x77':0x0,'\x63\x79\x63\x6c\x65\x49\x64':'\x62\x65\x6e\x63\x68\x6d\x61\x72'+_0x4a2701(0x314,'\x54\x7a\x24\x71')+_0x4a2701(0x21e,'\x55\x47\x52\x57')+_0x4a2701(0x179,'\x21\x30\x52\x63'),'\x72\x6e\x67':()=>0x1a1f+-0x6a*-0x45+-0x36b1+0.5}),_0x18baa7=actionForDecision(_0x43999f),_0x218f4a=_0x42983e[_0x4a2701(0x3b9,'\x77\x68\x70\x25')]??-0x1*-0x1a3c+-0x3f9+-0x1643,_0x2e209e=_0x43999f[_0x4a2701(0x423,'\x2a\x68\x40\x37')+'\x65\x73']['\x66\x69\x6c\x74\x65\x72'](_0x5dcf6e=>_0x5dcf6e[_0x4a2701(0x42b,'\x30\x65\x62\x5d')]>_0x218f4a),_0xd1adc9=assessSelectionGuard(_0x2e209e,!![]),_0x395683=_0x42983e['\x65\x78\x70\x6c\x6f\x72\x61\x74'+_0x4a2701(0x1a4,'\x66\x56\x55\x4e')]?.[_0x4a2701(0x388,'\x50\x50\x6a\x30')]?.[_0x4a2701(0x221,'\x39\x6a\x50\x4a')]!==!![]&&_0x42983e[_0x4a2701(0x33c,'\x5e\x65\x76\x64')+_0x4a2701(0x2ec,'\x54\x41\x56\x41')]?.[_0x4a2701(0x17c,'\x54\x24\x6c\x57')+_0x4a2701(0x25b,'\x66\x56\x55\x4e')]!==!![]&&!_0x42983e[_0x4a2701(0x2dd,'\x54\x7a\x24\x71')+_0x4a2701(0x1d8,'\x41\x46\x35\x58')]?.[_0x4a2701(0x2f8,'\x74\x31\x2a\x7a')]()&&_0x18baa7[_0x4a2701(0x2b8,'\x63\x6d\x7a\x2a')]===_0x4a2701(0x414,'\x6c\x46\x5b\x5d')&&_0x43999f[_0x4a2701(0x2ab,'\x66\x56\x55\x4e')+'\x6e\x47\x75\x61\x72\x64']?.['\x73\x74\x61\x74\x75\x73']===_0x4a2701(0x27a,'\x32\x54\x21\x21')&&_0xd1adc9['\x72\x65\x61\x73\x6f\x6e']===_0x4a2701(0x266,'\x39\x6a\x50\x4a')+_0x4a2701(0x1da,'\x5d\x4f\x39\x40')+'\x63\x68';return{'\x74\x61\x72\x67\x65\x74\x65\x64':_0x395683,..._0x395683?{'\x74\x61\x72\x67\x65\x74\x52\x65\x61\x73\x6f\x6e':_0x4a2701(0x24b,'\x26\x63\x63\x50')+_0x4a2701(0x42c,'\x76\x48\x6f\x4d')+_0x4a2701(0x24d,'\x4a\x6a\x32\x4e')+_0x4a2701(0x3d6,'\x29\x5a\x28\x71')}:{},'\x63\x75\x72\x72\x65\x6e\x74\x44\x65\x63\x69\x73\x69\x6f\x6e':_0x43999f,'\x63\x75\x72\x72\x65\x6e\x74\x41\x63\x74\x69\x6f\x6e':_0x18baa7,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x41\x63\x74\x69\x6f\x6e':_0x395683?{'\x6b\x69\x6e\x64':_0x4a2701(0x27e,'\x68\x4b\x6f\x5b')}:_0x18baa7};}function _0x50c9(_0x22488b,_0x23ec9a){_0x22488b=_0x22488b-(0x761*-0x5+0x11db+0x1476);const _0x1d3850=_0x43cc();let _0x341901=_0x1d3850[_0x22488b];if(_0x50c9['\x44\x53\x54\x76\x57\x69']===undefined){var _0x3375fc=function(_0x4e30e2){const _0x9883e5='\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 _0x45f037='',_0x3250bd='';for(let _0x14018e=-0x10*-0x19+0x1d5e+-0x1eee,_0x440b76,_0x4abe41,_0x410595=-0x1*0x132f+-0x1b28+0x2e57;_0x4abe41=_0x4e30e2['\x63\x68\x61\x72\x41\x74'](_0x410595++);~_0x4abe41&&(_0x440b76=_0x14018e%(-0xbe0+-0x16*0x84+0x5cf*0x4)?_0x440b76*(0x1c83+0x3*0x702+-0x1*0x3149)+_0x4abe41:_0x4abe41,_0x14018e++%(0x1164+-0x6e*-0x13+-0x198a))?_0x45f037+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x902*-0x1+0x1e8e*-0x1+0x288f&_0x440b76>>(-(0xf*-0xa3+-0x556*-0x1+0x439)*_0x14018e&-0x10ee+0x757*0x3+-0x511)):-0xaa0+-0x1412+-0x1*-0x1eb2){_0x4abe41=_0x9883e5['\x69\x6e\x64\x65\x78\x4f\x66'](_0x4abe41);}for(let _0x4197a5=-0x247d+-0x3e*-0x1d+-0x18d*-0x13,_0x1f718d=_0x45f037['\x6c\x65\x6e\x67\x74\x68'];_0x4197a5<_0x1f718d;_0x4197a5++){_0x3250bd+='\x25'+('\x30\x30'+_0x45f037['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4197a5)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x4*-0x1d3+0x1*-0x69d+-0x9f))['\x73\x6c\x69\x63\x65'](-(0x13*-0x6d+0x24be+-0x1ca5*0x1));}return decodeURIComponent(_0x3250bd);};const _0xd4e1a2=function(_0x37e228,_0x39add1){let _0x3815d7=[],_0x4045ab=-0x268d*0x1+-0x1438+0x127*0x33,_0x4d9277,_0x6c7c61='';_0x37e228=_0x3375fc(_0x37e228);let _0x1230a1;for(_0x1230a1=-0x2f*-0x6b+-0xe8a*0x1+-0x51b;_0x1230a1<0x152b*0x1+-0x1b35+0x70a;_0x1230a1++){_0x3815d7[_0x1230a1]=_0x1230a1;}for(_0x1230a1=-0x1b58+0xafb*0x1+0x105d;_0x1230a1<0x12bb+-0x1*-0x1c1b+-0x2dd6;_0x1230a1++){_0x4045ab=(_0x4045ab+_0x3815d7[_0x1230a1]+_0x39add1['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1230a1%_0x39add1['\x6c\x65\x6e\x67\x74\x68']))%(0x2086+-0x19b+-0x1deb),_0x4d9277=_0x3815d7[_0x1230a1],_0x3815d7[_0x1230a1]=_0x3815d7[_0x4045ab],_0x3815d7[_0x4045ab]=_0x4d9277;}_0x1230a1=-0x22f6+-0x2001+0x42f7,_0x4045ab=-0x2*0x134a+0x523*-0x4+0x3b20;for(let _0x3bab19=0x1*0x61a+-0x1a78+0x145e;_0x3bab19<_0x37e228['\x6c\x65\x6e\x67\x74\x68'];_0x3bab19++){_0x1230a1=(_0x1230a1+(0xcf6+-0x5e*0x1d+0x3*-0xc5))%(-0x1e1*-0x5+-0x406+0x45f*-0x1),_0x4045ab=(_0x4045ab+_0x3815d7[_0x1230a1])%(0xe*0x18a+0x63*0x27+-0x23a1),_0x4d9277=_0x3815d7[_0x1230a1],_0x3815d7[_0x1230a1]=_0x3815d7[_0x4045ab],_0x3815d7[_0x4045ab]=_0x4d9277,_0x6c7c61+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x37e228['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3bab19)^_0x3815d7[(_0x3815d7[_0x1230a1]+_0x3815d7[_0x4045ab])%(0x1443+0x42*0xa+-0x1*0x15d7)]);}return _0x6c7c61;};_0x50c9['\x49\x70\x46\x6d\x75\x42']=_0xd4e1a2,_0x50c9['\x57\x46\x6c\x45\x70\x57']={},_0x50c9['\x44\x53\x54\x76\x57\x69']=!![];}const _0x4c164e=_0x1d3850[-0x8e9*0x1+-0x2d*-0x61+0x209*-0x4],_0x53616e=_0x22488b+_0x4c164e,_0x20aacd=_0x50c9['\x57\x46\x6c\x45\x70\x57'][_0x53616e];return!_0x20aacd?(_0x50c9['\x79\x48\x76\x4a\x61\x52']===undefined&&(_0x50c9['\x79\x48\x76\x4a\x61\x52']=!![]),_0x341901=_0x50c9['\x49\x70\x46\x6d\x75\x42'](_0x341901,_0x23ec9a),_0x50c9['\x57\x46\x6c\x45\x70\x57'][_0x53616e]=_0x341901):_0x341901=_0x20aacd,_0x341901;}function assertSafeMetadata(_0x168f12,_0x5c9fed){const _0x17c295=_0x2d37aa;if(typeof _0x168f12!==_0x17c295(0x1de,'\x54\x7a\x24\x71')||!SAFE_METADATA_RE[_0x17c295(0x254,'\x5d\x4e\x72\x41')](_0x168f12))throw new Error(_0x5c9fed+(_0x17c295(0x2cb,'\x5d\x4f\x39\x40')+_0x17c295(0x1b6,'\x56\x74\x72\x52')+_0x17c295(0x3f4,'\x54\x24\x6c\x57')+_0x17c295(0x186,'\x5d\x4f\x39\x40')+_0x17c295(0x347,'\x5e\x65\x76\x64')));}function validateExpectedAction(_0x34c13d,_0x370474){const _0x56960d=_0x2d37aa;if(_0x34c13d?.[_0x56960d(0x3a9,'\x5e\x63\x65\x54')]==='\x69\x6e\x6e\x6f\x76\x61\x74\x65')return;if(_0x34c13d?.[_0x56960d(0x1c6,'\x26\x6c\x28\x61')]!==_0x56960d(0x28e,'\x54\x7a\x24\x71')||typeof _0x34c13d[_0x56960d(0x2bb,'\x50\x50\x6a\x30')]!==_0x56960d(0x37d,'\x66\x56\x55\x4e')||_0x34c13d[_0x56960d(0x2c1,'\x62\x73\x68\x47')][_0x56960d(0x391,'\x76\x48\x6f\x4d')]()['\x6c\x65\x6e\x67\x74\x68']===-0xfc7+-0x5b*-0x2a+0xd9)throw new Error(_0x370474+(_0x56960d(0x33b,'\x77\x31\x62\x25')+_0x56960d(0x1ab,'\x74\x6b\x4c\x5a')+_0x56960d(0x40c,'\x68\x65\x39\x5b')+_0x56960d(0x2fc,'\x54\x7a\x24\x71')+'\x6e'));if(_0x34c13d['\x61\x73\x73\x65\x74\x49\x64']!==undefined&&(typeof _0x34c13d[_0x56960d(0x231,'\x54\x24\x6c\x57')]!=='\x73\x74\x72\x69\x6e\x67'||_0x34c13d[_0x56960d(0x26e,'\x68\x65\x39\x5b')][_0x56960d(0x21b,'\x50\x50\x6a\x30')]()[_0x56960d(0x430,'\x55\x47\x52\x57')]===0x1ff3+0xc0b*0x1+-0x755*0x6)){if(_0x56960d(0x437,'\x6b\x5d\x74\x43')===_0x56960d(0x32b,'\x68\x65\x39\x5b')){if(_0x15a39f===_0x1a9fe1[_0x56960d(0x30d,'\x2a\x68\x40\x37')+'\x5f\x49\x4e\x46\x49\x4e\x49\x54'+'\x59'])return _0x2a9bdb;if(_0x142f35===_0x318e8d[_0x56960d(0x2bd,'\x54\x41\x56\x41')+_0x56960d(0x1cf,'\x4a\x6a\x32\x4e')+'\x59'])return _0x4f46ef;const _0x73ccd2=_0x1b1f7a[_0x56960d(0x23f,'\x63\x64\x43\x49')](_0x1b7fe2,_0x19bddd);return _0x73ccd2+_0x227c1d[_0x56960d(0x346,'\x68\x65\x39\x5b')](_0x50c4d7[_0x56960d(0x194,'\x5e\x65\x76\x64')](_0x971e00-_0x73ccd2)+_0xbe49e4[_0x56960d(0x413,'\x57\x64\x33\x23')](_0x4d1ad5-_0x73ccd2));}else throw new Error(_0x370474+(_0x56960d(0x1d1,'\x30\x65\x62\x5d')+_0x56960d(0x46a,'\x5d\x4e\x72\x41')+'\x20\x6e\x6f\x6e\x2d\x65\x6d\x70'+_0x56960d(0x445,'\x34\x28\x49\x31')+_0x56960d(0x1f3,'\x39\x6a\x50\x4a')));}}function sha256(_0x2c6049){const _0x235820=_0x2d37aa;return _0x235820(0x360,'\x77\x31\x62\x25')+createHash(_0x235820(0x300,'\x39\x6a\x50\x4a'))[_0x235820(0x2de,'\x77\x68\x70\x25')](_0x2c6049)['\x64\x69\x67\x65\x73\x74'](_0x235820(0x1df,'\x76\x48\x6f\x4d'));}function encodeOwnProperties(_0x3a32f9,_0x18d1e0){const _0x3997e6=_0x2d37aa;if(Object['\x67\x65\x74\x4f\x77\x6e\x50\x72'+_0x3997e6(0x271,'\x26\x6c\x28\x61')+_0x3997e6(0x193,'\x77\x68\x70\x25')](_0x3a32f9)[_0x3997e6(0x374,'\x4a\x6a\x32\x4e')]>0x2532+0x223d+-0x476f)throw new Error(_0x3997e6(0x348,'\x68\x65\x39\x5b')+_0x3997e6(0x32e,'\x52\x73\x45\x54')+_0x3997e6(0x1b5,'\x33\x33\x30\x28')+'\x79\x6d\x62\x6f\x6c\x20\x6b\x65'+'\x79\x73');const _0xb151b0=Object[_0x3997e6(0x326,'\x54\x24\x6c\x57')+_0x3997e6(0x25e,'\x77\x68\x70\x25')+_0x3997e6(0x1b0,'\x4a\x6a\x32\x4e')+'\x73'](_0x3a32f9);return Object[_0x3997e6(0x264,'\x54\x5d\x5e\x56')+'\x6f\x70\x65\x72\x74\x79\x4e\x61'+_0x3997e6(0x2e1,'\x63\x6d\x7a\x2a')](_0x3a32f9)[_0x3997e6(0x1cb,'\x74\x6b\x4c\x5a')](_0x58d021=>{const _0x13ed2c=_0x3997e6;if(_0x13ed2c(0x282,'\x4a\x6a\x32\x4e')==='\x73\x43\x67\x62\x4d')return _0x13ed2c(0x173,'\x68\x65\x39\x5b')+_0x53616e+'\x3a\x7b'+_0x20aacd(_0xd4e1a2,_0x4e30e2)+'\x7d';else{const _0xe86ba1=_0xb151b0[_0x58d021];if(_0xe86ba1[_0x13ed2c(0x2e4,'\x4a\x6a\x32\x4e')]||_0xe86ba1[_0x13ed2c(0x24e,'\x66\x56\x55\x4e')])throw new Error('\x74\x61\x73\x6b\x20\x73\x6e\x61'+_0x13ed2c(0x21a,'\x30\x33\x26\x49')+_0x13ed2c(0x41f,'\x34\x28\x49\x31')+_0x13ed2c(0x20e,'\x62\x6e\x50\x46')+_0x13ed2c(0x19c,'\x63\x64\x43\x49')+'\x65\x73');return JSON[_0x13ed2c(0x451,'\x76\x48\x6f\x4d')+'\x79'](_0x58d021)+'\x3a'+canonicalSnapshotValue(_0xe86ba1['\x76\x61\x6c\x75\x65'],_0x18d1e0);}})[_0x3997e6(0x2fa,'\x26\x6c\x28\x61')]('\x2c');}function canonicalSnapshotValue(_0x1cc1cc,_0x38976b={'\x73\x65\x65\x6e':new Map(),'\x6e\x65\x78\x74\x49\x64':0x0}){const _0x160f17=_0x2d37aa;if(_0x1cc1cc===null)return _0x160f17(0x2ca,'\x58\x34\x74\x56');if(_0x1cc1cc===undefined)return _0x160f17(0x211,'\x74\x6b\x4c\x5a')+'\x64';if(typeof _0x1cc1cc===_0x160f17(0x2e8,'\x26\x51\x40\x23'))return _0x160f17(0x41c,'\x74\x31\x2a\x7a')+JSON[_0x160f17(0x466,'\x69\x43\x24\x49')+'\x79'](_0x1cc1cc);if(typeof _0x1cc1cc===_0x160f17(0x389,'\x5d\x4f\x39\x40'))return _0x1cc1cc?_0x160f17(0x2d0,'\x57\x64\x33\x23')+_0x160f17(0x342,'\x57\x64\x33\x23'):_0x160f17(0x181,'\x34\x23\x45\x51')+_0x160f17(0x396,'\x74\x31\x2a\x7a');if(typeof _0x1cc1cc===_0x160f17(0x44d,'\x69\x43\x24\x49')){if(!Number[_0x160f17(0x25f,'\x56\x74\x72\x52')](_0x1cc1cc))throw new Error(_0x160f17(0x307,'\x33\x5b\x51\x38')+_0x160f17(0x3fa,'\x56\x74\x72\x52')+_0x160f17(0x393,'\x26\x6c\x28\x61')+_0x160f17(0x1ad,'\x29\x5a\x28\x71')+_0x160f17(0x178,'\x5d\x4e\x72\x41')+'\x65\x72');return _0x160f17(0x35a,'\x55\x47\x52\x57')+(Object['\x69\x73'](_0x1cc1cc,-(0x1*-0x24d3+-0x1886+0x3d59))?'\x2d\x30':String(_0x1cc1cc));}if(typeof _0x1cc1cc===_0x160f17(0x38e,'\x29\x5a\x28\x71'))return'\x62\x69\x67\x69\x6e\x74\x3a'+_0x1cc1cc[_0x160f17(0x24f,'\x35\x4e\x4d\x65')]();if(typeof _0x1cc1cc!==_0x160f17(0x23a,'\x5e\x65\x76\x64'))throw new Error(_0x160f17(0x380,'\x63\x6d\x7a\x2a')+_0x160f17(0x3cd,'\x54\x7a\x24\x71')+_0x160f17(0x3ff,'\x26\x51\x40\x23')+_0x160f17(0x35e,'\x5d\x4e\x72\x41')+'\x65\x64\x20'+typeof _0x1cc1cc+_0x160f17(0x3f0,'\x33\x5b\x51\x38'));const _0x1eb2d9=_0x38976b[_0x160f17(0x294,'\x5e\x63\x65\x54')][_0x160f17(0x350,'\x21\x30\x52\x63')](_0x1cc1cc);if(_0x1eb2d9!==undefined)return _0x160f17(0x46b,'\x62\x6e\x50\x46')+'\x65\x3a'+_0x1eb2d9;const _0x9eb797=_0x38976b[_0x160f17(0x465,'\x34\x23\x45\x51')];_0x38976b['\x6e\x65\x78\x74\x49\x64']+=-0x1d*0x7a+0x26d5+-0x1902,_0x38976b[_0x160f17(0x30e,'\x29\x5a\x28\x71')][_0x160f17(0x3eb,'\x68\x4b\x6f\x5b')](_0x1cc1cc,_0x9eb797);if(Array['\x69\x73\x41\x72\x72\x61\x79'](_0x1cc1cc))return _0x160f17(0x291,'\x62\x6e\x50\x46')===_0x160f17(0x1f4,'\x49\x43\x63\x37')?_0x470be2(_0x425f3d,_0x160f17(0x3d8,'\x49\x43\x63\x37')+_0x160f17(0x23e,'\x69\x43\x24\x49')+'\x6d\x75\x73\x74\x20\x62\x65\x20'+_0x160f17(0x43b,'\x77\x31\x62\x25')+'\x65\x64\x2d\x63\x6c\x6f\x6e\x65'+'\x61\x62\x6c\x65\x20\x62\x65\x66'+_0x160f17(0x20b,'\x2a\x68\x40\x37')+'\x64\x61\x74\x69\x6f\x6e'):_0x160f17(0x320,'\x62\x73\x68\x47')+_0x9eb797+'\x3a\x7b'+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';if(_0x1cc1cc instanceof Date){if(_0x160f17(0x243,'\x68\x4b\x6f\x5b')===_0x160f17(0x40f,'\x5e\x65\x76\x64')){if(Number[_0x160f17(0x33a,'\x62\x6e\x50\x46')](_0x1cc1cc['\x67\x65\x74\x54\x69\x6d\x65']()))throw new Error(_0x160f17(0x38c,'\x5e\x65\x76\x64')+_0x160f17(0x39a,'\x30\x65\x62\x5d')+_0x160f17(0x1e4,'\x4a\x6a\x32\x4e')+_0x160f17(0x37f,'\x54\x5d\x5e\x56')+_0x160f17(0x2b9,'\x55\x47\x52\x57'));return _0x160f17(0x1a7,'\x77\x31\x62\x25')+_0x9eb797+'\x3a'+_0x1cc1cc[_0x160f17(0x308,'\x29\x5a\x28\x71')+_0x160f17(0x269,'\x6b\x5d\x74\x43')]()+'\x3a\x7b'+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';}else throw new _0xf50fef(_0x160f17(0x21f,'\x26\x6c\x28\x61')+_0x160f17(0x35d,'\x77\x68\x70\x25')+_0x160f17(0x3a6,'\x54\x5d\x5e\x56')+_0x160f17(0x438,'\x6c\x46\x5b\x5d')+'\x79\x73');}if(_0x1cc1cc instanceof Map){const _0x4ea36a=[..._0x1cc1cc[_0x160f17(0x1a5,'\x5e\x76\x77\x28')]()][_0x160f17(0x439,'\x30\x33\x26\x49')](([_0x789141,_0x38cf68])=>canonicalSnapshotValue(_0x789141,_0x38976b)+'\x3d\x3e'+canonicalSnapshotValue(_0x38cf68,_0x38976b));return _0x160f17(0x36d,'\x63\x6d\x7a\x2a')+_0x9eb797+'\x3a\x5b'+_0x4ea36a[_0x160f17(0x429,'\x5e\x65\x76\x64')]('\x2c')+'\x5d\x3a\x7b'+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';}if(_0x1cc1cc instanceof Set){const _0xfa15cb=[..._0x1cc1cc][_0x160f17(0x428,'\x5e\x76\x77\x28')](_0x51ceb2=>canonicalSnapshotValue(_0x51ceb2,_0x38976b));return _0x160f17(0x357,'\x76\x48\x6f\x4d')+_0x9eb797+'\x3a\x5b'+_0xfa15cb[_0x160f17(0x459,'\x32\x54\x21\x21')]('\x2c')+_0x160f17(0x22e,'\x54\x24\x6c\x57')+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';}if(ArrayBuffer[_0x160f17(0x259,'\x26\x51\x40\x23')](_0x1cc1cc)){if(_0x160f17(0x220,'\x48\x39\x75\x6b')===_0x160f17(0x223,'\x30\x33\x26\x49')){if(typeof SharedArrayBuffer!==_0x160f17(0x340,'\x5e\x65\x76\x64')+'\x64'&&_0x1cc1cc[_0x160f17(0x198,'\x32\x54\x21\x21')]instanceof SharedArrayBuffer){if(_0x160f17(0x461,'\x68\x4b\x6f\x5b')===_0x160f17(0x317,'\x55\x68\x24\x57'))return _0x1c2017(_0x4652d5+'\x00'+_0x5478ca+'\x00'+_0x31b9f9+'\x00'+_0x538c43);else throw new Error(_0x160f17(0x27c,'\x77\x68\x70\x25')+_0x160f17(0x2cc,'\x21\x30\x52\x63')+_0x160f17(0x3b2,'\x33\x33\x30\x28')+_0x160f17(0x261,'\x5e\x76\x77\x28')+_0x160f17(0x417,'\x69\x43\x24\x49')+_0x160f17(0x47f,'\x62\x73\x68\x47')+_0x160f17(0x2d6,'\x54\x41\x56\x41')+_0x160f17(0x343,'\x55\x68\x24\x57'));}return'\x76\x69\x65\x77\x23'+_0x9eb797+'\x3a'+_0x1cc1cc[_0x160f17(0x3e2,'\x6b\x5d\x74\x43')+_0x160f17(0x373,'\x56\x74\x72\x52')][_0x160f17(0x1fd,'\x5e\x65\x76\x64')]+'\x3a'+_0x1cc1cc[_0x160f17(0x184,'\x6c\x46\x5b\x5d')+'\x65\x74']+'\x3a'+_0x1cc1cc[_0x160f17(0x253,'\x5d\x4e\x72\x41')+'\x74\x68']+'\x3a'+canonicalSnapshotValue(_0x1cc1cc[_0x160f17(0x1fa,'\x74\x31\x2a\x7a')],_0x38976b)+'\x3a\x7b'+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';}else throw new _0xb79014(_0x160f17(0x32d,'\x54\x5d\x5e\x56')+_0x160f17(0x18e,'\x5e\x76\x77\x28')+_0x160f17(0x202,'\x4a\x6a\x32\x4e')+_0x160f17(0x2e9,'\x26\x6c\x28\x61')+_0x160f17(0x235,'\x50\x50\x6a\x30')+_0x160f17(0x1f7,'\x55\x47\x52\x57')+'\x6b\x20'+_0x16bcfb);}if(typeof SharedArrayBuffer!==_0x160f17(0x31c,'\x68\x65\x39\x5b')+'\x64'&&_0x1cc1cc instanceof SharedArrayBuffer){if(_0x160f17(0x329,'\x57\x64\x33\x23')!==_0x160f17(0x201,'\x32\x54\x21\x21'))throw new Error(_0x160f17(0x3f7,'\x74\x31\x2a\x7a')+_0x160f17(0x27f,'\x54\x7a\x24\x71')+_0x160f17(0x3dc,'\x62\x73\x68\x47')+_0x160f17(0x1b2,'\x21\x30\x52\x63')+_0x160f17(0x3d9,'\x55\x47\x52\x57')+_0x160f17(0x47f,'\x62\x73\x68\x47'));else{if(typeof _0x36a554!==_0x160f17(0x431,'\x56\x74\x72\x52')||!_0x2be296[_0x160f17(0x214,'\x26\x51\x40\x23')](_0x327853))throw new _0x54c075(_0xff2825+(_0x160f17(0x1dc,'\x21\x30\x52\x63')+_0x160f17(0x241,'\x41\x46\x35\x58')+'\x65\x6e\x73\x69\x74\x69\x76\x65'+_0x160f17(0x18c,'\x74\x6b\x4c\x5a')+_0x160f17(0x455,'\x5d\x4f\x39\x40')));}}if(_0x1cc1cc instanceof ArrayBuffer)return _0x160f17(0x2c4,'\x26\x51\x40\x23')+_0x160f17(0x425,'\x54\x24\x6c\x57')+_0x9eb797+'\x3a'+Buffer[_0x160f17(0x30a,'\x68\x65\x39\x5b')](_0x1cc1cc)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](_0x160f17(0x3ab,'\x50\x50\x6a\x30'))+'\x3a\x7b'+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';const _0x4934d6=Object[_0x160f17(0x37a,'\x5e\x76\x77\x28')+_0x160f17(0x1d9,'\x58\x34\x74\x56')](_0x1cc1cc);if(_0x4934d6!==Object[_0x160f17(0x45e,'\x5e\x76\x77\x28')+'\x65']&&_0x4934d6!==null){if(_0x160f17(0x306,'\x5e\x76\x77\x28')===_0x160f17(0x306,'\x5e\x76\x77\x28'))throw new Error('\x74\x61\x73\x6b\x20\x73\x6e\x61'+'\x70\x73\x68\x6f\x74\x20\x63\x6f'+_0x160f17(0x1ef,'\x66\x56\x55\x4e')+_0x160f17(0x21c,'\x55\x47\x52\x57')+_0x160f17(0x238,'\x55\x47\x52\x57')+_0x160f17(0x381,'\x49\x43\x63\x37')+_0x160f17(0x1ac,'\x68\x65\x39\x5b'));else throw new _0x56966e(_0x160f17(0x2bf,'\x66\x56\x55\x4e')+_0x160f17(0x1ce,'\x54\x5d\x5e\x56')+_0x160f17(0x39b,'\x32\x54\x21\x21')+_0x160f17(0x1b2,'\x21\x30\x52\x63')+_0x160f17(0x251,'\x62\x6e\x50\x46')+_0x160f17(0x190,'\x69\x43\x24\x49')+_0x160f17(0x2aa,'\x58\x34\x74\x56')+_0x160f17(0x457,'\x49\x43\x63\x37'));}return _0x160f17(0x174,'\x5d\x4e\x72\x41')+_0x9eb797+'\x3a\x7b'+encodeOwnProperties(_0x1cc1cc,_0x38976b)+'\x7d';}function cloneStructured(_0x43e53e,_0x6aa639){const _0x5583b8=_0x2d37aa;try{if(_0x5583b8(0x20f,'\x30\x65\x62\x5d')!=='\x64\x4d\x54\x77\x76'){const _0x363b32=_0x3dadfd[_0x5583b8(0x2c8,'\x48\x39\x75\x6b')]?'\x74\x61\x72\x67\x65\x74':_0x5583b8(0x449,'\x30\x33\x26\x49');if(_0x1d3a36[_0x5583b8(0x327,'\x69\x43\x24\x49')+_0x5583b8(0x3cc,'\x56\x74\x72\x52')][_0x5583b8(0x1c7,'\x30\x33\x26\x49')]!==_0x363b32)throw new _0x38ca6d(_0x5583b8(0x31f,'\x4a\x6a\x32\x4e')+_0x5583b8(0x199,'\x26\x6c\x28\x61')+'\x6f\x6c\x65\x20\x6d\x69\x73\x6d'+_0x5583b8(0x338,'\x54\x7a\x24\x71')+_0x5583b8(0x1a6,'\x76\x48\x6f\x4d')+_0x289ae1['\x69\x64']);if(!_0x42a938(_0x400b59[_0x5583b8(0x20c,'\x6c\x46\x5b\x5d')+_0x5583b8(0x405,'\x30\x65\x62\x5d')][_0x5583b8(0x38f,'\x77\x31\x62\x25')+_0x5583b8(0x2ac,'\x66\x56\x55\x4e')],_0x3c1361['\x63\x75\x72\x72\x65\x6e\x74\x41'+_0x5583b8(0x331,'\x39\x6a\x50\x4a')]))throw new _0x4e9604(_0x5583b8(0x40a,'\x50\x50\x6a\x30')+_0x5583b8(0x2a8,'\x49\x43\x63\x37')+_0x5583b8(0x255,'\x41\x46\x35\x58')+_0x5583b8(0x256,'\x68\x4b\x6f\x5b')+'\x73\x6d\x61\x74\x63\x68\x20\x66'+_0x5583b8(0x17d,'\x35\x4e\x4d\x65')+_0x47aa71['\x69\x64']);if(!_0x3f600c(_0x1eec4e[_0x5583b8(0x41a,'\x68\x65\x39\x5b')+_0x5583b8(0x176,'\x5e\x63\x65\x54')]['\x67\x6c\x6f\x62\x61\x6c\x46\x6c'+_0x5583b8(0x411,'\x26\x63\x63\x50')+_0x5583b8(0x2b3,'\x74\x31\x2a\x7a')],_0x4468e2[_0x5583b8(0x30c,'\x49\x43\x63\x37')+'\x61\x74\x41\x62\x73\x74\x61\x69'+_0x5583b8(0x2b3,'\x74\x31\x2a\x7a')]))throw new _0x52db3c(_0x5583b8(0x290,'\x41\x46\x35\x58')+_0x5583b8(0x195,'\x57\x64\x33\x23')+_0x5583b8(0x341,'\x6b\x5d\x74\x43')+_0x5583b8(0x212,'\x66\x56\x55\x4e')+_0x5583b8(0x305,'\x35\x4e\x4d\x65')+_0x5583b8(0x2f0,'\x54\x7a\x24\x71')+_0x4f2c78['\x69\x64']);}else return structuredClone(_0x43e53e);}catch{throw new Error(_0x6aa639);}}export function computeSelectionFlatTaskFingerprint(_0x2d9a8a){const _0x1277ae=_0x2d37aa,_0x4a786d=cloneStructured(_0x2d9a8a,_0x1277ae(0x46d,'\x62\x73\x68\x47')+_0x1277ae(0x2cc,'\x21\x30\x52\x63')+_0x1277ae(0x335,'\x77\x31\x62\x25')+_0x1277ae(0x1db,'\x5d\x4f\x39\x40')+_0x1277ae(0x339,'\x54\x5d\x5e\x56')+_0x1277ae(0x1e8,'\x6c\x46\x5b\x5d')+_0x1277ae(0x2da,'\x6c\x46\x5b\x5d')+_0x1277ae(0x37b,'\x34\x28\x49\x31'));return sha256(canonicalSnapshotValue([SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION,_0x4a786d['\x69\x64'],_0x4a786d[_0x1277ae(0x470,'\x55\x68\x24\x57')+_0x1277ae(0x2b0,'\x56\x74\x72\x52')+'\x74\x44\x69\x67\x65\x73\x74'],_0x4a786d[_0x1277ae(0x44e,'\x39\x6a\x50\x4a')],_0x4a786d[_0x1277ae(0x43e,'\x68\x65\x39\x5b')],_0x4a786d[_0x1277ae(0x2e7,'\x21\x30\x52\x63')],_0x4a786d[_0x1277ae(0x383,'\x4a\x6a\x32\x4e')+'\x6e'],_0x4a786d[_0x1277ae(0x43c,'\x35\x4e\x4d\x65')+_0x1277ae(0x424,'\x39\x6a\x50\x4a')]]));}function isolationKey(_0x43727c,_0x4051e2,_0x4d311c,_0x5328a8){return sha256(_0x43727c+'\x00'+_0x4051e2+'\x00'+_0x4d311c+'\x00'+_0x5328a8);}function validateSuite(_0xacf16d){const _0x15757a=_0x2d37aa;assertSafeMetadata(_0xacf16d[_0x15757a(0x248,'\x5e\x76\x77\x28')],_0x15757a(0x26b,'\x33\x33\x30\x28')+'\x6d\x65'),assertSafeMetadata(_0xacf16d[_0x15757a(0x2a7,'\x74\x6b\x4c\x5a')]['\x69\x64'],_0x15757a(0x25c,'\x4a\x6a\x32\x4e')+'\x64'),assertSafeMetadata(_0xacf16d[_0x15757a(0x362,'\x29\x5a\x28\x71')][_0x15757a(0x217,'\x68\x4b\x6f\x5b')],_0x15757a(0x245,'\x52\x73\x45\x54')+'\x65\x72\x73\x69\x6f\x6e'),assertSafeMetadata(_0xacf16d[_0x15757a(0x1c2,'\x62\x6e\x50\x46')][_0x15757a(0x2ce,'\x56\x74\x72\x52')]['\x69\x64'],_0x15757a(0x245,'\x52\x73\x45\x54')+_0x15757a(0x301,'\x54\x41\x56\x41')+'\x69\x64'),assertSafeMetadata(_0xacf16d[_0x15757a(0x394,'\x21\x30\x52\x63')][_0x15757a(0x3bc,'\x6b\x5d\x74\x43')]['\x76\x65\x72\x73\x69\x6f\x6e'],_0x15757a(0x2f7,'\x39\x6a\x50\x4a')+_0x15757a(0x34f,'\x55\x47\x52\x57')+_0x15757a(0x344,'\x21\x30\x52\x63'));if(typeof _0xacf16d[_0x15757a(0x3b0,'\x32\x54\x21\x21')]['\x73\x6f\x75\x72\x63\x65\x43\x6f'+_0x15757a(0x242,'\x69\x43\x24\x49')]!==_0x15757a(0x3da,'\x33\x5b\x51\x38')||!FULL_COMMIT_RE[_0x15757a(0x1ec,'\x4a\x6a\x32\x4e')](_0xacf16d['\x63\x6f\x68\x6f\x72\x74'][_0x15757a(0x31a,'\x66\x56\x55\x4e')+_0x15757a(0x469,'\x76\x48\x6f\x4d')])){if(_0x15757a(0x227,'\x50\x50\x6a\x30')===_0x15757a(0x3b4,'\x41\x46\x35\x58'))throw new _0x22488b(_0x15757a(0x3d3,'\x26\x63\x63\x50')+_0x15757a(0x440,'\x32\x54\x21\x21')+_0x15757a(0x2d3,'\x33\x5b\x51\x38')+'\x6e\x73\x75\x70\x70\x6f\x72\x74'+_0x15757a(0x2f1,'\x34\x28\x49\x31')+typeof _0x23ec9a+_0x15757a(0x34e,'\x54\x24\x6c\x57'));else throw new Error(_0x15757a(0x460,'\x30\x33\x26\x49')+_0x15757a(0x1e5,'\x5e\x76\x77\x28')+'\x6d\x69\x74\x20\x6d\x75\x73\x74'+_0x15757a(0x1e9,'\x62\x73\x68\x47')+_0x15757a(0x17f,'\x50\x50\x6a\x30')+_0x15757a(0x2a1,'\x26\x51\x40\x23')+_0x15757a(0x3e8,'\x62\x73\x68\x47')+'\x69\x74');}if(_0xacf16d[_0x15757a(0x44a,'\x34\x23\x45\x51')][_0x15757a(0x3e0,'\x74\x6b\x4c\x5a')+_0x15757a(0x1f5,'\x5d\x4f\x39\x40')][_0x15757a(0x2e5,'\x26\x6c\x28\x61')]!==_0xacf16d[_0x15757a(0x1bb,'\x6c\x46\x5b\x5d')][_0x15757a(0x395,'\x35\x4e\x4d\x65')])throw new Error(_0x15757a(0x400,'\x5e\x76\x77\x28')+_0x15757a(0x432,'\x62\x6e\x50\x46')+_0x15757a(0x1d2,'\x5e\x76\x77\x28')+_0x15757a(0x276,'\x6b\x5d\x74\x43')+_0x15757a(0x376,'\x26\x63\x63\x50')+_0x15757a(0x3ba,'\x5d\x4f\x39\x40')+_0x15757a(0x32a,'\x41\x46\x35\x58'));const _0x36976b=new Set(),_0x411493=new Set();for(const [_0x308233,_0x1da1ad]of _0xacf16d[_0x15757a(0x2f9,'\x30\x33\x26\x49')][_0x15757a(0x1ff,'\x77\x31\x62\x25')]()){assertSafeMetadata(_0x1da1ad['\x69\x64'],_0x15757a(0x464,'\x41\x46\x35\x58')+_0x308233+_0x15757a(0x2d8,'\x69\x43\x24\x49')),assertSafeMetadata(_0x1da1ad[_0x15757a(0x477,'\x69\x43\x24\x49')],_0x15757a(0x33e,'\x62\x73\x68\x47')+_0x308233+(_0x15757a(0x1e0,'\x41\x46\x35\x58')+'\x6d'));if(_0x1da1ad[_0x15757a(0x390,'\x30\x65\x62\x5d')]!==_0x15757a(0x283,'\x6b\x5d\x74\x43')+_0x15757a(0x19b,'\x54\x5d\x5e\x56')&&_0x1da1ad[_0x15757a(0x36c,'\x26\x51\x40\x23')]!=='\x68\x6f\x6c\x64\x6f\x75\x74')throw new Error(_0x15757a(0x3a8,'\x5d\x4f\x39\x40')+_0x15757a(0x250,'\x5d\x4e\x72\x41')+_0x15757a(0x392,'\x5e\x76\x77\x28')+_0x1da1ad['\x69\x64']);if(typeof _0x1da1ad[_0x15757a(0x286,'\x52\x73\x45\x54')+_0x15757a(0x277,'\x68\x65\x39\x5b')+_0x15757a(0x403,'\x68\x4b\x6f\x5b')]!==_0x15757a(0x289,'\x5e\x65\x76\x64')||!SHA256_RE[_0x15757a(0x22b,'\x52\x73\x45\x54')](_0x1da1ad['\x77\x6f\x72\x6b\x73\x70\x61\x63'+_0x15757a(0x226,'\x63\x6d\x7a\x2a')+'\x74\x44\x69\x67\x65\x73\x74']))throw new Error('\x69\x6e\x76\x61\x6c\x69\x64\x20'+_0x15757a(0x262,'\x63\x6d\x7a\x2a')+_0x15757a(0x1c9,'\x35\x4e\x4d\x65')+_0x15757a(0x280,'\x32\x54\x21\x21')+_0x15757a(0x35c,'\x62\x6e\x50\x46')+'\x73\x6b\x20'+_0x1da1ad['\x69\x64']);if(_0x1da1ad[_0x15757a(0x2a2,'\x2a\x68\x40\x37')+_0x15757a(0x427,'\x5d\x4f\x39\x40')]?.[_0x15757a(0x2e6,'\x54\x24\x6c\x57')]!==_0x15757a(0x204,'\x41\x46\x35\x58')&&_0x1da1ad[_0x15757a(0x234,'\x29\x5a\x28\x71')+_0x15757a(0x29f,'\x33\x5b\x51\x38')]?.[_0x15757a(0x36e,'\x33\x5b\x51\x38')]!==_0x15757a(0x239,'\x63\x6d\x7a\x2a'))throw new Error(_0x15757a(0x1fc,'\x54\x24\x6c\x57')+_0x15757a(0x232,'\x55\x47\x52\x57')+'\x20\x72\x6f\x6c\x65\x20\x66\x6f'+_0x15757a(0x3a0,'\x74\x6b\x4c\x5a')+_0x1da1ad['\x69\x64']);validateExpectedAction(_0x1da1ad[_0x15757a(0x397,'\x30\x33\x26\x49')+_0x15757a(0x3b8,'\x58\x34\x74\x56')][_0x15757a(0x3c4,'\x30\x33\x26\x49')+_0x15757a(0x187,'\x62\x73\x68\x47')],_0x15757a(0x22f,'\x76\x48\x6f\x4d')+_0x1da1ad['\x69\x64']+(_0x15757a(0x247,'\x26\x63\x63\x50')+_0x15757a(0x316,'\x68\x65\x39\x5b')+'\x74\x69\x6f\x6e')),validateExpectedAction(_0x1da1ad[_0x15757a(0x415,'\x54\x7a\x24\x71')+_0x15757a(0x406,'\x52\x73\x45\x54')][_0x15757a(0x2ff,'\x48\x39\x75\x6b')+_0x15757a(0x1b4,'\x5d\x4e\x72\x41')+_0x15757a(0x260,'\x50\x50\x6a\x30')],_0x15757a(0x18a,'\x39\x6a\x50\x4a')+_0x1da1ad['\x69\x64']+(_0x15757a(0x23b,'\x77\x31\x62\x25')+_0x15757a(0x3e9,'\x5e\x76\x77\x28')+_0x15757a(0x16d,'\x26\x51\x40\x23')));if(_0x36976b[_0x15757a(0x3ac,'\x5e\x65\x76\x64')](_0x1da1ad['\x69\x64']))throw new Error(_0x15757a(0x355,'\x49\x43\x63\x37')+_0x15757a(0x333,'\x77\x68\x70\x25')+_0x15757a(0x1a0,'\x26\x6c\x28\x61')+_0x1da1ad['\x69\x64']);if(_0x411493[_0x15757a(0x265,'\x26\x63\x63\x50')](_0x1da1ad[_0x15757a(0x31b,'\x30\x33\x26\x49')+_0x15757a(0x478,'\x54\x41\x56\x41')]))throw new Error(_0x15757a(0x240,'\x6b\x5d\x74\x43')+'\x65\x20\x74\x61\x73\x6b\x20\x66'+_0x15757a(0x31e,'\x62\x73\x68\x47')+_0x15757a(0x334,'\x5d\x4e\x72\x41')+_0x1da1ad[_0x15757a(0x377,'\x54\x7a\x24\x71')+_0x15757a(0x369,'\x30\x65\x62\x5d')]);if(typeof _0x1da1ad[_0x15757a(0x1a2,'\x39\x6a\x50\x4a')+_0x15757a(0x349,'\x5d\x4f\x39\x40')]!=='\x73\x74\x72\x69\x6e\x67'||!SHA256_RE[_0x15757a(0x3d1,'\x74\x31\x2a\x7a')](_0x1da1ad[_0x15757a(0x3c1,'\x33\x5b\x51\x38')+_0x15757a(0x191,'\x66\x56\x55\x4e')]))throw new Error(_0x15757a(0x3ea,'\x26\x51\x40\x23')+_0x15757a(0x293,'\x55\x68\x24\x57')+_0x15757a(0x410,'\x26\x6c\x28\x61')+_0x15757a(0x26a,'\x77\x68\x70\x25')+_0x1da1ad['\x69\x64']);if(computeSelectionFlatTaskFingerprint(_0x1da1ad)!==_0x1da1ad[_0x15757a(0x1a2,'\x39\x6a\x50\x4a')+_0x15757a(0x351,'\x5d\x4e\x72\x41')])throw new Error(_0x15757a(0x1d0,'\x77\x68\x70\x25')+_0x15757a(0x215,'\x50\x50\x6a\x30')+'\x67\x65\x72\x70\x72\x69\x6e\x74'+'\x20\x6d\x69\x73\x6d\x61\x74\x63'+_0x15757a(0x435,'\x52\x73\x45\x54')+_0x1da1ad['\x69\x64']);if(_0xacf16d[_0x15757a(0x47a,'\x77\x31\x62\x25')]['\x74\x61\x73\x6b\x46\x69\x6e\x67'+_0x15757a(0x480,'\x5e\x63\x65\x54')][_0x308233]!==_0x1da1ad[_0x15757a(0x43a,'\x68\x4b\x6f\x5b')+_0x15757a(0x433,'\x34\x23\x45\x51')]){if(_0x15757a(0x279,'\x34\x28\x49\x31')!==_0x15757a(0x3fd,'\x54\x5d\x5e\x56'))throw new Error(_0x15757a(0x3cb,'\x34\x28\x49\x31')+_0x15757a(0x185,'\x33\x5b\x51\x38')+_0x15757a(0x319,'\x63\x6d\x7a\x2a')+_0x15757a(0x26f,'\x54\x7a\x24\x71')+_0x15757a(0x3ce,'\x6b\x5d\x74\x43')+_0x15757a(0x2a6,'\x62\x6e\x50\x46')+_0x1da1ad['\x69\x64']);else{const _0x5993f9=_0x21f873[_0x15757a(0x16f,'\x69\x43\x24\x49')][_0x15757a(0x1e6,'\x58\x34\x74\x56')][_0x15757a(0x43d,'\x30\x65\x62\x5d')],_0x4157df=_0x5c0842[_0x15757a(0x3bd,'\x55\x47\x52\x57')+_0x15757a(0x3d5,'\x55\x47\x52\x57')+'\x6e'][_0x15757a(0x209,'\x57\x64\x33\x23')][_0x15757a(0x2dc,'\x55\x68\x24\x57')];if(_0x5993f9&&_0x4157df)_0xa147fa+=-0xf73*0x1+-0x17b5+0x2729;else{if(!_0x5993f9&&!_0x4157df)_0x3f0de7+=0x1a2c+-0x1096+-0x995;else{if(_0x4157df)_0x19ffb7+=0x45f+-0x1591+-0x1*-0x1133;else _0x90f54e+=0x1e9a*-0x1+0x2*0x53+0x1*0x1df5;}}}}_0x36976b[_0x15757a(0x31d,'\x54\x5d\x5e\x56')](_0x1da1ad['\x69\x64']),_0x411493[_0x15757a(0x485,'\x63\x6d\x7a\x2a')](_0x1da1ad[_0x15757a(0x46f,'\x34\x23\x45\x51')+_0x15757a(0x44c,'\x55\x68\x24\x57')]);}}function cleanOutcome(_0x2a5541,_0x2039e6,_0x3dbd4e){const _0xb0af99=_0x2d37aa,_0x266483=_0x3dbd4e?.[_0xb0af99(0x3af,'\x52\x73\x45\x54')],_0x13112e=_0x3dbd4e?.['\x70\x72\x6f\x64\x75\x63\x65\x64'+'\x56\x61\x6c\x75\x65'],_0x39adca=_0x3dbd4e?.[_0xb0af99(0x258,'\x30\x65\x62\x5d')],_0x530872=_0x3dbd4e?.[_0xb0af99(0x1bd,'\x55\x47\x52\x57')],_0x3555b8=_0x3dbd4e?.['\x76\x65\x72\x69\x66\x69\x65\x72'],_0x578751=_0x3555b8?.['\x69\x64'],_0x3bda8a=_0x3555b8?.[_0xb0af99(0x2db,'\x5d\x4f\x39\x40')],_0x646b99=_0x3555b8?.[_0xb0af99(0x292,'\x21\x30\x52\x63')+_0xb0af99(0x384,'\x76\x48\x6f\x4d')];if(typeof _0x266483!=='\x62\x6f\x6f\x6c\x65\x61\x6e'||typeof _0x13112e!=='\x62\x6f\x6f\x6c\x65\x61\x6e'||typeof _0x39adca!==_0xb0af99(0x34b,'\x48\x39\x75\x6b'))throw new Error(_0xb0af99(0x2a5,'\x4a\x6a\x32\x4e')+_0xb0af99(0x3f9,'\x30\x65\x62\x5d')+_0xb0af99(0x3ca,'\x33\x5b\x51\x38')+_0xb0af99(0x1b1,'\x63\x64\x43\x49')+'\x6e\x20\x66\x69\x65\x6c\x64\x73'+_0xb0af99(0x216,'\x32\x54\x21\x21')+'\x6b\x20'+_0x2a5541);if(!Number[_0xb0af99(0x3e3,'\x63\x6d\x7a\x2a')](_0x530872)||_0x530872<0x1c70+-0x142f+-0x841*0x1){if(_0xb0af99(0x1e7,'\x26\x63\x63\x50')===_0xb0af99(0x228,'\x49\x43\x63\x37'))throw new Error(_0xb0af99(0x213,'\x62\x73\x68\x47')+_0xb0af99(0x3be,'\x62\x6e\x50\x46')+_0xb0af99(0x3ec,'\x6c\x46\x5b\x5d')+_0xb0af99(0x34a,'\x5e\x76\x77\x28')+_0xb0af99(0x222,'\x34\x28\x49\x31')+_0x2a5541);else{if(_0x2fa9b2[_0xb0af99(0x483,'\x54\x7a\x24\x71')+_0xb0af99(0x328,'\x69\x43\x24\x49')+'\x6d\x62\x6f\x6c\x73'](_0x25c9ad)[_0xb0af99(0x29e,'\x56\x74\x72\x52')]>0x21fd+0x5d2+0x3*-0xd45)throw new _0xf6291b(_0xb0af99(0x3a5,'\x62\x6e\x50\x46')+_0xb0af99(0x1d4,'\x5d\x4f\x39\x40')+_0xb0af99(0x36f,'\x5e\x63\x65\x54')+_0xb0af99(0x2ba,'\x5e\x65\x76\x64')+'\x79\x73');const _0x49a5db=_0x9afb3[_0xb0af99(0x17e,'\x5e\x76\x77\x28')+'\x6f\x70\x65\x72\x74\x79\x44\x65'+_0xb0af99(0x447,'\x66\x56\x55\x4e')+'\x73'](_0x169cd5);return _0x4699e2[_0xb0af99(0x2f2,'\x68\x65\x39\x5b')+'\x6f\x70\x65\x72\x74\x79\x4e\x61'+_0xb0af99(0x353,'\x62\x73\x68\x47')](_0x27d3fe)[_0xb0af99(0x3de,'\x33\x33\x30\x28')](_0x4b0a80=>{const _0x506bdc=_0xb0af99,_0x582955=_0x49a5db[_0x4b0a80];if(_0x582955[_0x506bdc(0x303,'\x77\x31\x62\x25')]||_0x582955[_0x506bdc(0x19d,'\x54\x7a\x24\x71')])throw new _0x3ad722(_0x506bdc(0x249,'\x30\x33\x26\x49')+_0x506bdc(0x2c7,'\x62\x6e\x50\x46')+_0x506bdc(0x2b7,'\x54\x24\x6c\x57')+_0x506bdc(0x188,'\x54\x5d\x5e\x56')+_0x506bdc(0x30b,'\x30\x65\x62\x5d')+'\x65\x73');return _0x31d06f[_0x506bdc(0x1c1,'\x33\x5b\x51\x38')+'\x79'](_0x4b0a80)+'\x3a'+_0x2b7c71(_0x582955['\x76\x61\x6c\x75\x65'],_0x29caa1);})[_0xb0af99(0x2d2,'\x48\x39\x75\x6b')]('\x2c');}}if(_0x578751!==_0x2039e6['\x69\x64']||_0x3bda8a!==_0x2039e6['\x76\x65\x72\x73\x69\x6f\x6e'])throw new Error(_0xb0af99(0x321,'\x6c\x46\x5b\x5d')+_0xb0af99(0x3b6,'\x55\x68\x24\x57')+_0xb0af99(0x3f1,'\x29\x5a\x28\x71')+_0xb0af99(0x337,'\x55\x68\x24\x57')+_0xb0af99(0x3a1,'\x54\x24\x6c\x57')+_0x2a5541);if(typeof _0x646b99!==_0xb0af99(0x28a,'\x30\x65\x62\x5d')||!SHA256_RE[_0xb0af99(0x368,'\x68\x65\x39\x5b')](_0x646b99))throw new Error(_0xb0af99(0x3bc,'\x6b\x5d\x74\x43')+_0xb0af99(0x21d,'\x34\x28\x49\x31')+_0xb0af99(0x366,'\x5d\x4e\x72\x41')+_0xb0af99(0x1bf,'\x5e\x76\x77\x28')+'\x64\x69\x67\x65\x73\x74\x20\x66'+_0xb0af99(0x25a,'\x33\x33\x30\x28')+_0x2a5541);return{'\x70\x61\x73\x73\x65\x64':_0x266483,'\x70\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65':_0x13112e,'\x75\x6e\x73\x61\x66\x65':_0x39adca,'\x63\x6f\x73\x74':_0x530872,'\x76\x65\x72\x69\x66\x69\x65\x72':{'\x69\x64':_0x578751,'\x76\x65\x72\x73\x69\x6f\x6e':_0x3bda8a,'\x70\x72\x6f\x6f\x66\x53\x68\x61\x32\x35\x36':_0x646b99}};}function logAdd(_0x5d3c19,_0x9b7c43){const _0x2a2ba9=_0x2d37aa;if(_0x5d3c19===Number[_0x2a2ba9(0x44f,'\x26\x6c\x28\x61')+_0x2a2ba9(0x484,'\x21\x30\x52\x63')+'\x59'])return _0x9b7c43;if(_0x9b7c43===Number['\x4e\x45\x47\x41\x54\x49\x56\x45'+'\x5f\x49\x4e\x46\x49\x4e\x49\x54'+'\x59'])return _0x5d3c19;const _0x19f6bf=Math['\x6d\x61\x78'](_0x5d3c19,_0x9b7c43);return _0x19f6bf+Math[_0x2a2ba9(0x2a9,'\x77\x68\x70\x25')](Math[_0x2a2ba9(0x474,'\x48\x39\x75\x6b')](_0x5d3c19-_0x19f6bf)+Math[_0x2a2ba9(0x1d3,'\x35\x4e\x4d\x65')](_0x9b7c43-_0x19f6bf));}export function exactMcNemarTwoSided(_0x2d662e,_0x3c3358){const _0x27d1dd=_0x2d37aa;if(!Number[_0x27d1dd(0x401,'\x74\x6b\x4c\x5a')+_0x27d1dd(0x3bb,'\x6c\x46\x5b\x5d')](_0x2d662e)||_0x2d662e<0x2612+-0x2633+0x3*0xb||!Number[_0x27d1dd(0x2fd,'\x66\x56\x55\x4e')+'\x74\x65\x67\x65\x72'](_0x3c3358)||_0x3c3358<0x633+-0x7a*0x46+0x1b29)throw new Error(_0x27d1dd(0x218,'\x29\x5a\x28\x71')+_0x27d1dd(0x3f2,'\x6c\x46\x5b\x5d')+_0x27d1dd(0x42f,'\x5e\x76\x77\x28')+_0x27d1dd(0x192,'\x56\x74\x72\x52')+_0x27d1dd(0x3b1,'\x6b\x5d\x74\x43')+_0x27d1dd(0x39e,'\x66\x56\x55\x4e')+'\x73');const _0x314ac2=_0x2d662e+_0x3c3358;if(!Number[_0x27d1dd(0x2ed,'\x26\x63\x63\x50')+'\x74\x65\x67\x65\x72'](_0x314ac2))throw new Error(_0x27d1dd(0x296,'\x68\x65\x39\x5b')+_0x27d1dd(0x2a4,'\x30\x65\x62\x5d')+_0x27d1dd(0x2c9,'\x50\x50\x6a\x30')+_0x27d1dd(0x272,'\x68\x65\x39\x5b')+_0x27d1dd(0x2a0,'\x54\x41\x56\x41')+_0x27d1dd(0x36a,'\x74\x31\x2a\x7a'));if(_0x314ac2===-0x2055+-0x175*0x3+0x24b4)return-0xa7e+-0x127*0x13+-0xc*-0x2b3;const _0x334184=Math[_0x27d1dd(0x273,'\x48\x39\x75\x6b')](_0x2d662e,_0x3c3358);let _0x583c98=-_0x314ac2*Math[_0x27d1dd(0x463,'\x57\x64\x33\x23')](0x9d9*-0x1+0x61*0x17+0x4*0x49),_0x59bfef=_0x583c98;for(let _0x3d93f5=0x1*-0xb8d+-0x18*-0x17b+-0x17fa;_0x3d93f5<=_0x334184;_0x3d93f5+=-0x1bf5+0x1*0xa39+0x11bd){if(_0x27d1dd(0x3e7,'\x62\x73\x68\x47')===_0x27d1dd(0x47c,'\x49\x43\x63\x37'))_0x583c98+=Math['\x6c\x6f\x67'](_0x314ac2-_0x3d93f5+(0x19ed*0x1+0x2*0x1e2+-0x1db0))-Math[_0x27d1dd(0x304,'\x74\x31\x2a\x7a')](_0x3d93f5),_0x59bfef=logAdd(_0x59bfef,_0x583c98);else throw new _0x1cf6b9(_0x27d1dd(0x1c3,'\x76\x48\x6f\x4d')+'\x6f\x75\x72\x63\x65\x43\x6f\x6d'+_0x27d1dd(0x418,'\x54\x41\x56\x41')+_0x27d1dd(0x1fb,'\x63\x6d\x7a\x2a')+_0x27d1dd(0x468,'\x48\x39\x75\x6b')+_0x27d1dd(0x42a,'\x4a\x6a\x32\x4e')+_0x27d1dd(0x2c2,'\x21\x30\x52\x63')+'\x69\x74');}return Math[_0x27d1dd(0x1a9,'\x26\x51\x40\x23')](0x1*-0x2a7+0x2c*0x2f+-0x56c,(0x119f*-0x1+0x52f+0x426*0x3)*Math[_0x27d1dd(0x1d3,'\x35\x4e\x4d\x65')](_0x59bfef));}export function pairedRiskDifference95(_0x1cf22f){const _0xcfc368=_0x2d37aa;if(_0x1cf22f[_0xcfc368(0x419,'\x66\x56\x55\x4e')]===-0x1bac+0xa0e+0x119e)return{'\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65':0x0,'\x63\x69\x39\x35\x4c\x6f\x77':-(0xc91+0x21*-0xb2+0xa62),'\x63\x69\x39\x35\x48\x69\x67\x68':0x1};const _0x2f0500=_0x1cf22f[_0xcfc368(0x428,'\x5e\x76\x77\x28')](_0x9a3c5f=>Number(_0x9a3c5f[_0xcfc368(0x270,'\x33\x5b\x51\x38')+'\x61\x74\x41\x62\x73\x74\x61\x69'+_0xcfc368(0x46c,'\x5e\x63\x65\x54')])-Number(_0x9a3c5f[_0xcfc368(0x3bf,'\x4a\x6a\x32\x4e')+_0xcfc368(0x1d5,'\x77\x68\x70\x25')])),_0x32bf96=_0x2f0500[_0xcfc368(0x2f5,'\x74\x31\x2a\x7a')]((_0x44f94e,_0x482664)=>_0x44f94e+_0x482664,0x23d4+-0xc61+-0x1773)/_0x2f0500[_0xcfc368(0x472,'\x52\x73\x45\x54')],_0x18bd4d=Math['\x73\x71\x72\x74']((0x1013*0x1+-0x1a50+0xa3f)*Math[_0xcfc368(0x310,'\x54\x24\x6c\x57')]((-0x243c+-0xb3d+0x2f7b)/CI95_ALPHA)/_0x2f0500[_0xcfc368(0x395,'\x35\x4e\x4d\x65')]);return{'\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65':_0x32bf96,'\x63\x69\x39\x35\x4c\x6f\x77':Math[_0xcfc368(0x2ef,'\x69\x43\x24\x49')](-(-0x2*-0x115d+0x1195*0x1+0x1a27*-0x2),_0x32bf96-_0x18bd4d),'\x63\x69\x39\x35\x48\x69\x67\x68':Math[_0xcfc368(0x196,'\x55\x47\x52\x57')](0x4b*-0x53+0x1*0x4f9+0x3*0x673,_0x32bf96+_0x18bd4d)};}function rate(_0xe70d6f,_0x469f70){return _0x469f70===0x5*0x3eb+-0xdd*0x9+-0x2*0x5e9?0x1010+-0x157d+-0x1cf*-0x3:_0xe70d6f/_0x469f70;}function average(_0x53306b){const _0x996358=_0x2d37aa;return _0x53306b[_0x996358(0x2ea,'\x58\x34\x74\x56')]===0x6*0x2c2+-0x2389*0x1+0x12fd?0x1ca+0x1d14+-0x1ede:_0x53306b[_0x996358(0x43f,'\x68\x4b\x6f\x5b')]((_0x18ddae,_0x4d6ec9)=>_0x18ddae+_0x4d6ec9,0x38e+-0x2532+-0x10d2*-0x2)/_0x53306b[_0x996358(0x22a,'\x68\x65\x39\x5b')];}function summarizeRows(_0x11d041){const _0x1ac79d=_0x2d37aa,_0x90f3bd=_0x11d041[_0x1ac79d(0x288,'\x48\x39\x75\x6b')];let _0x3f49b3=-0x231c+-0x64d*0x3+0x21*0x1a3,_0x5e1028=-0x23b7+0xd*0x47+0x201c,_0x1dad69=0x789+0x1*0x93c+0x10c5*-0x1,_0x3d441e=0x20e5+-0x2*0x11f2+0x2ff;for(const _0x404caf of _0x11d041){if(_0x1ac79d(0x318,'\x54\x41\x56\x41')==='\x46\x6d\x41\x6e\x6c'){const _0x4c8594=_0x19bb44[_0x1ac79d(0x476,'\x30\x33\x26\x49')];let _0x67e074=-0xa22+0xab3*0x3+-0x15f7,_0xabb0ed=0x13e4+0x1*-0x1a23+0x63f,_0x26a010=-0x8*0x2b1+-0x602*-0x2+0x984,_0x2cb9ba=0x18f8+-0x209b+0x55*0x17;for(const _0x1d18d0 of _0x3d9d50){const _0x56fd46=_0x1d18d0['\x63\x75\x72\x72\x65\x6e\x74'][_0x1ac79d(0x209,'\x57\x64\x33\x23')][_0x1ac79d(0x24c,'\x62\x73\x68\x47')],_0x4a0b68=_0x1d18d0[_0x1ac79d(0x1cc,'\x56\x74\x72\x52')+_0x1ac79d(0x229,'\x68\x65\x39\x5b')+'\x6e']['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x1ac79d(0x3db,'\x49\x43\x63\x37')];if(_0x56fd46&&_0x4a0b68)_0x67e074+=0x4d+-0x2264+0x8*0x443;else{if(!_0x56fd46&&!_0x4a0b68)_0xabb0ed+=0x3*0x499+-0xea9+0x1*0xdf;else{if(_0x4a0b68)_0x26a010+=-0x141b*0x1+-0x1*0x18eb+-0x2d07*-0x1;else _0x2cb9ba+=-0x228d+0x20ed+0x1a1;}}}const _0x131f0c=_0x67e074+_0x2cb9ba,_0x1f523f=_0x67e074+_0x26a010,_0x2f1aa8=_0x214679(_0x2031e[_0x1ac79d(0x28d,'\x5d\x4f\x39\x40')](_0x1bb6bb=>_0x1bb6bb[_0x1ac79d(0x275,'\x63\x64\x43\x49')]['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x1ac79d(0x3b5,'\x5e\x63\x65\x54')])[_0x1ac79d(0x2e3,'\x34\x28\x49\x31')],_0x4c8594),_0x3d1443=_0x55a645(_0x9d6615['\x66\x69\x6c\x74\x65\x72'](_0x4ba081=>_0x4ba081[_0x1ac79d(0x336,'\x34\x23\x45\x51')+_0x1ac79d(0x467,'\x35\x4e\x4d\x65')+'\x6e']['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x1ac79d(0x3e1,'\x54\x41\x56\x41')])['\x6c\x65\x6e\x67\x74\x68'],_0x4c8594),_0x176dc5=_0x10fd6c(_0x5eed65[_0x1ac79d(0x354,'\x5d\x4f\x39\x40')](_0x32a65=>_0x32a65[_0x1ac79d(0x3fb,'\x35\x4e\x4d\x65')][_0x1ac79d(0x1e6,'\x58\x34\x74\x56')][_0x1ac79d(0x332,'\x4a\x6a\x32\x4e')])),_0x5a6271=_0x546df9(_0x12f9ae[_0x1ac79d(0x3b7,'\x69\x43\x24\x49')](_0x2c99da=>_0x2c99da[_0x1ac79d(0x2c5,'\x54\x5d\x5e\x56')+_0x1ac79d(0x1aa,'\x57\x64\x33\x23')+'\x6e'][_0x1ac79d(0x182,'\x6c\x46\x5b\x5d')][_0x1ac79d(0x452,'\x48\x39\x75\x6b')])),_0x211683=_0x46604f(_0xf81bd6[_0x1ac79d(0x39f,'\x34\x23\x45\x51')](_0x1bb27b=>({'\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x73\x73\x65\x64':_0x1bb27b[_0x1ac79d(0x379,'\x26\x63\x63\x50')][_0x1ac79d(0x45d,'\x21\x30\x52\x63')][_0x1ac79d(0x20d,'\x54\x5d\x5e\x56')],'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x61\x73\x73\x65\x64':_0x1bb27b[_0x1ac79d(0x37c,'\x29\x5a\x28\x71')+_0x1ac79d(0x1e1,'\x68\x4b\x6f\x5b')+'\x6e'][_0x1ac79d(0x1b8,'\x62\x6e\x50\x46')][_0x1ac79d(0x3db,'\x49\x43\x63\x37')]})));return{'\x6e':_0x4c8594,'\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x73\x73\x65\x73':_0x131f0c,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x61\x73\x73\x65\x73':_0x1f523f,'\x62\x6f\x74\x68\x50\x61\x73\x73':_0x67e074,'\x62\x6f\x74\x68\x46\x61\x69\x6c':_0xabb0ed,'\x67\x6c\x6f\x62\x61\x6c\x4f\x6e\x6c\x79\x50\x61\x73\x73':_0x26a010,'\x63\x75\x72\x72\x65\x6e\x74\x4f\x6e\x6c\x79\x50\x61\x73\x73':_0x2cb9ba,'\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x73\x73\x52\x61\x74\x65':_0x54a5ab(_0x131f0c,_0x4c8594),'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x61\x73\x73\x52\x61\x74\x65':_0x207542(_0x1f523f,_0x4c8594),'\x70\x61\x69\x72\x65\x64\x52\x69\x73\x6b\x44\x69\x66\x66\x65\x72\x65\x6e\x63\x65':_0x211683[_0x1ac79d(0x409,'\x6b\x5d\x74\x43')+'\x63\x65'],'\x63\x69\x39\x35\x4c\x6f\x77':_0x211683['\x63\x69\x39\x35\x4c\x6f\x77'],'\x63\x69\x39\x35\x48\x69\x67\x68':_0x211683[_0x1ac79d(0x233,'\x69\x43\x24\x49')],'\x6d\x63\x6e\x65\x6d\x61\x72\x50\x56\x61\x6c\x75\x65':_0x4e2c44(_0x26a010,_0x2cb9ba),'\x63\x75\x72\x72\x65\x6e\x74\x50\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65\x52\x61\x74\x65':_0x6c3cab(_0x2cd3bb[_0x1ac79d(0x18d,'\x5e\x63\x65\x54')](_0x3c36a8=>_0x3c36a8[_0x1ac79d(0x1b7,'\x39\x6a\x50\x4a')][_0x1ac79d(0x1ea,'\x74\x31\x2a\x7a')][_0x1ac79d(0x408,'\x52\x73\x45\x54')+_0x1ac79d(0x295,'\x68\x4b\x6f\x5b')])[_0x1ac79d(0x426,'\x5d\x4e\x72\x41')],_0x4c8594),'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65\x52\x61\x74\x65':_0x22b396(_0x471317[_0x1ac79d(0x284,'\x63\x6d\x7a\x2a')](_0xf3c75c=>_0xf3c75c[_0x1ac79d(0x207,'\x63\x64\x43\x49')+_0x1ac79d(0x416,'\x63\x64\x43\x49')+'\x6e']['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x1ac79d(0x302,'\x35\x4e\x4d\x65')+_0x1ac79d(0x200,'\x48\x39\x75\x6b')])[_0x1ac79d(0x36b,'\x39\x6a\x50\x4a')],_0x4c8594),'\x63\x75\x72\x72\x65\x6e\x74\x55\x6e\x73\x61\x66\x65\x52\x61\x74\x65':_0x2f1aa8,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x55\x6e\x73\x61\x66\x65\x52\x61\x74\x65':_0x3d1443,'\x75\x6e\x73\x61\x66\x65\x52\x61\x74\x65\x44\x65\x6c\x74\x61':_0x3d1443-_0x2f1aa8,'\x63\x75\x72\x72\x65\x6e\x74\x41\x76\x65\x72\x61\x67\x65\x43\x6f\x73\x74':_0x176dc5,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x41\x76\x65\x72\x61\x67\x65\x43\x6f\x73\x74':_0x5a6271,'\x61\x76\x65\x72\x61\x67\x65\x43\x6f\x73\x74\x44\x65\x6c\x74\x61':_0x5a6271-_0x176dc5,'\x63\x75\x72\x72\x65\x6e\x74\x49\x6e\x6e\x6f\x76\x61\x74\x65\x52\x61\x74\x65':_0x4f01da(_0x5baf97[_0x1ac79d(0x2d9,'\x30\x65\x62\x5d')](_0x47b1e5=>_0x47b1e5[_0x1ac79d(0x1e2,'\x34\x28\x49\x31')][_0x1ac79d(0x274,'\x55\x68\x24\x57')]==='\x69\x6e\x6e\x6f\x76\x61\x74\x65')[_0x1ac79d(0x299,'\x62\x73\x68\x47')],_0x4c8594),'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x49\x6e\x6e\x6f\x76\x61\x74\x65\x52\x61\x74\x65':_0x5f7503(_0x12bfb3[_0x1ac79d(0x367,'\x76\x48\x6f\x4d')](_0x52004b=>_0x52004b[_0x1ac79d(0x3e6,'\x5e\x65\x76\x64')+'\x61\x74\x41\x62\x73\x74\x61\x69'+'\x6e']['\x61\x63\x74\x69\x6f\x6e']===_0x1ac79d(0x237,'\x74\x6b\x4c\x5a'))[_0x1ac79d(0x1ae,'\x26\x51\x40\x23')],_0x4c8594)};}else{const _0x13f8a4=_0x404caf[_0x1ac79d(0x458,'\x66\x56\x55\x4e')][_0x1ac79d(0x3aa,'\x5e\x65\x76\x64')][_0x1ac79d(0x386,'\x2a\x68\x40\x37')],_0x56871b=_0x404caf[_0x1ac79d(0x442,'\x54\x24\x6c\x57')+_0x1ac79d(0x19e,'\x5e\x76\x77\x28')+'\x6e'][_0x1ac79d(0x3fe,'\x5e\x63\x65\x54')][_0x1ac79d(0x2b6,'\x63\x6d\x7a\x2a')];if(_0x13f8a4&&_0x56871b)_0x3f49b3+=-0x1d02*-0x1+0x349+-0x1*0x204a;else{if(!_0x13f8a4&&!_0x56871b)_0x5e1028+=-0x1713+-0x1f*0xa9+0x47*0x9d;else{if(_0x56871b)_0x1dad69+=-0x1e1b*0x1+0x48b+-0x23*-0xbb;else _0x3d441e+=-0x1*0xc3d+0x11*0xca+-0xa*0x1e;}}}}const _0x1561d4=_0x3f49b3+_0x3d441e,_0x3955e5=_0x3f49b3+_0x1dad69,_0xed59e0=rate(_0x11d041[_0x1ac79d(0x1ee,'\x69\x43\x24\x49')](_0x5066b9=>_0x5066b9[_0x1ac79d(0x2af,'\x49\x43\x63\x37')]['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x1ac79d(0x2f4,'\x33\x33\x30\x28')])[_0x1ac79d(0x426,'\x5d\x4e\x72\x41')],_0x90f3bd),_0x27553d=rate(_0x11d041['\x66\x69\x6c\x74\x65\x72'](_0x3dbf8f=>_0x3dbf8f[_0x1ac79d(0x30c,'\x49\x43\x63\x37')+'\x61\x74\x41\x62\x73\x74\x61\x69'+'\x6e'][_0x1ac79d(0x46e,'\x54\x41\x56\x41')][_0x1ac79d(0x2c6,'\x34\x23\x45\x51')])[_0x1ac79d(0x3ae,'\x5e\x76\x77\x28')],_0x90f3bd),_0xa806a1=average(_0x11d041[_0x1ac79d(0x2d1,'\x63\x64\x43\x49')](_0x4c74e7=>_0x4c74e7[_0x1ac79d(0x1d6,'\x54\x5d\x5e\x56')][_0x1ac79d(0x345,'\x5e\x76\x77\x28')]['\x63\x6f\x73\x74'])),_0x3ffe25=average(_0x11d041[_0x1ac79d(0x22d,'\x32\x54\x21\x21')](_0x4ad0da=>_0x4ad0da[_0x1ac79d(0x45b,'\x5e\x76\x77\x28')+_0x1ac79d(0x467,'\x35\x4e\x4d\x65')+'\x6e'][_0x1ac79d(0x345,'\x5e\x76\x77\x28')]['\x63\x6f\x73\x74'])),_0x5d3260=pairedRiskDifference95(_0x11d041[_0x1ac79d(0x44b,'\x21\x30\x52\x63')](_0x1782e6=>({'\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x73\x73\x65\x64':_0x1782e6[_0x1ac79d(0x422,'\x50\x50\x6a\x30')][_0x1ac79d(0x345,'\x5e\x76\x77\x28')][_0x1ac79d(0x2f3,'\x48\x39\x75\x6b')],'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x61\x73\x73\x65\x64':_0x1782e6['\x67\x6c\x6f\x62\x61\x6c\x46\x6c'+_0x1ac79d(0x407,'\x62\x73\x68\x47')+'\x6e'][_0x1ac79d(0x325,'\x54\x24\x6c\x57')][_0x1ac79d(0x3c5,'\x74\x6b\x4c\x5a')]})));return{'\x6e':_0x90f3bd,'\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x73\x73\x65\x73':_0x1561d4,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x61\x73\x73\x65\x73':_0x3955e5,'\x62\x6f\x74\x68\x50\x61\x73\x73':_0x3f49b3,'\x62\x6f\x74\x68\x46\x61\x69\x6c':_0x5e1028,'\x67\x6c\x6f\x62\x61\x6c\x4f\x6e\x6c\x79\x50\x61\x73\x73':_0x1dad69,'\x63\x75\x72\x72\x65\x6e\x74\x4f\x6e\x6c\x79\x50\x61\x73\x73':_0x3d441e,'\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x73\x73\x52\x61\x74\x65':rate(_0x1561d4,_0x90f3bd),'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x61\x73\x73\x52\x61\x74\x65':rate(_0x3955e5,_0x90f3bd),'\x70\x61\x69\x72\x65\x64\x52\x69\x73\x6b\x44\x69\x66\x66\x65\x72\x65\x6e\x63\x65':_0x5d3260[_0x1ac79d(0x298,'\x49\x43\x63\x37')+'\x63\x65'],'\x63\x69\x39\x35\x4c\x6f\x77':_0x5d3260[_0x1ac79d(0x1d7,'\x5e\x65\x76\x64')],'\x63\x69\x39\x35\x48\x69\x67\x68':_0x5d3260[_0x1ac79d(0x257,'\x68\x4b\x6f\x5b')],'\x6d\x63\x6e\x65\x6d\x61\x72\x50\x56\x61\x6c\x75\x65':exactMcNemarTwoSided(_0x1dad69,_0x3d441e),'\x63\x75\x72\x72\x65\x6e\x74\x50\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65\x52\x61\x74\x65':rate(_0x11d041[_0x1ac79d(0x361,'\x54\x24\x6c\x57')](_0x80d6c4=>_0x80d6c4[_0x1ac79d(0x3e5,'\x4a\x6a\x32\x4e')][_0x1ac79d(0x402,'\x26\x51\x40\x23')][_0x1ac79d(0x358,'\x76\x48\x6f\x4d')+_0x1ac79d(0x3c7,'\x39\x6a\x50\x4a')])[_0x1ac79d(0x22a,'\x68\x65\x39\x5b')],_0x90f3bd),'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x50\x72\x6f\x64\x75\x63\x65\x64\x56\x61\x6c\x75\x65\x52\x61\x74\x65':rate(_0x11d041[_0x1ac79d(0x370,'\x5e\x76\x77\x28')](_0x55454c=>_0x55454c[_0x1ac79d(0x311,'\x6c\x46\x5b\x5d')+_0x1ac79d(0x3ad,'\x58\x34\x74\x56')+'\x6e'][_0x1ac79d(0x278,'\x63\x6d\x7a\x2a')][_0x1ac79d(0x18f,'\x30\x65\x62\x5d')+'\x56\x61\x6c\x75\x65'])[_0x1ac79d(0x3c2,'\x74\x31\x2a\x7a')],_0x90f3bd),'\x63\x75\x72\x72\x65\x6e\x74\x55\x6e\x73\x61\x66\x65\x52\x61\x74\x65':_0xed59e0,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x55\x6e\x73\x61\x66\x65\x52\x61\x74\x65':_0x27553d,'\x75\x6e\x73\x61\x66\x65\x52\x61\x74\x65\x44\x65\x6c\x74\x61':_0x27553d-_0xed59e0,'\x63\x75\x72\x72\x65\x6e\x74\x41\x76\x65\x72\x61\x67\x65\x43\x6f\x73\x74':_0xa806a1,'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x41\x76\x65\x72\x61\x67\x65\x43\x6f\x73\x74':_0x3ffe25,'\x61\x76\x65\x72\x61\x67\x65\x43\x6f\x73\x74\x44\x65\x6c\x74\x61':_0x3ffe25-_0xa806a1,'\x63\x75\x72\x72\x65\x6e\x74\x49\x6e\x6e\x6f\x76\x61\x74\x65\x52\x61\x74\x65':rate(_0x11d041[_0x1ac79d(0x352,'\x34\x23\x45\x51')](_0x3f59b0=>_0x3f59b0[_0x1ac79d(0x244,'\x30\x65\x62\x5d')][_0x1ac79d(0x356,'\x66\x56\x55\x4e')]===_0x1ac79d(0x19f,'\x26\x51\x40\x23'))[_0x1ac79d(0x34c,'\x41\x46\x35\x58')],_0x90f3bd),'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e\x49\x6e\x6e\x6f\x76\x61\x74\x65\x52\x61\x74\x65':rate(_0x11d041[_0x1ac79d(0x3e4,'\x29\x5a\x28\x71')](_0x12c196=>_0x12c196[_0x1ac79d(0x359,'\x57\x64\x33\x23')+_0x1ac79d(0x3d5,'\x55\x47\x52\x57')+'\x6e'][_0x1ac79d(0x482,'\x74\x6b\x4c\x5a')]===_0x1ac79d(0x19f,'\x26\x51\x40\x23'))[_0x1ac79d(0x1af,'\x33\x5b\x51\x38')],_0x90f3bd)};}function cloneTaskForArm(_0x2ab9c2){const _0x475e5a=_0x2d37aa;return cloneStructured(_0x2ab9c2,'\x74\x61\x73\x6b\x20'+_0x2ab9c2['\x69\x64']+('\x20\x6d\x75\x73\x74\x20\x62\x65'+'\x20\x73\x74\x72\x75\x63\x74\x75'+_0x475e5a(0x446,'\x32\x54\x21\x21')+_0x475e5a(0x3c9,'\x49\x43\x63\x37')+_0x475e5a(0x177,'\x41\x46\x35\x58')+_0x475e5a(0x479,'\x26\x63\x63\x50')+_0x475e5a(0x378,'\x5d\x4e\x72\x41')));}function cloneSuiteSnapshot(_0x21629b){const _0x3fa7ac=_0x2d37aa;return cloneStructured(_0x21629b,'\x62\x65\x6e\x63\x68\x6d\x61\x72'+_0x3fa7ac(0x33f,'\x63\x6d\x7a\x2a')+_0x3fa7ac(0x38b,'\x58\x34\x74\x56')+_0x3fa7ac(0x3a4,'\x48\x39\x75\x6b')+_0x3fa7ac(0x2bc,'\x56\x74\x72\x52')+_0x3fa7ac(0x3d2,'\x33\x5b\x51\x38')+_0x3fa7ac(0x28f,'\x33\x5b\x51\x38')+'\x64\x61\x74\x69\x6f\x6e');}function cloneAction(_0x23f1cd){const _0x11b245=_0x2d37aa;return _0x23f1cd[_0x11b245(0x37e,'\x35\x4e\x4d\x65')]===_0x11b245(0x1f8,'\x62\x73\x68\x47')?{'\x6b\x69\x6e\x64':_0x11b245(0x237,'\x74\x6b\x4c\x5a')}:{'\x6b\x69\x6e\x64':_0x11b245(0x2f6,'\x6b\x5d\x74\x43'),'\x67\x65\x6e\x65\x49\x64':_0x23f1cd[_0x11b245(0x2d7,'\x49\x43\x63\x37')],..._0x23f1cd[_0x11b245(0x2df,'\x57\x64\x33\x23')]?{'\x61\x73\x73\x65\x74\x49\x64':_0x23f1cd[_0x11b245(0x231,'\x54\x24\x6c\x57')]}:{}};}function benchmarkDatasetDigest(_0x23add2,_0x1f9e2b){const _0x194331=_0x2d37aa,_0x5c5883=[SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION,_0x23add2['\x6e\x61\x6d\x65'],_0x23add2[_0x194331(0x3ee,'\x33\x5b\x51\x38')]['\x69\x64'],_0x23add2[_0x194331(0x3d7,'\x76\x48\x6f\x4d')][_0x194331(0x2d5,'\x5e\x76\x77\x28')],_0x23add2[_0x194331(0x1dd,'\x39\x6a\x50\x4a')]['\x73\x6f\x75\x72\x63\x65\x43\x6f'+'\x6d\x6d\x69\x74'],_0x23add2[_0x194331(0x324,'\x62\x73\x68\x47')][_0x194331(0x213,'\x62\x73\x68\x47')]['\x69\x64'],_0x23add2[_0x194331(0x462,'\x26\x6c\x28\x61')][_0x194331(0x39c,'\x26\x51\x40\x23')][_0x194331(0x203,'\x26\x51\x40\x23')],_0x23add2[_0x194331(0x210,'\x26\x6c\x28\x61')][_0x194331(0x323,'\x41\x46\x35\x58')]((_0x14ea2a,_0x4fc0df)=>[_0x4fc0df,_0x14ea2a[_0x194331(0x24a,'\x69\x43\x24\x49')+_0x194331(0x349,'\x5d\x4f\x39\x40')],_0x14ea2a[_0x194331(0x17b,'\x2a\x68\x40\x37')],_0x14ea2a[_0x194331(0x412,'\x21\x30\x52\x63')],_0x1f9e2b[_0x4fc0df]?.[_0x194331(0x1ed,'\x5e\x76\x77\x28')]===!![],_0x1f9e2b[_0x4fc0df]?.[_0x194331(0x2a3,'\x77\x68\x70\x25')+_0x194331(0x287,'\x21\x30\x52\x63')][_0x194331(0x41d,'\x2a\x68\x40\x37')],_0x1f9e2b[_0x4fc0df]?.[_0x194331(0x336,'\x34\x23\x45\x51')+_0x194331(0x407,'\x62\x73\x68\x47')+_0x194331(0x2fb,'\x69\x43\x24\x49')][_0x194331(0x2b8,'\x63\x6d\x7a\x2a')]])];return sha256(JSON[_0x194331(0x385,'\x77\x31\x62\x25')+'\x79'](_0x5c5883));}function validatePreRegisteredExpectation(_0xc54a93,_0x332baa){const _0x483afd=_0x2d37aa,_0x3e2ee8=_0x332baa[_0x483afd(0x456,'\x62\x73\x68\x47')]?_0x483afd(0x19a,'\x26\x63\x63\x50'):'\x63\x6f\x6e\x74\x72\x6f\x6c';if(_0xc54a93[_0x483afd(0x219,'\x74\x6b\x4c\x5a')+_0x483afd(0x176,'\x5e\x63\x65\x54')][_0x483afd(0x420,'\x54\x7a\x24\x71')]!==_0x3e2ee8){if(_0x483afd(0x441,'\x21\x30\x52\x63')===_0x483afd(0x263,'\x49\x43\x63\x37'))throw new _0x494036(_0x483afd(0x3d0,'\x4a\x6a\x32\x4e')+_0x483afd(0x45f,'\x54\x24\x6c\x57')+_0x483afd(0x18b,'\x66\x56\x55\x4e')+'\x20\x6d\x75\x73\x74\x20\x62\x65'+_0x483afd(0x171,'\x55\x47\x52\x57')+_0x483afd(0x1f1,'\x5d\x4e\x72\x41'));else throw new Error(_0x483afd(0x26d,'\x54\x7a\x24\x71')+_0x483afd(0x2b1,'\x33\x33\x30\x28')+_0x483afd(0x30f,'\x48\x39\x75\x6b')+'\x61\x74\x63\x68\x20\x66\x6f\x72'+_0x483afd(0x28b,'\x26\x6c\x28\x61')+_0xc54a93['\x69\x64']);}if(!actionsEqual(_0xc54a93[_0x483afd(0x40e,'\x54\x41\x56\x41')+_0x483afd(0x427,'\x5d\x4f\x39\x40')][_0x483afd(0x309,'\x74\x6b\x4c\x5a')+_0x483afd(0x23c,'\x54\x7a\x24\x71')],_0x332baa[_0x483afd(0x35f,'\x32\x54\x21\x21')+_0x483afd(0x2e2,'\x5d\x4e\x72\x41')]))throw new Error(_0x483afd(0x290,'\x41\x46\x35\x58')+_0x483afd(0x189,'\x68\x65\x39\x5b')+_0x483afd(0x3d4,'\x21\x30\x52\x63')+_0x483afd(0x2cf,'\x63\x6d\x7a\x2a')+_0x483afd(0x281,'\x39\x6a\x50\x4a')+_0x483afd(0x28c,'\x5d\x4e\x72\x41')+_0xc54a93['\x69\x64']);if(!actionsEqual(_0xc54a93[_0x483afd(0x16c,'\x41\x46\x35\x58')+_0x483afd(0x427,'\x5d\x4f\x39\x40')][_0x483afd(0x2b4,'\x63\x6d\x7a\x2a')+_0x483afd(0x3ad,'\x58\x34\x74\x56')+_0x483afd(0x32f,'\x77\x31\x62\x25')],_0x332baa[_0x483afd(0x442,'\x54\x24\x6c\x57')+_0x483afd(0x197,'\x48\x39\x75\x6b')+_0x483afd(0x2ad,'\x33\x33\x30\x28')]))throw new Error(_0x483afd(0x26d,'\x54\x7a\x24\x71')+_0x483afd(0x3ef,'\x39\x6a\x50\x4a')+_0x483afd(0x1b3,'\x34\x28\x49\x31')+_0x483afd(0x421,'\x26\x6c\x28\x61')+_0x483afd(0x39d,'\x57\x64\x33\x23')+_0x483afd(0x3a2,'\x30\x65\x62\x5d')+_0xc54a93['\x69\x64']);}function rowsByStratum(_0x1b0977){const _0xbd238a=_0x2d37aa,_0x574ac0=Object[_0xbd238a(0x454,'\x63\x64\x43\x49')](null),_0x20a2d2=[...new Set(_0x1b0977[_0xbd238a(0x399,'\x39\x6a\x50\x4a')](_0x46065d=>_0x46065d[_0xbd238a(0x29b,'\x29\x5a\x28\x71')]))][_0xbd238a(0x2d4,'\x34\x28\x49\x31')]();for(const _0x1c7461 of _0x20a2d2){_0x574ac0[_0x1c7461]=summarizeRows(_0x1b0977['\x66\x69\x6c\x74\x65\x72'](_0x36f853=>_0x36f853[_0xbd238a(0x404,'\x63\x6d\x7a\x2a')]===_0x1c7461));}return _0x574ac0;}export async function runSelectionFlatAbstentionBenchmark(_0x4d13c5,_0x6a0468){const _0xbadb53=_0x2d37aa,_0x1953c9=cloneSuiteSnapshot(_0x4d13c5);validateSuite(_0x1953c9);const _0x23cdb9=_0x1953c9[_0xbadb53(0x236,'\x34\x28\x49\x31')]['\x6d\x61\x70'](_0x530beb=>compareOutsidePlateauFlatSelection(_0x530beb['\x73\x65\x6c\x65\x63\x74\x69\x6f'+'\x6e']));_0x1953c9[_0xbadb53(0x47e,'\x30\x65\x62\x5d')][_0xbadb53(0x2eb,'\x2a\x68\x40\x37')]((_0x37ca07,_0x187495)=>{const _0x10e316=_0xbadb53;if(_0x10e316(0x230,'\x62\x73\x68\x47')===_0x10e316(0x448,'\x21\x30\x52\x63'))validatePreRegisteredExpectation(_0x37ca07,_0x23cdb9[_0x187495]);else return _0x2217ad(_0x496fbb,_0x10e316(0x313,'\x74\x31\x2a\x7a')+_0x438cd4['\x69\x64']+(_0x10e316(0x3f5,'\x5e\x76\x77\x28')+_0x10e316(0x285,'\x30\x33\x26\x49')+_0x10e316(0x3dd,'\x48\x39\x75\x6b')+_0x10e316(0x436,'\x6b\x5d\x74\x43')+_0x10e316(0x1c5,'\x26\x6c\x28\x61')+_0x10e316(0x398,'\x29\x5a\x28\x71')+_0x10e316(0x3b3,'\x29\x5a\x28\x71')));});const _0x38d911=benchmarkDatasetDigest(_0x1953c9,_0x23cdb9),_0x302c58=randomUUID(),_0x26e923=[];let _0xa65456=-0x2498+0x800+0x1c98;for(const [_0x2296bf,_0x38c99e]of _0x1953c9[_0xbadb53(0x47e,'\x30\x65\x62\x5d')]['\x65\x6e\x74\x72\x69\x65\x73']()){const _0x8eda4e=_0x23cdb9[_0x2296bf];if(!_0x8eda4e[_0xbadb53(0x2c0,'\x63\x64\x43\x49')]){if(!actionsEqual(_0x8eda4e[_0xbadb53(0x38f,'\x77\x31\x62\x25')+_0xbadb53(0x35b,'\x26\x6c\x28\x61')],_0x8eda4e[_0xbadb53(0x2b5,'\x74\x31\x2a\x7a')+'\x61\x74\x41\x62\x73\x74\x61\x69'+_0xbadb53(0x40d,'\x26\x6c\x28\x61')]))throw new Error(_0xbadb53(0x267,'\x30\x33\x26\x49')+'\x61\x63\x74\x69\x6f\x6e\x20\x64'+_0xbadb53(0x473,'\x39\x6a\x50\x4a')+_0xbadb53(0x363,'\x5e\x65\x76\x64')+_0xbadb53(0x225,'\x35\x4e\x4d\x65')+_0x38c99e['\x69\x64']);continue;}const _0x16a6d5=_0xa65456%(-0x822*0x2+0xa*0x269+-0x3ea*0x2)===-0x1183*-0x2+-0x133a+-0xfcc?[_0xbadb53(0x244,'\x30\x65\x62\x5d'),_0xbadb53(0x25d,'\x54\x7a\x24\x71')+_0xbadb53(0x1f9,'\x5e\x76\x77\x28')+_0xbadb53(0x183,'\x54\x41\x56\x41')]:['\x67\x6c\x6f\x62\x61\x6c\x2d\x66'+_0xbadb53(0x372,'\x57\x64\x33\x23')+_0xbadb53(0x23d,'\x63\x6d\x7a\x2a'),'\x63\x75\x72\x72\x65\x6e\x74'];_0xa65456+=0x3b*0x2b+0x2287+0x1c7*-0x19;const _0xecb170=new Map();for(const [_0x4c233c,_0x3237ea]of _0x16a6d5[_0xbadb53(0x1fe,'\x5e\x65\x76\x64')]()){if(_0xbadb53(0x41b,'\x68\x4b\x6f\x5b')!==_0xbadb53(0x330,'\x77\x31\x62\x25'))throw new _0x414f23(_0xbadb53(0x205,'\x57\x64\x33\x23')+_0xbadb53(0x443,'\x26\x63\x63\x50')+_0xbadb53(0x481,'\x68\x4b\x6f\x5b')+_0xbadb53(0x1c4,'\x5d\x4f\x39\x40')+_0xbadb53(0x40b,'\x32\x54\x21\x21')+_0xbadb53(0x17a,'\x54\x5d\x5e\x56'));else{const _0x3d3bdc=_0x3237ea==='\x63\x75\x72\x72\x65\x6e\x74'?_0x8eda4e[_0xbadb53(0x170,'\x76\x48\x6f\x4d')+_0xbadb53(0x208,'\x29\x5a\x28\x71')]:_0x8eda4e[_0xbadb53(0x252,'\x77\x68\x70\x25')+_0xbadb53(0x3df,'\x34\x23\x45\x51')+_0xbadb53(0x2ad,'\x33\x33\x30\x28')],_0x7c3cbf=await _0x6a0468({'\x74\x61\x73\x6b':cloneTaskForArm(_0x38c99e),'\x61\x72\x6d':_0x3237ea,'\x61\x63\x74\x69\x6f\x6e':cloneAction(_0x3d3bdc),'\x69\x73\x6f\x6c\x61\x74\x69\x6f\x6e\x4b\x65\x79':isolationKey(_0x38d911,_0x302c58,_0x38c99e[_0xbadb53(0x41e,'\x5d\x4e\x72\x41')+_0xbadb53(0x224,'\x54\x7a\x24\x71')],_0x3237ea),'\x6f\x72\x64\x65\x72':_0x4c233c});_0xecb170[_0xbadb53(0x3f6,'\x33\x5b\x51\x38')](_0x3237ea,cleanOutcome(_0x38c99e['\x69\x64'],_0x1953c9[_0xbadb53(0x44a,'\x34\x23\x45\x51')][_0xbadb53(0x3f3,'\x66\x56\x55\x4e')],_0x7c3cbf));}}_0x26e923[_0xbadb53(0x206,'\x62\x73\x68\x47')]({'\x74\x61\x73\x6b\x46\x69\x6e\x67\x65\x72\x70\x72\x69\x6e\x74':_0x38c99e['\x74\x61\x73\x6b\x46\x69\x6e\x67'+_0xbadb53(0x433,'\x34\x23\x45\x51')],'\x73\x70\x6c\x69\x74':_0x38c99e[_0xbadb53(0x453,'\x62\x73\x68\x47')],'\x73\x74\x72\x61\x74\x75\x6d':_0x38c99e['\x73\x74\x72\x61\x74\x75\x6d'],'\x61\x72\x6d\x4f\x72\x64\x65\x72':_0x16a6d5,'\x63\x75\x72\x72\x65\x6e\x74':{'\x61\x63\x74\x69\x6f\x6e':_0x8eda4e[_0xbadb53(0x16e,'\x5e\x65\x76\x64')+_0xbadb53(0x331,'\x39\x6a\x50\x4a')][_0xbadb53(0x38d,'\x56\x74\x72\x52')],'\x6f\x75\x74\x63\x6f\x6d\x65':_0xecb170[_0xbadb53(0x2e0,'\x33\x5b\x51\x38')](_0xbadb53(0x1c0,'\x5e\x63\x65\x54'))},'\x67\x6c\x6f\x62\x61\x6c\x46\x6c\x61\x74\x41\x62\x73\x74\x61\x69\x6e':{'\x61\x63\x74\x69\x6f\x6e':_0x8eda4e[_0xbadb53(0x2b5,'\x74\x31\x2a\x7a')+_0xbadb53(0x1ba,'\x62\x6e\x50\x46')+_0xbadb53(0x2be,'\x41\x46\x35\x58')][_0xbadb53(0x1b9,'\x57\x64\x33\x23')],'\x6f\x75\x74\x63\x6f\x6d\x65':_0xecb170[_0xbadb53(0x322,'\x39\x6a\x50\x4a')](_0xbadb53(0x29c,'\x34\x28\x49\x31')+_0xbadb53(0x387,'\x62\x73\x68\x47')+_0xbadb53(0x34d,'\x68\x4b\x6f\x5b'))}});}return{'\x62\x65\x6e\x63\x68\x6d\x61\x72\x6b\x56\x65\x72\x73\x69\x6f\x6e':SELECTION_FLAT_ABSTENTION_BENCHMARK_VERSION,'\x73\x74\x61\x74\x69\x73\x74\x69\x63\x61\x6c\x4d\x65\x74\x68\x6f\x64\x73':{'\x6d\x63\x6e\x65\x6d\x61\x72':_0xbadb53(0x434,'\x6b\x5d\x74\x43')+_0xbadb53(0x1f6,'\x74\x6b\x4c\x5a')+'\x62\x69\x6e\x6f\x6d\x69\x61\x6c','\x72\x69\x73\x6b\x44\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x43\x69':_0xbadb53(0x3a7,'\x54\x7a\x24\x71')+_0xbadb53(0x172,'\x63\x64\x43\x49')+_0xbadb53(0x2ee,'\x49\x43\x63\x37')},'\x73\x75\x69\x74\x65':_0x1953c9['\x6e\x61\x6d\x65'],'\x63\x6f\x68\x6f\x72\x74':{'\x69\x64':_0x1953c9[_0xbadb53(0x27b,'\x52\x73\x45\x54')]['\x69\x64'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x1953c9[_0xbadb53(0x29a,'\x55\x47\x52\x57')][_0xbadb53(0x475,'\x74\x6b\x4c\x5a')],'\x73\x6f\x75\x72\x63\x65\x43\x6f\x6d\x6d\x69\x74':_0x1953c9['\x63\x6f\x68\x6f\x72\x74'][_0xbadb53(0x26c,'\x41\x46\x35\x58')+_0xbadb53(0x297,'\x6c\x46\x5b\x5d')],'\x76\x65\x72\x69\x66\x69\x65\x72':{..._0x1953c9[_0xbadb53(0x246,'\x54\x7a\x24\x71')]['\x76\x65\x72\x69\x66\x69\x65\x72']},'\x72\x65\x67\x69\x73\x74\x65\x72\x65\x64\x54\x61\x73\x6b\x73':_0x1953c9[_0xbadb53(0x1ca,'\x74\x31\x2a\x7a')][_0xbadb53(0x22c,'\x50\x50\x6a\x30')+_0xbadb53(0x382,'\x35\x4e\x4d\x65')][_0xbadb53(0x364,'\x26\x63\x63\x50')]},'\x64\x61\x74\x61\x73\x65\x74\x44\x69\x67\x65\x73\x74':_0x38d911,'\x74\x61\x72\x67\x65\x74\x54\x61\x73\x6b\x73':_0x26e923[_0xbadb53(0x395,'\x35\x4e\x4d\x65')],'\x63\x6f\x6e\x74\x72\x6f\x6c\x54\x61\x73\x6b\x73':_0x1953c9[_0xbadb53(0x42e,'\x6b\x5d\x74\x43')][_0xbadb53(0x312,'\x2a\x68\x40\x37')]-_0x26e923['\x6c\x65\x6e\x67\x74\x68'],'\x63\x6f\x6e\x74\x72\x6f\x6c\x44\x69\x76\x65\x72\x67\x65\x6e\x63\x65\x73':0x0,'\x72\x6f\x77\x73':_0x26e923,'\x6f\x76\x65\x72\x61\x6c\x6c':summarizeRows(_0x26e923),'\x63\x61\x6c\x69\x62\x72\x61\x74\x69\x6f\x6e':summarizeRows(_0x26e923[_0xbadb53(0x371,'\x41\x46\x35\x58')](_0x195f44=>_0x195f44[_0xbadb53(0x1a8,'\x54\x7a\x24\x71')]===_0xbadb53(0x45a,'\x77\x31\x62\x25')+_0xbadb53(0x1f2,'\x4a\x6a\x32\x4e'))),'\x68\x6f\x6c\x64\x6f\x75\x74':summarizeRows(_0x26e923[_0xbadb53(0x33d,'\x52\x73\x45\x54')](_0x1a0ca5=>_0x1a0ca5[_0xbadb53(0x3c3,'\x5e\x76\x77\x28')]===_0xbadb53(0x1a1,'\x57\x64\x33\x23'))),'\x73\x74\x72\x61\x74\x61':rowsByStratum(_0x26e923)};}function _0x43cc(){const _0x1c84e0=['\x6e\x43\x6b\x32\x57\x35\x2f\x63\x50\x59\x53','\x57\x36\x33\x63\x56\x78\x71\x75','\x76\x74\x68\x64\x48\x71\x62\x73\x68\x43\x6b\x4a\x43\x47','\x65\x43\x6f\x68\x6c\x6d\x6b\x43','\x57\x52\x44\x65\x6c\x66\x52\x64\x52\x77\x6e\x58\x57\x34\x65','\x57\x36\x50\x70\x6c\x43\x6b\x48\x57\x50\x4e\x64\x55\x43\x6b\x2b\x6b\x57','\x79\x38\x6b\x5a\x77\x38\x6f\x50\x57\x51\x57\x58\x6b\x5a\x4b','\x68\x58\x6d\x73\x6e\x43\x6f\x5a\x6d\x63\x46\x63\x4d\x47','\x61\x77\x52\x64\x54\x47\x48\x5a\x57\x36\x48\x63\x6e\x57','\x57\x37\x4e\x64\x56\x65\x66\x72\x57\x50\x30','\x57\x36\x72\x44\x45\x75\x56\x64\x56\x67\x6e\x47\x57\x35\x61','\x44\x38\x6b\x43\x46\x6d\x6b\x66\x76\x6d\x6b\x72\x57\x34\x44\x33','\x64\x72\x34\x4e\x57\x51\x54\x77\x62\x47','\x73\x73\x4e\x63\x52\x38\x6b\x32\x46\x53\x6f\x30','\x57\x36\x37\x64\x48\x4a\x64\x63\x56\x6d\x6f\x73\x57\x36\x58\x4e\x57\x36\x69','\x7a\x38\x6b\x6b\x41\x6d\x6b\x6d\x78\x43\x6b\x6b\x57\x34\x48\x4d','\x57\x50\x6a\x43\x57\x37\x61\x62\x57\x34\x56\x64\x47\x43\x6f\x6e\x46\x57','\x57\x37\x5a\x63\x49\x43\x6b\x33\x63\x71','\x44\x53\x6b\x59\x68\x53\x6f\x34\x57\x52\x61','\x57\x35\x4f\x30\x45\x6d\x6b\x77\x6e\x53\x6b\x56\x57\x51\x34','\x57\x36\x56\x64\x53\x4e\x79\x61\x57\x36\x37\x64\x49\x61\x4b','\x66\x61\x33\x64\x49\x71','\x46\x53\x6b\x72\x41\x57','\x64\x61\x70\x64\x4e\x43\x6f\x32\x78\x43\x6f\x6f\x57\x4f\x79\x6a','\x62\x5a\x44\x36\x62\x38\x6b\x46\x57\x37\x70\x64\x49\x47','\x57\x36\x64\x63\x50\x32\x65\x6d\x57\x37\x6c\x64\x4b\x75\x5a\x64\x4b\x61','\x57\x35\x42\x63\x50\x38\x6b\x48\x63\x4d\x4c\x43\x72\x71','\x66\x5a\x43\x57\x57\x50\x46\x64\x4d\x57\x34','\x57\x50\x30\x4e\x57\x51\x65','\x57\x34\x71\x4c\x57\x50\x4c\x6b\x57\x37\x43','\x57\x52\x57\x46\x57\x36\x74\x63\x51\x53\x6b\x58\x57\x52\x74\x64\x51\x66\x79','\x57\x34\x53\x30\x46\x47','\x67\x53\x6f\x62\x7a\x53\x6f\x6f\x66\x53\x6b\x2f\x6b\x71','\x57\x36\x54\x6b\x6c\x53\x6b\x33\x57\x50\x33\x64\x50\x57','\x75\x63\x33\x63\x52\x57','\x64\x59\x72\x36','\x72\x74\x6e\x56\x41\x43\x6f\x63\x57\x51\x2f\x63\x4a\x53\x6b\x65','\x57\x35\x64\x64\x54\x53\x6f\x41\x62\x48\x72\x75','\x57\x4f\x68\x64\x4f\x4c\x39\x57','\x57\x4f\x6c\x64\x54\x75\x71\x33\x57\x51\x68\x64\x48\x53\x6f\x34\x6f\x71','\x57\x36\x2f\x63\x4c\x38\x6b\x54\x64\x4d\x4c\x42\x6a\x4a\x43','\x57\x52\x43\x79\x57\x36\x64\x63\x52\x53\x6b\x39\x57\x51\x70\x63\x4f\x61','\x44\x53\x6f\x4b\x65\x53\x6f\x63\x57\x37\x4b','\x57\x36\x74\x63\x52\x32\x4c\x46\x57\x51\x66\x69\x76\x53\x6f\x77','\x71\x67\x6c\x64\x4d\x71\x35\x76\x76\x53\x6f\x47\x44\x61','\x65\x43\x6f\x61\x79\x38\x6f\x6d\x64\x38\x6b\x2b\x6c\x57\x75','\x57\x37\x4f\x4c\x57\x51\x70\x64\x4a\x33\x4e\x64\x4f\x38\x6b\x49\x57\x4f\x71','\x57\x52\x44\x79\x42\x71\x52\x63\x56\x78\x75\x34','\x57\x4f\x69\x4f\x57\x50\x72\x6b\x57\x37\x6d\x59','\x65\x38\x6b\x41\x7a\x43\x6b\x6b\x6a\x4c\x75','\x44\x38\x6f\x65\x41\x53\x6b\x67\x73\x43\x6f\x64\x57\x35\x6a\x49','\x57\x36\x39\x58\x57\x34\x74\x63\x4f\x43\x6b\x45\x63\x57','\x57\x36\x72\x6e\x6c\x6d\x6b\x53\x57\x4f\x37\x64\x54\x6d\x6b\x6d\x69\x47','\x67\x38\x6b\x74\x46\x38\x6f\x73\x63\x43\x6b\x57\x6d\x72\x47','\x57\x50\x74\x64\x52\x4b\x43\x4e\x57\x52\x68\x64\x4c\x57','\x64\x61\x46\x64\x4e\x43\x6f\x50','\x57\x52\x39\x35\x46\x43\x6f\x64\x57\x50\x52\x64\x55\x53\x6f\x4a','\x68\x53\x6f\x44\x57\x36\x37\x63\x4c\x53\x6f\x67\x45\x61\x69','\x6f\x53\x6b\x4e\x57\x35\x4a\x63\x52\x5a\x68\x63\x54\x71','\x74\x43\x6f\x50\x57\x36\x70\x64\x4d\x74\x43','\x57\x36\x4a\x63\x48\x5a\x70\x64\x51\x47','\x42\x58\x47\x67\x65\x47','\x75\x38\x6b\x66\x6e\x53\x6b\x5a\x6d\x53\x6f\x76\x57\x4f\x74\x63\x48\x61','\x57\x36\x6c\x64\x52\x4d\x34\x78\x57\x36\x74\x64\x4c\x57','\x68\x74\x53\x59\x57\x4f\x74\x64\x49\x48\x71','\x57\x36\x74\x63\x4d\x53\x6b\x32\x71\x77\x4c\x76\x65\x59\x38','\x6d\x31\x69\x44','\x57\x36\x6c\x63\x54\x32\x4b\x68\x71\x6d\x6f\x61','\x6c\x4a\x4c\x64\x6c\x76\x38\x38\x57\x34\x2f\x63\x47\x62\x76\x46\x57\x52\x46\x63\x47\x31\x34','\x57\x36\x6a\x47\x57\x34\x4e\x63\x52\x53\x6f\x6b\x66\x31\x4a\x63\x4f\x57','\x63\x47\x79\x63\x6e\x53\x6b\x76\x70\x59\x42\x63\x4a\x57','\x62\x38\x6f\x77\x44\x43\x6f\x6a\x63\x38\x6b\x34\x6d\x48\x38','\x57\x36\x62\x48\x57\x35\x4a\x63\x54\x6d\x6b\x70\x64\x75\x71','\x57\x36\x70\x64\x4f\x4e\x79\x5a\x57\x37\x70\x64\x49\x48\x4a\x64\x4d\x71','\x6c\x6d\x6f\x43\x57\x35\x6c\x63\x52\x53\x6f\x4f','\x66\x38\x6b\x7a\x79\x53\x6b\x68\x6e\x75\x30\x62\x6a\x47','\x57\x34\x6c\x64\x4f\x43\x6f\x43\x62\x48\x76\x44','\x78\x75\x7a\x76\x57\x50\x34','\x71\x49\x4e\x64\x53\x57\x4c\x52\x57\x36\x58\x70\x70\x61','\x57\x37\x68\x63\x48\x5a\x64\x63\x4f\x53\x6b\x42\x57\x36\x54\x53\x57\x51\x6d','\x74\x73\x44\x32\x41\x38\x6b\x6c\x57\x51\x70\x63\x4a\x43\x6b\x41','\x75\x31\x31\x6c\x57\x4f\x47\x37\x6e\x38\x6b\x39\x46\x57','\x57\x37\x33\x63\x54\x32\x53\x66\x76\x38\x6f\x43\x65\x67\x4f','\x57\x34\x64\x63\x53\x48\x30','\x57\x52\x44\x65\x46\x4c\x68\x64\x50\x49\x72\x52\x57\x35\x6d','\x57\x34\x6c\x63\x48\x76\x4e\x63\x4d\x4e\x4a\x64\x50\x47','\x75\x73\x4e\x63\x51\x6d\x6f\x57\x42\x6d\x6f\x6e\x57\x35\x48\x57','\x57\x37\x42\x63\x48\x30\x68\x64\x50\x62\x66\x71\x45\x57','\x61\x63\x50\x4c\x67\x43\x6b\x74\x57\x37\x5a\x64\x4b\x61','\x57\x36\x58\x6b\x6d\x6d\x6b\x4d\x57\x50\x5a\x63\x55\x6d\x6b\x6f\x44\x47','\x63\x4a\x4a\x63\x4f\x74\x69\x64\x57\x51\x6d\x6a\x57\x50\x69','\x7a\x53\x6b\x66\x46\x38\x6b\x63\x67\x38\x6b\x71\x57\x34\x48\x49','\x6c\x66\x71\x62\x57\x51\x71','\x65\x53\x6b\x43\x41\x53\x6b\x6d\x6f\x4c\x75','\x57\x51\x44\x66\x46\x4b\x52\x64\x52\x73\x31\x32\x57\x37\x71','\x57\x51\x4c\x37\x79\x43\x6f\x79\x57\x4f\x43','\x57\x4f\x42\x64\x54\x75\x69\x2b','\x57\x37\x42\x63\x50\x33\x79\x63\x57\x37\x6c\x64\x4a\x4b\x57','\x45\x38\x6f\x4b\x67\x53\x6f\x65\x57\x37\x4e\x63\x48\x6d\x6f\x6a\x57\x34\x65','\x57\x34\x38\x2b\x79\x53\x6b\x6b\x6c\x43\x6b\x30','\x77\x4b\x50\x76\x57\x50\x30\x4d\x6d\x71','\x65\x43\x6f\x73\x57\x37\x42\x63\x47\x6d\x6f\x65','\x57\x34\x64\x64\x4b\x43\x6f\x55\x6b\x53\x6f\x4f\x69\x43\x6b\x6e\x57\x51\x34','\x66\x43\x6b\x72\x6c\x43\x6b\x65\x6a\x4b\x58\x4e\x6c\x57','\x6f\x38\x6b\x4a\x57\x34\x79','\x57\x51\x50\x34\x7a\x43\x6f\x45\x57\x4f\x46\x63\x54\x6d\x6f\x30\x77\x71','\x57\x36\x4f\x4b\x57\x37\x68\x64\x4b\x33\x70\x64\x55\x43\x6f\x32\x57\x51\x79','\x73\x6d\x6f\x38\x57\x37\x33\x64\x4d\x73\x75\x4a\x57\x52\x35\x46','\x57\x36\x78\x63\x4d\x53\x6b\x32\x64\x32\x61\x78\x62\x4a\x71','\x57\x50\x68\x64\x56\x6d\x6f\x61\x67\x58\x35\x44\x69\x4c\x57','\x57\x36\x62\x63\x6d\x47','\x6b\x62\x46\x64\x50\x30\x56\x63\x4a\x72\x6c\x64\x47\x61','\x57\x4f\x75\x59\x57\x50\x6d\x45','\x57\x51\x47\x52\x45\x43\x6f\x71\x57\x4f\x64\x64\x56\x38\x6b\x33','\x6c\x4b\x35\x79\x6f\x43\x6b\x52\x57\x51\x78\x64\x4e\x43\x6b\x48\x57\x34\x4f','\x57\x34\x46\x63\x56\x6d\x6b\x38\x65\x32\x39\x6a\x78\x53\x6f\x64','\x57\x36\x74\x64\x52\x4e\x58\x42\x57\x37\x6d\x42\x74\x6d\x6f\x77','\x71\x4e\x33\x64\x55\x57\x35\x5a\x57\x37\x34\x64\x6a\x47','\x64\x47\x79\x79\x6c\x38\x6b\x32\x6d\x4d\x78\x63\x47\x61','\x63\x59\x54\x38\x66\x6d\x6b\x41\x57\x37\x74\x64\x4d\x53\x6f\x37','\x76\x53\x6b\x79\x6f\x43\x6b\x2b','\x46\x43\x6b\x72\x45\x6d\x6b\x6b\x76\x6d\x6b\x6f\x57\x34\x6d','\x57\x36\x37\x63\x4a\x4c\x47','\x45\x53\x6b\x66\x46\x57','\x62\x4a\x4e\x63\x4b\x59\x72\x71\x57\x52\x75\x6e\x57\x35\x53','\x57\x36\x4a\x64\x4f\x4d\x57\x65\x57\x37\x78\x64\x4a\x71','\x67\x58\x79\x34\x57\x51\x58\x77\x65\x61','\x57\x37\x4f\x2f\x57\x52\x4e\x64\x4b\x4d\x37\x64\x55\x71','\x57\x50\x44\x66\x57\x37\x44\x61\x57\x35\x74\x63\x47\x6d\x6f\x6b\x45\x71','\x62\x76\x66\x74\x7a\x43\x6b\x38\x6e\x38\x6f\x6e\x57\x36\x38','\x63\x6d\x6b\x71\x42\x53\x6b\x71\x69\x65\x47\x4f\x6a\x61','\x67\x64\x4f\x36\x57\x4f\x64\x64\x4f\x71','\x73\x6d\x6b\x46\x6a\x6d\x6b\x37\x6f\x53\x6f\x64','\x69\x6d\x6b\x59\x68\x38\x6f\x51\x57\x51\x30\x33\x79\x4a\x4b','\x42\x66\x37\x63\x51\x47','\x64\x49\x6c\x63\x56\x61','\x76\x4e\x33\x64\x4e\x47\x35\x74','\x71\x49\x44\x56\x67\x38\x6b\x76\x57\x37\x78\x64\x4b\x38\x6b\x36','\x57\x52\x69\x73\x76\x6d\x6f\x34\x57\x35\x71','\x57\x4f\x48\x77\x57\x36\x61\x6a\x57\x34\x68\x63\x49\x6d\x6f\x6a\x42\x47','\x57\x52\x34\x62\x57\x36\x6c\x63\x52\x53\x6b\x35\x57\x52\x33\x64\x4e\x62\x71','\x57\x52\x64\x64\x56\x77\x50\x65\x57\x51\x79\x41\x74\x6d\x6f\x73','\x57\x36\x33\x63\x50\x33\x75\x73\x75\x43\x6f\x67\x64\x76\x75','\x62\x75\x61\x46\x42\x53\x6b\x57\x6e\x38\x6b\x69\x57\x36\x47','\x41\x72\x79\x7a\x68\x6d\x6b\x65\x57\x4f\x64\x64\x55\x53\x6b\x6f','\x67\x38\x6f\x77\x57\x37\x74\x63\x4c\x6d\x6f\x76\x44\x71','\x57\x37\x46\x64\x54\x32\x34\x6b\x57\x37\x75','\x57\x34\x42\x64\x4e\x6d\x6f\x53\x70\x43\x6f\x55\x6f\x38\x6b\x79\x57\x50\x53','\x6b\x4c\x42\x64\x4f\x66\x4e\x63\x4d\x58\x30','\x6d\x6d\x6f\x6e\x57\x34\x37\x63\x53\x38\x6f\x51','\x61\x6d\x6b\x4a\x57\x35\x52\x63\x56\x73\x61','\x57\x52\x42\x63\x53\x4a\x61\x59\x57\x37\x78\x64\x50\x61\x68\x64\x55\x38\x6f\x34','\x72\x63\x44\x39\x41\x43\x6f\x6f\x57\x36\x5a\x63\x49\x43\x6b\x46','\x45\x76\x43\x64\x67\x43\x6b\x30\x57\x4f\x4a\x64\x55\x6d\x6b\x61','\x6d\x53\x6f\x41\x57\x35\x37\x64\x52\x43\x6f\x39\x67\x62\x78\x64\x53\x47','\x6c\x4c\x69\x62','\x64\x48\x71\x7a\x6d\x53\x6b\x4e\x44\x49\x56\x63\x48\x57','\x57\x50\x39\x68\x57\x37\x65\x69\x57\x4f\x46\x63\x47\x6d\x6f\x79\x70\x61','\x74\x58\x76\x62\x70\x53\x6f\x52\x43\x43\x6f\x43\x57\x36\x46\x64\x48\x4b\x48\x52\x57\x34\x42\x64\x52\x47','\x57\x34\x70\x63\x53\x75\x4b\x66\x77\x43\x6f\x6a\x63\x59\x75','\x61\x38\x6f\x77\x57\x36\x4e\x63\x48\x57','\x46\x62\x75\x67\x65\x53\x6f\x49\x57\x4f\x56\x64\x53\x43\x6b\x70','\x57\x37\x44\x31\x57\x35\x4e\x63\x52\x43\x6f\x6b\x65\x66\x37\x63\x50\x57','\x57\x35\x4b\x4a\x45\x6d\x6b\x61\x6d\x43\x6b\x30\x57\x36\x64\x64\x48\x61','\x57\x52\x47\x7a\x57\x34\x5a\x63\x52\x53\x6b\x52\x57\x51\x78\x64\x55\x58\x65','\x67\x43\x6b\x62\x7a\x6d\x6b\x74\x6d\x71','\x57\x50\x68\x64\x51\x65\x6d\x38\x57\x51\x42\x64\x4b\x71','\x71\x59\x6e\x58\x7a\x53\x6f\x64\x57\x51\x68\x63\x4a\x53\x6b\x63','\x57\x52\x65\x6d\x57\x37\x2f\x63\x51\x43\x6b\x38\x57\x50\x64\x64\x51\x61\x4f','\x42\x47\x6d\x79\x68\x53\x6b\x53\x57\x4f\x34','\x75\x73\x44\x53\x44\x53\x6f\x6f\x57\x51\x47','\x74\x4a\x5a\x64\x56\x6d\x6b\x5a\x79\x53\x6f\x42\x57\x4f\x54\x4e','\x57\x34\x42\x63\x52\x43\x6b\x51\x73\x32\x39\x72\x72\x6d\x6f\x46','\x67\x30\x71\x64','\x57\x36\x58\x78\x61\x38\x6b\x48\x57\x4f\x56\x64\x4f\x43\x6b\x7a\x6c\x47','\x6c\x4c\x42\x64\x4f\x65\x68\x63\x55\x62\x64\x63\x4a\x53\x6b\x5a','\x45\x53\x6b\x41\x6d\x53\x6f\x71\x57\x35\x71\x78','\x57\x50\x31\x43\x57\x37\x57\x74\x57\x35\x70\x63\x4b\x38\x6f\x7a\x46\x57','\x57\x36\x5a\x63\x4c\x71\x78\x63\x4f\x6d\x6f\x76\x57\x37\x66\x32\x57\x51\x43','\x66\x53\x6b\x43\x79\x43\x6b\x72\x6d\x76\x6d','\x57\x36\x33\x63\x50\x33\x75\x73\x75\x43\x6f\x67\x64\x71','\x44\x43\x6b\x69\x79\x38\x6b\x6c\x77\x53\x6b\x70\x57\x36\x62\x56','\x44\x5a\x2f\x63\x51\x6d\x6b\x6f\x74\x61','\x76\x73\x33\x63\x50\x6d\x6f\x39\x42\x53\x6f\x61\x57\x34\x7a\x50','\x57\x36\x68\x64\x56\x33\x69\x67\x57\x36\x6c\x64\x4b\x71\x33\x64\x47\x47','\x76\x38\x6f\x33\x57\x37\x4e\x64\x4b\x73\x38\x4a\x57\x52\x38\x6e','\x57\x4f\x38\x52\x57\x52\x53','\x57\x51\x6a\x78\x77\x53\x6f\x5a\x57\x35\x64\x63\x4e\x64\x38\x6e','\x63\x78\x37\x64\x51\x38\x6f\x55\x6f\x43\x6b\x46\x57\x50\x31\x73\x45\x38\x6f\x77\x6e\x77\x33\x64\x49\x47','\x46\x48\x47\x63\x67\x6d\x6b\x57\x57\x50\x30','\x6a\x43\x6b\x32\x57\x35\x70\x63\x55\x49\x64\x63\x55\x76\x2f\x64\x54\x61','\x70\x72\x6d\x6c\x61\x38\x6b\x4a','\x63\x43\x6f\x76\x79\x6d\x6b\x6d\x6a\x30\x57\x4d\x70\x47','\x57\x51\x75\x79\x72\x53\x6f\x5a\x57\x35\x6c\x63\x4a\x4e\x6d\x6a','\x57\x34\x46\x64\x53\x6d\x6f\x43\x62\x48\x31\x74\x69\x4c\x57','\x57\x4f\x65\x56\x57\x4f\x54\x78\x57\x36\x69\x50\x46\x6d\x6f\x45','\x57\x51\x74\x64\x51\x4e\x43\x71\x57\x37\x78\x63\x48\x71\x37\x64\x4b\x57','\x42\x48\x69\x45','\x61\x38\x6f\x73\x57\x36\x4e\x63\x4d\x6d\x6b\x62\x42\x48\x34\x6e','\x6a\x65\x72\x45\x71\x38\x6f\x58\x57\x50\x52\x64\x4e\x53\x6b\x62\x57\x36\x5a\x64\x55\x57\x43','\x57\x37\x50\x35\x41\x6d\x6f\x66\x57\x4f\x42\x64\x50\x53\x6f\x35\x75\x57','\x6e\x30\x34\x68\x57\x51\x39\x48\x57\x34\x57\x47\x57\x34\x57','\x76\x76\x50\x6a\x57\x4f\x47\x33\x6e\x38\x6b\x39','\x61\x38\x6f\x42\x57\x34\x4a\x63\x50\x43\x6f\x37\x6e\x62\x79','\x72\x32\x52\x64\x53\x59\x6a\x74','\x75\x53\x6b\x65\x69\x38\x6b\x35\x6d\x38\x6f\x6c\x57\x34\x65','\x75\x6d\x6f\x54\x57\x36\x37\x64\x4d\x73\x30\x35\x57\x37\x54\x79','\x57\x37\x74\x64\x54\x77\x44\x6f\x57\x37\x70\x64\x47\x61\x56\x64\x4e\x57','\x6d\x30\x74\x64\x47\x65\x56\x63\x4d\x62\x5a\x63\x51\x43\x6b\x36','\x75\x43\x6f\x53\x57\x37\x56\x64\x4b\x59\x57\x4e\x57\x52\x34','\x57\x4f\x47\x6b\x57\x51\x42\x63\x4a\x4b\x2f\x64\x54\x43\x6f\x54','\x57\x37\x42\x63\x4b\x4a\x68\x63\x51\x6d\x6f\x70\x57\x36\x31\x56','\x57\x52\x6e\x4b\x79\x57','\x61\x48\x47\x4c','\x78\x64\x5a\x63\x4e\x43\x6b\x2f\x46\x53\x6f\x42\x57\x34\x50\x54','\x67\x57\x75\x4b\x57\x52\x54\x67\x66\x59\x74\x64\x4c\x61','\x57\x50\x50\x41\x57\x37\x71\x67\x57\x34\x6c\x63\x4b\x38\x6f\x6a\x43\x47','\x57\x37\x42\x63\x4d\x75\x78\x63\x56\x71\x7a\x75\x41\x74\x57','\x57\x37\x65\x58\x57\x51\x70\x64\x4d\x68\x4a\x64\x4a\x6d\x6b\x4b\x57\x52\x43','\x77\x62\x68\x64\x49\x38\x6f\x58\x67\x6d\x6f\x45\x57\x50\x57\x62','\x45\x38\x6f\x72\x67\x6d\x6f\x7a\x57\x37\x37\x63\x4d\x6d\x6b\x68','\x41\x53\x6b\x6d\x6d\x43\x6f\x75\x57\x35\x65\x67\x57\x36\x47\x74','\x41\x38\x6b\x59\x42\x53\x6b\x6b\x75\x57','\x43\x53\x6f\x31\x63\x43\x6f\x44\x57\x36\x78\x63\x4e\x53\x6b\x68\x57\x35\x71','\x57\x36\x6a\x47\x57\x36\x56\x63\x50\x6d\x6b\x7a\x66\x31\x68\x63\x52\x57','\x57\x35\x38\x4c\x45\x6d\x6b\x65\x6b\x38\x6b\x31\x57\x51\x30','\x57\x36\x33\x63\x47\x38\x6b\x59','\x57\x52\x71\x73\x72\x53\x6f\x55\x57\x34\x6d','\x67\x58\x38\x62\x6f\x6d\x6b\x57\x69\x49\x4e\x63\x4e\x61','\x46\x4e\x47\x31\x44\x48\x72\x39\x57\x50\x37\x63\x48\x61','\x41\x76\x37\x63\x51\x67\x68\x63\x4e\x4e\x75\x43\x57\x35\x6d','\x79\x53\x6b\x44\x6e\x43\x6b\x72\x57\x35\x38\x68\x57\x37\x4f\x74','\x57\x35\x33\x64\x53\x6d\x6f\x61\x63\x61\x39\x73','\x68\x72\x52\x64\x4e\x53\x6f\x34\x68\x53\x6f\x6a\x57\x4f\x4b\x43','\x57\x51\x79\x64\x57\x52\x4a\x63\x47\x68\x30','\x62\x6d\x6f\x68\x57\x36\x4a\x63\x4d\x53\x6f\x70\x45\x4b\x4f','\x57\x35\x4e\x63\x4a\x75\x74\x63\x4a\x71','\x63\x38\x6f\x73\x7a\x43\x6f\x78\x6f\x43\x6b\x34\x6d\x58\x79','\x6c\x6d\x6f\x43\x57\x35\x52\x63\x51\x43\x6f\x48\x64\x4c\x6c\x64\x55\x47','\x64\x61\x47\x44\x6f\x61','\x79\x43\x6f\x35\x66\x6d\x6f\x64\x57\x52\x46\x63\x4d\x53\x6b\x61\x57\x35\x6d','\x57\x36\x78\x63\x4e\x4c\x6c\x64\x4f\x48\x66\x46\x45\x47','\x57\x35\x68\x63\x48\x75\x74\x63\x4a\x78\x74\x64\x50\x4d\x4e\x63\x51\x47','\x70\x38\x6b\x54\x57\x35\x47','\x57\x4f\x69\x4e\x57\x50\x31\x6d\x57\x52\x75','\x65\x38\x6f\x77\x45\x6d\x6f\x42\x63\x38\x6b\x35','\x63\x59\x50\x4b','\x57\x36\x4e\x64\x50\x4e\x69','\x45\x6d\x6b\x6c\x7a\x43\x6b\x68','\x57\x36\x33\x63\x53\x33\x71\x66\x66\x6d\x6b\x43\x73\x73\x47','\x57\x51\x4c\x4f\x79\x53\x6f\x64\x57\x50\x79','\x57\x4f\x6c\x64\x51\x30\x4f\x4e\x57\x52\x68\x64\x48\x6d\x6f\x4f\x61\x47','\x57\x34\x42\x63\x52\x43\x6b\x37\x66\x77\x4b','\x57\x4f\x50\x73\x57\x36\x65\x6c\x57\x35\x71','\x57\x37\x68\x64\x54\x68\x7a\x64\x57\x36\x70\x64\x47\x65\x5a\x64\x4d\x61','\x57\x52\x75\x69\x57\x36\x70\x63\x51\x38\x6b\x53\x57\x52\x4b','\x6e\x65\x4b\x44\x57\x51\x4c\x37\x57\x4f\x53','\x57\x36\x70\x64\x55\x32\x50\x63\x57\x52\x79\x6d\x61\x53\x6f\x75','\x57\x36\x48\x72\x6d\x53\x6b\x58\x57\x50\x68\x64\x55\x38\x6b\x6d','\x57\x50\x54\x6c\x57\x37\x6d\x64\x57\x35\x70\x64\x4a\x6d\x6f\x79\x41\x57','\x61\x31\x43\x54\x57\x52\x62\x62\x76\x61','\x57\x50\x54\x73\x57\x37\x61\x6d\x57\x34\x6c\x64\x47\x43\x6f\x6b\x43\x57','\x57\x50\x4c\x4b\x57\x36\x75\x34\x57\x36\x61','\x57\x52\x38\x41\x75\x43\x6f\x59\x57\x34\x52\x64\x4e\x74\x47\x62','\x57\x34\x4a\x64\x49\x6d\x6f\x55','\x57\x4f\x47\x56\x57\x52\x5a\x63\x47\x4d\x5a\x64\x52\x38\x6f\x33\x57\x37\x34','\x57\x52\x44\x65\x46\x4b\x33\x64\x51\x5a\x44\x33\x57\x34\x43','\x75\x31\x44\x6c\x57\x50\x38\x58\x6c\x43\x6b\x4f\x45\x61','\x57\x51\x50\x51\x46\x53\x6f\x63\x57\x50\x42\x64\x53\x61','\x63\x58\x42\x64\x4e\x6d\x6f\x38\x63\x43\x6f\x69\x57\x4f\x75','\x57\x4f\x34\x52\x57\x51\x56\x63\x4e\x65\x4e\x64\x4f\x57','\x57\x36\x4b\x4a\x57\x52\x4e\x64\x4b\x4d\x4a\x63\x52\x43\x6b\x31\x57\x51\x4f','\x57\x34\x30\x4b\x78\x53\x6b\x6f\x6b\x47','\x57\x4f\x6d\x54\x57\x50\x44\x43\x57\x37\x43\x53\x74\x6d\x6f\x78','\x57\x37\x6e\x4e\x57\x34\x6c\x63\x51\x43\x6b\x45\x71\x31\x33\x63\x53\x57','\x43\x38\x6b\x79\x57\x4f\x33\x64\x53\x43\x6b\x36\x73\x75\x70\x64\x55\x53\x6f\x62\x65\x6d\x6f\x4b\x68\x4d\x34','\x6e\x53\x6f\x72\x57\x50\x56\x63\x54\x38\x6f\x4e\x67\x62\x5a\x63\x55\x57','\x57\x36\x53\x31\x57\x52\x78\x63\x4b\x68\x2f\x64\x4f\x43\x6b\x35\x57\x51\x53','\x57\x34\x6c\x64\x54\x53\x6f\x43\x62\x47\x54\x6f\x6b\x66\x57','\x57\x35\x47\x79\x78\x43\x6b\x61\x68\x71','\x57\x34\x42\x64\x48\x53\x6f\x57\x6f\x38\x6f\x35\x6f\x53\x6b\x61','\x57\x36\x35\x6d\x6b\x53\x6b\x53\x57\x4f\x52\x64\x4f\x71','\x57\x34\x65\x57\x45\x47','\x7a\x43\x6b\x50\x63\x38\x6f\x39\x57\x51\x4f\x54\x46\x57','\x42\x30\x52\x63\x54\x32\x42\x63\x4e\x30\x79','\x6a\x43\x6b\x59\x57\x35\x52\x63\x4f\x74\x65','\x77\x38\x6f\x76\x70\x6d\x6f\x53\x57\x34\x70\x63\x56\x53\x6b\x2f\x57\x36\x75','\x57\x4f\x64\x64\x4b\x72\x4a\x63\x55\x67\x4e\x64\x47\x32\x78\x63\x4b\x30\x4b','\x57\x4f\x68\x64\x53\x31\x4b\x36\x57\x52\x52\x64\x47\x53\x6f\x30\x6f\x57','\x57\x35\x46\x63\x50\x38\x6b\x39\x65\x47','\x74\x4a\x4a\x63\x53\x6d\x6b\x30\x45\x71','\x46\x68\x34\x72\x44\x72\x6e\x53','\x64\x4a\x62\x54','\x73\x73\x4e\x63\x52\x53\x6b\x36\x41\x6d\x6f\x42\x57\x34\x35\x47','\x76\x59\x39\x36\x43\x53\x6f\x79','\x57\x35\x6c\x64\x4f\x6d\x6f\x43\x68\x72\x35\x75\x6d\x57','\x57\x37\x6d\x2f\x57\x52\x4a\x64\x4b\x57','\x57\x51\x44\x72\x79\x66\x68\x64\x51\x4a\x66\x4a\x57\x34\x65','\x57\x36\x70\x64\x51\x32\x30\x62\x57\x36\x64\x64\x49\x73\x52\x64\x4d\x47','\x6a\x4a\x39\x61\x69\x66\x72\x36\x57\x52\x78\x63\x48\x72\x44\x32\x57\x52\x43','\x57\x34\x6d\x4b\x46\x53\x6b\x67\x6d\x6d\x6b\x54\x57\x51\x75','\x57\x37\x74\x64\x54\x77\x30\x78\x57\x36\x37\x64\x4b\x72\x78\x64\x48\x47','\x57\x4f\x61\x4f\x57\x4f\x54\x44\x57\x37\x4b\x59\x42\x53\x6f\x41','\x57\x34\x42\x64\x48\x53\x6f\x32\x69\x6d\x6f\x35\x69\x43\x6f\x63\x57\x51\x4b','\x57\x50\x71\x77\x57\x52\x42\x63\x4b\x65\x6d','\x44\x53\x6f\x2f\x65\x38\x6f\x63\x57\x36\x78\x63\x47\x57','\x57\x36\x74\x63\x4c\x6d\x6b\x4c','\x64\x5a\x6d\x54\x57\x50\x56\x64\x4e\x64\x30','\x57\x36\x6e\x67\x6f\x53\x6b\x33\x57\x52\x68\x64\x53\x71','\x43\x4b\x56\x63\x51\x67\x33\x63\x4c\x66\x6d\x68\x57\x34\x43','\x76\x31\x54\x36\x57\x50\x47\x48\x6c\x43\x6b\x4f\x7a\x71','\x57\x35\x4a\x63\x50\x6d\x6f\x55\x63\x4d\x6e\x6b\x74\x53\x6f\x64','\x57\x50\x2f\x64\x51\x4b\x69\x4e','\x78\x38\x6f\x45\x79\x38\x6f\x70\x63\x38\x6f\x58\x70\x58\x71','\x57\x36\x6c\x64\x51\x4d\x4c\x76\x57\x51\x65\x6e\x74\x6d\x6f\x75','\x75\x38\x6b\x48\x6e\x53\x6b\x50\x6c\x38\x6f\x64\x57\x34\x61','\x73\x73\x4e\x63\x52\x38\x6b\x32\x6c\x43\x6f\x43\x57\x34\x76\x4c','\x79\x6d\x6b\x62\x6e\x43\x6f\x73\x57\x35\x30\x46\x57\x36\x57','\x57\x37\x4c\x63\x6d\x43\x6b\x4f\x57\x52\x37\x64\x56\x6d\x6b\x77\x69\x61','\x44\x38\x6b\x30\x63\x43\x6f\x4b\x57\x52\x61\x5a\x41\x49\x34','\x45\x43\x6b\x6e\x79\x53\x6b\x6e','\x62\x58\x69\x4c\x57\x52\x48\x68\x68\x61','\x70\x38\x6b\x30\x57\x35\x70\x63\x55\x49\x6c\x63\x55\x62\x68\x64\x53\x61','\x57\x35\x68\x63\x53\x6d\x6b\x2b','\x6c\x66\x6c\x64\x4f\x76\x4e\x63\x4c\x58\x42\x63\x4a\x47','\x57\x34\x4e\x64\x4a\x6d\x6f\x57\x6b\x6d\x6f\x2f\x70\x71','\x43\x4b\x56\x63\x51\x67\x78\x63\x4a\x4b\x65\x64','\x41\x53\x6b\x67\x6d\x43\x6f\x64\x57\x35\x53\x43\x57\x37\x30','\x57\x36\x7a\x57\x57\x4f\x52\x63\x50\x38\x6b\x79\x64\x48\x64\x63\x4f\x57','\x57\x51\x44\x46\x7a\x66\x46\x64\x55\x4a\x43','\x42\x53\x6b\x68\x6d\x53\x6f\x75\x57\x34\x79\x37\x57\x36\x30','\x41\x5a\x66\x52\x76\x53\x6f\x51','\x6e\x4c\x42\x64\x50\x57\x46\x63\x4e\x58\x56\x63\x4b\x38\x6b\x47','\x57\x51\x35\x51\x46\x53\x6f\x41\x57\x4f\x61','\x78\x64\x68\x63\x4e\x53\x6b\x4f\x41\x38\x6f\x6a\x57\x34\x35\x32','\x77\x6d\x6b\x64\x6a\x38\x6b\x4f\x6e\x43\x6f\x69\x57\x35\x64\x63\x48\x61','\x57\x4f\x38\x36\x57\x36\x2f\x63\x48\x30\x78\x64\x53\x53\x6b\x35\x57\x37\x4f','\x6f\x31\x74\x64\x50\x30\x70\x63\x4b\x72\x43','\x67\x71\x69\x66\x65\x53\x6b\x4b\x6f\x62\x4a\x63\x4d\x47','\x57\x37\x6d\x79\x72\x6d\x6b\x4a\x66\x53\x6b\x6f\x57\x4f\x4e\x64\x53\x71','\x57\x36\x74\x63\x47\x49\x43','\x68\x49\x4f\x55\x57\x50\x78\x64\x4a\x62\x6c\x64\x49\x38\x6b\x48','\x76\x38\x6f\x32\x57\x36\x65','\x43\x43\x6b\x72\x46\x53\x6b\x42\x78\x53\x6b\x6e\x57\x35\x6a\x63','\x79\x4b\x52\x63\x51\x68\x42\x63\x4e\x31\x4f\x41','\x57\x50\x68\x64\x53\x4c\x4b\x48\x57\x52\x68\x64\x49\x38\x6f\x50\x68\x61','\x57\x37\x4b\x6d\x57\x51\x33\x63\x56\x38\x6b\x35\x57\x52\x46\x64\x56\x31\x47','\x43\x67\x4b\x73\x43\x47\x6e\x47\x57\x50\x68\x63\x49\x47','\x67\x72\x64\x64\x4e\x6d\x6f\x38\x62\x6d\x6b\x45','\x65\x6d\x6f\x72\x46\x6d\x6f\x7a\x68\x6d\x6b\x4c\x46\x47','\x6a\x38\x6f\x67\x57\x35\x33\x63\x52\x38\x6f\x39\x68\x48\x43','\x76\x6d\x6b\x45\x6f\x71','\x63\x78\x69\x33\x57\x4f\x70\x64\x47\x61\x52\x64\x49\x38\x6b\x48','\x66\x53\x6f\x68\x43\x38\x6b\x43\x65\x43\x6b\x4b\x6d\x62\x6d','\x57\x35\x38\x4c\x42\x38\x6b\x6c\x6b\x38\x6b\x50\x57\x51\x2f\x64\x49\x57','\x74\x78\x64\x64\x4d\x62\x6a\x37\x57\x36\x54\x67\x6a\x57','\x57\x34\x68\x63\x4c\x65\x42\x63\x47\x67\x4b','\x57\x4f\x61\x5a\x57\x50\x66\x79\x57\x36\x69\x66\x7a\x6d\x6f\x41','\x77\x76\x30\x42\x57\x4f\x34\x5a\x6b\x53\x6b\x49\x6c\x61','\x57\x36\x70\x64\x4f\x4e\x79\x53\x57\x37\x42\x64\x49\x5a\x5a\x64\x48\x61','\x57\x36\x52\x63\x48\x57\x64\x64\x56\x62\x54\x67\x41\x59\x43','\x74\x49\x33\x63\x53\x6d\x6b\x34\x42\x53\x6f\x42\x57\x34\x35\x47','\x57\x36\x39\x6d\x6c\x43\x6b\x56\x57\x50\x33\x64\x54\x6d\x6b\x77\x46\x71','\x57\x51\x4b\x63\x72\x38\x6f\x2b\x57\x34\x4e\x63\x4b\x64\x79','\x42\x53\x6b\x44\x6c\x57','\x57\x51\x71\x6f\x72\x38\x6f\x34\x57\x36\x4e\x63\x4d\x5a\x75\x78','\x42\x47\x6d\x70\x62\x43\x6b\x4e\x57\x4f\x33\x63\x54\x6d\x6b\x6b','\x71\x47\x72\x7a\x6e\x53\x6b\x2f\x57\x35\x74\x63\x4e\x53\x6b\x4f','\x78\x4a\x5a\x63\x54\x43\x6b\x59\x79\x57','\x74\x32\x52\x64\x56\x58\x72\x55\x57\x36\x6a\x72\x44\x71','\x63\x58\x42\x64\x49\x38\x6f\x56\x67\x6d\x6f\x7a\x57\x34\x47\x6c','\x69\x53\x6b\x4a\x57\x34\x78\x63\x4f\x32\x75','\x57\x35\x2f\x64\x4f\x43\x6b\x6f\x67\x58\x72\x6f\x6a\x4b\x69','\x45\x4e\x42\x64\x47\x67\x4e\x63\x54\x5a\x64\x64\x47\x6d\x6b\x4e','\x77\x38\x6b\x79\x6f\x38\x6b\x55\x6f\x43\x6f\x75','\x57\x51\x74\x64\x54\x77\x43\x78\x57\x37\x74\x64\x4c\x57\x6c\x64\x4b\x57','\x57\x51\x50\x35\x79\x53\x6f\x76\x57\x4f\x42\x64\x54\x38\x6f\x59\x75\x47','\x79\x65\x42\x63\x4d\x68\x68\x63\x4e\x66\x69\x6c\x57\x35\x6d','\x57\x35\x74\x64\x50\x38\x6f\x45\x68\x72\x6a\x75\x6d\x57','\x6b\x66\x6e\x63\x57\x51\x35\x57\x57\x4f\x53\x49\x57\x35\x43','\x78\x78\x70\x64\x4e\x47\x31\x73','\x44\x38\x6b\x43\x46\x61','\x57\x37\x56\x63\x4a\x38\x6b\x4e\x68\x4d\x31\x74\x71\x64\x57','\x57\x52\x71\x65\x57\x36\x6d','\x57\x35\x78\x63\x56\x6d\x6b\x70\x62\x68\x39\x6a\x73\x53\x6f\x79','\x57\x37\x53\x4c\x57\x52\x46\x64\x4d\x33\x4e\x64\x56\x57','\x7a\x53\x6f\x4b\x68\x53\x6f\x46\x57\x37\x6c\x63\x4b\x38\x6f\x6a\x57\x35\x69','\x57\x37\x44\x31\x57\x35\x4a\x63\x4f\x43\x6b\x70\x66\x57','\x72\x77\x42\x64\x54\x61','\x42\x33\x34\x42\x7a\x61\x6a\x37\x57\x4f\x56\x63\x48\x61','\x64\x71\x69\x66','\x57\x36\x78\x64\x53\x30\x6d\x62\x57\x37\x6c\x64\x4b\x71\x33\x64\x4e\x57','\x76\x38\x6f\x33\x57\x36\x68\x64\x4e\x5a\x75\x52\x57\x51\x39\x69','\x43\x43\x6b\x51\x77\x57','\x57\x36\x64\x63\x4c\x6d\x6b\x55\x63\x67\x44\x63\x66\x61','\x69\x53\x6b\x4a\x57\x34\x78\x63\x4f\x57\x70\x63\x54\x62\x68\x64\x54\x61','\x57\x37\x64\x64\x50\x53\x6f\x44\x63\x47\x39\x5a\x69\x57','\x57\x35\x4a\x64\x55\x53\x6f\x61','\x57\x36\x68\x64\x51\x78\x79\x72\x57\x36\x4a\x64\x47\x62\x38','\x57\x35\x6c\x64\x53\x30\x4f\x47\x57\x52\x2f\x63\x48\x71','\x57\x51\x62\x72\x45\x66\x33\x63\x51\x57','\x64\x72\x43\x44\x6e\x6d\x6b\x4e','\x75\x38\x6f\x57\x57\x36\x65','\x57\x36\x4e\x63\x4a\x38\x6b\x64\x64\x4e\x54\x64\x61\x74\x69','\x45\x4c\x42\x63\x53\x31\x5a\x63\x4e\x58\x78\x63\x49\x43\x6b\x57','\x68\x71\x68\x64\x4d\x53\x6b\x39\x67\x43\x6f\x43\x57\x50\x57\x6a','\x75\x6d\x6b\x42\x79\x53\x6b\x6c\x45\x75\x43\x55\x6a\x61','\x75\x53\x6f\x38\x57\x36\x68\x64\x4c\x5a\x43\x49','\x43\x72\x69\x65\x65\x6d\x6b\x32\x57\x4f\x65','\x57\x37\x33\x63\x53\x78\x75\x6a\x72\x6d\x6f\x43\x66\x4e\x43','\x45\x59\x57\x77\x45\x57\x48\x4c\x57\x50\x52\x63\x4a\x61','\x57\x34\x6d\x2f\x46\x53\x6b\x65\x6e\x53\x6b\x55\x57\x36\x64\x64\x54\x47','\x6c\x53\x6f\x68\x57\x35\x4e\x63\x4f\x43\x6f\x4a\x78\x72\x70\x64\x55\x61','\x68\x53\x6f\x68\x76\x38\x6f\x45\x64\x6d\x6b\x4c\x70\x62\x47','\x67\x66\x65\x73\x79\x53\x6b\x39\x6d\x6d\x6f\x6e\x57\x37\x38','\x7a\x31\x58\x70\x57\x51\x35\x36\x57\x4f\x6a\x55\x57\x35\x61','\x6e\x43\x6b\x33\x57\x34\x74\x63\x55\x49\x64\x63\x53\x57\x53','\x57\x37\x2f\x64\x55\x4e\x54\x74\x57\x52\x57\x66\x72\x57','\x57\x36\x70\x63\x4b\x53\x6b\x53\x63\x61','\x57\x37\x68\x64\x55\x30\x35\x73\x57\x51\x61\x43\x71\x38\x6f\x45','\x57\x52\x69\x77\x71\x6d\x6f\x32\x57\x35\x75','\x7a\x38\x6f\x36\x57\x4f\x37\x64\x56\x4e\x64\x63\x53\x59\x46\x64\x4f\x48\x4b\x39\x57\x35\x65','\x57\x52\x4f\x63\x57\x37\x37\x63\x55\x61','\x41\x57\x6c\x63\x50\x62\x70\x64\x48\x4b\x5a\x64\x4b\x6d\x6b\x35\x6e\x78\x56\x63\x47\x6d\x6f\x68\x57\x52\x30','\x57\x36\x64\x63\x50\x33\x69\x72\x57\x36\x37\x64\x49\x47\x52\x63\x4c\x47','\x78\x53\x6b\x65\x6a\x43\x6b\x4f\x6f\x43\x6f\x69\x57\x35\x61','\x42\x47\x6d\x79\x68\x53\x6b\x53\x57\x4f\x37\x64\x56\x43\x6b\x70','\x57\x37\x70\x64\x4f\x67\x44\x46\x57\x51\x65\x43','\x57\x50\x68\x64\x51\x65\x6d\x38\x57\x51\x42\x64\x4b\x43\x6b\x5a\x6c\x47','\x64\x73\x54\x2b\x66\x6d\x6b\x46\x57\x37\x70\x63\x4e\x53\x6b\x69','\x7a\x38\x6b\x57\x65\x53\x6f\x45\x57\x37\x4a\x63\x4d\x38\x6b\x69\x57\x35\x71','\x46\x53\x6f\x35\x66\x43\x6f\x6a','\x57\x35\x46\x64\x48\x53\x6f\x59\x6b\x47','\x57\x34\x74\x64\x4d\x53\x6f\x54\x6b\x53\x6f\x2f\x68\x6d\x6b\x69','\x75\x57\x39\x69\x57\x50\x71\x5a\x6b\x43\x6b\x36\x7a\x61','\x66\x6d\x6f\x43\x57\x37\x6c\x63\x4e\x6d\x6f\x74\x41\x71','\x6e\x31\x42\x64\x4f\x57','\x69\x66\x65\x61\x57\x51\x6a\x30\x57\x4f\x61\x66\x57\x34\x38','\x57\x36\x70\x64\x51\x4d\x6e\x76\x57\x52\x61\x43\x72\x38\x6f\x74','\x78\x68\x52\x64\x53\x47\x48\x50\x57\x51\x31\x6f\x69\x61','\x57\x35\x68\x63\x4d\x30\x4b\x4d\x46\x43\x6f\x4d\x6d\x66\x65','\x72\x68\x64\x64\x47\x47\x4f\x62\x66\x43\x6f\x53\x44\x71','\x57\x37\x72\x51\x46\x53\x6f\x63\x57\x50\x42\x64\x4f\x6d\x6f\x45\x75\x47','\x57\x36\x56\x64\x52\x32\x30\x72\x57\x37\x78\x63\x48\x71\x4a\x64\x4d\x71','\x75\x31\x44\x6c','\x65\x4a\x7a\x49\x67\x53\x6b\x63\x57\x52\x33\x64\x4e\x43\x6b\x30','\x75\x77\x6c\x64\x47\x47\x72\x66','\x74\x33\x5a\x64\x51\x62\x76\x34\x57\x36\x6e\x78','\x43\x43\x6b\x6e\x6e\x43\x6f\x43\x44\x38\x6b\x6d\x57\x35\x65','\x66\x74\x43\x78\x57\x50\x71','\x65\x5a\x74\x63\x4f\x49\x6e\x53\x57\x51\x43','\x62\x63\x4c\x52\x61\x43\x6b\x50\x57\x37\x64\x64\x4e\x38\x6b\x56','\x65\x64\x62\x50\x61\x43\x6b\x64\x57\x36\x2f\x64\x4d\x38\x6b\x2f','\x57\x4f\x57\x38\x46\x38\x6b\x77\x6b\x38\x6f\x47\x57\x51\x6c\x64\x47\x61','\x6e\x43\x6b\x54\x57\x35\x37\x63\x50\x5a\x46\x63\x51\x71','\x64\x72\x6d\x64\x6e\x6d\x6b\x39\x6d\x71','\x57\x50\x52\x64\x4f\x4c\x6d','\x6a\x4e\x57\x54\x57\x4f\x74\x64\x4e\x71\x46\x64\x4e\x53\x6b\x47','\x57\x50\x30\x36\x57\x4f\x37\x63\x49\x31\x4e\x64\x53\x53\x6f\x34\x57\x37\x61','\x69\x43\x6f\x44\x57\x34\x4e\x63\x53\x53\x6f\x51\x65\x57\x79','\x57\x37\x56\x64\x50\x4d\x66\x75','\x57\x36\x64\x63\x50\x4d\x79\x6a\x77\x53\x6f\x42\x77\x77\x71','\x57\x36\x56\x64\x53\x4e\x61\x61\x57\x36\x74\x64\x50\x47\x70\x64\x4d\x57','\x63\x64\x4a\x63\x50\x49\x76\x6d\x57\x51\x57\x6a','\x57\x36\x35\x4a\x57\x34\x4a\x63\x56\x53\x6b\x4e','\x57\x51\x4f\x73\x65\x38\x6f\x37\x57\x34\x4e\x63\x4a\x33\x6d\x63','\x68\x73\x52\x63\x55\x43\x6f\x39\x42\x6d\x6b\x70\x57\x34\x31\x58','\x67\x6d\x6f\x67\x57\x36\x37\x63\x4b\x6d\x6f\x6f\x43\x62\x75','\x6c\x4a\x35\x6d\x69\x31\x43\x35\x57\x34\x37\x64\x4d\x5a\x6a\x4d\x57\x4f\x33\x63\x4f\x30\x74\x64\x4c\x61','\x57\x37\x52\x63\x54\x33\x71\x75','\x57\x37\x64\x64\x50\x4e\x61\x65\x57\x36\x74\x64\x4b\x71\x4e\x64\x4b\x47','\x7a\x31\x42\x63\x54\x4e\x64\x63\x4e\x30\x79','\x57\x35\x2f\x64\x4f\x43\x6f\x70\x62\x48\x76\x6a\x7a\x31\x53','\x57\x4f\x4a\x63\x50\x43\x6b\x43\x77\x4b\x6d\x69\x44\x4b\x76\x45\x57\x50\x70\x64\x53\x74\x68\x64\x56\x61','\x66\x53\x6f\x44\x79\x53\x6f\x7a\x67\x6d\x6b\x30\x6c\x57','\x57\x36\x46\x63\x56\x77\x4b','\x6a\x53\x6b\x57\x57\x35\x70\x63\x55\x59\x64\x63\x53\x57\x53','\x79\x5a\x6a\x33\x76\x53\x6f\x49','\x62\x5a\x44\x36\x62\x38\x6b\x46\x57\x37\x70\x64\x49\x53\x6b\x4f','\x6e\x72\x52\x64\x4f\x65\x70\x63\x4d\x48\x5a\x63\x48\x6d\x6f\x35','\x57\x37\x4b\x6c\x57\x36\x6c\x63\x56\x53\x6f\x34\x57\x51\x78\x64\x55\x57\x53','\x76\x63\x42\x63\x53\x53\x6b\x59\x45\x38\x6f\x6f\x57\x35\x39\x48','\x57\x36\x4a\x64\x50\x4e\x7a\x6f\x57\x36\x64\x64\x48\x58\x2f\x64\x47\x47','\x66\x43\x6f\x67\x57\x37\x5a\x63\x4c\x43\x6f\x65\x42\x57','\x57\x51\x78\x63\x48\x63\x42\x64\x51\x43\x6f\x41\x57\x52\x48\x4b\x57\x52\x43','\x57\x4f\x30\x56\x57\x4f\x35\x46\x57\x37\x4f\x50\x42\x53\x6b\x42','\x46\x6d\x6b\x66\x79\x43\x6b\x6d','\x44\x38\x6b\x6b\x45\x6d\x6b\x42\x75\x53\x6b\x67\x57\x35\x75','\x57\x51\x66\x45\x45\x65\x52\x64\x4f\x73\x7a\x58','\x57\x36\x6c\x63\x51\x43\x6b\x49\x65\x32\x4b','\x57\x36\x53\x31\x57\x4f\x74\x64\x51\x65\x34','\x57\x36\x52\x64\x53\x4d\x34\x6f\x71\x53\x6f\x6a\x66\x77\x57','\x73\x6d\x6f\x38\x57\x37\x33\x64\x47\x59\x4f\x4c\x57\x52\x75','\x64\x5a\x6d\x53\x57\x50\x46\x64\x49\x48\x69','\x57\x37\x5a\x63\x4d\x53\x6b\x58\x62\x59\x48\x65\x64\x4a\x4f','\x74\x74\x33\x63\x52\x38\x6b\x31','\x45\x67\x61\x42\x44\x47\x7a\x4c\x57\x52\x4e\x63\x47\x71','\x65\x38\x6b\x62\x7a\x6d\x6b\x6b\x6f\x47','\x57\x36\x46\x63\x4a\x53\x6b\x32\x64\x32\x44\x41\x62\x71','\x44\x48\x34\x65\x65\x57','\x57\x35\x33\x63\x4c\x4b\x2f\x64\x49\x77\x56\x64\x4f\x32\x74\x63\x54\x57','\x57\x51\x6d\x70\x71\x38\x6f\x34\x57\x34\x78\x63\x49\x74\x69\x71','\x78\x67\x4a\x64\x51\x72\x72\x34\x57\x36\x4b','\x57\x37\x70\x64\x52\x67\x50\x64\x57\x51\x61\x68\x75\x6d\x6b\x78','\x57\x52\x35\x67\x77\x43\x6f\x67\x57\x4f\x75','\x79\x43\x6f\x58\x63\x6d\x6f\x67\x57\x36\x71','\x6c\x31\x4e\x64\x54\x30\x2f\x63\x4d\x62\x64\x63\x4a\x53\x6b\x58','\x57\x34\x78\x64\x56\x6d\x6f\x62\x61\x76\x54\x78\x6c\x4c\x30','\x73\x59\x33\x63\x52\x53\x6b\x30\x41\x38\x6f\x67\x57\x34\x35\x32','\x73\x53\x6f\x38\x57\x37\x5a\x64\x48\x61','\x57\x37\x6c\x63\x4a\x4b\x37\x64\x50\x66\x72\x78\x7a\x5a\x53','\x57\x52\x4b\x32\x57\x52\x37\x64\x4a\x5a\x5a\x64\x55\x43\x6b\x33\x57\x52\x79','\x57\x4f\x4f\x52\x57\x52\x33\x63\x4d\x4b\x70\x64\x51\x43\x6f\x33','\x70\x43\x6b\x77\x71\x38\x6b\x61\x6f\x75\x61\x31\x41\x47','\x70\x30\x2f\x64\x4f\x30\x2f\x63\x4e\x71\x33\x63\x47\x43\x6b\x47','\x57\x35\x78\x64\x4d\x53\x6f\x32\x69\x6d\x6f\x2f\x44\x43\x6b\x70\x57\x52\x75','\x57\x37\x6c\x63\x4d\x75\x4e\x64\x56\x71','\x57\x52\x43\x45\x57\x37\x4a\x63\x56\x6d\x6b\x4f\x57\x52\x37\x64\x51\x61\x57','\x79\x53\x6f\x41\x57\x35\x37\x63\x54\x6d\x6f\x36\x64\x58\x5a\x64\x56\x47','\x57\x37\x71\x6c\x57\x36\x68\x63\x52\x43\x6b\x53\x57\x37\x5a\x64\x55\x58\x4f','\x79\x43\x6f\x58\x63\x6d\x6f\x67\x57\x52\x46\x63\x48\x6d\x6b\x68\x57\x34\x65','\x57\x37\x46\x63\x47\x38\x6b\x7a\x64\x30\x4b','\x6e\x38\x6b\x48\x57\x34\x6c\x63\x4f\x74\x70\x63\x55\x61','\x6c\x43\x6f\x41\x57\x50\x56\x63\x54\x6d\x6f\x55\x64\x48\x4e\x63\x55\x57','\x57\x36\x42\x64\x4f\x53\x6f\x6a\x6a\x53\x6f\x6f','\x67\x58\x75\x62\x6c\x38\x6b\x36\x6f\x64\x57','\x72\x75\x71\x42','\x57\x36\x64\x63\x54\x73\x33\x63\x51\x6d\x6f\x6c\x57\x36\x54\x51\x57\x51\x30','\x57\x34\x52\x63\x53\x33\x70\x64\x4d\x59\x43','\x74\x64\x66\x39\x46\x43\x6f\x4d','\x67\x72\x42\x64\x52\x38\x6f\x2f\x64\x53\x6f\x6a\x57\x4f\x4b\x62','\x66\x61\x46\x64\x47\x6d\x6f\x36\x63\x43\x6f\x76','\x68\x58\x69\x34\x57\x51\x53','\x57\x37\x6c\x63\x49\x4c\x70\x64\x55\x5a\x6a\x79\x79\x64\x69','\x57\x37\x71\x58\x57\x51\x65','\x57\x52\x4c\x37\x57\x4f\x6d','\x57\x4f\x42\x64\x50\x4c\x47\x34\x57\x37\x71','\x73\x71\x68\x63\x49\x38\x6b\x34\x74\x57','\x57\x4f\x75\x59\x57\x4f\x54\x42\x57\x36\x69\x6a\x42\x47','\x57\x52\x57\x76\x57\x37\x33\x63\x51\x43\x6b\x37\x57\x51\x78\x64\x56\x58\x57','\x79\x4c\x42\x64\x4f\x5a\x68\x63\x53\x4c\x30\x6a\x57\x34\x4b','\x66\x43\x6b\x6e\x46\x43\x6b\x61\x6e\x31\x75\x4d\x70\x47','\x57\x36\x4a\x64\x49\x30\x42\x64\x55\x72\x66\x44\x41\x49\x79','\x6e\x53\x6f\x6a\x57\x34\x4a\x63\x51\x38\x6f\x38','\x6d\x31\x4e\x64\x56\x75\x78\x63\x49\x62\x4a\x63\x4c\x6d\x6b\x58','\x57\x52\x57\x6a\x57\x51\x33\x63\x4f\x53\x6b\x33\x57\x52\x2f\x63\x54\x57\x47','\x57\x36\x42\x63\x49\x73\x33\x63\x56\x43\x6f\x6a\x57\x37\x44\x55','\x46\x43\x6b\x67\x7a\x53\x6b\x6d\x77\x6d\x6b\x78','\x57\x36\x72\x78\x79\x66\x46\x64\x51\x49\x6a\x55\x57\x50\x75','\x68\x72\x6d\x79\x6d\x53\x6b\x39','\x57\x36\x74\x63\x4a\x59\x30','\x41\x48\x2f\x63\x51\x78\x68\x63\x4b\x30\x61\x6c\x57\x4f\x65','\x43\x4d\x30\x6d','\x57\x50\x50\x67\x57\x36\x69\x6d\x57\x34\x37\x63\x47\x53\x6f\x6e\x41\x61','\x77\x5a\x6e\x2b\x57\x50\x37\x64\x47\x61\x4a\x63\x48\x38\x6b\x4d','\x42\x66\x6c\x63\x53\x33\x61','\x57\x4f\x75\x79\x57\x51\x33\x63\x49\x4b\x69','\x57\x52\x4c\x2b\x46\x38\x6f\x64\x57\x50\x42\x64\x55\x53\x6f\x4a','\x63\x62\x47\x4a\x57\x52\x62\x62\x61\x67\x2f\x64\x48\x47','\x68\x71\x47\x7a\x6d\x53\x6b\x48\x69\x47','\x57\x51\x6e\x33\x57\x35\x2f\x63\x54\x6d\x6b\x79\x62\x4c\x37\x63\x53\x47','\x57\x36\x52\x64\x50\x4d\x38\x67','\x57\x35\x68\x64\x49\x6d\x6f\x54\x6a\x6d\x6b\x52\x6a\x53\x6b\x63\x57\x52\x53','\x44\x76\x37\x63\x51\x77\x2f\x63\x56\x66\x30\x61\x57\x34\x79','\x57\x36\x58\x48\x57\x35\x37\x63\x54\x43\x6b\x64\x62\x31\x78\x63\x4d\x71','\x74\x73\x4e\x63\x52\x38\x6b\x55\x41\x6d\x6f\x6c','\x57\x36\x4a\x63\x56\x4d\x79\x75\x41\x38\x6f\x79\x66\x4e\x79','\x57\x34\x6c\x64\x53\x6d\x6f\x41','\x71\x4b\x62\x4f\x57\x4f\x34\x47\x6d\x6d\x6b\x4e\x41\x57','\x64\x6d\x6f\x64\x45\x53\x6f\x76\x63\x38\x6f\x58\x6f\x58\x34','\x57\x37\x4a\x64\x52\x4e\x31\x76\x57\x52\x43\x50\x75\x6d\x6f\x66','\x76\x33\x33\x64\x4e\x47\x6e\x61\x67\x53\x6f\x66\x44\x57','\x68\x43\x6f\x6b\x79\x53\x6f\x7a\x6d\x38\x6b\x30\x6d\x58\x79','\x63\x38\x6f\x77\x7a\x43\x6f\x69','\x64\x49\x61\x53\x57\x50\x78\x64\x47\x72\x6c\x63\x49\x53\x6b\x30','\x57\x50\x38\x36\x57\x51\x42\x63\x48\x4b\x74\x63\x50\x53\x6f\x30\x57\x37\x61','\x57\x50\x38\x4e\x57\x37\x42\x64\x4e\x67\x6c\x64\x52\x38\x6f\x2b\x57\x37\x65','\x57\x51\x39\x4c\x46\x53\x6f\x71\x57\x50\x78\x64\x53\x71','\x76\x38\x6f\x51\x57\x35\x4e\x64\x4d\x73\x79\x39','\x67\x76\x44\x74\x46\x38\x6b\x59\x6d\x6d\x6b\x67\x57\x51\x57','\x57\x35\x70\x64\x55\x43\x6f\x6c\x63\x57','\x57\x36\x33\x63\x56\x77\x38\x70\x72\x53\x6f\x43\x76\x32\x57','\x67\x71\x53\x45\x70\x38\x6b\x59\x6f\x4d\x78\x63\x4a\x47','\x78\x32\x68\x64\x4c\x62\x6e\x76\x64\x38\x6f\x68\x46\x47','\x6c\x4b\x34\x50\x57\x51\x4c\x37\x57\x4f\x75\x33\x57\x34\x79','\x57\x36\x4a\x63\x51\x4b\x70\x64\x50\x62\x31\x45\x79\x61','\x57\x36\x56\x64\x51\x78\x79\x63\x57\x36\x4a\x64\x49\x30\x5a\x64\x50\x71','\x57\x37\x6c\x63\x49\x74\x68\x63\x4f\x53\x6f\x69\x57\x36\x48\x4a\x57\x51\x65','\x43\x4a\x44\x34\x46\x38\x6f\x36','\x73\x32\x5a\x64\x52\x49\x48\x51\x57\x36\x6e\x5a\x6a\x57','\x57\x36\x54\x31\x57\x35\x4b','\x6a\x53\x6b\x55\x57\x35\x46\x63\x56\x63\x64\x63\x56\x61\x52\x64\x4a\x61','\x57\x34\x42\x64\x48\x53\x6f\x57\x6f\x38\x6f\x35\x6f\x53\x6b\x61\x57\x37\x4f','\x63\x53\x6b\x56\x57\x52\x4a\x63\x47\x33\x44\x36\x57\x36\x31\x37\x57\x37\x6c\x63\x4e\x47\x52\x63\x4f\x4b\x38','\x57\x50\x44\x44\x57\x37\x75','\x65\x68\x46\x64\x4e\x48\x6d\x62','\x62\x76\x61\x41\x46\x38\x6b\x32\x42\x43\x6b\x64\x57\x36\x30','\x63\x64\x30\x52\x57\x4f\x6c\x64\x4a\x61\x70\x64\x51\x43\x6b\x36','\x64\x48\x75\x75\x43\x6d\x6b\x48\x6d\x59\x2f\x63\x47\x71','\x67\x72\x68\x64\x4e\x43\x6f\x34\x63\x43\x6f\x30\x57\x4f\x57','\x67\x47\x69\x64\x46\x43\x6b\x2b\x70\x5a\x56\x63\x48\x71','\x45\x48\x53\x66\x66\x43\x6b\x4a\x57\x4f\x78\x64\x4b\x53\x6b\x66','\x45\x53\x6f\x47\x68\x53\x6f\x46\x57\x36\x70\x63\x4a\x53\x6b\x36\x57\x35\x4b','\x77\x61\x2f\x64\x4d\x38\x6f\x55\x63\x43\x6b\x44\x57\x4f\x4f\x6e','\x57\x35\x4e\x63\x4f\x43\x6b\x47','\x79\x43\x6b\x34\x64\x38\x6f\x4d\x57\x51\x57\x54','\x46\x68\x4b\x67\x7a\x47\x6a\x4e\x57\x4f\x53','\x57\x50\x54\x61\x57\x52\x69\x6f\x57\x34\x4a\x63\x4c\x43\x6b\x6d\x43\x71','\x68\x74\x68\x64\x47\x6d\x6f\x38\x64\x43\x6f\x6f\x57\x4f\x61\x68','\x57\x36\x52\x63\x4b\x5a\x46\x63\x51\x53\x6f\x75\x57\x37\x76\x4e','\x61\x6d\x6f\x67\x57\x35\x4a\x63\x51\x6d\x6f\x46','\x57\x37\x47\x38\x57\x52\x33\x64\x4b\x4d\x56\x64\x51\x6d\x6b\x59','\x63\x62\x47\x4a\x57\x52\x62\x62\x61\x61','\x72\x68\x64\x64\x47\x47\x4f\x62\x62\x43\x6f\x54\x45\x47','\x46\x6d\x6b\x72\x6c\x43\x6f\x75\x57\x35\x65\x67\x57\x36\x57\x64','\x57\x50\x75\x47\x57\x51\x68\x63\x48\x4c\x5a\x64\x50\x38\x6f\x54\x57\x37\x57','\x64\x48\x71\x7a\x6d\x53\x6b\x4e\x44\x49\x78\x63\x4e\x71','\x57\x37\x79\x4b\x57\x37\x68\x64\x4d\x78\x78\x64\x51\x53\x6b\x5a\x57\x52\x79','\x6a\x43\x6b\x56\x57\x35\x46\x63\x56\x63\x42\x63\x54\x76\x2f\x64\x54\x71','\x57\x36\x64\x63\x48\x30\x4f\x6d\x45\x57','\x57\x50\x31\x73\x57\x37\x34\x6a\x57\x34\x78\x63\x4b\x38\x6f\x6e\x41\x61','\x57\x36\x70\x63\x4a\x59\x2f\x63\x56\x43\x6f\x45\x57\x36\x4f','\x57\x4f\x78\x64\x4d\x53\x6f\x51\x70\x43\x6f\x2b\x6e\x53\x6b\x79\x57\x51\x38','\x68\x62\x47\x35\x57\x52\x72\x61\x62\x63\x64\x64\x4b\x57','\x57\x34\x38\x4c\x79\x38\x6b\x6b\x6d\x71','\x57\x35\x4a\x63\x52\x43\x6b\x47\x61\x78\x48\x76','\x79\x43\x6b\x71\x46\x53\x6b\x61\x76\x43\x6b\x65','\x57\x51\x4c\x2f\x46\x38\x6f\x79\x57\x50\x33\x64\x53\x57','\x6e\x43\x6f\x4b\x67\x53\x6f\x45\x57\x37\x5a\x64\x4c\x57','\x65\x6d\x6f\x62\x6e\x53\x6f\x69\x68\x53\x6b\x49\x6e\x4c\x65','\x62\x63\x58\x4d\x61\x43\x6b\x74\x57\x36\x38','\x64\x61\x69\x65\x6c\x53\x6b\x32','\x43\x47\x75\x70\x76\x38\x6b\x30\x57\x4f\x4a\x64\x55\x6d\x6b\x61','\x63\x59\x61\x37\x57\x35\x33\x64\x4e\x71\x70\x64\x4a\x43\x6b\x38','\x57\x37\x70\x64\x48\x66\x4c\x31\x57\x4f\x53','\x57\x35\x57\x4a\x7a\x43\x6b\x6b\x6f\x43\x6b\x74\x57\x51\x4a\x64\x48\x61','\x44\x6d\x6b\x36\x63\x6d\x6f\x4b\x57\x36\x6d\x4c\x79\x49\x6d','\x74\x53\x6b\x75\x6d\x53\x6b\x30','\x57\x51\x4f\x56\x57\x51\x70\x63\x4e\x65\x38','\x6e\x71\x68\x64\x4f\x6d\x6f\x34\x65\x6d\x6f\x43\x57\x50\x50\x69','\x57\x51\x53\x41\x77\x53\x6f\x50','\x72\x73\x39\x35\x79\x38\x6f\x6f\x57\x52\x37\x63\x49\x53\x6b\x45','\x75\x73\x33\x63\x53\x53\x6b\x36\x45\x43\x6f\x68','\x57\x52\x4f\x63\x57\x36\x78\x63\x4f\x38\x6b\x51\x57\x51\x75','\x61\x38\x6b\x62\x46\x38\x6b\x65\x69\x66\x71\x51','\x6a\x43\x6f\x65\x57\x35\x74\x63\x4f\x53\x6f\x55\x65\x76\x2f\x64\x56\x71','\x63\x48\x46\x64\x47\x61','\x6b\x31\x47\x62\x57\x51\x44\x48\x57\x4f\x71','\x44\x62\x47\x65','\x6c\x38\x6b\x76\x79\x43\x6f\x63\x57\x35\x6d\x75\x57\x36\x58\x68','\x78\x43\x6f\x34\x57\x37\x5a\x64\x4c\x77\x6e\x2b\x57\x36\x53\x61','\x57\x35\x46\x63\x4e\x66\x52\x63\x4a\x68\x37\x64\x54\x4d\x4e\x63\x51\x47','\x75\x32\x74\x64\x47\x58\x6e\x65\x67\x6d\x6f\x33\x77\x47','\x57\x52\x35\x49\x46\x53\x6f\x73\x57\x50\x5a\x64\x50\x53\x6f\x5a\x76\x57','\x57\x37\x4a\x63\x54\x33\x75\x6a\x75\x53\x6f\x62\x68\x68\x43','\x57\x36\x74\x64\x52\x4e\x58\x42\x57\x37\x6d','\x6f\x76\x4a\x64\x55\x30\x78\x63\x4a\x61\x30','\x75\x4a\x6a\x36\x44\x38\x6f\x6f\x57\x51\x4a\x64\x4a\x38\x6b\x74','\x78\x68\x37\x64\x4c\x47','\x73\x49\x2f\x63\x53\x59\x76\x69\x57\x51\x71\x69\x57\x50\x69','\x57\x34\x6c\x64\x53\x6d\x6f\x63\x63\x48\x48\x6f\x6c\x4b\x65','\x57\x35\x6c\x64\x4f\x43\x6f\x68\x61\x62\x75','\x67\x67\x71\x71\x46\x38\x6b\x36\x6c\x6d\x6b\x64','\x57\x4f\x68\x64\x4e\x72\x4a\x63\x50\x33\x74\x64\x4a\x4b\x68\x63\x4c\x4e\x43','\x71\x4a\x6e\x54\x44\x38\x6f\x6f\x57\x51\x6c\x63\x4d\x57','\x69\x4d\x34\x62\x57\x51\x66\x4c\x57\x50\x38\x52\x57\x34\x57','\x62\x76\x65\x77\x45\x43\x6b\x32\x6a\x38\x6f\x6e\x57\x37\x34','\x57\x52\x69\x53\x57\x50\x6c\x64\x53\x6d\x6f\x46\x64\x77\x4a\x63\x54\x59\x65\x41\x57\x36\x38','\x67\x43\x6f\x59\x57\x37\x4e\x63\x48\x38\x6f\x69\x43\x48\x34','\x57\x36\x6c\x63\x49\x49\x5a\x63\x51\x38\x6f\x41\x57\x37\x72\x65\x57\x51\x34','\x65\x6d\x6f\x46\x57\x37\x78\x63\x4b\x43\x6f\x61\x43\x74\x79\x61','\x57\x37\x78\x63\x48\x5a\x64\x63\x55\x53\x6f\x45\x57\x37\x57','\x57\x4f\x4f\x31\x57\x50\x4c\x78\x57\x37\x47\x5a\x6b\x53\x6f\x41','\x57\x36\x37\x63\x4a\x59\x33\x63\x52\x71','\x57\x52\x31\x6e\x57\x36\x4e\x63\x52\x43\x6b\x53\x57\x52\x71','\x41\x38\x6b\x6a\x42\x53\x6b\x67\x76\x38\x6f\x64\x57\x34\x31\x4d','\x57\x36\x68\x63\x4a\x4b\x37\x64\x54\x74\x31\x76','\x69\x4c\x4c\x63\x57\x51\x6e\x35\x57\x4f\x6d\x54\x57\x34\x79','\x71\x43\x6b\x58\x62\x53\x6f\x57\x57\x36\x79\x37\x57\x35\x38\x49','\x66\x72\x6d\x39\x57\x4f\x74\x64\x48\x47\x4e\x64\x48\x61','\x57\x34\x78\x64\x54\x6d\x6f\x44\x62\x66\x54\x6a\x6b\x75\x38','\x41\x32\x30\x67\x43\x57\x6a\x39\x57\x50\x52\x63\x49\x71','\x77\x49\x33\x63\x53\x53\x6b\x34\x72\x6d\x6f\x6c','\x57\x34\x71\x30\x43\x53\x6f\x66\x70\x6d\x6b\x56\x57\x51\x33\x64\x49\x61','\x65\x6d\x6f\x77\x57\x37\x74\x63\x4c\x53\x6f\x4f\x45\x71','\x78\x38\x6f\x52\x57\x37\x33\x64\x4b\x74\x50\x4e\x57\x52\x4c\x79','\x73\x32\x78\x64\x54\x71\x76\x38\x57\x36\x66\x4c\x6f\x71','\x57\x37\x48\x6e\x6d\x43\x6b\x49\x57\x50\x37\x64\x53\x61','\x57\x36\x64\x64\x56\x67\x44\x46\x57\x51\x44\x69\x71\x43\x6f\x79','\x57\x34\x64\x63\x51\x43\x6b\x38\x61\x77\x4c\x6a\x74\x53\x6f\x76','\x57\x36\x4a\x63\x4e\x57\x64\x64\x50\x62\x54\x66\x42\x5a\x4b','\x63\x74\x4a\x63\x56\x49\x4f','\x71\x49\x48\x2f\x62\x53\x6b\x63\x57\x52\x33\x64\x4e\x6d\x6b\x2b','\x57\x35\x57\x49\x79\x53\x6b\x6b\x6b\x38\x6f\x47\x57\x51\x33\x64\x4b\x61','\x45\x53\x6b\x75\x6f\x43\x6b\x2f\x66\x43\x6f\x63','\x6d\x76\x47\x44\x57\x51\x4c\x5a\x57\x4f\x75\x4d\x57\x35\x65','\x57\x36\x42\x63\x4b\x49\x52\x63\x50\x53\x6f\x76\x57\x52\x48\x56\x57\x51\x53','\x57\x36\x52\x63\x4c\x6d\x6b\x54\x61\x67\x31\x77\x64\x4d\x65','\x43\x4d\x30\x65','\x57\x35\x37\x63\x50\x38\x6b\x4e\x63\x61','\x43\x57\x6d\x6c\x68\x53\x6b\x53\x57\x50\x52\x63\x54\x6d\x6b\x43','\x6d\x43\x6f\x68\x57\x34\x4e\x63\x54\x61','\x57\x37\x6c\x64\x4f\x4e\x61\x71\x57\x36\x4a\x64\x49\x47\x69','\x69\x53\x6b\x77\x69\x6d\x6f\x73\x57\x35\x4b\x78\x57\x36\x31\x68','\x72\x49\x6e\x58\x79\x6d\x6f\x49\x57\x51\x47','\x78\x62\x68\x63\x53\x32\x61','\x57\x52\x58\x49\x79\x43\x6f\x66\x57\x50\x42\x64\x50\x47','\x57\x51\x38\x7a\x76\x6d\x6f\x34\x57\x35\x74\x63\x4a\x73\x65\x6e','\x66\x63\x62\x34\x62\x53\x6b\x46\x57\x37\x6c\x64\x4b\x61','\x43\x6d\x6b\x36\x63\x6d\x6f\x38\x57\x51\x79\x4e','\x67\x61\x47\x64\x70\x53\x6b\x32\x6d\x47\x2f\x63\x4a\x71','\x72\x77\x68\x64\x4c\x71\x62\x76\x65\x57','\x57\x36\x4e\x63\x49\x6d\x6b\x58\x63\x78\x58\x2b\x62\x61','\x45\x48\x69\x45','\x57\x36\x4a\x63\x47\x5a\x61','\x68\x6d\x6f\x68\x46\x38\x6f\x74\x65\x71','\x6c\x53\x6f\x6e\x57\x35\x78\x63\x50\x38\x6f\x37\x66\x71','\x57\x36\x4e\x63\x54\x33\x6d','\x45\x43\x6f\x31\x66\x43\x6f\x6b\x57\x36\x70\x63\x4e\x57','\x57\x50\x79\x55\x57\x50\x72\x42','\x57\x35\x57\x57\x43\x38\x6b\x6a\x6d\x6d\x6b\x48\x57\x51\x71','\x74\x43\x6f\x54\x57\x37\x33\x64\x4d\x73\x30\x54','\x43\x43\x6b\x57\x67\x43\x6f\x63\x57\x37\x4a\x63\x4d\x38\x6b\x6d\x57\x34\x65','\x63\x59\x4a\x63\x56\x63\x66\x78\x57\x51\x4b','\x57\x35\x74\x63\x49\x31\x4a\x63\x52\x68\x5a\x64\x4f\x77\x61','\x7a\x53\x6b\x42\x6c\x57','\x57\x36\x50\x4e\x57\x37\x4e\x63\x50\x38\x6b\x6d\x62\x4e\x4e\x63\x51\x61','\x64\x68\x38\x51','\x42\x66\x37\x63\x4f\x47','\x64\x65\x43\x66\x70\x6d\x6b\x47\x70\x77\x47','\x6a\x38\x6f\x6d\x57\x50\x53','\x68\x57\x46\x64\x4d\x53\x6f\x73\x63\x53\x6f\x74\x57\x52\x47\x41','\x57\x34\x74\x63\x51\x43\x6b\x39\x66\x77\x4c\x7a','\x61\x30\x53\x61\x41\x53\x6b\x31\x6a\x47','\x62\x43\x6f\x77\x57\x37\x37\x63\x48\x53\x6f\x63\x45\x61','\x57\x4f\x58\x77\x57\x36\x43\x74\x57\x34\x69','\x6e\x43\x6b\x54\x57\x35\x37\x63\x50\x5a\x46\x63\x51\x76\x68\x64\x50\x71','\x61\x38\x6f\x62\x57\x37\x70\x63\x4e\x47','\x57\x35\x68\x64\x49\x6d\x6f\x54\x6a\x6d\x6f\x34','\x46\x38\x6f\x2f\x65\x53\x6f\x64','\x42\x33\x37\x63\x55\x78\x64\x63\x4b\x31\x53\x61','\x65\x71\x4c\x72\x70\x6d\x6b\x57\x69\x49\x68\x63\x48\x57','\x57\x35\x4a\x64\x50\x53\x6f\x39\x64\x48\x31\x46\x64\x4b\x61','\x57\x51\x68\x63\x56\x5a\x4b\x62\x57\x36\x7a\x43\x65\x38\x6f\x77\x42\x64\x57\x77\x57\x4f\x37\x63\x4d\x61','\x57\x35\x70\x63\x50\x6d\x6b\x48\x62\x67\x31\x72\x42\x43\x6f\x44','\x6a\x43\x6b\x51\x57\x35\x46\x64\x55\x4e\x64\x64\x51\x57','\x41\x53\x6b\x67\x6b\x6d\x6f\x78\x57\x35\x53\x78\x57\x37\x54\x6a','\x72\x4c\x31\x75\x57\x50\x34\x4e\x6f\x53\x6b\x53\x41\x61','\x57\x51\x6e\x76\x45\x61','\x67\x38\x6f\x43\x57\x37\x30','\x77\x30\x35\x70\x57\x50\x4b\x36\x45\x43\x6b\x56\x79\x57','\x57\x37\x33\x64\x4b\x76\x6d\x6f\x57\x36\x30','\x41\x72\x79\x7a\x68\x6d\x6f\x49\x57\x50\x52\x64\x55\x53\x6b\x69','\x62\x6d\x6b\x41\x72\x6d\x6b\x32\x67\x33\x69\x5a\x6f\x61','\x6f\x75\x6c\x64\x4f\x76\x4a\x63\x4d\x58\x46\x63\x4c\x6d\x6b\x76','\x68\x48\x64\x64\x47\x43\x6f\x57','\x57\x51\x50\x35\x79\x53\x6f\x62\x57\x50\x42\x64\x50\x53\x6f\x4a\x78\x57','\x72\x49\x50\x57\x7a\x38\x6f\x6b\x57\x51\x64\x63\x51\x43\x6b\x43','\x57\x37\x5a\x63\x4f\x77\x33\x63\x51\x65\x4e\x64\x49\x31\x37\x63\x4d\x57','\x61\x38\x6b\x71\x41\x6d\x6b\x6c','\x57\x35\x56\x63\x50\x6d\x6b\x52\x72\x4d\x66\x75\x77\x6d\x6f\x43','\x57\x4f\x47\x55\x57\x50\x38','\x57\x51\x65\x42\x78\x6d\x6f\x2f\x57\x34\x46\x63\x4b\x72\x75\x69','\x57\x35\x37\x63\x47\x75\x74\x63\x4a\x4d\x4e\x64\x51\x47','\x61\x38\x6f\x73\x57\x36\x4e\x63\x4d\x6d\x6b\x62','\x66\x75\x4f\x77\x6d\x43\x6b\x38\x6e\x63\x4e\x63\x48\x61','\x68\x64\x34\x58\x57\x50\x6c\x64\x4a\x47\x52\x63\x48\x38\x6b\x5a','\x77\x61\x46\x64\x4c\x53\x6f\x54\x67\x6d\x6f\x45\x57\x50\x57\x6a','\x75\x53\x6b\x44\x61\x53\x6f\x2b\x57\x52\x4b','\x76\x53\x6b\x78\x6a\x43\x6f\x48\x57\x35\x57','\x57\x36\x52\x63\x4a\x49\x5a\x63\x55\x38\x6f\x70\x57\x52\x48\x54\x57\x52\x61','\x57\x34\x6c\x64\x55\x53\x6f\x42\x68\x72\x48\x46\x62\x65\x65','\x57\x35\x68\x64\x49\x6d\x6f\x54\x6a\x6d\x6f\x6e\x70\x6d\x6b\x63\x57\x52\x30','\x64\x71\x5a\x64\x49\x53\x6f\x34\x67\x38\x6f\x75\x57\x4f\x79\x6e','\x74\x77\x33\x64\x56\x47','\x76\x63\x42\x63\x55\x38\x6b\x34\x46\x38\x6f\x46\x57\x35\x4c\x54','\x57\x37\x37\x63\x4f\x67\x6a\x6e\x72\x53\x6f\x6e\x68\x4d\x57','\x78\x64\x52\x63\x52\x53\x6b\x38\x44\x6d\x6b\x6d','\x57\x52\x61\x73\x71\x43\x6f\x30\x57\x34\x64\x63\x4c\x64\x79\x77','\x6d\x43\x6b\x4e\x57\x34\x69','\x66\x4a\x6d\x55','\x78\x49\x46\x63\x54\x6d\x6b\x59\x46\x38\x6f\x42','\x57\x4f\x53\x30\x57\x4f\x58\x44\x57\x37\x4b\x54\x42\x57','\x57\x4f\x6d\x4b\x57\x4f\x58\x58\x57\x36\x65\x55\x77\x53\x6f\x6a','\x7a\x65\x46\x63\x51\x4d\x68\x63\x4d\x75\x61\x70\x57\x35\x75','\x42\x4b\x2f\x63\x56\x33\x42\x63\x4a\x4b\x30\x39\x57\x35\x47','\x57\x36\x74\x63\x4e\x38\x6b\x73\x69\x33\x53','\x63\x74\x4c\x2b\x57\x4f\x74\x64\x4a\x48\x78\x64\x47\x43\x6b\x4d','\x6c\x61\x68\x64\x49\x6d\x6f\x46\x6d\x47','\x66\x57\x4b\x46\x6d\x53\x6b\x4c\x6e\x5a\x5a\x63\x4a\x71','\x77\x4d\x5a\x64\x51\x61\x35\x37\x57\x36\x72\x67\x6a\x57','\x67\x57\x71\x4a\x57\x52\x62\x68\x76\x63\x6c\x64\x4e\x57','\x57\x51\x50\x58\x42\x30\x5a\x64\x4f\x73\x58\x53','\x57\x50\x35\x39\x45\x31\x68\x64\x4e\x57'];_0x43cc=function(){return _0x1c84e0;};return _0x43cc();}
|