@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.
Files changed (91) hide show
  1. package/dist/algo/antiDistill.js +1 -167
  2. package/dist/algo/bans.js +1 -33
  3. package/dist/algo/candidateAssembly.js +1 -273
  4. package/dist/algo/capabilityCandidates.js +1 -146
  5. package/dist/algo/confidence.js +1 -196
  6. package/dist/algo/conversationSniffer.js +1 -149
  7. package/dist/algo/cycleEngine.js +1 -625
  8. package/dist/algo/cycleFailureClassifier.js +1 -112
  9. package/dist/algo/epigenetics.js +1 -41
  10. package/dist/algo/evolutionEvent.js +1 -24
  11. package/dist/algo/exploration.js +1 -68
  12. package/dist/algo/geneHealth.js +1 -17
  13. package/dist/algo/geneIntake.js +1 -128
  14. package/dist/algo/genePromotion.js +1 -53
  15. package/dist/algo/geneSelection.js +1 -546
  16. package/dist/algo/index.js +1 -22
  17. package/dist/algo/memoryGraph.js +1 -86
  18. package/dist/algo/mutation.js +1 -22
  19. package/dist/algo/orchestrator.js +1 -87
  20. package/dist/algo/publishEligibility.js +1 -52
  21. package/dist/algo/solidify.js +1 -63
  22. package/dist/algo/strategyPresets.js +1 -61
  23. package/dist/algo/ucb1.js +1 -156
  24. package/dist/benchmark/antiGeneBenchmark.js +1 -252
  25. package/dist/benchmark/antiGeneImpact.js +1 -34
  26. package/dist/benchmark/antiGeneRollout.js +1 -269
  27. package/dist/benchmark/benchmark.js +1 -26
  28. package/dist/benchmark/evolutionThesisSolver.js +1 -41
  29. package/dist/benchmark/index.js +1 -7
  30. package/dist/benchmark/selectionFlatAbstention.js +1 -481
  31. package/dist/benchmark/thesis.js +1 -150
  32. package/dist/benchmark/triggerShift.js +1 -106
  33. package/dist/cycle/cycleTimeline.js +1 -74
  34. package/dist/cycle/index.js +1 -2
  35. package/dist/cycle/stateMachine.js +1 -25
  36. package/dist/hub/agentDirectory.js +1 -104
  37. package/dist/hub/assetCallLog.js +1 -195
  38. package/dist/hub/bindings.js +1 -121
  39. package/dist/hub/capability.js +1 -1
  40. package/dist/hub/conversationDistiller.js +1 -264
  41. package/dist/hub/fake.js +1 -70
  42. package/dist/hub/hubReview.js +1 -106
  43. package/dist/hub/index.js +1 -11
  44. package/dist/hub/ingest.js +1 -15
  45. package/dist/hub/questionGenerator.js +1 -408
  46. package/dist/hub/reuseDecision.js +1 -127
  47. package/dist/hub/sanitize.js +1 -322
  48. package/dist/material/boundary.js +1 -14
  49. package/dist/material/consumer.js +1 -55
  50. package/dist/material/emit.js +1 -52
  51. package/dist/material/factory.js +1 -25
  52. package/dist/material/index.js +1 -9
  53. package/dist/material/materialArchive.js +1 -466
  54. package/dist/material/materialStore.js +1 -69
  55. package/dist/material/sampling.js +1 -39
  56. package/dist/material/sources.js +1 -33
  57. package/dist/material/watermark.js +1 -76
  58. package/dist/personality/drift.js +1 -106
  59. package/dist/personality/events.js +1 -37
  60. package/dist/personality/evolveOps.js +1 -93
  61. package/dist/personality/index.js +1 -11
  62. package/dist/personality/mutate.js +1 -39
  63. package/dist/personality/pivot.js +1 -22
  64. package/dist/personality/prompt.js +1 -62
  65. package/dist/personality/riskGate.js +1 -80
  66. package/dist/personality/schema.js +1 -119
  67. package/dist/personality/select.js +1 -71
  68. package/dist/personality/stats.js +1 -82
  69. package/dist/personality/store.js +1 -92
  70. package/dist/schema/common.js +1 -17
  71. package/dist/schema/evolutionGraph.js +1 -187
  72. package/dist/schema/index.js +1 -6
  73. package/dist/schema/material.js +1 -50
  74. package/dist/schema/problem.js +1 -45
  75. package/dist/schema/proofOfWork.js +1 -9
  76. package/dist/schema/signal.js +1 -19
  77. package/dist/signals/curriculum.js +1 -202
  78. package/dist/signals/cycleHistoryFromEvents.js +1 -105
  79. package/dist/signals/expand.js +1 -293
  80. package/dist/signals/extractor.js +1 -82
  81. package/dist/signals/index.js +1 -8
  82. package/dist/signals/metaSignals.js +1 -200
  83. package/dist/signals/signalGate.js +1 -40
  84. package/dist/signals/taskDomain.js +1 -43
  85. package/dist/signals/traceSignals.js +1 -123
  86. package/dist/strategy/constraintAblation.js +1 -2820
  87. package/dist/strategy/constraintAblationPredicates.js +1 -339
  88. package/dist/strategy/experiment.js +1 -63
  89. package/dist/strategy/index.js +1 -3
  90. package/dist/strategy/strategyPoint.js +1 -23
  91. package/package.json +1 -1
