@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,408 +1 @@
1
- import { REDACTED, redactString } from './sanitize.js';
2
- export const QUESTION_INTERVAL_MS = 30 * 60 * 1000;
3
- export const URGENT_QUESTION_INTERVAL_MS = 5 * 60 * 1000;
4
- export const EXPLORATION_QUESTION_INTERVAL_MS = 6 * 60 * 60 * 1000;
5
- export const MAX_QUESTIONS_PER_CYCLE = 3;
6
- export const MAX_URGENT_QUESTIONS = 2;
7
- export const URGENT_QUESTION_RUNTIME_WIRING_STATUS = {
8
- status: 'deferred',
9
- reason: 'urgent_question_runtime_wiring_not_connected',
10
- };
11
- const INFRA_ERROR_RE = /\b(401|403|429|500|502|503|504|529)\b|invalid[\s_-]?api[\s_-]?key|authentication[\s_-]?error|unauthorized|permission[\s_-]?denied|rate[\s_-]?limit|too[\s_-]?many[\s_-]?requests|overloaded[\s_-]?error|ECONNRESET|ETIMEDOUT|ENOTFOUND|EAI_AGAIN|EPIPE|fetch[\s_-]?failed|network[\s_-]?error|connection[\s_-]?refused|context[\s_-]?length|token[\s_-]?limit|(?:context|input)[\s_-]?window[\s_-]?exceeded|maximum[\s_-]?context[\s_-]?length/i;
12
- const PROBLEM_SIGNALS = [
13
- 'recurring_error', 'high_failure_ratio', 'capability_gap', 'unsupported_input_type',
14
- 'evolution_saturation', 'force_steady_state', 'consecutive_failure_streak',
15
- 'user_feature_request', 'perf_bottleneck', 'hub_search_miss_with_problem',
16
- 'repair_loop_detected', 'force_innovation_after_repair_loop',
17
- 'plateau_pivot_required', 'plateau_pivot_suggested',
18
- ];
19
- const EXPLORE_STOPWORDS = new Set([
20
- 'the', 'and', 'for', 'that', 'this', 'with', 'from', 'have', 'what', 'your',
21
- 'agent', 'about', 'into', 'then', 'than', 'they', 'them', 'their', 'there',
22
- 'here', 'will', 'would', 'could', 'should', 'been', 'were', 'using', 'used',
23
- 'cycle', 'evolution', 'error', 'errors', 'failed', 'failure', 'null', 'undefined',
24
- 'true', 'false', 'console', 'return', 'function', 'const', 'value', 'result', 'redacted',
25
- ]);
26
- const SENSITIVE_TOPIC_RE = /secret|token|api[_-]?key|password|passwd|credential|bearer|authorization|cookie|session[_-]?id|private[_-]?key|oauth|refresh[_-]?token/i;
27
- const LONG_OPAQUE_RE = /^[a-z0-9_-]{32,}$/i;
28
- function isInfraError(text) {
29
- if (!text)
30
- return false;
31
- return INFRA_ERROR_RE.test(text);
32
- }
33
- function normalizeState(state) {
34
- return {
35
- lastAskedAt: state?.lastAskedAt ?? null,
36
- lastUrgentAt: state?.lastUrgentAt ?? null,
37
- lastExploreAt: state?.lastExploreAt ?? null,
38
- recentQuestions: [...(state?.recentQuestions ?? [])],
39
- };
40
- }
41
- function questionState(state) {
42
- return {
43
- lastAskedAt: state.lastAskedAt,
44
- lastUrgentAt: state.lastUrgentAt,
45
- lastExploreAt: state.lastExploreAt,
46
- recentQuestions: [...state.recentQuestions],
47
- };
48
- }
49
- function parseIsoMs(value) {
50
- if (!value)
51
- return null;
52
- const n = Date.parse(value);
53
- return Number.isFinite(n) ? n : null;
54
- }
55
- function tooSoon(lastAt, intervalMs, now) {
56
- const ts = parseIsoMs(lastAt);
57
- return ts !== null && now - ts < intervalMs;
58
- }
59
- function defaultEnv() {
60
- return typeof process === 'undefined' ? {} : process.env;
61
- }
62
- function isDuplicate(question, recentQuestions) {
63
- const qLower = question.toLowerCase();
64
- const qWords = new Set(qLower.split(/\s+/).filter((w) => w.length > 2));
65
- for (const prevQuestion of recentQuestions) {
66
- const prev = String(prevQuestion || '').toLowerCase();
67
- if (prev === qLower)
68
- return true;
69
- const pWords = new Set(prev.split(/\s+/).filter((w) => w.length > 2));
70
- if (qWords.size === 0 || pWords.size === 0)
71
- continue;
72
- let overlap = 0;
73
- for (const w of qWords)
74
- if (pWords.has(w))
75
- overlap += 1;
76
- if (overlap / Math.max(qWords.size, pWords.size) > 0.7)
77
- return true;
78
- }
79
- return false;
80
- }
81
- function extractErrorContext(transcript, maxLen = 150) {
82
- const line = transcript.split('\n').find((l) => /error|exception|failed|cannot|not supported|unsupported|not implemented/i.test(l));
83
- return line ? line.replace(/\s+/g, ' ').trim().slice(0, maxLen) : '';
84
- }
85
- function hasPublicContext(text) {
86
- return /[a-z0-9]/i.test(text.replaceAll(REDACTED, ''));
87
- }
88
- function safeQuestionContext(text, maxLen) {
89
- const normalized = String(text ?? '').replace(/\s+/g, ' ').trim();
90
- if (!normalized)
91
- return '';
92
- return redactString(normalized).replace(/\s+/g, ' ').trim().slice(0, maxLen);
93
- }
94
- function safeProblemContext(text, maxLen) {
95
- const context = safeQuestionContext(text, maxLen);
96
- if (!context || !hasPublicContext(context) || isInfraError(context))
97
- return '';
98
- return context;
99
- }
100
- function safeTopicToken(token) {
101
- if (EXPLORE_STOPWORDS.has(token))
102
- return false;
103
- if (SENSITIVE_TOPIC_RE.test(token))
104
- return false;
105
- if (LONG_OPAQUE_RE.test(token))
106
- return false;
107
- return true;
108
- }
109
- export function extractTopicKeywords(transcript, memory, max = 5, opts = {}) {
110
- const text = redactString(`${String(transcript ?? '')} ${String(memory ?? '')}`).toLowerCase();
111
- const words = text.match(/[a-z][a-z0-9_-]{4,}/g) ?? [];
112
- const freq = new Map();
113
- for (const word of words) {
114
- if (!safeTopicToken(word))
115
- continue;
116
- freq.set(word, (freq.get(word) ?? 0) + 1);
117
- }
118
- const entries = [...freq.entries()]
119
- .filter(([, count]) => count >= Math.max(1, Math.trunc(opts.minOccurrences ?? 2)));
120
- if (!opts.preserveSourceOrder)
121
- entries.sort((a, b) => b[1] - a[1] || a[0].localeCompare(b[0]));
122
- return entries
123
- .map(([word]) => word)
124
- .slice(0, max);
125
- }
126
- function safeGeneId(id) {
127
- if (!/^[a-z0-9_.:-]{3,80}$/i.test(id))
128
- return false;
129
- return !SENSITIVE_TOPIC_RE.test(id);
130
- }
131
- function extractRecentGeneIds(recentEvents, count = 5) {
132
- const ids = [];
133
- for (const event of (recentEvents ?? []).slice(-count)) {
134
- const genes = event.genes_used ?? event.genesUsed ?? [];
135
- const first = genes[0];
136
- if (typeof first === 'string' && safeGeneId(first))
137
- ids.push(first);
138
- }
139
- return [...new Set(ids)].slice(0, count);
140
- }
141
- function safeSignal(signal) {
142
- if (!/^[a-z][a-z0-9_]{3,40}$/i.test(signal))
143
- return false;
144
- if (SENSITIVE_TOPIC_RE.test(signal))
145
- return false;
146
- if (signal.startsWith('errsig') || signal.startsWith('ban_gene') || signal.startsWith('recurring_'))
147
- return false;
148
- return !PROBLEM_SIGNALS.some((p) => signal === p || signal.startsWith(p));
149
- }
150
- function buildExplorationCandidate(signals, recentEvents, transcript, memory) {
151
- const topicSignals = signals.map(String).filter(safeSignal).slice(0, 4);
152
- const keywords = extractTopicKeywords(transcript, memory, 5);
153
- const genes = extractRecentGeneIds(recentEvents, 5);
154
- if (keywords.length === 0 && genes.length === 0)
155
- return null;
156
- const focus = keywords.length > 0 ? keywords.slice(0, 5).join(', ') : genes.join(', ');
157
- return {
158
- question: `A productively-running agent working on ${focus} wants to extend its capabilities. What reusable patterns, automation genes, or complementary tools in this area would be most valuable to build next, and what adjacent high-value problems is the ecosystem not yet solving well here?`,
159
- amount: 0,
160
- signals: ['capability_frontier', 'exploration', 'proactive_curiosity', ...keywords.slice(0, 2), ...topicSignals.slice(0, 2)],
161
- priority: 0,
162
- };
163
- }
164
- function buildStandardCandidates(signals, recentEvents, transcript) {
165
- const candidates = [];
166
- const signalSet = new Set(signals);
167
- if (signalSet.has('recurring_error') || signalSet.has('high_failure_ratio')) {
168
- const errSig = signals.find((s) => String(s).startsWith('recurring_errsig'));
169
- if (errSig) {
170
- const errDetail = safeProblemContext(String(errSig).replace(/^recurring_errsig\(\d+x\):/, ''), 120);
171
- if (errDetail) {
172
- candidates.push({
173
- question: `Recurring error in evolution cycle that auto-repair cannot resolve: ${errDetail} -- What approaches or patches have worked for similar issues?`,
174
- amount: 0,
175
- signals: ['recurring_error', 'auto_repair_failed'],
176
- priority: 3,
177
- });
178
- }
179
- }
180
- }
181
- if (signalSet.has('capability_gap') || signalSet.has('unsupported_input_type')) {
182
- const gapContext = safeProblemContext(extractErrorContext(transcript, 150), 150);
183
- if (gapContext) {
184
- candidates.push({
185
- question: `Capability gap detected in agent environment: ${gapContext} -- How can this be addressed or what alternative approaches exist?`,
186
- amount: 0,
187
- signals: ['capability_gap'],
188
- priority: 2,
189
- });
190
- }
191
- }
192
- if (signalSet.has('evolution_saturation') || signalSet.has('force_steady_state')) {
193
- const uniqueGenes = extractRecentGeneIds(recentEvents, 5);
194
- candidates.push({
195
- question: `Agent evolution has reached saturation after exhausting genes: [${uniqueGenes.join(', ')}]. What new evolution directions, automation patterns, or capability genes would be most valuable?`,
196
- amount: 0,
197
- signals: ['evolution_saturation', 'innovation_needed'],
198
- priority: 1,
199
- });
200
- }
201
- const failStreak = signals.find((s) => String(s).startsWith('consecutive_failure_streak_'));
202
- if (failStreak) {
203
- const streakCount = Number.parseInt(String(failStreak).replace('consecutive_failure_streak_', ''), 10) || 0;
204
- if (streakCount >= 3) {
205
- const failGene = signals.find((s) => String(s).startsWith('ban_gene:'));
206
- const failGeneId = failGene ? safeQuestionContext(String(failGene).replace('ban_gene:', ''), 80) || 'unknown' : 'unknown';
207
- candidates.push({
208
- question: `Agent has failed ${streakCount} consecutive evolution cycles (last gene: ${failGeneId}). The current approach is exhausted. What alternative strategies or environmental fixes should be tried?`,
209
- amount: 0,
210
- signals: ['failure_streak', 'external_help_needed'],
211
- priority: 3,
212
- });
213
- }
214
- }
215
- if (signalSet.has('user_feature_request') || signals.some((s) => String(s).startsWith('user_feature_request:'))) {
216
- const featureLine = transcript.split('\n').find((l) => /\b(add|implement|create|build|i want|i need|please add)\b/i.test(l));
217
- if (featureLine) {
218
- const featureContext = safeQuestionContext(featureLine, 150);
219
- candidates.push({
220
- question: `User requested a feature that may benefit from community solutions: ${featureContext} -- Are there existing implementations or best practices for this?`,
221
- amount: 0,
222
- signals: ['user_feature_request', 'community_solution_sought'],
223
- priority: 1,
224
- });
225
- }
226
- }
227
- if (signalSet.has('perf_bottleneck')) {
228
- const perfLine = transcript.split('\n').find((l) => /\b(slow|timeout|latency|bottleneck|high cpu|high memory)\b/i.test(l));
229
- if (perfLine) {
230
- const perfContext = safeQuestionContext(perfLine, 150);
231
- candidates.push({
232
- question: `Performance bottleneck detected: ${perfContext} -- What optimization strategies or architectural patterns address this?`,
233
- amount: 0,
234
- signals: ['perf_bottleneck', 'optimization_sought'],
235
- priority: 2,
236
- });
237
- }
238
- }
239
- if (signalSet.has('hub_search_miss_with_problem')) {
240
- const problemCtx = safeProblemContext(extractErrorContext(transcript, 120), 120);
241
- const problemSignalList = signals
242
- .filter((s) => s === 'log_error' || s === 'test_failure' || s === 'deployment_issue' || String(s).startsWith('errsig:'))
243
- .map((s) => safeQuestionContext(String(s), 80))
244
- .filter((s) => s && hasPublicContext(s) && !isInfraError(s))
245
- .slice(0, 3);
246
- if (problemCtx || problemSignalList.length > 0) {
247
- candidates.push({
248
- question: `No matching solution found in ecosystem for active problem (signals: ${problemSignalList.join(', ')}). Context: ${problemCtx || 'complex multi-signal issue'} -- What strategies, patterns, or tools address this class of problem?`,
249
- amount: 0,
250
- signals: ['hub_search_miss', 'ecosystem_gap', 'solution_sought'],
251
- priority: 2,
252
- });
253
- }
254
- }
255
- if (signalSet.has('repair_loop_detected') || signalSet.has('force_innovation_after_repair_loop')) {
256
- const recentGenes = extractRecentGeneIds(recentEvents, 6);
257
- candidates.push({
258
- question: `Agent is stuck in a repair loop (repair->fail->repair cycle) with genes: [${recentGenes.join(', ')}]. The underlying issue persists despite multiple attempts. What fundamentally different approach could break this cycle?`,
259
- amount: 0,
260
- signals: ['repair_loop', 'architectural_help_needed'],
261
- priority: 3,
262
- });
263
- }
264
- if (signalSet.has('plateau_pivot_required') || signalSet.has('plateau_pivot_suggested')) {
265
- const severity = signalSet.has('plateau_pivot_required') ? 'severe' : 'moderate';
266
- candidates.push({
267
- question: `Agent evolution has plateaued (${severity} -- no improvement in recent cycles). Current gene pool and mutation strategies are exhausted. What novel approaches, architectural patterns, or paradigm shifts could restart progress?`,
268
- amount: 0,
269
- signals: ['evolution_plateau', 'pivot_needed'],
270
- priority: severity === 'severe' ? 3 : 2,
271
- });
272
- }
273
- return candidates;
274
- }
275
- function publicQuestion(q) {
276
- return { question: q.question, amount: q.amount, signals: [...(q.signals ?? [])] };
277
- }
278
- function completeStandardGeneration(candidates, state, now) {
279
- if (candidates.length === 0)
280
- return { questions: [], state: questionState(state), changed: false };
281
- candidates.sort((a, b) => b.priority - a.priority);
282
- const filtered = [];
283
- for (const candidate of candidates) {
284
- if (filtered.length >= MAX_QUESTIONS_PER_CYCLE)
285
- break;
286
- if (!isDuplicate(candidate.question, state.recentQuestions))
287
- filtered.push(candidate);
288
- }
289
- if (filtered.length === 0)
290
- return { questions: [], state: questionState(state), changed: false };
291
- const recentQuestions = [...state.recentQuestions, ...filtered.map((q) => q.question)].slice(-30);
292
- const explorationSent = filtered.some((q) => q.signals?.includes('exploration'));
293
- const nextState = {
294
- lastAskedAt: new Date(now).toISOString(),
295
- lastUrgentAt: state.lastUrgentAt,
296
- lastExploreAt: explorationSent ? new Date(now).toISOString() : state.lastExploreAt,
297
- recentQuestions,
298
- };
299
- return { questions: filtered.map(publicQuestion), state: nextState, changed: true };
300
- }
301
- export function generateQuestions(input = {}) {
302
- const now = input.now ?? Date.now();
303
- const state = normalizeState(input.state);
304
- if (tooSoon(state.lastAskedAt, QUESTION_INTERVAL_MS, now))
305
- return { questions: [], state: questionState(state), changed: false };
306
- const signals = (input.signals ?? []).map(String);
307
- const recentEvents = input.recentEvents ?? [];
308
- const transcript = String(input.sessionTranscript ?? '');
309
- const memory = String(input.memorySnippet ?? '');
310
- const candidates = buildStandardCandidates(signals, recentEvents, transcript);
311
- const env = input.env ?? defaultEnv();
312
- let explorationEligible = input.explorationEnabled ?? (env['EVOLVER_EXPLORATION_QUESTIONS'] !== '0');
313
- if (explorationEligible && tooSoon(state.lastExploreAt, EXPLORATION_QUESTION_INTERVAL_MS, now))
314
- explorationEligible = false;
315
- if (explorationEligible) {
316
- const exploration = buildExplorationCandidate(signals, recentEvents, transcript, memory);
317
- if (exploration)
318
- candidates.push(exploration);
319
- }
320
- return completeStandardGeneration(candidates, state, now);
321
- }
322
- function buildUrgentCandidates(input) {
323
- const candidates = [];
324
- if (input.validationFailed) {
325
- const valErrors = safeProblemContext(String(input.validationErrors ?? ''), 200);
326
- const geneId = input.geneId ? safeQuestionContext(input.geneId, 80) || 'unknown' : 'unknown';
327
- if (valErrors) {
328
- candidates.push({
329
- question: `Evolution cycle produced a patch that failed validation (gene: ${geneId}). Errors: ${valErrors} -- What is the correct approach to fix this validation failure?`,
330
- amount: 0,
331
- signals: ['validation_failure', 'solidify_rejected'],
332
- priority: 3,
333
- });
334
- }
335
- }
336
- if (input.lowConfidence && Number.isFinite(input.confidenceScore)) {
337
- const score = Math.round(Number(input.confidenceScore) * 100) / 100;
338
- candidates.push({
339
- question: `Evolution cycle completed with low confidence (score: ${score}, intent: ${input.intent || 'unknown'}). The change is uncertain and may not be beneficial. What higher-confidence approaches exist for this type of problem?`,
340
- amount: 0,
341
- signals: ['low_confidence', 'uncertain_outcome'],
342
- priority: 2,
343
- });
344
- }
345
- if (input.llmReviewRejected) {
346
- const reason = safeProblemContext(String(input.llmReviewReason ?? ''), 200);
347
- if (reason) {
348
- candidates.push({
349
- question: `Proposed code change was rejected by LLM review: ${reason} -- What alternative implementation approach would pass quality review?`,
350
- amount: 0,
351
- signals: ['llm_review_rejected', 'quality_concern'],
352
- priority: 3,
353
- });
354
- }
355
- }
356
- if (input.zeroBlastRadius && input.hadSignals) {
357
- const attemptedSignals = (input.signals ?? [])
358
- .map((s) => safeQuestionContext(String(s), 80))
359
- .filter((s) => s && hasPublicContext(s))
360
- .slice(0, 5)
361
- .join(', ');
362
- candidates.push({
363
- question: `Evolution cycle targeting signals [${attemptedSignals}] produced zero blast radius (no effective changes). The approach was insufficient. What concrete implementation steps would address these signals?`,
364
- amount: 0,
365
- signals: ['zero_blast_radius', 'ineffective_approach'],
366
- priority: 2,
367
- });
368
- }
369
- if (input.taskCompletionFailed) {
370
- const taskTitle = safeProblemContext(String(input.taskTitle ?? ''), 120);
371
- const taskSignals = safeProblemContext(String(input.taskSignals ?? ''), 100);
372
- if (taskTitle || taskSignals) {
373
- candidates.push({
374
- question: `Failed to complete claimed task: "${taskTitle || 'unknown'}" (signals: ${taskSignals || 'unknown'}). The problem exceeds current capabilities. What approaches, tools, or patterns would solve this?`,
375
- amount: 0,
376
- signals: ['task_completion_failed', 'help_needed'],
377
- priority: 3,
378
- });
379
- }
380
- }
381
- return candidates;
382
- }
383
- export function generateUrgentQuestions(input = {}) {
384
- const now = input.now ?? Date.now();
385
- const state = normalizeState(input.state);
386
- if (tooSoon(state.lastUrgentAt, URGENT_QUESTION_INTERVAL_MS, now))
387
- return { questions: [], state: questionState(state), changed: false };
388
- const candidates = buildUrgentCandidates(input);
389
- if (candidates.length === 0)
390
- return { questions: [], state: questionState(state), changed: false };
391
- candidates.sort((a, b) => b.priority - a.priority);
392
- const filtered = [];
393
- for (const candidate of candidates) {
394
- if (filtered.length >= MAX_URGENT_QUESTIONS)
395
- break;
396
- if (!isDuplicate(candidate.question, state.recentQuestions))
397
- filtered.push(candidate);
398
- }
399
- if (filtered.length === 0)
400
- return { questions: [], state: questionState(state), changed: false };
401
- const nextState = {
402
- lastAskedAt: state.lastAskedAt,
403
- lastUrgentAt: new Date(now).toISOString(),
404
- lastExploreAt: state.lastExploreAt,
405
- recentQuestions: [...state.recentQuestions, ...filtered.map((q) => q.question)].slice(-30),
406
- };
407
- return { questions: filtered.map(publicQuestion), state: nextState, changed: true };
408
- }
1
+ const _0xdfc1a=_0x1299;(function(_0x18a079,_0x5423a8){const _0x3d0bb6=_0x1299,_0x5c7f0e=_0x18a079();while(!![]){try{const _0x102a24=parseInt(_0x3d0bb6(0x251,'\x68\x5e\x30\x70'))/(0x23fa+0x2*-0xfd3+0x7b*-0x9)*(parseInt(_0x3d0bb6(0x30b,'\x58\x5d\x35\x6b'))/(-0x1*-0x13c1+-0x2*-0xb75+-0x2aa9))+-parseInt(_0x3d0bb6(0x1ab,'\x6b\x43\x72\x25'))/(0x20bf*-0x1+-0x453+0x1*0x2515)+-parseInt(_0x3d0bb6(0x2bd,'\x44\x67\x68\x53'))/(-0x37*-0x7f+-0x3*0x391+0xca*-0x15)+-parseInt(_0x3d0bb6(0x431,'\x63\x4a\x31\x68'))/(-0x1ae1+-0x176d+0x3253)+parseInt(_0x3d0bb6(0x3fc,'\x31\x71\x5d\x70'))/(0x1565*-0x1+0x3b*0x2b+0xb82)+parseInt(_0x3d0bb6(0x31a,'\x69\x30\x26\x77'))/(-0x541+0x51+0x4f7)+parseInt(_0x3d0bb6(0x30e,'\x45\x73\x4a\x6d'))/(-0x1*-0x1c88+-0x162*0x2+0x44a*-0x6)*(parseInt(_0x3d0bb6(0x311,'\x44\x67\x68\x53'))/(0x1a6a+-0x1*0x17f1+0x34*-0xc));if(_0x102a24===_0x5423a8)break;else _0x5c7f0e['push'](_0x5c7f0e['shift']());}catch(_0x101e3d){_0x5c7f0e['push'](_0x5c7f0e['shift']());}}}(_0x10f9,-0x503a1+-0x4625d+-0x1*-0xc2d2f));import{REDACTED,redactString}from'\x2e\x2f\x73\x61\x6e\x69\x74\x69\x7a\x65\x2e\x6a\x73';export const QUESTION_INTERVAL_MS=(0x3dc+0x26fc+-0x2aba)*(-0x3e2*0x2+-0x2056+0x2856)*(0x1f8d+0x2*0x1d+0x1bdf*-0x1);export const URGENT_QUESTION_INTERVAL_MS=(-0x1f44+-0x71f*0x3+-0x2e*-0x125)*(0x69c+-0xc7a*0x3+0x1f0e)*(-0x185e+0x1a*0xfe+0x27a);export const EXPLORATION_QUESTION_INTERVAL_MS=(0x1*-0x249b+-0x112*0x21+0x47f3)*(-0x20a8+-0x13c3+-0x118d*-0x3)*(0x551*0x7+0x1fce+-0x44c9*0x1)*(0x2*0x93+0x4*0x3a5+0x22*-0x59);export const MAX_QUESTIONS_PER_CYCLE=-0x506+-0x10f4+-0x15fd*-0x1;export const MAX_URGENT_QUESTIONS=0xa*0x1af+0x4d*0x14+0x22*-0xac;export const URGENT_QUESTION_RUNTIME_WIRING_STATUS={'\x73\x74\x61\x74\x75\x73':'\x64\x65\x66\x65\x72\x72\x65\x64','\x72\x65\x61\x73\x6f\x6e':_0xdfc1a(0x168,'\x31\x71\x5d\x70')+_0xdfc1a(0x27e,'\x48\x75\x79\x58')+_0xdfc1a(0x3b1,'\x52\x50\x44\x25')+_0xdfc1a(0x1c1,'\x6d\x6b\x34\x29')+_0xdfc1a(0x196,'\x44\x67\x68\x53')+_0xdfc1a(0x45d,'\x23\x42\x66\x46')};const INFRA_ERROR_RE=/\b(401|403|429|500|502|503|504|529)\b|invalid[\s_-]?api[\s_-]?key|authentication[\s_-]?error|unauthorized|permission[\s_-]?denied|rate[\s_-]?limit|too[\s_-]?many[\s_-]?requests|overloaded[\s_-]?error|ECONNRESET|ETIMEDOUT|ENOTFOUND|EAI_AGAIN|EPIPE|fetch[\s_-]?failed|network[\s_-]?error|connection[\s_-]?refused|context[\s_-]?length|token[\s_-]?limit|(?:context|input)[\s_-]?window[\s_-]?exceeded|maximum[\s_-]?context[\s_-]?length/i,PROBLEM_SIGNALS=[_0xdfc1a(0x35b,'\x53\x61\x25\x74')+_0xdfc1a(0x361,'\x51\x39\x37\x52'),_0xdfc1a(0x252,'\x72\x42\x6b\x30')+_0xdfc1a(0x1c0,'\x66\x61\x53\x69')+'\x69\x6f',_0xdfc1a(0x2e8,'\x72\x42\x6b\x30')+_0xdfc1a(0x44b,'\x59\x71\x45\x65'),_0xdfc1a(0x145,'\x47\x4e\x33\x50')+'\x74\x65\x64\x5f\x69\x6e\x70\x75'+_0xdfc1a(0x16a,'\x59\x61\x52\x29'),_0xdfc1a(0x2a4,'\x59\x61\x52\x29')+_0xdfc1a(0x296,'\x30\x51\x23\x45')+'\x74\x69\x6f\x6e',_0xdfc1a(0x23b,'\x5b\x77\x4c\x61')+'\x65\x61\x64\x79\x5f\x73\x74\x61'+'\x74\x65',_0xdfc1a(0x151,'\x32\x34\x66\x74')+'\x69\x76\x65\x5f\x66\x61\x69\x6c'+_0xdfc1a(0x2f4,'\x66\x61\x53\x69')+'\x61\x6b',_0xdfc1a(0x38a,'\x76\x53\x5a\x76')+'\x74\x75\x72\x65\x5f\x72\x65\x71'+'\x75\x65\x73\x74',_0xdfc1a(0x3e6,'\x47\x38\x31\x71')+_0xdfc1a(0x27c,'\x5a\x75\x75\x24'),_0xdfc1a(0x3a2,'\x66\x61\x53\x69')+_0xdfc1a(0x337,'\x6b\x61\x61\x52')+'\x77\x69\x74\x68\x5f\x70\x72\x6f'+_0xdfc1a(0x479,'\x6d\x6b\x34\x29'),_0xdfc1a(0x1ef,'\x68\x5e\x30\x70')+'\x6f\x6f\x70\x5f\x64\x65\x74\x65'+_0xdfc1a(0x411,'\x77\x68\x5e\x63'),_0xdfc1a(0x413,'\x51\x39\x37\x52')+_0xdfc1a(0x19f,'\x5b\x70\x50\x55')+_0xdfc1a(0x3bc,'\x66\x61\x53\x69')+_0xdfc1a(0x48c,'\x6d\x6b\x34\x29')+'\x6f\x70',_0xdfc1a(0x1da,'\x63\x4a\x31\x68')+_0xdfc1a(0x452,'\x48\x71\x65\x56')+_0xdfc1a(0x41f,'\x69\x30\x26\x77'),_0xdfc1a(0x41e,'\x58\x5d\x35\x6b')+_0xdfc1a(0x432,'\x47\x38\x31\x71')+_0xdfc1a(0x3cf,'\x76\x76\x5a\x44')],EXPLORE_STOPWORDS=new Set([_0xdfc1a(0x186,'\x53\x38\x49\x43'),_0xdfc1a(0x18a,'\x6b\x6d\x5d\x58'),_0xdfc1a(0x28f,'\x76\x76\x5a\x44'),'\x74\x68\x61\x74','\x74\x68\x69\x73','\x77\x69\x74\x68','\x66\x72\x6f\x6d',_0xdfc1a(0x190,'\x47\x71\x52\x71'),_0xdfc1a(0x27b,'\x77\x68\x5e\x63'),_0xdfc1a(0x1b9,'\x47\x71\x52\x71'),_0xdfc1a(0x19a,'\x53\x61\x25\x74'),_0xdfc1a(0x3c7,'\x51\x39\x37\x52'),_0xdfc1a(0x256,'\x6b\x61\x61\x52'),_0xdfc1a(0x487,'\x66\x61\x53\x69'),_0xdfc1a(0x298,'\x76\x53\x5a\x76'),_0xdfc1a(0x403,'\x68\x5e\x30\x70'),_0xdfc1a(0x1f3,'\x48\x71\x65\x56'),'\x74\x68\x65\x69\x72',_0xdfc1a(0x36c,'\x53\x38\x49\x43'),_0xdfc1a(0x3d2,'\x6b\x61\x61\x52'),_0xdfc1a(0x1e2,'\x59\x71\x45\x65'),_0xdfc1a(0x188,'\x6d\x6b\x34\x29'),'\x63\x6f\x75\x6c\x64',_0xdfc1a(0x334,'\x5d\x77\x63\x41'),_0xdfc1a(0x235,'\x44\x31\x49\x44'),_0xdfc1a(0x1ac,'\x47\x38\x31\x71'),_0xdfc1a(0x1cf,'\x68\x5e\x30\x70'),_0xdfc1a(0x1b7,'\x73\x6b\x59\x57'),_0xdfc1a(0x3ec,'\x48\x71\x65\x56'),_0xdfc1a(0x156,'\x59\x28\x7a\x4f')+'\x6e',_0xdfc1a(0x455,'\x23\x42\x66\x46'),_0xdfc1a(0x3ba,'\x4e\x6e\x59\x25'),_0xdfc1a(0x4b1,'\x6b\x43\x72\x25'),_0xdfc1a(0x28b,'\x5b\x77\x4c\x61'),'\x6e\x75\x6c\x6c',_0xdfc1a(0x3d4,'\x66\x61\x53\x69')+'\x64',_0xdfc1a(0x2ab,'\x72\x42\x6b\x30'),_0xdfc1a(0x37c,'\x53\x61\x25\x74'),'\x63\x6f\x6e\x73\x6f\x6c\x65','\x72\x65\x74\x75\x72\x6e',_0xdfc1a(0x320,'\x59\x28\x7a\x4f'),'\x63\x6f\x6e\x73\x74',_0xdfc1a(0x3b4,'\x5a\x75\x75\x24'),_0xdfc1a(0x37b,'\x53\x38\x49\x43'),_0xdfc1a(0x3d6,'\x45\x73\x4a\x6d')]),SENSITIVE_TOPIC_RE=/secret|token|api[_-]?key|password|passwd|credential|bearer|authorization|cookie|session[_-]?id|private[_-]?key|oauth|refresh[_-]?token/i,LONG_OPAQUE_RE=/^[a-z0-9_-]{32,}$/i;function _0x1299(_0xe6f854,_0x3a0095){_0xe6f854=_0xe6f854-(0xd51+0x12a0+0x1ebe*-0x1);const _0x197f17=_0x10f9();let _0x41fe7b=_0x197f17[_0xe6f854];if(_0x1299['\x78\x68\x52\x4a\x4a\x49']===undefined){var _0x386b2a=function(_0x3dbba7){const _0x3554e2='\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 _0x5494d2='',_0x21f4e5='';for(let _0x4b28a8=0x1*0x1f0d+0x187f*0x1+-0x378c,_0x203c9d,_0x338443,_0xd0d9de=0x3ad*0x1+0x22dd*0x1+-0x268a*0x1;_0x338443=_0x3dbba7['\x63\x68\x61\x72\x41\x74'](_0xd0d9de++);~_0x338443&&(_0x203c9d=_0x4b28a8%(-0x260e*0x1+0x1d*-0x9+0x2717)?_0x203c9d*(0x1*0x3fb+0x1*0xb1d+0x64*-0x26)+_0x338443:_0x338443,_0x4b28a8++%(-0x1b9b+-0x1*0x11f1+0x2d90*0x1))?_0x5494d2+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1df8+-0x5cf*0x1+-0x172a&_0x203c9d>>(-(0x25*-0x4b+-0x3*-0xa67+0x145c*-0x1)*_0x4b28a8&-0x1216+-0x254e+0x15a*0x29)):-0x1fa3+-0x1*0xeeb+0x1747*0x2){_0x338443=_0x3554e2['\x69\x6e\x64\x65\x78\x4f\x66'](_0x338443);}for(let _0x1ec3f3=0x21cd+-0x1*-0xca6+-0x2e73,_0x5baaa3=_0x5494d2['\x6c\x65\x6e\x67\x74\x68'];_0x1ec3f3<_0x5baaa3;_0x1ec3f3++){_0x21f4e5+='\x25'+('\x30\x30'+_0x5494d2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1ec3f3)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x14f5*0x1+-0x8b*-0x1a+-0x2303))['\x73\x6c\x69\x63\x65'](-(-0x1b*-0x1d+-0x1*-0x251e+-0x282b));}return decodeURIComponent(_0x21f4e5);};const _0x3bc714=function(_0x586bef,_0x128603){let _0x89fbc0=[],_0x863829=-0x7a8+-0x199f+0x1*0x2147,_0x43ae40,_0x17af5e='';_0x586bef=_0x386b2a(_0x586bef);let _0x7e009a;for(_0x7e009a=0x5*-0x579+-0x1af*-0x17+-0x2*0x5ae;_0x7e009a<-0x1ca5+-0x894+-0x2639*-0x1;_0x7e009a++){_0x89fbc0[_0x7e009a]=_0x7e009a;}for(_0x7e009a=0x1f81+-0x561+-0x1a20;_0x7e009a<-0x2*-0x212+-0x18ab+0x1587;_0x7e009a++){_0x863829=(_0x863829+_0x89fbc0[_0x7e009a]+_0x128603['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x7e009a%_0x128603['\x6c\x65\x6e\x67\x74\x68']))%(0x1*-0x1139+0x1*-0x144b+-0x1ed*-0x14),_0x43ae40=_0x89fbc0[_0x7e009a],_0x89fbc0[_0x7e009a]=_0x89fbc0[_0x863829],_0x89fbc0[_0x863829]=_0x43ae40;}_0x7e009a=-0x25a6+0xf82+0xb12*0x2,_0x863829=-0x71*0x2b+0x23f0+-0x5a7*0x3;for(let _0x3c63c2=-0x1*0xd9c+0x63*0x31+-0x557;_0x3c63c2<_0x586bef['\x6c\x65\x6e\x67\x74\x68'];_0x3c63c2++){_0x7e009a=(_0x7e009a+(0xb*0x106+-0x1e1a+0x12d9*0x1))%(-0x1*-0xa98+0x1*-0x1b1+-0x121*0x7),_0x863829=(_0x863829+_0x89fbc0[_0x7e009a])%(0x1a35*-0x1+0x26df+-0xbaa),_0x43ae40=_0x89fbc0[_0x7e009a],_0x89fbc0[_0x7e009a]=_0x89fbc0[_0x863829],_0x89fbc0[_0x863829]=_0x43ae40,_0x17af5e+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x586bef['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3c63c2)^_0x89fbc0[(_0x89fbc0[_0x7e009a]+_0x89fbc0[_0x863829])%(0x155*-0x13+0xa2+0x19ad)]);}return _0x17af5e;};_0x1299['\x52\x4f\x44\x47\x72\x75']=_0x3bc714,_0x1299['\x49\x54\x58\x50\x43\x76']={},_0x1299['\x78\x68\x52\x4a\x4a\x49']=!![];}const _0x144f5c=_0x197f17[0x1164+-0x12fd+0x199],_0x2f5d8c=_0xe6f854+_0x144f5c,_0x3fbf84=_0x1299['\x49\x54\x58\x50\x43\x76'][_0x2f5d8c];return!_0x3fbf84?(_0x1299['\x62\x72\x6a\x77\x56\x55']===undefined&&(_0x1299['\x62\x72\x6a\x77\x56\x55']=!![]),_0x41fe7b=_0x1299['\x52\x4f\x44\x47\x72\x75'](_0x41fe7b,_0x3a0095),_0x1299['\x49\x54\x58\x50\x43\x76'][_0x2f5d8c]=_0x41fe7b):_0x41fe7b=_0x3fbf84,_0x41fe7b;}function isInfraError(_0xd11971){const _0x5c0510=_0xdfc1a;if(!_0xd11971)return![];return INFRA_ERROR_RE[_0x5c0510(0x39b,'\x5b\x77\x4c\x61')](_0xd11971);}function normalizeState(_0x102d77){const _0x3cb697=_0xdfc1a;return{'\x6c\x61\x73\x74\x41\x73\x6b\x65\x64\x41\x74':_0x102d77?.[_0x3cb697(0x47f,'\x59\x28\x7a\x4f')+_0x3cb697(0x1af,'\x45\x73\x4a\x6d')]??null,'\x6c\x61\x73\x74\x55\x72\x67\x65\x6e\x74\x41\x74':_0x102d77?.[_0x3cb697(0x310,'\x31\x73\x55\x4a')+_0x3cb697(0x2aa,'\x52\x50\x44\x25')]??null,'\x6c\x61\x73\x74\x45\x78\x70\x6c\x6f\x72\x65\x41\x74':_0x102d77?.[_0x3cb697(0x20c,'\x63\x4a\x31\x68')+_0x3cb697(0x3dc,'\x5d\x77\x63\x41')]??null,'\x72\x65\x63\x65\x6e\x74\x51\x75\x65\x73\x74\x69\x6f\x6e\x73':[..._0x102d77?.[_0x3cb697(0x19e,'\x48\x71\x65\x56')+_0x3cb697(0x346,'\x58\x5d\x35\x6b')]??[]]};}function questionState(_0x43348e){const _0x45be77=_0xdfc1a;return{'\x6c\x61\x73\x74\x41\x73\x6b\x65\x64\x41\x74':_0x43348e[_0x45be77(0x460,'\x5d\x77\x63\x41')+_0x45be77(0x234,'\x5d\x77\x63\x41')],'\x6c\x61\x73\x74\x55\x72\x67\x65\x6e\x74\x41\x74':_0x43348e['\x6c\x61\x73\x74\x55\x72\x67\x65'+_0x45be77(0x3b7,'\x68\x5e\x30\x70')],'\x6c\x61\x73\x74\x45\x78\x70\x6c\x6f\x72\x65\x41\x74':_0x43348e['\x6c\x61\x73\x74\x45\x78\x70\x6c'+_0x45be77(0x3aa,'\x45\x73\x4a\x6d')],'\x72\x65\x63\x65\x6e\x74\x51\x75\x65\x73\x74\x69\x6f\x6e\x73':[..._0x43348e[_0x45be77(0x2ae,'\x5b\x77\x4c\x61')+_0x45be77(0x1e3,'\x47\x38\x31\x71')]]};}function parseIsoMs(_0x2f3ab5){const _0x38583d=_0xdfc1a;if(!_0x2f3ab5)return null;const _0x3a471c=Date[_0x38583d(0x355,'\x47\x4e\x33\x50')](_0x2f3ab5);return Number[_0x38583d(0x23e,'\x68\x5e\x30\x70')](_0x3a471c)?_0x3a471c:null;}function tooSoon(_0x113dd9,_0x3fc404,_0x2d0627){const _0x5c0165=parseIsoMs(_0x113dd9);return _0x5c0165!==null&&_0x2d0627-_0x5c0165<_0x3fc404;}function defaultEnv(){const _0x57f568=_0xdfc1a;return typeof process===_0x57f568(0x1bb,'\x4e\x6e\x59\x25')+'\x64'?{}:process.env;}function isDuplicate(_0x438bcc,_0x5b13fc){const _0x3dfc0a=_0xdfc1a,_0x560ae6=_0x438bcc['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x3dfc0a(0x1fd,'\x47\x4e\x33\x50')](),_0x3002ea=new Set(_0x560ae6[_0x3dfc0a(0x1a3,'\x77\x68\x5e\x63')](/\s+/)[_0x3dfc0a(0x3fb,'\x44\x67\x68\x53')](_0x5076cc=>_0x5076cc['\x6c\x65\x6e\x67\x74\x68']>-0x2*-0x615+0x2*-0xa5e+0x4*0x225));for(const _0x1ad91d of _0x5b13fc){const _0x1a50fd=String(_0x1ad91d||'')[_0x3dfc0a(0x292,'\x66\x41\x7a\x25')+_0x3dfc0a(0x154,'\x45\x73\x4a\x6d')]();if(_0x1a50fd===_0x560ae6)return!![];const _0x3b0bb2=new Set(_0x1a50fd[_0x3dfc0a(0x1d9,'\x5b\x77\x4c\x61')](/\s+/)['\x66\x69\x6c\x74\x65\x72'](_0x31d71a=>_0x31d71a[_0x3dfc0a(0x32f,'\x66\x61\x53\x69')]>-0x1f49+-0x1*0x1532+0x117f*0x3));if(_0x3002ea[_0x3dfc0a(0x40d,'\x69\x30\x26\x77')]===0xf3*-0x1c+-0xb6*-0x18+-0x1*-0x984||_0x3b0bb2['\x73\x69\x7a\x65']===0x87b+0x2426+-0x2ca1)continue;let _0x371343=0x1092+-0x848+0x2*-0x425;for(const _0x5285b4 of _0x3002ea)if(_0x3b0bb2[_0x3dfc0a(0x3c9,'\x45\x77\x32\x5b')](_0x5285b4))_0x371343+=0x2200+0x1*-0x1249+-0xfb6;if(_0x371343/Math[_0x3dfc0a(0x469,'\x76\x65\x4a\x75')](_0x3002ea[_0x3dfc0a(0x2b4,'\x6b\x43\x72\x25')],_0x3b0bb2[_0x3dfc0a(0x21f,'\x53\x61\x25\x74')])>-0x1df5+0x18*0xa+0x1d05+0.7)return!![];}return![];}function extractErrorContext(_0x521eba,_0x14c8de=0x13*-0x1ab+-0x1230+0x1*0x3277){const _0x5ac857=_0xdfc1a,_0x5a7f45=_0x521eba['\x73\x70\x6c\x69\x74']('\x0a')[_0x5ac857(0x408,'\x76\x65\x4a\x75')](_0x4830e9=>/error|exception|failed|cannot|not supported|unsupported|not implemented/i[_0x5ac857(0x1c3,'\x76\x53\x5a\x76')](_0x4830e9));return _0x5a7f45?_0x5a7f45[_0x5ac857(0x38e,'\x26\x21\x55\x23')](/\s+/g,'\x20')[_0x5ac857(0x333,'\x40\x21\x56\x28')]()[_0x5ac857(0x305,'\x26\x5e\x2a\x53')](-0xd32+0x14ef+0x11b*-0x7,_0x14c8de):'';}function hasPublicContext(_0x297d4b){const _0x4915db=_0xdfc1a;return/[a-z0-9]/i[_0x4915db(0x258,'\x66\x41\x7a\x25')](_0x297d4b[_0x4915db(0x1d0,'\x5d\x77\x63\x41')+'\x6c\x6c'](REDACTED,''));}function safeQuestionContext(_0x28121b,_0x5d0c81){const _0x47e007=_0xdfc1a,_0x397892=String(_0x28121b??'')['\x72\x65\x70\x6c\x61\x63\x65'](/\s+/g,'\x20')[_0x47e007(0x3e4,'\x5d\x77\x63\x41')]();if(!_0x397892)return'';return redactString(_0x397892)[_0x47e007(0x344,'\x6b\x6d\x5d\x58')](/\s+/g,'\x20')[_0x47e007(0x406,'\x53\x61\x25\x74')]()[_0x47e007(0x33e,'\x31\x73\x55\x4a')](-0x2403+0x1*0x7db+-0x1a8*-0x11,_0x5d0c81);}function safeProblemContext(_0x46acca,_0x433103){const _0x526db5=safeQuestionContext(_0x46acca,_0x433103);if(!_0x526db5||!hasPublicContext(_0x526db5)||isInfraError(_0x526db5))return'';return _0x526db5;}function safeTopicToken(_0xf3ec2d){const _0x39f342=_0xdfc1a;if(EXPLORE_STOPWORDS[_0x39f342(0x341,'\x47\x4e\x33\x50')](_0xf3ec2d))return![];if(SENSITIVE_TOPIC_RE[_0x39f342(0x1c3,'\x76\x53\x5a\x76')](_0xf3ec2d))return![];if(LONG_OPAQUE_RE[_0x39f342(0x31d,'\x59\x71\x45\x65')](_0xf3ec2d))return![];return!![];}export function extractTopicKeywords(_0x38013e,_0x503511,_0x52b87a=-0x1*-0x230b+0x25ab*0x1+0x183b*-0x3,_0x3ce8d2={}){const _0x3ed0c8=_0xdfc1a,_0x4faec2=redactString(String(_0x38013e??'')+'\x20'+String(_0x503511??''))[_0x3ed0c8(0x229,'\x4e\x6e\x59\x25')+_0x3ed0c8(0x4ad,'\x6b\x43\x72\x25')](),_0x2a386d=_0x4faec2[_0x3ed0c8(0x437,'\x69\x30\x26\x77')](/[a-z][a-z0-9_-]{4,}/g)??[],_0x2e1e6b=new Map();for(const _0x2b814e of _0x2a386d){if(!safeTopicToken(_0x2b814e))continue;_0x2e1e6b[_0x3ed0c8(0x197,'\x31\x73\x55\x4a')](_0x2b814e,(_0x2e1e6b[_0x3ed0c8(0x224,'\x6b\x43\x72\x25')](_0x2b814e)??0x25d1+0x1d5e+-0x432f)+(-0x1e3d*0x1+-0x71f*0x2+0x3*0xed4));}const _0x41c08e=[..._0x2e1e6b[_0x3ed0c8(0x2ec,'\x40\x21\x56\x28')]()][_0x3ed0c8(0x3e7,'\x77\x68\x5e\x63')](([,_0x318429])=>_0x318429>=Math[_0x3ed0c8(0x276,'\x52\x50\x44\x25')](0x4eb*-0x4+-0x353*-0x1+0x105a,Math[_0x3ed0c8(0x4b3,'\x26\x21\x55\x23')](_0x3ce8d2[_0x3ed0c8(0x15c,'\x53\x61\x25\x74')+_0x3ed0c8(0x2ca,'\x76\x65\x4a\x75')]??-0x310+-0x169*0x12+-0x25f*-0xc)));if(!_0x3ce8d2[_0x3ed0c8(0x1fc,'\x59\x71\x45\x65')+_0x3ed0c8(0x30a,'\x59\x71\x45\x65')+_0x3ed0c8(0x207,'\x26\x5e\x2a\x53')])_0x41c08e[_0x3ed0c8(0x3b3,'\x47\x71\x52\x71')]((_0x954d01,_0x412bc3)=>_0x412bc3[0x9a8*0x1+0xf1*-0x26+0x1a1f]-_0x954d01[0xd*-0x15f+0x1*0x23c7+-0x5*0x397]||_0x954d01[-0x1015+0x208c+-0x1077][_0x3ed0c8(0x2d5,'\x30\x70\x74\x5b')+_0x3ed0c8(0x26a,'\x66\x41\x7a\x25')](_0x412bc3[-0x26*-0xfc+0x1ce0+0xa8*-0x65]));return _0x41c08e[_0x3ed0c8(0x215,'\x63\x4a\x31\x68')](([_0x5ec843])=>_0x5ec843)[_0x3ed0c8(0x490,'\x69\x30\x26\x77')](0x1*-0xc7a+0x821+0x9f*0x7,_0x52b87a);}function safeGeneId(_0x3a161e){const _0x3774de=_0xdfc1a;if(!/^[a-z0-9_.:-]{3,80}$/i['\x74\x65\x73\x74'](_0x3a161e))return![];return!SENSITIVE_TOPIC_RE[_0x3774de(0x34f,'\x47\x4e\x33\x50')](_0x3a161e);}function extractRecentGeneIds(_0x11851d,_0x14be63=-0x16*-0x185+-0x1*-0xa4d+-0x2bb6){const _0x237791=_0xdfc1a,_0x113adc=[];for(const _0x29b26a of(_0x11851d??[])[_0x237791(0x24d,'\x30\x70\x74\x5b')](-_0x14be63)){if(_0x237791(0x48f,'\x59\x61\x52\x29')!==_0x237791(0x35f,'\x66\x61\x53\x69')){const _0x15c2aa=_0x3faba7(_0x363eed,_0x5b20bc,_0x442333,_0x36bb8e);if(_0x15c2aa)_0x31f852[_0x237791(0x362,'\x52\x50\x44\x25')](_0x15c2aa);}else{const _0x23c314=_0x29b26a[_0x237791(0x4aa,'\x5a\x76\x56\x42')+'\x65\x64']??_0x29b26a[_0x237791(0x2e7,'\x63\x4a\x31\x68')+'\x64']??[],_0x1bafd2=_0x23c314[-0x86b+0x2b*-0x6b+-0x8cc*-0x3];if(typeof _0x1bafd2===_0x237791(0x14c,'\x5b\x70\x50\x55')&&safeGeneId(_0x1bafd2))_0x113adc[_0x237791(0x35d,'\x4e\x6e\x59\x25')](_0x1bafd2);}}return[...new Set(_0x113adc)][_0x237791(0x38b,'\x5a\x75\x75\x24')](0x112f+0x855*-0x3+0x7d0,_0x14be63);}function safeSignal(_0x591783){const _0x46d96d=_0xdfc1a;if(!/^[a-z][a-z0-9_]{3,40}$/i[_0x46d96d(0x185,'\x5a\x76\x56\x42')](_0x591783))return![];if(SENSITIVE_TOPIC_RE['\x74\x65\x73\x74'](_0x591783))return![];if(_0x591783['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x46d96d(0x20e,'\x47\x38\x31\x71'))||_0x591783[_0x46d96d(0x430,'\x44\x31\x49\x44')+'\x74\x68']('\x62\x61\x6e\x5f\x67\x65\x6e\x65')||_0x591783['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x46d96d(0x193,'\x59\x28\x7a\x4f')+'\x67\x5f'))return![];return!PROBLEM_SIGNALS[_0x46d96d(0x3a0,'\x48\x71\x65\x56')](_0x4c01d1=>_0x591783===_0x4c01d1||_0x591783[_0x46d96d(0x250,'\x59\x28\x7a\x4f')+'\x74\x68'](_0x4c01d1));}function buildExplorationCandidate(_0x203fbb,_0x514962,_0x23900e,_0x5da6c6){const _0x2ba0a4=_0xdfc1a,_0x59a109=_0x203fbb[_0x2ba0a4(0x141,'\x58\x5d\x35\x6b')](String)[_0x2ba0a4(0x4b7,'\x40\x21\x56\x28')](safeSignal)[_0x2ba0a4(0x24d,'\x30\x70\x74\x5b')](-0x2207*-0x1+0x61b+-0x16*0x1d3,0xeb5+0x1933+-0x27e4),_0x30dbaa=extractTopicKeywords(_0x23900e,_0x5da6c6,-0x1302+-0xa12*0x2+0x1*0x272b),_0x1ed0eb=extractRecentGeneIds(_0x514962,0x52c*0x1+-0x1*0x178b+0x1264);if(_0x30dbaa[_0x2ba0a4(0x359,'\x66\x41\x7a\x25')]===-0x2024+-0x67*0x46+-0x1f2*-0x1f&&_0x1ed0eb[_0x2ba0a4(0x345,'\x26\x5e\x2a\x53')]===-0x21cc+0x1*0x135b+-0x1*-0xe71)return null;const _0x14cf3a=_0x30dbaa[_0x2ba0a4(0x3f8,'\x5b\x70\x50\x55')]>0x2515+-0x4*-0x266+-0x2ead*0x1?_0x30dbaa[_0x2ba0a4(0x440,'\x66\x61\x53\x69')](-0x7a4*-0x3+-0x1b0c+-0x3*-0x160,-0x33*0x18+-0x2*0xbb5+0xe9*0x1f)[_0x2ba0a4(0x472,'\x59\x28\x7a\x4f')]('\x2c\x20'):_0x1ed0eb[_0x2ba0a4(0x1ec,'\x45\x73\x4a\x6d')]('\x2c\x20');return{'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x2ba0a4(0x414,'\x53\x38\x49\x43')+'\x74\x69\x76\x65\x6c\x79\x2d\x72'+_0x2ba0a4(0x434,'\x6b\x43\x72\x25')+'\x67\x65\x6e\x74\x20\x77\x6f\x72'+_0x2ba0a4(0x200,'\x66\x41\x7a\x25')+_0x14cf3a+(_0x2ba0a4(0x450,'\x48\x71\x65\x56')+'\x6f\x20\x65\x78\x74\x65\x6e\x64'+'\x20\x69\x74\x73\x20\x63\x61\x70'+'\x61\x62\x69\x6c\x69\x74\x69\x65'+_0x2ba0a4(0x2ba,'\x6b\x43\x72\x25')+_0x2ba0a4(0x47c,'\x31\x73\x55\x4a')+_0x2ba0a4(0x1d4,'\x26\x21\x55\x23')+_0x2ba0a4(0x3f1,'\x53\x38\x49\x43')+_0x2ba0a4(0x3f2,'\x68\x5e\x30\x70')+_0x2ba0a4(0x1b8,'\x5a\x76\x56\x42')+'\x63\x6f\x6d\x70\x6c\x65\x6d\x65'+_0x2ba0a4(0x2df,'\x6b\x61\x61\x52')+_0x2ba0a4(0x41a,'\x44\x31\x49\x44')+_0x2ba0a4(0x422,'\x59\x71\x45\x65')+_0x2ba0a4(0x318,'\x5b\x77\x4c\x61')+'\x65\x20\x6d\x6f\x73\x74\x20\x76'+_0x2ba0a4(0x2f7,'\x47\x4e\x33\x50')+_0x2ba0a4(0x381,'\x69\x30\x26\x77')+_0x2ba0a4(0x2d8,'\x4e\x6e\x59\x25')+_0x2ba0a4(0x1e4,'\x74\x54\x32\x4d')+_0x2ba0a4(0x3d8,'\x48\x71\x65\x56')+_0x2ba0a4(0x2d2,'\x23\x42\x66\x46')+_0x2ba0a4(0x44d,'\x53\x38\x49\x43')+_0x2ba0a4(0x1df,'\x45\x77\x32\x5b')+_0x2ba0a4(0x4ae,'\x68\x5e\x30\x70')+_0x2ba0a4(0x404,'\x53\x38\x49\x43')+_0x2ba0a4(0x3ef,'\x53\x61\x25\x74')+_0x2ba0a4(0x1e1,'\x73\x6b\x59\x57')+_0x2ba0a4(0x2bf,'\x59\x28\x7a\x4f')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x2ba0a4(0x46f,'\x73\x6b\x59\x57')+_0x2ba0a4(0x465,'\x26\x21\x55\x23')+_0x2ba0a4(0x274,'\x44\x67\x68\x53'),_0x2ba0a4(0x410,'\x76\x65\x4a\x75')+_0x2ba0a4(0x3d1,'\x52\x50\x44\x25'),'\x70\x72\x6f\x61\x63\x74\x69\x76'+_0x2ba0a4(0x42e,'\x68\x5e\x30\x70')+_0x2ba0a4(0x4a1,'\x45\x73\x4a\x6d'),..._0x30dbaa['\x73\x6c\x69\x63\x65'](-0x13cb+-0x1d*-0xb5+0xd*-0xe,0x8da+-0x7*-0x37+-0x1*0xa59),..._0x59a109[_0x2ba0a4(0x3e0,'\x32\x34\x66\x74')](0x1110+0x251*-0xf+-0x11af*-0x1,0x2*-0x129b+-0x3e1*0xa+0x872*0x9)],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x0};}function _0x10f9(){const _0x11d931=['\x57\x34\x78\x64\x4e\x73\x79','\x6d\x31\x64\x63\x54\x6d\x6f\x55\x7a\x57','\x57\x37\x61\x2f\x57\x4f\x6a\x73\x6e\x6d\x6b\x6a\x6f\x47','\x57\x51\x30\x43\x57\x4f\x46\x63\x47\x48\x42\x64\x52\x53\x6f\x57\x57\x51\x65','\x68\x72\x6a\x73\x57\x4f\x33\x63\x47\x53\x6b\x6c\x57\x51\x53\x75','\x63\x32\x72\x46\x57\x36\x78\x63\x49\x48\x31\x4e\x75\x47','\x57\x50\x4e\x64\x4a\x43\x6f\x43\x57\x34\x53','\x57\x4f\x47\x67\x57\x52\x5a\x63\x53\x63\x62\x55\x57\x4f\x4f','\x46\x64\x44\x4e','\x6e\x76\x42\x63\x4f\x38\x6f\x4c','\x6a\x58\x34\x78\x64\x53\x6f\x4d\x6d\x6d\x6f\x66\x57\x35\x4b','\x73\x31\x78\x64\x55\x65\x39\x64\x64\x53\x6f\x4e\x72\x47','\x57\x52\x30\x52\x57\x37\x6e\x50\x46\x53\x6f\x62\x62\x6d\x6f\x2b','\x73\x53\x6b\x36\x57\x4f\x34\x4c\x6a\x6d\x6f\x65\x73\x43\x6b\x78','\x44\x43\x6b\x67\x71\x71\x42\x63\x52\x43\x6f\x6b\x57\x52\x31\x79','\x67\x38\x6b\x4c\x44\x43\x6f\x4a\x57\x50\x58\x2f','\x78\x43\x6f\x4a\x69\x49\x66\x44\x41\x38\x6b\x68\x57\x51\x75','\x79\x63\x39\x6c\x57\x50\x56\x64\x48\x75\x30\x77\x57\x34\x71','\x57\x51\x79\x38\x63\x64\x4e\x63\x48\x65\x4a\x64\x55\x58\x4b','\x42\x43\x6f\x76\x57\x4f\x66\x4a\x75\x32\x54\x4e','\x43\x6d\x6f\x67\x65\x33\x58\x43\x71\x38\x6f\x64','\x57\x50\x57\x36\x6e\x61','\x79\x64\x79\x44\x63\x43\x6f\x34\x6a\x38\x6b\x6d\x57\x34\x30','\x77\x75\x2f\x64\x55\x53\x6b\x47\x57\x34\x79\x79\x57\x51\x33\x64\x51\x47','\x57\x36\x43\x50\x57\x50\x76\x45\x6e\x43\x6b\x74\x67\x6d\x6f\x78','\x57\x4f\x34\x52\x57\x36\x7a\x50\x77\x53\x6f\x61\x6d\x6d\x6f\x50','\x57\x52\x65\x33\x57\x51\x74\x63\x4a\x6d\x6f\x63\x6c\x53\x6b\x54\x57\x35\x75','\x57\x50\x48\x51\x57\x37\x56\x64\x53\x47\x6d\x77\x66\x43\x6f\x50','\x72\x66\x2f\x64\x53\x43\x6b\x32\x57\x35\x65\x41\x57\x36\x6c\x64\x4f\x61','\x65\x77\x2f\x64\x4b\x6d\x6f\x76','\x68\x78\x52\x63\x51\x43\x6f\x30','\x57\x36\x6c\x63\x4e\x38\x6f\x59\x57\x34\x6a\x34\x57\x52\x62\x76\x6f\x71','\x57\x34\x33\x64\x4a\x53\x6f\x41\x57\x4f\x7a\x6e','\x69\x43\x6b\x6d\x71\x71\x42\x64\x56\x53\x6f\x43\x57\x51\x50\x46','\x57\x36\x33\x64\x54\x58\x44\x43\x57\x37\x79','\x57\x35\x65\x34\x69\x58\x74\x64\x4f\x38\x6b\x4c\x57\x34\x6c\x64\x54\x61','\x57\x50\x78\x64\x52\x6d\x6f\x41\x57\x4f\x6a\x79\x57\x34\x66\x5a\x6e\x57','\x69\x61\x79\x42\x41\x71','\x69\x6d\x6f\x75\x57\x52\x4c\x52\x57\x35\x74\x63\x4b\x58\x6d','\x57\x51\x34\x49\x46\x6d\x6f\x4f\x6d\x68\x37\x64\x4b\x53\x6b\x2f','\x57\x37\x6c\x63\x4d\x38\x6f\x50\x57\x36\x35\x2b\x57\x52\x44\x78\x6f\x71','\x57\x52\x72\x45\x63\x53\x6b\x71\x57\x34\x34\x44\x57\x4f\x37\x64\x4c\x71','\x63\x75\x42\x64\x53\x32\x7a\x6e\x64\x53\x6f\x2b\x67\x71','\x67\x33\x74\x63\x53\x38\x6f\x55\x66\x63\x37\x63\x4b\x58\x6d','\x7a\x6d\x6f\x70\x74\x58\x4a\x64\x56\x43\x6f\x6c\x57\x51\x7a\x6c','\x44\x38\x6f\x5a\x57\x52\x6a\x50\x57\x34\x6c\x63\x4a\x47\x4c\x53','\x69\x53\x6f\x4f\x57\x52\x44\x4b\x57\x34\x4a\x63\x49\x58\x6d','\x73\x65\x74\x64\x50\x4d\x6a\x6c\x63\x53\x6f\x51\x73\x57','\x57\x50\x56\x63\x48\x53\x6f\x69\x57\x52\x38\x63\x62\x6d\x6b\x32\x57\x37\x4b','\x57\x4f\x64\x63\x4f\x6d\x6f\x58','\x41\x76\x33\x64\x55\x53\x6b\x39\x57\x34\x7a\x72\x57\x51\x52\x64\x50\x71','\x57\x52\x46\x64\x4f\x38\x6f\x75\x57\x36\x4f','\x57\x37\x76\x44\x72\x43\x6b\x65\x57\x34\x34\x6e\x57\x34\x56\x64\x4c\x61','\x57\x35\x6e\x5a\x41\x38\x6b\x4c\x57\x4f\x64\x63\x4a\x61\x69','\x57\x51\x4f\x4a\x74\x73\x4e\x64\x48\x57\x42\x64\x51\x72\x38','\x69\x38\x6f\x66\x57\x51\x69','\x6a\x58\x4f\x46\x42\x71\x44\x48\x57\x34\x35\x4e','\x61\x43\x6f\x31\x57\x34\x61\x55\x6b\x38\x6f\x65\x62\x38\x6b\x72','\x57\x4f\x56\x64\x4b\x43\x6f\x61\x57\x34\x35\x64\x57\x34\x4b\x32\x57\x34\x6d','\x57\x4f\x6d\x67\x57\x51\x6c\x63\x52\x72\x57','\x64\x57\x58\x45\x57\x34\x37\x63\x47\x47','\x57\x36\x42\x63\x4c\x38\x6f\x59\x57\x37\x4b','\x57\x36\x4b\x35\x74\x74\x64\x63\x4a\x4b\x78\x64\x51\x72\x75','\x65\x47\x5a\x63\x4d\x6d\x6b\x59\x57\x34\x31\x51\x57\x34\x46\x64\x4b\x61','\x57\x4f\x5a\x64\x4f\x43\x6f\x61\x57\x4f\x34\x43\x57\x35\x72\x56\x6e\x57','\x57\x50\x31\x51\x57\x36\x6c\x64\x56\x58\x71\x6e\x68\x6d\x6f\x46','\x57\x37\x53\x4f\x57\x35\x7a\x73\x6e\x43\x6f\x68\x6c\x6d\x6f\x62','\x7a\x43\x6b\x6b\x73\x47','\x42\x43\x6b\x61\x77\x73\x56\x64\x4f\x53\x6f\x78\x57\x51\x39\x64','\x57\x36\x4a\x63\x4e\x38\x6f\x59\x57\x37\x50\x36\x57\x37\x76\x73\x6c\x57','\x57\x35\x66\x32\x79\x76\x52\x64\x47\x43\x6b\x4c\x57\x34\x6c\x63\x4f\x61','\x62\x78\x74\x63\x4f\x38\x6f\x55\x70\x64\x37\x63\x4e\x71\x75','\x78\x53\x6f\x72\x44\x61\x34\x46','\x74\x31\x6c\x64\x51\x57','\x6f\x49\x2f\x64\x4f\x43\x6b\x49\x57\x36\x64\x64\x49\x38\x6f\x36\x65\x71','\x57\x52\x30\x42\x57\x4f\x78\x63\x48\x48\x42\x64\x52\x53\x6f\x53\x57\x36\x69','\x57\x51\x4f\x30\x57\x51\x68\x63\x4e\x6d\x6f\x63\x6f\x43\x6b\x51\x57\x34\x38','\x66\x6d\x6f\x32\x6b\x57','\x62\x33\x56\x64\x49\x53\x6f\x72\x73\x58\x30','\x75\x66\x70\x64\x4f\x38\x6b\x55\x70\x61\x33\x64\x4a\x6d\x6b\x37','\x57\x4f\x68\x64\x49\x38\x6f\x43\x7a\x4a\x74\x63\x56\x53\x6f\x35','\x57\x50\x48\x6f\x57\x52\x47','\x57\x50\x33\x63\x54\x38\x6b\x52\x57\x51\x4f\x4e\x57\x35\x43\x39\x57\x4f\x34','\x57\x37\x64\x64\x4c\x71\x72\x75\x57\x36\x78\x64\x4d\x63\x7a\x53','\x57\x35\x54\x55\x57\x36\x33\x64\x54\x71\x71\x43\x64\x43\x6f\x50','\x41\x53\x6f\x45\x57\x50\x50\x53\x76\x77\x35\x77\x57\x34\x47','\x74\x38\x6b\x2b\x57\x4f\x34\x46\x6d\x6d\x6f\x2b\x75\x53\x6b\x62','\x69\x67\x4b\x54\x72\x30\x30\x34\x6f\x6d\x6b\x65','\x57\x52\x34\x6c\x57\x50\x74\x63\x49\x58\x42\x64\x51\x6d\x6f\x6b\x57\x51\x34','\x65\x47\x56\x63\x4c\x61','\x44\x43\x6b\x68\x73\x30\x4a\x64\x51\x6d\x6f\x41\x57\x51\x7a\x7a','\x67\x43\x6b\x66\x41\x61','\x57\x51\x71\x6c\x57\x4f\x64\x64\x49\x47\x5a\x64\x55\x38\x6f\x48\x57\x52\x43','\x66\x72\x4e\x63\x4d\x6d\x6b\x58\x57\x34\x79\x55','\x6e\x49\x43\x68\x6d\x6d\x6f\x61','\x79\x63\x72\x48\x57\x50\x70\x64\x4c\x61','\x57\x50\x74\x63\x53\x43\x6b\x47\x57\x36\x38\x6d\x57\x35\x57','\x6c\x74\x33\x63\x54\x43\x6b\x38\x57\x36\x64\x64\x4b\x6d\x6b\x32\x66\x61','\x57\x36\x57\x7a\x57\x4f\x5a\x63\x49\x57\x56\x63\x55\x53\x6f\x30\x57\x51\x34','\x74\x4c\x70\x64\x53\x38\x6b\x4e\x57\x35\x43\x64','\x57\x4f\x52\x63\x49\x38\x6b\x68\x57\x51\x54\x68\x66\x43\x6b\x47\x57\x52\x4f','\x57\x34\x54\x4c\x57\x50\x4e\x63\x51\x66\x4f\x34\x79\x4a\x61','\x57\x36\x61\x49\x57\x50\x31\x76\x6e\x6d\x6b\x71\x6a\x57','\x57\x34\x72\x66\x45\x6d\x6b\x34\x57\x4f\x42\x63\x56\x61\x6c\x64\x49\x57','\x61\x72\x4e\x63\x48\x43\x6b\x34\x57\x34\x71\x4a\x57\x35\x68\x64\x4c\x57','\x6b\x67\x65\x72\x65\x38\x6f\x48\x6c\x38\x6f\x69\x57\x50\x34','\x57\x35\x54\x61\x45\x38\x6b\x4a\x57\x50\x56\x63\x4a\x62\x37\x63\x4a\x47','\x57\x34\x61\x6d\x42\x38\x6b\x4e\x57\x4f\x6c\x63\x4b\x72\x2f\x64\x4a\x57','\x57\x50\x72\x35\x57\x36\x37\x64\x4b\x48\x75','\x7a\x6d\x6b\x79\x66\x43\x6f\x75\x77\x64\x2f\x63\x4d\x43\x6b\x6f','\x57\x52\x4b\x2f\x57\x36\x6a\x63\x74\x6d\x6f\x78\x64\x53\x6f\x50','\x57\x4f\x4a\x64\x4a\x38\x6f\x75\x57\x52\x48\x66\x63\x43\x6b\x55\x57\x37\x79','\x57\x50\x6c\x63\x55\x53\x6b\x50\x57\x36\x39\x4c\x57\x34\x38\x4f\x57\x4f\x4b','\x57\x4f\x35\x49\x57\x4f\x4a\x63\x52\x4c\x34\x55\x6a\x4e\x30','\x57\x50\x42\x63\x50\x38\x6b\x36\x57\x36\x6d\x51\x57\x35\x79\x36','\x44\x43\x6f\x41\x57\x50\x4f','\x67\x33\x64\x63\x52\x53\x6f\x39\x69\x74\x75','\x65\x65\x70\x63\x52\x38\x6f\x54\x43\x66\x33\x63\x4b\x43\x6b\x59','\x65\x61\x66\x65\x57\x35\x4e\x63\x50\x53\x6b\x61\x57\x51\x47\x71','\x57\x52\x4b\x61\x57\x50\x46\x63\x4e\x57\x2f\x64\x51\x53\x6f\x36\x57\x52\x61','\x6c\x43\x6f\x57\x70\x73\x66\x61\x44\x38\x6b\x64\x57\x51\x69','\x79\x6d\x6f\x33\x75\x47\x57\x39\x57\x35\x35\x79','\x57\x37\x7a\x6d\x72\x43\x6b\x72\x57\x35\x61\x71\x57\x34\x56\x64\x47\x47','\x57\x36\x6c\x64\x4a\x53\x6f\x64\x57\x51\x35\x47\x57\x36\x44\x61\x57\x4f\x71','\x74\x49\x4f\x77\x57\x36\x37\x63\x49\x62\x44\x4c\x75\x57','\x57\x50\x52\x64\x4c\x53\x6f\x43\x57\x35\x57\x64\x57\x52\x79\x58\x57\x35\x71','\x6d\x5a\x75\x61\x66\x43\x6f\x36\x6a\x61','\x57\x34\x68\x63\x50\x53\x6f\x6c\x57\x34\x4f\x49\x57\x52\x4e\x63\x49\x32\x75','\x57\x52\x34\x6c\x57\x50\x74\x63\x48\x48\x37\x64\x55\x43\x6f\x57','\x57\x4f\x6d\x2b\x70\x62\x42\x64\x4f\x43\x6b\x30\x57\x34\x69','\x57\x50\x46\x64\x54\x32\x5a\x63\x4c\x4b\x53\x76\x66\x71\x6d','\x57\x4f\x74\x64\x51\x4d\x56\x63\x49\x4c\x57\x46\x66\x61\x34','\x57\x34\x37\x64\x4b\x49\x2f\x64\x49\x43\x6b\x36\x57\x36\x78\x63\x4a\x58\x34','\x63\x6d\x6f\x57\x69\x64\x72\x62\x43\x6d\x6f\x67\x57\x51\x75','\x68\x6d\x6f\x58\x6e\x57','\x6c\x67\x65\x63\x68\x43\x6f\x47\x6e\x38\x6f\x6a\x57\x34\x57','\x65\x4d\x70\x63\x52\x38\x6f\x32\x69\x63\x4e\x63\x4b\x72\x4b','\x57\x35\x42\x63\x49\x53\x6b\x73\x57\x37\x54\x68\x57\x37\x6e\x2b\x57\x35\x79','\x57\x4f\x6c\x64\x55\x43\x6b\x77\x57\x4f\x50\x71\x57\x35\x72\x49\x6c\x61','\x57\x51\x30\x2f\x57\x51\x4e\x63\x48\x38\x6f\x46\x70\x6d\x6b\x54','\x78\x43\x6f\x50\x6d\x43\x6b\x56\x57\x50\x44\x30\x68\x5a\x34','\x57\x52\x58\x49\x57\x35\x7a\x56\x6d\x38\x6b\x63\x41\x43\x6f\x62','\x64\x68\x70\x64\x4a\x43\x6f\x59\x74\x72\x4f\x46\x57\x36\x65','\x78\x61\x76\x7a\x57\x35\x56\x63\x4a\x53\x6b\x62\x57\x51\x57\x42','\x64\x43\x6b\x58\x42\x38\x6f\x4e','\x57\x4f\x46\x63\x4a\x53\x6f\x75','\x73\x4c\x42\x64\x4f\x75\x62\x73','\x57\x51\x38\x51\x71\x74\x42\x63\x4e\x4c\x74\x64\x55\x63\x38','\x57\x51\x61\x2f\x57\x36\x4c\x56\x77\x53\x6f\x77','\x57\x4f\x46\x64\x4a\x38\x6f\x7a\x7a\x61\x37\x63\x51\x53\x6b\x50\x57\x4f\x4f','\x57\x36\x2f\x63\x4e\x38\x6f\x2f\x57\x37\x75\x2f\x57\x51\x6a\x75\x6b\x71','\x63\x6d\x6b\x39\x57\x4f\x75\x42\x6e\x38\x6f\x75\x76\x43\x6b\x78','\x57\x34\x78\x63\x56\x43\x6f\x62\x57\x34\x47\x4b\x57\x52\x52\x63\x4e\x61','\x62\x74\x52\x64\x47\x43\x6f\x65\x64\x4a\x75\x4d\x57\x35\x34','\x44\x38\x6f\x72\x62\x68\x76\x74\x76\x6d\x6f\x35\x57\x37\x53','\x64\x43\x6f\x33\x69\x74\x4b','\x57\x50\x38\x58\x57\x50\x46\x63\x50\x64\x4c\x34','\x57\x4f\x6c\x64\x56\x78\x68\x63\x4e\x65\x53\x73\x61\x62\x79','\x46\x73\x76\x47\x57\x50\x74\x64\x4d\x75\x76\x79\x57\x35\x4b','\x57\x52\x53\x55\x73\x5a\x2f\x63\x48\x76\x6c\x64\x4a\x61\x75','\x6a\x59\x64\x64\x4b\x38\x6b\x51\x57\x36\x42\x64\x49\x43\x6b\x2f\x66\x61','\x57\x4f\x42\x63\x55\x53\x6b\x4c\x57\x36\x71\x51\x57\x34\x38\x4e','\x57\x35\x66\x69\x6c\x53\x6b\x4a\x57\x50\x70\x63\x4b\x62\x56\x63\x4c\x61','\x57\x4f\x4c\x4c\x64\x4b\x2f\x63\x51\x43\x6f\x33\x57\x34\x6c\x64\x4b\x61','\x57\x37\x46\x64\x48\x75\x6a\x72\x57\x36\x64\x64\x4d\x49\x7a\x4b','\x78\x65\x4e\x63\x53\x43\x6f\x5a\x57\x36\x75\x7a\x57\x51\x70\x64\x53\x61','\x75\x58\x46\x63\x47\x38\x6f\x39\x57\x34\x69\x34\x57\x35\x46\x64\x4a\x61','\x57\x37\x44\x67\x66\x38\x6b\x61\x57\x50\x48\x7a','\x57\x52\x47\x35\x57\x51\x62\x34\x72\x38\x6f\x41\x64\x53\x6f\x55','\x57\x4f\x35\x6f\x57\x4f\x52\x63\x53\x64\x4c\x58\x57\x50\x57\x46','\x57\x4f\x71\x31\x6a\x58\x74\x64\x52\x38\x6b\x47\x57\x34\x4b','\x6a\x58\x47\x6d\x44\x58\x58\x7a\x57\x50\x47','\x57\x35\x5a\x63\x54\x53\x6f\x65\x57\x34\x65\x2f\x57\x51\x75','\x57\x4f\x6e\x4f\x57\x36\x37\x64\x54\x47\x75\x6d\x77\x43\x6f\x4a','\x57\x37\x48\x66\x63\x6d\x6b\x36\x57\x35\x61\x43\x57\x35\x4a\x64\x4a\x57','\x57\x50\x39\x65\x57\x4f\x5a\x63\x51\x75\x6d\x2b\x6d\x71','\x57\x4f\x52\x64\x4c\x53\x6f\x61\x57\x34\x50\x62\x57\x36\x6a\x2b\x57\x34\x75','\x57\x50\x53\x42\x57\x50\x64\x63\x54\x71','\x6f\x43\x6f\x65\x57\x52\x68\x64\x4b\x59\x44\x62\x57\x36\x43\x36','\x57\x51\x69\x4a\x57\x36\x44\x5a\x78\x53\x6f\x45\x68\x61','\x63\x53\x6b\x54\x41\x6d\x6f\x4e\x57\x51\x7a\x52\x74\x74\x47','\x69\x58\x34\x78\x41\x58\x54\x6e\x57\x4f\x6a\x4e','\x70\x38\x6f\x45\x57\x51\x64\x64\x4b\x5a\x72\x45','\x78\x6d\x6b\x2b\x57\x50\x6d\x6f','\x66\x4d\x69\x41','\x57\x50\x53\x70\x57\x50\x68\x63\x52\x49\x58\x75\x57\x50\x43\x67','\x6e\x71\x75\x6c\x41\x62\x65','\x57\x35\x4f\x6d\x42\x43\x6b\x55\x57\x50\x68\x63\x4a\x58\x78\x63\x4a\x47','\x6e\x53\x6f\x4f\x57\x52\x47','\x57\x50\x5a\x64\x48\x43\x6f\x63\x57\x34\x35\x6e\x57\x37\x38\x59\x57\x34\x38','\x68\x4d\x78\x63\x53\x6d\x6f\x2f\x69\x71','\x57\x4f\x6c\x64\x54\x77\x74\x63\x4b\x65\x53\x4a\x64\x72\x75','\x77\x53\x6f\x37\x57\x50\x71\x76\x6c\x6d\x6f\x6e\x76\x6d\x6f\x73','\x57\x4f\x4c\x35\x57\x36\x37\x64\x56\x72\x76\x46\x68\x53\x6f\x4c','\x6f\x67\x65\x54\x74\x71','\x70\x53\x6f\x30\x57\x37\x58\x4d\x57\x34\x4a\x63\x4b\x57\x30\x54','\x67\x71\x71\x78\x57\x35\x4e\x63\x48\x53\x6b\x61\x57\x51\x48\x70','\x62\x78\x64\x63\x4f\x38\x6f\x56\x6a\x59\x2f\x63\x4b\x72\x47','\x57\x34\x6c\x64\x47\x6d\x6f\x79\x57\x51\x66\x47\x57\x35\x57\x6a\x57\x50\x34','\x6a\x4c\x6c\x63\x54\x6d\x6f\x55\x44\x66\x52\x64\x4d\x43\x6f\x4d','\x57\x34\x70\x64\x48\x58\x37\x64\x54\x43\x6b\x59\x57\x36\x37\x63\x4a\x58\x34','\x57\x37\x70\x63\x4d\x38\x6f\x4f','\x64\x38\x6f\x4a\x70\x63\x6a\x6d\x44\x53\x6b\x70\x57\x52\x79','\x57\x35\x78\x64\x53\x38\x6f\x6c\x57\x35\x69\x2f\x57\x51\x4a\x63\x4e\x30\x4f','\x61\x68\x33\x64\x48\x53\x6f\x74\x77\x47','\x63\x72\x6a\x66\x57\x34\x4a\x63\x49\x43\x6b\x68\x57\x36\x6d\x75','\x57\x34\x70\x63\x50\x38\x6f\x79\x57\x34\x6d\x51\x57\x51\x79','\x57\x4f\x52\x64\x4c\x53\x6f\x78\x57\x37\x62\x43\x57\x36\x69\x53\x57\x34\x6d','\x79\x6d\x6f\x33\x71\x71\x75\x59\x57\x34\x4c\x53\x63\x47','\x6c\x49\x34\x65\x68\x43\x6f\x47\x6b\x53\x6f\x64\x57\x35\x61','\x6f\x43\x6f\x32\x57\x51\x4e\x63\x48\x53\x6b\x39\x67\x78\x42\x64\x4f\x47','\x57\x51\x52\x64\x52\x53\x6f\x63\x57\x51\x52\x64\x4f\x61\x61\x69\x6e\x47','\x57\x4f\x46\x64\x4e\x6d\x6f\x6c\x45\x5a\x74\x63\x52\x53\x6b\x56\x57\x4f\x69','\x57\x36\x44\x7a\x63\x43\x6b\x6d\x57\x35\x79','\x69\x38\x6f\x39\x57\x36\x46\x63\x4d\x53\x6b\x49\x68\x32\x5a\x64\x51\x47','\x70\x38\x6b\x34\x57\x51\x74\x63\x48\x53\x6b\x4d\x63\x67\x37\x64\x52\x47','\x68\x30\x72\x45\x75\x58\x31\x46\x57\x35\x79\x4f','\x46\x53\x6b\x49\x66\x38\x6f\x77\x73\x4d\x46\x64\x4e\x6d\x6b\x61','\x57\x51\x65\x35\x67\x43\x6b\x4c','\x6b\x73\x30\x78\x67\x61','\x44\x5a\x35\x58\x57\x4f\x37\x63\x4d\x57\x69\x7a\x57\x34\x69','\x73\x30\x4e\x64\x48\x6d\x6f\x54\x57\x50\x7a\x34\x57\x34\x6c\x64\x4e\x61\x7a\x4d\x79\x4a\x69','\x6a\x38\x6f\x39\x57\x52\x78\x63\x4a\x61','\x57\x51\x54\x6f\x57\x4f\x68\x63\x4d\x61\x33\x64\x54\x43\x6f\x4e\x57\x36\x69','\x57\x4f\x44\x5a\x57\x4f\x70\x63\x51\x65\x4b\x47\x79\x49\x6d','\x67\x43\x6f\x64\x6a\x47','\x43\x43\x6f\x46\x57\x4f\x54\x35\x76\x78\x6e\x4e\x57\x4f\x71','\x57\x52\x38\x32\x57\x51\x46\x63\x4d\x53\x6f\x65\x6c\x53\x6b\x4e','\x6d\x31\x52\x63\x53\x53\x6f\x4b\x7a\x31\x46\x64\x4b\x6d\x6b\x51','\x65\x4d\x53\x6e\x57\x37\x70\x63\x4d\x71','\x57\x37\x79\x4a\x57\x50\x54\x77\x6c\x53\x6b\x6a\x69\x6d\x6f\x77','\x76\x33\x74\x64\x4f\x6d\x6f\x51\x6e\x63\x4e\x63\x4d\x58\x34','\x57\x36\x4b\x4f\x72\x5a\x74\x63\x4d\x65\x70\x64\x56\x47\x75','\x57\x4f\x35\x34\x57\x36\x37\x64\x54\x57','\x72\x53\x6b\x2b\x57\x50\x6e\x77\x79\x38\x6f\x6f\x76\x43\x6f\x73','\x6b\x77\x38\x55\x77\x47','\x79\x38\x6b\x44\x73\x57\x4e\x64\x50\x53\x6b\x7a\x57\x52\x31\x63','\x57\x50\x42\x64\x4f\x38\x6f\x73\x57\x4f\x35\x41\x57\x34\x4c\x50\x6f\x57','\x57\x4f\x75\x36\x70\x58\x68\x64\x4c\x6d\x6b\x2b\x57\x35\x70\x64\x52\x61','\x6e\x43\x6f\x6a\x57\x52\x37\x64\x4b\x59\x79\x76\x57\x51\x34\x2f','\x57\x36\x4e\x63\x49\x53\x6f\x35\x57\x37\x35\x52\x57\x51\x62\x6a\x70\x71','\x6b\x74\x43\x78\x69\x38\x6f\x59\x69\x53\x6f\x66\x57\x35\x69','\x57\x51\x2f\x64\x56\x53\x6f\x64\x57\x36\x68\x63\x4e\x59\x75\x62\x69\x57','\x6e\x71\x6d\x6d\x42\x72\x54\x7a\x57\x37\x31\x4d','\x57\x34\x6c\x63\x4d\x43\x6b\x42\x70\x67\x6c\x64\x56\x43\x6f\x30\x57\x51\x47\x79\x57\x37\x42\x63\x50\x38\x6f\x66\x41\x61','\x57\x35\x64\x64\x49\x53\x6f\x7a\x57\x52\x79','\x65\x4d\x38\x6e\x57\x36\x42\x63\x4f\x58\x62\x4b\x75\x57','\x57\x37\x58\x69\x66\x47','\x6d\x38\x6f\x56\x57\x51\x4c\x35\x57\x4f\x46\x64\x4c\x62\x6e\x49','\x57\x51\x69\x4c\x57\x36\x58\x30\x77\x38\x6f\x42\x63\x43\x6f\x49','\x6a\x6d\x6f\x35\x57\x52\x74\x63\x47\x53\x6b\x79\x65\x77\x78\x64\x50\x71','\x79\x63\x38\x30\x57\x50\x52\x64\x4c\x4c\x6a\x79\x57\x35\x71','\x57\x51\x65\x2b\x73\x47\x78\x63\x4d\x65\x70\x64\x56\x61\x69','\x6d\x38\x6f\x33\x57\x51\x4e\x63\x4a\x38\x6b\x49\x68\x67\x46\x64\x50\x71','\x57\x36\x72\x66\x61\x6d\x6b\x72\x57\x34\x53\x77\x57\x34\x64\x64\x55\x71','\x6a\x6d\x6f\x59\x57\x52\x31\x34\x57\x35\x70\x63\x4a\x59\x50\x4b','\x57\x51\x75\x51\x77\x59\x37\x63\x56\x4c\x74\x64\x55\x48\x75','\x44\x6d\x6b\x43\x72\x57\x42\x64\x51\x47','\x57\x51\x6d\x56\x57\x37\x62\x58\x78\x53\x6f\x72\x63\x53\x6f\x41','\x62\x58\x68\x63\x48\x38\x6b\x34\x57\x4f\x6d\x56\x57\x34\x6c\x64\x49\x57','\x57\x4f\x64\x64\x48\x38\x6f\x6e\x79\x74\x64\x63\x50\x43\x6b\x31','\x64\x38\x6f\x4e\x6d\x73\x72\x44\x44\x53\x6b\x70\x57\x51\x47','\x6e\x63\x7a\x31\x57\x4f\x4e\x64\x47\x30\x43\x6b\x57\x35\x34','\x57\x51\x75\x79\x57\x4f\x68\x63\x54\x72\x37\x64\x51\x53\x6f\x4c\x57\x52\x61','\x46\x43\x6f\x46\x57\x34\x50\x35\x78\x77\x39\x49\x57\x50\x34','\x57\x36\x42\x63\x4c\x38\x6f\x57\x57\x36\x4c\x36\x57\x51\x43','\x6b\x43\x6f\x4f\x57\x51\x6c\x64\x49\x43\x6b\x4b\x68\x49\x6c\x64\x55\x57','\x70\x38\x6f\x41\x57\x52\x37\x64\x4e\x59\x65','\x57\x52\x30\x4d\x71\x53\x6f\x58\x70\x67\x5a\x64\x4c\x6d\x6b\x2f','\x75\x59\x52\x63\x4c\x38\x6b\x6a\x68\x49\x30\x66\x57\x35\x2f\x63\x51\x53\x6f\x77\x44\x61','\x57\x52\x4f\x4e\x71\x74\x4e\x63\x4a\x47','\x73\x31\x6c\x64\x54\x53\x6b\x4e\x57\x35\x43\x73\x57\x52\x42\x64\x53\x71','\x6d\x48\x38\x6e\x42\x61','\x57\x50\x70\x64\x47\x43\x6f\x46\x57\x35\x57\x70\x57\x37\x38\x54\x57\x4f\x79','\x69\x38\x6f\x65\x57\x4f\x33\x64\x48\x74\x50\x61\x57\x36\x65\x37','\x57\x50\x44\x39\x57\x36\x6c\x64\x56\x71\x7a\x46\x64\x53\x6f\x4c','\x78\x4c\x33\x64\x55\x4e\x57','\x6e\x43\x6f\x52\x57\x52\x70\x63\x47\x6d\x6b\x4b\x66\x4e\x65','\x57\x4f\x76\x59\x57\x34\x33\x63\x55\x4b\x69\x51\x6e\x4d\x43','\x57\x37\x53\x54\x57\x4f\x6a\x73\x6c\x43\x6b\x63\x41\x43\x6f\x72','\x69\x57\x52\x63\x4e\x53\x6b\x54\x57\x34\x57\x35\x57\x35\x68\x64\x47\x61','\x65\x30\x62\x75\x57\x34\x6c\x63\x49\x53\x6b\x64\x57\x51\x38\x71','\x57\x52\x4f\x49\x74\x5a\x74\x63\x49\x4b\x52\x64\x52\x47','\x7a\x59\x6a\x31\x57\x4f\x2f\x64\x47\x31\x65\x56\x57\x35\x4b','\x6b\x57\x71\x7a\x6a\x61\x7a\x72\x57\x34\x35\x39','\x57\x34\x62\x46\x69\x6d\x6f\x33\x57\x51\x78\x63\x49\x58\x68\x64\x4d\x47','\x66\x38\x6f\x54\x6f\x5a\x38','\x57\x37\x56\x64\x48\x38\x6f\x70\x57\x51\x35\x31\x57\x35\x57\x6f\x57\x50\x75','\x46\x43\x6f\x41\x57\x4f\x35\x30\x79\x32\x39\x39\x57\x34\x75','\x43\x38\x6b\x6b\x78\x47\x4e\x64\x50\x6d\x6f\x6c\x57\x50\x7a\x67','\x57\x34\x78\x64\x4d\x38\x6f\x70\x57\x51\x76\x53\x57\x36\x79\x74\x57\x35\x61','\x6a\x43\x6f\x51\x57\x51\x6c\x63\x54\x53\x6b\x34\x64\x68\x64\x64\x52\x47','\x44\x38\x6f\x6e\x63\x68\x35\x73\x76\x38\x6f\x69','\x7a\x53\x6f\x36\x72\x57\x30','\x57\x50\x42\x64\x47\x43\x6f\x62\x57\x4f\x6d\x70\x57\x36\x79\x2f\x57\x35\x69','\x69\x38\x6f\x4a\x57\x51\x35\x4b\x57\x35\x74\x64\x4b\x66\x31\x49','\x42\x43\x6b\x46\x43\x71\x42\x64\x51\x6d\x6f\x43\x57\x51\x31\x70','\x45\x6d\x6f\x39\x73\x57\x34','\x57\x52\x78\x64\x4a\x38\x6f\x64\x79\x5a\x74\x63\x52\x43\x6f\x4d\x57\x50\x6d','\x62\x58\x46\x63\x55\x6d\x6b\x6f\x57\x36\x57\x7a\x57\x34\x64\x64\x4c\x47','\x68\x6d\x6f\x50\x64\x71','\x63\x61\x76\x65\x57\x35\x4b','\x77\x75\x42\x64\x53\x32\x6e\x62\x67\x43\x6f\x2f\x72\x47','\x57\x51\x30\x44\x57\x4f\x65','\x57\x36\x42\x64\x4c\x61\x44\x72\x57\x37\x4a\x64\x4e\x49\x53\x50','\x57\x50\x7a\x46\x63\x4b\x56\x63\x54\x57','\x57\x50\x62\x50\x61\x30\x33\x64\x50\x38\x6f\x53\x57\x37\x33\x63\x48\x71','\x57\x35\x53\x4d\x57\x51\x42\x63\x53\x5a\x79\x78\x67\x6d\x6f\x30','\x57\x37\x4e\x63\x4f\x43\x6f\x56\x57\x37\x6a\x5a\x57\x51\x62\x70\x6e\x71','\x57\x36\x2f\x64\x47\x72\x66\x67\x57\x34\x33\x64\x49\x63\x72\x53','\x57\x50\x50\x55\x63\x71\x52\x63\x51\x53\x6f\x32\x57\x36\x46\x64\x48\x61','\x42\x43\x6b\x54\x57\x4f\x38\x77\x6e\x53\x6f\x76\x74\x53\x6b\x44','\x63\x72\x6a\x66\x57\x34\x4a\x63\x49\x43\x6b\x68\x57\x36\x6d\x77','\x57\x50\x46\x63\x53\x43\x6b\x38','\x71\x66\x56\x64\x52\x61','\x57\x51\x75\x4c\x57\x34\x4c\x6f\x43\x6d\x6f\x48\x67\x38\x6f\x50','\x65\x43\x6f\x33\x6a\x4a\x48\x61\x41\x53\x6f\x67\x57\x51\x75','\x57\x51\x53\x4c\x57\x51\x70\x63\x4d\x38\x6f\x65\x6f\x6d\x6b\x75\x57\x34\x47','\x57\x51\x65\x52\x75\x6d\x6f\x58\x68\x68\x78\x64\x4b\x43\x6b\x6d','\x57\x4f\x6c\x64\x54\x77\x74\x63\x4b\x65\x54\x43\x61\x47\x6d','\x6e\x43\x6f\x51\x57\x52\x78\x63\x4d\x53\x6b\x49\x68\x57','\x77\x48\x52\x64\x56\x43\x6b\x32\x57\x34\x65\x66\x57\x36\x6c\x64\x54\x61','\x66\x6d\x6b\x32\x43\x38\x6f\x48\x57\x50\x72\x2b\x75\x73\x6d','\x57\x52\x57\x4c\x57\x36\x72\x34\x74\x43\x6f\x74\x67\x38\x6f\x2b','\x57\x34\x2f\x64\x4e\x63\x5a\x64\x50\x53\x6b\x58\x57\x36\x78\x63\x4c\x72\x34','\x79\x64\x39\x49\x57\x50\x4a\x63\x4c\x30\x43\x6f\x57\x35\x38','\x43\x74\x76\x37\x57\x4f\x37\x64\x4a\x4c\x65\x6d\x57\x35\x75','\x57\x51\x61\x52\x75\x57','\x43\x67\x6d\x30\x74\x66\x58\x68\x6e\x43\x6b\x6a','\x71\x4e\x47\x41\x57\x36\x52\x63\x4d\x72\x66\x2f\x71\x47','\x57\x4f\x39\x56\x6a\x68\x4e\x63\x49\x6d\x6f\x71\x57\x36\x46\x64\x4c\x57','\x7a\x43\x6f\x6e\x61\x4e\x57\x44\x73\x43\x6f\x76\x57\x37\x4b','\x6e\x75\x37\x63\x4f\x38\x6b\x4f\x6e\x75\x37\x64\x4d\x6d\x6b\x59','\x79\x63\x61\x45\x63\x6d\x6f\x58\x6d\x43\x6f\x63\x57\x35\x38','\x6e\x64\x71\x61\x68\x43\x6f\x34\x68\x6d\x6f\x65\x57\x35\x53','\x6b\x43\x6f\x43\x57\x52\x33\x64\x4d\x49\x62\x62\x57\x36\x38\x38','\x57\x51\x38\x62\x57\x4f\x52\x63\x4d\x72\x52\x64\x55\x43\x6f\x47\x57\x52\x79','\x65\x4e\x70\x64\x4d\x43\x6f\x79','\x43\x53\x6b\x6b\x77\x61\x33\x64\x56\x38\x6f\x43','\x44\x38\x6f\x38\x76\x61','\x75\x4c\x64\x64\x4f\x43\x6b\x4f\x6d\x62\x68\x64\x4b\x43\x6f\x42','\x6f\x66\x42\x63\x48\x38\x6f\x31','\x66\x62\x33\x63\x48\x71','\x74\x62\x5a\x64\x50\x38\x6b\x4c\x6f\x48\x6c\x64\x4d\x53\x6b\x4b','\x6d\x53\x6f\x5a\x75\x48\x61\x55\x57\x35\x6a\x43\x68\x61','\x67\x38\x6b\x52\x42\x53\x6f\x53\x57\x50\x58\x65\x74\x63\x6d','\x65\x38\x6b\x4e\x45\x43\x6b\x56\x57\x50\x54\x30\x73\x59\x6d','\x57\x50\x46\x64\x4f\x53\x6f\x36\x57\x4f\x72\x6c\x57\x34\x76\x31\x68\x71','\x57\x50\x6c\x63\x4f\x53\x6b\x52\x57\x51\x4f\x59\x57\x35\x43\x37\x57\x50\x65','\x71\x62\x52\x64\x51\x6d\x6b\x59\x57\x34\x66\x72\x57\x51\x56\x64\x51\x47','\x65\x4e\x38\x6d\x57\x36\x47','\x57\x35\x46\x64\x4e\x6d\x6b\x6b\x57\x52\x7a\x54\x57\x36\x4f\x74\x57\x34\x38','\x57\x34\x76\x7a\x41\x38\x6b\x4b\x57\x4f\x42\x63\x49\x48\x2f\x64\x47\x61','\x42\x53\x6b\x64\x77\x61\x33\x63\x52\x43\x6f\x6e\x57\x51\x66\x64','\x57\x34\x56\x64\x4e\x43\x6f\x70\x57\x4f\x6e\x58','\x57\x50\x47\x2f\x6c\x71\x37\x64\x51\x43\x6b\x34\x57\x34\x4e\x63\x4f\x61','\x57\x4f\x2f\x64\x4b\x43\x6f\x62\x57\x34\x43','\x57\x50\x33\x63\x54\x43\x6b\x36\x57\x36\x6d\x5a\x57\x35\x31\x50\x57\x4f\x4b','\x57\x52\x75\x6c\x57\x37\x71','\x43\x53\x6b\x79\x61\x53\x6f\x75','\x57\x52\x34\x34\x57\x51\x5a\x63\x4a\x71','\x67\x6d\x6f\x58\x45\x33\x38\x70\x75\x6d\x6b\x6f\x57\x51\x6d','\x6d\x53\x6f\x58\x57\x4f\x6e\x34\x57\x34\x6c\x63\x4c\x48\x48\x55','\x57\x51\x70\x64\x4a\x58\x6a\x67\x57\x36\x78\x64\x4c\x49\x7a\x5a','\x72\x4b\x5a\x64\x47\x43\x6b\x41\x57\x34\x57\x52\x57\x34\x64\x64\x4b\x63\x4b','\x6b\x53\x6f\x66\x57\x51\x64\x64\x4c\x74\x62\x51\x57\x37\x75\x4e','\x67\x72\x46\x63\x4d\x6d\x6b\x5a','\x57\x4f\x37\x64\x54\x32\x52\x63\x4c\x31\x71\x7a\x64\x57\x34','\x41\x6d\x6b\x43\x41\x61\x68\x64\x4f\x38\x6f\x71\x57\x52\x31\x70','\x57\x52\x64\x64\x55\x38\x6f\x44\x57\x36\x33\x63\x54\x61','\x57\x50\x4c\x48\x61\x33\x78\x63\x4f\x6d\x6f\x4d\x57\x37\x33\x64\x47\x61','\x57\x50\x74\x64\x54\x49\x78\x63\x4c\x4c\x39\x43\x65\x71\x47','\x79\x58\x52\x64\x54\x6d\x6b\x33\x69\x61\x56\x64\x47\x6d\x6b\x57\x57\x34\x42\x64\x49\x43\x6f\x78\x71\x61','\x6b\x58\x48\x45\x41\x62\x50\x72\x57\x35\x69\x4f','\x6d\x47\x6c\x63\x53\x43\x6f\x4f\x79\x76\x68\x63\x4b\x43\x6b\x51','\x61\x66\x4a\x63\x4c\x38\x6b\x38\x57\x34\x4f\x4d\x57\x35\x68\x64\x47\x61','\x57\x52\x68\x63\x4b\x6d\x6f\x52\x57\x37\x54\x68\x57\x4f\x6e\x6e','\x57\x50\x50\x49\x57\x37\x4e\x63\x53\x57\x69\x45\x66\x38\x6f\x55','\x57\x50\x37\x64\x49\x6d\x6f\x62\x57\x50\x75\x70','\x57\x52\x75\x56\x57\x36\x71','\x57\x35\x37\x63\x56\x6d\x6f\x44','\x43\x38\x6f\x63\x74\x71\x46\x64\x4f\x38\x6f\x46\x57\x51\x62\x6f','\x6a\x63\x71\x77','\x57\x51\x53\x39\x57\x51\x56\x63\x49\x53\x6f\x76','\x6e\x53\x6f\x51\x57\x51\x38','\x57\x51\x61\x34\x63\x64\x4e\x63\x4b\x4b\x78\x64\x53\x72\x75','\x62\x67\x68\x63\x4f\x43\x6f\x4f\x69\x73\x37\x63\x52\x58\x38','\x6d\x6d\x6b\x62\x77\x71\x37\x64\x4c\x43\x6f\x56\x57\x52\x38','\x57\x4f\x46\x63\x48\x53\x6f\x61\x57\x52\x4c\x39\x61\x43\x6b\x55\x57\x37\x6d','\x6e\x57\x71\x76\x41\x48\x50\x6a\x57\x34\x57','\x44\x38\x6f\x50\x57\x51\x58\x2b\x57\x34\x37\x63\x4b\x72\x72\x33','\x6e\x64\x4c\x4d\x57\x35\x33\x64\x4c\x4c\x61\x42\x57\x35\x47','\x57\x35\x4e\x63\x56\x43\x6f\x45\x57\x34\x4b','\x57\x51\x64\x64\x4b\x38\x6b\x58\x57\x52\x31\x69\x57\x52\x31\x41\x6b\x61','\x57\x4f\x39\x4c\x68\x4c\x34','\x69\x6d\x6f\x54\x57\x52\x74\x63\x47\x71','\x72\x43\x6b\x36\x57\x50\x61','\x62\x58\x4e\x63\x47\x53\x6b\x32\x57\x37\x57\x50\x57\x35\x56\x64\x49\x71','\x6d\x43\x6f\x59\x57\x52\x4c\x34\x57\x4f\x46\x63\x4d\x71\x76\x4c','\x57\x50\x4a\x64\x4a\x6d\x6f\x67','\x70\x43\x6f\x4f\x57\x51\x56\x63\x4a\x6d\x6b\x4d\x68\x77\x5a\x64\x56\x57','\x6a\x4b\x4f\x43\x46\x76\x76\x59\x57\x36\x35\x66','\x57\x34\x68\x64\x4e\x6d\x6f\x45\x57\x51\x54\x51\x57\x36\x30\x74','\x57\x36\x4e\x63\x4b\x43\x6f\x59\x57\x52\x31\x2b\x57\x51\x76\x6c\x6c\x47','\x57\x52\x79\x6a\x74\x43\x6b\x77\x57\x34\x53\x45\x57\x34\x64\x64\x48\x57','\x6f\x5a\x52\x64\x54\x6d\x6b\x35\x57\x37\x56\x64\x4c\x53\x6b\x6e\x67\x71','\x44\x43\x6f\x45\x57\x4f\x72\x35\x62\x4a\x57','\x79\x53\x6b\x6b\x46\x71\x56\x64\x4f\x53\x6f\x6c\x57\x51\x57','\x57\x35\x76\x46\x45\x53\x6f\x33\x57\x50\x78\x63\x48\x48\x37\x64\x49\x57','\x65\x78\x5a\x63\x52\x53\x6f\x2b','\x68\x38\x6f\x4e\x43\x49\x76\x44\x42\x43\x6b\x64\x57\x51\x69','\x79\x53\x6b\x68\x73\x58\x56\x63\x4f\x43\x6b\x7a\x57\x52\x31\x66','\x57\x50\x7a\x57\x64\x66\x4a\x63\x4f\x47','\x57\x4f\x64\x63\x50\x77\x5a\x63\x49\x4b\x4f\x6a\x62\x66\x4f','\x57\x51\x61\x44\x57\x35\x37\x64\x49\x47','\x77\x31\x68\x64\x50\x4e\x58\x66\x63\x6d\x6f\x53','\x57\x34\x42\x63\x53\x53\x6f\x67\x57\x34\x38\x56\x57\x51\x5a\x63\x48\x4c\x6d','\x57\x4f\x43\x35\x57\x51\x46\x63\x48\x43\x6f\x61\x66\x6d\x6b\x54\x57\x34\x71','\x57\x50\x64\x63\x52\x43\x6f\x7a\x57\x50\x4b\x43\x57\x34\x76\x50\x6b\x61','\x70\x67\x65\x4f\x78\x68\x57\x46\x6a\x53\x6b\x6e','\x77\x38\x6b\x56\x57\x52\x38\x69\x69\x53\x6f\x66\x74\x53\x6b\x68','\x57\x34\x52\x63\x4f\x38\x6b\x77\x57\x52\x39\x75\x57\x34\x75\x4e\x6c\x47','\x57\x34\x78\x64\x4c\x4a\x6d','\x57\x34\x5a\x63\x4a\x38\x6f\x6a\x57\x51\x31\x57\x57\x36\x38\x65\x57\x35\x61','\x57\x35\x4c\x6e\x44\x47','\x57\x4f\x70\x63\x4f\x43\x6b\x39\x57\x36\x69','\x73\x38\x6b\x35\x57\x50\x43\x51\x6e\x71','\x78\x66\x52\x64\x56\x78\x35\x6c\x68\x6d\x6f\x4e','\x78\x53\x6b\x43\x71\x72\x33\x64\x51\x53\x6f\x72\x57\x52\x30','\x57\x36\x6e\x62\x62\x6d\x6b\x72','\x57\x36\x65\x47\x57\x50\x6e\x76\x70\x53\x6b\x65\x69\x47','\x57\x52\x38\x44\x57\x34\x74\x63\x4e\x48\x46\x64\x53\x38\x6f\x4d\x57\x37\x30','\x57\x37\x42\x64\x48\x72\x66\x67\x57\x36\x78\x64\x4c\x63\x66\x77','\x6b\x43\x6f\x6c\x57\x51\x46\x64\x4b\x5a\x65\x76\x57\x51\x34','\x6c\x5a\x65\x67\x66\x43\x6f\x35\x6b\x53\x6f\x77\x57\x35\x38','\x6d\x78\x2f\x64\x4b\x43\x6f\x42\x71\x71\x53\x68\x57\x37\x69','\x46\x6d\x6b\x79\x63\x53\x6f\x46\x72\x77\x46\x64\x4d\x6d\x6b\x76','\x75\x58\x4e\x63\x47\x43\x6b\x54\x57\x35\x65\x4c\x57\x35\x78\x64\x48\x57','\x66\x43\x6b\x4c\x41\x6d\x6b\x56\x57\x50\x44\x30\x73\x74\x69','\x66\x6d\x6b\x4f\x45\x43\x6f\x52\x57\x35\x4c\x54\x78\x4a\x53','\x57\x34\x33\x64\x49\x6d\x6f\x6c\x7a\x4a\x33\x64\x50\x6d\x6f\x34\x57\x50\x75','\x43\x6d\x6f\x67\x65\x33\x66\x75\x75\x53\x6f\x35\x57\x36\x79','\x70\x38\x6f\x66\x57\x51\x64\x64\x47\x47','\x6d\x53\x6f\x2f\x76\x57\x57\x4f\x57\x35\x72\x6e\x65\x57','\x57\x50\x42\x63\x53\x6d\x6b\x52\x57\x36\x34','\x6b\x53\x6f\x6c\x57\x52\x56\x64\x4d\x49\x62\x68\x57\x36\x6d','\x57\x37\x6a\x61\x63\x38\x6b\x62','\x6d\x78\x71\x59\x72\x31\x44\x68\x6a\x43\x6b\x76','\x57\x37\x74\x63\x4b\x53\x6f\x35\x57\x37\x6e\x36\x57\x52\x7a\x71','\x67\x38\x6b\x52\x42\x47','\x57\x50\x72\x43\x57\x36\x42\x64\x4c\x74\x53','\x57\x50\x48\x35\x57\x4f\x68\x63\x55\x66\x34\x49\x6c\x73\x4b','\x57\x4f\x39\x56\x69\x75\x78\x63\x53\x6d\x6f\x4d\x57\x36\x68\x64\x50\x47','\x57\x52\x74\x64\x4d\x43\x6f\x75\x57\x36\x78\x63\x53\x5a\x47\x6f','\x57\x50\x4c\x4c\x74\x76\x37\x63\x54\x43\x6f\x51\x57\x37\x42\x64\x47\x71','\x71\x6d\x6b\x36\x57\x50\x6d','\x6a\x48\x68\x64\x50\x53\x6b\x51\x57\x37\x56\x64\x4b\x6d\x6b\x4f\x65\x71','\x68\x77\x39\x73\x6b\x6d\x6f\x38\x6a\x53\x6b\x6d\x57\x34\x53','\x57\x35\x64\x64\x48\x38\x6f\x6c\x57\x51\x57','\x6f\x6d\x6f\x4e\x57\x52\x39\x49','\x44\x43\x6b\x41\x78\x61\x33\x64\x4b\x53\x6f\x6c\x57\x51\x58\x42','\x6b\x49\x34\x42\x65\x47','\x57\x52\x47\x4c\x57\x36\x34','\x57\x35\x66\x43\x42\x38\x6b\x2b\x57\x4f\x64\x64\x47\x58\x70\x64\x4c\x57','\x57\x34\x2f\x64\x54\x32\x64\x63\x49\x76\x47\x76\x65\x31\x43','\x57\x50\x70\x64\x50\x6d\x6f\x61\x57\x4f\x72\x69\x57\x37\x39\x30\x6b\x57','\x6f\x43\x6f\x52\x57\x36\x46\x63\x49\x53\x6b\x59\x67\x32\x37\x64\x52\x47','\x57\x50\x46\x64\x51\x6d\x6b\x77\x57\x4f\x48\x71\x57\x34\x66\x55\x6d\x57','\x57\x51\x71\x4b\x72\x53\x6f\x4a\x70\x32\x4a\x64\x47\x53\x6b\x75','\x57\x50\x70\x64\x49\x38\x6f\x66\x57\x37\x62\x6d\x57\x37\x4b\x57\x57\x34\x61','\x57\x4f\x34\x79\x57\x4f\x5a\x63\x53\x74\x58\x50\x57\x50\x61\x44','\x6d\x53\x6f\x30\x74\x72\x6a\x38\x57\x34\x4c\x76\x66\x47','\x77\x4c\x42\x64\x4b\x43\x6b\x6a\x57\x34\x53\x56\x57\x50\x74\x64\x48\x57','\x78\x76\x33\x64\x55\x78\x35\x37\x67\x6d\x6f\x4d\x76\x47','\x46\x38\x6b\x73\x66\x57','\x57\x34\x31\x70\x79\x53\x6b\x59\x57\x4f\x68\x64\x47\x31\x4a\x64\x47\x47','\x57\x35\x50\x79\x74\x38\x6b\x4a','\x57\x50\x56\x63\x4e\x43\x6f\x73\x57\x52\x71','\x57\x4f\x42\x63\x4d\x38\x6f\x63\x57\x52\x6a\x77\x65\x53\x6b\x39\x57\x37\x53','\x57\x50\x33\x64\x4d\x53\x6f\x52\x45\x57','\x70\x53\x6f\x70\x57\x52\x68\x64\x4b\x5a\x54\x62\x57\x35\x43\x4d','\x57\x34\x4e\x64\x48\x59\x74\x64\x54\x43\x6b\x50\x57\x36\x78\x63\x48\x75\x65','\x57\x50\x30\x6a\x57\x50\x6c\x63\x50\x43\x6f\x2f\x67\x43\x6b\x63\x57\x37\x75','\x78\x4b\x78\x64\x50\x4c\x54\x59','\x61\x43\x6f\x31\x57\x34\x61\x35\x6c\x6d\x6f\x70\x75\x38\x6b\x78','\x57\x35\x2f\x63\x49\x43\x6b\x46\x57\x4f\x39\x34\x57\x37\x34\x2f\x57\x35\x69','\x61\x62\x68\x63\x49\x38\x6b\x34','\x6a\x43\x6f\x4a\x57\x52\x39\x56\x57\x34\x4e\x63\x49\x64\x48\x37','\x57\x51\x47\x50\x57\x36\x58\x34\x74\x6d\x6b\x73\x72\x38\x6f\x33','\x57\x50\x64\x64\x4c\x53\x6f\x78\x57\x36\x35\x42','\x69\x53\x6f\x31\x57\x52\x4c\x34\x57\x37\x4a\x63\x4d\x48\x48\x53','\x6e\x73\x61\x35\x74\x76\x43\x63\x6d\x6d\x6b\x69','\x61\x66\x42\x64\x4b\x43\x6b\x6b\x57\x34\x53\x52\x57\x34\x64\x63\x48\x61','\x57\x4f\x54\x57\x68\x30\x78\x63\x50\x53\x6f\x47\x57\x37\x56\x63\x48\x71','\x72\x65\x4e\x63\x4f\x61','\x57\x50\x4e\x63\x49\x33\x70\x63\x4f\x6d\x6f\x4f\x57\x52\x6c\x63\x4b\x61\x30\x58\x57\x50\x65\x37\x45\x71','\x57\x4f\x5a\x64\x47\x64\x78\x64\x4f\x38\x6b\x2b\x57\x36\x56\x64\x47\x72\x69','\x67\x33\x4e\x64\x4f\x6d\x6f\x59\x6d\x63\x2f\x63\x4e\x75\x4b','\x57\x50\x6c\x64\x47\x53\x6b\x6b\x41\x74\x4a\x63\x53\x43\x6b\x4a\x57\x50\x71','\x6a\x6d\x6f\x57\x57\x51\x37\x63\x4d\x53\x6f\x52\x67\x32\x37\x64\x51\x47','\x57\x52\x47\x70\x57\x50\x42\x63\x4a\x72\x52\x64\x52\x53\x6f\x38\x57\x51\x57','\x44\x38\x6b\x6f\x71\x47\x68\x64\x51\x43\x6f\x79\x57\x52\x31\x64','\x57\x35\x78\x63\x51\x38\x6f\x41\x57\x34\x4f\x4b\x57\x52\x2f\x63\x4b\x30\x34','\x68\x72\x72\x45\x57\x34\x6c\x63\x49\x43\x6f\x74\x57\x52\x61\x62','\x57\x4f\x4e\x63\x52\x6d\x6b\x4c\x57\x37\x6d\x58','\x6d\x65\x70\x63\x52\x38\x6f\x54\x79\x65\x56\x64\x4c\x6d\x6b\x7a','\x57\x52\x4f\x2f\x74\x74\x37\x64\x48\x71\x42\x64\x49\x48\x47','\x57\x35\x70\x63\x55\x43\x6b\x37\x57\x36\x79\x58\x57\x35\x65\x35\x57\x50\x79','\x57\x4f\x6d\x2b\x69\x48\x4e\x64\x50\x43\x6b\x4b','\x7a\x6d\x6b\x75\x63\x6d\x6f\x75','\x57\x37\x53\x34\x57\x51\x4c\x73\x6b\x6d\x6b\x75\x70\x6d\x6f\x68','\x57\x4f\x65\x36\x6f\x61\x37\x64\x50\x43\x6b\x4c\x57\x34\x4e\x64\x53\x57','\x45\x4a\x6d\x30\x57\x4f\x33\x64\x4d\x65\x30\x75\x57\x50\x61','\x57\x4f\x71\x63\x57\x50\x78\x63\x55\x67\x4c\x50\x57\x50\x65\x42','\x46\x74\x6a\x58\x57\x50\x70\x64\x4c\x65\x43','\x57\x50\x42\x64\x53\x67\x64\x63\x49\x4b\x30\x76\x64\x48\x71','\x44\x4b\x52\x63\x52\x38\x6f\x4d\x46\x72\x74\x64\x48\x38\x6b\x4e','\x42\x6d\x6f\x6d\x57\x51\x46\x64\x4d\x64\x66\x75\x57\x36\x53\x32','\x57\x4f\x2f\x64\x56\x43\x6f\x50\x57\x4f\x76\x7a\x57\x34\x76\x4a\x6f\x57','\x57\x52\x71\x2b\x57\x51\x68\x63\x49\x6d\x6f\x43\x6c\x53\x6b\x61\x57\x34\x34','\x66\x67\x37\x64\x49\x53\x6f\x73\x71\x66\x4b\x6f\x57\x37\x4f','\x57\x52\x34\x4c\x74\x53\x6f\x47','\x57\x34\x70\x64\x4f\x38\x6f\x74\x57\x50\x6e\x69\x57\x4f\x57\x4e\x70\x57','\x57\x51\x57\x35\x76\x38\x6b\x4c\x70\x4d\x4a\x64\x4a\x38\x6b\x66','\x57\x50\x35\x5a\x67\x75\x56\x63\x54\x43\x6f\x33\x57\x52\x70\x64\x4c\x71','\x57\x37\x4b\x35\x57\x4f\x72\x45\x62\x6d\x6b\x76\x6b\x6d\x6f\x77','\x6e\x64\x6d\x42\x65\x71','\x57\x50\x33\x63\x55\x38\x6b\x35','\x57\x34\x68\x63\x4b\x5a\x6c\x64\x56\x53\x6b\x30\x57\x36\x42\x63\x4c\x71\x47','\x57\x35\x37\x63\x50\x38\x6f\x6c\x57\x35\x71\x59\x57\x36\x33\x63\x48\x4c\x75','\x66\x61\x54\x41\x57\x34\x42\x63\x4c\x71','\x6b\x43\x6f\x6f\x57\x52\x46\x64\x4b\x47','\x65\x6d\x6f\x33\x70\x49\x76\x67\x6b\x43\x6b\x76\x57\x51\x38','\x57\x52\x76\x6f\x57\x4f\x42\x63\x4a\x58\x68\x64\x56\x38\x6f\x5a\x57\x51\x53','\x66\x4d\x38\x6d\x57\x37\x71','\x44\x38\x6f\x32\x57\x52\x31\x34\x57\x34\x42\x63\x4d\x62\x72\x51','\x71\x43\x6f\x63\x65\x33\x66\x46\x73\x43\x6f\x6b\x57\x36\x6d','\x57\x51\x4f\x56\x74\x43\x6f\x47\x6b\x4c\x4a\x64\x4b\x53\x6b\x66','\x57\x4f\x5a\x63\x4a\x53\x6f\x78\x57\x52\x62\x61\x64\x53\x6b\x4a\x57\x37\x6d','\x79\x53\x6b\x73\x62\x43\x6f\x77\x74\x4e\x37\x63\x4d\x43\x6b\x65','\x57\x4f\x69\x52\x69\x62\x70\x64\x54\x61','\x57\x34\x62\x5a\x45\x53\x6b\x55\x57\x4f\x6c\x63\x48\x47','\x74\x76\x74\x64\x51\x38\x6b\x48\x57\x35\x53\x75\x57\x52\x65','\x6b\x57\x44\x54\x57\x35\x37\x63\x4b\x61','\x74\x65\x70\x64\x49\x77\x6a\x62\x61\x43\x6f\x53\x71\x61','\x57\x50\x4c\x4e\x57\x36\x52\x64\x4f\x62\x76\x46\x63\x38\x6f\x48','\x6b\x73\x39\x73\x68\x43\x6f\x5a\x6a\x53\x6f\x63\x57\x34\x4f','\x57\x34\x74\x63\x51\x53\x6f\x31\x57\x34\x65\x51\x57\x52\x30','\x7a\x43\x6b\x70\x66\x43\x6f\x46\x72\x77\x46\x63\x4d\x43\x6b\x61','\x6a\x5a\x56\x64\x55\x43\x6b\x56\x57\x51\x2f\x64\x48\x6d\x6b\x2b\x66\x61','\x57\x52\x42\x64\x55\x43\x6f\x75\x57\x35\x56\x63\x53\x59\x6d\x73\x6d\x47','\x6f\x53\x6b\x42\x57\x34\x6a\x2b\x76\x78\x54\x4e\x57\x34\x75','\x6c\x62\x34\x46\x41\x62\x4c\x68\x57\x4f\x6a\x53','\x57\x51\x30\x63\x57\x50\x68\x63\x49\x58\x33\x64\x54\x53\x6f\x57\x57\x36\x69','\x57\x50\x2f\x63\x4d\x53\x6f\x75\x57\x52\x4b','\x57\x4f\x31\x55\x57\x52\x68\x63\x53\x57','\x6c\x4a\x75\x74\x65\x6d\x6f\x34\x6f\x53\x6b\x6d\x57\x35\x4f','\x62\x64\x78\x63\x52\x38\x6f\x4f\x44\x74\x4a\x63\x4c\x47\x61','\x57\x34\x46\x64\x49\x53\x6f\x65\x57\x52\x79\x4c\x57\x36\x61\x7a\x57\x50\x6d','\x6f\x6d\x6f\x70\x57\x51\x64\x64\x4d\x64\x72\x62\x57\x36\x38\x4c','\x67\x53\x6b\x48\x43\x53\x6f\x51\x57\x4f\x4f\x48\x68\x57\x57','\x57\x35\x4f\x4b\x57\x35\x5a\x64\x55\x58\x39\x35\x44\x57\x33\x64\x54\x59\x42\x64\x56\x6d\x6b\x49\x6f\x57','\x57\x34\x74\x64\x4d\x49\x42\x64\x56\x53\x6b\x63\x57\x36\x42\x63\x47\x62\x69','\x57\x50\x34\x36\x6c\x58\x6c\x63\x4f\x6d\x6b\x47\x57\x34\x4a\x64\x54\x71','\x62\x78\x52\x63\x4f\x53\x6f\x32\x6d\x64\x64\x64\x4d\x62\x6d','\x57\x51\x69\x30\x57\x52\x64\x63\x48\x53\x6f\x56\x6b\x43\x6b\x56\x57\x34\x61','\x69\x6d\x6f\x46\x57\x51\x42\x64\x4e\x5a\x50\x42\x57\x51\x79\x57','\x57\x4f\x64\x63\x55\x6d\x6b\x4e\x57\x36\x4b\x47','\x67\x4e\x64\x63\x52\x43\x6f\x31\x6a\x59\x74\x63\x51\x58\x47','\x57\x52\x57\x34\x74\x73\x4a\x63\x54\x65\x64\x64\x55\x62\x65','\x72\x4b\x37\x63\x56\x38\x6b\x36\x57\x35\x58\x72\x57\x52\x64\x64\x4f\x71','\x57\x50\x74\x64\x53\x77\x74\x63\x4a\x76\x57','\x45\x4c\x56\x64\x4f\x32\x6a\x68\x64\x53\x6f\x67\x75\x71','\x6b\x43\x6b\x63\x57\x35\x4b\x38\x64\x73\x72\x43\x57\x34\x7a\x4f\x57\x52\x74\x64\x47\x4e\x69','\x63\x68\x46\x64\x49\x53\x6f\x72\x74\x57\x54\x6b\x57\x37\x4f','\x57\x51\x71\x4b\x57\x36\x54\x5a\x75\x6d\x6f\x66\x61\x71','\x74\x38\x6b\x59\x7a\x4d\x75\x46\x75\x6d\x6b\x6a\x57\x4f\x4f\x77\x57\x4f\x64\x64\x53\x71','\x57\x34\x78\x64\x47\x73\x37\x64\x55\x6d\x6b\x57\x57\x36\x78\x63\x4a\x57\x38','\x57\x36\x5a\x63\x4e\x38\x6f\x56\x57\x36\x4c\x6b\x57\x51\x44\x43\x6f\x71','\x57\x50\x4e\x63\x48\x33\x68\x64\x4b\x43\x6b\x59\x57\x36\x68\x63\x4c\x71\x38\x6d','\x57\x4f\x70\x64\x49\x38\x6f\x79\x41\x71\x37\x63\x51\x38\x6b\x50\x57\x50\x6d','\x57\x4f\x46\x64\x49\x38\x6f\x6f','\x57\x50\x52\x64\x4c\x38\x6f\x67\x57\x34\x7a\x61\x57\x37\x47\x54','\x57\x36\x30\x4a\x75\x6d\x6b\x4c\x6c\x77\x78\x64\x48\x6d\x6f\x61','\x57\x52\x53\x2b\x57\x51\x5a\x63\x4d\x53\x6f\x76\x6b\x6d\x6b\x32\x57\x35\x75','\x57\x50\x7a\x48\x68\x71','\x42\x6d\x6f\x44\x57\x52\x33\x64\x47\x5a\x4c\x72\x57\x51\x79\x58','\x44\x43\x6b\x64\x73\x57\x42\x64\x51\x6d\x6f\x41\x57\x51\x69','\x74\x4c\x65\x63\x57\x50\x5a\x64\x4c\x53\x6f\x64\x57\x37\x71\x4e\x79\x76\x2f\x63\x51\x53\x6f\x38\x45\x57','\x6b\x73\x64\x63\x51\x43\x6b\x70\x57\x36\x75','\x79\x67\x58\x46\x78\x6d\x6f\x64\x6b\x38\x6f\x6e\x57\x34\x4f','\x78\x76\x68\x64\x50\x77\x71','\x57\x52\x31\x51\x57\x37\x62\x38\x73\x38\x6f\x67\x63\x53\x6f\x50','\x46\x43\x6b\x43\x66\x57','\x65\x77\x64\x63\x52\x53\x6f\x35\x69\x74\x74\x63\x4c\x58\x47','\x79\x38\x6f\x44\x63\x6d\x6f\x69\x63\x33\x42\x64\x4c\x38\x6b\x78','\x63\x6d\x6b\x4f\x57\x50\x71\x69\x69\x53\x6f\x76\x71\x53\x6b\x76','\x57\x37\x69\x50\x57\x50\x48\x45\x65\x53\x6b\x64','\x65\x58\x62\x64\x57\x34\x74\x63\x49\x53\x6b\x41\x57\x52\x4b\x75','\x57\x50\x74\x63\x56\x6d\x6b\x36','\x57\x34\x68\x64\x47\x43\x6f\x6a\x57\x51\x43\x4c\x57\x36\x69\x71\x57\x4f\x61','\x64\x62\x76\x65\x57\x34\x75','\x57\x50\x69\x2b\x68\x58\x4e\x64\x52\x38\x6b\x4c\x57\x34\x69','\x65\x43\x6f\x4e\x70\x64\x7a\x42\x42\x61','\x57\x50\x42\x64\x53\x67\x74\x63\x4c\x76\x61\x69\x67\x66\x4f','\x43\x6d\x6f\x67\x66\x78\x4c\x79\x76\x38\x6b\x7a','\x68\x71\x5a\x63\x53\x6d\x6b\x50','\x69\x63\x2f\x64\x50\x53\x6f\x52\x57\x37\x2f\x64\x49\x43\x6b\x37\x62\x61','\x42\x43\x6f\x45\x57\x50\x4c\x35','\x57\x51\x2f\x64\x52\x53\x6f\x46\x57\x36\x70\x63\x54\x64\x38','\x57\x37\x71\x38\x57\x50\x44\x7a\x6d\x53\x6b\x6c\x69\x6d\x6f\x77','\x57\x4f\x47\x52\x57\x36\x33\x64\x53\x47\x47\x74\x68\x6d\x6f\x4b','\x57\x52\x4b\x35\x71\x74\x78\x63\x4d\x75\x2f\x64\x51\x71\x4b','\x78\x65\x4a\x64\x54\x53\x6b\x2b','\x57\x51\x69\x49\x57\x36\x39\x4f\x75\x38\x6f\x77','\x61\x78\x64\x64\x4f\x6d\x6f\x35\x70\x74\x5a\x63\x4c\x48\x65','\x57\x4f\x33\x64\x51\x4d\x5a\x63\x4c\x57','\x57\x35\x70\x63\x55\x38\x6f\x31\x57\x34\x53\x49\x57\x52\x37\x63\x47\x77\x75','\x57\x50\x52\x63\x53\x43\x6b\x39\x57\x51\x72\x4c\x57\x36\x38\x48\x57\x50\x53','\x66\x48\x42\x63\x48\x43\x6b\x38\x57\x35\x43\x4a\x57\x35\x56\x64\x49\x47','\x75\x76\x46\x64\x53\x33\x76\x61\x67\x6d\x6b\x50\x71\x61','\x57\x4f\x78\x64\x50\x6d\x6f\x79\x57\x4f\x38','\x57\x4f\x75\x70\x57\x50\x46\x63\x54\x64\x39\x34\x57\x35\x4b\x62','\x57\x35\x54\x4d\x67\x65\x74\x63\x4f\x38\x6f\x49\x57\x37\x37\x64\x47\x61','\x57\x37\x70\x63\x4b\x53\x6f\x31\x57\x37\x35\x36','\x63\x65\x37\x64\x54\x38\x6b\x59\x57\x34\x7a\x72\x57\x51\x74\x64\x50\x71','\x6c\x66\x70\x64\x54\x38\x6f\x58\x42\x57','\x57\x51\x71\x70\x57\x50\x43','\x6a\x43\x6f\x51\x57\x52\x78\x63\x4a\x6d\x6b\x4c\x64\x63\x6c\x64\x51\x47','\x67\x67\x46\x63\x50\x43\x6f\x42\x69\x71','\x6a\x43\x6f\x4a\x57\x51\x58\x4d\x57\x34\x42\x63\x4e\x58\x47','\x57\x50\x2f\x63\x53\x43\x6b\x47\x57\x36\x30\x58\x57\x35\x61','\x46\x43\x6f\x69\x57\x50\x35\x4b\x75\x33\x6a\x36','\x57\x51\x4b\x50\x57\x36\x76\x34\x77\x38\x6f\x62\x74\x38\x6f\x34','\x57\x35\x37\x64\x4c\x4a\x68\x64\x55\x53\x6b\x38\x57\x36\x70\x63\x48\x61','\x57\x52\x6c\x64\x56\x53\x6f\x71\x57\x36\x4a\x63\x51\x73\x6d\x7a\x63\x61','\x65\x38\x6b\x48\x41\x38\x6b\x56\x57\x50\x58\x54\x75\x64\x53','\x57\x34\x53\x62\x57\x50\x70\x63\x51\x73\x62\x57\x57\x50\x61\x69','\x65\x33\x2f\x64\x47\x6d\x6f\x79\x71\x61\x30\x37\x57\x36\x79','\x67\x43\x6f\x4e\x70\x64\x6a\x6b\x6a\x6d\x6f\x6f\x57\x52\x75','\x57\x34\x4a\x63\x4a\x38\x6f\x41\x57\x51\x6e\x58\x57\x37\x43\x66\x57\x4f\x69','\x57\x52\x47\x6c\x57\x50\x46\x63\x4e\x47','\x6e\x4b\x4f\x46\x44\x61\x76\x6d\x57\x34\x31\x50','\x7a\x53\x6f\x5a\x75\x71\x53\x70\x57\x35\x72\x41\x65\x71','\x57\x4f\x78\x64\x4a\x67\x42\x63\x49\x67\x38','\x7a\x73\x6e\x58\x57\x4f\x37\x64\x47\x30\x53\x78\x57\x35\x34','\x66\x68\x52\x63\x52\x43\x6f\x51\x6f\x74\x4a\x63\x47\x66\x79','\x57\x52\x57\x70\x57\x50\x42\x63\x4d\x72\x4f','\x6f\x63\x6c\x64\x53\x6d\x6b\x2f\x57\x36\x42\x64\x49\x53\x6b\x30\x6c\x57','\x44\x38\x6f\x48\x75\x71\x75\x34\x57\x50\x31\x73\x64\x71','\x57\x52\x4b\x52\x57\x37\x6d\x39\x74\x43\x6f\x78\x64\x53\x6f\x34','\x57\x50\x44\x4c\x61\x30\x33\x63\x53\x38\x6f\x52','\x57\x50\x61\x55\x70\x57\x37\x64\x51\x43\x6b\x35\x57\x34\x64\x63\x4f\x61','\x65\x33\x2f\x64\x47\x6d\x6f\x69\x78\x61\x53\x64\x57\x37\x30','\x75\x43\x6f\x4b\x46\x43\x6f\x36\x57\x4f\x31\x30\x75\x4a\x79','\x57\x50\x70\x64\x55\x6d\x6f\x66\x57\x4f\x6d','\x6e\x49\x37\x63\x56\x53\x6b\x72\x57\x37\x75\x70\x57\x36\x42\x64\x55\x57','\x57\x51\x56\x64\x4f\x38\x6f\x57\x57\x37\x74\x63\x4c\x71','\x71\x77\x4e\x64\x49\x38\x6f\x73\x77\x58\x75\x6f\x57\x52\x6d','\x57\x51\x34\x75\x74\x73\x4a\x63\x4d\x75\x4e\x64\x52\x57','\x57\x34\x72\x7a\x46\x43\x6b\x2f','\x44\x53\x6f\x6b\x64\x68\x34\x44\x75\x6d\x6f\x68\x57\x37\x34','\x57\x51\x34\x50\x6b\x72\x64\x64\x50\x43\x6b\x30\x57\x35\x70\x64\x50\x71','\x57\x36\x42\x64\x4a\x48\x7a\x62','\x65\x4e\x70\x64\x48\x6d\x6f\x74\x74\x58\x75\x7a','\x44\x74\x39\x4d\x57\x51\x6c\x64\x4b\x75\x6d\x72\x57\x35\x57','\x67\x6d\x6b\x33\x41\x6d\x6f\x4d\x57\x50\x7a\x31\x74\x61','\x74\x4b\x4e\x64\x54\x53\x6b\x35','\x64\x62\x62\x66\x57\x34\x6c\x63\x48\x53\x6b\x71\x57\x51\x54\x76','\x57\x35\x5a\x64\x48\x4a\x6c\x64\x56\x47','\x66\x4d\x69\x41\x57\x37\x6c\x63\x4d\x71','\x6f\x59\x6c\x64\x56\x6d\x6b\x4f\x57\x36\x4f','\x6a\x6d\x6f\x57\x57\x51\x6c\x63\x4d\x38\x6b\x55\x77\x67\x46\x64\x53\x57','\x57\x36\x62\x42\x62\x6d\x6b\x72\x57\x34\x43\x45\x57\x34\x46\x64\x47\x57','\x57\x34\x56\x64\x56\x38\x6f\x74\x57\x50\x54\x44\x57\x34\x4c\x31\x43\x57','\x57\x4f\x6e\x33\x57\x50\x34','\x57\x52\x75\x36\x57\x50\x44\x78\x6c\x53\x6b\x67\x6b\x38\x6f\x6f','\x70\x6d\x6b\x4a\x45\x43\x6f\x48\x57\x4f\x30\x37\x77\x49\x65','\x43\x31\x6e\x6e\x6e\x75\x71\x67\x57\x37\x44\x51\x57\x37\x5a\x63\x54\x43\x6b\x50\x63\x61','\x6f\x6d\x6f\x79\x57\x52\x70\x64\x47\x4a\x62\x73\x57\x36\x38\x32','\x57\x52\x30\x2f\x75\x6d\x6f\x54','\x57\x50\x76\x75\x57\x36\x74\x64\x50\x48\x75\x43\x66\x53\x6f\x54','\x57\x4f\x46\x64\x4a\x53\x6f\x6f\x57\x4f\x48\x41','\x78\x66\x42\x64\x55\x53\x6b\x39\x57\x35\x43\x73\x57\x51\x4b','\x57\x37\x6d\x54\x57\x50\x39\x78\x6c\x53\x6b\x76\x6c\x6d\x6b\x44','\x65\x67\x38\x6d\x57\x37\x78\x63\x4b\x61\x79','\x62\x33\x56\x64\x4a\x38\x6f\x6f\x73\x57','\x57\x50\x74\x64\x53\x77\x74\x63\x49\x30\x30\x70\x6e\x48\x6d','\x57\x37\x64\x64\x4b\x61\x35\x42\x57\x37\x47','\x57\x34\x62\x6a\x46\x43\x6b\x4a','\x45\x6d\x6b\x43\x66\x61','\x63\x61\x38\x78\x57\x34\x2f\x63\x4b\x53\x6b\x41\x57\x51\x38\x72','\x6f\x6d\x6b\x59\x43\x38\x6f\x4a\x57\x4f\x58\x56\x76\x4a\x47','\x57\x4f\x75\x2b\x70\x57\x37\x64\x4e\x38\x6b\x58\x57\x34\x42\x64\x51\x71','\x64\x32\x4e\x63\x4d\x43\x6b\x44','\x57\x36\x66\x68\x64\x53\x6b\x6c\x57\x34\x30\x6f\x57\x34\x61','\x57\x52\x47\x35\x57\x34\x7a\x30\x75\x43\x6f\x42\x67\x38\x6f\x2b','\x57\x50\x38\x68\x57\x4f\x5a\x63\x53\x58\x7a\x55\x57\x50\x79\x68','\x43\x66\x54\x6c\x6e\x75\x71\x6f\x57\x50\x76\x41\x57\x36\x4a\x63\x4a\x6d\x6b\x55\x62\x43\x6b\x6c','\x57\x50\x61\x56\x42\x62\x6c\x64\x51\x43\x6b\x57\x57\x34\x2f\x64\x50\x71','\x57\x35\x68\x64\x4e\x6d\x6f\x70\x57\x52\x62\x41\x57\x36\x75\x66\x57\x50\x65','\x57\x36\x79\x47\x57\x50\x39\x79\x70\x47','\x79\x43\x6f\x78\x62\x4e\x71','\x57\x4f\x6e\x2f\x57\x52\x68\x63\x53\x57','\x7a\x4a\x6e\x4b\x57\x50\x68\x64\x4c\x4b\x65\x44','\x57\x52\x6c\x63\x53\x38\x6b\x52\x57\x36\x71\x58\x57\x50\x47\x47\x57\x4f\x4b','\x6f\x6d\x6f\x51\x57\x51\x4c\x2b\x57\x34\x37\x63\x4b\x58\x6d\x54','\x6d\x63\x61\x67\x63\x6d\x6f\x58\x6d\x43\x6f\x63\x57\x34\x30','\x57\x4f\x64\x64\x52\x53\x6f\x55','\x69\x38\x6f\x51\x57\x52\x4c\x4b\x57\x34\x6c\x63\x4e\x58\x79','\x6d\x43\x6f\x5a\x57\x50\x47','\x65\x49\x71\x72\x63\x43\x6f\x4d\x6d\x43\x6f\x66\x57\x35\x61','\x57\x36\x5a\x64\x4e\x53\x6f\x39\x57\x36\x31\x56\x57\x51\x44\x75\x70\x71','\x57\x50\x48\x49\x57\x4f\x5a\x63\x55\x75\x38','\x77\x6d\x6b\x55\x57\x50\x6d\x73','\x6f\x43\x6f\x4c\x57\x52\x4b\x51\x57\x34\x78\x63\x4b\x57\x4c\x35','\x57\x52\x75\x48\x57\x52\x64\x63\x48\x53\x6f\x67\x6c\x53\x6b\x55\x57\x34\x71','\x6f\x6d\x6f\x70\x57\x51\x68\x64\x47\x47','\x57\x52\x61\x4d\x57\x51\x62\x37\x76\x53\x6f\x6b\x63\x53\x6f\x4f','\x78\x43\x6f\x6e\x57\x4f\x76\x48\x73\x77\x48\x47\x57\x34\x53','\x65\x38\x6f\x54\x6a\x64\x62\x42\x42\x43\x6b\x6a\x57\x51\x47','\x63\x6d\x6b\x32\x45\x43\x6f\x71\x57\x4f\x50\x56\x74\x74\x69','\x79\x43\x6f\x39\x74\x57\x75','\x61\x57\x52\x63\x4d\x6d\x6b\x59\x57\x35\x65\x4a\x57\x34\x64\x64\x4e\x71','\x57\x51\x56\x64\x56\x53\x6f\x74\x57\x35\x56\x63\x53\x5a\x69\x62\x6a\x71','\x70\x67\x57\x32\x45\x4c\x57\x72\x70\x38\x6b\x65','\x69\x68\x69\x30\x74\x65\x57\x65\x6d\x38\x6b\x66','\x66\x4d\x6d\x71\x57\x36\x37\x64\x4e\x62\x72\x4b\x75\x47','\x67\x75\x52\x63\x53\x38\x6f\x37\x69\x73\x4a\x63\x49\x48\x43','\x57\x51\x70\x64\x4b\x57\x31\x45\x57\x37\x4e\x64\x4a\x59\x7a\x4d','\x75\x47\x66\x44\x57\x52\x37\x64\x48\x47','\x64\x67\x75\x69','\x65\x53\x6f\x57\x6e\x58\x62\x42','\x57\x4f\x39\x55\x57\x36\x38','\x57\x4f\x70\x64\x4d\x38\x6f\x7a\x7a\x57','\x44\x4c\x68\x63\x52\x53\x6f\x55\x79\x66\x78\x64\x4c\x43\x6f\x4d','\x44\x6d\x6f\x41\x57\x50\x4c\x35\x45\x77\x72\x35\x57\x34\x47','\x6f\x61\x6c\x63\x50\x38\x6b\x48\x7a\x31\x5a\x64\x47\x43\x6b\x4e','\x43\x43\x6b\x77\x6f\x61','\x57\x34\x7a\x7a\x79\x6d\x6b\x4a\x57\x50\x56\x63\x4a\x48\x78\x64\x53\x71','\x46\x64\x6e\x34\x57\x4f\x33\x64\x51\x65\x57\x44\x57\x35\x75','\x69\x32\x38\x50\x78\x61','\x57\x36\x6d\x54\x57\x50\x50\x6f\x70\x47','\x57\x4f\x64\x63\x4f\x6d\x6b\x52\x57\x36\x35\x52\x57\x50\x47\x45\x57\x50\x69','\x57\x36\x7a\x69\x63\x43\x6f\x66\x57\x35\x69\x79\x57\x35\x52\x64\x4b\x47','\x42\x38\x6b\x42\x42\x58\x57','\x79\x38\x6f\x70\x71\x33\x7a\x75\x77\x6d\x6f\x64\x57\x37\x4b','\x57\x52\x53\x55\x77\x59\x4e\x64\x49\x31\x6c\x64\x54\x72\x75','\x57\x4f\x42\x64\x56\x38\x6f\x65\x57\x4f\x72\x6f\x57\x35\x6d','\x57\x36\x35\x47\x77\x43\x6b\x73\x57\x50\x79','\x57\x50\x5a\x64\x51\x53\x6f\x78\x57\x37\x64\x63\x50\x73\x75\x2f\x6a\x71','\x57\x50\x70\x64\x4a\x43\x6f\x67\x57\x35\x79\x70\x57\x37\x65\x37\x57\x34\x47','\x45\x38\x6f\x4b\x72\x5a\x38\x36\x57\x35\x58\x75\x65\x57','\x57\x35\x58\x6e\x46\x71','\x57\x36\x5a\x63\x4d\x38\x6f\x56\x57\x52\x71\x58\x57\x37\x76\x34\x6b\x71','\x57\x4f\x70\x63\x47\x38\x6f\x6b\x57\x4f\x6e\x68\x65\x43\x6b\x4d\x57\x37\x38','\x57\x4f\x52\x64\x4f\x38\x6f\x72','\x57\x37\x4b\x2f\x57\x34\x57\x42','\x71\x4d\x34\x41\x57\x37\x70\x63\x4a\x62\x54\x2f\x71\x47','\x57\x50\x70\x64\x47\x43\x6f\x43\x57\x34\x50\x6d\x57\x37\x31\x2b\x57\x34\x69','\x57\x50\x56\x64\x4a\x38\x6f\x7a','\x57\x51\x47\x50\x72\x59\x2f\x63\x4e\x57','\x57\x37\x46\x64\x49\x61\x54\x62\x57\x51\x5a\x64\x4a\x73\x35\x4c','\x57\x50\x46\x64\x48\x43\x6f\x62','\x6a\x63\x56\x64\x55\x38\x6b\x53\x57\x37\x56\x64\x4a\x71','\x42\x53\x6f\x77\x66\x33\x4c\x73\x74\x53\x6b\x67\x57\x36\x4b','\x66\x49\x4f\x7a\x57\x37\x6c\x63\x4b\x58\x38\x52\x72\x61','\x43\x38\x6f\x4e\x76\x47\x38\x64\x57\x34\x39\x79\x64\x57','\x62\x67\x6d\x74\x57\x37\x74\x63\x4d\x71\x61','\x67\x53\x6b\x4a\x45\x43\x6f\x38\x57\x4f\x31\x2b\x77\x57','\x46\x6d\x6b\x59\x71\x30\x61\x55\x57\x35\x48\x6e\x68\x47','\x57\x35\x31\x64\x79\x61','\x57\x35\x4a\x63\x54\x53\x6f\x79\x57\x34\x6d','\x61\x33\x4f\x45\x57\x36\x6c\x63\x4c\x72\x35\x49\x75\x57','\x57\x52\x42\x64\x50\x43\x6f\x76\x57\x36\x68\x63\x50\x4a\x34\x6f\x6d\x47','\x57\x51\x71\x35\x61\x38\x6f\x47\x69\x77\x78\x64\x47\x6d\x6b\x76','\x64\x38\x6f\x4e\x6e\x4a\x62\x6d\x43\x6d\x6b\x64\x57\x51\x69','\x57\x50\x6c\x64\x4d\x53\x6b\x6b\x42\x4a\x33\x63\x56\x43\x6b\x4a\x57\x50\x75','\x43\x38\x6f\x32\x73\x61\x65\x2f\x57\x35\x48\x74\x63\x57','\x57\x52\x61\x55\x57\x36\x72\x56\x77\x53\x6f\x62\x68\x6d\x6b\x37','\x57\x34\x64\x64\x4c\x4a\x78\x64\x56\x38\x6b\x59\x57\x36\x37\x63\x50\x58\x4f','\x6f\x38\x6b\x38\x61\x4a\x71\x30\x57\x35\x47\x44\x64\x57','\x57\x52\x34\x34\x57\x36\x76\x43\x73\x57','\x41\x53\x6f\x63\x65\x61','\x6d\x72\x34\x6d\x79\x72\x72\x76','\x57\x52\x61\x57\x57\x52\x65','\x57\x50\x74\x64\x51\x77\x5a\x63\x4d\x4c\x57','\x57\x35\x6c\x63\x4f\x43\x6f\x70\x57\x34\x43\x47\x57\x36\x33\x63\x48\x4c\x69','\x57\x52\x46\x64\x56\x53\x6f\x64\x57\x36\x68\x63\x4e\x59\x75\x66\x6a\x47','\x41\x6d\x6f\x45\x57\x50\x48\x2b\x76\x77\x39\x39\x57\x35\x43','\x57\x51\x75\x34\x57\x36\x4c\x57','\x57\x37\x65\x6e\x57\x4f\x69','\x69\x6d\x6f\x39\x57\x52\x78\x63\x4a\x38\x6b\x75\x67\x4d\x33\x64\x56\x57','\x57\x37\x6a\x61\x63\x43\x6b\x72\x57\x34\x43\x6c','\x61\x72\x74\x63\x56\x38\x6b\x68\x57\x35\x4f\x75\x57\x36\x6c\x64\x50\x57','\x67\x48\x4e\x63\x47\x43\x6b\x7a\x57\x36\x53','\x57\x4f\x6d\x36\x6f\x62\x2f\x64\x50\x38\x6b\x2b\x57\x34\x6c\x64\x53\x57','\x57\x51\x53\x4c\x57\x51\x46\x63\x4a\x43\x6b\x45\x41\x38\x6b\x75\x57\x34\x4b','\x43\x43\x6f\x52\x71\x71\x57\x35','\x57\x52\x4b\x4e\x73\x73\x37\x63\x4a\x4b\x46\x64\x51\x63\x38','\x57\x52\x38\x56\x71\x6d\x6f\x47\x6e\x33\x4e\x64\x53\x6d\x6b\x76','\x66\x74\x52\x64\x4d\x53\x6f\x79\x77\x4c\x4b\x7a\x57\x37\x57','\x46\x43\x6b\x59\x71\x71\x38\x58\x57\x34\x31\x72\x67\x47','\x65\x73\x7a\x46\x57\x36\x68\x63\x49\x71\x7a\x4b\x73\x47','\x79\x6d\x6b\x42\x72\x57\x46\x64\x4f\x38\x6b\x7a\x57\x51\x35\x70','\x57\x4f\x47\x62\x57\x4f\x33\x63\x56\x49\x58\x56\x57\x50\x43','\x63\x68\x74\x64\x4c\x38\x6f\x79\x71\x61\x30','\x57\x4f\x2f\x64\x47\x43\x6f\x61\x57\x34\x4c\x57\x57\x37\x71\x58\x57\x35\x69','\x57\x51\x69\x35\x57\x37\x76\x34\x74\x6d\x6b\x6e','\x64\x4d\x38\x73\x57\x36\x78\x63\x4b\x47\x7a\x51\x75\x57','\x6c\x63\x71\x43\x67\x38\x6f\x47\x6b\x57','\x57\x4f\x69\x62\x57\x4f\x33\x63\x4d\x63\x44\x38\x57\x50\x53\x45','\x43\x38\x6b\x43\x63\x43\x6b\x41\x78\x33\x56\x64\x4b\x6d\x6b\x73','\x57\x34\x52\x64\x4d\x49\x33\x64\x4f\x53\x6b\x34\x57\x37\x69','\x6d\x38\x6b\x75\x75\x49\x6d\x6f\x66\x6d\x6b\x75\x57\x34\x75\x65\x6c\x38\x6b\x76\x74\x53\x6f\x42','\x7a\x38\x6f\x38\x75\x72\x75\x53\x57\x34\x31\x73\x64\x71','\x57\x36\x57\x70\x57\x4f\x4a\x63\x4e\x48\x52\x64\x51\x6d\x6f\x37\x57\x51\x6d','\x6a\x77\x34\x57\x72\x4c\x79\x71\x6f\x61','\x57\x50\x42\x64\x4d\x6d\x6f\x66\x79\x59\x74\x63\x56\x43\x6b\x56\x57\x4f\x47','\x46\x43\x6f\x46\x57\x4f\x39\x50','\x57\x36\x64\x63\x54\x53\x6f\x79\x57\x34\x61\x4b\x57\x52\x2f\x63\x4e\x31\x53','\x44\x43\x6b\x68\x73\x58\x65','\x67\x33\x4b\x6c\x57\x36\x78\x63\x4b\x76\x6a\x4c\x73\x61','\x77\x75\x68\x64\x50\x78\x47','\x66\x77\x4a\x64\x49\x53\x6f\x71','\x6a\x65\x46\x63\x54\x53\x6f\x54\x44\x66\x52\x64\x4c\x6d\x6b\x68','\x57\x50\x43\x59\x69\x48\x34','\x57\x52\x34\x2b\x57\x52\x64\x64\x49\x43\x6f\x72\x6b\x6d\x6b\x33\x57\x34\x47','\x57\x36\x2f\x63\x4b\x6d\x6f\x64\x57\x37\x54\x2b\x57\x52\x58\x78\x6b\x71','\x57\x4f\x57\x32\x57\x4f\x74\x63\x56\x4c\x4b\x2b\x6a\x32\x43','\x6c\x67\x76\x46\x57\x36\x33\x63\x4e\x71\x7a\x4f\x74\x57','\x64\x57\x4c\x6e\x57\x34\x47','\x57\x50\x65\x6c\x57\x50\x68\x63\x53\x47\x54\x58\x57\x50\x47\x62','\x42\x6d\x6f\x6d\x66\x61','\x57\x50\x71\x4a\x70\x62\x42\x64\x52\x38\x6b\x4c\x57\x34\x42\x64\x54\x61','\x57\x37\x44\x44\x61\x6d\x6b\x62','\x57\x4f\x4c\x36\x57\x4f\x4a\x63\x4f\x61','\x57\x51\x38\x4b\x77\x4a\x4e\x63\x4a\x4e\x4e\x64\x54\x62\x34','\x69\x59\x4f\x70\x57\x37\x6c\x63\x4b\x58\x7a\x2b\x72\x61','\x6f\x53\x6f\x31\x72\x57\x34\x35\x57\x4f\x43\x44','\x70\x6d\x6f\x67\x57\x52\x70\x64\x47\x4a\x62\x75\x57\x37\x6d\x6d','\x68\x6d\x6f\x58\x6a\x4e\x66\x69\x79\x43\x6b\x69\x57\x51\x6d','\x74\x43\x6b\x4a\x57\x4f\x4b\x6a\x6e\x38\x6b\x62\x71\x43\x6b\x44','\x57\x4f\x5a\x64\x49\x6d\x6f\x42\x57\x34\x58\x6b','\x46\x38\x6b\x72\x66\x6d\x6b\x41\x71\x4e\x33\x63\x4d\x43\x6b\x76','\x57\x51\x37\x64\x48\x6d\x6f\x49\x57\x51\x44\x39','\x63\x61\x76\x74\x57\x37\x6c\x63\x4a\x53\x6b\x44\x57\x52\x6d\x61','\x57\x4f\x30\x68\x57\x4f\x2f\x63\x51\x73\x58\x56','\x41\x6d\x6f\x78\x57\x4f\x54\x35\x77\x78\x31\x38\x57\x37\x53','\x64\x72\x76\x45\x57\x35\x2f\x63\x47\x53\x6b\x78','\x74\x62\x74\x64\x54\x32\x72\x71\x64\x53\x6f\x4b\x75\x57','\x57\x50\x42\x64\x49\x53\x6b\x6b\x41\x74\x37\x63\x55\x38\x6f\x4d\x57\x50\x71','\x71\x76\x33\x64\x50\x74\x62\x66\x67\x43\x6f\x53\x71\x47','\x41\x6d\x6f\x73\x57\x50\x58\x49\x73\x65\x6e\x37\x57\x34\x65','\x57\x34\x68\x64\x4b\x4a\x65','\x57\x35\x37\x63\x4a\x4b\x6a\x4d\x57\x36\x74\x64\x4e\x4d\x39\x38','\x6f\x49\x56\x64\x54\x53\x6b\x2b\x57\x37\x33\x64\x4c\x38\x6b\x5a\x68\x47','\x57\x50\x72\x34\x57\x37\x6c\x64\x4f\x62\x75\x41\x66\x6d\x6b\x47','\x57\x36\x57\x6d\x57\x4f\x68\x64\x49\x48\x6c\x64\x54\x43\x6f\x4d\x57\x52\x79','\x6a\x43\x6f\x50\x57\x52\x35\x4d\x57\x34\x6c\x63\x4b\x75\x69','\x78\x43\x6f\x32\x6f\x4a\x62\x42\x6a\x6d\x6b\x6c\x57\x51\x43','\x75\x4c\x64\x64\x50\x43\x6b\x4f\x70\x62\x2f\x64\x49\x53\x6f\x42','\x42\x6d\x6f\x41\x57\x50\x4c\x4d\x46\x33\x6e\x4b\x57\x35\x71','\x70\x4e\x72\x31\x63\x67\x34\x70\x6e\x38\x6b\x76','\x7a\x6d\x6b\x57\x74\x72\x33\x64\x56\x38\x6f\x71\x57\x51\x7a\x7a','\x57\x4f\x39\x31\x68\x30\x2f\x63\x4d\x6d\x6f\x58\x57\x37\x42\x64\x4c\x61','\x79\x38\x6b\x6a\x62\x53\x6f\x69\x78\x32\x64\x64\x52\x53\x6b\x69','\x57\x37\x58\x34\x65\x53\x6b\x5a\x42\x64\x2f\x63\x4c\x6d\x6b\x51\x57\x34\x70\x64\x50\x38\x6b\x6f\x79\x43\x6f\x79','\x69\x6d\x6f\x58\x57\x52\x68\x63\x48\x53\x6b\x2f\x6a\x33\x68\x64\x56\x47','\x7a\x38\x6f\x6f\x71\x5a\x48\x6f\x73\x43\x6f\x62\x57\x36\x71','\x62\x48\x42\x63\x4e\x38\x6b\x30\x57\x34\x30\x54\x57\x50\x74\x64\x48\x71','\x57\x37\x50\x6e\x61\x6d\x6b\x78\x57\x34\x34\x61\x57\x34\x46\x64\x49\x61','\x69\x59\x61\x63\x68\x43\x6f\x32\x6b\x53\x6f\x61\x57\x35\x43','\x65\x71\x66\x64\x57\x34\x37\x63\x4a\x57','\x57\x4f\x69\x61\x57\x34\x70\x63\x56\x63\x44\x35\x57\x35\x4b\x46','\x57\x52\x57\x70\x57\x50\x64\x63\x4e\x48\x52\x64\x51\x6d\x6f\x37\x57\x52\x65','\x57\x51\x52\x64\x47\x53\x6f\x34\x57\x52\x72\x54\x57\x37\x76\x63\x64\x71','\x64\x4e\x74\x64\x50\x53\x6f\x70\x78\x62\x79\x79\x57\x36\x61','\x6f\x38\x6f\x4e\x57\x51\x39\x2b\x57\x36\x42\x63\x4a\x58\x7a\x4f','\x57\x51\x65\x52\x57\x37\x6a\x55\x77\x53\x6f\x37\x61\x43\x6f\x56','\x57\x34\x68\x63\x50\x53\x6f\x64\x57\x35\x71\x55\x57\x51\x4b','\x77\x31\x56\x64\x54\x68\x58\x62\x62\x53\x6b\x50\x72\x47','\x57\x52\x64\x64\x50\x38\x6f\x79\x57\x36\x46\x63\x50\x71','\x6e\x68\x53\x35\x57\x35\x33\x64\x56\x30\x30\x70\x57\x50\x61','\x57\x50\x52\x63\x4e\x6d\x6f\x74\x57\x52\x72\x67\x73\x43\x6f\x56\x57\x34\x30','\x57\x51\x6c\x64\x51\x53\x6f\x74\x57\x4f\x76\x69\x57\x4f\x62\x49\x6b\x61','\x6d\x59\x30\x42\x68\x38\x6f\x58','\x57\x35\x4a\x63\x53\x53\x6f\x6f\x57\x37\x75\x49\x57\x51\x52\x63\x4e\x66\x53','\x6c\x47\x35\x45\x44\x62\x72\x6e\x57\x35\x65\x4f','\x44\x53\x6f\x63\x65\x68\x54\x50\x73\x43\x6f\x73\x57\x36\x79','\x57\x50\x64\x63\x56\x6d\x6b\x52\x57\x37\x4c\x50\x57\x50\x47\x39\x57\x50\x75','\x57\x51\x75\x5a\x57\x35\x39\x36\x78\x53\x6f\x63','\x44\x53\x6b\x75\x63\x43\x6f\x45','\x78\x75\x33\x64\x49\x78\x44\x66\x67\x57','\x66\x4d\x6d\x6a\x57\x36\x78\x64\x4e\x62\x44\x39\x73\x61','\x64\x4e\x38\x41\x57\x51\x64\x63\x4a\x61\x62\x4b\x72\x71','\x6d\x53\x6f\x58\x74\x71\x71\x35\x57\x50\x31\x45\x66\x57','\x65\x48\x6d\x78\x57\x34\x5a\x63\x47\x38\x6b\x78\x57\x52\x65\x71','\x6d\x53\x6f\x4c\x71\x57\x34\x4f\x57\x34\x34\x44\x63\x57','\x57\x4f\x6c\x64\x4f\x6d\x6f\x7a\x57\x50\x35\x73\x57\x35\x71','\x79\x53\x6f\x37\x76\x61\x38\x4f\x57\x36\x6a\x70\x67\x47','\x76\x32\x46\x63\x50\x43\x6f\x53\x70\x64\x4a\x63\x4a\x30\x57'];_0x10f9=function(){return _0x11d931;};return _0x10f9();}function buildStandardCandidates(_0x4457db,_0x314835,_0xc7c00e){const _0x27e9c0=_0xdfc1a,_0x7f244f=[],_0x1f30dc=new Set(_0x4457db);if(_0x1f30dc[_0x27e9c0(0x1c5,'\x77\x68\x5e\x63')](_0x27e9c0(0x426,'\x30\x51\x23\x45')+_0x27e9c0(0x489,'\x52\x50\x44\x25'))||_0x1f30dc['\x68\x61\x73'](_0x27e9c0(0x300,'\x44\x67\x68\x53')+_0x27e9c0(0x2db,'\x5a\x75\x75\x24')+'\x69\x6f')){const _0x4b6dfd=_0x4457db[_0x27e9c0(0x45a,'\x45\x77\x32\x5b')](_0x5a4af6=>String(_0x5a4af6)[_0x27e9c0(0x37d,'\x32\x34\x66\x74')+'\x74\x68'](_0x27e9c0(0x1d3,'\x45\x73\x4a\x6d')+_0x27e9c0(0x45e,'\x5b\x70\x50\x55')));if(_0x4b6dfd){if('\x75\x43\x4a\x69\x51'===_0x27e9c0(0x3bb,'\x52\x50\x44\x25')){const _0xf38ec4=_0x18f3d7(_0x19db45,-0x1*0x24ac+0x24c6+-0x14);_0x3203d8[_0x27e9c0(0x398,'\x5a\x76\x56\x42')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':'\x41\x67\x65\x6e\x74\x20\x69\x73'+'\x20\x73\x74\x75\x63\x6b\x20\x69'+_0x27e9c0(0x3af,'\x23\x42\x66\x46')+_0x27e9c0(0x191,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x29e,'\x32\x34\x66\x74')+_0x27e9c0(0x286,'\x6b\x53\x41\x61')+_0x27e9c0(0x29d,'\x52\x50\x44\x25')+'\x63\x6c\x65\x29\x20\x77\x69\x74'+'\x68\x20\x67\x65\x6e\x65\x73\x3a'+'\x20\x5b'+_0xf38ec4[_0x27e9c0(0x23c,'\x6b\x43\x72\x25')]('\x2c\x20')+(_0x27e9c0(0x425,'\x48\x75\x79\x58')+_0x27e9c0(0x435,'\x77\x68\x5e\x63')+_0x27e9c0(0x40b,'\x74\x54\x32\x4d')+_0x27e9c0(0x3e3,'\x58\x5d\x35\x6b')+_0x27e9c0(0x3c4,'\x53\x38\x49\x43')+_0x27e9c0(0x289,'\x48\x71\x65\x56')+_0x27e9c0(0x420,'\x59\x71\x45\x65')+_0x27e9c0(0x1eb,'\x52\x50\x44\x25')+_0x27e9c0(0x2d3,'\x5b\x77\x4c\x61')+_0x27e9c0(0x2fa,'\x5b\x70\x50\x55')+'\x69\x66\x66\x65\x72\x65\x6e\x74'+_0x27e9c0(0x464,'\x45\x73\x4a\x6d')+_0x27e9c0(0x275,'\x76\x53\x5a\x76')+_0x27e9c0(0x3e1,'\x6b\x61\x61\x52')+_0x27e9c0(0x2a0,'\x47\x38\x31\x71')+'\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x4ac,'\x47\x4e\x33\x50')+_0x27e9c0(0x2a8,'\x44\x31\x49\x44'),_0x27e9c0(0x457,'\x47\x4e\x33\x50')+_0x27e9c0(0x48e,'\x45\x77\x32\x5b')+_0x27e9c0(0x2d4,'\x4e\x6e\x59\x25')+'\x64'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}else{const _0x593d4a=safeProblemContext(String(_0x4b6dfd)[_0x27e9c0(0x26d,'\x59\x71\x45\x65')](/^recurring_errsig\(\d+x\):/,''),-0x4*0x9b+0x74*0x53+-0x22b8);_0x593d4a&&_0x7f244f[_0x27e9c0(0x22c,'\x53\x38\x49\x43')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x395,'\x5b\x70\x50\x55')+_0x27e9c0(0x1ad,'\x47\x4e\x33\x50')+_0x27e9c0(0x459,'\x53\x38\x49\x43')+_0x27e9c0(0x484,'\x72\x42\x6b\x30')+'\x6c\x65\x20\x74\x68\x61\x74\x20'+'\x61\x75\x74\x6f\x2d\x72\x65\x70'+_0x27e9c0(0x247,'\x73\x6b\x59\x57')+'\x6f\x74\x20\x72\x65\x73\x6f\x6c'+_0x27e9c0(0x2f9,'\x73\x6b\x59\x57')+_0x593d4a+(_0x27e9c0(0x201,'\x73\x6b\x59\x57')+_0x27e9c0(0x226,'\x48\x71\x65\x56')+'\x68\x65\x73\x20\x6f\x72\x20\x70'+'\x61\x74\x63\x68\x65\x73\x20\x68'+_0x27e9c0(0x22a,'\x26\x5e\x2a\x53')+_0x27e9c0(0x421,'\x6b\x53\x41\x61')+_0x27e9c0(0x30c,'\x53\x61\x25\x74')+_0x27e9c0(0x3f6,'\x5d\x77\x63\x41')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x4a0,'\x30\x70\x74\x5b')+_0x27e9c0(0x489,'\x52\x50\x44\x25'),_0x27e9c0(0x3cd,'\x48\x71\x65\x56')+_0x27e9c0(0x367,'\x26\x21\x55\x23')+'\x65\x64'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}}}if(_0x1f30dc['\x68\x61\x73'](_0x27e9c0(0x436,'\x5b\x70\x50\x55')+_0x27e9c0(0x449,'\x5d\x77\x63\x41'))||_0x1f30dc[_0x27e9c0(0x3bf,'\x52\x50\x44\x25')](_0x27e9c0(0x3fd,'\x48\x71\x65\x56')+_0x27e9c0(0x41c,'\x69\x30\x26\x77')+_0x27e9c0(0x2eb,'\x52\x50\x44\x25'))){const _0x30c944=safeProblemContext(extractErrorContext(_0xc7c00e,0x5*0x23+0x1fe0+-0x1ff9),-0x213f+0x2653+-0x19*0x2e);if(_0x30c944){if('\x72\x55\x67\x6d\x56'!==_0x27e9c0(0x476,'\x48\x75\x79\x58'))_0x7f244f['\x70\x75\x73\x68']({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x2e6,'\x31\x71\x5d\x70')+_0x27e9c0(0x1c9,'\x26\x21\x55\x23')+_0x27e9c0(0x1fe,'\x48\x75\x79\x58')+_0x27e9c0(0x2f0,'\x5b\x70\x50\x55')+_0x27e9c0(0x15d,'\x69\x30\x26\x77')+_0x27e9c0(0x264,'\x58\x5d\x35\x6b')+_0x30c944+(_0x27e9c0(0x441,'\x26\x21\x55\x23')+_0x27e9c0(0x3fa,'\x44\x31\x49\x44')+'\x20\x62\x65\x20\x61\x64\x64\x72'+_0x27e9c0(0x357,'\x48\x71\x65\x56')+_0x27e9c0(0x4b6,'\x47\x4e\x33\x50')+_0x27e9c0(0x2fd,'\x5b\x77\x4c\x61')+_0x27e9c0(0x480,'\x68\x5e\x30\x70')+'\x63\x68\x65\x73\x20\x65\x78\x69'+_0x27e9c0(0x485,'\x26\x5e\x2a\x53')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x18b,'\x45\x77\x32\x5b')+_0x27e9c0(0x2f1,'\x6b\x61\x61\x52')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2});else{const _0x1b46ff=_0x594d67(_0x1dceeb(_0x1fa657[_0x27e9c0(0x447,'\x31\x71\x5d\x70')+'\x65']??''),-0x19*-0xa+0xc*-0x61+0x40a),_0x1ff1f6=_0x5989e9(_0xe937b9(_0x4ae939[_0x27e9c0(0x1c8,'\x47\x38\x31\x71')+_0x27e9c0(0x24e,'\x6b\x6d\x5d\x58')]??''),0x1e*0x7+-0x1a85+0x1*0x1a17);(_0x1b46ff||_0x1ff1f6)&&_0x538064[_0x27e9c0(0x471,'\x53\x61\x25\x74')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x1f8,'\x6b\x53\x41\x61')+_0x27e9c0(0x1e7,'\x69\x30\x26\x77')+'\x74\x65\x20\x63\x6c\x61\x69\x6d'+_0x27e9c0(0x170,'\x52\x50\x44\x25')+'\x20\x22'+(_0x1b46ff||_0x27e9c0(0x385,'\x77\x68\x5e\x63'))+('\x22\x20\x28\x73\x69\x67\x6e\x61'+_0x27e9c0(0x26c,'\x47\x4e\x33\x50'))+(_0x1ff1f6||_0x27e9c0(0x467,'\x58\x5d\x35\x6b'))+(_0x27e9c0(0x3db,'\x48\x71\x65\x56')+_0x27e9c0(0x302,'\x59\x28\x7a\x4f')+_0x27e9c0(0x33a,'\x59\x71\x45\x65')+_0x27e9c0(0x153,'\x45\x73\x4a\x6d')+_0x27e9c0(0x330,'\x5a\x75\x75\x24')+_0x27e9c0(0x338,'\x26\x5e\x2a\x53')+_0x27e9c0(0x350,'\x6d\x6b\x34\x29')+_0x27e9c0(0x269,'\x68\x5e\x30\x70')+'\x6f\x6c\x73\x2c\x20\x6f\x72\x20'+_0x27e9c0(0x439,'\x47\x4e\x33\x50')+_0x27e9c0(0x46a,'\x5b\x70\x50\x55')+_0x27e9c0(0x2cf,'\x59\x61\x52\x29')+'\x73\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x25b,'\x6b\x43\x72\x25')+_0x27e9c0(0x222,'\x45\x67\x73\x71')+'\x66\x61\x69\x6c\x65\x64','\x68\x65\x6c\x70\x5f\x6e\x65\x65'+_0x27e9c0(0x497,'\x68\x5e\x30\x70')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}}}if(_0x1f30dc[_0x27e9c0(0x341,'\x47\x4e\x33\x50')](_0x27e9c0(0x400,'\x6b\x53\x41\x61')+_0x27e9c0(0x3a6,'\x59\x28\x7a\x4f')+'\x74\x69\x6f\x6e')||_0x1f30dc[_0x27e9c0(0x3dd,'\x31\x71\x5d\x70')](_0x27e9c0(0x227,'\x76\x76\x5a\x44')+_0x27e9c0(0x1ee,'\x58\x5d\x35\x6b')+'\x74\x65')){if(_0x27e9c0(0x31b,'\x6b\x43\x72\x25')!==_0x27e9c0(0x378,'\x4e\x6e\x59\x25')){const _0x43cb34=extractRecentGeneIds(_0x314835,-0xa2d+0x1317+-0x8e5);_0x7f244f[_0x27e9c0(0x15e,'\x76\x76\x5a\x44')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x373,'\x76\x76\x5a\x44')+_0x27e9c0(0x390,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x358,'\x5d\x77\x63\x41')+_0x27e9c0(0x4b0,'\x47\x4e\x33\x50')+_0x27e9c0(0x49e,'\x30\x51\x23\x45')+_0x27e9c0(0x25c,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x35a,'\x76\x65\x4a\x75')+_0x27e9c0(0x2fe,'\x76\x76\x5a\x44')+_0x43cb34[_0x27e9c0(0x1f7,'\x48\x71\x65\x56')]('\x2c\x20')+(_0x27e9c0(0x1a6,'\x6d\x6b\x34\x29')+_0x27e9c0(0x34a,'\x76\x76\x5a\x44')+_0x27e9c0(0x2d6,'\x53\x61\x25\x74')+'\x72\x65\x63\x74\x69\x6f\x6e\x73'+_0x27e9c0(0x35c,'\x76\x76\x5a\x44')+_0x27e9c0(0x363,'\x31\x71\x5d\x70')+_0x27e9c0(0x13b,'\x44\x31\x49\x44')+'\x72\x20\x63\x61\x70\x61\x62\x69'+_0x27e9c0(0x3bd,'\x45\x77\x32\x5b')+_0x27e9c0(0x4b5,'\x30\x51\x23\x45')+_0x27e9c0(0x428,'\x47\x4e\x33\x50')+_0x27e9c0(0x372,'\x5a\x75\x75\x24')+'\x65\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x21d,'\x5b\x77\x4c\x61')+_0x27e9c0(0x3a6,'\x59\x28\x7a\x4f')+_0x27e9c0(0x2cb,'\x44\x31\x49\x44'),_0x27e9c0(0x1a0,'\x47\x38\x31\x71')+'\x6f\x6e\x5f\x6e\x65\x65\x64\x65'+'\x64'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x1});}else{const _0x4f6d70=_0xd05ecb['\x73\x70\x6c\x69\x74']('\x0a')[_0x27e9c0(0x44a,'\x44\x31\x49\x44')](_0x1cdd36=>/\b(slow|timeout|latency|bottleneck|high cpu|high memory)\b/i['\x74\x65\x73\x74'](_0x1cdd36));if(_0x4f6d70){const _0x328fb5=_0x4d24c7(_0x4f6d70,-0x1*-0x1c0e+0x1cba+-0x2*0x1c19);_0x2b472b[_0x27e9c0(0x259,'\x47\x38\x31\x71')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x402,'\x6b\x61\x61\x52')+_0x27e9c0(0x399,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x470,'\x40\x21\x56\x28')+'\x65\x74\x65\x63\x74\x65\x64\x3a'+'\x20'+_0x328fb5+('\x20\x2d\x2d\x20\x57\x68\x61\x74'+_0x27e9c0(0x239,'\x48\x75\x79\x58')+_0x27e9c0(0x2c5,'\x69\x30\x26\x77')+_0x27e9c0(0x3ea,'\x76\x65\x4a\x75')+_0x27e9c0(0x174,'\x6b\x43\x72\x25')+'\x69\x74\x65\x63\x74\x75\x72\x61'+_0x27e9c0(0x31e,'\x5d\x77\x63\x41')+'\x6e\x73\x20\x61\x64\x64\x72\x65'+_0x27e9c0(0x27d,'\x47\x4e\x33\x50')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':['\x70\x65\x72\x66\x5f\x62\x6f\x74'+_0x27e9c0(0x28e,'\x31\x73\x55\x4a'),_0x27e9c0(0x324,'\x69\x30\x26\x77')+'\x74\x69\x6f\x6e\x5f\x73\x6f\x75'+_0x27e9c0(0x49d,'\x40\x21\x56\x28')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2});}}}const _0x143947=_0x4457db[_0x27e9c0(0x491,'\x31\x73\x55\x4a')](_0x3141fc=>String(_0x3141fc)[_0x27e9c0(0x20b,'\x30\x70\x74\x5b')+'\x74\x68'](_0x27e9c0(0x316,'\x30\x70\x74\x5b')+'\x69\x76\x65\x5f\x66\x61\x69\x6c'+_0x27e9c0(0x1f1,'\x47\x38\x31\x71')+_0x27e9c0(0x394,'\x47\x38\x31\x71')));if(_0x143947){const _0x35fdd5=Number[_0x27e9c0(0x43d,'\x5d\x77\x63\x41')](String(_0x143947)[_0x27e9c0(0x14e,'\x47\x4e\x33\x50')]('\x63\x6f\x6e\x73\x65\x63\x75\x74'+_0x27e9c0(0x1bf,'\x5b\x70\x50\x55')+_0x27e9c0(0x39f,'\x76\x76\x5a\x44')+_0x27e9c0(0x3b0,'\x44\x31\x49\x44'),''),-0x19d7+-0x2404+0x3de5)||0x7d6+-0x2*-0x1a1+-0x8e*0x14;if(_0x35fdd5>=-0x5*0x419+0x35*-0x97+0x33c3){if(_0x27e9c0(0x340,'\x53\x61\x25\x74')===_0x27e9c0(0x41b,'\x4e\x6e\x59\x25')){const _0x58ab69=_0x4457db[_0x27e9c0(0x28c,'\x77\x68\x5e\x63')](_0x127422=>String(_0x127422)['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x27e9c0(0x461,'\x5a\x76\x56\x42')+'\x3a')),_0x11c140=_0x58ab69?safeQuestionContext(String(_0x58ab69)[_0x27e9c0(0x147,'\x48\x71\x65\x56')](_0x27e9c0(0x45f,'\x59\x71\x45\x65')+'\x3a',''),-0x1b53+-0x569+0x210c)||_0x27e9c0(0x166,'\x6b\x61\x61\x52'):_0x27e9c0(0x159,'\x30\x70\x74\x5b');_0x7f244f[_0x27e9c0(0x169,'\x45\x73\x4a\x6d')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':'\x41\x67\x65\x6e\x74\x20\x68\x61'+_0x27e9c0(0x331,'\x73\x6b\x59\x57')+'\x20'+_0x35fdd5+(_0x27e9c0(0x475,'\x68\x5e\x30\x70')+_0x27e9c0(0x44c,'\x53\x38\x49\x43')+_0x27e9c0(0x20a,'\x45\x73\x4a\x6d')+_0x27e9c0(0x1bd,'\x5b\x77\x4c\x61')+_0x27e9c0(0x417,'\x45\x73\x4a\x6d')+'\x3a\x20')+_0x11c140+(_0x27e9c0(0x2a6,'\x6b\x43\x72\x25')+_0x27e9c0(0x2f2,'\x44\x31\x49\x44')+_0x27e9c0(0x36a,'\x69\x30\x26\x77')+'\x69\x73\x20\x65\x78\x68\x61\x75'+_0x27e9c0(0x3b5,'\x26\x5e\x2a\x53')+_0x27e9c0(0x488,'\x77\x68\x5e\x63')+_0x27e9c0(0x33c,'\x59\x61\x52\x29')+_0x27e9c0(0x1a2,'\x6b\x53\x41\x61')+_0x27e9c0(0x2fb,'\x59\x28\x7a\x4f')+_0x27e9c0(0x210,'\x76\x76\x5a\x44')+_0x27e9c0(0x2c0,'\x6b\x53\x41\x61')+'\x20\x73\x68\x6f\x75\x6c\x64\x20'+_0x27e9c0(0x294,'\x66\x41\x7a\x25')+'\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x161,'\x51\x39\x37\x52')+_0x27e9c0(0x19c,'\x6b\x61\x61\x52'),_0x27e9c0(0x1b2,'\x23\x42\x66\x46')+_0x27e9c0(0x26f,'\x30\x70\x74\x5b')+'\x65\x64\x65\x64'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}else{const _0x512ccc=_0x5ee3ad(_0x579d0c(_0x548833[_0x27e9c0(0x3c1,'\x72\x42\x6b\x30')+_0x27e9c0(0x293,'\x66\x61\x53\x69')]??''),-0x866+-0xae1*0x3+-0x5*-0x85d);_0x512ccc&&_0x2f06a1['\x70\x75\x73\x68']({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x1e6,'\x6b\x43\x72\x25')+_0x27e9c0(0x216,'\x47\x71\x52\x71')+_0x27e9c0(0x13e,'\x26\x5e\x2a\x53')+_0x27e9c0(0x217,'\x53\x38\x49\x43')+_0x27e9c0(0x25f,'\x6d\x6b\x34\x29')+_0x27e9c0(0x453,'\x59\x28\x7a\x4f')+'\x20'+_0x512ccc+('\x20\x2d\x2d\x20\x57\x68\x61\x74'+_0x27e9c0(0x3fe,'\x47\x4e\x33\x50')+'\x74\x69\x76\x65\x20\x69\x6d\x70'+_0x27e9c0(0x282,'\x44\x31\x49\x44')+_0x27e9c0(0x261,'\x31\x73\x55\x4a')+_0x27e9c0(0x301,'\x76\x65\x4a\x75')+'\x6c\x64\x20\x70\x61\x73\x73\x20'+_0x27e9c0(0x32a,'\x32\x34\x66\x74')+_0x27e9c0(0x4a4,'\x6b\x53\x41\x61')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x17c,'\x77\x68\x5e\x63')+_0x27e9c0(0x2ee,'\x59\x71\x45\x65')+_0x27e9c0(0x3ab,'\x73\x6b\x59\x57'),_0x27e9c0(0x349,'\x66\x61\x53\x69')+_0x27e9c0(0x3f3,'\x59\x61\x52\x29')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}}}if(_0x1f30dc[_0x27e9c0(0x45c,'\x26\x21\x55\x23')](_0x27e9c0(0x307,'\x51\x39\x37\x52')+_0x27e9c0(0x42f,'\x66\x41\x7a\x25')+_0x27e9c0(0x32e,'\x58\x5d\x35\x6b'))||_0x4457db['\x73\x6f\x6d\x65'](_0x422b17=>String(_0x422b17)[_0x27e9c0(0x1e9,'\x26\x21\x55\x23')+'\x74\x68']('\x75\x73\x65\x72\x5f\x66\x65\x61'+_0x27e9c0(0x3e2,'\x66\x61\x53\x69')+'\x75\x65\x73\x74\x3a'))){if(_0x27e9c0(0x49c,'\x48\x71\x65\x56')===_0x27e9c0(0x2c6,'\x26\x5e\x2a\x53'))return{'\x6c\x61\x73\x74\x41\x73\x6b\x65\x64\x41\x74':_0xad3fdc?.[_0x27e9c0(0x43c,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x4af,'\x76\x76\x5a\x44')]??null,'\x6c\x61\x73\x74\x55\x72\x67\x65\x6e\x74\x41\x74':_0x13d8e7?.[_0x27e9c0(0x1ce,'\x51\x39\x37\x52')+_0x27e9c0(0x2ad,'\x6b\x53\x41\x61')]??null,'\x6c\x61\x73\x74\x45\x78\x70\x6c\x6f\x72\x65\x41\x74':_0x2e71b7?.[_0x27e9c0(0x3ae,'\x58\x5d\x35\x6b')+_0x27e9c0(0x13a,'\x73\x6b\x59\x57')]??null,'\x72\x65\x63\x65\x6e\x74\x51\x75\x65\x73\x74\x69\x6f\x6e\x73':[..._0x4467e0?.[_0x27e9c0(0x46c,'\x5a\x75\x75\x24')+_0x27e9c0(0x368,'\x76\x76\x5a\x44')]??[]]};else{const _0x4afe5b=_0xc7c00e[_0x27e9c0(0x37e,'\x48\x75\x79\x58')]('\x0a')[_0x27e9c0(0x33b,'\x4e\x6e\x59\x25')](_0x28fb1d=>/\b(add|implement|create|build|i want|i need|please add)\b/i[_0x27e9c0(0x39b,'\x5b\x77\x4c\x61')](_0x28fb1d));if(_0x4afe5b){const _0x582382=safeQuestionContext(_0x4afe5b,0x8b7+-0xe70+0x64f);_0x7f244f['\x70\x75\x73\x68']({'\x71\x75\x65\x73\x74\x69\x6f\x6e':'\x55\x73\x65\x72\x20\x72\x65\x71'+'\x75\x65\x73\x74\x65\x64\x20\x61'+_0x27e9c0(0x165,'\x5a\x76\x56\x42')+_0x27e9c0(0x42a,'\x45\x73\x4a\x6d')+_0x27e9c0(0x2e3,'\x47\x4e\x33\x50')+_0x27e9c0(0x3cc,'\x53\x38\x49\x43')+'\x6f\x6d\x6d\x75\x6e\x69\x74\x79'+_0x27e9c0(0x3a7,'\x48\x75\x79\x58')+_0x27e9c0(0x384,'\x53\x61\x25\x74')+_0x582382+(_0x27e9c0(0x49a,'\x76\x65\x4a\x75')+_0x27e9c0(0x36e,'\x47\x38\x31\x71')+_0x27e9c0(0x16c,'\x26\x21\x55\x23')+_0x27e9c0(0x25e,'\x47\x38\x31\x71')+_0x27e9c0(0x183,'\x6d\x6b\x34\x29')+_0x27e9c0(0x20f,'\x40\x21\x56\x28')+_0x27e9c0(0x49b,'\x59\x28\x7a\x4f')+_0x27e9c0(0x2a5,'\x48\x71\x65\x56')+'\x73\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x2b8,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x29a,'\x68\x5e\x30\x70')+'\x75\x65\x73\x74',_0x27e9c0(0x1b4,'\x5a\x75\x75\x24')+_0x27e9c0(0x202,'\x31\x73\x55\x4a')+_0x27e9c0(0x1e0,'\x5b\x77\x4c\x61')+'\x74'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x1});}}}if(_0x1f30dc[_0x27e9c0(0x3df,'\x30\x70\x74\x5b')](_0x27e9c0(0x3f5,'\x45\x77\x32\x5b')+_0x27e9c0(0x379,'\x40\x21\x56\x28'))){const _0x33e4bc=_0xc7c00e[_0x27e9c0(0x2ea,'\x76\x65\x4a\x75')]('\x0a')['\x66\x69\x6e\x64'](_0x2f856f=>/\b(slow|timeout|latency|bottleneck|high cpu|high memory)\b/i[_0x27e9c0(0x37f,'\x52\x50\x44\x25')](_0x2f856f));if(_0x33e4bc){const _0x534d62=safeQuestionContext(_0x33e4bc,0x7e4+0x223c+-0x298a);_0x7f244f[_0x27e9c0(0x376,'\x63\x4a\x31\x68')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x281,'\x53\x61\x25\x74')+_0x27e9c0(0x228,'\x76\x76\x5a\x44')+_0x27e9c0(0x1ae,'\x74\x54\x32\x4d')+_0x27e9c0(0x13f,'\x74\x54\x32\x4d')+'\x20'+_0x534d62+(_0x27e9c0(0x2b3,'\x45\x77\x32\x5b')+_0x27e9c0(0x254,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x28d,'\x47\x71\x52\x71')+'\x72\x61\x74\x65\x67\x69\x65\x73'+'\x20\x6f\x72\x20\x61\x72\x63\x68'+_0x27e9c0(0x2ac,'\x72\x42\x6b\x30')+_0x27e9c0(0x155,'\x5b\x70\x50\x55')+_0x27e9c0(0x44f,'\x69\x30\x26\x77')+_0x27e9c0(0x22d,'\x76\x53\x5a\x76')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x1c4,'\x53\x38\x49\x43')+_0x27e9c0(0x319,'\x68\x5e\x30\x70'),'\x6f\x70\x74\x69\x6d\x69\x7a\x61'+_0x27e9c0(0x387,'\x59\x61\x52\x29')+_0x27e9c0(0x25d,'\x45\x77\x32\x5b')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2});}}if(_0x1f30dc[_0x27e9c0(0x380,'\x44\x31\x49\x44')](_0x27e9c0(0x13c,'\x5d\x77\x63\x41')+_0x27e9c0(0x47b,'\x63\x4a\x31\x68')+_0x27e9c0(0x182,'\x76\x76\x5a\x44')+_0x27e9c0(0x412,'\x74\x54\x32\x4d'))){if(_0x27e9c0(0x4b2,'\x5b\x70\x50\x55')!==_0x27e9c0(0x2ed,'\x69\x30\x26\x77')){const _0x20b6bb=safeProblemContext(extractErrorContext(_0xc7c00e,-0xd5c+-0x4*0x6+0xdec),0x13*-0x1e8+-0x1361+0x1f*0x1cf),_0x452928=_0x4457db[_0x27e9c0(0x41d,'\x59\x61\x52\x29')](_0x2a9afa=>_0x2a9afa==='\x6c\x6f\x67\x5f\x65\x72\x72\x6f'+'\x72'||_0x2a9afa===_0x27e9c0(0x383,'\x76\x65\x4a\x75')+_0x27e9c0(0x369,'\x45\x67\x73\x71')||_0x2a9afa==='\x64\x65\x70\x6c\x6f\x79\x6d\x65'+_0x27e9c0(0x2cc,'\x5a\x75\x75\x24')||String(_0x2a9afa)['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x27e9c0(0x179,'\x6d\x6b\x34\x29')))[_0x27e9c0(0x215,'\x63\x4a\x31\x68')](_0x4f6103=>safeQuestionContext(String(_0x4f6103),0xd64+0x23c9*0x1+-0x6fb*0x7))[_0x27e9c0(0x1d7,'\x31\x73\x55\x4a')](_0x1fda1c=>_0x1fda1c&&hasPublicContext(_0x1fda1c)&&!isInfraError(_0x1fda1c))[_0x27e9c0(0x3e0,'\x32\x34\x66\x74')](-0x6f5*-0x2+-0x2318*-0x1+-0x3*0x1056,0x26b8*0x1+0x1b8c+0x7*-0x977);(_0x20b6bb||_0x452928[_0x27e9c0(0x3ca,'\x30\x51\x23\x45')]>0x1502+-0x26f2+0x11f0)&&(_0x27e9c0(0x3a8,'\x26\x21\x55\x23')!==_0x27e9c0(0x352,'\x32\x34\x66\x74')?_0x7f244f['\x70\x75\x73\x68']({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x40c,'\x53\x38\x49\x43')+_0x27e9c0(0x1ea,'\x6d\x6b\x34\x29')+_0x27e9c0(0x3a5,'\x53\x38\x49\x43')+_0x27e9c0(0x496,'\x5a\x75\x75\x24')+_0x27e9c0(0x427,'\x73\x6b\x59\x57')+_0x27e9c0(0x409,'\x30\x70\x74\x5b')+'\x76\x65\x20\x70\x72\x6f\x62\x6c'+_0x27e9c0(0x433,'\x31\x71\x5d\x70')+_0x27e9c0(0x248,'\x45\x77\x32\x5b')+_0x452928[_0x27e9c0(0x29b,'\x5b\x70\x50\x55')]('\x2c\x20')+(_0x27e9c0(0x2b2,'\x5a\x76\x56\x42')+_0x27e9c0(0x38d,'\x73\x6b\x59\x57'))+(_0x20b6bb||_0x27e9c0(0x354,'\x59\x28\x7a\x4f')+_0x27e9c0(0x2e2,'\x45\x73\x4a\x6d')+_0x27e9c0(0x219,'\x31\x71\x5d\x70')+'\x75\x65')+(_0x27e9c0(0x201,'\x73\x6b\x59\x57')+_0x27e9c0(0x322,'\x5a\x76\x56\x42')+_0x27e9c0(0x1f4,'\x45\x77\x32\x5b')+_0x27e9c0(0x1f5,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x18e,'\x5a\x76\x56\x42')+_0x27e9c0(0x3d9,'\x5d\x77\x63\x41')+_0x27e9c0(0x2c1,'\x47\x38\x31\x71')+_0x27e9c0(0x241,'\x32\x34\x66\x74')+'\x6f\x62\x6c\x65\x6d\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x1ca,'\x51\x39\x37\x52')+_0x27e9c0(0x45b,'\x59\x61\x52\x29'),_0x27e9c0(0x214,'\x26\x21\x55\x23')+_0x27e9c0(0x1ff,'\x66\x41\x7a\x25'),_0x27e9c0(0x291,'\x74\x54\x32\x4d')+_0x27e9c0(0x27a,'\x68\x5e\x30\x70')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2}):_0x37e02b[_0x27e9c0(0x17f,'\x59\x61\x52\x29')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x143,'\x23\x42\x66\x46')+_0x27e9c0(0x3f0,'\x48\x71\x65\x56')+_0x27e9c0(0x2a1,'\x4e\x6e\x59\x25')+_0x27e9c0(0x192,'\x69\x30\x26\x77')+'\x20\x22'+(_0x20de01||_0x27e9c0(0x1f2,'\x31\x71\x5d\x70'))+(_0x27e9c0(0x2f5,'\x58\x5d\x35\x6b')+_0x27e9c0(0x3c3,'\x5a\x75\x75\x24'))+(_0x44d64c||_0x27e9c0(0x159,'\x30\x70\x74\x5b'))+(_0x27e9c0(0x157,'\x45\x77\x32\x5b')+_0x27e9c0(0x43f,'\x59\x71\x45\x65')+_0x27e9c0(0x347,'\x5d\x77\x63\x41')+_0x27e9c0(0x206,'\x69\x30\x26\x77')+'\x61\x70\x61\x62\x69\x6c\x69\x74'+_0x27e9c0(0x1a1,'\x66\x61\x53\x69')+_0x27e9c0(0x139,'\x52\x50\x44\x25')+_0x27e9c0(0x448,'\x26\x5e\x2a\x53')+'\x6f\x6c\x73\x2c\x20\x6f\x72\x20'+_0x27e9c0(0x391,'\x5b\x70\x50\x55')+'\x20\x77\x6f\x75\x6c\x64\x20\x73'+_0x27e9c0(0x494,'\x4e\x6e\x59\x25')+'\x73\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x163,'\x6b\x53\x41\x61')+_0x27e9c0(0x356,'\x30\x51\x23\x45')+_0x27e9c0(0x463,'\x76\x76\x5a\x44'),'\x68\x65\x6c\x70\x5f\x6e\x65\x65'+_0x27e9c0(0x249,'\x5d\x77\x63\x41')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3}));}else{const _0x41f1b5=_0x8d3a24[_0x27e9c0(0x187,'\x59\x61\x52\x29')](_0x44c9c5(_0xee0f1)[_0x27e9c0(0x348,'\x44\x67\x68\x53')](_0x27e9c0(0x21e,'\x47\x4e\x33\x50')+_0x27e9c0(0x3be,'\x48\x71\x65\x56')+_0x27e9c0(0x19d,'\x45\x77\x32\x5b')+_0x27e9c0(0x1fa,'\x45\x73\x4a\x6d'),''),-0x176a+0x2345+-0xbd1)||0x4a9+-0x4e*0x57+0x15d9;if(_0x41f1b5>=-0x1*0x215e+-0xf23+-0x816*-0x6){const _0xf14e4=_0x13abf1[_0x27e9c0(0x236,'\x30\x70\x74\x5b')](_0x28131c=>_0x98df0(_0x28131c)[_0x27e9c0(0x1cd,'\x6b\x6d\x5d\x58')+'\x74\x68'](_0x27e9c0(0x152,'\x44\x67\x68\x53')+'\x3a')),_0x1e0266=_0xf14e4?_0x53bf07(_0x23204f(_0xf14e4)[_0x27e9c0(0x468,'\x31\x71\x5d\x70')]('\x62\x61\x6e\x5f\x67\x65\x6e\x65'+'\x3a',''),0x611+-0x20e6+0x1b25)||_0x27e9c0(0x30d,'\x5d\x77\x63\x41'):_0x27e9c0(0x134,'\x5a\x75\x75\x24');_0x17c994[_0x27e9c0(0x277,'\x26\x5e\x2a\x53')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x486,'\x40\x21\x56\x28')+_0x27e9c0(0x245,'\x6b\x43\x72\x25')+'\x20'+_0x41f1b5+(_0x27e9c0(0x1b6,'\x51\x39\x37\x52')+_0x27e9c0(0x213,'\x26\x21\x55\x23')+_0x27e9c0(0x3cb,'\x31\x71\x5d\x70')+_0x27e9c0(0x2a9,'\x52\x50\x44\x25')+_0x27e9c0(0x2d9,'\x63\x4a\x31\x68')+'\x3a\x20')+_0x1e0266+(_0x27e9c0(0x15b,'\x5a\x75\x75\x24')+_0x27e9c0(0x19b,'\x69\x30\x26\x77')+_0x27e9c0(0x2bb,'\x66\x41\x7a\x25')+_0x27e9c0(0x176,'\x5d\x77\x63\x41')+_0x27e9c0(0x3eb,'\x30\x70\x74\x5b')+_0x27e9c0(0x158,'\x4e\x6e\x59\x25')+_0x27e9c0(0x1e5,'\x5a\x75\x75\x24')+_0x27e9c0(0x375,'\x5b\x77\x4c\x61')+_0x27e9c0(0x321,'\x44\x31\x49\x44')+_0x27e9c0(0x30f,'\x44\x67\x68\x53')+_0x27e9c0(0x39c,'\x5d\x77\x63\x41')+_0x27e9c0(0x360,'\x53\x61\x25\x74')+_0x27e9c0(0x148,'\x77\x68\x5e\x63')+'\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x495,'\x73\x6b\x59\x57')+_0x27e9c0(0x184,'\x5b\x77\x4c\x61'),'\x65\x78\x74\x65\x72\x6e\x61\x6c'+'\x5f\x68\x65\x6c\x70\x5f\x6e\x65'+_0x27e9c0(0x28a,'\x26\x5e\x2a\x53')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}}}if(_0x1f30dc[_0x27e9c0(0x15f,'\x72\x42\x6b\x30')](_0x27e9c0(0x287,'\x31\x71\x5d\x70')+'\x6f\x6f\x70\x5f\x64\x65\x74\x65'+_0x27e9c0(0x38c,'\x31\x71\x5d\x70'))||_0x1f30dc[_0x27e9c0(0x3c6,'\x6b\x53\x41\x61')](_0x27e9c0(0x194,'\x76\x53\x5a\x76')+_0x27e9c0(0x39e,'\x45\x73\x4a\x6d')+_0x27e9c0(0x46d,'\x5d\x77\x63\x41')+_0x27e9c0(0x18d,'\x32\x34\x66\x74')+'\x6f\x70')){const _0x24e4c1=extractRecentGeneIds(_0x314835,0x1e29+0x256f+-0x4392);_0x7f244f[_0x27e9c0(0x405,'\x59\x71\x45\x65')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x38f,'\x26\x5e\x2a\x53')+_0x27e9c0(0x2be,'\x44\x67\x68\x53')+_0x27e9c0(0x3d0,'\x48\x71\x65\x56')+_0x27e9c0(0x243,'\x6d\x6b\x34\x29')+_0x27e9c0(0x370,'\x4e\x6e\x59\x25')+'\x3e\x66\x61\x69\x6c\x2d\x3e\x72'+_0x27e9c0(0x20d,'\x32\x34\x66\x74')+_0x27e9c0(0x21a,'\x23\x42\x66\x46')+'\x68\x20\x67\x65\x6e\x65\x73\x3a'+'\x20\x5b'+_0x24e4c1[_0x27e9c0(0x336,'\x32\x34\x66\x74')]('\x2c\x20')+(_0x27e9c0(0x297,'\x5b\x70\x50\x55')+'\x6e\x64\x65\x72\x6c\x79\x69\x6e'+_0x27e9c0(0x26b,'\x32\x34\x66\x74')+'\x70\x65\x72\x73\x69\x73\x74\x73'+'\x20\x64\x65\x73\x70\x69\x74\x65'+_0x27e9c0(0x2c9,'\x26\x5e\x2a\x53')+_0x27e9c0(0x199,'\x6b\x61\x61\x52')+_0x27e9c0(0x173,'\x40\x21\x56\x28')+_0x27e9c0(0x33d,'\x66\x41\x7a\x25')+_0x27e9c0(0x2f6,'\x6d\x6b\x34\x29')+_0x27e9c0(0x46e,'\x30\x70\x74\x5b')+_0x27e9c0(0x283,'\x6b\x43\x72\x25')+_0x27e9c0(0x137,'\x5b\x70\x50\x55')+_0x27e9c0(0x1ba,'\x68\x5e\x30\x70')+_0x27e9c0(0x24f,'\x51\x39\x37\x52')+'\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x27e9c0(0x4a9,'\x58\x5d\x35\x6b')+_0x27e9c0(0x48b,'\x5b\x77\x4c\x61'),_0x27e9c0(0x457,'\x47\x4e\x33\x50')+_0x27e9c0(0x21c,'\x5b\x70\x50\x55')+_0x27e9c0(0x1f6,'\x68\x5e\x30\x70')+'\x64'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}if(_0x1f30dc[_0x27e9c0(0x371,'\x74\x54\x32\x4d')](_0x27e9c0(0x416,'\x5b\x77\x4c\x61')+_0x27e9c0(0x423,'\x58\x5d\x35\x6b')+_0x27e9c0(0x162,'\x5d\x77\x63\x41'))||_0x1f30dc[_0x27e9c0(0x295,'\x5a\x76\x56\x42')](_0x27e9c0(0x3ed,'\x51\x39\x37\x52')+_0x27e9c0(0x29f,'\x4e\x6e\x59\x25')+_0x27e9c0(0x1b1,'\x30\x70\x74\x5b'))){if(_0x27e9c0(0x2b1,'\x59\x71\x45\x65')!=='\x77\x71\x70\x4b\x56'){if(!_0xdfe885)return null;const _0x8738d8=_0x19ca50[_0x27e9c0(0x1b3,'\x53\x38\x49\x43')](_0x63e4c9);return _0x5963e6[_0x27e9c0(0x23e,'\x68\x5e\x30\x70')](_0x8738d8)?_0x8738d8:null;}else{const _0x2a08b3=_0x1f30dc[_0x27e9c0(0x208,'\x40\x21\x56\x28')](_0x27e9c0(0x42b,'\x45\x67\x73\x71')+_0x27e9c0(0x135,'\x52\x50\x44\x25')+_0x27e9c0(0x43e,'\x6b\x61\x61\x52'))?'\x73\x65\x76\x65\x72\x65':_0x27e9c0(0x211,'\x5d\x77\x63\x41');_0x7f244f['\x70\x75\x73\x68']({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x27e9c0(0x443,'\x4e\x6e\x59\x25')+_0x27e9c0(0x138,'\x52\x50\x44\x25')+_0x27e9c0(0x32d,'\x30\x51\x23\x45')+_0x27e9c0(0x27f,'\x5b\x77\x4c\x61')+_0x2a08b3+(_0x27e9c0(0x15a,'\x76\x76\x5a\x44')+_0x27e9c0(0x39a,'\x30\x70\x74\x5b')+_0x27e9c0(0x308,'\x40\x21\x56\x28')+_0x27e9c0(0x2fc,'\x76\x53\x5a\x76')+_0x27e9c0(0x3c0,'\x31\x73\x55\x4a')+_0x27e9c0(0x18f,'\x73\x6b\x59\x57')+_0x27e9c0(0x2ce,'\x26\x21\x55\x23')+_0x27e9c0(0x204,'\x66\x41\x7a\x25')+_0x27e9c0(0x462,'\x68\x5e\x30\x70')+_0x27e9c0(0x1f0,'\x76\x53\x5a\x76')+_0x27e9c0(0x458,'\x69\x30\x26\x77')+_0x27e9c0(0x442,'\x72\x42\x6b\x30')+_0x27e9c0(0x284,'\x76\x76\x5a\x44')+_0x27e9c0(0x396,'\x31\x73\x55\x4a')+_0x27e9c0(0x1aa,'\x26\x21\x55\x23')+_0x27e9c0(0x1dd,'\x40\x21\x56\x28')+_0x27e9c0(0x3b6,'\x77\x68\x5e\x63')+_0x27e9c0(0x14b,'\x45\x77\x32\x5b')+_0x27e9c0(0x2e5,'\x6b\x6d\x5d\x58')+_0x27e9c0(0x2de,'\x44\x67\x68\x53')+'\x20\x63\x6f\x75\x6c\x64\x20\x72'+_0x27e9c0(0x2da,'\x66\x41\x7a\x25')+_0x27e9c0(0x4a3,'\x45\x67\x73\x71')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':['\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x27e9c0(0x1a7,'\x44\x31\x49\x44')+'\x75',_0x27e9c0(0x4ab,'\x47\x71\x52\x71')+_0x27e9c0(0x2e1,'\x5b\x77\x4c\x61')],'\x70\x72\x69\x6f\x72\x69\x74\x79':_0x2a08b3===_0x27e9c0(0x220,'\x68\x5e\x30\x70')?-0x18b3*-0x1+-0x2*-0x1174+-0x3b98*0x1:-0x6a+-0x1609+0x1*0x1675});}}return _0x7f244f;}function publicQuestion(_0x14aebb){const _0x3f4f53=_0xdfc1a;return{'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x14aebb[_0x3f4f53(0x2d1,'\x32\x34\x66\x74')],'\x61\x6d\x6f\x75\x6e\x74':_0x14aebb[_0x3f4f53(0x451,'\x4e\x6e\x59\x25')],'\x73\x69\x67\x6e\x61\x6c\x73':[..._0x14aebb[_0x3f4f53(0x181,'\x5d\x77\x63\x41')]??[]]};}function completeStandardGeneration(_0x5f02bb,_0x3e768f,_0x19eb3c){const _0x193e3e=_0xdfc1a;if(_0x5f02bb['\x6c\x65\x6e\x67\x74\x68']===0x27*-0x4+0x1457+-0x13bb*0x1)return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':[],'\x73\x74\x61\x74\x65':questionState(_0x3e768f),'\x63\x68\x61\x6e\x67\x65\x64':![]};_0x5f02bb['\x73\x6f\x72\x74']((_0x274635,_0x4951a9)=>_0x4951a9['\x70\x72\x69\x6f\x72\x69\x74\x79']-_0x274635[_0x193e3e(0x3a1,'\x6b\x43\x72\x25')]);const _0x3be282=[];for(const _0x176304 of _0x5f02bb){if(_0x193e3e(0x160,'\x59\x71\x45\x65')===_0x193e3e(0x278,'\x5a\x76\x56\x42')){if(_0x3be282['\x6c\x65\x6e\x67\x74\x68']>=MAX_QUESTIONS_PER_CYCLE)break;if(!isDuplicate(_0x176304[_0x193e3e(0x22e,'\x52\x50\x44\x25')],_0x3e768f[_0x193e3e(0x34c,'\x53\x61\x25\x74')+_0x193e3e(0x456,'\x5a\x75\x75\x24')]))_0x3be282[_0x193e3e(0x1de,'\x6d\x6b\x34\x29')](_0x176304);}else{const _0x9b374f=_0x5eab24[_0x193e3e(0x23f,'\x66\x61\x53\x69')]('\x0a')[_0x193e3e(0x267,'\x59\x28\x7a\x4f')](_0x4bb4a5=>/error|exception|failed|cannot|not supported|unsupported|not implemented/i[_0x193e3e(0x2e4,'\x53\x38\x49\x43')](_0x4bb4a5));return _0x9b374f?_0x9b374f[_0x193e3e(0x14f,'\x76\x65\x4a\x75')](/\s+/g,'\x20')[_0x193e3e(0x2dc,'\x5b\x70\x50\x55')]()[_0x193e3e(0x36d,'\x30\x51\x23\x45')](0x3*-0x351+0x2*-0x6ba+0x1767,_0x199d97):'';}}if(_0x3be282[_0x193e3e(0x142,'\x59\x28\x7a\x4f')]===-0x1994+0x1db7+0x423*-0x1)return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':[],'\x73\x74\x61\x74\x65':questionState(_0x3e768f),'\x63\x68\x61\x6e\x67\x65\x64':![]};const _0x119fd6=[..._0x3e768f[_0x193e3e(0x16d,'\x51\x39\x37\x52')+_0x193e3e(0x260,'\x76\x53\x5a\x76')],..._0x3be282[_0x193e3e(0x31f,'\x44\x31\x49\x44')](_0x3f2ab9=>_0x3f2ab9[_0x193e3e(0x353,'\x26\x21\x55\x23')])][_0x193e3e(0x444,'\x5b\x70\x50\x55')](-(-0x2*0xdd+-0x1*0x382+0x55a)),_0x2e572b=_0x3be282[_0x193e3e(0x2d7,'\x63\x4a\x31\x68')](_0xde933e=>_0xde933e[_0x193e3e(0x1d2,'\x6b\x53\x41\x61')]?.['\x69\x6e\x63\x6c\x75\x64\x65\x73']('\x65\x78\x70\x6c\x6f\x72\x61\x74'+_0x193e3e(0x29c,'\x5d\x77\x63\x41'))),_0x4e778e={'\x6c\x61\x73\x74\x41\x73\x6b\x65\x64\x41\x74':new Date(_0x19eb3c)[_0x193e3e(0x218,'\x66\x41\x7a\x25')+_0x193e3e(0x3c2,'\x4e\x6e\x59\x25')](),'\x6c\x61\x73\x74\x55\x72\x67\x65\x6e\x74\x41\x74':_0x3e768f['\x6c\x61\x73\x74\x55\x72\x67\x65'+_0x193e3e(0x32c,'\x6b\x43\x72\x25')],'\x6c\x61\x73\x74\x45\x78\x70\x6c\x6f\x72\x65\x41\x74':_0x2e572b?new Date(_0x19eb3c)[_0x193e3e(0x1f9,'\x6b\x43\x72\x25')+'\x69\x6e\x67']():_0x3e768f['\x6c\x61\x73\x74\x45\x78\x70\x6c'+_0x193e3e(0x2b7,'\x45\x77\x32\x5b')],'\x72\x65\x63\x65\x6e\x74\x51\x75\x65\x73\x74\x69\x6f\x6e\x73':_0x119fd6};return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':_0x3be282[_0x193e3e(0x317,'\x66\x41\x7a\x25')](publicQuestion),'\x73\x74\x61\x74\x65':_0x4e778e,'\x63\x68\x61\x6e\x67\x65\x64':!![]};}export function generateQuestions(_0xec9cc7={}){const _0x3dbb9d=_0xdfc1a,_0x5a64a4=_0xec9cc7[_0x3dbb9d(0x2dd,'\x26\x5e\x2a\x53')]??Date[_0x3dbb9d(0x40f,'\x31\x71\x5d\x70')](),_0xd00e28=normalizeState(_0xec9cc7[_0x3dbb9d(0x397,'\x74\x54\x32\x4d')]);if(tooSoon(_0xd00e28[_0x3dbb9d(0x203,'\x48\x75\x79\x58')+'\x64\x41\x74'],QUESTION_INTERVAL_MS,_0x5a64a4))return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':[],'\x73\x74\x61\x74\x65':questionState(_0xd00e28),'\x63\x68\x61\x6e\x67\x65\x64':![]};const _0x357e51=(_0xec9cc7[_0x3dbb9d(0x1e8,'\x51\x39\x37\x52')]??[])[_0x3dbb9d(0x424,'\x44\x67\x68\x53')](String),_0x5898cf=_0xec9cc7[_0x3dbb9d(0x2b5,'\x6b\x6d\x5d\x58')+_0x3dbb9d(0x365,'\x48\x75\x79\x58')]??[],_0x278ee6=String(_0xec9cc7['\x73\x65\x73\x73\x69\x6f\x6e\x54'+_0x3dbb9d(0x198,'\x45\x73\x4a\x6d')+'\x74']??''),_0x4d0206=String(_0xec9cc7[_0x3dbb9d(0x306,'\x59\x28\x7a\x4f')+_0x3dbb9d(0x18c,'\x59\x28\x7a\x4f')]??''),_0x13db97=buildStandardCandidates(_0x357e51,_0x5898cf,_0x278ee6),_0xe3fe2a=_0xec9cc7[_0x3dbb9d(0x221,'\x48\x71\x65\x56')]??defaultEnv();let _0x5a6688=_0xec9cc7[_0x3dbb9d(0x2c4,'\x6b\x61\x61\x52')+_0x3dbb9d(0x3f9,'\x59\x61\x52\x29')+'\x65\x64']??_0xe3fe2a[_0x3dbb9d(0x35e,'\x6b\x43\x72\x25')+_0x3dbb9d(0x2b0,'\x30\x70\x74\x5b')+_0x3dbb9d(0x43a,'\x4e\x6e\x59\x25')+'\x54\x49\x4f\x4e\x53']!=='\x30';if(_0x5a6688&&tooSoon(_0xd00e28[_0x3dbb9d(0x271,'\x47\x71\x52\x71')+_0x3dbb9d(0x230,'\x76\x53\x5a\x76')],EXPLORATION_QUESTION_INTERVAL_MS,_0x5a64a4))_0x5a6688=![];if(_0x5a6688){const _0x4f8982=buildExplorationCandidate(_0x357e51,_0x5898cf,_0x278ee6,_0x4d0206);if(_0x4f8982)_0x13db97[_0x3dbb9d(0x232,'\x45\x77\x32\x5b')](_0x4f8982);}return completeStandardGeneration(_0x13db97,_0xd00e28,_0x5a64a4);}function buildUrgentCandidates(_0x146b64){const _0x3a8e94=_0xdfc1a,_0x222f37=[];if(_0x146b64[_0x3a8e94(0x478,'\x4e\x6e\x59\x25')+_0x3a8e94(0x16e,'\x30\x51\x23\x45')]){if('\x68\x6b\x6d\x6b\x72'===_0x3a8e94(0x2e0,'\x69\x30\x26\x77')){const _0x5ebcf1=safeProblemContext(String(_0x146b64[_0x3a8e94(0x2c3,'\x68\x5e\x30\x70')+_0x3a8e94(0x43b,'\x53\x61\x25\x74')]??''),0x766*0x3+-0x14e7+-0x1*0x83),_0x44aa23=_0x146b64[_0x3a8e94(0x323,'\x5a\x75\x75\x24')]?safeQuestionContext(_0x146b64[_0x3a8e94(0x4b4,'\x26\x5e\x2a\x53')],0x22b4+-0x1*0x5b+-0x2209)||_0x3a8e94(0x253,'\x6d\x6b\x34\x29'):_0x3a8e94(0x482,'\x6b\x6d\x5d\x58');_0x5ebcf1&&_0x222f37[_0x3a8e94(0x2f8,'\x72\x42\x6b\x30')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x3a8e94(0x205,'\x5a\x76\x56\x42')+_0x3a8e94(0x189,'\x52\x50\x44\x25')+_0x3a8e94(0x3a4,'\x47\x71\x52\x71')+_0x3a8e94(0x1b5,'\x59\x28\x7a\x4f')+_0x3a8e94(0x33f,'\x40\x21\x56\x28')+_0x3a8e94(0x285,'\x76\x76\x5a\x44')+_0x3a8e94(0x231,'\x76\x65\x4a\x75')+_0x3a8e94(0x415,'\x48\x71\x65\x56')+_0x44aa23+('\x29\x2e\x20\x45\x72\x72\x6f\x72'+_0x3a8e94(0x392,'\x26\x5e\x2a\x53'))+_0x5ebcf1+(_0x3a8e94(0x31c,'\x5b\x70\x50\x55')+_0x3a8e94(0x315,'\x63\x4a\x31\x68')+'\x63\x6f\x72\x72\x65\x63\x74\x20'+_0x3a8e94(0x483,'\x59\x71\x45\x65')+'\x20\x74\x6f\x20\x66\x69\x78\x20'+_0x3a8e94(0x3c8,'\x48\x75\x79\x58')+_0x3a8e94(0x1b0,'\x58\x5d\x35\x6b')+_0x3a8e94(0x37a,'\x5a\x75\x75\x24')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x3a8e94(0x26e,'\x6b\x61\x61\x52')+_0x3a8e94(0x40a,'\x31\x73\x55\x4a')+'\x72\x65',_0x3a8e94(0x1c7,'\x5d\x77\x63\x41')+_0x3a8e94(0x364,'\x76\x65\x4a\x75')+'\x64'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}else{const _0x255d9b=_0x29744f(_0x630b4f,0x161*0x3+0x12b+0x4*-0x12e);_0x1c9210[_0x3a8e94(0x36b,'\x44\x67\x68\x53')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':'\x50\x65\x72\x66\x6f\x72\x6d\x61'+_0x3a8e94(0x4a6,'\x26\x5e\x2a\x53')+_0x3a8e94(0x3c5,'\x45\x77\x32\x5b')+_0x3a8e94(0x2af,'\x44\x67\x68\x53')+'\x20'+_0x255d9b+(_0x3a8e94(0x257,'\x31\x73\x55\x4a')+_0x3a8e94(0x34b,'\x59\x61\x52\x29')+_0x3a8e94(0x493,'\x6b\x43\x72\x25')+_0x3a8e94(0x136,'\x6b\x43\x72\x25')+_0x3a8e94(0x255,'\x26\x21\x55\x23')+_0x3a8e94(0x1be,'\x31\x73\x55\x4a')+_0x3a8e94(0x34e,'\x76\x53\x5a\x76')+_0x3a8e94(0x44f,'\x69\x30\x26\x77')+'\x73\x73\x20\x74\x68\x69\x73\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x3a8e94(0x312,'\x6b\x53\x41\x61')+_0x3a8e94(0x393,'\x6b\x6d\x5d\x58'),_0x3a8e94(0x280,'\x5b\x70\x50\x55')+_0x3a8e94(0x2a7,'\x59\x71\x45\x65')+_0x3a8e94(0x325,'\x26\x5e\x2a\x53')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2});}}if(_0x146b64[_0x3a8e94(0x498,'\x68\x5e\x30\x70')+'\x64\x65\x6e\x63\x65']&&Number[_0x3a8e94(0x386,'\x5d\x77\x63\x41')](_0x146b64[_0x3a8e94(0x1cb,'\x47\x38\x31\x71')+_0x3a8e94(0x265,'\x68\x5e\x30\x70')])){const _0x3c7856=Math['\x72\x6f\x75\x6e\x64'](Number(_0x146b64['\x63\x6f\x6e\x66\x69\x64\x65\x6e'+_0x3a8e94(0x328,'\x76\x65\x4a\x75')])*(0x7c7+0x1954+-0x20b7))/(-0x419*-0x5+0x5*0x513+-0x2d78);_0x222f37[_0x3a8e94(0x1de,'\x6d\x6b\x34\x29')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x3a8e94(0x39d,'\x58\x5d\x35\x6b')+_0x3a8e94(0x225,'\x45\x67\x73\x71')+_0x3a8e94(0x212,'\x44\x67\x68\x53')+_0x3a8e94(0x244,'\x23\x42\x66\x46')+_0x3a8e94(0x466,'\x51\x39\x37\x52')+_0x3a8e94(0x34d,'\x45\x73\x4a\x6d')+_0x3a8e94(0x175,'\x77\x68\x5e\x63')+_0x3c7856+(_0x3a8e94(0x14a,'\x53\x38\x49\x43')+'\x3a\x20')+(_0x146b64[_0x3a8e94(0x3f4,'\x53\x61\x25\x74')]||_0x3a8e94(0x253,'\x6d\x6b\x34\x29'))+(_0x3a8e94(0x48d,'\x5a\x76\x56\x42')+_0x3a8e94(0x499,'\x31\x73\x55\x4a')+_0x3a8e94(0x481,'\x6b\x6d\x5d\x58')+_0x3a8e94(0x438,'\x59\x61\x52\x29')+'\x61\x79\x20\x6e\x6f\x74\x20\x62'+_0x3a8e94(0x2b9,'\x47\x71\x52\x71')+'\x63\x69\x61\x6c\x2e\x20\x57\x68'+_0x3a8e94(0x389,'\x76\x65\x4a\x75')+_0x3a8e94(0x24b,'\x68\x5e\x30\x70')+_0x3a8e94(0x326,'\x76\x53\x5a\x76')+'\x72\x6f\x61\x63\x68\x65\x73\x20'+_0x3a8e94(0x418,'\x5a\x76\x56\x42')+'\x72\x20\x74\x68\x69\x73\x20\x74'+_0x3a8e94(0x1d8,'\x47\x38\x31\x71')+_0x3a8e94(0x429,'\x6b\x6d\x5d\x58')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x3a8e94(0x2a3,'\x45\x77\x32\x5b')+_0x3a8e94(0x2d0,'\x26\x21\x55\x23'),_0x3a8e94(0x180,'\x5b\x77\x4c\x61')+_0x3a8e94(0x377,'\x73\x6b\x59\x57')+'\x65'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2});}if(_0x146b64['\x6c\x6c\x6d\x52\x65\x76\x69\x65'+'\x77\x52\x65\x6a\x65\x63\x74\x65'+'\x64']){if(_0x3a8e94(0x290,'\x73\x6b\x59\x57')!=='\x46\x44\x77\x4e\x63'){const _0x505f4b=safeProblemContext(String(_0x146b64[_0x3a8e94(0x3a3,'\x47\x71\x52\x71')+_0x3a8e94(0x47a,'\x6b\x6d\x5d\x58')]??''),-0x21e3+-0x11f8*0x1+0x34a3);_0x505f4b&&_0x222f37[_0x3a8e94(0x17f,'\x59\x61\x52\x29')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x3a8e94(0x146,'\x45\x73\x4a\x6d')+_0x3a8e94(0x44e,'\x48\x71\x65\x56')+'\x61\x6e\x67\x65\x20\x77\x61\x73'+_0x3a8e94(0x492,'\x51\x39\x37\x52')+_0x3a8e94(0x167,'\x53\x61\x25\x74')+_0x3a8e94(0x47e,'\x59\x71\x45\x65')+'\x20'+_0x505f4b+(_0x3a8e94(0x2b3,'\x45\x77\x32\x5b')+_0x3a8e94(0x21b,'\x5b\x70\x50\x55')+'\x74\x69\x76\x65\x20\x69\x6d\x70'+_0x3a8e94(0x3f7,'\x53\x38\x49\x43')+'\x69\x6f\x6e\x20\x61\x70\x70\x72'+_0x3a8e94(0x164,'\x31\x73\x55\x4a')+_0x3a8e94(0x446,'\x6d\x6b\x34\x29')+_0x3a8e94(0x49f,'\x47\x4e\x33\x50')+_0x3a8e94(0x32b,'\x31\x71\x5d\x70')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':['\x6c\x6c\x6d\x5f\x72\x65\x76\x69'+_0x3a8e94(0x238,'\x6b\x6d\x5d\x58')+_0x3a8e94(0x313,'\x6b\x53\x41\x61'),_0x3a8e94(0x14d,'\x6b\x61\x61\x52')+'\x63\x6f\x6e\x63\x65\x72\x6e'],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}else{const _0x4e5bb4=_0x4bf9a0[_0x3a8e94(0x491,'\x31\x73\x55\x4a')](_0x2b17eb=>_0x132139(_0x2b17eb)[_0x3a8e94(0x263,'\x30\x51\x23\x45')+'\x74\x68'](_0x3a8e94(0x473,'\x31\x73\x55\x4a')+'\x3a')),_0x2bc02e=_0x4e5bb4?_0x331f03(_0x4183a0(_0x4e5bb4)[_0x3a8e94(0x147,'\x48\x71\x65\x56')](_0x3a8e94(0x240,'\x66\x41\x7a\x25')+'\x3a',''),0x1f2b+-0x24a0+0x5c5)||_0x3a8e94(0x178,'\x76\x65\x4a\x75'):_0x3a8e94(0x16f,'\x26\x5e\x2a\x53');_0x59192c[_0x3a8e94(0x3ac,'\x6b\x53\x41\x61')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':'\x41\x67\x65\x6e\x74\x20\x68\x61'+'\x73\x20\x66\x61\x69\x6c\x65\x64'+'\x20'+_0x4e778d+('\x20\x63\x6f\x6e\x73\x65\x63\x75'+_0x3a8e94(0x1d1,'\x6b\x43\x72\x25')+_0x3a8e94(0x304,'\x5b\x77\x4c\x61')+_0x3a8e94(0x2b6,'\x5d\x77\x63\x41')+_0x3a8e94(0x266,'\x52\x50\x44\x25')+'\x3a\x20')+_0x2bc02e+(_0x3a8e94(0x3e8,'\x40\x21\x56\x28')+_0x3a8e94(0x342,'\x47\x38\x31\x71')+_0x3a8e94(0x195,'\x23\x42\x66\x46')+_0x3a8e94(0x3d5,'\x63\x4a\x31\x68')+_0x3a8e94(0x2c8,'\x51\x39\x37\x52')+_0x3a8e94(0x3d7,'\x6b\x53\x41\x61')+_0x3a8e94(0x233,'\x26\x5e\x2a\x53')+_0x3a8e94(0x36f,'\x77\x68\x5e\x63')+_0x3a8e94(0x270,'\x4e\x6e\x59\x25')+_0x3a8e94(0x23d,'\x32\x34\x66\x74')+_0x3a8e94(0x3b8,'\x31\x71\x5d\x70')+_0x3a8e94(0x3ad,'\x23\x42\x66\x46')+_0x3a8e94(0x268,'\x45\x73\x4a\x6d')+'\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x3a8e94(0x2c7,'\x23\x42\x66\x46')+_0x3a8e94(0x3de,'\x6d\x6b\x34\x29'),_0x3a8e94(0x16b,'\x32\x34\x66\x74')+_0x3a8e94(0x1ed,'\x76\x53\x5a\x76')+_0x3a8e94(0x401,'\x58\x5d\x35\x6b')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}}if(_0x146b64[_0x3a8e94(0x40e,'\x59\x61\x52\x29')+_0x3a8e94(0x17d,'\x74\x54\x32\x4d')]&&_0x146b64[_0x3a8e94(0x445,'\x6b\x61\x61\x52')+'\x6c\x73']){const _0x1e43f5=(_0x146b64[_0x3a8e94(0x366,'\x53\x61\x25\x74')]??[])[_0x3a8e94(0x25a,'\x5a\x76\x56\x42')](_0x478d4f=>safeQuestionContext(String(_0x478d4f),0x15*-0x1c5+0x245a+-0x1*-0x11f))[_0x3a8e94(0x3ce,'\x53\x38\x49\x43')](_0x1063bc=>_0x1063bc&&hasPublicContext(_0x1063bc))[_0x3a8e94(0x1dc,'\x51\x39\x37\x52')](-0x1*0x2207+-0x7a7*0x4+0x40a3,0x24ad+0x174d+0x1*-0x3bf5)['\x6a\x6f\x69\x6e']('\x2c\x20');_0x222f37['\x70\x75\x73\x68']({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x3a8e94(0x382,'\x76\x76\x5a\x44')+'\x6e\x20\x63\x79\x63\x6c\x65\x20'+_0x3a8e94(0x2c2,'\x47\x4e\x33\x50')+_0x3a8e94(0x13d,'\x72\x42\x6b\x30')+_0x3a8e94(0x4a5,'\x59\x61\x52\x29')+_0x1e43f5+('\x5d\x20\x70\x72\x6f\x64\x75\x63'+_0x3a8e94(0x4b8,'\x72\x42\x6b\x30')+_0x3a8e94(0x2ef,'\x73\x6b\x59\x57')+_0x3a8e94(0x1c6,'\x6b\x6d\x5d\x58')+_0x3a8e94(0x4a8,'\x73\x6b\x59\x57')+_0x3a8e94(0x335,'\x59\x28\x7a\x4f')+_0x3a8e94(0x237,'\x45\x73\x4a\x6d')+'\x20\x61\x70\x70\x72\x6f\x61\x63'+_0x3a8e94(0x22b,'\x40\x21\x56\x28')+_0x3a8e94(0x4a7,'\x48\x75\x79\x58')+_0x3a8e94(0x42d,'\x47\x71\x52\x71')+_0x3a8e94(0x477,'\x76\x65\x4a\x75')+_0x3a8e94(0x177,'\x59\x61\x52\x29')+_0x3a8e94(0x339,'\x6b\x43\x72\x25')+_0x3a8e94(0x133,'\x74\x54\x32\x4d')+_0x3a8e94(0x2f3,'\x30\x51\x23\x45')+_0x3a8e94(0x3b9,'\x51\x39\x37\x52')+_0x3a8e94(0x1a4,'\x47\x38\x31\x71')+_0x3a8e94(0x2bc,'\x40\x21\x56\x28')),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':[_0x3a8e94(0x303,'\x30\x70\x74\x5b')+_0x3a8e94(0x272,'\x5a\x76\x56\x42')+'\x73',_0x3a8e94(0x2a2,'\x63\x4a\x31\x68')+_0x3a8e94(0x1d5,'\x47\x4e\x33\x50')+_0x3a8e94(0x299,'\x6b\x6d\x5d\x58')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x2});}if(_0x146b64[_0x3a8e94(0x42c,'\x58\x5d\x35\x6b')+_0x3a8e94(0x3da,'\x44\x67\x68\x53')+_0x3a8e94(0x1a9,'\x5b\x70\x50\x55')]){if(_0x3a8e94(0x474,'\x76\x53\x5a\x76')!==_0x3a8e94(0x3e9,'\x6b\x43\x72\x25'))return/[a-z0-9]/i[_0x3a8e94(0x1fb,'\x69\x30\x26\x77')](_0x4f1646[_0x3a8e94(0x407,'\x23\x42\x66\x46')+'\x6c\x6c'](_0x91364a,''));else{const _0x434dc5=safeProblemContext(String(_0x146b64[_0x3a8e94(0x1bc,'\x76\x65\x4a\x75')+'\x65']??''),-0x5ff+-0x1f51+0x138*0x1f),_0x499f23=safeProblemContext(String(_0x146b64[_0x3a8e94(0x351,'\x48\x71\x65\x56')+'\x61\x6c\x73']??''),-0xd*-0x172+-0xe1b+-0x44b);(_0x434dc5||_0x499f23)&&_0x222f37[_0x3a8e94(0x327,'\x69\x30\x26\x77')]({'\x71\x75\x65\x73\x74\x69\x6f\x6e':_0x3a8e94(0x149,'\x76\x53\x5a\x76')+_0x3a8e94(0x1a5,'\x47\x38\x31\x71')+_0x3a8e94(0x172,'\x48\x75\x79\x58')+_0x3a8e94(0x1d6,'\x58\x5d\x35\x6b')+'\x20\x22'+(_0x434dc5||_0x3a8e94(0x279,'\x59\x71\x45\x65'))+(_0x3a8e94(0x262,'\x77\x68\x5e\x63')+_0x3a8e94(0x1a8,'\x63\x4a\x31\x68'))+(_0x499f23||_0x3a8e94(0x3ff,'\x47\x71\x52\x71'))+(_0x3a8e94(0x273,'\x4e\x6e\x59\x25')+_0x3a8e94(0x2e9,'\x44\x31\x49\x44')+_0x3a8e94(0x17b,'\x73\x6b\x59\x57')+_0x3a8e94(0x17e,'\x45\x77\x32\x5b')+_0x3a8e94(0x3d3,'\x53\x38\x49\x43')+'\x69\x65\x73\x2e\x20\x57\x68\x61'+'\x74\x20\x61\x70\x70\x72\x6f\x61'+_0x3a8e94(0x48a,'\x51\x39\x37\x52')+'\x6f\x6c\x73\x2c\x20\x6f\x72\x20'+_0x3a8e94(0x2cd,'\x76\x65\x4a\x75')+_0x3a8e94(0x47d,'\x77\x68\x5e\x63')+_0x3a8e94(0x22f,'\x68\x5e\x30\x70')+'\x73\x3f'),'\x61\x6d\x6f\x75\x6e\x74':0x0,'\x73\x69\x67\x6e\x61\x6c\x73':['\x74\x61\x73\x6b\x5f\x63\x6f\x6d'+_0x3a8e94(0x1cc,'\x77\x68\x5e\x63')+_0x3a8e94(0x4a2,'\x53\x61\x25\x74'),_0x3a8e94(0x3b2,'\x26\x21\x55\x23')+_0x3a8e94(0x24c,'\x5b\x70\x50\x55')],'\x70\x72\x69\x6f\x72\x69\x74\x79':0x3});}}return _0x222f37;}export function generateUrgentQuestions(_0xd20503={}){const _0xeb166f=_0xdfc1a,_0x2359d5=_0xd20503[_0xeb166f(0x3a9,'\x53\x38\x49\x43')]??Date[_0xeb166f(0x24a,'\x6b\x61\x61\x52')](),_0x1b1d92=normalizeState(_0xd20503[_0xeb166f(0x309,'\x32\x34\x66\x74')]);if(tooSoon(_0x1b1d92['\x6c\x61\x73\x74\x55\x72\x67\x65'+_0xeb166f(0x223,'\x23\x42\x66\x46')],URGENT_QUESTION_INTERVAL_MS,_0x2359d5))return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':[],'\x73\x74\x61\x74\x65':questionState(_0x1b1d92),'\x63\x68\x61\x6e\x67\x65\x64':![]};const _0x386f34=buildUrgentCandidates(_0xd20503);if(_0x386f34[_0xeb166f(0x17a,'\x6b\x61\x61\x52')]===-0x187+-0x1*-0x2191+-0x200a)return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':[],'\x73\x74\x61\x74\x65':questionState(_0x1b1d92),'\x63\x68\x61\x6e\x67\x65\x64':![]};_0x386f34[_0xeb166f(0x288,'\x5b\x77\x4c\x61')]((_0x597b29,_0x49b943)=>_0x49b943[_0xeb166f(0x150,'\x32\x34\x66\x74')]-_0x597b29[_0xeb166f(0x332,'\x51\x39\x37\x52')]);const _0x540c07=[];for(const _0x2bac40 of _0x386f34){if(_0x540c07[_0xeb166f(0x329,'\x45\x73\x4a\x6d')]>=MAX_URGENT_QUESTIONS)break;if(!isDuplicate(_0x2bac40[_0xeb166f(0x2d1,'\x32\x34\x66\x74')],_0x1b1d92[_0xeb166f(0x3ee,'\x63\x4a\x31\x68')+_0xeb166f(0x314,'\x45\x77\x32\x5b')]))_0x540c07[_0xeb166f(0x405,'\x59\x71\x45\x65')](_0x2bac40);}if(_0x540c07['\x6c\x65\x6e\x67\x74\x68']===0xb6c+0x377*-0xb+0x1ab1)return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':[],'\x73\x74\x61\x74\x65':questionState(_0x1b1d92),'\x63\x68\x61\x6e\x67\x65\x64':![]};const _0x37111d={'\x6c\x61\x73\x74\x41\x73\x6b\x65\x64\x41\x74':_0x1b1d92[_0xeb166f(0x144,'\x69\x30\x26\x77')+_0xeb166f(0x3e5,'\x5a\x75\x75\x24')],'\x6c\x61\x73\x74\x55\x72\x67\x65\x6e\x74\x41\x74':new Date(_0x2359d5)[_0xeb166f(0x209,'\x5d\x77\x63\x41')+_0xeb166f(0x454,'\x44\x67\x68\x53')](),'\x6c\x61\x73\x74\x45\x78\x70\x6c\x6f\x72\x65\x41\x74':_0x1b1d92[_0xeb166f(0x20c,'\x63\x4a\x31\x68')+_0xeb166f(0x343,'\x59\x28\x7a\x4f')],'\x72\x65\x63\x65\x6e\x74\x51\x75\x65\x73\x74\x69\x6f\x6e\x73':[..._0x1b1d92[_0xeb166f(0x171,'\x66\x41\x7a\x25')+_0xeb166f(0x140,'\x26\x5e\x2a\x53')],..._0x540c07['\x6d\x61\x70'](_0x48020f=>_0x48020f[_0xeb166f(0x46b,'\x40\x21\x56\x28')])][_0xeb166f(0x419,'\x45\x77\x32\x5b')](-(0x1950+-0x16*-0x5a+-0x20ee))};return{'\x71\x75\x65\x73\x74\x69\x6f\x6e\x73':_0x540c07['\x6d\x61\x70'](publicQuestion),'\x73\x74\x61\x74\x65':_0x37111d,'\x63\x68\x61\x6e\x67\x65\x64':!![]};}