@@ -1,466 +1 @@
1
- import { closeSync, existsSync, fsyncSync, mkdirSync, openSync, readFileSync, readdirSync, renameSync, rmSync, statSync, writeSync, } from 'node:fs';
2
- import { basename, dirname, extname, join } from 'node:path';
3
- import { material } from '../schema/material.js';
4
- import { acquireLock, releaseLock } from '../util/fileLock.js';
5
- export const MATERIAL_ARCHIVE_DEFAULT_KEEP_RECORDS = 1_000;
6
- const SEGMENT_PATTERN = /^material-(\d{16})-(\d{16})\.jsonl$/;
7
- export class InvalidMaterialLogError extends Error {
8
- line;
9
- code = 'MATERIAL_ARCHIVE_INVALID_LOG';
10
- constructor(line, reason) {
11
- super(`material archive refused invalid active log at line ${line}: ${reason}`);
12
- this.line = line;
13
- this.name = 'InvalidMaterialLogError';
14
- }
15
- }
16
- export class InvalidMaterialArchiveError extends Error {
17
- segment;
18
- line;
19
- code = 'MATERIAL_ARCHIVE_INVALID_ARCHIVE';
20
- constructor(segment, line, reason) {
21
- super(`material archive segment ${segment} is invalid at line ${line}: ${reason}`);
22
- this.segment = segment;
23
- this.line = line;
24
- this.name = 'InvalidMaterialArchiveError';
25
- }
26
- }
27
- export class MaterialArchiveRangeError extends Error {
28
- code = 'MATERIAL_ARCHIVE_RANGE_INVALID';
29
- constructor(reason) {
30
- super(`material archive range is invalid: ${reason}`);
31
- this.name = 'MaterialArchiveRangeError';
32
- }
33
- }
34
- export class MaterialArchiveSegmentConflictError extends Error {
35
- archiveId;
36
- code = 'MATERIAL_ARCHIVE_SEGMENT_CONFLICT';
37
- constructor(archiveId) {
38
- super(`material archive segment ${archiveId} already exists with different content`);
39
- this.archiveId = archiveId;
40
- this.name = 'MaterialArchiveSegmentConflictError';
41
- }
42
- }
43
- export class InvalidMaterialArchiveCursorError extends Error {
44
- code = 'MATERIAL_ARCHIVE_CURSOR_INVALID';
45
- constructor(reason) {
46
- super(`material archive cursor is invalid: ${reason}`);
47
- this.name = 'InvalidMaterialArchiveCursorError';
48
- }
49
- }
50
- export function materialArchiveDir(path) {
51
- const ext = extname(path);
52
- const stem = ext.length > 0 ? basename(path, ext) : basename(path);
53
- return join(dirname(path), `${stem}.archive`);
54
- }
55
- export function materialArchiveSegmentName(start, end) {
56
- return `material-${String(start).padStart(16, '0')}-${String(end).padStart(16, '0')}.jsonl`;
57
- }
58
- export function planMaterialArchive(opts) {
59
- const keepRecords = normalizeKeepRecords(opts.keepRecords);
60
- const state = readStrictHistory(opts.path);
61
- const historyRecords = state.archive.length + state.logicalActive.length;
62
- const cursors = readCursorsStrict(opts.cursorPaths ?? [], historyRecords);
63
- const minCursor = minimumCursor(cursors, state.archive.length);
64
- const wouldArchive = archiveableCount(state, minCursor, keepRecords);
65
- const start = state.archive.length;
66
- const end = start + wouldArchive - 1;
67
- return {
68
- mode: 'preview',
69
- activeRecords: state.logicalActive.length,
70
- physicalActiveRecords: state.active.length,
71
- archiveRecords: state.archive.length,
72
- historyRecords,
73
- keepRecords,
74
- minCursor,
75
- cursors,
76
- overlapRecords: state.overlap,
77
- wouldArchive,
78
- retainedRecords: state.logicalActive.length - wouldArchive,
79
- archiveId: wouldArchive === 0 ? null : `${start}-${end}`,
80
- };
81
- }
82
- export function archiveMaterialStore(opts) {
83
- const keepRecords = normalizeKeepRecords(opts.keepRecords);
84
- const lockPath = `${opts.path}.lock`;
85
- mkdirSync(dirname(opts.path), { recursive: true });
86
- acquireLock(lockPath);
87
- try {
88
- const state = readStrictHistory(opts.path);
89
- const historyRecords = state.archive.length + state.logicalActive.length;
90
- const cursors = readCursorsStrict(opts.cursorPaths ?? [], historyRecords);
91
- const minCursor = minimumCursor(cursors, state.archive.length);
92
- const archivedRecords = archiveableCount(state, minCursor, keepRecords);
93
- const start = state.archive.length;
94
- const end = start + archivedRecords - 1;
95
- const archiveId = archivedRecords === 0 ? null : `${start}-${end}`;
96
- if (archivedRecords > 0) {
97
- const prefix = state.logicalActive.slice(0, archivedRecords);
98
- const archiveDir = materialArchiveDir(opts.path);
99
- mkdirSync(archiveDir, { recursive: true });
100
- const segmentPath = join(archiveDir, materialArchiveSegmentName(start, end));
101
- const contents = serializeLines(prefix);
102
- if (existsSync(segmentPath)) {
103
- if (readFileSync(segmentPath, 'utf8') !== contents) {
104
- throw new MaterialArchiveSegmentConflictError(archiveId ?? `${start}-${end}`);
105
- }
106
- }
107
- else {
108
- durableReplace(`${segmentPath}.tmp`, segmentPath, contents);
109
- fsyncDirectoryBestEffort(archiveDir);
110
- }
111
- }
112
- const tail = state.logicalActive.slice(archivedRecords);
113
- if (archivedRecords > 0 || state.overlap > 0) {
114
- durableReplace(`${opts.path}.archive.tmp`, opts.path, serializeLines(tail));
115
- fsyncDirectoryBestEffort(dirname(opts.path));
116
- }
117
- return {
118
- mode: 'write',
119
- activeRecordsBefore: state.logicalActive.length,
120
- physicalActiveRecordsBefore: state.active.length,
121
- keepRecords,
122
- minCursor,
123
- cursors,
124
- archivedRecords,
125
- retainedRecords: tail.length,
126
- archiveRecords: state.archive.length + archivedRecords,
127
- historyRecords,
128
- recoveredOverlap: state.overlap,
129
- archiveId,
130
- };
131
- }
132
- finally {
133
- releaseLock(lockPath);
134
- }
135
- }
136
- /** Operational, fail-soft full history reader. Strict archive writes validate every line and range. */
137
- export function readMaterialHistory(path) {
138
- // Snapshot active first. Writers persist an archive segment before replacing active, so every interleaving
139
- // now observes either the old active state or a recoverable archive/active overlap, never a new tail with an
140
- // old archive base.
141
- const active = readMaterialsLenient(path);
142
- const ordered = [];
143
- const positions = new Map();
144
- const archiveDir = materialArchiveDir(path);
145
- for (const descriptor of segmentDescriptors(archiveDir)) {
146
- for (const record of readMaterialsLenient(join(archiveDir, descriptor.file))) {
147
- if (positions.has(record.materialId))
148
- continue;
149
- positions.set(record.materialId, ordered.length);
150
- ordered.push(record);
151
- }
152
- }
153
- // The active log is the current writer source. In a crash overlap it owns the duplicate record while its
154
- // original absolute position remains stable.
155
- for (const record of active) {
156
- const position = positions.get(record.materialId);
157
- if (position === undefined) {
158
- positions.set(record.materialId, ordered.length);
159
- ordered.push(record);
160
- }
161
- else {
162
- ordered[position] = record;
163
- }
164
- }
165
- return ordered;
166
- }
167
- /** Absolute-offset range reader used by durable consumers after active records move into archive segments. */
168
- export function readMaterialRange(path, start, count) {
169
- const normalizedStart = normalizeRangeStart(start);
170
- const normalizedCount = normalizeRangeCount(count);
171
- if (normalizedCount === 0)
172
- return [];
173
- // Keep the same active-first snapshot order as readMaterialHistory; see its concurrency note.
174
- const active = readMaterialsLenient(path);
175
- const archiveDir = materialArchiveDir(path);
176
- const descriptors = segmentDescriptors(archiveDir);
177
- if (descriptors.length === 0) {
178
- return active.slice(normalizedStart, normalizedStart + normalizedCount);
179
- }
180
- const archiveEnd = Math.max(...descriptors.map((descriptor) => descriptor.end));
181
- const requestedEnd = Math.min(Number.MAX_SAFE_INTEGER, normalizedStart + normalizedCount - 1);
182
- const byOffset = new Map();
183
- for (const descriptor of descriptors) {
184
- if (descriptor.end < normalizedStart || descriptor.start > requestedEnd)
185
- continue;
186
- const records = readMaterialsLenient(join(archiveDir, descriptor.file));
187
- for (let index = 0; index < records.length; index += 1) {
188
- const offset = descriptor.start + index;
189
- if (offset >= normalizedStart && offset <= requestedEnd && !byOffset.has(offset)) {
190
- byOffset.set(offset, records[index]);
191
- }
192
- }
193
- }
194
- if (requestedEnd > archiveEnd) {
195
- const overlap = detectOperationalOverlap(path, descriptors, active);
196
- const logicalActive = active.slice(overlap);
197
- const activeStart = archiveEnd + 1;
198
- for (let index = 0; index < logicalActive.length; index += 1) {
199
- const offset = activeStart + index;
200
- if (offset >= normalizedStart && offset <= requestedEnd)
201
- byOffset.set(offset, logicalActive[index]);
202
- }
203
- }
204
- return [...byOffset.entries()]
205
- .sort(([left], [right]) => left - right)
206
- .map(([, record]) => record);
207
- }
208
- export function inspectMaterialArchive(path) {
209
- const archiveDir = materialArchiveDir(path);
210
- const descriptors = segmentDescriptors(archiveDir);
211
- let bytes = 0;
212
- let records = 0;
213
- let invalidLines = 0;
214
- for (const descriptor of descriptors) {
215
- const segmentPath = join(archiveDir, descriptor.file);
216
- bytes += statSync(segmentPath).size;
217
- for (const line of readFileSync(segmentPath, 'utf8').split('\n')) {
218
- if (line.length === 0)
219
- continue;
220
- try {
221
- material.parse(JSON.parse(line));
222
- records += 1;
223
- }
224
- catch {
225
- invalidLines += 1;
226
- }
227
- }
228
- }
229
- return {
230
- exists: descriptors.length > 0,
231
- segments: descriptors.length,
232
- bytes,
233
- records,
234
- invalidLines,
235
- firstOffset: descriptors[0]?.start ?? null,
236
- lastOffset: descriptors[descriptors.length - 1]?.end ?? null,
237
- };
238
- }
239
- function readStrictHistory(path) {
240
- const archive = readArchiveStrict(materialArchiveDir(path));
241
- const active = readActiveStrict(path);
242
- const overlap = detectOverlap(archive, active);
243
- const logicalActive = active.slice(overlap);
244
- const seen = new Map();
245
- for (const line of [...archive, ...logicalActive]) {
246
- const canonical = JSON.stringify(line.record);
247
- const existing = seen.get(line.record.materialId);
248
- if (existing !== undefined) {
249
- if (existing !== canonical)
250
- throw new MaterialArchiveSegmentConflictError(line.record.materialId);
251
- throw new MaterialArchiveRangeError(`duplicate material ${line.record.materialId}`);
252
- }
253
- seen.set(line.record.materialId, canonical);
254
- }
255
- return { archive, active, logicalActive, overlap };
256
- }
257
- function readArchiveStrict(archiveDir) {
258
- const descriptors = segmentDescriptors(archiveDir, true);
259
- const out = [];
260
- let expectedStart = 0;
261
- for (const descriptor of descriptors) {
262
- if (descriptor.start !== expectedStart) {
263
- throw new MaterialArchiveRangeError(`expected offset ${expectedStart} but found ${descriptor.start}`);
264
- }
265
- const lines = readStrictLines(join(archiveDir, descriptor.file), descriptor.file, true);
266
- const expectedLength = descriptor.end - descriptor.start + 1;
267
- if (lines.length !== expectedLength) {
268
- throw new MaterialArchiveRangeError(`${descriptor.file} declares ${expectedLength} record(s) but contains ${lines.length}`);
269
- }
270
- out.push(...lines);
271
- expectedStart = descriptor.end + 1;
272
- }
273
- return out;
274
- }
275
- function readActiveStrict(path) {
276
- if (!existsSync(path))
277
- return [];
278
- const out = [];
279
- const lines = readFileSync(path, 'utf8').split('\n');
280
- for (let index = 0; index < lines.length; index += 1) {
281
- const raw = lines[index];
282
- if (raw.length === 0)
283
- continue;
284
- try {
285
- out.push({ record: material.parse(JSON.parse(raw)), raw });
286
- }
287
- catch {
288
- throw new InvalidMaterialLogError(index + 1, 'invalid json or material schema');
289
- }
290
- }
291
- return out;
292
- }
293
- function readStrictLines(path, segment, archive) {
294
- const out = [];
295
- const lines = readFileSync(path, 'utf8').split('\n');
296
- for (let index = 0; index < lines.length; index += 1) {
297
- const raw = lines[index];
298
- if (raw.length === 0)
299
- continue;
300
- try {
301
- out.push({ record: material.parse(JSON.parse(raw)), raw });
302
- }
303
- catch {
304
- if (archive)
305
- throw new InvalidMaterialArchiveError(segment, index + 1, 'invalid json or material schema');
306
- throw new InvalidMaterialLogError(index + 1, 'invalid json or material schema');
307
- }
308
- }
309
- return out;
310
- }
311
- function readMaterialsLenient(path) {
312
- if (!existsSync(path))
313
- return [];
314
- const out = [];
315
- for (const line of readFileSync(path, 'utf8').split('\n')) {
316
- if (line.length === 0)
317
- continue;
318
- try {
319
- out.push(material.parse(JSON.parse(line)));
320
- }
321
- catch {
322
- // Preserve MaterialStore's existing fail-soft reads. Archive writes use strict parsing.
323
- }
324
- }
325
- return out;
326
- }
327
- function segmentDescriptors(archiveDir, strict = false) {
328
- if (!existsSync(archiveDir))
329
- return [];
330
- const out = [];
331
- for (const file of readdirSync(archiveDir).sort()) {
332
- const match = SEGMENT_PATTERN.exec(file);
333
- if (match === null)
334
- continue;
335
- const start = Number(match[1]);
336
- const end = Number(match[2]);
337
- if (!Number.isSafeInteger(start) || !Number.isSafeInteger(end) || start < 0 || end < start) {
338
- if (strict)
339
- throw new MaterialArchiveRangeError(`invalid segment filename ${file}`);
340
- continue;
341
- }
342
- out.push({ file, start, end });
343
- }
344
- return out.sort((left, right) => left.start - right.start || left.end - right.end);
345
- }
346
- function detectOverlap(archive, active) {
347
- const max = Math.min(archive.length, active.length);
348
- for (let length = max; length > 0; length -= 1) {
349
- const archiveStart = archive.length - length;
350
- let matches = true;
351
- for (let index = 0; index < length; index += 1) {
352
- if (JSON.stringify(archive[archiveStart + index].record) !== JSON.stringify(active[index].record)) {
353
- matches = false;
354
- break;
355
- }
356
- }
357
- if (matches)
358
- return length;
359
- }
360
- return 0;
361
- }
362
- function detectOperationalOverlap(path, descriptors, active) {
363
- const latest = descriptors[descriptors.length - 1];
364
- if (latest === undefined || active.length === 0)
365
- return 0;
366
- const archived = readMaterialsLenient(join(materialArchiveDir(path), latest.file));
367
- const max = Math.min(archived.length, active.length);
368
- for (let length = max; length > 0; length -= 1) {
369
- const archiveStart = archived.length - length;
370
- let matches = true;
371
- for (let index = 0; index < length; index += 1) {
372
- if (JSON.stringify(archived[archiveStart + index]) !== JSON.stringify(active[index])) {
373
- matches = false;
374
- break;
375
- }
376
- }
377
- if (matches)
378
- return length;
379
- }
380
- return 0;
381
- }
382
- function readCursorsStrict(paths, historyRecords) {
383
- const out = [];
384
- for (const path of paths) {
385
- if (!existsSync(path))
386
- continue;
387
- let parsed;
388
- try {
389
- parsed = JSON.parse(readFileSync(path, 'utf8'));
390
- }
391
- catch {
392
- throw new InvalidMaterialArchiveCursorError('cursor file is not valid JSON');
393
- }
394
- if (typeof parsed !== 'object' || parsed === null || Array.isArray(parsed)) {
395
- throw new InvalidMaterialArchiveCursorError('cursor file must contain an object');
396
- }
397
- for (const [group, value] of Object.entries(parsed)) {
398
- if (!Number.isSafeInteger(value) || value < 0 || value > historyRecords) {
399
- throw new InvalidMaterialArchiveCursorError(`group ${group} is outside history bounds`);
400
- }
401
- out.push({ group, position: value });
402
- }
403
- }
404
- return out;
405
- }
406
- function minimumCursor(cursors, archiveRecords) {
407
- return cursors.length === 0 ? archiveRecords : Math.min(...cursors.map((cursor) => cursor.position));
408
- }
409
- function archiveableCount(state, minCursor, keepRecords) {
410
- const committedActive = Math.max(0, minCursor - state.archive.length);
411
- const tailBound = Math.max(0, state.logicalActive.length - keepRecords);
412
- return Math.min(committedActive, tailBound);
413
- }
414
- function serializeLines(lines) {
415
- return lines.length === 0 ? '' : `${lines.map((line) => line.raw).join('\n')}\n`;
416
- }
417
- function durableReplace(tmpPath, finalPath, contents) {
418
- let fd = null;
419
- try {
420
- fd = openSync(tmpPath, 'w', 0o600);
421
- writeSync(fd, contents, undefined, 'utf8');
422
- fsyncSync(fd);
423
- closeSync(fd);
424
- fd = null;
425
- renameSync(tmpPath, finalPath);
426
- }
427
- catch (error) {
428
- if (fd !== null)
429
- closeSync(fd);
430
- rmSync(tmpPath, { force: true });
431
- throw error;
432
- }
433
- }
434
- function fsyncDirectoryBestEffort(path) {
435
- let fd = null;
436
- try {
437
- fd = openSync(path, 'r');
438
- fsyncSync(fd);
439
- }
440
- catch {
441
- // Windows and some filesystems do not support fsync on directories.
442
- }
443
- finally {
444
- if (fd !== null)
445
- closeSync(fd);
446
- }
447
- }
448
- function normalizeKeepRecords(value) {
449
- if (value === undefined)
450
- return MATERIAL_ARCHIVE_DEFAULT_KEEP_RECORDS;
451
- if (!Number.isFinite(value) || value < 1)
452
- throw new RangeError('keepRecords must be a positive integer');
453
- return Math.floor(value);
454
- }
455
- function normalizeRangeStart(value) {
456
- if (!Number.isFinite(value) || value < 0)
457
- return 0;
458
- return Math.floor(value);
459
- }
460
- function normalizeRangeCount(value) {
461
- if (!Number.isFinite(value))
462
- return Number.MAX_SAFE_INTEGER;
463
- if (value <= 0)
464
- return 0;
465
- return Math.floor(value);
466
- }
1
+ const _0x406e2b=_0x5688;(function(_0x20b355,_0x28d836){const _0x637ad0=_0x5688,_0x4f74db=_0x20b355();while(!![]){try{const _0x272107=parseInt(_0x637ad0(0x215,'\x23\x6d\x62\x32'))/(0x1d83+-0x57*-0xc+0x2196*-0x1)+parseInt(_0x637ad0(0x2da,'\x31\x30\x39\x78'))/(-0x1cf+-0x72e*-0x4+-0x1ae7)+-parseInt(_0x637ad0(0x1d2,'\x4e\x5b\x5b\x43'))/(-0x111+-0x149*-0x19+-0x1f0d)*(-parseInt(_0x637ad0(0x303,'\x53\x30\x61\x28'))/(0x1c1e+0x1*-0x53a+0x1e8*-0xc))+-parseInt(_0x637ad0(0x261,'\x53\x30\x61\x28'))/(-0x476*0x1+0x1b9*-0x15+-0x28a8*-0x1)+-parseInt(_0x637ad0(0x325,'\x45\x55\x4d\x24'))/(-0x82e*0x2+0x1d3*0xf+-0xafb)+parseInt(_0x637ad0(0x24a,'\x65\x4c\x50\x43'))/(-0x1*-0x13b6+0x227*0x10+-0x361f)+-parseInt(_0x637ad0(0x1e2,'\x4f\x63\x75\x6f'))/(0x1*0x243d+-0x1d43*0x1+0x1*-0x6f2);if(_0x272107===_0x28d836)break;else _0x4f74db['push'](_0x4f74db['shift']());}catch(_0x30cf91){_0x4f74db['push'](_0x4f74db['shift']());}}}(_0x5288,0x1b059*0x1+0x8*0x2105e+-0x74d3c));import{closeSync,existsSync,fsyncSync,mkdirSync,openSync,readFileSync,readdirSync,renameSync,rmSync,statSync,writeSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{basename,dirname,extname,join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{material}from'\x2e\x2e\x2f\x73\x63\x68\x65\x6d\x61\x2f\x6d\x61\x74\x65\x72\x69\x61\x6c\x2e\x6a\x73';import{acquireLock,releaseLock}from'\x2e\x2e\x2f\x75\x74\x69\x6c\x2f\x66\x69\x6c\x65\x4c\x6f\x63\x6b\x2e\x6a\x73';export const MATERIAL_ARCHIVE_DEFAULT_KEEP_RECORDS=0x38b*-0x4+0x156+0x10be;const SEGMENT_PATTERN=/^material-(\d{16})-(\d{16})\.jsonl$/;export class InvalidMaterialLogError extends Error{[_0x406e2b(0x2d2,'\x45\x36\x33\x4d')];[_0x406e2b(0x2f0,'\x26\x24\x40\x54')]=_0x406e2b(0x21b,'\x56\x52\x74\x39')+_0x406e2b(0x1d1,'\x23\x6c\x48\x5a')+_0x406e2b(0x2a9,'\x40\x64\x26\x40')+'\x5f\x4c\x4f\x47';constructor(_0x475263,_0x24dd81){const _0x4375ab=_0x406e2b;super(_0x4375ab(0x28d,'\x40\x64\x26\x40')+_0x4375ab(0x322,'\x68\x41\x46\x4c')+'\x20\x72\x65\x66\x75\x73\x65\x64'+_0x4375ab(0x1f3,'\x53\x30\x61\x28')+'\x20\x61\x63\x74\x69\x76\x65\x20'+'\x6c\x6f\x67\x20\x61\x74\x20\x6c'+_0x4375ab(0x2f7,'\x78\x38\x42\x6d')+_0x475263+'\x3a\x20'+_0x24dd81),this['\x6c\x69\x6e\x65']=_0x475263,this[_0x4375ab(0x1f7,'\x44\x55\x46\x49')]=_0x4375ab(0x23a,'\x26\x24\x40\x54')+'\x61\x74\x65\x72\x69\x61\x6c\x4c'+_0x4375ab(0x239,'\x45\x36\x33\x4d');}}export class InvalidMaterialArchiveError extends Error{[_0x406e2b(0x2e5,'\x38\x78\x5d\x4d')];[_0x406e2b(0x27d,'\x25\x62\x23\x26')];['\x63\x6f\x64\x65']=_0x406e2b(0x187,'\x31\x30\x39\x78')+_0x406e2b(0x197,'\x79\x43\x6f\x73')+_0x406e2b(0x25c,'\x79\x77\x63\x32')+_0x406e2b(0x1c6,'\x62\x47\x6d\x75');constructor(_0x33522e,_0x239638,_0x8e5acf){const _0x41d48b=_0x406e2b;super(_0x41d48b(0x20b,'\x7a\x43\x69\x44')+_0x41d48b(0x30a,'\x53\x30\x61\x28')+_0x41d48b(0x260,'\x5e\x71\x38\x40')+'\x20'+_0x33522e+(_0x41d48b(0x195,'\x4f\x63\x75\x6f')+_0x41d48b(0x281,'\x23\x6c\x48\x5a')+_0x41d48b(0x2b4,'\x45\x36\x33\x4d'))+_0x239638+'\x3a\x20'+_0x8e5acf),this[_0x41d48b(0x256,'\x5e\x71\x38\x40')]=_0x33522e,this[_0x41d48b(0x1f1,'\x23\x30\x7a\x4f')]=_0x239638,this[_0x41d48b(0x193,'\x31\x6e\x6d\x79')]=_0x41d48b(0x1ff,'\x40\x64\x26\x40')+_0x41d48b(0x22a,'\x62\x34\x44\x35')+_0x41d48b(0x264,'\x49\x71\x49\x39')+_0x41d48b(0x21a,'\x6f\x52\x76\x77');}}export class MaterialArchiveRangeError extends Error{[_0x406e2b(0x24e,'\x4f\x63\x75\x6f')]=_0x406e2b(0x1f5,'\x35\x31\x6c\x58')+_0x406e2b(0x2d3,'\x45\x77\x67\x64')+_0x406e2b(0x25a,'\x23\x30\x7a\x4f')+_0x406e2b(0x31d,'\x4f\x63\x75\x6f');constructor(_0x4e2ae0){const _0x5a9640=_0x406e2b;super('\x6d\x61\x74\x65\x72\x69\x61\x6c'+_0x5a9640(0x265,'\x5b\x70\x38\x4a')+_0x5a9640(0x208,'\x23\x30\x7a\x4f')+_0x5a9640(0x21e,'\x69\x72\x43\x5e')+_0x5a9640(0x235,'\x31\x30\x39\x78')+_0x4e2ae0),this[_0x5a9640(0x1a4,'\x6b\x31\x68\x37')]='\x4d\x61\x74\x65\x72\x69\x61\x6c'+_0x5a9640(0x21d,'\x79\x77\x63\x32')+_0x5a9640(0x1b3,'\x4f\x63\x75\x6f')+'\x72';}}export class MaterialArchiveSegmentConflictError extends Error{[_0x406e2b(0x217,'\x56\x52\x74\x39')+'\x64'];['\x63\x6f\x64\x65']=_0x406e2b(0x2fc,'\x62\x47\x6d\x75')+_0x406e2b(0x1e3,'\x25\x62\x23\x26')+'\x5f\x53\x45\x47\x4d\x45\x4e\x54'+_0x406e2b(0x26b,'\x23\x30\x7a\x4f')+'\x54';constructor(_0x7cbc49){const _0x110555=_0x406e2b;super(_0x110555(0x1ac,'\x6f\x52\x76\x77')+_0x110555(0x220,'\x25\x62\x23\x26')+_0x110555(0x1fe,'\x4f\x63\x75\x6f')+'\x20'+_0x7cbc49+(_0x110555(0x1d7,'\x4e\x5b\x5b\x43')+_0x110555(0x29e,'\x56\x76\x54\x25')+_0x110555(0x2ae,'\x45\x36\x33\x4d')+_0x110555(0x241,'\x26\x24\x40\x54')+_0x110555(0x320,'\x79\x43\x6f\x73'))),this[_0x110555(0x192,'\x4b\x48\x5b\x6f')+'\x64']=_0x7cbc49,this[_0x110555(0x263,'\x68\x41\x46\x4c')]=_0x110555(0x19d,'\x77\x28\x67\x31')+'\x41\x72\x63\x68\x69\x76\x65\x53'+_0x110555(0x24b,'\x76\x26\x68\x72')+_0x110555(0x2f3,'\x38\x75\x24\x47')+_0x110555(0x2e0,'\x56\x76\x54\x25');}}export class InvalidMaterialArchiveCursorError extends Error{[_0x406e2b(0x29c,'\x56\x52\x74\x39')]='\x4d\x41\x54\x45\x52\x49\x41\x4c'+_0x406e2b(0x31e,'\x38\x75\x24\x47')+_0x406e2b(0x273,'\x79\x77\x63\x32')+'\x49\x4e\x56\x41\x4c\x49\x44';constructor(_0x2aeb3b){const _0x22d803=_0x406e2b;super(_0x22d803(0x302,'\x45\x79\x78\x24')+'\x20\x61\x72\x63\x68\x69\x76\x65'+_0x22d803(0x18d,'\x78\x79\x25\x51')+_0x22d803(0x318,'\x7a\x43\x69\x44')+_0x22d803(0x1e7,'\x45\x55\x4d\x24')+_0x2aeb3b),this[_0x22d803(0x2be,'\x49\x71\x49\x39')]='\x49\x6e\x76\x61\x6c\x69\x64\x4d'+_0x22d803(0x2c1,'\x45\x55\x4d\x24')+_0x22d803(0x200,'\x59\x47\x34\x4e')+_0x22d803(0x1d8,'\x62\x34\x44\x35')+'\x72';}}export function materialArchiveDir(_0x34d584){const _0x5ae8ef=_0x406e2b,_0x416d11=extname(_0x34d584),_0x4ffb0f=_0x416d11[_0x5ae8ef(0x20e,'\x4a\x54\x45\x45')]>0x1b*0x133+0x2509+-0x456a?basename(_0x34d584,_0x416d11):basename(_0x34d584);return join(dirname(_0x34d584),_0x4ffb0f+_0x5ae8ef(0x2ed,'\x45\x55\x4d\x24'));}export function materialArchiveSegmentName(_0x92e0f9,_0x319ced){const _0x3703ad=_0x406e2b;return _0x3703ad(0x2f4,'\x78\x38\x42\x6d')+'\x2d'+String(_0x92e0f9)[_0x3703ad(0x266,'\x25\x62\x23\x26')](0x1fa7*0x1+-0x7e6+0x1*-0x17b1,'\x30')+'\x2d'+String(_0x319ced)['\x70\x61\x64\x53\x74\x61\x72\x74'](-0x2*0x17e+0x1f06+-0x1bfa,'\x30')+_0x3703ad(0x26d,'\x44\x55\x46\x49');}export function planMaterialArchive(_0x2507b1){const _0x56ed82=_0x406e2b,_0x46d9e2=normalizeKeepRecords(_0x2507b1[_0x56ed82(0x1bc,'\x24\x4b\x63\x26')+'\x72\x64\x73']),_0x50faae=readStrictHistory(_0x2507b1[_0x56ed82(0x22c,'\x68\x41\x46\x4c')]),_0xb8f2b4=_0x50faae[_0x56ed82(0x27e,'\x76\x26\x68\x72')][_0x56ed82(0x2a1,'\x45\x4f\x32\x50')]+_0x50faae[_0x56ed82(0x2a3,'\x4c\x58\x70\x78')+_0x56ed82(0x246,'\x78\x38\x42\x6d')][_0x56ed82(0x312,'\x7a\x43\x69\x44')],_0x480c69=readCursorsStrict(_0x2507b1[_0x56ed82(0x1b9,'\x23\x6d\x62\x32')+_0x56ed82(0x203,'\x68\x41\x46\x4c')]??[],_0xb8f2b4),_0x4cd06f=minimumCursor(_0x480c69,_0x50faae[_0x56ed82(0x1d3,'\x79\x77\x63\x32')][_0x56ed82(0x1f9,'\x4c\x58\x70\x78')]),_0x205ffb=archiveableCount(_0x50faae,_0x4cd06f,_0x46d9e2),_0x71a4db=_0x50faae[_0x56ed82(0x280,'\x42\x5b\x38\x48')]['\x6c\x65\x6e\x67\x74\x68'],_0x3316cd=_0x71a4db+_0x205ffb-(0x1527+0x2227+-0x374d);return{'\x6d\x6f\x64\x65':'\x70\x72\x65\x76\x69\x65\x77','\x61\x63\x74\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x50faae[_0x56ed82(0x196,'\x23\x6d\x62\x32')+_0x56ed82(0x1f0,'\x42\x5b\x38\x48')][_0x56ed82(0x23c,'\x59\x47\x34\x4e')],'\x70\x68\x79\x73\x69\x63\x61\x6c\x41\x63\x74\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x50faae[_0x56ed82(0x25b,'\x45\x55\x4d\x24')][_0x56ed82(0x1e5,'\x68\x41\x46\x4c')],'\x61\x72\x63\x68\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x50faae[_0x56ed82(0x2e6,'\x6f\x52\x76\x77')][_0x56ed82(0x209,'\x5e\x25\x51\x48')],'\x68\x69\x73\x74\x6f\x72\x79\x52\x65\x63\x6f\x72\x64\x73':_0xb8f2b4,'\x6b\x65\x65\x70\x52\x65\x63\x6f\x72\x64\x73':_0x46d9e2,'\x6d\x69\x6e\x43\x75\x72\x73\x6f\x72':_0x4cd06f,'\x63\x75\x72\x73\x6f\x72\x73':_0x480c69,'\x6f\x76\x65\x72\x6c\x61\x70\x52\x65\x63\x6f\x72\x64\x73':_0x50faae[_0x56ed82(0x2f5,'\x5e\x71\x38\x40')],'\x77\x6f\x75\x6c\x64\x41\x72\x63\x68\x69\x76\x65':_0x205ffb,'\x72\x65\x74\x61\x69\x6e\x65\x64\x52\x65\x63\x6f\x72\x64\x73':_0x50faae[_0x56ed82(0x313,'\x24\x4b\x63\x26')+_0x56ed82(0x18a,'\x79\x43\x6f\x73')][_0x56ed82(0x2a1,'\x45\x4f\x32\x50')]-_0x205ffb,'\x61\x72\x63\x68\x69\x76\x65\x49\x64':_0x205ffb===0xb23*-0x2+-0x1*0x133b+-0x19*-0x1a9?null:_0x71a4db+'\x2d'+_0x3316cd};}export function archiveMaterialStore(_0x2abc6f){const _0x13f2a9=_0x406e2b,_0xcf8cf0=normalizeKeepRecords(_0x2abc6f[_0x13f2a9(0x1cd,'\x26\x35\x4a\x50')+_0x13f2a9(0x1e0,'\x78\x78\x5b\x48')]),_0x82933c=_0x2abc6f[_0x13f2a9(0x1c3,'\x38\x78\x5d\x4d')]+_0x13f2a9(0x2b3,'\x78\x78\x5b\x48');mkdirSync(dirname(_0x2abc6f[_0x13f2a9(0x279,'\x25\x62\x23\x26')]),{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]}),acquireLock(_0x82933c);try{if('\x4e\x56\x6d\x4e\x6f'===_0x13f2a9(0x1ba,'\x79\x77\x63\x32')){const _0x5b58a9=readStrictHistory(_0x2abc6f[_0x13f2a9(0x2cb,'\x4b\x48\x5b\x6f')]),_0x39e294=_0x5b58a9[_0x13f2a9(0x269,'\x59\x47\x34\x4e')]['\x6c\x65\x6e\x67\x74\x68']+_0x5b58a9[_0x13f2a9(0x188,'\x38\x37\x4e\x33')+_0x13f2a9(0x22e,'\x45\x77\x67\x64')][_0x13f2a9(0x199,'\x5b\x70\x38\x4a')],_0x14cdc1=readCursorsStrict(_0x2abc6f[_0x13f2a9(0x228,'\x45\x55\x4d\x24')+_0x13f2a9(0x1a2,'\x69\x72\x43\x5e')]??[],_0x39e294),_0x12c71e=minimumCursor(_0x14cdc1,_0x5b58a9[_0x13f2a9(0x31a,'\x78\x79\x25\x51')][_0x13f2a9(0x2ff,'\x79\x77\x63\x32')]),_0x168907=archiveableCount(_0x5b58a9,_0x12c71e,_0xcf8cf0),_0x30d330=_0x5b58a9[_0x13f2a9(0x1c1,'\x4c\x58\x70\x78')][_0x13f2a9(0x1c8,'\x31\x6e\x6d\x79')],_0xda5b12=_0x30d330+_0x168907-(0x2*-0x10bd+0x16c+0x200f),_0x5986b0=_0x168907===0x264e+0x1*0x1f9e+-0x45ec?null:_0x30d330+'\x2d'+_0xda5b12;if(_0x168907>-0x12a7+0x224f*-0x1+0x34f6){const _0x35e83c=_0x5b58a9[_0x13f2a9(0x1e8,'\x65\x4c\x50\x43')+_0x13f2a9(0x1e6,'\x56\x52\x74\x39')][_0x13f2a9(0x30f,'\x4e\x5b\x5b\x43')](0xd21+0x1*0x392+-0x10b3,_0x168907),_0x3c4d96=materialArchiveDir(_0x2abc6f[_0x13f2a9(0x2af,'\x56\x52\x74\x39')]);mkdirSync(_0x3c4d96,{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]});const _0x2e5191=join(_0x3c4d96,materialArchiveSegmentName(_0x30d330,_0xda5b12)),_0x1602cb=serializeLines(_0x35e83c);if(existsSync(_0x2e5191)){if(readFileSync(_0x2e5191,_0x13f2a9(0x26f,'\x26\x24\x40\x54'))!==_0x1602cb)throw new MaterialArchiveSegmentConflictError(_0x5986b0??_0x30d330+'\x2d'+_0xda5b12);}else durableReplace(_0x2e5191+_0x13f2a9(0x1e9,'\x6f\x52\x76\x77'),_0x2e5191,_0x1602cb),fsyncDirectoryBestEffort(_0x3c4d96);}const _0x7635ce=_0x5b58a9[_0x13f2a9(0x2c5,'\x76\x26\x68\x72')+_0x13f2a9(0x315,'\x79\x77\x63\x32')][_0x13f2a9(0x2fe,'\x5b\x70\x38\x4a')](_0x168907);return(_0x168907>-0x3*-0x1ad+0xdc4+-0x12cb||_0x5b58a9[_0x13f2a9(0x2d7,'\x62\x34\x44\x35')]>-0xb65*-0x1+-0x14e1+0x2*0x4be)&&(durableReplace(_0x2abc6f[_0x13f2a9(0x27a,'\x38\x75\x24\x47')]+(_0x13f2a9(0x1d5,'\x69\x72\x43\x5e')+_0x13f2a9(0x1e9,'\x6f\x52\x76\x77')),_0x2abc6f[_0x13f2a9(0x1b2,'\x69\x72\x43\x5e')],serializeLines(_0x7635ce)),fsyncDirectoryBestEffort(dirname(_0x2abc6f[_0x13f2a9(0x268,'\x45\x79\x78\x24')]))),{'\x6d\x6f\x64\x65':_0x13f2a9(0x22d,'\x7a\x43\x69\x44'),'\x61\x63\x74\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73\x42\x65\x66\x6f\x72\x65':_0x5b58a9[_0x13f2a9(0x23e,'\x79\x77\x63\x32')+'\x63\x74\x69\x76\x65'][_0x13f2a9(0x1a9,'\x25\x62\x23\x26')],'\x70\x68\x79\x73\x69\x63\x61\x6c\x41\x63\x74\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73\x42\x65\x66\x6f\x72\x65':_0x5b58a9[_0x13f2a9(0x29f,'\x68\x41\x46\x4c')][_0x13f2a9(0x1da,'\x65\x4c\x50\x43')],'\x6b\x65\x65\x70\x52\x65\x63\x6f\x72\x64\x73':_0xcf8cf0,'\x6d\x69\x6e\x43\x75\x72\x73\x6f\x72':_0x12c71e,'\x63\x75\x72\x73\x6f\x72\x73':_0x14cdc1,'\x61\x72\x63\x68\x69\x76\x65\x64\x52\x65\x63\x6f\x72\x64\x73':_0x168907,'\x72\x65\x74\x61\x69\x6e\x65\x64\x52\x65\x63\x6f\x72\x64\x73':_0x7635ce[_0x13f2a9(0x1f9,'\x4c\x58\x70\x78')],'\x61\x72\x63\x68\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x5b58a9[_0x13f2a9(0x272,'\x5e\x71\x38\x40')]['\x6c\x65\x6e\x67\x74\x68']+_0x168907,'\x68\x69\x73\x74\x6f\x72\x79\x52\x65\x63\x6f\x72\x64\x73':_0x39e294,'\x72\x65\x63\x6f\x76\x65\x72\x65\x64\x4f\x76\x65\x72\x6c\x61\x70':_0x5b58a9[_0x13f2a9(0x1e4,'\x31\x6e\x6d\x79')],'\x61\x72\x63\x68\x69\x76\x65\x49\x64':_0x5986b0};}else _0x5001be[_0x13f2a9(0x1ad,'\x23\x6d\x62\x32')]({'\x72\x65\x63\x6f\x72\x64':_0x4ef114['\x70\x61\x72\x73\x65'](_0x103808[_0x13f2a9(0x2a7,'\x26\x35\x4a\x50')](_0x2ca21f)),'\x72\x61\x77':_0x5bd105});}finally{_0x13f2a9(0x2ea,'\x31\x30\x39\x78')!==_0x13f2a9(0x2f8,'\x68\x41\x46\x4c')?releaseLock(_0x82933c):(_0x2f2662(_0x3d6d59[_0x13f2a9(0x286,'\x53\x30\x61\x28')]+(_0x13f2a9(0x2d0,'\x31\x6e\x6d\x79')+_0x13f2a9(0x2c3,'\x23\x30\x7a\x4f')),_0x5e267e[_0x13f2a9(0x278,'\x26\x35\x4a\x50')],_0x418a3f(_0x35eff7)),_0xbede30(_0x4859b2(_0x226161[_0x13f2a9(0x223,'\x77\x28\x67\x31')])));}}export function readMaterialHistory(_0x1a9313){const _0x417fa2=_0x406e2b,_0x2db515=readMaterialsLenient(_0x1a9313),_0x582f2a=[],_0x101d3a=new Map(),_0x150b79=materialArchiveDir(_0x1a9313);for(const _0x17fe87 of segmentDescriptors(_0x150b79)){if(_0x417fa2(0x1a7,'\x44\x55\x46\x49')!==_0x417fa2(0x1eb,'\x78\x78\x5b\x48'))for(const _0x336be0 of readMaterialsLenient(join(_0x150b79,_0x17fe87[_0x417fa2(0x1ee,'\x6b\x31\x68\x37')]))){if(_0x101d3a[_0x417fa2(0x2d8,'\x79\x43\x6f\x73')](_0x336be0[_0x417fa2(0x2c8,'\x45\x4f\x32\x50')+'\x49\x64']))continue;_0x101d3a[_0x417fa2(0x22f,'\x79\x77\x63\x32')](_0x336be0[_0x417fa2(0x2d1,'\x5e\x25\x51\x48')+'\x49\x64'],_0x582f2a[_0x417fa2(0x231,'\x38\x75\x24\x47')]),_0x582f2a[_0x417fa2(0x219,'\x4f\x63\x75\x6f')](_0x336be0);}else throw new _0x4afc42(_0x417fa2(0x275,'\x56\x52\x74\x39')+'\x69\x6c\x65\x20\x69\x73\x20\x6e'+_0x417fa2(0x1af,'\x4a\x54\x45\x45')+_0x417fa2(0x1a3,'\x4e\x5b\x5b\x43'));}for(const _0x40cd69 of _0x2db515){const _0x418ad0=_0x101d3a[_0x417fa2(0x1f2,'\x77\x28\x67\x31')](_0x40cd69[_0x417fa2(0x190,'\x69\x72\x43\x5e')+'\x49\x64']);_0x418ad0===undefined?(_0x101d3a[_0x417fa2(0x2cd,'\x76\x26\x68\x72')](_0x40cd69[_0x417fa2(0x1fa,'\x59\x47\x34\x4e')+'\x49\x64'],_0x582f2a[_0x417fa2(0x317,'\x24\x4b\x63\x26')]),_0x582f2a[_0x417fa2(0x289,'\x6b\x31\x68\x37')](_0x40cd69)):_0x582f2a[_0x418ad0]=_0x40cd69;}return _0x582f2a;}export function readMaterialRange(_0x5ee32d,_0x355870,_0xe6a996){const _0x3a9cf5=_0x406e2b,_0x43e08e=normalizeRangeStart(_0x355870),_0x499874=normalizeRangeCount(_0xe6a996);if(_0x499874===-0x24b9+-0x2*0x69f+0x31f7)return[];const _0x1cb361=readMaterialsLenient(_0x5ee32d),_0x30cbc6=materialArchiveDir(_0x5ee32d),_0x54f53a=segmentDescriptors(_0x30cbc6);if(_0x54f53a['\x6c\x65\x6e\x67\x74\x68']===-0x1170+-0x1*-0x964+0x80c)return _0x1cb361[_0x3a9cf5(0x1b4,'\x5e\x71\x38\x40')](_0x43e08e,_0x43e08e+_0x499874);const _0x1d283f=Math[_0x3a9cf5(0x210,'\x77\x74\x38\x6e')](..._0x54f53a[_0x3a9cf5(0x24d,'\x23\x30\x7a\x4f')](_0x4e1e60=>_0x4e1e60[_0x3a9cf5(0x1bd,'\x5e\x71\x38\x40')])),_0x273bcb=Math['\x6d\x69\x6e'](Number[_0x3a9cf5(0x204,'\x78\x38\x42\x6d')+_0x3a9cf5(0x1fc,'\x26\x24\x40\x54')],_0x43e08e+_0x499874-(-0xd6*-0x17+0x308+-0x3*0x76b)),_0x5883f0=new Map();for(const _0x5a15ce of _0x54f53a){if(_0x5a15ce[_0x3a9cf5(0x267,'\x45\x55\x4d\x24')]<_0x43e08e||_0x5a15ce[_0x3a9cf5(0x1dd,'\x68\x41\x46\x4c')]>_0x273bcb)continue;const _0x21f124=readMaterialsLenient(join(_0x30cbc6,_0x5a15ce[_0x3a9cf5(0x1bf,'\x4c\x58\x70\x78')]));for(let _0x10dc0b=0xd*0xc1+-0x1acd*-0x1+-0x249a;_0x10dc0b<_0x21f124[_0x3a9cf5(0x23c,'\x59\x47\x34\x4e')];_0x10dc0b+=0x92e+0xb*0x192+-0x1a73){if(_0x3a9cf5(0x252,'\x38\x75\x24\x47')===_0x3a9cf5(0x271,'\x5e\x25\x51\x48')){const _0x46496e=_0x5a15ce[_0x3a9cf5(0x2aa,'\x26\x24\x40\x54')]+_0x10dc0b;_0x46496e>=_0x43e08e&&_0x46496e<=_0x273bcb&&!_0x5883f0[_0x3a9cf5(0x277,'\x4b\x48\x5b\x6f')](_0x46496e)&&_0x5883f0[_0x3a9cf5(0x21c,'\x35\x31\x6c\x58')](_0x46496e,_0x21f124[_0x10dc0b]);}else throw new _0x5eac88(_0x19c9f4+(0x26c6+0x57*0x1+-0x271c),_0x3a9cf5(0x251,'\x56\x52\x74\x39')+_0x3a9cf5(0x262,'\x45\x77\x67\x64')+_0x3a9cf5(0x1fa,'\x59\x47\x34\x4e')+_0x3a9cf5(0x2b9,'\x78\x38\x42\x6d'));}}if(_0x273bcb>_0x1d283f){if(_0x3a9cf5(0x1ab,'\x44\x55\x46\x49')===_0x3a9cf5(0x27f,'\x59\x47\x34\x4e')){const _0x135627=detectOperationalOverlap(_0x5ee32d,_0x54f53a,_0x1cb361),_0xb1a87c=_0x1cb361[_0x3a9cf5(0x2de,'\x45\x36\x33\x4d')](_0x135627),_0x11d336=_0x1d283f+(-0xcf2+-0xfd8+0x1ccb);for(let _0x162142=0x1aab+0xff7+0x2*-0x1551;_0x162142<_0xb1a87c['\x6c\x65\x6e\x67\x74\x68'];_0x162142+=-0x36a*0x7+0x3*-0x478+0x254f){if(_0x3a9cf5(0x2e7,'\x53\x30\x61\x28')!==_0x3a9cf5(0x23d,'\x56\x76\x54\x25')){const _0x1ff531=_0x11d336+_0x162142;if(_0x1ff531>=_0x43e08e&&_0x1ff531<=_0x273bcb)_0x5883f0[_0x3a9cf5(0x2e3,'\x6f\x52\x76\x77')](_0x1ff531,_0xb1a87c[_0x162142]);}else _0x409b6c(_0x79e853+_0x3a9cf5(0x30e,'\x45\x4f\x32\x50'),_0x26b534,_0x30cd2b),_0x2e3cd8(_0x55e882);}}else{const _0xc1404a=_0x30d002(_0x279246(_0x1b463d)),_0x190205=_0x4bc219(_0x495425),_0x47ac57=_0xd6c003(_0xc1404a,_0x190205),_0xc4d21b=_0x190205[_0x3a9cf5(0x2b6,'\x59\x47\x34\x4e')](_0x47ac57),_0x11edcb=new _0x4a7fe1();for(const _0x21fc54 of[..._0xc1404a,..._0xc4d21b]){const _0x440da1=_0x26aae2[_0x3a9cf5(0x222,'\x56\x76\x54\x25')+'\x79'](_0x21fc54[_0x3a9cf5(0x2ca,'\x4a\x54\x45\x45')]),_0x4c79f8=_0x11edcb[_0x3a9cf5(0x300,'\x45\x77\x67\x64')](_0x21fc54[_0x3a9cf5(0x2f2,'\x79\x43\x6f\x73')][_0x3a9cf5(0x221,'\x78\x79\x25\x51')+'\x49\x64']);if(_0x4c79f8!==_0x1a50a0){if(_0x4c79f8!==_0x440da1)throw new _0x300cb8(_0x21fc54[_0x3a9cf5(0x2b0,'\x38\x78\x5d\x4d')][_0x3a9cf5(0x2ba,'\x44\x55\x46\x49')+'\x49\x64']);throw new _0x3b6e48('\x64\x75\x70\x6c\x69\x63\x61\x74'+'\x65\x20\x6d\x61\x74\x65\x72\x69'+_0x3a9cf5(0x250,'\x56\x76\x54\x25')+_0x21fc54[_0x3a9cf5(0x2a2,'\x7a\x43\x69\x44')][_0x3a9cf5(0x28f,'\x4c\x58\x70\x78')+'\x49\x64']);}_0x11edcb[_0x3a9cf5(0x2e3,'\x6f\x52\x76\x77')](_0x21fc54['\x72\x65\x63\x6f\x72\x64'][_0x3a9cf5(0x224,'\x4b\x48\x5b\x6f')+'\x49\x64'],_0x440da1);}return{'\x61\x72\x63\x68\x69\x76\x65':_0xc1404a,'\x61\x63\x74\x69\x76\x65':_0x190205,'\x6c\x6f\x67\x69\x63\x61\x6c\x41\x63\x74\x69\x76\x65':_0xc4d21b,'\x6f\x76\x65\x72\x6c\x61\x70':_0x47ac57};}}return[..._0x5883f0[_0x3a9cf5(0x22b,'\x40\x64\x26\x40')]()][_0x3a9cf5(0x226,'\x69\x72\x43\x5e')](([_0x52904f],[_0x397503])=>_0x52904f-_0x397503)[_0x3a9cf5(0x1b6,'\x44\x55\x46\x49')](([,_0x47ace7])=>_0x47ace7);}export function inspectMaterialArchive(_0x2a6b44){const _0x4be6de=_0x406e2b,_0x55f91c=materialArchiveDir(_0x2a6b44),_0x7a6ece=segmentDescriptors(_0x55f91c);let _0x44e9d9=0x1066+0xc35+0x3*-0x989,_0x336057=-0x189a+0x1ee+0x1*0x16ac,_0x16a78a=0x111+0xc9f+0x6*-0x248;for(const _0x8a4d9e of _0x7a6ece){const _0x2703e5=join(_0x55f91c,_0x8a4d9e[_0x4be6de(0x2f6,'\x45\x4f\x32\x50')]);_0x44e9d9+=statSync(_0x2703e5)[_0x4be6de(0x283,'\x77\x74\x38\x6e')];for(const _0x4f093e of readFileSync(_0x2703e5,_0x4be6de(0x238,'\x4e\x5b\x5b\x43'))[_0x4be6de(0x284,'\x4b\x48\x5b\x6f')]('\x0a')){if(_0x4be6de(0x25e,'\x26\x35\x4a\x50')!==_0x4be6de(0x1c2,'\x23\x6d\x62\x32')){if(_0x4f093e['\x6c\x65\x6e\x67\x74\x68']===0x266e+0x1*0xce3+-0x3*0x111b)continue;try{'\x6e\x4b\x6b\x44\x58'!==_0x4be6de(0x2a5,'\x45\x4f\x32\x50')?(_0x24d5e3=_0x48ba7c(_0x3a8872,'\x72'),_0xa8b027(_0x1f6462)):(material['\x70\x61\x72\x73\x65'](JSON[_0x4be6de(0x2c9,'\x45\x77\x67\x64')](_0x4f093e)),_0x336057+=-0xdce+-0xba9+0x1978);}catch{_0x16a78a+=-0x245f*0x1+0x32e*0x1+0x2132;}}else return _0x4be6de(0x1fa,'\x59\x47\x34\x4e')+'\x2d'+_0x1bcc38(_0x53e2e9)[_0x4be6de(0x1be,'\x26\x35\x4a\x50')](-0x83e+-0x18d*0xc+0x1aea,'\x30')+'\x2d'+_0x9b04e5(_0x55084e)[_0x4be6de(0x243,'\x45\x36\x33\x4d')](0x2*-0xfbb+0x3*-0x2aa+0x9e1*0x4,'\x30')+_0x4be6de(0x26d,'\x44\x55\x46\x49');}}return{'\x65\x78\x69\x73\x74\x73':_0x7a6ece[_0x4be6de(0x294,'\x62\x34\x44\x35')]>-0x788+0x4f*0x7+0x55f,'\x73\x65\x67\x6d\x65\x6e\x74\x73':_0x7a6ece[_0x4be6de(0x298,'\x79\x43\x6f\x73')],'\x62\x79\x74\x65\x73':_0x44e9d9,'\x72\x65\x63\x6f\x72\x64\x73':_0x336057,'\x69\x6e\x76\x61\x6c\x69\x64\x4c\x69\x6e\x65\x73':_0x16a78a,'\x66\x69\x72\x73\x74\x4f\x66\x66\x73\x65\x74':_0x7a6ece[-0xa4*-0xd+-0x763*-0x5+-0x2d43*0x1]?.[_0x4be6de(0x201,'\x76\x26\x68\x72')]??null,'\x6c\x61\x73\x74\x4f\x66\x66\x73\x65\x74':_0x7a6ece[_0x7a6ece[_0x4be6de(0x294,'\x62\x34\x44\x35')]-(0x2*0x10b0+-0x9*0x65+-0xee9*0x2)]?.[_0x4be6de(0x2fd,'\x56\x76\x54\x25')]??null};}function _0x5288(){const _0xbd8680=['\x74\x48\x57\x7a\x6e\x53\x6b\x78\x57\x4f\x37\x63\x4e\x66\x30','\x75\x68\x6d\x4b\x61\x75\x2f\x64\x49\x6d\x6f\x44\x57\x50\x6d\x33\x68\x72\x75\x6f\x6e\x47','\x7a\x68\x42\x64\x48\x65\x64\x64\x4c\x47','\x57\x35\x79\x5a\x57\x52\x57','\x69\x38\x6f\x32\x75\x38\x6f\x67\x57\x50\x56\x64\x56\x5a\x7a\x45','\x57\x34\x74\x64\x55\x72\x78\x63\x52\x33\x61','\x57\x52\x62\x56\x57\x34\x66\x6e\x57\x4f\x4a\x64\x55\x53\x6b\x41\x57\x51\x38\x58\x65\x38\x6f\x31\x57\x51\x2f\x64\x47\x61','\x57\x37\x69\x59\x72\x31\x53\x51\x6e\x33\x42\x63\x51\x57','\x57\x52\x47\x6f\x57\x35\x71','\x57\x50\x70\x63\x4e\x33\x47','\x57\x36\x48\x45\x65\x4d\x57','\x57\x34\x58\x32\x57\x36\x38\x4c\x6b\x47\x43\x51\x57\x35\x57','\x6b\x38\x6f\x32\x66\x47','\x7a\x67\x76\x69\x57\x37\x79\x34\x66\x59\x62\x44','\x6b\x43\x6b\x69\x57\x35\x66\x2f\x6b\x71','\x43\x43\x6b\x62\x42\x38\x6b\x6f\x70\x64\x46\x64\x4e\x32\x30','\x6b\x43\x6f\x53\x6d\x31\x47\x53\x70\x75\x71\x6a','\x57\x52\x44\x74\x57\x34\x6c\x64\x52\x53\x6b\x55\x57\x52\x56\x64\x4c\x53\x6f\x47\x57\x51\x5a\x63\x53\x31\x68\x64\x4f\x38\x6b\x70','\x6b\x6d\x6f\x47\x57\x4f\x46\x64\x4b\x53\x6b\x66\x57\x35\x35\x42','\x57\x4f\x5a\x63\x4f\x43\x6b\x6f','\x79\x72\x5a\x64\x4f\x38\x6b\x38\x6d\x65\x42\x63\x4d\x43\x6f\x31\x6c\x6d\x6f\x46\x57\x37\x53\x6e\x57\x50\x4f','\x57\x4f\x46\x64\x50\x38\x6f\x36','\x57\x51\x68\x63\x52\x65\x4e\x63\x4e\x62\x30\x4f\x57\x4f\x33\x64\x49\x71','\x57\x4f\x70\x64\x55\x4b\x42\x64\x4f\x43\x6f\x59\x57\x52\x75','\x57\x51\x38\x69\x57\x4f\x70\x63\x4b\x6d\x6b\x36\x75\x62\x54\x76','\x44\x33\x46\x64\x4e\x4c\x34','\x57\x52\x37\x64\x4b\x53\x6f\x66\x57\x52\x38\x7a','\x63\x38\x6f\x48\x57\x4f\x34','\x45\x38\x6f\x32\x57\x4f\x78\x64\x4d\x6d\x6b\x6e\x57\x35\x76\x62\x57\x4f\x4b','\x57\x4f\x61\x6b\x42\x4b\x62\x4a\x61\x73\x70\x64\x4a\x6d\x6f\x32\x57\x34\x4b\x59\x57\x35\x68\x64\x53\x47','\x57\x52\x66\x55\x76\x38\x6f\x32\x74\x71\x72\x61\x71\x61','\x57\x52\x4a\x63\x4d\x38\x6b\x38\x57\x37\x75','\x57\x35\x79\x53\x57\x36\x74\x64\x48\x38\x6f\x56\x57\x52\x39\x77\x57\x4f\x38','\x57\x37\x31\x69\x75\x43\x6b\x50\x6f\x6d\x6b\x77\x72\x6d\x6b\x43','\x6a\x65\x37\x63\x54\x6d\x6f\x42\x44\x48\x37\x64\x4e\x38\x6f\x72','\x57\x4f\x46\x64\x54\x31\x79','\x65\x4e\x76\x30\x69\x57','\x57\x37\x30\x36\x57\x52\x4c\x4d\x57\x51\x42\x64\x47\x6d\x6f\x71','\x57\x34\x2f\x64\x4a\x38\x6b\x49\x57\x4f\x65','\x57\x51\x68\x63\x56\x75\x46\x63\x4e\x62\x57\x48\x57\x50\x56\x64\x47\x57','\x6d\x53\x6f\x4e\x6a\x4c\x79\x59\x6d\x61','\x46\x53\x6b\x52\x41\x53\x6f\x6d\x45\x43\x6b\x56','\x6b\x6d\x6f\x43\x6c\x4a\x31\x55','\x65\x53\x6f\x4f\x63\x53\x6b\x34','\x6c\x4a\x7a\x59\x77\x47\x38','\x44\x48\x43\x63\x6f\x38\x6b\x49','\x6f\x53\x6f\x33\x57\x4f\x70\x64\x4c\x38\x6b\x6a\x57\x34\x7a\x6b','\x57\x51\x38\x63\x57\x50\x4a\x63\x4c\x6d\x6b\x4f\x75\x57\x62\x6f','\x57\x52\x44\x34\x76\x53\x6f\x2f\x67\x71\x6d','\x42\x4e\x35\x6d\x57\x36\x71\x37\x64\x67\x71\x42','\x76\x38\x6f\x36\x7a\x38\x6f\x4f\x6a\x49\x78\x63\x47\x77\x4f','\x6b\x6d\x6f\x4a\x6e\x47','\x57\x50\x33\x64\x49\x53\x6f\x73\x57\x52\x57','\x6a\x65\x37\x63\x50\x6d\x6f\x47','\x63\x6d\x6b\x6d\x57\x34\x48\x37','\x6a\x30\x70\x63\x55\x43\x6f\x52\x7a\x57','\x57\x52\x31\x58\x76\x38\x6f\x33\x68\x57','\x6f\x65\x42\x63\x56\x53\x6f\x54','\x57\x37\x79\x4e\x73\x76\x79\x54\x6e\x76\x61','\x57\x36\x4b\x67\x57\x50\x35\x42\x57\x50\x47','\x57\x4f\x4f\x54\x7a\x32\x6c\x64\x4e\x61\x46\x64\x54\x47','\x61\x38\x6b\x6a\x63\x43\x6b\x6a\x57\x35\x47\x31\x57\x51\x35\x7a','\x79\x77\x72\x7a\x57\x37\x34\x33\x68\x59\x47\x38','\x74\x43\x6f\x39\x41\x38\x6f\x53','\x6d\x38\x6f\x59\x6b\x76\x61\x30','\x6f\x38\x6f\x56\x6f\x59\x39\x79','\x57\x34\x66\x41\x69\x58\x34','\x57\x51\x75\x70\x57\x4f\x61','\x72\x62\x30\x30\x57\x34\x44\x2b','\x67\x53\x6f\x34\x57\x35\x33\x64\x4f\x47','\x57\x52\x4b\x45\x42\x61','\x57\x4f\x68\x63\x56\x53\x6f\x37\x57\x35\x38','\x57\x34\x47\x32\x57\x36\x37\x63\x4b\x31\x79','\x62\x73\x62\x4f\x76\x57\x74\x63\x4c\x38\x6b\x6b\x57\x4f\x43','\x57\x35\x37\x63\x4d\x38\x6b\x77\x57\x36\x76\x69\x57\x36\x66\x36\x57\x35\x70\x63\x50\x6d\x6b\x77\x57\x34\x6e\x2f\x57\x35\x43','\x73\x64\x53\x57\x57\x35\x76\x37\x6c\x61\x52\x64\x55\x57','\x57\x52\x47\x41\x42\x57','\x57\x37\x31\x6c\x72\x53\x6f\x51\x6d\x43\x6f\x46\x71\x53\x6b\x77','\x57\x52\x64\x63\x4b\x38\x6b\x39\x57\x37\x75','\x57\x34\x6e\x54\x57\x36\x65\x36\x6c\x61','\x43\x65\x56\x64\x4e\x53\x6b\x75\x75\x74\x79','\x57\x4f\x33\x63\x4a\x4d\x74\x63\x55\x59\x34','\x57\x35\x39\x45\x61\x78\x30\x6e','\x44\x65\x33\x63\x50\x43\x6f\x38\x69\x48\x4e\x64\x47\x53\x6f\x71','\x57\x35\x4a\x64\x48\x71\x4a\x63\x53\x4b\x33\x63\x50\x71','\x57\x4f\x56\x63\x49\x4d\x37\x64\x51\x47','\x6f\x43\x6f\x31\x72\x6d\x6b\x73','\x57\x51\x46\x64\x51\x6d\x6f\x4d','\x42\x4d\x72\x41\x57\x37\x69','\x57\x52\x7a\x6d\x72\x53\x6b\x36\x61\x53\x6b\x41\x75\x43\x6b\x77','\x41\x53\x6f\x2f\x74\x53\x6b\x70\x57\x4f\x78\x64\x56\x4a\x79\x6b','\x57\x52\x46\x63\x4d\x43\x6b\x4c\x57\x37\x4e\x63\x52\x74\x69','\x66\x38\x6f\x35\x6b\x43\x6f\x4f\x61\x47','\x57\x36\x4f\x63\x57\x50\x5a\x63\x56\x53\x6f\x55\x57\x36\x65','\x57\x51\x42\x64\x51\x6d\x6f\x58\x6e\x63\x44\x61','\x73\x74\x75\x4a\x57\x35\x4c\x51\x6a\x61\x46\x64\x4c\x47','\x57\x52\x7a\x30\x76\x47','\x57\x36\x47\x53\x57\x50\x4e\x63\x4e\x43\x6f\x63','\x6d\x4c\x33\x63\x48\x6d\x6f\x2f\x42\x57','\x57\x50\x33\x64\x49\x53\x6f\x75\x57\x51\x43\x44','\x42\x65\x2f\x64\x47\x53\x6b\x61\x71\x61','\x6e\x57\x48\x73\x7a\x64\x46\x63\x53\x53\x6b\x49\x57\x51\x38','\x66\x6d\x6f\x4f\x64\x43\x6f\x59\x6d\x57','\x71\x4d\x7a\x4c\x6b\x6d\x6b\x77\x69\x6d\x6f\x54\x57\x52\x61','\x57\x36\x38\x37\x77\x4b\x6d\x48','\x57\x52\x46\x64\x55\x43\x6f\x37\x6c\x74\x61','\x57\x50\x68\x64\x4f\x53\x6b\x55\x6a\x65\x4c\x42\x57\x36\x37\x64\x4e\x61','\x46\x77\x50\x6b\x57\x37\x38','\x57\x34\x4f\x59\x57\x37\x2f\x63\x4a\x30\x65\x6f','\x63\x6d\x6b\x6d\x57\x34\x35\x47\x66\x71','\x57\x4f\x52\x64\x52\x53\x6b\x30\x6b\x58\x31\x78','\x57\x4f\x46\x64\x49\x53\x6b\x48\x57\x4f\x44\x4d','\x57\x4f\x2f\x64\x50\x43\x6b\x2f\x42\x61','\x57\x35\x37\x63\x4c\x33\x56\x64\x53\x4a\x75\x79\x57\x51\x42\x64\x53\x57','\x57\x36\x38\x4b\x57\x52\x6e\x54\x57\x51\x4f','\x78\x53\x6f\x72\x76\x6d\x6b\x46\x57\x4f\x39\x35\x57\x52\x35\x4b\x57\x52\x4a\x63\x4d\x74\x6a\x5a\x57\x35\x69','\x57\x35\x52\x64\x49\x53\x6b\x4e\x57\x4f\x44\x4f','\x6a\x33\x68\x64\x4a\x4c\x37\x64\x4c\x4c\x37\x63\x4f\x57','\x70\x43\x6b\x47\x42\x43\x6f\x67\x7a\x43\x6b\x51\x6c\x74\x61','\x57\x52\x56\x64\x56\x38\x6f\x52\x45\x5a\x44\x6c\x57\x35\x53\x6e','\x57\x4f\x74\x64\x4d\x6d\x6f\x31\x57\x52\x75\x45\x57\x52\x69\x68\x57\x35\x57','\x57\x34\x4c\x33\x57\x37\x34\x54\x6a\x71\x38\x49\x57\x52\x30','\x57\x34\x4f\x55\x57\x36\x68\x64\x49\x57','\x57\x34\x65\x33\x57\x37\x5a\x64\x49\x38\x6f\x36\x57\x51\x35\x32\x57\x50\x4b','\x46\x78\x35\x6e\x57\x37\x38','\x57\x4f\x70\x64\x52\x76\x46\x64\x55\x53\x6f\x54\x57\x52\x68\x64\x4e\x72\x65','\x57\x50\x6c\x64\x52\x65\x68\x64\x4f\x61','\x57\x35\x64\x63\x49\x4d\x78\x63\x4f\x47','\x57\x51\x74\x64\x4e\x38\x6f\x50\x57\x52\x43\x6b','\x57\x37\x53\x36\x74\x76\x43\x4e\x69\x4c\x4e\x63\x48\x71','\x57\x34\x38\x4c\x77\x65\x34\x32\x68\x53\x6f\x61\x78\x71','\x7a\x53\x6f\x34\x46\x43\x6f\x65\x6b\x71','\x57\x36\x53\x67\x57\x4f\x42\x63\x56\x6d\x6f\x4f\x57\x36\x64\x63\x4a\x38\x6f\x6b','\x57\x51\x54\x38\x73\x53\x6f\x52\x63\x61','\x6a\x38\x6b\x48\x57\x36\x31\x76\x41\x49\x4f','\x6d\x6d\x6f\x4a\x6d\x76\x65','\x76\x4a\x75\x32\x57\x34\x71','\x57\x36\x71\x57\x78\x47','\x57\x34\x42\x64\x55\x6d\x6b\x35\x6a\x61\x58\x73\x57\x36\x79','\x57\x52\x34\x39\x76\x43\x6f\x35\x67\x71\x35\x61\x63\x71','\x57\x35\x52\x63\x51\x38\x6f\x56\x57\x4f\x74\x63\x4a\x68\x38\x77\x57\x36\x53','\x73\x48\x6d\x42\x6d\x53\x6b\x6a\x57\x4f\x37\x63\x4d\x72\x65','\x57\x4f\x52\x64\x4f\x53\x6b\x30\x6b\x71','\x57\x4f\x72\x43\x41\x53\x6f\x42\x6a\x73\x6a\x4b\x6a\x71','\x73\x63\x48\x56\x65\x48\x4e\x63\x49\x38\x6b\x46\x57\x50\x47','\x57\x37\x75\x39\x57\x4f\x61\x6b\x57\x35\x38','\x6b\x43\x6f\x47\x57\x4f\x70\x64\x4b\x6d\x6b\x73\x57\x35\x71','\x43\x31\x4a\x64\x4c\x43\x6b\x62\x73\x74\x2f\x63\x52\x71','\x57\x35\x5a\x64\x47\x72\x75','\x57\x51\x74\x64\x55\x6d\x6f\x48\x6d\x57','\x6f\x4c\x79\x39\x57\x52\x7a\x67\x57\x36\x56\x63\x53\x6d\x6b\x48\x57\x34\x66\x56\x57\x35\x76\x47\x73\x71','\x62\x53\x6f\x2b\x65\x59\x4c\x79','\x57\x52\x6c\x63\x4c\x38\x6b\x49\x57\x37\x70\x63\x56\x47','\x77\x53\x6f\x48\x79\x43\x6f\x4c\x69\x59\x2f\x63\x48\x64\x34','\x57\x50\x78\x64\x50\x38\x6b\x5a\x6c\x57\x57','\x6c\x43\x6f\x73\x6f\x48\x48\x56\x70\x64\x56\x64\x53\x57','\x6f\x6d\x6f\x31\x72\x61','\x57\x50\x65\x49\x57\x52\x4e\x63\x52\x38\x6b\x6e\x45\x71','\x57\x37\x42\x63\x53\x6d\x6b\x63\x57\x35\x2f\x63\x4c\x71','\x43\x43\x6b\x71\x41\x71','\x57\x50\x6d\x30\x57\x52\x2f\x63\x54\x43\x6b\x75\x42\x4e\x6a\x33','\x57\x34\x53\x59\x57\x37\x56\x63\x4a\x76\x79\x65\x57\x50\x71','\x79\x38\x6b\x68\x46\x53\x6b\x70\x6f\x59\x42\x64\x4b\x57','\x57\x36\x76\x72\x65\x47\x79\x74','\x57\x35\x4a\x64\x4a\x57\x68\x63\x56\x66\x52\x63\x52\x6d\x6f\x72\x66\x71','\x57\x37\x47\x66\x57\x52\x6a\x62','\x74\x47\x7a\x41\x57\x35\x61\x4e','\x57\x52\x56\x63\x4d\x38\x6b\x4c\x57\x37\x78\x63\x51\x74\x37\x64\x4c\x43\x6f\x6d','\x7a\x67\x44\x42\x57\x52\x43\x39\x64\x77\x71\x74','\x57\x34\x5a\x64\x55\x65\x64\x64\x51\x38\x6f\x53\x57\x52\x4e\x64\x48\x5a\x75','\x57\x34\x30\x4a\x57\x37\x52\x64\x4d\x61','\x57\x4f\x56\x64\x51\x53\x6b\x55\x6b\x72\x54\x77\x57\x36\x42\x64\x4c\x47','\x62\x6d\x6f\x5a\x63\x6d\x6f\x4c','\x76\x73\x38\x33\x57\x35\x47','\x57\x34\x42\x64\x48\x71\x78\x63\x55\x4b\x56\x63\x51\x71','\x66\x53\x6b\x6c\x57\x35\x62\x36\x65\x38\x6b\x53\x57\x50\x54\x72','\x41\x4d\x70\x64\x4d\x76\x70\x64\x47\x76\x52\x63\x4f\x33\x47','\x6e\x6d\x6f\x5a\x57\x4f\x78\x64\x4a\x43\x6b\x6d\x57\x35\x66\x46','\x57\x36\x61\x6f\x57\x50\x37\x63\x56\x61','\x42\x4d\x5a\x64\x49\x62\x79','\x57\x4f\x2f\x63\x52\x6d\x6b\x6a\x57\x35\x56\x63\x4d\x61','\x57\x36\x4b\x72\x57\x50\x46\x63\x51\x38\x6f\x32\x57\x36\x4a\x63\x4e\x47','\x57\x36\x48\x65\x62\x68\x4f\x48\x57\x36\x74\x63\x4c\x43\x6f\x36','\x57\x50\x47\x52\x44\x4d\x70\x64\x4d\x58\x42\x64\x55\x53\x6f\x71','\x57\x34\x72\x58\x57\x4f\x30\x4e\x64\x33\x44\x46\x57\x34\x6d','\x6c\x38\x6f\x30\x75\x47','\x57\x51\x35\x66\x73\x53\x6b\x50\x6e\x71','\x57\x50\x57\x4b\x57\x51\x70\x63\x4f\x43\x6b\x70\x44\x61','\x57\x52\x58\x34\x74\x61','\x57\x36\x6e\x68\x57\x50\x2f\x63\x55\x6d\x6f\x55\x57\x36\x5a\x63\x4e\x6d\x6f\x70','\x64\x33\x76\x30\x6c\x53\x6b\x6c\x6f\x38\x6f\x4f\x57\x37\x71','\x57\x4f\x6d\x6c\x68\x63\x75\x4c\x43\x75\x74\x64\x4a\x47','\x70\x38\x6b\x33\x57\x36\x66\x75\x6f\x63\x66\x47\x57\x52\x75','\x57\x52\x72\x41\x43\x6d\x6b\x52\x6e\x53\x6b\x41\x45\x38\x6b\x78','\x57\x36\x38\x38\x57\x51\x48\x4e\x57\x51\x68\x64\x4b\x43\x6f\x43\x6e\x61','\x63\x38\x6f\x35\x61\x53\x6f\x4e\x6d\x58\x57','\x57\x37\x6d\x74\x57\x50\x74\x64\x4f\x71','\x57\x50\x37\x63\x47\x53\x6b\x67\x57\x52\x79\x6e\x57\x51\x6e\x55\x57\x35\x65','\x57\x50\x66\x41\x6a\x72\x75\x39\x75\x67\x78\x64\x55\x61','\x70\x53\x6b\x48\x57\x36\x54\x6b\x73\x49\x54\x58\x57\x37\x4f','\x42\x30\x46\x64\x48\x6d\x6b\x41\x75\x5a\x56\x64\x56\x73\x69','\x57\x35\x5a\x64\x54\x53\x6b\x6e\x57\x51\x48\x4e','\x57\x51\x47\x74\x57\x50\x2f\x63\x51\x71','\x57\x35\x4f\x47\x78\x75\x47\x39','\x6f\x53\x6f\x37\x71\x53\x6b\x6f','\x6a\x38\x6f\x37\x71\x53\x6b\x64\x57\x4f\x74\x64\x4f\x59\x72\x67','\x57\x52\x4a\x64\x51\x6d\x6f\x38\x70\x63\x66\x6d','\x57\x4f\x78\x63\x4f\x6d\x6b\x6e\x57\x4f\x68\x63\x4f\x53\x6b\x42\x57\x35\x39\x56','\x57\x4f\x4a\x63\x56\x43\x6b\x6a\x57\x4f\x64\x63\x51\x6d\x6b\x6d\x57\x35\x79','\x57\x50\x6d\x31\x57\x51\x74\x63\x53\x6d\x6b\x45','\x57\x52\x53\x7a\x57\x34\x75\x6a\x61\x43\x6f\x72\x70\x71','\x57\x4f\x78\x63\x51\x53\x6b\x65\x57\x4f\x2f\x63\x54\x43\x6b\x73','\x57\x52\x33\x64\x56\x53\x6b\x59\x6d\x4a\x54\x73\x57\x34\x38\x70','\x57\x50\x2f\x64\x4a\x53\x6f\x66\x57\x52\x53\x6b\x57\x52\x6d','\x57\x37\x38\x45\x57\x52\x31\x6d\x57\x37\x33\x64\x4b\x53\x6f\x79','\x64\x33\x76\x57','\x6d\x4b\x42\x63\x56\x6d\x6f\x54','\x57\x34\x76\x4e\x6e\x30\x75\x68\x57\x35\x69','\x6a\x38\x6b\x53\x57\x36\x35\x71\x6f\x6d\x6b\x72\x57\x4f\x48\x4d','\x57\x50\x6c\x64\x54\x4b\x68\x64\x4f\x43\x6f\x57\x57\x52\x4e\x64\x4e\x4a\x34','\x57\x35\x56\x64\x4a\x48\x6c\x63\x53\x66\x46\x63\x55\x71','\x57\x36\x66\x63\x67\x77\x44\x55\x57\x37\x4e\x64\x48\x38\x6b\x38','\x57\x37\x42\x63\x4d\x38\x6b\x4a\x57\x37\x70\x63\x53\x5a\x37\x64\x47\x53\x6f\x66','\x57\x35\x72\x64\x6a\x58\x6d\x32\x74\x78\x42\x64\x55\x71','\x72\x38\x6f\x56\x64\x38\x6f\x4f\x69\x48\x4e\x64\x4b\x47','\x57\x35\x52\x63\x51\x57\x52\x63\x55\x38\x6b\x39\x57\x36\x42\x63\x48\x59\x48\x59\x71\x53\x6f\x61\x57\x4f\x33\x63\x50\x61','\x72\x49\x6e\x7a\x57\x34\x71\x47\x57\x50\x64\x64\x49\x43\x6b\x52','\x57\x51\x79\x75\x46\x38\x6f\x30\x57\x36\x72\x42\x43\x38\x6b\x54','\x57\x52\x6c\x63\x4e\x53\x6f\x7a\x57\x4f\x6c\x63\x4f\x61','\x57\x35\x46\x64\x4c\x61\x2f\x63\x4f\x31\x57','\x44\x4d\x5a\x64\x56\x43\x6b\x4d\x41\x47','\x45\x38\x6f\x4b\x57\x4f\x37\x63\x4e\x38\x6b\x70\x57\x35\x6a\x66\x57\x50\x47','\x57\x52\x34\x70\x57\x51\x54\x77\x57\x36\x46\x64\x49\x38\x6f\x70\x73\x71','\x57\x4f\x37\x63\x51\x53\x6b\x45','\x57\x51\x42\x64\x51\x43\x6f\x48\x45\x5a\x48\x72\x57\x35\x30\x78','\x57\x34\x31\x34\x57\x37\x57\x50\x6f\x57\x38\x4e\x57\x37\x65','\x57\x51\x57\x7a\x57\x34\x38\x6b\x67\x6d\x6b\x75','\x69\x43\x6f\x57\x6a\x4c\x65\x50\x69\x4b\x76\x47','\x57\x50\x52\x63\x51\x38\x6f\x57\x57\x4f\x69','\x6d\x6d\x6b\x51\x57\x37\x50\x69\x43\x73\x54\x48','\x57\x51\x54\x79\x62\x73\x4b\x4e\x57\x37\x4a\x64\x47\x38\x6f\x39','\x57\x51\x43\x65\x57\x34\x43\x77\x63\x38\x6f\x76\x6a\x53\x6f\x69','\x57\x36\x56\x64\x4f\x74\x74\x63\x4c\x4e\x68\x63\x48\x6d\x6f\x52\x65\x71','\x57\x36\x6a\x63\x6d\x67\x61\x47\x57\x37\x2f\x64\x47\x43\x6f\x35','\x57\x52\x66\x6d\x74\x43\x6b\x54\x6a\x6d\x6b\x78','\x73\x63\x44\x38\x57\x34\x75\x45','\x57\x50\x4a\x63\x4b\x4d\x46\x63\x56\x73\x47','\x57\x51\x56\x64\x49\x53\x6b\x63\x65\x5a\x50\x2b\x57\x34\x68\x64\x56\x57','\x79\x6d\x6f\x77\x57\x4f\x46\x63\x4e\x5a\x39\x39\x57\x52\x4b\x5a','\x57\x35\x56\x64\x55\x53\x6f\x42\x57\x35\x64\x64\x55\x43\x6f\x69\x57\x34\x54\x7a\x76\x43\x6b\x51\x57\x34\x78\x63\x4a\x71','\x71\x4d\x44\x4a\x69\x38\x6b\x43\x70\x38\x6f\x4f','\x61\x43\x6f\x52\x67\x63\x76\x45','\x62\x63\x72\x59\x76\x71\x6c\x63\x4c\x47','\x57\x35\x72\x58\x57\x37\x53','\x57\x4f\x4b\x67\x7a\x32\x71\x77','\x62\x6d\x6f\x53\x57\x34\x70\x64\x52\x57','\x6c\x53\x6f\x58\x57\x4f\x42\x63\x48\x57','\x57\x51\x4c\x6d\x72\x6d\x6b\x56\x69\x47','\x6f\x38\x6b\x78\x42\x38\x6f\x42\x43\x71','\x64\x38\x6f\x4a\x57\x34\x4f','\x6f\x65\x52\x63\x56\x53\x6f\x56\x44\x48\x43','\x45\x71\x44\x55\x57\x36\x34\x61\x57\x52\x30','\x6a\x43\x6b\x70\x78\x43\x6f\x32\x71\x61','\x42\x38\x6b\x75\x41\x43\x6b\x63\x69\x64\x4e\x64\x4c\x32\x43','\x57\x52\x53\x45\x57\x35\x6d\x78','\x41\x62\x53\x76\x57\x35\x72\x58','\x6f\x53\x6b\x57\x57\x51\x35\x6d\x45\x73\x6a\x37\x57\x37\x65','\x57\x52\x46\x63\x49\x6d\x6b\x59\x57\x37\x4a\x63\x53\x49\x68\x64\x4b\x71','\x57\x36\x7a\x71\x61\x4d\x57\x38\x57\x37\x2f\x64\x4c\x6d\x6f\x57','\x57\x35\x62\x34\x57\x37\x57\x4b','\x57\x36\x50\x46\x65\x77\x57\x6c\x57\x36\x74\x64\x48\x38\x6f\x5a','\x6b\x6d\x6f\x50\x57\x4f\x4e\x64\x4e\x6d\x6b\x66','\x57\x34\x75\x50\x77\x4b\x57\x53\x66\x57','\x70\x43\x6b\x47\x41\x71','\x57\x4f\x61\x30\x57\x52\x37\x63\x52\x47','\x57\x50\x53\x2b\x44\x4e\x4e\x64\x4b\x61','\x57\x51\x47\x45\x57\x35\x69\x6d\x62\x38\x6f\x67\x67\x53\x6f\x4f','\x57\x52\x34\x78\x57\x51\x64\x63\x49\x6d\x6b\x75','\x57\x51\x43\x73\x44\x47','\x57\x4f\x6c\x63\x51\x53\x6b\x70\x57\x50\x4a\x63\x4b\x38\x6b\x46\x57\x35\x62\x62','\x70\x53\x6f\x52\x57\x4f\x71','\x57\x50\x33\x64\x49\x53\x6f\x63\x57\x4f\x43\x6d\x57\x52\x79\x38\x57\x34\x79','\x71\x5a\x6d\x4f\x57\x35\x75','\x71\x72\x34\x61\x6f\x6d\x6b\x6a','\x72\x63\x47\x4e\x57\x35\x48\x47\x6d\x57\x34','\x57\x51\x38\x36\x57\x37\x61\x6a\x70\x61','\x57\x34\x47\x32\x57\x36\x4a\x63\x49\x61','\x57\x50\x68\x64\x52\x76\x70\x64\x55\x53\x6f\x57','\x70\x75\x56\x63\x54\x43\x6b\x4f\x41\x48\x42\x64\x4e\x53\x6f\x72','\x57\x35\x7a\x58\x57\x4f\x53\x48\x66\x78\x44\x69\x57\x34\x4f','\x57\x4f\x56\x64\x47\x53\x6f\x6b\x57\x52\x65','\x57\x50\x4a\x63\x52\x38\x6f\x5a\x57\x4f\x64\x63\x4b\x68\x34','\x79\x77\x35\x71\x57\x37\x61\x47\x66\x47','\x57\x51\x6d\x6b\x57\x35\x6d','\x57\x34\x33\x64\x48\x6d\x6f\x61\x57\x52\x69\x6c\x57\x52\x69\x36\x57\x50\x69','\x57\x52\x47\x45\x45\x38\x6f\x59\x57\x37\x76\x45','\x57\x4f\x42\x64\x4a\x53\x6f\x64\x57\x51\x71\x51\x57\x52\x69\x54\x57\x35\x30','\x57\x36\x76\x76\x57\x52\x43\x66\x6b\x76\x79','\x57\x35\x52\x64\x4b\x53\x6b\x38\x57\x4f\x31\x4a\x44\x6d\x6f\x6d\x69\x47','\x57\x4f\x79\x2b\x43\x67\x2f\x64\x48\x58\x4a\x64\x53\x53\x6f\x41','\x6d\x6d\x6b\x48\x70\x38\x6f\x51\x57\x37\x65\x69\x57\x35\x48\x57','\x57\x50\x58\x31\x61\x72\x54\x53\x73\x6d\x6f\x6c\x75\x38\x6b\x37\x6a\x43\x6f\x4c\x61\x61','\x57\x50\x65\x5a\x57\x51\x37\x63\x52\x53\x6b\x73\x41\x4a\x43','\x6c\x6d\x6f\x5a\x77\x53\x6b\x64','\x57\x4f\x35\x34\x57\x37\x4f\x56\x69\x71\x38\x57\x57\x37\x47','\x57\x50\x47\x5a\x57\x37\x4e\x63\x47\x31\x38\x6c\x57\x50\x6c\x64\x56\x61','\x57\x4f\x4b\x54\x77\x66\x4b\x39\x68\x53\x6f\x6a\x71\x71','\x42\x4c\x33\x64\x4e\x38\x6b\x62\x79\x63\x5a\x63\x52\x59\x71','\x76\x6d\x6f\x39\x73\x6d\x6f\x68\x68\x71','\x57\x36\x4b\x35\x57\x50\x57\x45\x57\x34\x37\x63\x51\x57','\x57\x51\x75\x55\x57\x50\x43\x41\x57\x35\x78\x63\x53\x43\x6f\x6b\x57\x35\x43','\x61\x6d\x6f\x2f\x62\x57','\x57\x51\x78\x63\x4a\x53\x6b\x57\x57\x36\x6c\x63\x52\x57','\x61\x43\x6f\x56\x66\x74\x35\x45','\x57\x50\x37\x64\x4e\x38\x6f\x68\x57\x51\x79\x6d','\x57\x35\x56\x64\x47\x53\x6b\x39','\x68\x6d\x6b\x6d\x62\x6d\x6f\x6b\x57\x35\x57','\x57\x52\x47\x62\x72\x4a\x48\x2b\x57\x51\x64\x63\x47\x43\x6f\x39\x57\x52\x37\x63\x52\x43\x6f\x65\x57\x34\x6c\x64\x4e\x47','\x63\x32\x37\x63\x47\x53\x6f\x6c\x73\x4a\x42\x64\x55\x38\x6f\x47','\x57\x50\x56\x63\x56\x6d\x6f\x34\x57\x50\x78\x63\x49\x68\x43\x71','\x57\x52\x52\x63\x4e\x38\x6b\x2f\x57\x37\x46\x63\x52\x5a\x38','\x42\x4e\x39\x78\x57\x36\x65\x58','\x57\x4f\x56\x64\x56\x71\x4a\x63\x51\x61','\x57\x36\x4b\x5a\x57\x50\x75\x71\x57\x35\x4e\x63\x4f\x53\x6f\x63\x57\x52\x34','\x6c\x6d\x6b\x62\x43\x6d\x6b\x78','\x68\x6d\x6b\x75\x64\x6d\x6f\x42\x57\x34\x30','\x57\x34\x37\x64\x52\x53\x6b\x48\x57\x51\x50\x66','\x64\x4e\x66\x55\x6c\x6d\x6b\x6e\x6f\x47','\x57\x51\x35\x34\x57\x50\x66\x44\x57\x52\x2f\x64\x56\x53\x6f\x49\x61\x71','\x64\x6d\x6f\x4b\x57\x34\x6c\x64\x52\x57','\x57\x51\x74\x63\x4e\x38\x6b\x59\x57\x37\x2f\x63\x51\x74\x6d','\x57\x4f\x47\x52\x42\x78\x5a\x64\x4b\x61','\x57\x50\x6c\x63\x4c\x32\x42\x63\x54\x57','\x73\x53\x6f\x73\x57\x4f\x43','\x57\x50\x66\x73\x6f\x71\x61\x30\x76\x78\x52\x64\x55\x71','\x57\x51\x43\x6f\x57\x34\x34\x79\x68\x6d\x6f\x43','\x70\x38\x6f\x41\x69\x61\x4c\x34\x6d\x4a\x2f\x64\x52\x71','\x71\x6d\x6f\x77\x57\x4f\x46\x63\x4e\x5a\x39\x39\x57\x52\x4b\x5a','\x70\x53\x6b\x47\x44\x6d\x6f\x67','\x7a\x47\x6e\x31','\x73\x74\x38\x51\x57\x35\x44\x39\x6c\x71','\x57\x37\x65\x50\x57\x51\x35\x52\x57\x52\x33\x64\x4e\x38\x6f\x75\x70\x47','\x57\x51\x46\x64\x55\x43\x6f\x5a\x6b\x73\x65','\x6f\x6d\x6f\x76\x69\x53\x6f\x75\x61\x4a\x70\x64\x54\x53\x6b\x4d','\x63\x38\x6f\x2f\x57\x34\x33\x64\x4f\x53\x6b\x50\x57\x37\x5a\x64\x4a\x61','\x57\x51\x54\x63\x65\x32\x34\x4a\x57\x37\x70\x64\x4d\x38\x6f\x4f','\x69\x73\x39\x51\x75\x58\x52\x63\x4c\x38\x6b\x70\x57\x51\x79','\x57\x36\x34\x52\x57\x52\x6a\x4e\x57\x52\x4e\x64\x4b\x38\x6f\x32\x6a\x57','\x57\x36\x71\x48\x73\x30\x57\x57','\x7a\x38\x6b\x42\x45\x71','\x57\x51\x6c\x63\x4b\x53\x6b\x49','\x73\x4b\x70\x64\x54\x77\x4e\x64\x4f\x68\x6c\x63\x48\x66\x65','\x57\x50\x68\x63\x53\x53\x6f\x34\x57\x4f\x71','\x57\x36\x44\x75\x67\x67\x34\x36\x57\x37\x34','\x57\x51\x4f\x7a\x57\x34\x6d\x78\x61\x43\x6f\x63\x6c\x57','\x57\x35\x37\x63\x4a\x67\x4e\x63\x56\x64\x30\x69\x57\x37\x6c\x64\x51\x71','\x73\x58\x43\x62\x6d\x6d\x6b\x70\x57\x4f\x38','\x43\x43\x6b\x62\x46\x6d\x6b\x76\x6a\x47','\x57\x52\x4e\x64\x52\x6d\x6f\x4d\x70\x49\x44\x6e\x57\x34\x38\x70','\x57\x35\x5a\x64\x4b\x53\x6b\x4f\x57\x35\x57','\x45\x38\x6f\x48\x57\x4f\x78\x64\x4e\x6d\x6b\x6d\x57\x35\x66\x44\x57\x50\x47','\x6f\x43\x6b\x48\x57\x36\x62\x44\x42\x63\x79','\x57\x51\x6d\x69\x78\x53\x6f\x30\x57\x36\x4c\x74\x41\x38\x6b\x6a','\x75\x38\x6f\x31\x41\x71','\x57\x51\x61\x69\x44\x38\x6f\x5a\x57\x51\x44\x76\x42\x43\x6f\x6d','\x57\x34\x7a\x31\x57\x36\x43\x4a\x6f\x57','\x57\x35\x75\x32\x57\x36\x57','\x57\x4f\x33\x64\x4c\x59\x4a\x63\x53\x63\x38\x7a\x57\x37\x6c\x64\x4f\x57','\x57\x37\x4c\x45\x57\x50\x66\x68\x75\x6d\x6b\x67\x6d\x53\x6f\x2b\x46\x64\x4e\x64\x47\x53\x6b\x4a','\x79\x4e\x38\x45\x57\x36\x65\x31\x65\x49\x30\x7a','\x42\x68\x4c\x44\x57\x37\x38\x39\x63\x63\x65\x30','\x57\x4f\x4b\x55\x71\x76\x39\x34\x67\x43\x6f\x63\x74\x71','\x57\x37\x54\x65\x62\x77\x65','\x43\x6d\x6b\x41\x42\x57','\x71\x65\x50\x51\x57\x35\x69\x67\x6e\x57\x75\x58','\x61\x43\x6f\x2b\x61\x61','\x57\x52\x65\x5a\x57\x51\x37\x63\x52\x53\x6b\x73\x41\x4a\x44\x64','\x57\x35\x6d\x35\x57\x36\x65\x49\x70\x57\x43\x51\x57\x37\x71','\x69\x38\x6b\x31\x41\x38\x6f\x6b\x45\x43\x6b\x4b\x6a\x74\x4f','\x44\x65\x37\x63\x4f\x53\x6f\x52\x41\x48\x42\x64\x4d\x38\x6f\x61','\x57\x37\x6d\x6e\x57\x51\x50\x62\x57\x36\x42\x64\x4a\x43\x6f\x43\x62\x71','\x6f\x43\x6f\x55\x72\x6d\x6b\x70\x57\x50\x4a\x64\x52\x73\x58\x6d','\x78\x43\x6f\x77\x57\x4f\x46\x63\x4b\x47','\x6c\x43\x6f\x4a\x6d\x76\x57\x59\x70\x75\x66\x66','\x57\x35\x68\x64\x4a\x47\x69','\x57\x35\x6e\x32\x57\x37\x4f\x34','\x72\x49\x34\x54\x57\x34\x7a\x53','\x57\x4f\x68\x64\x52\x65\x64\x64\x55\x38\x6f\x52\x57\x51\x6c\x64\x4f\x74\x65','\x57\x50\x6c\x63\x4d\x32\x42\x63\x54\x73\x34\x66','\x46\x76\x52\x64\x4c\x43\x6b\x62\x74\x64\x2f\x63\x53\x71\x4f','\x64\x73\x39\x4f\x71\x62\x2f\x63\x4d\x38\x6b\x79','\x57\x51\x42\x63\x4d\x38\x6b\x4c\x57\x37\x47','\x57\x51\x70\x64\x56\x38\x6f\x37\x6c\x5a\x61','\x57\x52\x48\x50\x75\x43\x6f\x55\x63\x61','\x57\x4f\x6d\x4b\x57\x52\x4b','\x57\x4f\x42\x64\x52\x65\x6c\x64\x50\x6d\x6f\x54\x57\x52\x70\x64\x4b\x63\x71','\x66\x6d\x6b\x69\x57\x35\x6a\x30\x62\x6d\x6b\x57','\x57\x4f\x4b\x4a\x75\x4b\x30\x52\x67\x53\x6f\x7a\x67\x61','\x57\x4f\x4e\x64\x50\x43\x6b\x55\x6c\x71\x62\x72\x57\x37\x74\x63\x4d\x47','\x57\x37\x79\x67\x57\x4f\x64\x63\x51\x53\x6f\x2f','\x42\x31\x47\x54','\x66\x38\x6b\x64\x57\x34\x48\x59\x67\x43\x6b\x32\x57\x51\x30\x64','\x57\x37\x53\x57\x72\x66\x4b\x57\x6b\x57','\x57\x35\x57\x34\x75\x48\x6d','\x57\x4f\x4e\x64\x52\x6d\x6b\x46\x70\x48\x54\x71\x57\x37\x75','\x6c\x53\x6f\x59\x67\x53\x6f\x48\x6b\x58\x33\x64\x4c\x38\x6b\x35','\x6d\x6d\x6b\x51\x57\x36\x4f','\x57\x37\x61\x54\x57\x52\x72\x50\x57\x52\x56\x64\x4e\x47','\x62\x53\x6f\x64\x79\x38\x6b\x45\x57\x4f\x71','\x57\x50\x57\x55\x57\x51\x52\x63\x52\x38\x6b\x79\x46\x74\x35\x71','\x44\x71\x69\x2f\x62\x38\x6b\x35','\x42\x38\x6b\x43\x43\x57','\x61\x43\x6f\x35\x68\x53\x6f\x4c\x6b\x71\x64\x63\x4b\x38\x6b\x78','\x57\x4f\x46\x63\x56\x53\x6f\x38\x57\x50\x78\x63\x4b\x61','\x57\x50\x42\x64\x51\x53\x6b\x2b\x68\x58\x31\x45\x57\x37\x78\x64\x4a\x47'];_0x5288=function(){return _0xbd8680;};return _0x5288();}function readStrictHistory(_0x3b3f36){const _0x251994=_0x406e2b,_0x5b515f=readArchiveStrict(materialArchiveDir(_0x3b3f36)),_0x175020=readActiveStrict(_0x3b3f36),_0xb029d7=detectOverlap(_0x5b515f,_0x175020),_0x5d34c9=_0x175020[_0x251994(0x2b8,'\x78\x78\x5b\x48')](_0xb029d7),_0x7239a7=new Map();for(const _0x2a6949 of[..._0x5b515f,..._0x5d34c9]){const _0xbdb017=JSON[_0x251994(0x253,'\x6f\x52\x76\x77')+'\x79'](_0x2a6949[_0x251994(0x319,'\x26\x35\x4a\x50')]),_0xaa52f3=_0x7239a7[_0x251994(0x18e,'\x24\x4b\x63\x26')](_0x2a6949[_0x251994(0x26c,'\x4b\x48\x5b\x6f')][_0x251994(0x2ef,'\x45\x36\x33\x4d')+'\x49\x64']);if(_0xaa52f3!==undefined){if('\x76\x46\x6a\x67\x43'==='\x76\x46\x6a\x67\x43'){if(_0xaa52f3!==_0xbdb017)throw new MaterialArchiveSegmentConflictError(_0x2a6949[_0x251994(0x2d6,'\x5e\x71\x38\x40')][_0x251994(0x1b1,'\x4f\x63\x75\x6f')+'\x49\x64']);throw new MaterialArchiveRangeError(_0x251994(0x230,'\x45\x55\x4d\x24')+_0x251994(0x2cf,'\x45\x77\x67\x64')+_0x251994(0x25f,'\x6b\x31\x68\x37')+_0x2a6949[_0x251994(0x2b0,'\x38\x78\x5d\x4d')][_0x251994(0x2eb,'\x68\x41\x46\x4c')+'\x49\x64']);}else{if(_0xa88b6b[_0x251994(0x242,'\x31\x6e\x6d\x79')]!==_0x33e279)throw new _0x16d963(_0x251994(0x323,'\x53\x30\x61\x28')+_0x251994(0x1cb,'\x26\x35\x4a\x50')+_0x53d30c+(_0x251994(0x297,'\x25\x62\x23\x26')+_0x251994(0x247,'\x38\x78\x5d\x4d'))+_0x41e816[_0x251994(0x1df,'\x26\x35\x4a\x50')]);const _0x55d627=_0x1dddbe(_0x380b36(_0x230612,_0x2309ae[_0x251994(0x2e9,'\x78\x79\x25\x51')]),_0x5c73cf[_0x251994(0x1d4,'\x56\x76\x54\x25')],!![]),_0x38fa23=_0x1ef418[_0x251994(0x202,'\x6f\x52\x76\x77')]-_0x18219a[_0x251994(0x20a,'\x6f\x52\x76\x77')]+(0x1*-0x229d+-0x206b+0x83*0x83);if(_0x55d627[_0x251994(0x307,'\x26\x24\x40\x54')]!==_0x38fa23)throw new _0x33a031(_0x4404f6[_0x251994(0x31c,'\x25\x62\x23\x26')]+(_0x251994(0x1d6,'\x38\x78\x5d\x4d')+'\x73\x20')+_0x38fa23+(_0x251994(0x2ab,'\x45\x79\x78\x24')+_0x251994(0x214,'\x23\x30\x7a\x4f')+_0x251994(0x233,'\x45\x36\x33\x4d'))+_0x55d627[_0x251994(0x209,'\x5e\x25\x51\x48')]);_0x1e31fc[_0x251994(0x2d9,'\x7a\x43\x69\x44')](..._0x55d627),_0x13dbe3=_0x32ad52[_0x251994(0x225,'\x79\x43\x6f\x73')]+(0x19c5*-0x1+-0x1*0x2fe+0x1cc4);}}_0x7239a7[_0x251994(0x24c,'\x23\x6d\x62\x32')](_0x2a6949[_0x251994(0x2ca,'\x4a\x54\x45\x45')]['\x6d\x61\x74\x65\x72\x69\x61\x6c'+'\x49\x64'],_0xbdb017);}return{'\x61\x72\x63\x68\x69\x76\x65':_0x5b515f,'\x61\x63\x74\x69\x76\x65':_0x175020,'\x6c\x6f\x67\x69\x63\x61\x6c\x41\x63\x74\x69\x76\x65':_0x5d34c9,'\x6f\x76\x65\x72\x6c\x61\x70':_0xb029d7};}function readArchiveStrict(_0x698d77){const _0x5d0d3d=_0x406e2b,_0x3eab48=segmentDescriptors(_0x698d77,!![]),_0x4ecd6e=[];let _0x305868=-0x1*0x63d+-0x5*0x3a9+0x82e*0x3;for(const _0xd13329 of _0x3eab48){if(_0x5d0d3d(0x19a,'\x31\x30\x39\x78')===_0x5d0d3d(0x18b,'\x62\x34\x44\x35')){let _0x168c8f=null;try{_0x168c8f=_0xe2c7aa(_0x3b21db,'\x77',-0x204b+0xe8d*-0x1+0x3058),_0x4b78f4(_0x168c8f,_0x31f74d,_0x337bbf,_0x5d0d3d(0x28b,'\x31\x6e\x6d\x79')),_0x22e20f(_0x168c8f),_0x38ce17(_0x168c8f),_0x168c8f=null,_0xa783c7(_0x3834f4,_0x2efcc8);}catch(_0xa7e3bc){if(_0x168c8f!==null)_0x760746(_0x168c8f);_0x11a4a5(_0x6f0e76,{'\x66\x6f\x72\x63\x65':!![]});throw _0xa7e3bc;}}else{if(_0xd13329[_0x5d0d3d(0x242,'\x31\x6e\x6d\x79')]!==_0x305868)throw new MaterialArchiveRangeError(_0x5d0d3d(0x2bf,'\x49\x71\x49\x39')+_0x5d0d3d(0x232,'\x4e\x5b\x5b\x43')+_0x305868+(_0x5d0d3d(0x218,'\x4e\x5b\x5b\x43')+_0x5d0d3d(0x287,'\x23\x6d\x62\x32'))+_0xd13329[_0x5d0d3d(0x1de,'\x35\x31\x6c\x58')]);const _0x4d52aa=readStrictLines(join(_0x698d77,_0xd13329[_0x5d0d3d(0x26a,'\x78\x78\x5b\x48')]),_0xd13329[_0x5d0d3d(0x292,'\x68\x41\x46\x4c')],!![]),_0x2f4cbf=_0xd13329[_0x5d0d3d(0x257,'\x24\x4b\x63\x26')]-_0xd13329[_0x5d0d3d(0x1c4,'\x45\x55\x4d\x24')]+(0x159*0x9+0x2267*-0x1+0x1647);if(_0x4d52aa[_0x5d0d3d(0x1f4,'\x23\x6d\x62\x32')]!==_0x2f4cbf){if(_0x5d0d3d(0x2dc,'\x68\x41\x46\x4c')===_0x5d0d3d(0x296,'\x4f\x63\x75\x6f'))throw new _0x254061(_0x5d0d3d(0x191,'\x23\x6d\x62\x32')+_0x57c8dd+(_0x5d0d3d(0x2d4,'\x40\x64\x26\x40')+_0x5d0d3d(0x1c5,'\x25\x62\x23\x26')+_0x5d0d3d(0x2bb,'\x7a\x43\x69\x44')+'\x64\x73'));else throw new MaterialArchiveRangeError(_0xd13329[_0x5d0d3d(0x1ee,'\x6b\x31\x68\x37')]+(_0x5d0d3d(0x20d,'\x5e\x71\x38\x40')+'\x73\x20')+_0x2f4cbf+(_0x5d0d3d(0x1db,'\x65\x4c\x50\x43')+_0x5d0d3d(0x309,'\x26\x35\x4a\x50')+_0x5d0d3d(0x236,'\x38\x75\x24\x47'))+_0x4d52aa[_0x5d0d3d(0x307,'\x26\x24\x40\x54')]);}_0x4ecd6e[_0x5d0d3d(0x2f1,'\x4c\x58\x70\x78')](..._0x4d52aa),_0x305868=_0xd13329['\x65\x6e\x64']+(0x3*0x8fa+-0x2*-0x11d1+-0x3e8f);}}return _0x4ecd6e;}function readActiveStrict(_0x4f6478){const _0x1c129c=_0x406e2b;if(!existsSync(_0x4f6478))return[];const _0xdc0ee9=[],_0x5aa506=readFileSync(_0x4f6478,_0x1c129c(0x20c,'\x78\x78\x5b\x48'))[_0x1c129c(0x295,'\x23\x30\x7a\x4f')]('\x0a');for(let _0x1a4863=0xa*0xc9+-0x2*0x997+0x64*0x1d;_0x1a4863<_0x5aa506[_0x1c129c(0x1c9,'\x56\x52\x74\x39')];_0x1a4863+=-0x17c4+0x93f+-0x16*-0xa9){if(_0x1c129c(0x26e,'\x35\x31\x6c\x58')!==_0x1c129c(0x189,'\x31\x6e\x6d\x79')){const _0x497224=_0x5aa506[_0x1a4863];if(_0x497224[_0x1c129c(0x206,'\x4f\x63\x75\x6f')]===-0x2*-0x15a+0x1aee+-0x1da2*0x1)continue;try{_0xdc0ee9['\x70\x75\x73\x68']({'\x72\x65\x63\x6f\x72\x64':material[_0x1c129c(0x1b8,'\x42\x5b\x38\x48')](JSON[_0x1c129c(0x2a8,'\x62\x34\x44\x35')](_0x497224)),'\x72\x61\x77':_0x497224});}catch{if(_0x1c129c(0x30d,'\x78\x78\x5b\x48')!==_0x1c129c(0x249,'\x79\x43\x6f\x73'))throw new InvalidMaterialLogError(_0x1a4863+(0xba+-0x23c3+-0x27*-0xe6),_0x1c129c(0x244,'\x5e\x25\x51\x48')+_0x1c129c(0x321,'\x4f\x63\x75\x6f')+_0x1c129c(0x311,'\x56\x76\x54\x25')+_0x1c129c(0x324,'\x26\x24\x40\x54'));else{const _0x46f71f=_0x5c35c2(_0x57b5e7,_0x2e064f,_0x4523d4),_0x5e833a=_0x636a41['\x73\x6c\x69\x63\x65'](_0x46f71f),_0x47b93c=_0x1edd2a+(-0xa39+-0x4c1+-0x2ff*-0x5);for(let _0x523436=0xe7e+-0xa3a*0x2+0x5f6;_0x523436<_0x5e833a[_0x1c129c(0x1ce,'\x62\x47\x6d\x75')];_0x523436+=-0x163c+0xd*-0xa9+0x1ed2){const _0x379a4b=_0x47b93c+_0x523436;if(_0x379a4b>=_0x697f01&&_0x379a4b<=_0x5e3cbc)_0x3c35aa[_0x1c129c(0x29b,'\x7a\x43\x69\x44')](_0x379a4b,_0x5e833a[_0x523436]);}}}}else return _0x712781[_0x1c129c(0x1e1,'\x23\x6c\x48\x5a')](_0x1ef296,_0x26c9b2+_0x1e9346);}return _0xdc0ee9;}function readStrictLines(_0xf92483,_0x24d054,_0xe7a403){const _0xaf3238=_0x406e2b,_0x1d199c=[],_0x141dee=readFileSync(_0xf92483,_0xaf3238(0x299,'\x23\x30\x7a\x4f'))['\x73\x70\x6c\x69\x74']('\x0a');for(let _0x2b13ef=0xd*-0x59+0xa*-0x24a+0x1b69;_0x2b13ef<_0x141dee[_0xaf3238(0x1a9,'\x25\x62\x23\x26')];_0x2b13ef+=0x231+-0x4*-0x677+-0xa*0x2ce){const _0x17a69f=_0x141dee[_0x2b13ef];if(_0x17a69f[_0xaf3238(0x2b2,'\x45\x36\x33\x4d')]===-0x26f0+-0x1685+0x3d75)continue;try{_0x1d199c[_0xaf3238(0x25d,'\x78\x38\x42\x6d')]({'\x72\x65\x63\x6f\x72\x64':material['\x70\x61\x72\x73\x65'](JSON[_0xaf3238(0x28c,'\x38\x78\x5d\x4d')](_0x17a69f)),'\x72\x61\x77':_0x17a69f});}catch{if(_0xe7a403)throw new InvalidMaterialArchiveError(_0x24d054,_0x2b13ef+(-0x2501+0x11*-0x20b+0x47bd),_0xaf3238(0x254,'\x4b\x48\x5b\x6f')+_0xaf3238(0x304,'\x4a\x54\x45\x45')+'\x6d\x61\x74\x65\x72\x69\x61\x6c'+_0xaf3238(0x19f,'\x45\x79\x78\x24'));throw new InvalidMaterialLogError(_0x2b13ef+(-0x1d05*-0x1+-0xd47+-0xfbd),_0xaf3238(0x276,'\x77\x74\x38\x6e')+_0xaf3238(0x211,'\x38\x37\x4e\x33')+_0xaf3238(0x1f6,'\x77\x28\x67\x31')+_0xaf3238(0x2ce,'\x45\x36\x33\x4d'));}}return _0x1d199c;}function readMaterialsLenient(_0x30d27f){const _0x4bd384=_0x406e2b;if(!existsSync(_0x30d27f))return[];const _0x1bb7b1=[];for(const _0x5b50ac of readFileSync(_0x30d27f,_0x4bd384(0x1a5,'\x5e\x71\x38\x40'))[_0x4bd384(0x1a0,'\x35\x31\x6c\x58')]('\x0a')){if(_0x4bd384(0x2a6,'\x25\x62\x23\x26')===_0x4bd384(0x1d9,'\x77\x74\x38\x6e')){if(_0x1db2a1!==_0x122ad8)throw new _0x39567a(_0x4a846c['\x72\x65\x63\x6f\x72\x64'][_0x4bd384(0x1d0,'\x42\x5b\x38\x48')+'\x49\x64']);throw new _0x231dab(_0x4bd384(0x2dd,'\x77\x74\x38\x6e')+_0x4bd384(0x301,'\x45\x4f\x32\x50')+_0x4bd384(0x259,'\x45\x36\x33\x4d')+_0x53d858[_0x4bd384(0x1ef,'\x68\x41\x46\x4c')]['\x6d\x61\x74\x65\x72\x69\x61\x6c'+'\x49\x64']);}else{if(_0x5b50ac['\x6c\x65\x6e\x67\x74\x68']===0x1491+-0x2540*-0x1+-0x39d1)continue;try{if('\x74\x47\x48\x6b\x6a'===_0x4bd384(0x2a0,'\x26\x24\x40\x54')){const _0x3c5b0b=_0x1a17f6[_0x4bd384(0x1e8,'\x65\x4c\x50\x43')+_0x4bd384(0x293,'\x69\x72\x43\x5e')][_0x4bd384(0x27b,'\x25\x62\x23\x26')](0x240a+0x1e3d+-0x2f*0x169,_0x3f34d0),_0x324734=_0x285118(_0x14c389[_0x4bd384(0x310,'\x56\x76\x54\x25')]);_0x3a1777(_0x324734,{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]});const _0x2b2f2a=_0xe11fa7(_0x324734,_0x2d2ff3(_0x52122a,_0x5539b0)),_0x559dc0=_0x5b3054(_0x3c5b0b);if(_0x4adf0d(_0x2b2f2a)){if(_0x59a630(_0x2b2f2a,_0x4bd384(0x2ee,'\x38\x78\x5d\x4d'))!==_0x559dc0)throw new _0x24d0f9(_0x10106f??_0xcb493c+'\x2d'+_0x1e7df4);}else _0x164768(_0x2b2f2a+'\x2e\x74\x6d\x70',_0x2b2f2a,_0x559dc0),_0xdf654b(_0x324734);}else _0x1bb7b1[_0x4bd384(0x2c0,'\x56\x52\x74\x39')](material[_0x4bd384(0x234,'\x45\x4f\x32\x50')](JSON[_0x4bd384(0x2d5,'\x65\x4c\x50\x43')](_0x5b50ac)));}catch{}}}return _0x1bb7b1;}function segmentDescriptors(_0x3caf26,_0x5c5e0c=![]){const _0x360ffc=_0x406e2b;if(!existsSync(_0x3caf26))return[];const _0x554d5d=[];for(const _0x4b0b4c of readdirSync(_0x3caf26)[_0x360ffc(0x29a,'\x56\x76\x54\x25')]()){const _0x3e5d95=SEGMENT_PATTERN[_0x360ffc(0x205,'\x31\x6e\x6d\x79')](_0x4b0b4c);if(_0x3e5d95===null)continue;const _0x42538a=Number(_0x3e5d95[0x2390+-0x94*0x5+-0x20ab]),_0x580c6e=Number(_0x3e5d95[0x971*0x1+0x11*-0x71+0xf7*-0x2]);if(!Number['\x69\x73\x53\x61\x66\x65\x49\x6e'+_0x360ffc(0x2db,'\x35\x31\x6c\x58')](_0x42538a)||!Number[_0x360ffc(0x2bc,'\x26\x35\x4a\x50')+_0x360ffc(0x1a6,'\x5b\x70\x38\x4a')](_0x580c6e)||_0x42538a<-0x551*-0x1+0xbed*0x2+-0x1d2b*0x1||_0x580c6e<_0x42538a){if(_0x5c5e0c)throw new MaterialArchiveRangeError(_0x360ffc(0x2bd,'\x69\x72\x43\x5e')+'\x73\x65\x67\x6d\x65\x6e\x74\x20'+_0x360ffc(0x2c6,'\x4e\x5b\x5b\x43')+'\x20'+_0x4b0b4c);continue;}_0x554d5d[_0x360ffc(0x1b7,'\x79\x77\x63\x32')]({'\x66\x69\x6c\x65':_0x4b0b4c,'\x73\x74\x61\x72\x74':_0x42538a,'\x65\x6e\x64':_0x580c6e});}return _0x554d5d[_0x360ffc(0x2cc,'\x4c\x58\x70\x78')]((_0x4d9988,_0x419be2)=>_0x4d9988[_0x360ffc(0x1ea,'\x23\x6c\x48\x5a')]-_0x419be2[_0x360ffc(0x1ea,'\x23\x6c\x48\x5a')]||_0x4d9988[_0x360ffc(0x23b,'\x4a\x54\x45\x45')]-_0x419be2[_0x360ffc(0x1a8,'\x6b\x31\x68\x37')]);}function detectOverlap(_0x4cc525,_0x3b7524){const _0x3d49a9=_0x406e2b,_0x25ce73=Math[_0x3d49a9(0x2a4,'\x45\x77\x67\x64')](_0x4cc525[_0x3d49a9(0x1b5,'\x4e\x5b\x5b\x43')],_0x3b7524[_0x3d49a9(0x1a1,'\x40\x64\x26\x40')]);for(let _0x3c5f68=_0x25ce73;_0x3c5f68>-0x697+-0x1cd*-0x1+-0x2*-0x265;_0x3c5f68-=-0x730+-0xd55+-0x1*-0x1486){const _0x3273ea=_0x4cc525[_0x3d49a9(0x1a1,'\x40\x64\x26\x40')]-_0x3c5f68;let _0x10aa57=!![];for(let _0x18c71c=0x261*0x7+-0x83+-0x1024;_0x18c71c<_0x3c5f68;_0x18c71c+=0xe2b+-0x8*0x122+0x1*-0x51a){if(_0x3d49a9(0x288,'\x4c\x58\x70\x78')===_0x3d49a9(0x2c7,'\x77\x74\x38\x6e')){const _0x3a60cf=_0x2a1eed[_0x3d49a9(0x1fb,'\x7a\x43\x69\x44')]+_0x98c931;_0x3a60cf>=_0x347c08&&_0x3a60cf<=_0x3e40df&&!_0x2e7d5a[_0x3d49a9(0x1ca,'\x23\x6d\x62\x32')](_0x3a60cf)&&_0x54137d[_0x3d49a9(0x28a,'\x38\x37\x4e\x33')](_0x3a60cf,_0xab165c[_0x14a2dd]);}else{if(JSON[_0x3d49a9(0x306,'\x59\x47\x34\x4e')+'\x79'](_0x4cc525[_0x3273ea+_0x18c71c][_0x3d49a9(0x1cc,'\x38\x37\x4e\x33')])!==JSON[_0x3d49a9(0x1cf,'\x78\x78\x5b\x48')+'\x79'](_0x3b7524[_0x18c71c][_0x3d49a9(0x1aa,'\x31\x30\x39\x78')])){_0x10aa57=![];break;}}}if(_0x10aa57)return _0x3c5f68;}return-0x19*-0xef+0xd3*0x1a+-0x2cc5*0x1;}function _0x5688(_0x3c7cec,_0x101fb1){_0x3c7cec=_0x3c7cec-(0xd3a*-0x1+0x1f4b+-0x108a*0x1);const _0x365177=_0x5288();let _0x2fd9a1=_0x365177[_0x3c7cec];if(_0x5688['\x63\x68\x79\x73\x42\x4a']===undefined){var _0x1dcc2a=function(_0x17b217){const _0x1067db='\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 _0x20936c='',_0x58f674='';for(let _0x4766f3=0x8c2*0x4+-0x11ef*-0x1+0x34f7*-0x1,_0x5a7bf4,_0x19472f,_0xa5e310=-0x1ab3+-0x16ec+0x319f;_0x19472f=_0x17b217['\x63\x68\x61\x72\x41\x74'](_0xa5e310++);~_0x19472f&&(_0x5a7bf4=_0x4766f3%(-0x587*-0x1+0x22a6+-0x1*0x2829)?_0x5a7bf4*(0x2*-0x114f+0xdf3+0x5*0x42f)+_0x19472f:_0x19472f,_0x4766f3++%(-0x104c+-0x124*-0x1a+-0xd58))?_0x20936c+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x20f5+0x715+-0x270b*0x1&_0x5a7bf4>>(-(-0xccc+-0x1e21+-0x17b*-0x1d)*_0x4766f3&0x1*0xbe9+0x2*0x1038+-0x2c53)):-0x1bf+0x8e*0x2+0xa3){_0x19472f=_0x1067db['\x69\x6e\x64\x65\x78\x4f\x66'](_0x19472f);}for(let _0x3f8980=-0x1a95*-0x1+-0x1e03+0x1b7*0x2,_0x42fd79=_0x20936c['\x6c\x65\x6e\x67\x74\x68'];_0x3f8980<_0x42fd79;_0x3f8980++){_0x58f674+='\x25'+('\x30\x30'+_0x20936c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3f8980)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x14a2+-0x1841+0x29*0x17))['\x73\x6c\x69\x63\x65'](-(-0xa55+-0x1*0xb27+0x157e));}return decodeURIComponent(_0x58f674);};const _0x5de7dc=function(_0x484cfb,_0x4307cb){let _0x1ee9c8=[],_0x551650=0x886+0x1b8b*-0x1+0x21d*0x9,_0x25b1b0,_0x28705e='';_0x484cfb=_0x1dcc2a(_0x484cfb);let _0x3780f8;for(_0x3780f8=-0x40f*0x7+-0x1e7*0x7+0x14dd*0x2;_0x3780f8<0x2*-0x240+0x6ce+-0x14e;_0x3780f8++){_0x1ee9c8[_0x3780f8]=_0x3780f8;}for(_0x3780f8=-0x1caa+-0xe17+0x1*0x2ac1;_0x3780f8<-0x26cf*0x1+0x1*-0x213a+0x4909*0x1;_0x3780f8++){_0x551650=(_0x551650+_0x1ee9c8[_0x3780f8]+_0x4307cb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3780f8%_0x4307cb['\x6c\x65\x6e\x67\x74\x68']))%(0xba2+0xa*0x14d+-0x17a4),_0x25b1b0=_0x1ee9c8[_0x3780f8],_0x1ee9c8[_0x3780f8]=_0x1ee9c8[_0x551650],_0x1ee9c8[_0x551650]=_0x25b1b0;}_0x3780f8=0x74f*0x1+0x25c6+-0x2d15,_0x551650=0x43c+0x20da+0xca*-0x2f;for(let _0x4e7e33=0x1*-0xb2c+-0xa4*0x2+-0x1*-0xc74;_0x4e7e33<_0x484cfb['\x6c\x65\x6e\x67\x74\x68'];_0x4e7e33++){_0x3780f8=(_0x3780f8+(0xddd+-0x1*0x20d4+-0x97c*-0x2))%(0x24a3+0x133*-0x17+-0x80e),_0x551650=(_0x551650+_0x1ee9c8[_0x3780f8])%(0x163f*-0x1+0x1*-0x71+0x17b0),_0x25b1b0=_0x1ee9c8[_0x3780f8],_0x1ee9c8[_0x3780f8]=_0x1ee9c8[_0x551650],_0x1ee9c8[_0x551650]=_0x25b1b0,_0x28705e+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x484cfb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4e7e33)^_0x1ee9c8[(_0x1ee9c8[_0x3780f8]+_0x1ee9c8[_0x551650])%(0x1435+-0xae7*0x1+-0x84e)]);}return _0x28705e;};_0x5688['\x4e\x6c\x68\x79\x78\x42']=_0x5de7dc,_0x5688['\x6d\x55\x63\x47\x5a\x50']={},_0x5688['\x63\x68\x79\x73\x42\x4a']=!![];}const _0x41d167=_0x365177[0x23c3+-0xd44+-0x1bb*0xd],_0x4830c7=_0x3c7cec+_0x41d167,_0x197c29=_0x5688['\x6d\x55\x63\x47\x5a\x50'][_0x4830c7];return!_0x197c29?(_0x5688['\x46\x53\x79\x6d\x67\x4e']===undefined&&(_0x5688['\x46\x53\x79\x6d\x67\x4e']=!![]),_0x2fd9a1=_0x5688['\x4e\x6c\x68\x79\x78\x42'](_0x2fd9a1,_0x101fb1),_0x5688['\x6d\x55\x63\x47\x5a\x50'][_0x4830c7]=_0x2fd9a1):_0x2fd9a1=_0x197c29,_0x2fd9a1;}function detectOperationalOverlap(_0x3b893e,_0x40db11,_0x1dc6a2){const _0xae75c=_0x406e2b,_0x1cb4a5=_0x40db11[_0x40db11[_0xae75c(0x307,'\x26\x24\x40\x54')]-(-0x1140+0x26b+0xed6)];if(_0x1cb4a5===undefined||_0x1dc6a2[_0xae75c(0x274,'\x45\x77\x67\x64')]===-0x1f1b*-0x1+-0x122c+-0x12d*0xb)return-0x24b5+-0x158a+0x3a3f;const _0x124761=readMaterialsLenient(join(materialArchiveDir(_0x3b893e),_0x1cb4a5[_0xae75c(0x1c7,'\x26\x35\x4a\x50')])),_0xed890b=Math[_0xae75c(0x240,'\x6f\x52\x76\x77')](_0x124761[_0xae75c(0x298,'\x79\x43\x6f\x73')],_0x1dc6a2[_0xae75c(0x1ec,'\x45\x79\x78\x24')]);for(let _0xa170a6=_0xed890b;_0xa170a6>-0x26af+-0x18e6+-0x29*-0x18d;_0xa170a6-=-0xec2+-0x14f*0x3+-0x1a*-0xb8){const _0x2c7245=_0x124761[_0xae75c(0x1a1,'\x40\x64\x26\x40')]-_0xa170a6;let _0x5e9d8d=!![];for(let _0x254625=0x1615+0x803+-0x1ac*0x12;_0x254625<_0xa170a6;_0x254625+=-0x1fb7*-0x1+-0x32*-0x6b+-0xd27*0x4){if(_0xae75c(0x285,'\x35\x31\x6c\x58')!==_0xae75c(0x2c4,'\x26\x35\x4a\x50')){if(!_0x12b22d[_0xae75c(0x198,'\x4f\x63\x75\x6f')](_0x339f5f)||_0x3420a5<0x205*-0x11+0x16a3+0xbb2)return-0x2*-0xaff+0x2213+0x3811*-0x1;return _0xc2f99d[_0xae75c(0x212,'\x69\x72\x43\x5e')](_0x257aa9);}else{if(JSON[_0xae75c(0x2fb,'\x42\x5b\x38\x48')+'\x79'](_0x124761[_0x2c7245+_0x254625])!==JSON[_0xae75c(0x21f,'\x44\x55\x46\x49')+'\x79'](_0x1dc6a2[_0x254625])){if(_0xae75c(0x23f,'\x5e\x25\x51\x48')!=='\x52\x70\x50\x50\x42'){if(_0x479403!==null)_0x48f3ba(_0x1a9c67);}else{_0x5e9d8d=![];break;}}}}if(_0x5e9d8d)return _0xa170a6;}return-0x1a14+0x439+0xf*0x175;}function readCursorsStrict(_0x12c6bc,_0x18c4b6){const _0x112a8c=_0x406e2b,_0x2e2fbf=[];for(const _0x1a09be of _0x12c6bc){if(!existsSync(_0x1a09be))continue;let _0xd6d9bb;try{_0xd6d9bb=JSON[_0x112a8c(0x2b1,'\x38\x75\x24\x47')](readFileSync(_0x1a09be,_0x112a8c(0x238,'\x4e\x5b\x5b\x43')));}catch{throw new InvalidMaterialArchiveCursorError(_0x112a8c(0x2fa,'\x4f\x63\x75\x6f')+_0x112a8c(0x2ec,'\x56\x52\x74\x39')+_0x112a8c(0x216,'\x56\x52\x74\x39')+_0x112a8c(0x2e2,'\x68\x41\x46\x4c'));}if(typeof _0xd6d9bb!=='\x6f\x62\x6a\x65\x63\x74'||_0xd6d9bb===null||Array['\x69\x73\x41\x72\x72\x61\x79'](_0xd6d9bb))throw new InvalidMaterialArchiveCursorError(_0x112a8c(0x2e4,'\x79\x77\x63\x32')+_0x112a8c(0x248,'\x56\x76\x54\x25')+'\x20\x63\x6f\x6e\x74\x61\x69\x6e'+_0x112a8c(0x18c,'\x5e\x71\x38\x40')+'\x63\x74');for(const [_0x48758b,_0x4c04df]of Object[_0x112a8c(0x194,'\x4a\x54\x45\x45')](_0xd6d9bb)){if('\x4d\x41\x51\x64\x78'===_0x112a8c(0x1ae,'\x4c\x58\x70\x78')){if(!Number[_0x112a8c(0x305,'\x5b\x70\x38\x4a')+'\x74\x65\x67\x65\x72'](_0x4c04df)||_0x4c04df<-0x1e2e*0x1+-0x1ffe+-0xf8b*-0x4||_0x4c04df>_0x18c4b6)throw new InvalidMaterialArchiveCursorError('\x67\x72\x6f\x75\x70\x20'+_0x48758b+(_0x112a8c(0x2b5,'\x23\x30\x7a\x4f')+'\x69\x64\x65\x20\x68\x69\x73\x74'+'\x6f\x72\x79\x20\x62\x6f\x75\x6e'+'\x64\x73'));_0x2e2fbf[_0x112a8c(0x2c2,'\x45\x55\x4d\x24')]({'\x67\x72\x6f\x75\x70':_0x48758b,'\x70\x6f\x73\x69\x74\x69\x6f\x6e':_0x4c04df});}else{const _0x39448b=_0x357db8+_0x4f0495;if(_0x39448b>=_0x187a27&&_0x39448b<=_0x267623)_0x49b21f[_0x112a8c(0x21c,'\x35\x31\x6c\x58')](_0x39448b,_0x1fa78d[_0x49f32f]);}}}return _0x2e2fbf;}function minimumCursor(_0x16501e,_0x360a2e){const _0x1e7d4c=_0x406e2b;return _0x16501e[_0x1e7d4c(0x2ff,'\x79\x77\x63\x32')]===-0x481*-0x8+0x1*-0x8b2+-0xdab*0x2?_0x360a2e:Math['\x6d\x69\x6e'](..._0x16501e[_0x1e7d4c(0x31b,'\x45\x79\x78\x24')](_0x4cb85b=>_0x4cb85b[_0x1e7d4c(0x31f,'\x45\x55\x4d\x24')]));}function archiveableCount(_0x35a5e7,_0x10101f,_0x4625c7){const _0x26b38f=_0x406e2b,_0x46ab9c=Math[_0x26b38f(0x1f8,'\x31\x30\x39\x78')](0x1*-0x5d+0x1a9+-0x14c,_0x10101f-_0x35a5e7['\x61\x72\x63\x68\x69\x76\x65'][_0x26b38f(0x307,'\x26\x24\x40\x54')]),_0x147f8b=Math['\x6d\x61\x78'](-0x1c*-0x11b+-0x1629+-0x8cb,_0x35a5e7['\x6c\x6f\x67\x69\x63\x61\x6c\x41'+_0x26b38f(0x2ad,'\x7a\x43\x69\x44')][_0x26b38f(0x1f4,'\x23\x6d\x62\x32')]-_0x4625c7);return Math[_0x26b38f(0x1bb,'\x38\x37\x4e\x33')](_0x46ab9c,_0x147f8b);}function serializeLines(_0x315814){const _0x12ab90=_0x406e2b;return _0x315814[_0x12ab90(0x20e,'\x4a\x54\x45\x45')]===0x1*-0x1813+-0x1727*-0x1+0xec?'':_0x315814[_0x12ab90(0x213,'\x38\x78\x5d\x4d')](_0x2ec27a=>_0x2ec27a[_0x12ab90(0x290,'\x38\x37\x4e\x33')])['\x6a\x6f\x69\x6e']('\x0a')+'\x0a';}function durableReplace(_0x277959,_0x18f17b,_0x1269d7){const _0xe83932=_0x406e2b;let _0x3b75c9=null;try{_0x3b75c9=openSync(_0x277959,'\x77',0x516*-0x1+0x427*0x7+-0x167b),writeSync(_0x3b75c9,_0x1269d7,undefined,_0xe83932(0x308,'\x45\x4f\x32\x50')),fsyncSync(_0x3b75c9),closeSync(_0x3b75c9),_0x3b75c9=null,renameSync(_0x277959,_0x18f17b);}catch(_0x561de5){if(_0xe83932(0x2ac,'\x4e\x5b\x5b\x43')===_0xe83932(0x270,'\x40\x64\x26\x40')){if(_0x3b75c9!==null)closeSync(_0x3b75c9);rmSync(_0x277959,{'\x66\x6f\x72\x63\x65':!![]});throw _0x561de5;}else{const _0xf5bd8d=_0x2011a0(_0xaea548[_0xe83932(0x30b,'\x4a\x54\x45\x45')+_0xe83932(0x1dc,'\x35\x31\x6c\x58')]),_0x48e8f7=_0x2a1ccd(_0x1ff18b['\x70\x61\x74\x68']),_0x25cb1b=_0x48e8f7[_0xe83932(0x1fd,'\x6b\x31\x68\x37')][_0xe83932(0x1e5,'\x68\x41\x46\x4c')]+_0x48e8f7[_0xe83932(0x24f,'\x69\x72\x43\x5e')+_0xe83932(0x227,'\x4c\x58\x70\x78')][_0xe83932(0x199,'\x5b\x70\x38\x4a')],_0x28a0e0=_0x3d7dc8(_0xfbfba7[_0xe83932(0x228,'\x45\x55\x4d\x24')+'\x74\x68\x73']??[],_0x25cb1b),_0x5bda63=_0x3e3a26(_0x28a0e0,_0x48e8f7[_0xe83932(0x314,'\x24\x4b\x63\x26')][_0xe83932(0x20e,'\x4a\x54\x45\x45')]),_0x2e6440=_0x5746db(_0x48e8f7,_0x5bda63,_0xf5bd8d),_0x26342f=_0x48e8f7[_0xe83932(0x1b0,'\x68\x41\x46\x4c')][_0xe83932(0x1f4,'\x23\x6d\x62\x32')],_0x40cd7a=_0x26342f+_0x2e6440-(0x1*0x608+-0x53f+-0xc8);return{'\x6d\x6f\x64\x65':_0xe83932(0x316,'\x23\x6d\x62\x32'),'\x61\x63\x74\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x48e8f7[_0xe83932(0x282,'\x56\x52\x74\x39')+_0xe83932(0x2ad,'\x7a\x43\x69\x44')][_0xe83932(0x229,'\x23\x30\x7a\x4f')],'\x70\x68\x79\x73\x69\x63\x61\x6c\x41\x63\x74\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x48e8f7[_0xe83932(0x2e1,'\x79\x77\x63\x32')]['\x6c\x65\x6e\x67\x74\x68'],'\x61\x72\x63\x68\x69\x76\x65\x52\x65\x63\x6f\x72\x64\x73':_0x48e8f7[_0xe83932(0x207,'\x23\x6d\x62\x32')][_0xe83932(0x1f9,'\x4c\x58\x70\x78')],'\x68\x69\x73\x74\x6f\x72\x79\x52\x65\x63\x6f\x72\x64\x73':_0x25cb1b,'\x6b\x65\x65\x70\x52\x65\x63\x6f\x72\x64\x73':_0xf5bd8d,'\x6d\x69\x6e\x43\x75\x72\x73\x6f\x72':_0x5bda63,'\x63\x75\x72\x73\x6f\x72\x73':_0x28a0e0,'\x6f\x76\x65\x72\x6c\x61\x70\x52\x65\x63\x6f\x72\x64\x73':_0x48e8f7[_0xe83932(0x2f9,'\x45\x4f\x32\x50')],'\x77\x6f\x75\x6c\x64\x41\x72\x63\x68\x69\x76\x65':_0x2e6440,'\x72\x65\x74\x61\x69\x6e\x65\x64\x52\x65\x63\x6f\x72\x64\x73':_0x48e8f7[_0xe83932(0x2e8,'\x79\x43\x6f\x73')+'\x63\x74\x69\x76\x65'][_0xe83932(0x237,'\x76\x26\x68\x72')]-_0x2e6440,'\x61\x72\x63\x68\x69\x76\x65\x49\x64':_0x2e6440===0x1a02*-0x1+-0x8e0+0x5e*0x5f?null:_0x26342f+'\x2d'+_0x40cd7a};}}}function fsyncDirectoryBestEffort(_0x5e461b){let _0x31a050=null;try{_0x31a050=openSync(_0x5e461b,'\x72'),fsyncSync(_0x31a050);}catch{}finally{if(_0x31a050!==null)closeSync(_0x31a050);}}function normalizeKeepRecords(_0x56faba){const _0x329c79=_0x406e2b;if(_0x56faba===undefined)return MATERIAL_ARCHIVE_DEFAULT_KEEP_RECORDS;if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x56faba)||_0x56faba<0x1*0x1826+-0x920*0x3+-0x1*-0x33b)throw new RangeError(_0x329c79(0x29d,'\x5b\x70\x38\x4a')+_0x329c79(0x18f,'\x7a\x43\x69\x44')+_0x329c79(0x291,'\x5b\x70\x38\x4a')+_0x329c79(0x30c,'\x62\x34\x44\x35')+'\x6e\x74\x65\x67\x65\x72');return Math[_0x329c79(0x27c,'\x45\x77\x67\x64')](_0x56faba);}function normalizeRangeStart(_0x4eb12b){const _0x3473e7=_0x406e2b;if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x4eb12b)||_0x4eb12b<-0x1669+0x14fa+-0x1*-0x16f)return-0x1849+-0x11d2+0x1*0x2a1b;return Math[_0x3473e7(0x1c0,'\x5e\x25\x51\x48')](_0x4eb12b);}function normalizeRangeCount(_0x5d0248){const _0x20259f=_0x406e2b;if(!Number[_0x20259f(0x20f,'\x38\x37\x4e\x33')](_0x5d0248))return Number[_0x20259f(0x19c,'\x45\x36\x33\x4d')+_0x20259f(0x2df,'\x35\x31\x6c\x58')];if(_0x5d0248<=0x1f*0xf1+-0x1aa6+-0x289*0x1)return 0xd*0x96+0x24fb+-0x2c99;return Math[_0x20259f(0x19b,'\x23\x30\x7a\x4f')](_0x5d0248);}