@evomap/evolver 1.89.2 → 1.89.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/BUGBOT.md +182 -0
- package/.env.example +68 -0
- package/.git-commit-guard-token +1 -0
- package/.github/CODEOWNERS +63 -0
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
- package/.github/pull_request_template.md +45 -0
- package/.github/workflows/test.yml +75 -0
- package/CHANGELOG.md +1237 -0
- package/README.ja-JP.md +1 -3
- package/README.ko-KR.md +1 -3
- package/README.md +86 -530
- package/README.public.md +569 -0
- package/README.zh-CN.md +1 -3
- package/SECURITY.md +108 -0
- package/assets/gep/events.jsonl +3 -0
- package/assets/gep/genes.json +496 -0
- package/examples/atp-consumer-quickstart.md +100 -0
- package/examples/hello-world.md +38 -0
- package/index.js +44 -48
- package/package.json +6 -17
- package/proxy-package.json +39 -0
- package/public.manifest.json +143 -0
- package/src/adapters/hookAdapter.js +2 -0
- package/src/adapters/scripts/_lockPaths.js +74 -0
- package/src/adapters/scripts/evolver-session-start.js +19 -27
- package/src/config.js +23 -0
- package/src/evolve/guards.js +721 -1
- package/src/evolve/pipeline/collect.js +1283 -1
- package/src/evolve/pipeline/dispatch.js +421 -1
- package/src/evolve/pipeline/enrich.js +440 -1
- package/src/evolve/pipeline/hub.js +319 -1
- package/src/evolve/pipeline/select.js +274 -1
- package/src/evolve/pipeline/signals.js +206 -1
- package/src/evolve/utils.js +264 -1
- package/src/evolve.js +350 -1
- package/src/experiment/agentRunner.js +229 -0
- package/src/experiment/cli.js +159 -0
- package/src/experiment/comparison.js +233 -0
- package/src/experiment/metrics.js +75 -0
- package/src/forceUpdate.js +311 -30
- package/src/gep/a2aProtocol.js +4455 -1
- package/src/gep/antiAbuseTelemetry.js +233 -0
- package/src/gep/autoDistillConv.js +205 -1
- package/src/gep/autoDistillLlm.js +315 -1
- package/src/gep/candidateEval.js +92 -1
- package/src/gep/candidates.js +198 -1
- package/src/gep/contentHash.js +30 -1
- package/src/gep/conversationSniffer.js +266 -1
- package/src/gep/crypto.js +89 -1
- package/src/gep/curriculum.js +163 -1
- package/src/gep/deviceId.js +218 -1
- package/src/gep/envFingerprint.js +118 -1
- package/src/gep/epigenetics.js +31 -1
- package/src/gep/execBridge.js +711 -1
- package/src/gep/explore.js +289 -1
- package/src/gep/hash.js +15 -1
- package/src/gep/hubFetch.js +359 -1
- package/src/gep/hubReview.js +207 -1
- package/src/gep/hubSearch.js +526 -1
- package/src/gep/hubVerify.js +306 -1
- package/src/gep/learningSignals.js +89 -1
- package/src/gep/memoryGraph.js +1374 -1
- package/src/gep/memoryGraphAdapter.js +203 -1
- package/src/gep/mutation.js +203 -1
- package/src/gep/narrativeMemory.js +108 -1
- package/src/gep/openPRRegistry.js +205 -1
- package/src/gep/personality.js +423 -1
- package/src/gep/policyCheck.js +599 -1
- package/src/gep/prompt.js +836 -1
- package/src/gep/recallInject.js +409 -1
- package/src/gep/recallVerifier.js +318 -1
- package/src/gep/reflection.js +177 -1
- package/src/gep/sanitize.js +9 -0
- package/src/gep/selector.js +602 -1
- package/src/gep/skillDistiller.js +1294 -1
- package/src/gep/solidify.js +1699 -1
- package/src/gep/strategy.js +136 -1
- package/src/gep/tokenSavings.js +88 -1
- package/src/gep/validator/sandboxExecutor.js +29 -1
- package/src/gep/workspaceKeychain.js +174 -1
- package/src/proxy/extensions/traceControl.js +99 -1
- package/src/proxy/index.js +14 -5
- package/src/proxy/inject.js +52 -1
- package/src/proxy/lifecycle/manager.js +30 -0
- package/src/proxy/mailbox/store.js +2 -1
- package/src/proxy/router/messages_route.js +13 -2
- package/src/proxy/trace/extractor.js +646 -1
- package/src/proxy/trace/usage.js +105 -1
- package/CONTRIBUTING.md +0 -19
- package/assets/cover.png +0 -0
- package/assets/gep/genes.seed.json +0 -245
- package/scripts/a2a_export.js +0 -63
- package/scripts/a2a_ingest.js +0 -79
- package/scripts/a2a_promote.js +0 -118
- package/scripts/analyze_by_skill.js +0 -121
- package/scripts/build_binaries.js +0 -479
- package/scripts/check-changelog.js +0 -166
- package/scripts/extract_log.js +0 -85
- package/scripts/generate_history.js +0 -75
- package/scripts/gep_append_event.js +0 -96
- package/scripts/gep_personality_report.js +0 -234
- package/scripts/human_report.js +0 -147
- package/scripts/recall-verify-report.js +0 -234
- package/scripts/recover_loop.js +0 -61
- package/scripts/seed-merchants.js +0 -91
- package/scripts/suggest_version.js +0 -89
- package/scripts/validate-modules.js +0 -38
- package/scripts/validate-suite.js +0 -78
- package/skills/index.json +0 -14
- /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
|
@@ -1 +1,421 @@
|
|
|
1
|
-
function _0x589e(){const _0x553a75=['\x64\x43\x6b\x36\x57\x51\x4e\x64\x48\x38\x6f\x76','\x6e\x62\x33\x63\x54\x4e\x2f\x63\x4c\x48\x71','\x72\x47\x33\x64\x48\x5a\x44\x4f\x57\x37\x68\x63\x49\x38\x6b\x46','\x6a\x6d\x6b\x78\x65\x53\x6f\x4f','\x70\x72\x6a\x76\x57\x50\x52\x64\x4d\x43\x6f\x47\x75\x75\x4f','\x57\x50\x61\x69\x70\x6d\x6f\x4f\x57\x36\x70\x64\x54\x63\x71\x4b','\x6d\x53\x6f\x76\x57\x36\x71\x4c\x46\x5a\x37\x63\x4d\x65\x61','\x57\x51\x35\x58\x57\x36\x37\x64\x48\x53\x6b\x62\x73\x53\x6b\x73\x45\x61','\x57\x4f\x4a\x64\x47\x74\x48\x51','\x57\x50\x68\x64\x49\x5a\x4c\x38\x6f\x53\x6f\x32\x57\x51\x4b','\x57\x52\x42\x64\x48\x49\x31\x66\x68\x61','\x57\x52\x4a\x64\x55\x61\x43','\x45\x57\x4a\x64\x54\x61','\x57\x51\x4b\x46\x57\x36\x39\x77\x44\x57','\x65\x33\x50\x57\x57\x52\x39\x61\x69\x76\x69\x74','\x57\x51\x69\x57\x69\x38\x6b\x4d\x79\x53\x6f\x35\x44\x53\x6f\x69','\x44\x6d\x6b\x37\x66\x6d\x6f\x49\x57\x36\x42\x64\x4f\x71\x56\x64\x55\x61','\x64\x4d\x64\x63\x4a\x57\x4b\x74','\x57\x51\x35\x4c\x57\x37\x31\x50\x6a\x53\x6f\x64\x57\x50\x7a\x73','\x64\x53\x6b\x34\x6c\x74\x64\x64\x4a\x71','\x57\x50\x4f\x6c\x63\x43\x6b\x6a\x76\x43\x6b\x6d\x44\x53\x6f\x35','\x57\x52\x56\x64\x56\x43\x6f\x67\x57\x36\x72\x5a\x57\x34\x68\x64\x4c\x64\x75','\x57\x51\x2f\x63\x4f\x6d\x6f\x43\x57\x36\x31\x52\x57\x37\x46\x64\x4c\x74\x69','\x6a\x4e\x6c\x63\x55\x4a\x53\x6c\x57\x52\x58\x6f','\x66\x43\x6b\x32\x57\x4f\x58\x57\x57\x35\x6d\x51\x74\x4a\x53','\x57\x34\x37\x64\x47\x4a\x75','\x57\x4f\x5a\x64\x49\x5a\x48\x38\x6e\x6d\x6f\x2f\x57\x51\x33\x64\x55\x47','\x79\x71\x6c\x64\x56\x38\x6b\x74\x57\x52\x50\x42\x63\x6d\x6f\x6b','\x45\x31\x4a\x63\x52\x38\x6f\x4a\x6e\x47\x34\x4d\x42\x61','\x45\x30\x6c\x63\x4f\x48\x61\x49\x57\x52\x62\x59\x57\x35\x47','\x57\x37\x78\x64\x4d\x65\x2f\x63\x56\x75\x61','\x6e\x30\x42\x63\x51\x64\x47\x53\x57\x51\x4b\x41\x6b\x57','\x64\x53\x6b\x52\x6b\x5a\x78\x64\x4c\x5a\x37\x64\x47\x53\x6b\x36','\x74\x76\x74\x64\x54\x6d\x6b\x35\x7a\x57','\x44\x43\x6b\x67\x61\x4b\x57\x6a\x6e\x43\x6f\x61','\x74\x47\x52\x64\x4a\x71\x31\x33\x57\x34\x64\x63\x4c\x53\x6b\x6e','\x57\x34\x57\x54\x57\x36\x64\x64\x4d\x38\x6f\x79\x71\x4b\x4f','\x57\x37\x50\x37\x57\x36\x52\x64\x47\x47','\x45\x38\x6b\x64\x62\x4b\x6d\x46','\x57\x51\x68\x64\x50\x65\x52\x63\x50\x71','\x57\x50\x53\x78\x61\x6d\x6b\x48\x46\x61','\x57\x36\x72\x7a\x57\x4f\x53','\x57\x36\x78\x63\x4b\x76\x33\x63\x55\x65\x4e\x63\x56\x74\x56\x63\x4d\x57','\x57\x37\x78\x64\x47\x31\x6c\x63\x56\x61','\x57\x36\x78\x63\x4f\x53\x6b\x44\x6e\x33\x75\x71\x6c\x32\x47','\x66\x38\x6f\x37\x70\x6d\x6b\x68\x57\x37\x54\x68\x6f\x47','\x6e\x4d\x4e\x64\x4c\x33\x65\x72\x63\x38\x6f\x35\x57\x50\x79','\x66\x6d\x6b\x38\x6d\x32\x64\x63\x4b\x6d\x6b\x71\x57\x36\x78\x63\x55\x6d\x6b\x33\x6d\x33\x43','\x57\x36\x76\x46\x57\x50\x30\x36\x7a\x4e\x6a\x43\x43\x57','\x57\x52\x71\x2f\x57\x34\x62\x5a\x43\x72\x57','\x57\x34\x31\x70\x57\x37\x70\x64\x53\x38\x6b\x32','\x79\x4b\x4e\x63\x54\x74\x34','\x57\x51\x4f\x2f\x57\x50\x61\x64\x68\x68\x71','\x6d\x47\x33\x63\x56\x6d\x6f\x46\x44\x71','\x6c\x53\x6f\x61\x57\x51\x64\x64\x4d\x68\x68\x63\x56\x77\x4e\x63\x4e\x61','\x70\x43\x6b\x6b\x67\x38\x6f\x73\x57\x36\x68\x64\x53\x71\x79','\x70\x72\x6a\x67\x57\x51\x6c\x63\x4c\x38\x6f\x44','\x57\x50\x37\x64\x4e\x63\x6e\x52\x70\x6d\x6f\x30\x57\x36\x5a\x64\x50\x71','\x69\x65\x4a\x63\x4b\x64\x69\x38\x57\x51\x6d\x41\x65\x71','\x61\x77\x62\x36\x57\x52\x30\x6a\x6f\x30\x76\x73','\x57\x51\x4e\x64\x51\x53\x6f\x44\x57\x51\x6a\x49\x57\x36\x42\x64\x4c\x64\x47','\x57\x35\x65\x33\x71\x66\x58\x6d','\x57\x51\x53\x5a\x57\x34\x4c\x36\x7a\x62\x47\x4f','\x57\x52\x57\x5a\x57\x50\x43\x76\x67\x4d\x71','\x57\x51\x50\x53\x57\x37\x4b\x47\x43\x38\x6b\x7a\x57\x4f\x7a\x79','\x71\x76\x56\x64\x54\x38\x6b\x2f\x76\x57','\x6e\x43\x6f\x42\x57\x37\x69\x2f\x45\x74\x2f\x64\x50\x32\x4b','\x67\x43\x6f\x4b\x57\x51\x56\x64\x4e\x65\x6c\x63\x4f\x67\x37\x63\x4c\x57','\x57\x36\x38\x6e\x57\x52\x62\x37\x45\x33\x38\x73\x6d\x57','\x6a\x43\x6f\x76\x57\x37\x6d\x4f\x46\x74\x78\x64\x49\x4e\x34','\x6e\x59\x46\x64\x4a\x43\x6f\x6f\x43\x71','\x57\x51\x53\x61\x72\x31\x58\x53\x57\x35\x46\x64\x4c\x48\x4f','\x57\x50\x64\x63\x4d\x64\x71\x48\x57\x36\x71\x7a\x57\x52\x54\x6e','\x57\x52\x44\x53\x57\x34\x69','\x57\x35\x58\x4e\x57\x36\x5a\x64\x4a\x53\x6b\x64\x77\x6d\x6f\x77\x6e\x71','\x74\x74\x70\x64\x54\x43\x6f\x5a\x72\x77\x74\x63\x51\x53\x6b\x47','\x57\x36\x76\x6f\x57\x50\x31\x50\x7a\x47','\x6e\x63\x33\x64\x53\x38\x6f\x78\x43\x71','\x66\x53\x6b\x4f\x63\x43\x6b\x41\x57\x51\x4b\x65\x6b\x48\x61','\x57\x34\x64\x63\x53\x6d\x6f\x61\x57\x36\x64\x63\x56\x61','\x6e\x48\x46\x63\x52\x4e\x4e\x63\x4c\x48\x4e\x64\x52\x74\x53','\x57\x36\x39\x4c\x57\x37\x2f\x64\x49\x43\x6b\x73','\x57\x35\x64\x63\x47\x38\x6f\x43\x57\x35\x35\x6b\x74\x77\x33\x63\x4e\x61','\x79\x65\x71\x64\x57\x37\x64\x64\x49\x38\x6b\x43\x64\x65\x53\x55\x43\x68\x4a\x63\x56\x6d\x6b\x77','\x57\x50\x4f\x39\x57\x36\x2f\x63\x4c\x66\x30','\x46\x76\x6c\x63\x4e\x61\x79\x46','\x57\x35\x70\x63\x49\x38\x6f\x6d\x57\x35\x34\x66','\x6b\x57\x5a\x63\x55\x78\x42\x63\x48\x48\x33\x63\x56\x78\x38','\x6d\x6d\x6b\x6c\x65\x6d\x6f\x4b\x57\x36\x74\x64\x53\x31\x2f\x64\x55\x61','\x57\x36\x54\x50\x57\x37\x46\x64\x47\x6d\x6b\x63','\x62\x53\x6b\x5a\x69\x43\x6f\x33\x57\x34\x71','\x57\x37\x5a\x64\x54\x43\x6f\x6b\x57\x35\x6c\x63\x51\x6d\x6f\x63\x46\x71','\x57\x34\x6c\x64\x4b\x53\x6f\x48\x57\x35\x78\x63\x50\x61','\x6e\x48\x37\x63\x48\x6d\x6f\x37','\x71\x43\x6b\x4b\x44\x4c\x74\x64\x4d\x4d\x52\x64\x55\x53\x6b\x54','\x74\x43\x6b\x4c\x6e\x49\x33\x63\x47\x5a\x4a\x64\x49\x38\x6b\x32','\x57\x50\x4c\x43\x57\x37\x52\x63\x48\x38\x6f\x67','\x6c\x43\x6f\x42\x69\x61','\x57\x4f\x72\x33\x69\x43\x6b\x53\x6f\x6d\x6f\x56\x78\x6d\x6f\x41','\x66\x43\x6b\x46\x6a\x5a\x62\x65\x45\x53\x6b\x42\x57\x34\x69','\x57\x51\x39\x56\x57\x37\x53','\x68\x57\x78\x64\x55\x6d\x6f\x2f\x77\x32\x33\x63\x54\x38\x6f\x4a','\x78\x68\x65\x46\x73\x57','\x43\x62\x64\x64\x4d\x47','\x57\x35\x2f\x64\x52\x53\x6f\x63\x57\x35\x68\x63\x55\x43\x6f\x41\x6c\x47\x75','\x65\x67\x37\x63\x4d\x58\x6d\x70','\x57\x52\x53\x4a\x57\x34\x31\x34\x79\x63\x53\x59\x57\x35\x75','\x57\x35\x69\x4f\x46\x4d\x62\x65\x57\x52\x70\x63\x51\x4d\x34','\x57\x36\x72\x7a\x57\x50\x31\x30\x79\x74\x69\x62\x66\x57','\x6a\x74\x2f\x64\x56\x59\x66\x70\x57\x34\x52\x63\x54\x53\x6b\x54','\x45\x30\x4a\x63\x48\x57','\x57\x51\x2f\x64\x51\x6d\x6f\x6d\x57\x34\x2f\x63\x4f\x53\x6b\x75\x6c\x4b\x65','\x57\x51\x75\x57\x6b\x38\x6b\x4d\x43\x6d\x6b\x35\x6a\x71','\x65\x38\x6b\x66\x41\x78\x66\x78\x43\x43\x6f\x46\x57\x50\x61','\x66\x53\x6b\x35\x57\x4f\x6a\x50\x57\x35\x71\x33\x71\x76\x47','\x57\x37\x74\x64\x55\x49\x35\x41\x57\x34\x6a\x54\x57\x51\x68\x63\x4e\x71','\x57\x50\x37\x64\x4e\x33\x76\x52\x57\x51\x39\x6f\x57\x37\x6a\x63','\x7a\x4e\x52\x64\x56\x38\x6b\x53\x75\x43\x6b\x41','\x76\x33\x68\x64\x49\x43\x6b\x71\x71\x47','\x70\x66\x69\x34\x57\x36\x52\x64\x4d\x43\x6f\x54\x77\x47\x79','\x57\x37\x6e\x2b\x57\x4f\x58\x37\x79\x78\x35\x4d\x70\x71','\x57\x4f\x43\x30\x57\x34\x54\x53\x43\x76\x7a\x37\x57\x34\x57','\x43\x6d\x6b\x43\x68\x30\x65','\x57\x34\x52\x64\x4e\x33\x72\x48\x57\x36\x71','\x64\x68\x6a\x39\x57\x52\x71\x6d\x42\x57\x62\x71','\x7a\x4d\x57\x7a\x73\x6d\x6f\x79\x62\x30\x48\x4b','\x78\x59\x78\x64\x4e\x43\x6b\x56\x57\x52\x69','\x64\x38\x6f\x66\x57\x51\x75','\x71\x31\x30\x35','\x57\x35\x43\x33\x57\x36\x42\x63\x4d\x6d\x6f\x77\x73\x65\x52\x64\x55\x57','\x57\x37\x2f\x63\x4f\x6d\x6b\x46\x70\x77\x71\x62','\x57\x51\x46\x64\x52\x4b\x64\x63\x53\x57','\x44\x4b\x52\x63\x54\x65\x6d\x51\x57\x52\x54\x64\x57\x35\x71','\x57\x37\x2f\x63\x54\x6d\x6b\x57\x69\x67\x71\x66\x6d\x57','\x64\x61\x33\x64\x55\x38\x6b\x36\x74\x4d\x33\x63\x54\x38\x6f\x4c','\x62\x30\x53\x44\x46\x43\x6f\x55\x65\x71\x53','\x6f\x76\x52\x63\x4d\x6d\x6f\x72\x69\x61','\x57\x50\x70\x64\x4a\x73\x4c\x6d\x6c\x47','\x63\x71\x78\x64\x52\x6d\x6f\x5a\x78\x32\x4e\x63\x52\x43\x6f\x50','\x57\x37\x56\x63\x49\x6d\x6f\x69\x57\x37\x66\x70','\x44\x75\x64\x64\x47\x53\x6f\x55\x57\x37\x52\x64\x4e\x78\x75\x64','\x45\x71\x33\x64\x4f\x71','\x6c\x49\x2f\x63\x51\x43\x6f\x76\x72\x61','\x63\x43\x6b\x6a\x41\x63\x6e\x74','\x66\x6d\x6b\x79\x57\x51\x44\x57\x57\x34\x6d','\x67\x61\x78\x63\x54\x57','\x68\x59\x42\x64\x49\x67\x34\x68\x67\x43\x6f\x4c\x57\x52\x57','\x57\x52\x2f\x64\x4f\x4b\x4e\x63\x52\x4c\x64\x64\x53\x57\x79','\x57\x4f\x75\x34\x57\x36\x4a\x63\x4b\x47','\x57\x51\x6c\x64\x50\x65\x64\x63\x50\x71','\x43\x64\x2f\x64\x54\x53\x6b\x2f\x73\x53\x6b\x74\x57\x36\x48\x6d','\x6e\x33\x7a\x6e\x57\x4f\x65\x33','\x57\x34\x57\x38\x57\x37\x68\x63\x4b\x43\x6b\x6e\x64\x30\x37\x64\x53\x57','\x61\x43\x6b\x35\x57\x4f\x44\x2f\x57\x34\x34\x32\x46\x30\x69','\x45\x65\x52\x63\x4f\x72\x44\x54\x57\x37\x7a\x49\x57\x34\x6d','\x57\x36\x68\x64\x50\x4b\x4c\x67\x57\x4f\x72\x49\x57\x4f\x6e\x34','\x73\x43\x6b\x31\x64\x6d\x6f\x36','\x79\x78\x7a\x42\x6c\x57\x43','\x57\x34\x79\x47\x57\x4f\x5a\x64\x54\x6d\x6f\x6a','\x6c\x31\x56\x63\x48\x53\x6f\x5a\x43\x48\x4f\x77\x43\x57','\x72\x47\x52\x64\x56\x58\x50\x58\x57\x37\x37\x63\x4e\x71','\x57\x36\x33\x64\x4e\x4c\x57','\x57\x34\x34\x2f\x43\x4a\x71\x64\x57\x37\x4a\x64\x4f\x59\x47','\x57\x51\x6c\x64\x56\x33\x68\x63\x51\x76\x75','\x57\x51\x2f\x63\x4e\x58\x74\x64\x56\x57\x56\x64\x54\x59\x2f\x64\x48\x61','\x68\x6d\x6b\x4c\x57\x51\x31\x4f\x57\x35\x69\x4b\x77\x71','\x57\x35\x68\x63\x4a\x38\x6f\x39\x57\x36\x7a\x47','\x77\x68\x69\x70\x62\x43\x6f\x62\x66\x75\x48\x37','\x57\x51\x7a\x59\x57\x37\x4c\x2b\x43\x57','\x64\x53\x6b\x56\x69\x63\x37\x63\x4d\x59\x78\x64\x4d\x6d\x6b\x2b','\x74\x75\x46\x64\x55\x43\x6b\x6f\x71\x61','\x64\x6d\x6f\x54\x72\x53\x6f\x76\x57\x37\x4c\x75\x6a\x48\x47','\x6b\x6d\x6f\x63\x6c\x38\x6b\x74\x57\x35\x4f','\x57\x35\x64\x64\x52\x65\x35\x6d\x57\x51\x65','\x63\x6d\x6b\x33\x57\x50\x68\x64\x4d\x43\x6f\x4c','\x57\x4f\x44\x58\x57\x36\x52\x63\x4d\x66\x44\x49\x6b\x63\x65','\x57\x34\x42\x63\x55\x43\x6f\x37\x57\x37\x64\x63\x53\x57','\x57\x34\x38\x39\x57\x37\x52\x64\x4e\x38\x6f\x64\x72\x57','\x44\x6d\x6b\x43\x61\x71','\x57\x37\x6d\x42\x57\x50\x33\x64\x4c\x6d\x6f\x46','\x57\x36\x78\x64\x4f\x4c\x6e\x61\x57\x50\x39\x58\x57\x50\x72\x38','\x57\x51\x68\x63\x51\x64\x61\x68\x71\x61','\x6a\x30\x37\x63\x55\x5a\x6d\x51\x57\x51\x4f\x42','\x57\x34\x42\x63\x4b\x53\x6f\x45\x57\x35\x6d\x72\x61\x78\x64\x64\x49\x71','\x41\x49\x37\x63\x53\x5a\x62\x6e\x72\x38\x6b\x47\x57\x37\x57','\x57\x52\x57\x70\x57\x52\x71\x48\x6e\x57','\x57\x34\x79\x2b\x45\x77\x54\x71\x57\x34\x78\x64\x53\x5a\x30','\x57\x50\x70\x63\x4a\x48\x47\x61\x67\x43\x6b\x4e\x57\x35\x56\x63\x4c\x61','\x57\x35\x48\x4d\x57\x52\x74\x64\x48\x71\x38\x4e\x6f\x4e\x58\x78\x57\x37\x56\x64\x49\x38\x6b\x47\x57\x52\x70\x64\x4a\x57','\x57\x50\x58\x61\x61\x38\x6f\x5a\x57\x34\x61','\x78\x32\x30\x33\x76\x38\x6f\x41\x65\x48\x65','\x6f\x31\x58\x61\x57\x51\x6c\x63\x4d\x6d\x6f\x6e\x66\x75\x65','\x57\x35\x33\x64\x4e\x4e\x6a\x4a\x57\x51\x35\x50\x57\x51\x58\x41','\x57\x4f\x39\x31\x6f\x63\x61\x6e\x57\x52\x78\x64\x4f\x73\x53','\x72\x38\x6b\x35\x45\x64\x56\x63\x4a\x5a\x37\x64\x4a\x38\x6b\x54','\x6b\x38\x6f\x76\x57\x51\x52\x64\x53\x30\x70\x63\x55\x4d\x4a\x63\x4b\x57','\x57\x35\x56\x63\x4e\x43\x6b\x71\x67\x30\x6d','\x7a\x78\x52\x64\x56\x43\x6b\x53\x76\x38\x6b\x45\x57\x36\x4c\x44','\x45\x57\x39\x67\x57\x52\x78\x63\x4d\x6d\x6f\x44\x75\x65\x65','\x57\x4f\x4a\x63\x4c\x38\x6f\x2b\x6e\x43\x6f\x46\x57\x37\x44\x76\x57\x51\x53','\x66\x38\x6f\x6b\x42\x5a\x72\x78\x43\x38\x6f\x70\x57\x35\x47','\x6d\x58\x6c\x63\x48\x61','\x6d\x53\x6b\x46\x63\x38\x6f\x48\x57\x36\x2f\x64\x53\x61','\x6e\x48\x52\x63\x47\x61','\x78\x78\x4a\x64\x54\x53\x6b\x4e\x71\x6d\x6f\x66\x57\x52\x30','\x64\x77\x7a\x52\x57\x52\x61\x75\x70\x65\x38\x43','\x57\x4f\x76\x6e\x70\x43\x6f\x56\x57\x36\x33\x64\x52\x49\x62\x59','\x67\x4c\x6c\x63\x4f\x53\x6f\x70\x62\x71','\x62\x43\x6b\x33\x57\x50\x76\x32\x57\x34\x38\x4b\x72\x61','\x57\x35\x70\x63\x4a\x38\x6f\x6a\x57\x34\x6e\x65\x74\x33\x2f\x64\x49\x47','\x71\x4e\x65\x65','\x57\x50\x72\x2f\x57\x35\x4a\x63\x4d\x6d\x6f\x71\x57\x37\x68\x63\x54\x72\x61','\x57\x37\x5a\x64\x53\x38\x6f\x79\x57\x34\x37\x63\x51\x53\x6f\x6c\x75\x72\x43','\x73\x75\x5a\x64\x4f\x53\x6b\x74\x57\x52\x6e\x73\x73\x43\x6f\x70','\x63\x43\x6f\x45\x62\x43\x6f\x4f\x57\x36\x74\x64\x53\x75\x69','\x73\x38\x6b\x35\x67\x53\x6f\x36\x57\x50\x56\x64\x4e\x5a\x70\x64\x4d\x47','\x65\x38\x6b\x34\x6e\x38\x6f\x65\x57\x34\x61','\x57\x50\x70\x63\x53\x67\x75\x76\x57\x51\x38','\x71\x38\x6b\x65\x6e\x4a\x5a\x63\x48\x57','\x57\x51\x56\x63\x4b\x43\x6f\x35\x6c\x43\x6f\x53','\x45\x65\x74\x63\x53\x49\x61\x34','\x64\x53\x6b\x4e\x68\x6d\x6b\x67\x57\x37\x50\x64\x6e\x5a\x30','\x57\x50\x66\x57\x57\x34\x4a\x63\x47\x6d\x6f\x36\x57\x36\x46\x63\x50\x71\x30','\x57\x37\x30\x54\x57\x37\x2f\x64\x4b\x43\x6b\x6a\x71\x38\x6b\x61\x70\x71','\x64\x77\x6e\x52\x57\x37\x66\x69\x6f\x65\x65\x6c','\x57\x35\x33\x64\x4d\x43\x6f\x50\x57\x36\x68\x64\x51\x43\x6f\x56\x41\x62\x43','\x70\x43\x6b\x6e\x69\x38\x6f\x2f\x57\x37\x4a\x64\x54\x71\x79','\x57\x37\x74\x64\x54\x66\x65\x67\x57\x4f\x6d\x56\x57\x52\x42\x63\x4a\x61','\x57\x35\x70\x63\x48\x53\x6f\x53\x57\x36\x6a\x65','\x57\x50\x48\x6a\x6f\x38\x6f\x2f\x57\x36\x4f','\x57\x51\x65\x34\x70\x53\x6b\x4d','\x57\x35\x68\x63\x53\x38\x6f\x54\x57\x37\x44\x4a','\x57\x52\x6d\x51\x70\x38\x6b\x48\x46\x53\x6b\x37\x6a\x43\x6f\x4c','\x57\x36\x4c\x35\x57\x50\x4c\x71\x76\x61','\x69\x38\x6f\x73\x57\x51\x64\x64\x49\x76\x52\x63\x4b\x68\x78\x63\x4c\x47','\x57\x35\x6e\x33\x57\x36\x74\x64\x4d\x43\x6f\x64\x72\x31\x57','\x7a\x65\x37\x63\x54\x47\x30\x53\x57\x52\x6a\x45','\x57\x51\x54\x32\x6e\x31\x31\x61\x57\x37\x56\x64\x51\x67\x34','\x64\x73\x68\x63\x52\x4c\x74\x63\x50\x57','\x42\x63\x4a\x64\x47\x38\x6b\x79\x57\x52\x4f','\x6e\x61\x74\x63\x50\x38\x6f\x42\x57\x35\x74\x64\x56\x30\x43\x56','\x42\x63\x4a\x63\x54\x64\x62\x69\x71\x43\x6f\x53\x57\x52\x61','\x57\x52\x75\x37\x57\x35\x34','\x57\x35\x68\x64\x48\x43\x6f\x73\x57\x35\x35\x70\x72\x67\x42\x63\x49\x61','\x57\x36\x62\x71\x57\x35\x64\x64\x54\x6d\x6b\x52','\x74\x38\x6f\x33\x69\x73\x68\x64\x48\x38\x6b\x54\x57\x36\x68\x64\x55\x71','\x6a\x78\x70\x64\x53\x47\x44\x47\x57\x37\x37\x63\x49\x6d\x6f\x69','\x57\x37\x46\x64\x4d\x6d\x6f\x2f\x57\x35\x37\x63\x50\x57','\x57\x50\x4e\x63\x48\x72\x65','\x57\x4f\x39\x34\x57\x37\x68\x63\x47\x6d\x6b\x2f\x70\x61\x78\x63\x4f\x47','\x6a\x57\x48\x74\x57\x52\x70\x63\x4a\x6d\x6f\x41','\x72\x4d\x70\x63\x52\x38\x6f\x44\x57\x34\x2f\x63\x4a\x4d\x75\x79','\x57\x4f\x64\x63\x4e\x47\x75\x43','\x78\x75\x66\x35\x6b\x61','\x64\x75\x74\x64\x51\x78\x57\x72','\x57\x52\x53\x34\x6f\x6d\x6b\x52\x45\x71','\x57\x36\x74\x64\x53\x75\x48\x42\x57\x50\x69','\x57\x34\x30\x5a\x57\x52\x64\x64\x49\x43\x6f\x4c\x45\x57','\x57\x4f\x65\x31\x43\x4e\x4b\x64\x57\x36\x4e\x64\x52\x59\x4b','\x64\x58\x42\x64\x49\x58\x58\x47\x57\x37\x64\x63\x49\x43\x6b\x6e','\x42\x74\x2f\x64\x50\x43\x6b\x42\x57\x51\x62\x7a\x44\x43\x6b\x64','\x75\x68\x43\x41\x75\x43\x6f\x6e\x61\x71','\x57\x51\x44\x7a\x6f\x53\x6f\x4c\x57\x36\x57','\x57\x36\x54\x6e\x57\x35\x4c\x78\x68\x6d\x6f\x4a\x57\x51\x4f\x79','\x57\x37\x74\x64\x48\x76\x33\x64\x51\x71','\x57\x52\x61\x5a\x57\x35\x4f','\x70\x76\x6c\x63\x52\x58\x61\x51\x57\x52\x34\x55\x6f\x57','\x6f\x31\x68\x63\x54\x74\x4b\x55\x57\x51\x6a\x62\x41\x61','\x57\x52\x46\x63\x49\x53\x6f\x41\x64\x38\x6f\x2b','\x57\x52\x70\x63\x48\x57\x4e\x64\x50\x72\x42\x64\x51\x4e\x37\x64\x4f\x53\x6f\x6b\x44\x6d\x6f\x39\x78\x68\x53','\x57\x4f\x50\x57\x57\x34\x4e\x63\x4d\x47','\x57\x37\x68\x64\x47\x31\x74\x63\x56\x66\x78\x63\x52\x62\x4a\x64\x47\x61','\x57\x50\x58\x49\x57\x34\x4a\x63\x4b\x43\x6f\x72\x57\x34\x52\x63\x55\x71\x43','\x6a\x38\x6f\x66\x65\x6d\x6b\x34\x57\x35\x65','\x64\x53\x6b\x63\x79\x4e\x66\x74\x7a\x38\x6f\x45\x57\x35\x6d','\x57\x50\x6c\x63\x4b\x6d\x6f\x45\x6b\x43\x6f\x6a\x57\x37\x44\x45','\x6b\x6d\x6f\x6f\x57\x52\x52\x64\x47\x47','\x43\x58\x78\x63\x4e\x38\x6b\x36\x79\x30\x47\x6d\x45\x71','\x57\x35\x47\x52\x43\x4a\x71\x64','\x6d\x38\x6b\x6f\x79\x5a\x62\x31','\x57\x34\x30\x63\x57\x34\x68\x64\x55\x38\x6f\x43','\x57\x51\x37\x63\x55\x33\x75\x76\x57\x4f\x61\x44\x57\x52\x6c\x63\x4c\x57','\x71\x38\x6b\x52\x69\x61\x68\x63\x4b\x73\x70\x64\x48\x53\x6b\x36','\x57\x35\x65\x5a\x57\x51\x5a\x64\x4e\x43\x6f\x2b\x46\x71\x70\x63\x51\x57','\x6d\x76\x42\x64\x47\x76\x53\x4e','\x6e\x47\x56\x63\x55\x32\x52\x63\x49\x57\x5a\x63\x55\x59\x65','\x6b\x32\x4a\x64\x56\x64\x34\x70\x63\x53\x6f\x4e\x57\x52\x61','\x57\x50\x30\x62\x6a\x43\x6b\x37\x73\x61','\x57\x34\x72\x43\x57\x51\x57\x6a\x63\x32\x78\x64\x55\x6d\x6f\x4c','\x72\x4e\x43\x67\x71\x61','\x6b\x65\x70\x63\x55\x38\x6f\x4a\x69\x62\x69','\x6c\x53\x6b\x63\x57\x51\x72\x76\x57\x37\x75\x63\x41\x67\x75','\x6c\x32\x4e\x64\x56\x33\x53','\x62\x4e\x50\x5a\x57\x51\x75\x66\x6a\x57','\x57\x50\x54\x30\x57\x34\x4e\x63\x4b\x43\x6f\x6c\x57\x36\x68\x64\x53\x61\x69','\x7a\x30\x78\x63\x48\x43\x6f\x4a\x57\x37\x52\x64\x4e\x32\x69\x31','\x6b\x38\x6f\x76\x57\x37\x6d\x55\x43\x47','\x57\x34\x43\x55\x45\x77\x31\x78\x57\x37\x70\x64\x51\x73\x61','\x57\x52\x52\x64\x56\x43\x6b\x70\x57\x36\x6e\x33\x57\x36\x37\x64\x4e\x73\x69','\x6d\x58\x37\x63\x47\x53\x6b\x36\x44\x76\x53\x6d\x45\x47','\x57\x34\x33\x64\x4e\x33\x58\x48\x57\x51\x54\x41\x57\x51\x38','\x57\x52\x4a\x63\x56\x59\x4b\x4b\x41\x38\x6b\x42\x57\x37\x33\x63\x4f\x47','\x76\x33\x4e\x64\x4f\x38\x6b\x69\x7a\x61','\x57\x50\x58\x49\x57\x34\x4a\x63\x4b\x43\x6f\x72\x57\x34\x52\x63\x4f\x47\x79','\x68\x38\x6b\x65\x43\x57\x35\x73\x45\x53\x6f\x41\x57\x35\x71','\x64\x38\x6b\x72\x57\x50\x4e\x64\x4a\x43\x6f\x44\x42\x6d\x6f\x51','\x57\x52\x65\x33\x57\x34\x39\x34\x6a\x71\x71\x36\x57\x34\x75','\x57\x36\x61\x73\x76\x76\x54\x54','\x57\x36\x69\x5a\x57\x50\x46\x64\x48\x38\x6f\x37','\x57\x37\x33\x64\x51\x43\x6f\x64\x57\x36\x70\x63\x4f\x6d\x6f\x6b','\x7a\x53\x6f\x7a\x57\x36\x69\x47\x44\x73\x4a\x64\x47\x73\x43','\x57\x4f\x64\x63\x49\x47\x71\x68\x78\x6d\x6f\x30\x57\x37\x42\x63\x4f\x47','\x57\x4f\x43\x2b\x57\x36\x4a\x63\x4b\x47','\x57\x37\x74\x63\x4a\x38\x6f\x50\x57\x36\x62\x38','\x57\x4f\x58\x58\x57\x51\x37\x63\x4e\x4c\x34\x59\x41\x73\x69','\x57\x37\x50\x46\x57\x50\x44\x33\x7a\x77\x39\x52\x46\x61','\x57\x34\x33\x63\x48\x43\x6f\x6d','\x57\x34\x31\x39\x57\x52\x4e\x64\x49\x38\x6f\x2f\x44\x4b\x56\x64\x56\x71','\x57\x4f\x61\x4e\x57\x51\x50\x56\x45\x32\x39\x73\x43\x61','\x41\x33\x70\x64\x53\x53\x6b\x52\x73\x43\x6b\x41\x57\x52\x71','\x57\x37\x46\x64\x4f\x68\x52\x63\x56\x30\x61','\x75\x49\x70\x64\x4c\x6d\x6b\x73\x57\x50\x38','\x6b\x48\x46\x63\x54\x77\x4a\x63\x4c\x4c\x5a\x63\x51\x78\x69','\x57\x51\x70\x64\x4d\x73\x76\x39\x6d\x6d\x6f\x30\x57\x52\x37\x64\x49\x71','\x57\x4f\x30\x34\x57\x37\x74\x63\x4b\x4c\x54\x4d','\x57\x52\x6d\x52\x42\x6d\x6b\x38\x45\x43\x6b\x57\x44\x53\x6f\x6b','\x57\x34\x30\x30\x43\x61','\x57\x34\x42\x64\x55\x53\x6f\x38\x57\x36\x52\x63\x49\x61','\x57\x52\x4f\x32\x6b\x57','\x45\x58\x37\x64\x51\x6d\x6f\x41\x57\x51\x44\x76\x75\x53\x6f\x67','\x45\x65\x70\x63\x48\x71','\x44\x78\x4e\x63\x53\x53\x6f\x56\x57\x34\x53','\x62\x62\x74\x64\x50\x38\x6f\x66\x71\x4d\x33\x63\x4f\x61','\x69\x62\x6e\x37\x57\x50\x74\x63\x54\x53\x6f\x36\x71\x76\x71','\x6e\x30\x74\x63\x51\x61\x61\x48\x57\x52\x54\x45\x57\x50\x65','\x6d\x71\x56\x63\x4d\x77\x52\x63\x4b\x62\x33\x63\x54\x47','\x69\x43\x6f\x6f\x57\x51\x42\x64\x47\x4c\x52\x64\x54\x74\x57','\x43\x43\x6b\x73\x57\x36\x52\x63\x4e\x72\x37\x64\x54\x49\x37\x63\x4e\x38\x6f\x47\x57\x52\x6c\x63\x51\x38\x6f\x52\x57\x35\x71','\x57\x52\x43\x2b\x57\x34\x53\x55\x6a\x72\x61\x59\x57\x34\x69','\x67\x43\x6b\x35\x62\x6d\x6f\x56\x57\x4f\x78\x64\x4c\x73\x2f\x64\x4d\x61','\x57\x36\x37\x63\x4c\x43\x6f\x30\x57\x35\x33\x63\x4b\x31\x2f\x64\x49\x38\x6f\x70','\x6f\x43\x6b\x42\x66\x53\x6f\x53','\x6c\x38\x6b\x6d\x44\x58\x62\x33','\x71\x4e\x53\x41\x78\x6d\x6b\x69\x66\x57\x66\x4b','\x61\x4e\x52\x63\x54\x38\x6f\x41\x64\x71','\x45\x38\x6b\x4b\x72\x74\x52\x64\x4b\x43\x6b\x2b\x57\x36\x68\x63\x52\x57','\x6e\x4d\x4e\x64\x49\x67\x4f\x75\x62\x38\x6f\x4c\x57\x52\x69','\x57\x51\x5a\x64\x4f\x6d\x6f\x64\x57\x36\x54\x4a\x57\x37\x46\x64\x4c\x59\x69','\x57\x51\x33\x64\x56\x30\x46\x63\x52\x31\x2f\x64\x52\x66\x4e\x63\x48\x47','\x64\x48\x78\x63\x51\x53\x6f\x64\x44\x61','\x57\x35\x5a\x63\x4c\x4d\x50\x53\x69\x53\x6f\x59\x57\x51\x64\x64\x53\x57','\x57\x51\x53\x32\x57\x34\x44\x33\x79\x61','\x74\x6d\x6b\x2b\x57\x34\x69\x31\x42\x4a\x2f\x64\x49\x4d\x4b','\x57\x35\x57\x63\x68\x38\x6b\x68\x78\x43\x6b\x43\x65\x53\x6f\x5a','\x6a\x47\x4c\x43\x57\x50\x47','\x45\x30\x2f\x63\x47\x43\x6f\x6f\x57\x36\x34','\x75\x6d\x6b\x59\x63\x6d\x6f\x36\x57\x4f\x46\x64\x4a\x47','\x6e\x38\x6b\x46\x66\x53\x6f\x4f\x57\x36\x37\x63\x54\x62\x46\x64\x54\x61','\x7a\x30\x33\x63\x56\x47','\x71\x6d\x6b\x2b\x43\x59\x33\x63\x4e\x49\x33\x64\x48\x6d\x6b\x2b','\x42\x74\x2f\x64\x4f\x43\x6b\x53\x72\x6d\x6b\x42\x57\x52\x31\x41','\x57\x36\x74\x64\x4c\x31\x37\x63\x4f\x57\x78\x63\x55\x77\x4a\x64\x4a\x61','\x70\x65\x6c\x63\x4a\x43\x6b\x54\x57\x36\x56\x64\x47\x78\x47\x66','\x57\x35\x61\x33\x57\x36\x68\x64\x49\x53\x6f\x75\x73\x4e\x64\x64\x4f\x71','\x6c\x6d\x6f\x46\x6c\x47\x46\x64\x51\x53\x6b\x73\x57\x35\x56\x63\x4e\x47','\x6e\x43\x6b\x79\x62\x38\x6b\x48\x57\x51\x52\x64\x55\x72\x42\x64\x56\x57','\x77\x75\x4f\x57\x6d\x63\x53\x33\x6e\x31\x6d','\x78\x31\x42\x64\x4a\x48\x50\x53\x57\x37\x6c\x63\x4c\x6d\x6b\x43','\x45\x75\x33\x63\x4c\x53\x6f\x4b\x57\x37\x74\x64\x4e\x74\x38','\x6e\x6d\x6b\x45\x41\x61','\x62\x53\x6b\x2f\x57\x4f\x54\x30\x57\x34\x65\x50\x75\x57','\x57\x51\x2f\x63\x4b\x77\x61','\x57\x50\x52\x64\x47\x38\x6f\x38\x6e\x6d\x6f\x77\x57\x36\x7a\x6c\x57\x51\x4f','\x57\x36\x37\x63\x48\x43\x6f\x74\x57\x34\x64\x63\x4d\x62\x2f\x63\x48\x43\x6b\x47','\x65\x6d\x6b\x78\x57\x50\x4b','\x57\x52\x62\x50\x57\x37\x54\x30\x6d\x53\x6f\x44\x57\x4f\x61\x6d','\x6d\x6d\x6b\x6d\x67\x38\x6f\x73\x57\x37\x4a\x64\x4f\x72\x65','\x78\x6d\x6b\x53\x57\x50\x42\x64\x48\x53\x6b\x43\x42\x6d\x6f\x34\x61\x57','\x57\x36\x75\x53\x57\x4f\x2f\x64\x56\x6d\x6f\x39','\x6c\x32\x70\x64\x51\x67\x30\x68\x63\x43\x6f\x55','\x71\x58\x4a\x64\x4a\x72\x58\x43\x57\x36\x33\x63\x4b\x43\x6b\x67','\x57\x52\x4e\x63\x56\x63\x65\x44\x57\x4f\x6a\x49\x57\x52\x6c\x63\x4b\x61','\x57\x35\x64\x63\x53\x6d\x6f\x4a\x57\x35\x48\x45','\x78\x6d\x6f\x2b\x75\x6d\x6b\x2f\x57\x4f\x4a\x64\x4e\x74\x4a\x64\x4c\x57','\x67\x38\x6f\x37\x41\x32\x37\x64\x47\x33\x56\x63\x4d\x6d\x6b\x4d\x78\x6d\x6f\x73\x70\x66\x66\x6e','\x45\x66\x50\x44\x6d\x5a\x38','\x57\x36\x61\x2f\x57\x37\x78\x64\x4b\x38\x6f\x47','\x57\x50\x6c\x63\x51\x47\x38\x7a\x73\x71','\x57\x36\x44\x53\x57\x37\x33\x63\x48\x38\x6b\x73\x72\x38\x6b\x74\x45\x61','\x6b\x53\x6b\x31\x57\x4f\x31\x51\x57\x35\x6d\x57\x74\x66\x71','\x57\x37\x52\x63\x55\x33\x71\x61\x57\x4f\x38\x54\x57\x51\x56\x63\x4e\x71','\x43\x4c\x2f\x63\x4f\x71\x57\x2f\x57\x51\x50\x45','\x57\x4f\x52\x64\x52\x53\x6f\x61\x57\x36\x62\x65','\x70\x38\x6f\x65\x6d\x43\x6f\x76\x57\x34\x39\x4e\x63\x4a\x69','\x62\x76\x4a\x63\x56\x33\x33\x63\x4a\x62\x4e\x64\x53\x47','\x76\x33\x47\x74\x62\x43\x6f\x62\x68\x71\x7a\x54','\x57\x36\x6e\x58\x57\x50\x64\x63\x49\x53\x6f\x67\x79\x53\x6b\x74\x6e\x71','\x6f\x48\x4c\x6b\x57\x52\x70\x64\x4d\x43\x6f\x66\x77\x4b\x4b','\x76\x38\x6f\x67\x76\x4a\x46\x64\x49\x57','\x78\x43\x6b\x31\x67\x53\x6f\x4d\x57\x34\x4e\x64\x49\x73\x4a\x64\x4d\x47','\x63\x57\x4e\x63\x4c\x53\x6f\x53\x72\x61','\x71\x43\x6b\x47\x70\x73\x4a\x63\x52\x47','\x77\x76\x4e\x63\x51\x53\x6b\x51\x65\x74\x33\x63\x55\x53\x6f\x55\x6f\x53\x6b\x66\x57\x36\x74\x64\x50\x61','\x57\x50\x4e\x64\x4c\x49\x4c\x4a\x6c\x53\x6f\x31\x57\x51\x4e\x63\x55\x57','\x57\x52\x79\x55\x57\x35\x30','\x63\x43\x6b\x77\x57\x34\x74\x63\x47\x38\x6f\x73\x42\x38\x6f\x39\x66\x71','\x68\x4e\x46\x64\x4a\x43\x6f\x7a\x57\x35\x70\x64\x56\x65\x71\x54','\x57\x51\x33\x64\x51\x75\x6c\x63\x50\x76\x75','\x79\x53\x6f\x73\x57\x51\x46\x64\x4a\x76\x52\x63\x51\x49\x42\x64\x4b\x47','\x63\x43\x6b\x64\x79\x64\x39\x78\x43\x38\x6f\x69','\x76\x43\x6f\x4f\x41\x64\x64\x64\x48\x57','\x67\x30\x68\x63\x4a\x31\x38\x58\x57\x51\x52\x64\x4e\x43\x6b\x66\x57\x37\x33\x63\x4f\x38\x6b\x2b\x57\x4f\x75\x35','\x6c\x43\x6f\x75\x57\x51\x46\x64\x4a\x30\x68\x63\x4f\x4e\x4b','\x67\x4d\x4a\x63\x49\x68\x30\x35\x57\x51\x6d\x79\x6e\x57','\x68\x43\x6b\x6c\x57\x4f\x33\x64\x49\x53\x6f\x42\x42\x53\x6f\x30\x66\x71','\x6f\x65\x6c\x63\x53\x4a\x4f\x2f\x57\x51\x34','\x43\x33\x2f\x63\x54\x53\x6f\x33\x57\x35\x57','\x57\x4f\x33\x63\x48\x53\x6b\x2f\x69\x43\x6f\x75\x57\x37\x48\x63\x57\x37\x71','\x67\x43\x6f\x48\x63\x43\x6f\x76\x57\x37\x54\x64\x6e\x76\x6d','\x57\x50\x38\x39\x6b\x6d\x6b\x50\x75\x47','\x67\x43\x6b\x35\x57\x4f\x53','\x6e\x31\x6c\x63\x4f\x47\x79\x2f\x57\x37\x35\x6c\x57\x35\x34','\x72\x4d\x34\x65\x73\x53\x6f\x6a\x65\x61\x61\x53','\x7a\x65\x6c\x63\x53\x62\x65\x55\x57\x52\x79','\x61\x5a\x33\x63\x4f\x67\x4a\x63\x4a\x48\x70\x63\x56\x78\x34','\x57\x37\x71\x49\x57\x4f\x5a\x64\x49\x43\x6f\x4d','\x63\x53\x6b\x46\x44\x64\x4b','\x46\x4c\x70\x63\x51\x64\x57\x4d\x57\x52\x54\x75','\x57\x37\x5a\x64\x48\x53\x6f\x31\x57\x35\x74\x63\x56\x61','\x44\x65\x6c\x63\x54\x61\x43\x2b\x57\x37\x69\x6e\x57\x34\x65','\x57\x51\x57\x36\x57\x4f\x6d\x76\x63\x31\x6c\x64\x51\x53\x6b\x37','\x70\x31\x33\x63\x49\x4a\x75\x6e','\x45\x30\x6c\x63\x56\x57\x71\x35\x57\x52\x79','\x65\x43\x6b\x7a\x57\x4f\x52\x64\x47\x6d\x6f\x75','\x57\x36\x58\x64\x57\x36\x70\x64\x49\x53\x6b\x77','\x57\x36\x2f\x63\x4c\x38\x6f\x37\x57\x34\x37\x63\x4b\x57\x78\x64\x4b\x43\x6b\x4b','\x64\x64\x52\x63\x4f\x53\x6f\x75\x77\x4e\x71\x49\x6c\x61','\x57\x37\x35\x65\x57\x50\x44\x30\x7a\x47','\x43\x6d\x6f\x68\x6a\x57','\x57\x52\x70\x63\x55\x4d\x7a\x75\x57\x4f\x75\x4d\x57\x51\x52\x63\x4e\x71','\x57\x4f\x39\x50\x57\x37\x70\x63\x4e\x6d\x6f\x49','\x64\x31\x35\x36\x57\x4f\x69\x66','\x6b\x38\x6f\x73\x57\x50\x78\x64\x48\x75\x64\x63\x50\x4d\x4a\x63\x4c\x57','\x73\x53\x6b\x4f\x68\x43\x6f\x52\x57\x50\x5a\x64\x49\x71','\x57\x35\x53\x69\x66\x61','\x57\x37\x68\x63\x51\x53\x6f\x58\x6d\x53\x6f\x70\x57\x37\x39\x67\x57\x51\x6d','\x57\x4f\x65\x34\x57\x37\x69','\x57\x51\x37\x63\x54\x78\x69\x46\x57\x52\x6d\x52\x57\x51\x69','\x57\x51\x33\x64\x54\x38\x6f\x4e\x57\x36\x50\x61','\x42\x68\x31\x2f\x6b\x49\x6d\x2f\x6e\x31\x65','\x6f\x47\x48\x62','\x61\x5a\x68\x63\x56\x68\x74\x63\x48\x5a\x56\x63\x52\x4d\x38','\x64\x43\x6f\x4a\x66\x6d\x6b\x66\x57\x37\x4c\x64\x6a\x31\x61','\x57\x34\x46\x64\x4b\x66\x6c\x63\x56\x75\x64\x63\x56\x67\x4a\x64\x4c\x71','\x57\x52\x75\x58\x6c\x43\x6b\x48\x46\x38\x6b\x6b\x70\x38\x6f\x45','\x57\x4f\x6c\x63\x48\x53\x6f\x52\x45\x38\x6f\x41\x57\x37\x48\x69\x57\x52\x53','\x57\x34\x71\x32\x57\x4f\x69\x67\x44\x71\x52\x64\x4d\x43\x6b\x36','\x57\x36\x78\x63\x51\x38\x6b\x79\x6d\x78\x6d','\x57\x34\x47\x50\x43\x4d\x31\x78\x57\x37\x70\x64\x53\x63\x53','\x67\x32\x4e\x63\x4d\x48\x71\x6d\x57\x50\x6d\x36\x66\x57','\x79\x62\x78\x64\x4f\x43\x6b\x46','\x57\x34\x38\x39\x57\x52\x74\x64\x4b\x43\x6f\x72\x64\x31\x2f\x64\x50\x57','\x69\x43\x6b\x6b\x62\x38\x6b\x54\x57\x36\x37\x64\x56\x71\x33\x64\x54\x61','\x57\x51\x75\x48\x57\x37\x42\x63\x4c\x68\x30','\x6e\x43\x6b\x69\x61\x38\x6f\x4b\x57\x36\x42\x64\x54\x72\x33\x64\x56\x71','\x43\x4c\x78\x63\x4f\x57\x57\x2f','\x57\x35\x65\x47\x57\x35\x5a\x64\x4b\x6d\x6f\x57','\x57\x52\x71\x79\x6e\x43\x6b\x4c\x79\x71','\x43\x66\x37\x63\x49\x38\x6f\x52\x57\x36\x2f\x64\x52\x68\x71\x65','\x57\x36\x52\x63\x4b\x38\x6f\x48\x57\x34\x47','\x6c\x53\x6f\x65\x57\x52\x33\x64\x49\x31\x52\x63\x50\x57','\x57\x35\x6c\x63\x53\x43\x6b\x4a\x62\x75\x38','\x6d\x47\x70\x64\x53\x43\x6f\x33\x72\x67\x68\x63\x52\x43\x6f\x54','\x57\x34\x2f\x63\x48\x43\x6f\x43','\x57\x50\x58\x67\x6b\x61','\x57\x35\x37\x63\x4d\x43\x6f\x47\x57\x35\x56\x64\x4c\x48\x5a\x63\x4e\x53\x6b\x4e','\x57\x35\x52\x64\x47\x4c\x64\x63\x55\x65\x4e\x63\x54\x64\x56\x63\x47\x71','\x57\x52\x79\x59\x57\x36\x46\x63\x47\x31\x31\x31\x7a\x5a\x34','\x62\x62\x74\x64\x50\x38\x6f\x66\x72\x68\x33\x63\x52\x43\x6f\x48','\x57\x4f\x61\x4e\x57\x52\x39\x32\x45\x4e\x4c\x41\x43\x71','\x73\x38\x6f\x48\x43\x49\x64\x64\x47\x38\x6b\x36\x57\x36\x53','\x57\x4f\x79\x6d\x61\x53\x6b\x4b\x72\x57','\x66\x43\x6b\x6c\x57\x52\x4a\x64\x49\x53\x6f\x73\x41\x43\x6f\x54\x66\x71','\x57\x34\x54\x73\x57\x52\x52\x64\x4c\x38\x6b\x75\x71\x6d\x6b\x63\x6e\x57','\x75\x48\x4a\x63\x55\x68\x4a\x64\x51\x68\x42\x63\x4e\x78\x34','\x65\x43\x6f\x39\x63\x43\x6b\x77\x57\x36\x7a\x6c\x6a\x47','\x78\x6d\x6b\x41\x57\x50\x56\x63\x47\x38\x6f\x69\x43\x53\x6f\x53\x68\x47','\x7a\x53\x6f\x37\x57\x35\x69\x7a\x73\x47\x2f\x64\x52\x66\x4f','\x57\x34\x57\x37\x57\x37\x56\x64\x4c\x6d\x6b\x78\x78\x31\x33\x64\x55\x47','\x79\x65\x43\x79\x71\x53\x6f\x4d','\x57\x36\x42\x63\x47\x38\x6f\x4d\x57\x34\x5a\x64\x4c\x48\x46\x63\x4e\x38\x6b\x48','\x6e\x73\x58\x4c\x57\x4f\x74\x63\x53\x71','\x57\x37\x35\x4e\x57\x36\x4a\x64\x4c\x6d\x6b\x6a\x71\x43\x6b\x78\x6e\x61','\x57\x36\x4c\x4e\x57\x37\x74\x64\x47\x53\x6b\x76\x43\x6d\x6b\x64\x6b\x57','\x57\x51\x58\x31\x57\x36\x48\x35\x70\x6d\x6f\x43\x57\x50\x79','\x57\x35\x56\x64\x4b\x4e\x6a\x37\x57\x52\x4b\x41\x57\x37\x58\x79','\x6e\x76\x4a\x63\x54\x6d\x6f\x59','\x6d\x65\x50\x57\x57\x50\x71\x35','\x6f\x71\x56\x63\x56\x71','\x76\x53\x6b\x50\x78\x6d\x6f\x53\x57\x4f\x5a\x64\x4e\x33\x33\x63\x49\x47','\x70\x76\x70\x63\x50\x71\x69\x47\x57\x51\x6d\x72','\x57\x37\x56\x63\x50\x53\x6b\x62','\x57\x51\x7a\x4b\x61\x53\x6f\x6c\x57\x37\x6d','\x57\x35\x64\x63\x47\x38\x6f\x43\x57\x35\x35\x6b\x74\x77\x30','\x57\x36\x76\x79\x57\x4f\x58\x35\x45\x4e\x7a\x45','\x71\x38\x6b\x56\x6b\x59\x33\x63\x4c\x49\x33\x64\x4a\x57','\x71\x65\x62\x6c\x57\x4f\x6d\x4c\x66\x67\x54\x73','\x6d\x43\x6f\x45\x61\x43\x6f\x30\x57\x36\x4e\x64\x55\x62\x52\x63\x53\x71','\x57\x4f\x4e\x64\x4a\x57\x64\x64\x4f\x67\x4a\x64\x53\x61\x64\x63\x48\x47','\x6e\x38\x6b\x4e\x6f\x53\x6f\x50\x57\x34\x53','\x57\x35\x68\x64\x4d\x65\x72\x37\x57\x51\x76\x44\x57\x52\x4c\x67','\x67\x57\x56\x64\x4a\x43\x6f\x35\x72\x71','\x78\x75\x37\x63\x50\x48\x4f\x31','\x71\x53\x6f\x48\x69\x73\x64\x64\x49\x43\x6b\x30\x57\x36\x6c\x63\x54\x71','\x6b\x38\x6f\x62\x57\x37\x6d\x53\x42\x4a\x70\x64\x4c\x32\x4b','\x57\x37\x52\x63\x53\x64\x71\x4d\x43\x6d\x6b\x71\x57\x37\x4e\x63\x4f\x47','\x57\x52\x78\x63\x50\x4d\x61\x61\x57\x4f\x75\x54\x57\x51\x4a\x64\x47\x47','\x6c\x64\x68\x63\x56\x6d\x6f\x4e\x63\x38\x6f\x71\x57\x37\x50\x44','\x57\x51\x54\x50\x57\x36\x47','\x63\x43\x6b\x41\x41\x5a\x48\x63','\x57\x35\x43\x39\x57\x4f\x33\x64\x4a\x43\x6f\x39','\x57\x52\x62\x50\x57\x37\x54\x30\x6d\x53\x6f\x44\x57\x4f\x62\x50','\x57\x34\x4e\x63\x55\x43\x6f\x62\x57\x4f\x4e\x63\x4b\x47\x70\x63\x47\x43\x6b\x50','\x57\x51\x57\x2f\x57\x35\x57\x30\x44\x48\x53\x33\x57\x35\x47','\x78\x62\x64\x64\x4d\x71\x7a\x49\x57\x37\x70\x63\x4c\x57','\x57\x52\x79\x73\x57\x35\x31\x67\x44\x71','\x44\x53\x6b\x79\x57\x50\x37\x64\x47\x38\x6b\x32\x63\x53\x6f\x75\x62\x71','\x57\x34\x46\x63\x47\x38\x6f\x6a\x57\x35\x76\x69\x76\x71','\x6f\x72\x4c\x67\x57\x51\x79','\x57\x51\x53\x55\x57\x35\x58\x39\x41\x58\x6d\x59\x57\x35\x43','\x7a\x65\x6c\x63\x56\x71\x79\x55\x57\x51\x50\x69\x57\x35\x75','\x57\x34\x76\x6b\x57\x52\x31\x6a\x7a\x47','\x57\x52\x71\x2f\x57\x35\x31\x4e\x41\x48\x4f\x65\x57\x35\x47','\x6b\x77\x70\x64\x54\x77\x30','\x65\x5a\x6d\x59\x57\x37\x58\x61\x65\x77\x39\x73','\x57\x50\x53\x50\x57\x34\x37\x63\x4e\x33\x38','\x62\x33\x74\x63\x47\x71','\x67\x53\x6b\x4a\x57\x50\x48\x35\x57\x34\x38\x4f\x72\x71','\x57\x52\x34\x64\x67\x53\x6b\x54\x77\x71','\x71\x31\x58\x35\x6b\x57','\x57\x35\x42\x64\x50\x4b\x58\x76\x57\x51\x79','\x74\x6d\x6b\x7a\x57\x51\x43\x45\x79\x59\x4e\x64\x4a\x67\x69','\x63\x43\x6b\x67\x42\x4a\x6a\x74','\x57\x37\x44\x59\x57\x37\x2f\x63\x4e\x43\x6f\x67','\x57\x4f\x6e\x64\x68\x6d\x6f\x2f\x57\x36\x34','\x57\x4f\x46\x64\x54\x67\x79\x72\x57\x4f\x69\x4e\x57\x37\x53','\x57\x37\x43\x64\x78\x67\x44\x55','\x57\x52\x46\x63\x53\x78\x75\x76','\x57\x50\x42\x64\x4d\x38\x6b\x69\x57\x4f\x61\x46\x65\x63\x5a\x64\x4e\x38\x6f\x70\x57\x34\x33\x64\x51\x53\x6f\x30\x57\x37\x65','\x6f\x43\x6b\x46\x66\x53\x6f\x55\x57\x36\x69','\x57\x35\x5a\x63\x48\x47\x39\x7a\x66\x6d\x6f\x44\x57\x50\x52\x64\x4b\x57','\x46\x75\x6c\x63\x48\x71','\x6c\x71\x37\x64\x50\x4c\x43','\x57\x52\x6a\x6d\x57\x34\x72\x4a\x6f\x71','\x77\x58\x68\x64\x4d\x58\x50\x57\x57\x52\x2f\x64\x49\x43\x6f\x66','\x6b\x31\x42\x63\x52\x53\x6f\x30\x70\x75\x65\x51\x7a\x57','\x45\x68\x4a\x63\x51\x43\x6f\x2b\x57\x35\x43','\x57\x50\x4c\x78\x57\x35\x4e\x63\x4f\x53\x6f\x6e','\x7a\x30\x64\x64\x56\x53\x6b\x4d\x71\x43\x6b\x41\x57\x51\x43\x79','\x72\x72\x42\x64\x4c\x57\x79','\x57\x4f\x70\x63\x48\x58\x38\x78\x78\x61','\x57\x4f\x30\x64\x57\x35\x48\x79\x71\x61','\x57\x50\x74\x63\x47\x6d\x6f\x38\x67\x6d\x6f\x6f','\x74\x38\x6b\x35\x6b\x5a\x56\x63\x47\x58\x78\x64\x47\x38\x6b\x37','\x57\x52\x68\x63\x55\x63\x6d\x4e\x44\x47','\x66\x6d\x6b\x6e\x79\x4e\x66\x70\x43\x6d\x6f\x6f\x57\x34\x69','\x46\x66\x79\x73\x78\x6d\x6f\x4c','\x57\x36\x76\x37\x6f\x49\x6d\x64\x57\x37\x37\x64\x51\x77\x34','\x6f\x6d\x6f\x72\x78\x43\x6b\x4e\x57\x34\x58\x33\x66\x4a\x43','\x76\x43\x6b\x35\x77\x47','\x72\x38\x6f\x4f\x42\x72\x2f\x64\x4a\x43\x6b\x36','\x71\x38\x6b\x52\x6c\x64\x33\x63\x4e\x57','\x57\x35\x61\x58\x57\x37\x70\x64\x4c\x53\x6f\x77\x71\x31\x57','\x57\x52\x57\x55\x57\x51\x4f\x6f\x6f\x61','\x57\x34\x31\x4f\x57\x51\x47\x36\x7a\x77\x4c\x75\x41\x71','\x75\x38\x6b\x5a\x66\x43\x6f\x58','\x67\x72\x2f\x63\x47\x6d\x6f\x7a\x77\x61','\x6f\x47\x5a\x63\x55\x71','\x77\x33\x65\x73\x71\x61','\x76\x4c\x46\x63\x4e\x4a\x48\x51\x57\x37\x5a\x63\x4a\x38\x6f\x69','\x57\x50\x2f\x63\x4e\x47\x69\x78\x76\x53\x6b\x35\x57\x35\x53','\x41\x4d\x52\x64\x53\x43\x6b\x77\x76\x38\x6b\x41\x57\x36\x48\x6c','\x6b\x53\x6f\x42\x57\x36\x61','\x57\x51\x6c\x64\x51\x4b\x6c\x64\x4f\x62\x4e\x64\x4e\x49\x78\x64\x52\x57','\x6d\x6d\x6f\x65\x57\x51\x78\x64\x48\x75\x56\x63\x55\x65\x70\x63\x4e\x57','\x57\x35\x76\x45\x57\x4f\x48\x37\x79\x4e\x75\x74\x7a\x47','\x71\x38\x6b\x52\x6b\x4a\x78\x64\x4c\x59\x56\x64\x4d\x43\x6f\x2f','\x57\x50\x58\x71\x57\x34\x35\x74\x68\x43\x6f\x4c\x57\x51\x58\x4d','\x70\x43\x6b\x71\x61\x38\x6f\x2f\x57\x37\x70\x63\x54\x62\x6c\x64\x55\x61','\x6e\x76\x4a\x63\x52\x6d\x6f\x32\x69\x71\x47\x4b\x7a\x57','\x57\x51\x64\x64\x52\x4b\x64\x63\x50\x30\x78\x64\x54\x57','\x57\x4f\x4a\x64\x47\x38\x6b\x71\x57\x50\x71','\x57\x37\x57\x2f\x57\x37\x68\x64\x4c\x53\x6f\x73\x66\x71\x38','\x67\x38\x6b\x44\x57\x50\x64\x64\x48\x53\x6f\x70\x78\x38\x6f\x53\x61\x57','\x57\x37\x79\x37\x6e\x43\x6b\x38\x44\x6d\x6b\x4d\x78\x6d\x6b\x78','\x44\x53\x6b\x46\x76\x4c\x53\x6a\x45\x6d\x6f\x77\x57\x36\x61','\x57\x50\x5a\x63\x4a\x48\x47\x74\x74\x43\x6b\x38','\x6c\x64\x52\x63\x4c\x53\x6f\x75\x73\x71','\x57\x50\x37\x64\x4f\x32\x48\x51\x57\x52\x47\x77\x57\x4f\x58\x41','\x6a\x6d\x6b\x77\x6f\x53\x6f\x55\x57\x35\x4f','\x65\x30\x74\x63\x4c\x64\x57\x56','\x57\x51\x68\x64\x52\x4c\x52\x63\x4f\x71','\x6d\x38\x6f\x68\x57\x36\x69','\x76\x6d\x6f\x38\x73\x74\x56\x64\x50\x71','\x57\x34\x52\x63\x4a\x43\x6f\x79\x57\x35\x7a\x65','\x41\x4b\x64\x64\x51\x49\x56\x64\x4b\x64\x68\x63\x50\x68\x52\x64\x4d\x6d\x6b\x50\x43\x57','\x75\x66\x64\x64\x4e\x53\x6b\x7a\x43\x43\x6f\x63\x57\x36\x4c\x6b','\x67\x72\x6c\x64\x54\x38\x6f\x33','\x62\x43\x6f\x63\x57\x50\x56\x64\x4a\x75\x4f','\x57\x35\x70\x64\x48\x43\x6f\x7a\x57\x34\x6a\x63\x72\x78\x4e\x64\x47\x57','\x6c\x38\x6f\x61\x57\x37\x34\x73\x43\x74\x2f\x64\x47\x71','\x6d\x58\x4c\x63\x57\x50\x4a\x63\x4d\x38\x6f\x42\x78\x65\x69','\x79\x38\x6b\x65\x66\x64\x46\x63\x4d\x47','\x65\x6d\x6b\x6a\x57\x4f\x66\x31\x57\x34\x71\x47\x67\x48\x65','\x57\x4f\x38\x4f\x57\x34\x44\x47\x79\x66\x71\x39\x57\x35\x61','\x57\x4f\x68\x63\x48\x58\x57\x68\x45\x47','\x61\x4e\x39\x2b\x57\x51\x69\x75\x62\x30\x65\x77','\x74\x38\x6f\x4f\x7a\x67\x4e\x63\x47\x47','\x45\x66\x65\x49\x62\x43\x6f\x41\x66\x48\x48\x4e','\x6c\x78\x74\x63\x51\x64\x57\x2f\x57\x51\x6d\x31\x43\x47','\x6c\x43\x6b\x6d\x6e\x43\x6f\x46\x57\x34\x71','\x57\x50\x38\x36\x57\x35\x78\x63\x4c\x66\x71','\x6e\x72\x54\x78\x57\x51\x4e\x63\x4a\x71','\x57\x37\x47\x46\x57\x36\x62\x76\x72\x5a\x47\x45\x57\x37\x75','\x68\x4b\x37\x63\x4a\x66\x4f\x30\x57\x51\x52\x64\x4c\x53\x6f\x79\x57\x37\x4a\x63\x4c\x38\x6b\x55\x57\x4f\x47\x73\x63\x71','\x57\x36\x46\x64\x54\x43\x6f\x7a','\x57\x36\x6a\x4e\x57\x37\x74\x64\x47\x6d\x6b\x73\x72\x57','\x6d\x65\x6c\x63\x52\x4a\x71\x39\x57\x51\x43\x43\x6f\x57','\x57\x50\x72\x42\x6b\x47','\x6a\x53\x6b\x72\x66\x38\x6f\x4a\x57\x36\x34','\x57\x34\x34\x34\x44\x65\x31\x77','\x57\x36\x56\x63\x56\x53\x6f\x4b\x57\x36\x62\x35\x42\x4c\x33\x64\x4f\x57','\x57\x4f\x2f\x63\x4b\x43\x6f\x32\x6e\x47','\x57\x52\x50\x59\x57\x35\x70\x63\x55\x6d\x6f\x70','\x72\x38\x6b\x2b\x69\x71\x68\x63\x4e\x63\x2f\x64\x4b\x57','\x57\x52\x38\x32\x70\x43\x6b\x67\x79\x57','\x66\x43\x6b\x45\x57\x50\x46\x64\x47\x6d\x6f\x44\x42\x53\x6f\x54\x75\x61','\x57\x51\x52\x63\x53\x78\x6d\x68\x57\x4f\x6d\x53\x57\x51\x46\x63\x4c\x61','\x57\x52\x64\x64\x51\x38\x6f\x6b\x57\x35\x31\x55\x57\x37\x4f','\x73\x6d\x6f\x62\x57\x52\x70\x64\x4a\x61','\x79\x72\x42\x64\x4b\x4a\x39\x6d','\x57\x50\x4e\x63\x48\x71\x69\x72\x76\x38\x6b\x47\x57\x50\x64\x64\x52\x71','\x57\x51\x7a\x43\x6c\x53\x6f\x4f\x57\x36\x46\x63\x4f\x67\x4c\x46','\x76\x65\x54\x2b\x6d\x4d\x4f\x32\x6f\x31\x4f','\x65\x6d\x6f\x32\x57\x4f\x4c\x4f\x57\x35\x69\x51\x75\x48\x65','\x57\x35\x65\x36\x57\x51\x46\x64\x48\x38\x6f\x2f\x44\x65\x6c\x63\x50\x61','\x65\x38\x6f\x39\x63\x43\x6b\x75\x57\x37\x31\x70\x6c\x62\x61','\x57\x37\x34\x54\x57\x37\x2f\x64\x4e\x38\x6b\x77\x71\x38\x6b\x7a\x6b\x47','\x57\x37\x64\x63\x52\x53\x6b\x44\x6a\x4e\x6d\x77','\x57\x36\x6e\x6b\x57\x50\x7a\x31\x7a\x33\x34','\x57\x51\x4a\x64\x4d\x67\x4e\x63\x4c\x68\x61','\x71\x4e\x7a\x77\x75\x43\x6f\x61\x66\x4b\x48\x58','\x72\x65\x44\x33\x6b\x63\x53\x33\x6c\x71','\x57\x36\x6c\x63\x50\x53\x6b\x66\x6f\x33\x4b\x6b\x41\x4d\x47','\x57\x36\x37\x64\x4a\x6d\x6f\x36\x57\x37\x2f\x63\x47\x71','\x57\x52\x4f\x37\x57\x51\x37\x63\x4c\x38\x6f\x45\x67\x53\x6b\x76\x6e\x47\x4a\x63\x50\x73\x54\x43','\x57\x34\x33\x64\x47\x4e\x50\x37\x57\x52\x39\x66','\x73\x65\x74\x63\x53\x62\x6d\x2b\x57\x51\x54\x62\x57\x35\x71','\x57\x36\x56\x64\x53\x6d\x6f\x69\x57\x50\x5a\x63\x52\x6d\x6f\x77\x46\x47\x38','\x68\x6d\x6b\x36\x57\x4f\x4c\x2b\x57\x50\x50\x4c','\x67\x78\x62\x5a\x57\x52\x71\x74\x44\x76\x43\x42','\x57\x50\x68\x63\x49\x72\x4f\x72\x78\x71','\x57\x50\x56\x63\x53\x4e\x75\x72\x57\x50\x35\x49\x57\x51\x46\x63\x49\x61','\x70\x48\x46\x63\x54\x68\x74\x63\x4a\x71\x56\x63\x50\x4e\x75','\x45\x30\x4a\x63\x54\x47','\x74\x43\x6b\x2b\x6e\x63\x46\x64\x4e\x4e\x64\x63\x4f\x61','\x6e\x43\x6f\x61\x57\x36\x79\x35\x42\x59\x4b','\x57\x51\x75\x31\x6a\x43\x6b\x52\x44\x61','\x57\x51\x4f\x56\x57\x34\x62\x6c\x42\x62\x61','\x57\x36\x39\x62\x57\x50\x31\x55\x43\x64\x4b\x78\x70\x71','\x57\x4f\x70\x63\x4d\x77\x57\x35\x57\x52\x71','\x57\x36\x6c\x63\x54\x43\x6b\x65\x6e\x57','\x57\x37\x48\x69\x57\x50\x35\x2f\x7a\x33\x35\x76\x46\x47','\x45\x58\x2f\x63\x4e\x38\x6f\x54\x46\x72\x7a\x66\x44\x61','\x6e\x38\x6b\x49\x57\x52\x42\x64\x52\x6d\x6f\x31','\x57\x35\x6a\x33\x57\x4f\x35\x44\x79\x31\x71\x56\x57\x35\x4b','\x7a\x65\x4e\x63\x4c\x53\x6b\x33\x57\x50\x68\x64\x4b\x33\x65\x6b','\x43\x6d\x6b\x6b\x7a\x5a\x65\x38\x66\x43\x6f\x55\x57\x34\x6d','\x63\x33\x46\x63\x4a\x48\x69\x69\x57\x4f\x6d\x37\x61\x71','\x57\x50\x5a\x63\x48\x53\x6f\x58\x70\x53\x6f\x69\x57\x34\x4c\x73\x57\x52\x57','\x63\x53\x6f\x47\x78\x43\x6b\x75\x57\x51\x4c\x76\x6b\x58\x65','\x57\x52\x70\x64\x51\x53\x6b\x70\x57\x36\x31\x58\x57\x37\x56\x64\x47\x33\x53','\x57\x4f\x75\x2b\x57\x36\x65','\x57\x4f\x4a\x63\x4a\x38\x6f\x32\x6f\x6d\x6f\x45','\x6d\x76\x2f\x63\x56\x5a\x65\x2b\x57\x51\x69\x6e\x46\x57','\x57\x36\x7a\x52\x57\x36\x34','\x57\x50\x46\x63\x48\x53\x6f\x58\x70\x6d\x6f\x70\x57\x37\x34','\x57\x4f\x4a\x64\x4e\x64\x6d\x56\x43\x38\x6f\x65\x57\x50\x2f\x64\x4b\x57','\x57\x36\x70\x64\x4b\x65\x4a\x63\x55\x66\x79','\x76\x38\x6b\x39\x6f\x4b\x79\x6c','\x43\x4e\x37\x64\x50\x6d\x6b\x4e\x74\x6d\x6b\x72\x57\x37\x4f\x79','\x57\x34\x4b\x54\x57\x52\x57','\x57\x50\x4e\x63\x50\x38\x6f\x58\x68\x53\x6f\x2b','\x45\x47\x56\x63\x53\x43\x6b\x46\x57\x51\x58\x7a\x73\x38\x6f\x77','\x6a\x43\x6f\x42\x57\x36\x4f\x39\x44\x4a\x2f\x64\x4a\x67\x69','\x61\x73\x76\x65\x57\x4f\x56\x63\x56\x61','\x57\x35\x56\x64\x48\x4e\x50\x4d\x57\x52\x47\x75\x57\x37\x58\x6c','\x6d\x67\x2f\x64\x54\x77\x50\x67\x64\x38\x6b\x52\x57\x51\x79','\x42\x53\x6f\x41\x57\x36\x47\x4a\x46\x33\x6d','\x66\x67\x54\x36\x57\x50\x30\x53','\x57\x51\x7a\x32\x6f\x6d\x6b\x4e\x45\x53\x6b\x57\x6f\x6d\x6f\x50','\x57\x51\x6d\x33\x6f\x6d\x6b\x36\x43\x6d\x6b\x32\x70\x43\x6f\x46','\x6e\x57\x33\x63\x52\x68\x56\x63\x4a\x72\x68\x63\x51\x47','\x46\x43\x6b\x77\x67\x65\x4f\x76\x62\x38\x6f\x71\x57\x36\x43','\x6e\x43\x6b\x75\x57\x37\x71\x49\x44\x4a\x70\x64\x4e\x67\x34','\x66\x38\x6b\x66\x79\x5a\x71','\x75\x6d\x6b\x4f\x78\x6d\x6f\x78\x57\x51\x5a\x64\x55\x58\x4e\x63\x47\x57','\x57\x37\x47\x6e\x57\x50\x31\x53\x45\x4e\x44\x6f\x41\x71','\x68\x38\x6b\x53\x57\x50\x2f\x64\x51\x43\x6f\x39','\x57\x50\x61\x79\x62\x43\x6b\x65\x76\x6d\x6b\x72\x44\x53\x6f\x42','\x57\x37\x43\x42\x57\x36\x4e\x63\x4b\x43\x6f\x67\x57\x37\x64\x63\x56\x48\x43','\x57\x50\x50\x44\x6f\x38\x6f\x2f\x57\x36\x33\x64\x52\x73\x71','\x70\x76\x4a\x63\x51\x6d\x6f\x30\x6d\x64\x34\x49\x7a\x57','\x57\x35\x56\x64\x48\x64\x54\x39\x57\x51\x39\x72\x57\x52\x76\x42','\x57\x36\x4e\x64\x51\x32\x33\x63\x54\x67\x30','\x66\x53\x6b\x6c\x44\x63\x76\x50\x42\x43\x6f\x6f\x57\x35\x34','\x57\x4f\x4b\x31\x45\x68\x4f\x64\x57\x37\x56\x64\x53\x63\x38','\x45\x38\x6b\x4b\x43\x4a\x52\x64\x48\x43\x6b\x5a\x57\x36\x2f\x63\x54\x71','\x57\x37\x68\x63\x4f\x53\x6b\x46\x6e\x32\x75\x37\x70\x33\x38','\x57\x36\x4f\x2b\x57\x34\x78\x64\x52\x53\x6f\x32','\x57\x34\x53\x58\x57\x36\x61','\x57\x37\x2f\x64\x4f\x43\x6f\x6b\x57\x37\x75\x4e\x57\x36\x33\x64\x4d\x64\x57','\x41\x68\x64\x64\x55\x53\x6b\x4e','\x68\x6d\x6b\x58\x57\x4f\x76\x30\x57\x34\x65\x50\x61\x68\x47','\x57\x52\x74\x64\x4c\x4e\x54\x56\x57\x34\x61','\x69\x43\x6f\x79\x6c\x38\x6b\x36\x57\x34\x50\x4a\x65\x63\x30','\x57\x51\x64\x64\x50\x65\x4b','\x57\x51\x78\x64\x50\x76\x52\x63\x50\x76\x2f\x64\x51\x57','\x6c\x6d\x6f\x50\x57\x51\x64\x64\x56\x4c\x34','\x76\x53\x6b\x43\x67\x76\x39\x67\x6f\x38\x6f\x6e\x57\x37\x75','\x57\x4f\x44\x4d\x69\x38\x6f\x6c\x57\x37\x61','\x78\x31\x4e\x64\x4a\x62\x31\x54\x57\x52\x2f\x63\x4b\x38\x6b\x62','\x65\x6d\x6b\x44\x57\x50\x64\x64\x48\x6d\x6f\x69\x41\x61','\x57\x37\x56\x64\x56\x43\x6f\x45\x57\x35\x46\x63\x4c\x53\x6f\x68\x41\x47','\x65\x32\x6e\x5a\x57\x52\x47\x75','\x45\x47\x70\x64\x56\x38\x6b\x46','\x57\x52\x4e\x64\x4f\x6d\x6f\x44\x57\x36\x66\x49\x57\x34\x68\x64\x4d\x64\x75','\x57\x50\x33\x64\x4d\x4d\x50\x37\x6d\x38\x6f\x30\x57\x36\x5a\x64\x50\x71','\x70\x30\x78\x63\x4f\x38\x6f\x69\x6a\x58\x71\x4c','\x57\x52\x64\x63\x50\x59\x65\x72\x57\x50\x4f\x54\x57\x51\x52\x63\x4a\x47','\x74\x53\x6b\x35\x66\x43\x6f\x69\x57\x4f\x47','\x73\x53\x6f\x48\x6a\x57','\x67\x6d\x6f\x47\x6b\x43\x6b\x71\x57\x36\x71','\x6b\x53\x6b\x72\x57\x50\x64\x64\x51\x43\x6f\x30','\x57\x35\x64\x64\x56\x38\x6f\x6d\x57\x34\x4a\x63\x52\x6d\x6f\x6a\x79\x72\x65','\x57\x36\x6c\x64\x55\x43\x6f\x6d\x57\x34\x2f\x63\x56\x6d\x6f\x43\x41\x57\x43','\x64\x53\x6f\x6e\x57\x36\x65\x52\x76\x71','\x57\x36\x42\x64\x51\x43\x6f\x45\x57\x37\x68\x63\x51\x6d\x6f\x77\x73\x61\x4f','\x57\x52\x53\x38\x6f\x6d\x6b\x50','\x78\x58\x4a\x64\x48\x57\x72\x53\x57\x37\x37\x63\x47\x61','\x46\x38\x6f\x52\x44\x68\x70\x64\x47\x38\x6b\x56\x57\x36\x56\x64\x55\x71','\x57\x4f\x4b\x31\x45\x67\x62\x67\x57\x52\x6d','\x65\x43\x6b\x44\x57\x4f\x33\x64\x4b\x6d\x6f\x44\x7a\x38\x6f\x38','\x57\x35\x65\x57\x42\x4c\x31\x55','\x57\x37\x64\x63\x56\x53\x6b\x42\x57\x34\x6e\x43\x73\x67\x52\x64\x48\x71','\x67\x38\x6b\x72\x57\x4f\x52\x63\x47\x38\x6f\x71\x43\x38\x6b\x30\x66\x47','\x57\x34\x53\x55\x71\x30\x6e\x6a','\x71\x43\x6f\x48\x43\x71\x5a\x64\x4a\x53\x6b\x59\x57\x36\x68\x63\x51\x71','\x6a\x73\x6c\x64\x52\x4a\x50\x6d\x57\x35\x6c\x63\x54\x6d\x6b\x38','\x57\x51\x37\x63\x50\x4e\x71\x72','\x70\x4b\x4a\x63\x52\x64\x65\x35','\x57\x34\x30\x35\x57\x52\x4b','\x57\x37\x31\x52\x57\x37\x33\x64\x49\x43\x6b\x68\x71\x38\x6b\x66','\x57\x36\x6e\x4e\x57\x37\x4c\x30\x6e\x53\x6f\x64\x57\x50\x6a\x63','\x57\x50\x74\x64\x49\x57\x61\x76\x76\x43\x6b\x39\x57\x35\x52\x63\x48\x47','\x6f\x61\x5a\x63\x4d\x38\x6f\x49\x57\x36\x37\x63\x4b\x31\x57\x2f','\x76\x43\x6f\x75\x77\x58\x42\x64\x4f\x57','\x57\x52\x42\x64\x4f\x43\x6f\x67\x57\x36\x58\x47\x57\x52\x37\x63\x4d\x74\x71','\x69\x65\x4a\x63\x4c\x71\x34\x65\x57\x50\x75\x43\x69\x61','\x66\x43\x6b\x75\x57\x50\x56\x64\x4b\x6d\x6b\x43\x6c\x43\x6b\x30\x68\x57','\x57\x51\x6a\x59\x57\x36\x47\x36\x6a\x38\x6f\x7a\x57\x50\x79\x77','\x6c\x62\x46\x63\x52\x68\x4e\x63\x4a\x49\x70\x63\x55\x33\x71','\x69\x43\x6f\x44\x57\x37\x6e\x54\x44\x49\x4e\x63\x4c\x77\x65','\x57\x4f\x74\x63\x4f\x48\x6a\x6f\x67\x43\x6f\x32\x57\x35\x70\x63\x48\x47','\x57\x37\x52\x63\x49\x58\x79\x75','\x57\x37\x74\x63\x4b\x38\x6f\x35\x57\x34\x5a\x63\x4c\x71\x6c\x63\x4c\x6d\x6b\x48','\x6c\x6d\x6f\x61\x57\x52\x2f\x64\x4e\x57\x37\x63\x51\x32\x4e\x63\x47\x61','\x57\x50\x66\x58\x57\x36\x4c\x4a\x70\x71','\x57\x50\x42\x64\x55\x58\x39\x55\x6d\x47','\x46\x4b\x56\x63\x54\x62\x62\x54\x57\x37\x6d\x61\x57\x35\x34','\x57\x36\x46\x63\x48\x43\x6b\x4d\x6e\x4e\x38','\x57\x4f\x4e\x64\x50\x38\x6f\x35\x57\x36\x44\x44','\x57\x36\x5a\x64\x4f\x4c\x33\x64\x4f\x65\x78\x64\x53\x66\x78\x64\x48\x57','\x45\x38\x6b\x66\x65\x30\x53','\x6e\x71\x39\x62\x57\x51\x6c\x63\x4a\x43\x6f\x32\x78\x65\x69','\x6e\x58\x6e\x43\x57\x52\x74\x63\x4a\x43\x6f\x42\x71\x65\x75','\x62\x68\x50\x53\x57\x51\x65\x62\x69\x75\x6d\x41','\x69\x38\x6b\x72\x57\x50\x4f','\x57\x37\x50\x69\x57\x4f\x50\x50\x45\x4e\x76\x41\x43\x71','\x57\x50\x4e\x63\x4a\x62\x47\x42\x73\x38\x6b\x58','\x62\x43\x6b\x78\x57\x4f\x56\x63\x47\x38\x6f\x58\x76\x43\x6f\x6b\x6a\x61','\x69\x77\x4e\x64\x52\x4e\x61\x73\x76\x6d\x6b\x52','\x73\x53\x6b\x2f\x6b\x4a\x2f\x63\x47\x59\x70\x64\x48\x43\x6b\x58','\x57\x37\x50\x54\x57\x35\x70\x64\x54\x6d\x6b\x50\x46\x6d\x6b\x63\x6b\x47','\x57\x34\x38\x35\x57\x51\x4a\x64\x4a\x38\x6f\x4c\x45\x47\x33\x63\x51\x71','\x57\x34\x47\x4c\x57\x50\x2f\x64\x4e\x6d\x6f\x4a\x43\x48\x53','\x75\x62\x52\x64\x47\x38\x6b\x54\x57\x4f\x30','\x70\x43\x6b\x71\x63\x38\x6f\x47\x57\x36\x56\x64\x55\x66\x2f\x64\x4f\x47','\x6b\x61\x56\x63\x4b\x43\x6f\x54\x46\x72\x4f\x67\x44\x57','\x57\x51\x69\x5a\x57\x4f\x57\x62\x63\x32\x47','\x63\x43\x6b\x45\x44\x74\x48\x79\x45\x6d\x6f\x73\x57\x35\x79','\x63\x78\x58\x55\x57\x50\x38\x73','\x57\x34\x4f\x53\x57\x36\x33\x64\x50\x38\x6f\x43\x73\x4c\x79','\x77\x75\x39\x38\x6e\x77\x4f\x2f\x6b\x30\x75','\x57\x51\x30\x35\x57\x4f\x57\x76\x63\x33\x6c\x64\x51\x53\x6b\x32','\x46\x72\x5a\x64\x49\x61\x66\x4d\x57\x36\x4a\x64\x48\x6d\x6b\x66','\x62\x57\x2f\x64\x54\x38\x6f\x30','\x70\x53\x6f\x57\x57\x35\x75\x56\x44\x61','\x57\x34\x5a\x64\x4b\x32\x35\x38\x57\x51\x39\x73','\x57\x37\x5a\x64\x53\x6d\x6f\x65\x57\x35\x2f\x63\x52\x61','\x57\x51\x50\x5a\x57\x35\x31\x4f\x69\x43\x6f\x71\x57\x4f\x4f','\x41\x43\x6b\x77\x67\x4b\x4f\x66\x6c\x6d\x6f\x61\x57\x37\x61','\x57\x52\x33\x63\x53\x77\x38\x72\x57\x50\x38\x44\x57\x52\x70\x63\x49\x57','\x57\x34\x6e\x78\x57\x34\x4e\x64\x53\x38\x6f\x67\x74\x6d\x6b\x45\x6f\x71','\x64\x6d\x6b\x44\x57\x4f\x5a\x64\x4b\x6d\x6f\x74\x42\x53\x6f\x34\x68\x61','\x57\x50\x34\x57\x57\x37\x74\x63\x4d\x71','\x68\x72\x64\x64\x53\x53\x6f\x4a\x63\x77\x4e\x64\x55\x43\x6f\x5a'];_0x589e=function(){return _0x553a75;};return _0x589e();}function _0x310a(_0xcd7417,_0x1cfe2f){_0xcd7417=_0xcd7417-(0x2025+0x10a1+-0x2f49);const _0x2b321a=_0x589e();let _0x3e8c60=_0x2b321a[_0xcd7417];if(_0x310a['\x50\x68\x6d\x42\x71\x7a']===undefined){var _0x1bc19a=function(_0x5230ec){const _0x378521='\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 _0x4fa8fb='',_0x23c8c2='',_0x142431=_0x4fa8fb+_0x1bc19a,_0x34e999=(''+function(){return 0x65*0x55+0x11c*0x1+-0x22a5;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x2*0x1154+-0x10f8+-0x1f7*0x9);for(let _0x373a13=-0x2*0x3f+0x2619+-0x259b,_0xe9965,_0x11ba75,_0x4914ff=0xf61+0x1673+-0x25d4;_0x11ba75=_0x5230ec['\x63\x68\x61\x72\x41\x74'](_0x4914ff++);~_0x11ba75&&(_0xe9965=_0x373a13%(0x22a7+-0x1143+-0x1160)?_0xe9965*(-0x7cf+0x206c+-0x185d)+_0x11ba75:_0x11ba75,_0x373a13++%(0x7b6+0x1e1b+-0x25cd))?_0x4fa8fb+=_0x34e999||_0x142431['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4914ff+(0xcb2+0x115*0x16+-0x2476))-(0x602*0x1+0x2*0x122c+-0x2a50)!==0x801*-0x1+0xaa9*-0x2+0x1*0x1d53?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1c4e+0x190d*0x1+0x11*0x40&_0xe9965>>(-(0x22c3+-0xffd*-0x1+-0x32be)*_0x373a13&-0x2558+0x2e7*0x1+0x2277)):_0x373a13:-0x3f5*-0x7+0x1ab1*0x1+-0x3664){_0x11ba75=_0x378521['\x69\x6e\x64\x65\x78\x4f\x66'](_0x11ba75);}for(let _0x3878b4=0x1717+0x6*-0x5ae+0xafd,_0x575715=_0x4fa8fb['\x6c\x65\x6e\x67\x74\x68'];_0x3878b4<_0x575715;_0x3878b4++){_0x23c8c2+='\x25'+('\x30\x30'+_0x4fa8fb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3878b4)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1b34+0x1d60+0x3884*-0x1))['\x73\x6c\x69\x63\x65'](-(-0xfc2+-0x252d*0x1+-0x1*-0x34f1));}return decodeURIComponent(_0x23c8c2);};const _0x109b6b=function(_0x8ebc2d,_0x17bbd4){let _0xcfc6cb=[],_0xfd39c9=0x4ab*0x4+-0x250*0x2+-0xe0c,_0x597a77,_0x735a77='';_0x8ebc2d=_0x1bc19a(_0x8ebc2d);let _0x4967b6;for(_0x4967b6=-0x1a08+0x1077+-0x4f*-0x1f;_0x4967b6<0x13*-0x1c4+0x22b7+-0x2b;_0x4967b6++){_0xcfc6cb[_0x4967b6]=_0x4967b6;}for(_0x4967b6=0x9df+0x5b4+0x3*-0x531;_0x4967b6<-0x7c3+-0x3*0xad8+0x155*0x1f;_0x4967b6++){_0xfd39c9=(_0xfd39c9+_0xcfc6cb[_0x4967b6]+_0x17bbd4['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4967b6%_0x17bbd4['\x6c\x65\x6e\x67\x74\x68']))%(-0x1b05*-0x1+-0x9d9+-0x8a*0x1e),_0x597a77=_0xcfc6cb[_0x4967b6],_0xcfc6cb[_0x4967b6]=_0xcfc6cb[_0xfd39c9],_0xcfc6cb[_0xfd39c9]=_0x597a77;}_0x4967b6=-0xb3*0x2d+0x1028+-0xf4f*-0x1,_0xfd39c9=-0x265b+0x1789+-0x1*-0xed2;for(let _0x59ae77=-0x43f*-0x7+0x80c+0x3*-0xc97;_0x59ae77<_0x8ebc2d['\x6c\x65\x6e\x67\x74\x68'];_0x59ae77++){_0x4967b6=(_0x4967b6+(-0xd*0x146+0x100f*-0x1+0x209e))%(-0x2*0x9a2+0xfee+0x456),_0xfd39c9=(_0xfd39c9+_0xcfc6cb[_0x4967b6])%(0x4e4*0x1+0x23cd+0x9*-0x469),_0x597a77=_0xcfc6cb[_0x4967b6],_0xcfc6cb[_0x4967b6]=_0xcfc6cb[_0xfd39c9],_0xcfc6cb[_0xfd39c9]=_0x597a77,_0x735a77+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x8ebc2d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x59ae77)^_0xcfc6cb[(_0xcfc6cb[_0x4967b6]+_0xcfc6cb[_0xfd39c9])%(-0x16ab*-0x1+0x2594+-0x3b3f)]);}return _0x735a77;};_0x310a['\x42\x70\x70\x65\x59\x58']=_0x109b6b,_0x310a['\x62\x6f\x75\x66\x56\x6f']={},_0x310a['\x50\x68\x6d\x42\x71\x7a']=!![];}const _0x5ee16e=_0x2b321a[-0x1*-0x56b+0xbe*0xd+-0xf11*0x1],_0x581a62=_0xcd7417+_0x5ee16e,_0x335878=_0x310a['\x62\x6f\x75\x66\x56\x6f'][_0x581a62];if(!_0x335878){if(_0x310a['\x49\x4e\x4b\x53\x5a\x51']===undefined){const _0x3fe9eb=function(_0x28b445){this['\x5a\x6b\x49\x54\x5a\x45']=_0x28b445,this['\x51\x6a\x6f\x58\x6d\x57']=[0x2195*0x1+-0x10b3+-0x10e1,0xed6+0x11c7+-0x209d,-0x29*0xd3+-0x4*0x427+0x2f7*0x11],this['\x79\x4b\x66\x4a\x71\x56']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x55\x50\x73\x69\x77\x49']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x53\x79\x4a\x52\x4f\x58']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x3fe9eb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x57\x45\x4f\x70\x62\x6f']=function(){const _0x5440b5=new RegExp(this['\x55\x50\x73\x69\x77\x49']+this['\x53\x79\x4a\x52\x4f\x58']),_0x116f93=_0x5440b5['\x74\x65\x73\x74'](this['\x79\x4b\x66\x4a\x71\x56']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x51\x6a\x6f\x58\x6d\x57'][0x1409+-0x1ea2+0x1*0xa9a]:--this['\x51\x6a\x6f\x58\x6d\x57'][0x19ce+0x1e3b+-0x3809];return this['\x54\x4d\x79\x61\x77\x70'](_0x116f93);},_0x3fe9eb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x54\x4d\x79\x61\x77\x70']=function(_0x1304cb){if(!Boolean(~_0x1304cb))return _0x1304cb;return this['\x77\x6f\x4b\x58\x41\x42'](this['\x5a\x6b\x49\x54\x5a\x45']);},_0x3fe9eb['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x77\x6f\x4b\x58\x41\x42']=function(_0x232e43){for(let _0x219b99=0x4f*-0x65+-0x16ee+0x1*0x3619,_0x4237bb=this['\x51\x6a\x6f\x58\x6d\x57']['\x6c\x65\x6e\x67\x74\x68'];_0x219b99<_0x4237bb;_0x219b99++){this['\x51\x6a\x6f\x58\x6d\x57']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x4237bb=this['\x51\x6a\x6f\x58\x6d\x57']['\x6c\x65\x6e\x67\x74\x68'];}return _0x232e43(this['\x51\x6a\x6f\x58\x6d\x57'][-0x1*0x103d+-0x3*0x9d5+0x2dbc]);},(''+function(){return-0x2*0x826+0xd*0x2fa+0x2*-0xb33;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x1747+-0x14f4+0x16*-0x1b)&&new _0x3fe9eb(_0x310a)['\x57\x45\x4f\x70\x62\x6f'](),_0x310a['\x49\x4e\x4b\x53\x5a\x51']=!![];}_0x3e8c60=_0x310a['\x42\x70\x70\x65\x59\x58'](_0x3e8c60,_0x1cfe2f),_0x310a['\x62\x6f\x75\x66\x56\x6f'][_0x581a62]=_0x3e8c60;}else _0x3e8c60=_0x335878;return _0x3e8c60;}const _0x571477=_0x310a;(function(_0x17a1c5,_0x3fc1ea){const _0x359038=_0x310a,_0x40e918=_0x17a1c5();while(!![]){try{const _0x5649a8=parseInt(_0x359038(0x430,'\x52\x25\x42\x57'))/(0x29b*0x2+-0x1855+-0x2*-0x990)*(parseInt(_0x359038(0x1f5,'\x51\x25\x36\x48'))/(0x1337+-0x14*-0x1d6+0x8b*-0x67))+parseInt(_0x359038(0x46c,'\x24\x6a\x29\x6f'))/(-0x1385*-0x1+-0x1*0x1337+-0x19*0x3)+-parseInt(_0x359038(0x345,'\x39\x5d\x36\x31'))/(-0x8*-0x12a+0x9*-0x365+0x1541)+-parseInt(_0x359038(0x27a,'\x7a\x59\x78\x52'))/(-0xc2e+-0x1*0x1646+0x2279)+-parseInt(_0x359038(0x239,'\x72\x35\x6b\x21'))/(-0xd8d+0x23fe+0x166b*-0x1)+parseInt(_0x359038(0x268,'\x75\x40\x33\x66'))/(-0x1c9*-0xb+0x1*-0xcb3+-0x3d*0x1d)+-parseInt(_0x359038(0x358,'\x50\x57\x66\x4b'))/(-0x47b+-0x8a*-0x35+-0x180f);if(_0x5649a8===_0x3fc1ea)break;else _0x40e918['push'](_0x40e918['shift']());}catch(_0x334a89){_0x40e918['push'](_0x40e918['shift']());}}}(_0x589e,-0xee6ad+-0x14*-0x46bd+0xafde4*0x2));const _0x567d75=(function(){let _0x4bc829=!![];return function(_0x45388c,_0x2436dc){const _0x1fc3f6=_0x4bc829?function(){const _0x54cf55=_0x310a;if(_0x2436dc){const _0x1b96e2=_0x2436dc[_0x54cf55(0x43f,'\x4d\x66\x41\x40')](_0x45388c,arguments);return _0x2436dc=null,_0x1b96e2;}}:function(){};return _0x4bc829=![],_0x1fc3f6;};}()),_0x1dc919=_0x567d75(this,function(){const _0x2103a6=_0x310a,_0x450cb9={};_0x450cb9[_0x2103a6(0x468,'\x55\x21\x53\x5d')]=_0x2103a6(0x1a0,'\x65\x59\x57\x5e')+_0x2103a6(0x337,'\x34\x76\x5b\x29');const _0x28d858=_0x450cb9;return _0x1dc919['\x74\x6f\x53\x74\x72\x69\x6e\x67']()['\x73\x65\x61\x72\x63\x68'](_0x28d858['\x47\x46\x55\x49\x4a'])[_0x2103a6(0x242,'\x65\x59\x57\x5e')]()[_0x2103a6(0x3f9,'\x24\x6a\x29\x6f')+_0x2103a6(0x1ba,'\x62\x77\x24\x71')](_0x1dc919)[_0x2103a6(0x28f,'\x52\x25\x42\x57')](_0x28d858[_0x2103a6(0x1c0,'\x69\x62\x23\x4b')]);});_0x1dc919();'use strict';const {execSync:_0x5a03e3}=require(_0x571477(0x1a8,'\x50\x6b\x34\x32')+_0x571477(0x465,'\x41\x61\x4e\x5e')),{getLastEventId:_0x1f238a}=require(_0x571477(0x1a9,'\x43\x24\x6b\x59')+'\x70\x2f\x61\x73\x73\x65\x74\x53'+_0x571477(0x421,'\x66\x28\x31\x25')),{buildGepPrompt:_0xff6d1d,buildReusePrompt:_0x308883,buildHubMatchedBlock:_0x18e300}=require(_0x571477(0x18c,'\x51\x25\x36\x48')+_0x571477(0x257,'\x50\x57\x66\x4b')),{logAssetCall:_0x122354,assetCostIndex:_0x6e6fdf}=require(_0x571477(0x1e1,'\x4e\x5d\x63\x28')+_0x571477(0x1c5,'\x25\x64\x23\x31')+_0x571477(0x322,'\x78\x72\x26\x31')),{estimateReuseTokensSaved:_0x5f10e3,applyModeSaving:_0x1fc6f7}=require(_0x571477(0x461,'\x50\x6b\x34\x32')+_0x571477(0x3a4,'\x40\x49\x37\x5b')+'\x61\x76\x69\x6e\x67\x73'),{readStateForSolidify:_0x5c04eb,writeStateForSolidify:_0x1c22c5}=require('\x2e\x2e\x2f\x2e\x2e\x2f\x67\x65'+_0x571477(0x42f,'\x2a\x70\x78\x4d')+'\x66\x79'),{clip:_0x1a5da9,writePromptArtifact:_0x5d1e52,renderSessionsSpawnCall:_0x3b5651}=require(_0x571477(0x1d9,'\x65\x59\x57\x5e')+_0x571477(0x349,'\x34\x76\x5b\x29')),{getEvolutionDir:_0x1a4660,getRepoRoot:_0x523e30}=require(_0x571477(0x48c,'\x40\x59\x59\x4e')+_0x571477(0x1d3,'\x38\x63\x5b\x75')),{tryExplore:_0x3e605f}=require(_0x571477(0x2ed,'\x59\x37\x73\x5a')+_0x571477(0x36f,'\x36\x31\x21\x65')+'\x65'),_0xad676b=(-0x1d83+0xc7f*-0x1+0x1d4*0x17)*(-0x3a9*0x1+0x9a1+0x2a*-0xc)*(0x1b*0x76+0x2055+0x3b5*-0xb);async function _0x267573(_0x2749e7){const _0x2ab0f0=_0x571477,_0x2dd4d6={'\x78\x44\x52\x62\x6e':function(_0x2a2df2,_0x5737c9){return _0x2a2df2+_0x5737c9;},'\x69\x6f\x71\x4e\x72':_0x2ab0f0(0x45c,'\x72\x35\x6b\x21')+_0x2ab0f0(0x241,'\x78\x72\x26\x31')+_0x2ab0f0(0x190,'\x73\x61\x6c\x50'),'\x56\x6e\x73\x6c\x45':_0x2ab0f0(0x3b9,'\x2a\x70\x78\x4d')+_0x2ab0f0(0x40b,'\x5e\x4f\x51\x64')+_0x2ab0f0(0x206,'\x65\x59\x57\x5e')+_0x2ab0f0(0x191,'\x75\x40\x33\x66')+'\x74\x69\x6f\x6e\x2e','\x70\x68\x58\x63\x50':function(_0x3f6917,_0x2d74c9){return _0x3f6917<_0x2d74c9;},'\x41\x49\x42\x55\x4e':function(_0x598c28,_0x568b85,_0x537120){return _0x598c28(_0x568b85,_0x537120);},'\x6e\x5a\x55\x43\x6b':function(_0x4b6337,_0x5a6a62){return _0x4b6337===_0x5a6a62;},'\x77\x41\x66\x4e\x5a':_0x2ab0f0(0x194,'\x25\x64\x23\x31'),'\x57\x65\x52\x50\x57':_0x2ab0f0(0x28a,'\x25\x64\x23\x31')+_0x2ab0f0(0x21f,'\x4f\x52\x51\x76')+'\x41\x44','\x55\x59\x76\x4c\x45':_0x2ab0f0(0x1f0,'\x51\x25\x36\x48'),'\x72\x78\x48\x68\x47':function(_0x21e7aa,_0x4b971f){return _0x21e7aa(_0x4b971f);},'\x44\x7a\x51\x52\x6c':function(_0x300b1d,_0x478776){return _0x300b1d||_0x478776;},'\x4f\x42\x72\x62\x77':'\x5b\x53\x6f\x6c\x69\x64\x69\x66'+_0x2ab0f0(0x1ec,'\x38\x42\x40\x43')+'\x46\x61\x69\x6c\x65\x64\x20\x74'+_0x2ab0f0(0x250,'\x59\x37\x73\x5a')+_0x2ab0f0(0x454,'\x23\x31\x51\x4f')+_0x2ab0f0(0x3a5,'\x40\x49\x37\x5b')+_0x2ab0f0(0x443,'\x51\x25\x36\x48'),'\x4f\x58\x6a\x47\x65':function(_0x5ee8a0){return _0x5ee8a0();},'\x61\x50\x57\x43\x48':function(_0x34f9a8,_0x5947d4,_0x1f697d){return _0x34f9a8(_0x5947d4,_0x1f697d);},'\x6f\x63\x63\x43\x75':_0x2ab0f0(0x49b,'\x76\x5a\x5e\x55'),'\x4b\x5a\x48\x4f\x49':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x47\x63\x48\x61\x64':function(_0x425ca1){return _0x425ca1();},'\x74\x78\x65\x4c\x4c':_0x2ab0f0(0x44b,'\x36\x31\x21\x65'),'\x6d\x43\x5a\x74\x75':_0x2ab0f0(0x404,'\x38\x42\x40\x43'),'\x50\x64\x73\x44\x73':function(_0x53913f,_0x5e29ae){return _0x53913f>_0x5e29ae;},'\x55\x74\x52\x67\x77':'\x20\x2e\x2e\x2e','\x76\x6b\x53\x63\x6c':function(_0x1f25b5,_0x55b5fd){return _0x1f25b5(_0x55b5fd);},'\x71\x42\x57\x64\x69':_0x2ab0f0(0x3a2,'\x67\x37\x75\x6e'),'\x62\x41\x79\x6d\x70':_0x2ab0f0(0x3df,'\x40\x59\x59\x4e'),'\x55\x6e\x5a\x59\x67':'\x66\x61\x6c\x73\x65','\x4d\x4e\x4c\x69\x6d':_0x2ab0f0(0x388,'\x41\x61\x4e\x5e')+'\x65','\x72\x65\x46\x56\x4b':'\x67\x65\x6e\x65\x72\x61\x74\x65'+'\x64','\x49\x64\x64\x61\x43':_0x2ab0f0(0x2f7,'\x34\x76\x5b\x29'),'\x51\x66\x4f\x59\x5a':_0x2ab0f0(0x2d8,'\x4f\x28\x4e\x5e'),'\x75\x54\x59\x4f\x57':function(_0x2da545,_0x3cc5ec){return _0x2da545-_0x3cc5ec;},'\x59\x4d\x6d\x4d\x58':function(_0x16f178,_0x2b6f48){return _0x16f178===_0x2b6f48;},'\x68\x50\x57\x5a\x6c':_0x2ab0f0(0x1b2,'\x69\x62\x23\x4b'),'\x6c\x54\x4b\x73\x4c':function(_0x185e0a,_0x342bd1){return _0x185e0a>=_0x342bd1;},'\x6e\x48\x73\x52\x70':'\x66\x41\x6d\x49\x77','\x56\x58\x4b\x69\x4d':_0x2ab0f0(0x249,'\x40\x49\x37\x5b')+_0x2ab0f0(0x320,'\x25\x64\x23\x31')+_0x2ab0f0(0x1c9,'\x74\x4e\x41\x57')+_0x2ab0f0(0x212,'\x2a\x70\x78\x4d')+_0x2ab0f0(0x26c,'\x36\x31\x21\x65')+_0x2ab0f0(0x313,'\x4f\x28\x4e\x5e')+_0x2ab0f0(0x3e4,'\x4f\x52\x51\x76')+_0x2ab0f0(0x428,'\x40\x49\x37\x5b')+_0x2ab0f0(0x27d,'\x52\x37\x72\x51')+_0x2ab0f0(0x48d,'\x50\x6b\x34\x32')+_0x2ab0f0(0x3a8,'\x67\x37\x75\x6e')+'\x66\x79','\x68\x5a\x56\x65\x48':_0x2ab0f0(0x497,'\x38\x42\x40\x43'),'\x4d\x5a\x61\x49\x55':function(_0x4ef3f8,_0x4bd5af,_0x5bebe7){return _0x4ef3f8(_0x4bd5af,_0x5bebe7);},'\x69\x67\x63\x66\x6f':_0x2ab0f0(0x2a9,'\x5e\x4f\x51\x64')+_0x2ab0f0(0x353,'\x77\x5b\x6c\x52')+_0x2ab0f0(0x2ad,'\x51\x25\x36\x48')+_0x2ab0f0(0x1a7,'\x24\x6a\x29\x6f')+_0x2ab0f0(0x3aa,'\x2a\x47\x21\x6e'),'\x77\x65\x69\x57\x61':function(_0x22fdb9,_0x2a8586){return _0x22fdb9*_0x2a8586;},'\x63\x59\x58\x64\x41':function(_0x4635d7){return _0x4635d7();},'\x56\x68\x56\x65\x5a':function(_0xebdfdc,_0x1deefc){return _0xebdfdc||_0x1deefc;},'\x64\x53\x47\x54\x41':function(_0x33141c,_0xacf632){return _0x33141c||_0xacf632;},'\x4f\x74\x4d\x75\x75':function(_0x3c2b7c,_0x20b34e){return _0x3c2b7c||_0x20b34e;},'\x5a\x47\x53\x54\x58':function(_0x34e265,_0x5f2a78){return _0x34e265===_0x5f2a78;},'\x69\x76\x4c\x45\x66':_0x2ab0f0(0x410,'\x50\x6b\x34\x32'),'\x49\x66\x51\x56\x41':function(_0x1e6397,_0xc6624a){return _0x1e6397(_0xc6624a);},'\x70\x53\x6c\x77\x58':_0x2ab0f0(0x1cc,'\x34\x76\x5b\x29'),'\x58\x62\x73\x41\x64':_0x2ab0f0(0x217,'\x51\x49\x38\x7a')+'\x66\x65\x72\x65\x6e\x63\x65','\x72\x59\x56\x47\x48':function(_0x37e66f,_0x322d06){return _0x37e66f(_0x322d06);},'\x72\x4f\x58\x71\x77':function(_0x3f81d9,_0x5d526a){return _0x3f81d9(_0x5d526a);},'\x76\x51\x41\x6e\x65':function(_0x5b6fd6,_0x15e032){return _0x5b6fd6==_0x15e032;},'\x64\x46\x62\x56\x68':function(_0x35d120,_0xbf1895){return _0x35d120!==_0xbf1895;},'\x6b\x4d\x68\x78\x50':function(_0x16a48d){return _0x16a48d();},'\x52\x4d\x43\x7a\x4e':function(_0x240074,_0x6c75b1){return _0x240074>_0x6c75b1;},'\x65\x6b\x6d\x67\x64':function(_0x2d0517,_0x16cb16){return _0x2d0517!=_0x16cb16;},'\x50\x72\x66\x76\x57':function(_0x11a4ef,_0x387f5b,_0x4afc46){return _0x11a4ef(_0x387f5b,_0x4afc46);},'\x50\x55\x4e\x6c\x56':_0x2ab0f0(0x42b,'\x73\x61\x6c\x50'),'\x4f\x4b\x67\x70\x42':_0x2ab0f0(0x368,'\x50\x57\x66\x4b'),'\x62\x6d\x42\x46\x75':'\x4d\x70\x6a\x61\x71','\x6a\x6f\x70\x6c\x72':function(_0x1c4764,_0x3f55a4){return _0x1c4764(_0x3f55a4);},'\x61\x55\x50\x62\x50':_0x2ab0f0(0x423,'\x66\x28\x31\x25'),'\x79\x72\x57\x52\x4e':_0x2ab0f0(0x1b7,'\x4f\x28\x4e\x5e'),'\x43\x65\x49\x69\x6a':_0x2ab0f0(0x2fb,'\x41\x61\x4e\x5e'),'\x51\x43\x46\x73\x79':function(_0x3444e4,_0x398c8a,_0x973831,_0x470ecb){return _0x3444e4(_0x398c8a,_0x973831,_0x470ecb);},'\x79\x48\x70\x4c\x56':function(_0x11c8ac,_0x48b6fe){return _0x11c8ac===_0x48b6fe;},'\x63\x54\x61\x4a\x41':_0x2ab0f0(0x3f2,'\x66\x28\x31\x25'),'\x66\x68\x54\x65\x6d':function(_0x46e500,_0x1a1b1c){return _0x46e500+_0x1a1b1c;},'\x41\x53\x55\x53\x4f':function(_0x4db1da,_0x59b85b){return _0x4db1da<_0x59b85b;},'\x6b\x7a\x56\x68\x46':function(_0x288571,_0x4d01d6){return _0x288571!==_0x4d01d6;},'\x73\x5a\x58\x68\x75':'\x51\x64\x65\x6e\x46','\x46\x4f\x45\x68\x4b':function(_0x328aac,_0x35dac4){return _0x328aac===_0x35dac4;},'\x69\x68\x4c\x6f\x42':_0x2ab0f0(0x46e,'\x52\x25\x42\x57'),'\x71\x45\x41\x42\x72':_0x2ab0f0(0x290,'\x39\x5d\x36\x31')+'\x5d\x20\x45\x72\x72\x6f\x72\x20'+_0x2ab0f0(0x471,'\x69\x62\x23\x4b')+_0x2ab0f0(0x37a,'\x74\x4e\x41\x57')+_0x2ab0f0(0x2ec,'\x40\x59\x59\x4e')+'\x20','\x6d\x4e\x6e\x62\x70':_0x2ab0f0(0x2ab,'\x39\x5d\x36\x31')+_0x2ab0f0(0x41d,'\x24\x6a\x29\x6f')+_0x2ab0f0(0x2e3,'\x69\x62\x23\x4b')+_0x2ab0f0(0x39e,'\x67\x37\x75\x6e')+_0x2ab0f0(0x1cb,'\x40\x59\x59\x4e')+_0x2ab0f0(0x3e3,'\x73\x61\x6c\x50')+_0x2ab0f0(0x48a,'\x6b\x6c\x50\x39')+_0x2ab0f0(0x452,'\x66\x28\x31\x25')+_0x2ab0f0(0x39a,'\x59\x37\x73\x5a')+_0x2ab0f0(0x2ac,'\x25\x64\x23\x31'),'\x53\x47\x6c\x61\x72':_0x2ab0f0(0x463,'\x36\x31\x21\x65')+_0x2ab0f0(0x18a,'\x43\x24\x6b\x59')+_0x2ab0f0(0x449,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x364,'\x52\x37\x72\x51')+_0x2ab0f0(0x2d7,'\x50\x6b\x34\x32')+_0x2ab0f0(0x2d2,'\x55\x21\x53\x5d')+_0x2ab0f0(0x439,'\x75\x40\x33\x66')+_0x2ab0f0(0x28d,'\x52\x25\x42\x57')+'\x72\x20\x63\x6f\x6e\x66\x69\x72'+_0x2ab0f0(0x258,'\x47\x41\x48\x7a'),'\x74\x4f\x6f\x7a\x59':_0x2ab0f0(0x40d,'\x50\x57\x66\x4b')+_0x2ab0f0(0x23a,'\x72\x54\x6d\x41')+'\x61\x62\x6c\x65\x64\x2e','\x56\x59\x6e\x67\x4e':function(_0x467ef0,_0x427e2a){return _0x467ef0+_0x427e2a;},'\x4a\x69\x77\x79\x78':'\x0a\x60\x60\x60','\x55\x61\x6f\x62\x43':_0x2ab0f0(0x2c4,'\x51\x25\x36\x48')+'\x64\x69\x72\x65\x63\x74\x6f\x72'+'\x79\x20\x6e\x6f\x74\x20\x66\x6f'+_0x2ab0f0(0x44c,'\x52\x25\x42\x57'),'\x52\x71\x75\x79\x6e':function(_0x20988e,_0xa3846){return _0x20988e===_0xa3846;},'\x43\x44\x64\x76\x72':function(_0x44f26b,_0x21ff37){return _0x44f26b(_0x21ff37);},'\x52\x4a\x6a\x57\x52':function(_0x29100d,_0x88c555){return _0x29100d>_0x88c555;},'\x71\x6c\x6a\x73\x43':function(_0x53f47b,_0x5a09c2){return _0x53f47b(_0x5a09c2);},'\x73\x50\x5a\x45\x41':function(_0x2a7b1a,_0x42cff3){return _0x2a7b1a(_0x42cff3);},'\x4d\x45\x4b\x63\x49':function(_0x483d5d,_0x2c562c){return _0x483d5d===_0x2c562c;},'\x56\x69\x6e\x4a\x48':_0x2ab0f0(0x328,'\x23\x6c\x62\x63'),'\x43\x67\x61\x6b\x57':_0x2ab0f0(0x279,'\x75\x40\x33\x66'),'\x50\x59\x6f\x45\x59':function(_0x1a0106){return _0x1a0106();},'\x46\x77\x69\x59\x71':function(_0x5f2ebb,_0x19c190){return _0x5f2ebb(_0x19c190);},'\x6e\x52\x4a\x53\x4d':function(_0x1721b2,_0x1df29d){return _0x1721b2(_0x1df29d);},'\x6a\x75\x54\x4d\x6a':_0x2ab0f0(0x2c3,'\x55\x21\x53\x5d')+_0x2ab0f0(0x3f6,'\x50\x32\x4a\x4f')+_0x2ab0f0(0x418,'\x7a\x59\x78\x52')+_0x2ab0f0(0x255,'\x69\x62\x23\x4b')+_0x2ab0f0(0x21a,'\x72\x54\x6d\x41')+_0x2ab0f0(0x265,'\x40\x59\x59\x4e')+_0x2ab0f0(0x1dd,'\x78\x72\x26\x31')+_0x2ab0f0(0x37f,'\x39\x5d\x36\x31')+'\x67\x20\x74\x68\x65\x20\x61\x74'+_0x2ab0f0(0x41f,'\x67\x37\x75\x6e')+_0x2ab0f0(0x2cb,'\x36\x31\x21\x65')+'\x63\x6f\x6c\x20\x70\x72\x6f\x6d'+_0x2ab0f0(0x432,'\x50\x6b\x34\x32'),'\x47\x4c\x6f\x61\x4e':_0x2ab0f0(0x481,'\x74\x4e\x41\x57')+_0x2ab0f0(0x459,'\x73\x61\x6c\x50')+_0x2ab0f0(0x2b8,'\x69\x62\x23\x4b')+'\x65\x29','\x4a\x48\x64\x79\x4d':'\x20\x20\x6e\x6f\x64\x65\x20\x69'+'\x6e\x64\x65\x78\x2e\x6a\x73\x20'+_0x2ab0f0(0x243,'\x2a\x70\x78\x4d'),'\x4c\x70\x70\x63\x45':'\x45\x78\x61\x6d\x70\x6c\x65\x3a','\x64\x4d\x41\x73\x63':'\x73\x65\x73\x73\x69\x6f\x6e\x73'+_0x2ab0f0(0x331,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x488,'\x74\x4e\x41\x57')+_0x2ab0f0(0x19f,'\x34\x76\x5b\x29')+_0x2ab0f0(0x2e9,'\x78\x72\x26\x31')+_0x2ab0f0(0x1c7,'\x36\x31\x21\x65')+_0x2ab0f0(0x1db,'\x34\x76\x5b\x29')+_0x2ab0f0(0x3cb,'\x40\x59\x59\x4e')+_0x2ab0f0(0x267,'\x2a\x47\x21\x6e')+_0x2ab0f0(0x3ed,'\x4f\x52\x51\x76')+'\x69\x6e\x22\x2c\x20\x63\x6c\x65'+'\x61\x6e\x75\x70\x3a\x20\x22\x64'+_0x2ab0f0(0x385,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x495,'\x23\x31\x51\x4f')+_0x2ab0f0(0x3dd,'\x78\x72\x26\x31')+_0x2ab0f0(0x492,'\x72\x54\x6d\x41')+'\x29','\x41\x4f\x6e\x59\x45':function(_0x1aadec,_0x490d2b){return _0x1aadec(_0x490d2b);},'\x53\x4c\x4d\x57\x71':_0x2ab0f0(0x48e,'\x59\x37\x73\x5a'),'\x67\x76\x52\x5a\x58':_0x2ab0f0(0x2eb,'\x4f\x52\x51\x76')+_0x2ab0f0(0x357,'\x72\x54\x6d\x41')+_0x2ab0f0(0x4ab,'\x65\x59\x57\x5e')+_0x2ab0f0(0x39d,'\x38\x42\x40\x43')+_0x2ab0f0(0x49a,'\x38\x63\x5b\x75')+_0x2ab0f0(0x187,'\x23\x6c\x62\x63')+'\x73\x73\x69\x6f\x6e\x73\x5f\x73'+_0x2ab0f0(0x46f,'\x34\x76\x5b\x29'),'\x70\x6b\x79\x53\x4d':function(_0x5ef8fb,_0x186851){return _0x5ef8fb!==_0x186851;},'\x47\x63\x68\x4c\x6a':'\x4a\x55\x4f\x52\x6d'},{bridgeEnabled:_0x22a881,recentMasterLog:_0x3bb35f,todayLog:_0x457ca4,memorySnippet:_0x3db20c,userSnippet:_0x1209bb,cycleNum:_0x1380b2,cycleId:_0xdb09ac,mutationDirective:_0x1e1fd5,healthReport:_0x5e11c1,fileList:_0x2ba189,reportingDirective:_0x4d7fce,moodStatus:_0x1867fb,memorySize:_0x36a00f,syncDirective:_0xbfa4c0,localStateSummary:_0xf73ae6,genes:_0x277c6d,capsules:_0x456019,recentEvents:_0x4df49e,signals:_0x3e33c9,skipHubCalls:_0x538d79,hubHit:_0x1af6cb,activeTask:_0x458ef7,hubLessons:_0x4bf1ef,heartbeatActionContext:_0x1471ca,sharedKnowledgeContext:_0x430279,externalCandidatesPreview:_0x18cab0,capabilityCandidatesPreview:_0xb09cc9,recentFailedCapsules:_0x50f945,selectedGene:_0x22c383,capsuleCandidates:_0xaea4e8,selector:_0x4772ce,selectedBy:_0x472731,selectedCapsuleId:_0x3717a4,strategyPolicy:_0x3a1148,personalitySelection:_0x45edb4,personalityState:_0x41f994,mutation:_0x184aa5,forceInnovation:_0x8b7830,IS_RANDOM_DRIFT:_0x4f2fe9,IS_REVIEW_MODE:_0xdf603,IS_DRY_RUN:_0x5ee0c6,AGENT_NAME:_0x9d5ac2,scanTime:_0x220222,initialUserPrompt:_0x270686,openPRHints:_0x1f8e20}=_0x2749e7,_0x5234d1=_0x2dd4d6[_0x2ab0f0(0x348,'\x72\x35\x6b\x21')](_0x523e30);try{const _0x4504a6='\x72\x75\x6e\x5f'+Date[_0x2ab0f0(0x19a,'\x4d\x66\x41\x40')](),_0x432d76=_0x1f238a();let _0x5d32b1=[],_0xd088fb=null;try{if(_0x2dd4d6[_0x2ab0f0(0x466,'\x7a\x59\x78\x52')](_0x2dd4d6[_0x2ab0f0(0x302,'\x40\x49\x37\x5b')],_0x2dd4d6[_0x2ab0f0(0x3b2,'\x51\x25\x36\x48')])){const _0x72bb69=_0x2dd4d6[_0x2ab0f0(0x1ac,'\x76\x5a\x5e\x55')](_0x5a03e3,_0x2ab0f0(0x3db,'\x52\x37\x72\x51')+_0x2ab0f0(0x3e9,'\x52\x37\x72\x51')+'\x74\x68\x65\x72\x73\x20\x2d\x2d'+_0x2ab0f0(0x394,'\x77\x5b\x6c\x52')+_0x2ab0f0(0x470,'\x39\x5d\x36\x31'),{'\x63\x77\x64':_0x5234d1,'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x2dd4d6[_0x2ab0f0(0x39f,'\x24\x6a\x29\x6f')],'\x73\x74\x64\x69\x6f':[_0x2dd4d6[_0x2ab0f0(0x31a,'\x34\x68\x4b\x43')],_0x2ab0f0(0x209,'\x62\x77\x24\x71'),_0x2dd4d6[_0x2ab0f0(0x24b,'\x47\x41\x48\x7a')]],'\x74\x69\x6d\x65\x6f\x75\x74':0xfa0,'\x77\x69\x6e\x64\x6f\x77\x73\x48\x69\x64\x65':!![],'\x6d\x61\x78\x42\x75\x66\x66\x65\x72':_0xad676b});_0x5d32b1=_0x2dd4d6[_0x2ab0f0(0x2a8,'\x2a\x70\x78\x4d')](String,_0x72bb69)[_0x2ab0f0(0x2ef,'\x6b\x6c\x50\x39')]('\x0a')[_0x2ab0f0(0x1b3,'\x23\x6c\x62\x63')](_0x3eaa04=>_0x3eaa04[_0x2ab0f0(0x347,'\x7a\x59\x78\x52')]())[_0x2ab0f0(0x1ed,'\x62\x77\x24\x71')](Boolean);}else{_0x4e95a1[_0x2ab0f0(0x380,'\x52\x25\x42\x57')](_0x2dd4d6[_0x2ab0f0(0x1d7,'\x38\x42\x40\x43')](_0x2dd4d6[_0x2ab0f0(0x363,'\x40\x49\x37\x5b')]+_0xf98028[_0x2ab0f0(0x324,'\x38\x63\x5b\x75')][_0x2ab0f0(0x35a,'\x36\x31\x21\x65')],_0x2dd4d6['\x56\x6e\x73\x6c\x45']));for(var _0x2e395a=-0x164c+0x48c+-0x20*-0x8e;_0x2dd4d6[_0x2ab0f0(0x33f,'\x69\x62\x23\x4b')](_0x2e395a,_0x6be35f[_0x2ab0f0(0x2f4,'\x50\x57\x66\x4b')][_0x2ab0f0(0x396,'\x34\x68\x4b\x43')]);_0x2e395a++){!_0x9a2da4['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x3bbc5a[_0x2ab0f0(0x219,'\x52\x37\x72\x51')][_0x2e395a])&&_0x78ee81[_0x2ab0f0(0x1e4,'\x4f\x52\x51\x76')](_0x3dd3da[_0x2ab0f0(0x25a,'\x45\x56\x5e\x4b')][_0x2e395a]);}}}catch(_0x381c8e){console[_0x2ab0f0(0x417,'\x34\x30\x5e\x33')](_0x2dd4d6['\x4f\x42\x72\x62\x77'],_0x381c8e&&_0x381c8e[_0x2ab0f0(0x2e1,'\x75\x40\x33\x66')]||_0x381c8e);}try{const _0x28c5d8=_0x5a03e3(_0x2dd4d6[_0x2ab0f0(0x17f,'\x23\x31\x51\x4f')],{'\x63\x77\x64':_0x5234d1,'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x2dd4d6[_0x2ab0f0(0x1d6,'\x39\x5d\x36\x31')],'\x73\x74\x64\x69\x6f':[_0x2dd4d6[_0x2ab0f0(0x1c4,'\x52\x25\x42\x57')],_0x2ab0f0(0x41c,'\x69\x62\x23\x4b'),_0x2dd4d6[_0x2ab0f0(0x4a2,'\x66\x28\x31\x25')]],'\x74\x69\x6d\x65\x6f\x75\x74':0xfa0,'\x77\x69\x6e\x64\x6f\x77\x73\x48\x69\x64\x65':!![],'\x6d\x61\x78\x42\x75\x66\x66\x65\x72':_0xad676b});_0xd088fb=_0x2dd4d6[_0x2ab0f0(0x355,'\x34\x30\x5e\x33')](String,_0x28c5d8||'')[_0x2ab0f0(0x303,'\x5e\x4f\x51\x64')]()||null;}catch(_0x465127){console[_0x2ab0f0(0x1f6,'\x51\x49\x38\x7a')](_0x2dd4d6[_0x2ab0f0(0x344,'\x34\x76\x5b\x29')],_0x465127&&_0x465127[_0x2ab0f0(0x422,'\x66\x28\x31\x25')]||_0x465127);}const _0x40c675=_0x3a1148&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x2dd4d6[_0x2ab0f0(0x2e7,'\x7a\x59\x78\x52')](Number,_0x3a1148[_0x2ab0f0(0x350,'\x23\x31\x51\x4f')+_0x2ab0f0(0x3d3,'\x74\x4e\x41\x57')+'\x6c\x65\x73']))?_0x2dd4d6['\x72\x78\x48\x68\x47'](Number,_0x3a1148[_0x2ab0f0(0x296,'\x61\x5b\x4b\x4d')+_0x2ab0f0(0x1f2,'\x77\x5b\x6c\x52')+'\x6c\x65\x73']):_0x22c383&&_0x22c383[_0x2ab0f0(0x48b,'\x45\x56\x5e\x4b')+_0x2ab0f0(0x27c,'\x72\x54\x6d\x41')]&&Number[_0x2ab0f0(0x2ca,'\x52\x37\x72\x51')](_0x2dd4d6[_0x2ab0f0(0x308,'\x31\x5e\x24\x32')](Number,_0x22c383[_0x2ab0f0(0x478,'\x75\x40\x33\x66')+_0x2ab0f0(0x442,'\x41\x61\x4e\x5e')]['\x6d\x61\x78\x5f\x66\x69\x6c\x65'+'\x73']))?_0x2dd4d6[_0x2ab0f0(0x2ff,'\x34\x30\x5e\x33')](Number,_0x22c383[_0x2ab0f0(0x40c,'\x61\x5b\x4b\x4d')+_0x2ab0f0(0x2aa,'\x24\x6a\x29\x6f')][_0x2ab0f0(0x202,'\x75\x40\x33\x66')+'\x73']):0x4a*-0x1f+-0xd*0x177+0x2b*0xa7,_0x567345={'\x66\x69\x6c\x65\x73':Number[_0x2ab0f0(0x25d,'\x55\x21\x53\x5d')](_0x40c675)&&_0x2dd4d6['\x50\x64\x73\x44\x73'](_0x40c675,0x169*-0x16+0x1217+0x2b*0x4d)?_0x40c675:-0xa*-0x36d+-0x56b+-0x1cd7,'\x6c\x69\x6e\x65\x73':Number[_0x2ab0f0(0x2a2,'\x72\x35\x6b\x21')](_0x40c675)&&_0x40c675>0x142c+-0xae2+0x3a*-0x29?Math[_0x2ab0f0(0x35d,'\x69\x62\x23\x4b')](_0x2dd4d6[_0x2ab0f0(0x3cc,'\x2a\x47\x21\x6e')](_0x40c675,-0x191d+0x1*-0x70c+-0x11*-0x1e9)):-0x966+-0x51c*-0x4+0x1*-0xb0a},_0x3b8153=_0x2dd4d6[_0x2ab0f0(0x2e5,'\x69\x62\x23\x4b')](_0x5c04eb);_0x3b8153[_0x2ab0f0(0x1c6,'\x51\x49\x38\x7a')]={'\x72\x75\x6e\x5f\x69\x64':_0x4504a6,'\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':new Date()[_0x2ab0f0(0x3e8,'\x77\x5b\x6c\x52')+_0x2ab0f0(0x30f,'\x47\x41\x48\x7a')](),'\x70\x61\x72\x65\x6e\x74\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x432d76||null,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x67\x65\x6e\x65\x5f\x69\x64':_0x22c383&&_0x22c383['\x69\x64']?_0x22c383['\x69\x64']:null,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x63\x61\x70\x73\x75\x6c\x65\x5f\x69\x64':_0x3717a4,'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x2dd4d6[_0x2ab0f0(0x3f5,'\x2a\x70\x78\x4d')](_0x4772ce,null),'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x2ab0f0(0x188,'\x50\x57\x66\x4b')](_0x3e33c9)?_0x3e33c9:[],'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x2dd4d6[_0x2ab0f0(0x372,'\x50\x32\x4a\x4f')](_0x184aa5,null),'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x69\x64':_0x184aa5&&_0x184aa5['\x69\x64']?_0x184aa5['\x69\x64']:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x73\x74\x61\x74\x65':_0x2dd4d6[_0x2ab0f0(0x269,'\x5e\x4f\x51\x64')](_0x41f994,null),'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x65\x79':_0x45edb4&&_0x45edb4[_0x2ab0f0(0x1b9,'\x34\x76\x5b\x29')+_0x2ab0f0(0x34a,'\x67\x37\x75\x6e')]?_0x45edb4[_0x2ab0f0(0x433,'\x66\x28\x31\x25')+_0x2ab0f0(0x293,'\x52\x25\x42\x57')]:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x6e\x6f\x77\x6e':!!(_0x45edb4&&_0x45edb4['\x70\x65\x72\x73\x6f\x6e\x61\x6c'+_0x2ab0f0(0x41b,'\x50\x57\x66\x4b')+'\x6e']),'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6d\x75\x74\x61\x74\x69\x6f\x6e\x73':_0x45edb4&&Array[_0x2ab0f0(0x1a6,'\x62\x77\x24\x71')](_0x45edb4[_0x2ab0f0(0x433,'\x66\x28\x31\x25')+_0x2ab0f0(0x1ab,'\x72\x35\x6b\x21')+_0x2ab0f0(0x29d,'\x41\x61\x4e\x5e')])?_0x45edb4[_0x2ab0f0(0x416,'\x52\x37\x72\x51')+_0x2ab0f0(0x2c6,'\x7a\x59\x78\x52')+'\x74\x69\x6f\x6e\x73']:[],'\x64\x72\x69\x66\x74':!!_0x4f2fe9,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0x472731,'\x73\x6f\x75\x72\x63\x65\x5f\x74\x79\x70\x65':_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x395,'\x36\x31\x21\x65')]?_0x2dd4d6[_0x2ab0f0(0x45f,'\x7a\x59\x78\x52')](_0x1af6cb['\x6d\x6f\x64\x65'],_0x2ab0f0(0x44d,'\x61\x5b\x4b\x4d'))?_0x2dd4d6['\x69\x76\x4c\x45\x66']:_0x2ab0f0(0x47e,'\x7a\x59\x78\x52')+'\x65':_0x2ab0f0(0x1ad,'\x59\x37\x73\x5a')+'\x64','\x72\x65\x75\x73\x65\x64\x5f\x61\x73\x73\x65\x74\x5f\x69\x64':_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x359,'\x74\x4e\x41\x57')]?_0x1af6cb[_0x2ab0f0(0x1d2,'\x72\x35\x6b\x21')]||null:null,'\x72\x65\x75\x73\x65\x64\x5f\x73\x6f\x75\x72\x63\x65\x5f\x6e\x6f\x64\x65':_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x2ee,'\x73\x61\x6c\x50')]?_0x1af6cb['\x73\x6f\x75\x72\x63\x65\x5f\x6e'+_0x2ab0f0(0x366,'\x2a\x70\x78\x4d')]||null:null,'\x72\x65\x75\x73\x65\x64\x5f\x63\x68\x61\x69\x6e\x5f\x69\x64':_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x1b1,'\x23\x6c\x62\x63')]?_0x1af6cb['\x63\x68\x61\x69\x6e\x5f\x69\x64']||null:null,'\x62\x61\x73\x65\x6c\x69\x6e\x65\x5f\x75\x6e\x74\x72\x61\x63\x6b\x65\x64':_0x5d32b1,'\x62\x61\x73\x65\x6c\x69\x6e\x65\x5f\x67\x69\x74\x5f\x68\x65\x61\x64':_0xd088fb,'\x62\x6c\x61\x73\x74\x5f\x72\x61\x64\x69\x75\x73\x5f\x65\x73\x74\x69\x6d\x61\x74\x65':_0x567345,'\x73\x74\x72\x61\x74\x65\x67\x79\x5f\x70\x6f\x6c\x69\x63\x79':_0x3a1148,'\x61\x63\x74\x69\x76\x65\x5f\x74\x61\x73\x6b\x5f\x69\x64':_0x458ef7?_0x458ef7['\x69\x64']||_0x458ef7[_0x2ab0f0(0x2a7,'\x40\x59\x59\x4e')]||null:null,'\x61\x63\x74\x69\x76\x65\x5f\x74\x61\x73\x6b\x5f\x74\x69\x74\x6c\x65':_0x458ef7?_0x458ef7[_0x2ab0f0(0x437,'\x51\x25\x36\x48')]||null:null,'\x77\x6f\x72\x6b\x65\x72\x5f\x61\x73\x73\x69\x67\x6e\x6d\x65\x6e\x74\x5f\x69\x64':_0x458ef7?_0x458ef7[_0x2ab0f0(0x22b,'\x66\x28\x31\x25')+_0x2ab0f0(0x286,'\x52\x37\x72\x51')+_0x2ab0f0(0x18b,'\x50\x32\x4a\x4f')]||null:null,'\x77\x6f\x72\x6b\x65\x72\x5f\x70\x65\x6e\x64\x69\x6e\x67':_0x458ef7?_0x458ef7['\x5f\x77\x6f\x72\x6b\x65\x72\x5f'+'\x70\x65\x6e\x64\x69\x6e\x67']||![]:![],'\x63\x6f\x6d\x6d\x69\x74\x6d\x65\x6e\x74\x5f\x64\x65\x61\x64\x6c\x69\x6e\x65':_0x458ef7?_0x458ef7[_0x2ab0f0(0x2c0,'\x7a\x59\x78\x52')+_0x2ab0f0(0x218,'\x6b\x6c\x50\x39')+_0x2ab0f0(0x4ad,'\x34\x30\x5e\x33')]||null:null,'\x61\x70\x70\x6c\x69\x65\x64\x5f\x6c\x65\x73\x73\x6f\x6e\x73':_0x4bf1ef[_0x2ab0f0(0x1da,'\x72\x54\x6d\x41')](function(_0x337505){const _0x5744a6=_0x2ab0f0;if(_0x2dd4d6[_0x5744a6(0x195,'\x50\x6b\x34\x32')](_0x2dd4d6[_0x5744a6(0x33d,'\x23\x6c\x62\x63')],_0x5744a6(0x311,'\x73\x61\x6c\x50')))_0x26d5e5=_0x2dd4d6[_0x5744a6(0x21b,'\x43\x24\x6b\x59')](_0x4bdef4,_0x6186a3,_0x4b35be[_0x5744a6(0x440,'\x50\x32\x4a\x4f')]),_0x352d8b=_0x5744a6(0x3d1,'\x74\x4e\x41\x57');else return _0x337505[_0x5744a6(0x2fc,'\x72\x54\x6d\x41')+'\x64'];})[_0x2ab0f0(0x370,'\x76\x5a\x5e\x55')](Boolean),'\x68\x75\x62\x5f\x6c\x65\x73\x73\x6f\x6e\x73':_0x4bf1ef,'\x63\x79\x63\x6c\x65\x49\x64':_0x1380b2,'\x69\x6e\x69\x74\x69\x61\x6c\x5f\x75\x73\x65\x72\x5f\x70\x72\x6f\x6d\x70\x74':_0x270686},_0x2dd4d6[_0x2ab0f0(0x22f,'\x74\x4e\x41\x57')](_0x1c22c5,_0x3b8153);if(_0x1af6cb&&_0x1af6cb['\x68\x69\x74']){if(_0x2dd4d6[_0x2ab0f0(0x386,'\x40\x59\x59\x4e')](_0x2dd4d6['\x70\x53\x6c\x77\x58'],_0x2ab0f0(0x456,'\x43\x24\x6b\x59'))){const _0xe663ba=_0x2dd4d6[_0x2ab0f0(0x1e8,'\x50\x6b\x34\x32')](_0x1af6cb['\x6d\x6f\x64\x65'],_0x2dd4d6[_0x2ab0f0(0x1ff,'\x6b\x6c\x50\x39')])?_0x2ab0f0(0x43c,'\x50\x57\x66\x4b')+_0x2ab0f0(0x342,'\x67\x37\x75\x6e'):_0x2dd4d6[_0x2ab0f0(0x4a4,'\x34\x76\x5b\x29')];let _0x4aeb5c=null,_0x1dd66e=null;try{const _0x33c3c6=_0x1af6cb[_0x2ab0f0(0x210,'\x67\x37\x75\x6e')]||{},_0x5862a1=_0x33c3c6[_0x2ab0f0(0x4a3,'\x7a\x59\x78\x52')+_0x2ab0f0(0x2e6,'\x50\x6b\x34\x32')+'\x73']||_0x33c3c6[_0x2ab0f0(0x3d5,'\x50\x57\x66\x4b')]&&_0x33c3c6[_0x2ab0f0(0x1b8,'\x45\x56\x5e\x4b')][_0x2ab0f0(0x35b,'\x77\x5b\x6c\x52')+'\x6f\x6e\x5f\x74\x6f\x6b\x65\x6e'+'\x73']||null;let _0x228246=_0x5862a1&&_0x2dd4d6[_0x2ab0f0(0x1cf,'\x34\x76\x5b\x29')](Number,_0x5862a1[_0x2ab0f0(0x3eb,'\x39\x5d\x36\x31')+_0x2ab0f0(0x49c,'\x50\x32\x4a\x4f')])>-0x2164+0x11f2+-0xf72*-0x1?_0x2dd4d6['\x72\x4f\x58\x71\x77'](Number,_0x5862a1[_0x2ab0f0(0x201,'\x40\x59\x59\x4e')+_0x2ab0f0(0x2fd,'\x65\x59\x57\x5e')]):null;if(_0x2dd4d6[_0x2ab0f0(0x228,'\x51\x25\x36\x48')](_0x228246,null)&&_0x1af6cb['\x61\x73\x73\x65\x74\x5f\x69\x64']){if(_0x2dd4d6[_0x2ab0f0(0x315,'\x51\x49\x38\x7a')](_0x2ab0f0(0x23e,'\x6b\x6c\x50\x39'),_0x2ab0f0(0x216,'\x59\x37\x73\x5a')))_0x4c5cb0=null,_0x17e357=null;else{let _0x1ef27d={};try{_0x1ef27d=(_0x2dd4d6[_0x2ab0f0(0x1f9,'\x25\x64\x23\x31')](typeof _0x6e6fdf,_0x2ab0f0(0x211,'\x43\x24\x6b\x59'))?_0x2dd4d6['\x6b\x4d\x68\x78\x50'](_0x6e6fdf):null)||{};}catch(_0x57932a){_0x1ef27d={};}if(_0x2dd4d6[_0x2ab0f0(0x473,'\x69\x62\x23\x4b')](_0x2dd4d6[_0x2ab0f0(0x1a1,'\x61\x5b\x4b\x4d')](Number,_0x1ef27d[_0x1af6cb[_0x2ab0f0(0x31b,'\x75\x40\x33\x66')]]),0x179c+0xcc6+-0x2462))_0x228246=Number(_0x1ef27d[_0x1af6cb[_0x2ab0f0(0x3f8,'\x24\x6a\x29\x6f')]]);}}if(_0x2dd4d6[_0x2ab0f0(0x472,'\x36\x31\x21\x65')](_0x228246,null))_0x4aeb5c=_0x2dd4d6[_0x2ab0f0(0x278,'\x23\x6c\x62\x63')](_0x1fc6f7,_0x228246,_0x1af6cb['\x6d\x6f\x64\x65']),_0x1dd66e=_0x2dd4d6[_0x2ab0f0(0x2c9,'\x40\x49\x37\x5b')];else{if(_0x2dd4d6[_0x2ab0f0(0x43a,'\x59\x37\x73\x5a')]!==_0x2dd4d6[_0x2ab0f0(0x4a1,'\x4f\x28\x4e\x5e')]){const _0x31fd53=_0x2dd4d6[_0x2ab0f0(0x376,'\x74\x4e\x41\x57')](_0x5f10e3,_0x33c3c6,_0x1af6cb[_0x2ab0f0(0x32a,'\x62\x77\x24\x71')]);_0x4aeb5c=_0x31fd53[_0x2ab0f0(0x181,'\x45\x56\x5e\x4b')+_0x2ab0f0(0x3f7,'\x4d\x66\x41\x40')],_0x1dd66e=_0x31fd53[_0x2ab0f0(0x398,'\x51\x25\x36\x48')];}else{const _0x34b12a=_0x12d3c2(_0x2dd4d6[_0x2ab0f0(0x221,'\x34\x76\x5b\x29')],{'\x63\x77\x64':_0x3f2edb,'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x2dd4d6['\x55\x59\x76\x4c\x45'],'\x73\x74\x64\x69\x6f':[_0x2ab0f0(0x371,'\x41\x61\x4e\x5e'),'\x70\x69\x70\x65',_0x2ab0f0(0x3fd,'\x4f\x52\x51\x76')],'\x74\x69\x6d\x65\x6f\x75\x74':0xfa0,'\x77\x69\x6e\x64\x6f\x77\x73\x48\x69\x64\x65':!![],'\x6d\x61\x78\x42\x75\x66\x66\x65\x72':_0x4cbe55});_0x23470f=_0x2dd4d6[_0x2ab0f0(0x2a0,'\x51\x49\x38\x7a')](_0x5d217f,_0x2dd4d6[_0x2ab0f0(0x262,'\x4e\x5d\x63\x28')](_0x34b12a,''))[_0x2ab0f0(0x360,'\x34\x68\x4b\x43')]()||null;}}}catch(_0x1c68a8){_0x4aeb5c=null,_0x1dd66e=null;}const _0x16304b={};_0x16304b[_0x2ab0f0(0x3ef,'\x55\x21\x53\x5d')+'\x5f\x67\x65\x6e\x65\x5f\x69\x64']=_0x22c383&&_0x22c383['\x69\x64']?_0x22c383['\x69\x64']:null,_0x16304b[_0x2ab0f0(0x3c5,'\x74\x4e\x41\x57')]=_0x458ef7?_0x458ef7['\x69\x64']||_0x458ef7['\x74\x61\x73\x6b\x5f\x69\x64']||null:null,_0x2dd4d6[_0x2ab0f0(0x3e0,'\x77\x5b\x6c\x52')](_0x122354,{'\x72\x75\x6e\x5f\x69\x64':_0x4504a6,'\x61\x63\x74\x69\x6f\x6e':_0xe663ba,'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x1af6cb[_0x2ab0f0(0x1f8,'\x51\x49\x38\x7a')]||null,'\x61\x73\x73\x65\x74\x5f\x74\x79\x70\x65':_0x1af6cb[_0x2ab0f0(0x1cd,'\x31\x5e\x24\x32')]&&_0x1af6cb[_0x2ab0f0(0x30d,'\x69\x62\x23\x4b')][_0x2ab0f0(0x43e,'\x36\x31\x21\x65')]?_0x1af6cb[_0x2ab0f0(0x323,'\x75\x40\x33\x66')][_0x2ab0f0(0x2b4,'\x38\x42\x40\x43')]:null,'\x73\x6f\x75\x72\x63\x65\x5f\x6e\x6f\x64\x65\x5f\x69\x64':_0x1af6cb[_0x2ab0f0(0x45b,'\x67\x37\x75\x6e')+'\x6f\x64\x65\x5f\x69\x64']||null,'\x63\x68\x61\x69\x6e\x5f\x69\x64':_0x1af6cb[_0x2ab0f0(0x2ae,'\x40\x49\x37\x5b')]||null,'\x73\x63\x6f\x72\x65':_0x1af6cb[_0x2ab0f0(0x4a8,'\x6b\x6c\x50\x39')]||null,'\x6d\x6f\x64\x65':_0x1af6cb[_0x2ab0f0(0x20c,'\x65\x59\x57\x5e')],'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x2ab0f0(0x18d,'\x45\x56\x5e\x4b')](_0x3e33c9)?_0x3e33c9:[],'\x74\x6f\x6b\x65\x6e\x73\x5f\x73\x61\x76\x65\x64':_0x4aeb5c,'\x74\x6f\x6b\x65\x6e\x73\x5f\x73\x61\x76\x65\x64\x5f\x62\x61\x73\x69\x73':_0x1dd66e,'\x65\x78\x74\x72\x61':_0x16304b});}else _0x2627f6[_0x2ab0f0(0x1ce,'\x40\x49\x37\x5b')](_0x2dd4d6[_0x2ab0f0(0x1e6,'\x65\x59\x57\x5e')],_0x574213&&_0x6d254a[_0x2ab0f0(0x2c8,'\x78\x72\x26\x31')]||_0x1d6e25);}}catch(_0x5bc0c2){if('\x4e\x71\x58\x63\x53'!==_0x2dd4d6[_0x2ab0f0(0x233,'\x47\x41\x48\x7a')])console[_0x2ab0f0(0x2b9,'\x52\x25\x42\x57')]('\x5b\x53\x6f\x6c\x69\x64\x69\x66'+_0x2ab0f0(0x491,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x34e,'\x72\x54\x6d\x41')+_0x2ab0f0(0x37b,'\x45\x56\x5e\x4b')+_0x5bc0c2[_0x2ab0f0(0x3d8,'\x52\x37\x72\x51')]);else{const _0x156c6c={'\x48\x79\x66\x66\x4f':function(_0x4c46b1,_0x9e8c8e){const _0x16be1e=_0x2ab0f0;return _0x2dd4d6[_0x16be1e(0x40f,'\x67\x37\x75\x6e')](_0x4c46b1,_0x9e8c8e);}};if(!_0x10786b||_0x2dd4d6[_0x2ab0f0(0x200,'\x38\x63\x5b\x75')](_0xb46923[_0x2ab0f0(0x2be,'\x72\x35\x6b\x21')],-0x237f+-0x1*0x1999+0x3d18))return _0x2ab0f0(0x252,'\x47\x41\x48\x7a')+_0x2ab0f0(0x17e,'\x59\x37\x73\x5a')+'\x69\x6f\x6e\x20\x65\x76\x65\x6e'+_0x2ab0f0(0x499,'\x5e\x4f\x51\x64');const _0x464d88=_0x4667d6[_0x2ab0f0(0x306,'\x6b\x6c\x50\x39')](-(-0x1b80+0xbfd+0xf8b)),_0x21ce4e=_0x464d88[_0x2ab0f0(0x2dd,'\x76\x5a\x5e\x55')]((_0x5f06ad,_0x11b2e0)=>{const _0x203653=_0x2ab0f0,_0x96eff7=_0x1c16de[_0x203653(0x1fb,'\x34\x68\x4b\x43')](_0x5f06ad[_0x203653(0x214,'\x50\x6b\x34\x32')])?_0x5f06ad[_0x203653(0x4ac,'\x50\x32\x4a\x4f')][_0x203653(0x247,'\x72\x54\x6d\x41')](0x1*0x2683+-0x8eb*0x3+-0xbc2,0x1ebc+0x2*-0x12f5+0x731)[_0x203653(0x317,'\x50\x57\x66\x4b')]('\x2c\x20'):'\x3f',_0x3d21a3=_0x4acdac[_0x203653(0x1ca,'\x69\x62\x23\x4b')](_0x5f06ad[_0x203653(0x339,'\x52\x37\x72\x51')+'\x65\x64'])&&_0x5f06ad[_0x203653(0x414,'\x40\x59\x59\x4e')+'\x65\x64'][_0x203653(0x407,'\x61\x5b\x4b\x4d')]?_0x5f06ad['\x67\x65\x6e\x65\x73\x5f\x75\x73'+'\x65\x64'][-0x178d+-0x1cbe+-0x1*-0x344b]:_0x203653(0x17d,'\x50\x32\x4a\x4f'),_0x1c035f=_0x5f06ad[_0x203653(0x2cd,'\x25\x64\x23\x31')]&&_0x5f06ad[_0x203653(0x301,'\x45\x56\x5e\x4b')][_0x203653(0x382,'\x67\x37\x75\x6e')]?_0x5f06ad[_0x203653(0x284,'\x72\x35\x6b\x21')]['\x73\x74\x61\x74\x75\x73']:'\x3f',_0xa6696b=_0x5f06ad[_0x203653(0x30b,'\x40\x59\x59\x4e')]&&_0x5f06ad[_0x203653(0x2bd,'\x55\x21\x53\x5d')]['\x61\x74']?_0x5f06ad[_0x203653(0x3d4,'\x40\x49\x37\x5b')]['\x61\x74']:_0x5f06ad['\x69\x64']||'';return'\x20\x20'+_0x156c6c[_0x203653(0x3d2,'\x67\x37\x75\x6e')](_0x11b2e0,0x1*-0xd3b+0x223*-0x2+0x1b*0xa6)+_0x203653(0x329,'\x47\x41\x48\x7a')+(_0x5f06ad[_0x203653(0x3bf,'\x50\x32\x4a\x4f')]||'\x3f')+(_0x203653(0x1bd,'\x38\x42\x40\x43')+_0x203653(0x321,'\x78\x72\x26\x31'))+_0x96eff7+_0x203653(0x309,'\x40\x59\x59\x4e')+_0x3d21a3+(_0x203653(0x435,'\x4f\x28\x4e\x5e')+'\x3d')+_0x1c035f+'\x20\x40'+_0xa6696b;});return _0x21ce4e[_0x2ab0f0(0x1fc,'\x72\x35\x6b\x21')]('\x0a');}}if(_0x538d79){if(_0x2dd4d6[_0x2ab0f0(0x42a,'\x77\x5b\x6c\x52')](_0x2dd4d6[_0x2ab0f0(0x354,'\x69\x62\x23\x4b')],_0x2dd4d6[_0x2ab0f0(0x21c,'\x4e\x5d\x63\x28')]))return _0x15aa95[_0x2ab0f0(0x436,'\x52\x25\x42\x57')+'\x64'];else{try{const _0x271826=await _0x2dd4d6[_0x2ab0f0(0x19d,'\x4f\x52\x51\x76')](_0x3e605f,_0x3e33c9,null,_0x5234d1);if(_0x271826&&_0x271826[_0x2ab0f0(0x3e2,'\x36\x31\x21\x65')]&&_0x2dd4d6[_0x2ab0f0(0x19b,'\x4e\x5d\x63\x28')](_0x271826[_0x2ab0f0(0x2df,'\x34\x76\x5b\x29')][_0x2ab0f0(0x336,'\x50\x32\x4a\x4f')],-0x18*0x73+0x427*-0x5+0x1f8b)){if(_0x2dd4d6['\x79\x48\x70\x4c\x56'](_0x2dd4d6[_0x2ab0f0(0x3ac,'\x52\x37\x72\x51')],_0x2dd4d6[_0x2ab0f0(0x1d1,'\x41\x61\x4e\x5e')])){console['\x6c\x6f\x67'](_0x2dd4d6[_0x2ab0f0(0x3ce,'\x25\x64\x23\x31')](_0x2dd4d6[_0x2ab0f0(0x409,'\x23\x31\x51\x4f')],_0x271826[_0x2ab0f0(0x19e,'\x77\x5b\x6c\x52')][_0x2ab0f0(0x199,'\x38\x63\x5b\x75')])+(_0x2ab0f0(0x1ea,'\x43\x24\x6b\x59')+_0x2ab0f0(0x3f0,'\x72\x35\x6b\x21')+_0x2ab0f0(0x29f,'\x40\x59\x59\x4e')+_0x2ab0f0(0x23b,'\x2a\x47\x21\x6e')+_0x2ab0f0(0x494,'\x50\x6b\x34\x32')));for(var _0x292e4a=0x147f+0xcc6+-0x2145;_0x2dd4d6[_0x2ab0f0(0x31c,'\x4f\x52\x51\x76')](_0x292e4a,_0x271826[_0x2ab0f0(0x1d4,'\x52\x25\x42\x57')][_0x2ab0f0(0x287,'\x77\x5b\x6c\x52')]);_0x292e4a++){if(!_0x3e33c9[_0x2ab0f0(0x1bb,'\x51\x49\x38\x7a')](_0x271826[_0x2ab0f0(0x474,'\x74\x4e\x41\x57')][_0x292e4a])){if(_0x2dd4d6[_0x2ab0f0(0x297,'\x77\x5b\x6c\x52')](_0x2dd4d6[_0x2ab0f0(0x294,'\x74\x4e\x41\x57')],_0x2dd4d6[_0x2ab0f0(0x266,'\x34\x76\x5b\x29')])){const _0x3fd5f6={};_0x3fd5f6[_0x2ab0f0(0x356,'\x24\x6a\x29\x6f')]=_0x116f93,_0x3fd5f6[_0x2ab0f0(0x2bc,'\x47\x41\x48\x7a')+_0x2ab0f0(0x37d,'\x4f\x52\x51\x76')]=_0x1304cb,_0x3fd5f6['\x72\x65\x76\x69\x65\x77\x5f\x6d'+_0x2ab0f0(0x425,'\x38\x42\x40\x43')]=_0x232e43,_0x3fd5f6[_0x2ab0f0(0x3ca,'\x4f\x28\x4e\x5e')]=_0x219b99,_0x3fd5f6[_0x2ab0f0(0x36e,'\x25\x64\x23\x31')+_0x2ab0f0(0x480,'\x50\x57\x66\x4b')]=_0x4237bb&&_0x43be5f['\x69\x64']?_0x55bb68['\x69\x64']:null,_0x3fd5f6[_0x2ab0f0(0x2d4,'\x36\x31\x21\x65')+'\x69\x74\x79\x5f\x6b\x65\x79']=_0x1ccceb&&_0x41d9c2[_0x2ab0f0(0x203,'\x4e\x5d\x63\x28')+_0x2ab0f0(0x40a,'\x38\x63\x5b\x75')]?_0xab87e1[_0x2ab0f0(0x1b6,'\x31\x5e\x24\x32')+_0x2ab0f0(0x2dc,'\x77\x5b\x6c\x52')]:null,_0x735a77=_0x2dd4d6[_0x2ab0f0(0x2ba,'\x38\x63\x5b\x75')](_0x4967b6,{'\x6d\x65\x6d\x6f\x72\x79\x44\x69\x72':_0x2dd4d6[_0x2ab0f0(0x192,'\x59\x37\x73\x5a')](_0x59ae77),'\x63\x79\x63\x6c\x65\x49\x64':_0x3fe9eb,'\x72\x75\x6e\x49\x64':_0x28b445,'\x70\x72\x6f\x6d\x70\x74':_0x5440b5,'\x6d\x65\x74\x61':_0x3fd5f6});}else _0x3e33c9[_0x2ab0f0(0x292,'\x6b\x6c\x50\x39')](_0x271826[_0x2ab0f0(0x374,'\x5e\x4f\x51\x64')][_0x292e4a]);}}}else{const _0x59d367=_0x2dd4d6[_0x2ab0f0(0x2d3,'\x24\x6a\x29\x6f')](_0x1d112e,_0x2ab0f0(0x3ec,'\x67\x37\x75\x6e')+_0x2ab0f0(0x3f3,'\x52\x25\x42\x57')+_0x2ab0f0(0x312,'\x50\x57\x66\x4b')+_0x2ab0f0(0x27b,'\x66\x28\x31\x25')+_0x2ab0f0(0x1af,'\x34\x68\x4b\x43'),{'\x63\x77\x64':_0x718702,'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x2dd4d6[_0x2ab0f0(0x319,'\x72\x54\x6d\x41')],'\x73\x74\x64\x69\x6f':[_0x2dd4d6[_0x2ab0f0(0x1c4,'\x52\x25\x42\x57')],_0x2ab0f0(0x184,'\x2a\x47\x21\x6e'),_0x2dd4d6[_0x2ab0f0(0x35e,'\x43\x24\x6b\x59')]],'\x74\x69\x6d\x65\x6f\x75\x74':0xfa0,'\x77\x69\x6e\x64\x6f\x77\x73\x48\x69\x64\x65':!![],'\x6d\x61\x78\x42\x75\x66\x66\x65\x72':_0x427568});_0x4b161c=_0x2dd4d6[_0x2ab0f0(0x343,'\x78\x72\x26\x31')](_0x2c5259,_0x59d367)[_0x2ab0f0(0x3c6,'\x23\x31\x51\x4f')]('\x0a')[_0x2ab0f0(0x4a6,'\x38\x42\x40\x43')](_0x10ce25=>_0x10ce25['\x74\x72\x69\x6d']())[_0x2ab0f0(0x20d,'\x23\x31\x51\x4f')](_0xe29804);}}}catch(_0x49dbca){if(_0x2dd4d6[_0x2ab0f0(0x229,'\x38\x42\x40\x43')](_0x2dd4d6[_0x2ab0f0(0x1a5,'\x31\x5e\x24\x32')],_0x2ab0f0(0x207,'\x40\x49\x37\x5b'))){const _0x4b0c7d=_0x3b7755[_0x2ab0f0(0x237,'\x39\x5d\x36\x31')](_0x35610a['\x73\x69\x67\x6e\x61\x6c\x73'])?_0x2d1530[_0x2ab0f0(0x489,'\x40\x49\x37\x5b')]['\x73\x6c\x69\x63\x65'](0x1cf*0x7+0x23a7+-0x1828*0x2,0x9af*0x1+0x1350+0x1cfc*-0x1)[_0x2ab0f0(0x1fc,'\x72\x35\x6b\x21')]('\x2c\x20'):'\x3f',_0x41bc0c=_0x5cf916[_0x2ab0f0(0x1a6,'\x62\x77\x24\x71')](_0x5154cc[_0x2ab0f0(0x3b6,'\x76\x5a\x5e\x55')+'\x65\x64'])&&_0x5f2f72[_0x2ab0f0(0x2d5,'\x36\x31\x21\x65')+'\x65\x64'][_0x2ab0f0(0x1e9,'\x4e\x5d\x63\x28')]?_0x55382d[_0x2ab0f0(0x3a7,'\x4d\x66\x41\x40')+'\x65\x64'][0x4da+0x2337+-0x2811]:'\x6e\x6f\x6e\x65',_0x5d87a4=_0x58ad32[_0x2ab0f0(0x43b,'\x4d\x66\x41\x40')]&&_0x1b4eeb['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x2ab0f0(0x378,'\x50\x6b\x34\x32')]?_0x3b54ac[_0x2ab0f0(0x3af,'\x31\x5e\x24\x32')][_0x2ab0f0(0x1e2,'\x24\x6a\x29\x6f')]:'\x3f',_0x43da36=_0x4f5181[_0x2ab0f0(0x341,'\x50\x32\x4a\x4f')]&&_0xd6036d[_0x2ab0f0(0x476,'\x23\x6c\x62\x63')]['\x61\x74']?_0xe6ac9e[_0x2ab0f0(0x2f8,'\x24\x6a\x29\x6f')]['\x61\x74']:_0x41cb7f['\x69\x64']||'';return'\x20\x20'+_0x2dd4d6[_0x2ab0f0(0x1df,'\x74\x4e\x41\x57')](_0x4562c7,-0x1d66+0xe1f+0x18*0xa3)+_0x2ab0f0(0x25b,'\x51\x25\x36\x48')+(_0x22b67d[_0x2ab0f0(0x24c,'\x2a\x47\x21\x6e')]||'\x3f')+('\x5d\x20\x73\x69\x67\x6e\x61\x6c'+_0x2ab0f0(0x3cd,'\x2a\x47\x21\x6e'))+_0x4b0c7d+_0x2ab0f0(0x1be,'\x69\x62\x23\x4b')+_0x41bc0c+(_0x2ab0f0(0x26e,'\x40\x59\x59\x4e')+'\x3d')+_0x5d87a4+'\x20\x40'+_0x43da36;}else console['\x65\x72\x72\x6f\x72'](_0x2dd4d6[_0x2ab0f0(0x426,'\x72\x54\x6d\x41')]+_0x49dbca[_0x2ab0f0(0x263,'\x65\x59\x57\x5e')]);}console[_0x2ab0f0(0x3be,'\x50\x32\x4a\x4f')](_0x2dd4d6[_0x2ab0f0(0x1c2,'\x75\x40\x33\x66')]);return;}}const _0x160a4c=_0x2ab0f0(0x431,'\x45\x56\x5e\x4b')+JSON[_0x2ab0f0(0x2f9,'\x72\x54\x6d\x41')+'\x79'](_0x277c6d[_0x2ab0f0(0x2b1,'\x76\x5a\x5e\x55')](-0xd2d*0x2+0xea3+-0xbb7*-0x1,0xe57+-0x142d+-0xf*-0x64),null,-0x1706+0x849+-0x1*-0xebf)+_0x2ab0f0(0x3ee,'\x4f\x52\x51\x76'),_0x3459b5='\x60\x60\x60\x6a\x73\x6f\x6e\x0a'+JSON[_0x2ab0f0(0x408,'\x6b\x6c\x50\x39')+'\x79'](_0x456019[_0x2ab0f0(0x383,'\x40\x49\x37\x5b')](-(0x11cb+0x98*0x22+-0x25f8)),null,0x2e*-0x95+0x25d1+-0x19*0x71)+_0x2ab0f0(0x367,'\x72\x35\x6b\x21'),_0x451a90=_0xdf603?_0x2dd4d6['\x53\x47\x6c\x61\x72']:_0x2dd4d6[_0x2ab0f0(0x196,'\x52\x37\x72\x51')],_0x25d91c=((()=>{const _0x5f7841=_0x2ab0f0,_0x8cebaa={'\x49\x74\x6c\x6b\x47':_0x2dd4d6[_0x5f7841(0x38a,'\x52\x37\x72\x51')],'\x61\x4e\x4b\x6a\x63':function(_0x2eda88){const _0x187c8b=_0x5f7841;return _0x2dd4d6[_0x187c8b(0x340,'\x77\x5b\x6c\x52')](_0x2eda88);},'\x44\x49\x47\x4e\x44':_0x5f7841(0x2a1,'\x23\x31\x51\x4f'),'\x62\x44\x6e\x45\x45':_0x2dd4d6[_0x5f7841(0x3a3,'\x23\x31\x51\x4f')],'\x4c\x69\x45\x54\x45':_0x5f7841(0x220,'\x34\x30\x5e\x33')};if(_0x5f7841(0x2bf,'\x76\x5a\x5e\x55')!==_0x2dd4d6['\x6d\x43\x5a\x74\x75'])_0x1b1179[_0x5f7841(0x22e,'\x43\x24\x6b\x59')](_0x5f7841(0x3de,'\x50\x57\x66\x4b')+_0x5f7841(0x2cf,'\x67\x37\x75\x6e')+_0x5f7841(0x30e,'\x66\x28\x31\x25')+_0x5f7841(0x183,'\x50\x6b\x34\x32')+_0x5f7841(0x346,'\x59\x37\x73\x5a')+'\x75\x65\x29'),_0x4165c1[_0x5f7841(0x47d,'\x73\x61\x6c\x50')](_0x26d14b);else{if(!_0x4df49e||_0x4df49e[_0x5f7841(0x44a,'\x72\x54\x6d\x41')]===-0x20db*-0x1+-0xe31+-0x955*0x2)return _0x5f7841(0x1fd,'\x23\x6c\x62\x63')+_0x5f7841(0x3ab,'\x41\x61\x4e\x5e')+'\x69\x6f\x6e\x20\x65\x76\x65\x6e'+_0x5f7841(0x424,'\x50\x32\x4a\x4f');const _0x2287af=_0x4df49e[_0x5f7841(0x318,'\x4f\x52\x51\x76')](-(0x42b+0x1453*0x1+-0x65*0x3e)),_0xdaba62=_0x2287af['\x6d\x61\x70']((_0x1e1fd6,_0x1f589a)=>{const _0x21b4e7=_0x5f7841,_0x5656cc={'\x72\x4e\x6c\x57\x72':_0x8cebaa['\x49\x74\x6c\x6b\x47'],'\x67\x53\x54\x7a\x47':function(_0x16c3fe){const _0x4d3ab6=_0x310a;return _0x8cebaa[_0x4d3ab6(0x4a9,'\x45\x56\x5e\x4b')](_0x16c3fe);}};if(_0x8cebaa[_0x21b4e7(0x482,'\x77\x5b\x6c\x52')]===_0x8cebaa[_0x21b4e7(0x39c,'\x34\x68\x4b\x43')])_0x12574c=(typeof _0x5efa59===ryXWXO[_0x21b4e7(0x3c2,'\x31\x5e\x24\x32')]?ryXWXO[_0x21b4e7(0x288,'\x47\x41\x48\x7a')](_0x5160bb):null)||{};else{const _0x5a54e7=Array[_0x21b4e7(0x403,'\x4e\x5d\x63\x28')](_0x1e1fd6[_0x21b4e7(0x281,'\x6b\x6c\x50\x39')])?_0x1e1fd6[_0x21b4e7(0x457,'\x72\x54\x6d\x41')][_0x21b4e7(0x411,'\x74\x4e\x41\x57')](-0x69f+0x9b0+0x5*-0x9d,-0x1b3c+0x17dc+0x363)[_0x21b4e7(0x1e5,'\x5e\x4f\x51\x64')]('\x2c\x20'):'\x3f',_0x5a622e=Array[_0x21b4e7(0x49e,'\x76\x5a\x5e\x55')](_0x1e1fd6[_0x21b4e7(0x38f,'\x34\x68\x4b\x43')+'\x65\x64'])&&_0x1e1fd6['\x67\x65\x6e\x65\x73\x5f\x75\x73'+'\x65\x64'][_0x21b4e7(0x1e9,'\x4e\x5d\x63\x28')]?_0x1e1fd6[_0x21b4e7(0x1a2,'\x43\x24\x6b\x59')+'\x65\x64'][-0xc01+0x11c+0xae5]:_0x8cebaa[_0x21b4e7(0x1f4,'\x34\x68\x4b\x43')],_0x2815da=_0x1e1fd6[_0x21b4e7(0x43d,'\x38\x63\x5b\x75')]&&_0x1e1fd6[_0x21b4e7(0x2e0,'\x41\x61\x4e\x5e')][_0x21b4e7(0x378,'\x50\x6b\x34\x32')]?_0x1e1fd6[_0x21b4e7(0x2d6,'\x73\x61\x6c\x50')][_0x21b4e7(0x2a3,'\x2a\x47\x21\x6e')]:'\x3f',_0x564ded=_0x1e1fd6['\x6d\x65\x74\x61']&&_0x1e1fd6[_0x21b4e7(0x23d,'\x69\x62\x23\x4b')]['\x61\x74']?_0x1e1fd6[_0x21b4e7(0x23d,'\x69\x62\x23\x4b')]['\x61\x74']:_0x1e1fd6['\x69\x64']||'';return'\x20\x20'+(_0x1f589a+(-0x3*-0x3cb+0x11*-0xe2+0x3a2))+_0x21b4e7(0x2a4,'\x31\x5e\x24\x32')+(_0x1e1fd6[_0x21b4e7(0x451,'\x24\x6a\x29\x6f')]||'\x3f')+(_0x21b4e7(0x3b5,'\x78\x72\x26\x31')+_0x21b4e7(0x498,'\x52\x37\x72\x51'))+_0x5a54e7+_0x21b4e7(0x272,'\x39\x5d\x36\x31')+_0x5a622e+(_0x21b4e7(0x1eb,'\x50\x57\x66\x4b')+'\x3d')+_0x2815da+'\x20\x40'+_0x564ded;}});return _0xdaba62[_0x5f7841(0x40e,'\x7a\x59\x78\x52')]('\x0a');}})()),_0x578b0c=(_0x2ab0f0(0x2a5,'\x34\x68\x4b\x43')+_0x2ab0f0(0x33e,'\x50\x6b\x34\x32')+_0x2ab0f0(0x182,'\x52\x25\x42\x57')+_0x2ab0f0(0x3bb,'\x45\x56\x5e\x4b')+_0x2ab0f0(0x485,'\x41\x61\x4e\x5e')+(_0x270686?_0x2dd4d6[_0x2ab0f0(0x2d1,'\x62\x77\x24\x71')]('\x60\x60\x60\x0a',_0x270686)+_0x2dd4d6[_0x2ab0f0(0x2e8,'\x52\x25\x42\x57')]:_0x2ab0f0(0x3b4,'\x43\x24\x6b\x59')+_0x2ab0f0(0x227,'\x59\x37\x73\x5a'))+(_0x2ab0f0(0x226,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x41e,'\x31\x5e\x24\x32')+_0x2ab0f0(0x305,'\x67\x37\x75\x6e')+_0x2ab0f0(0x1b0,'\x6b\x6c\x50\x39')+'\x3a\x20')+_0x5e11c1+('\x0a\x2d\x20\x41\x67\x65\x6e\x74'+_0x2ab0f0(0x280,'\x72\x35\x6b\x21'))+_0x1867fb+(_0x2ab0f0(0x1d5,'\x43\x24\x6b\x59')+_0x2ab0f0(0x400,'\x75\x40\x33\x66')+'\x3a\x20')+_0x220222+(_0x2ab0f0(0x274,'\x36\x31\x21\x65')+_0x2ab0f0(0x231,'\x38\x42\x40\x43')+'\x3a\x20')+_0x36a00f+(_0x2ab0f0(0x33a,'\x40\x49\x37\x5b')+_0x2ab0f0(0x464,'\x7a\x59\x78\x52')+'\x61\x76\x61\x69\x6c\x61\x62\x6c'+_0x2ab0f0(0x222,'\x34\x30\x5e\x33')+_0x2ab0f0(0x310,'\x77\x5b\x6c\x52'))+_0x2dd4d6['\x64\x53\x47\x54\x41'](_0x2ba189,_0x2dd4d6[_0x2ab0f0(0x270,'\x2a\x70\x78\x4d')])+(_0x2ab0f0(0x1de,'\x50\x57\x66\x4b')+_0x2ab0f0(0x36a,'\x31\x5e\x24\x32')+_0x2ab0f0(0x42d,'\x40\x49\x37\x5b')+_0x2ab0f0(0x2b3,'\x77\x5b\x6c\x52')+_0x2ab0f0(0x31f,'\x43\x24\x6b\x59')+_0x2ab0f0(0x2f2,'\x55\x21\x53\x5d')+_0x2ab0f0(0x23c,'\x55\x21\x53\x5d'))+_0xf73ae6+(_0x2ab0f0(0x208,'\x61\x5b\x4b\x4d')+_0x2ab0f0(0x39b,'\x73\x61\x6c\x50'))+_0x451a90+_0x2ab0f0(0x29e,'\x6b\x6c\x50\x39')+_0x4d7fce+_0x2ab0f0(0x24e,'\x7a\x59\x78\x52')+_0xbfa4c0+(_0x2ab0f0(0x3ae,'\x51\x49\x38\x7a')+_0x2ab0f0(0x429,'\x69\x62\x23\x4b')+'\x6f\x6e\x20\x48\x69\x73\x74\x6f'+'\x72\x79\x20\x28\x6c\x61\x73\x74'+_0x2ab0f0(0x246,'\x66\x28\x31\x25')+_0x2ab0f0(0x2fe,'\x23\x31\x51\x4f')+_0x2ab0f0(0x352,'\x62\x77\x24\x71')+_0x2ab0f0(0x3c9,'\x66\x28\x31\x25')+'\x61\x6d\x65\x20\x69\x6e\x74\x65'+_0x2ab0f0(0x24f,'\x75\x40\x33\x66')+_0x2ab0f0(0x225,'\x4e\x5d\x63\x28')+'\x0a')+_0x25d91c+('\x0a\x49\x4d\x50\x4f\x52\x54\x41'+'\x4e\x54\x3a\x20\x49\x66\x20\x79'+_0x2ab0f0(0x2db,'\x2a\x47\x21\x6e')+'\x2b\x20\x63\x6f\x6e\x73\x65\x63'+'\x75\x74\x69\x76\x65\x20\x22\x72'+_0x2ab0f0(0x3a0,'\x50\x6b\x34\x32')+_0x2ab0f0(0x37c,'\x23\x31\x51\x4f')+_0x2ab0f0(0x373,'\x62\x77\x24\x71')+_0x2ab0f0(0x49f,'\x7a\x59\x78\x52')+_0x2ab0f0(0x3e5,'\x47\x41\x48\x7a')+_0x2ab0f0(0x3da,'\x34\x76\x5b\x29')+_0x2ab0f0(0x467,'\x25\x64\x23\x31')+_0x2ab0f0(0x469,'\x39\x5d\x36\x31')+_0x2ab0f0(0x369,'\x4f\x52\x51\x76'))+((()=>{const _0x1c0a37=_0x2ab0f0;let _0x25cbd7=-0x2*0xe1f+-0x15b4+0x31f2;const _0x51be20=Array[_0x1c0a37(0x412,'\x73\x61\x6c\x50')](_0x4df49e)?_0x4df49e:[];for(let _0x5bd0ef=_0x2dd4d6[_0x1c0a37(0x4a7,'\x23\x6c\x62\x63')](_0x51be20[_0x1c0a37(0x41a,'\x39\x5d\x36\x31')],0x56*-0x5f+-0x18a9+0x3894);_0x5bd0ef>=0x51*0x76+-0x14*0xfb+-0x11ba*0x1;_0x5bd0ef--){if(_0x51be20[_0x5bd0ef]&&_0x51be20[_0x5bd0ef][_0x1c0a37(0x3a6,'\x39\x5d\x36\x31')]&&_0x2dd4d6[_0x1c0a37(0x240,'\x4f\x28\x4e\x5e')](_0x51be20[_0x5bd0ef][_0x1c0a37(0x32c,'\x4f\x52\x51\x76')][_0x1c0a37(0x20a,'\x4f\x28\x4e\x5e')],_0x2dd4d6[_0x1c0a37(0x304,'\x50\x6b\x34\x32')]))_0x25cbd7++;else break;}if(_0x2dd4d6[_0x1c0a37(0x314,'\x47\x41\x48\x7a')](_0x25cbd7,-0xa*-0x2c6+0x240e+-0x3fc7*0x1)){if(_0x2dd4d6[_0x1c0a37(0x2f5,'\x72\x54\x6d\x41')]!==_0x2dd4d6[_0x1c0a37(0x3c0,'\x72\x35\x6b\x21')]){const _0x774df8=_0x1bdee5[_0x1c0a37(0x446,'\x25\x64\x23\x31')](_0xbaf9e9)?_0x430124:[],_0x3f4b5b=['\x63\x79\x63\x6c\x65\x5f\x69\x64'+'\x3a\x20'+_0x2752b7,_0x1c0a37(0x20f,'\x47\x41\x48\x7a')+_0x1c0a37(0x3ff,'\x65\x59\x57\x5e')+_0x774df8[_0x1c0a37(0x41a,'\x39\x5d\x36\x31')],_0x1c0a37(0x25f,'\x73\x61\x6c\x50')+'\x20'+_0x774df8[_0x1c0a37(0x393,'\x34\x68\x4b\x43')](-0x1*0x1856+0xba3+0xcb3,0x1987+0x1*0x101d+-0x2998)[_0x1c0a37(0x493,'\x4d\x66\x41\x40')]('\x2c\x20')+(_0x2dd4d6['\x50\x64\x73\x44\x73'](_0x774df8[_0x1c0a37(0x3c4,'\x52\x37\x72\x51')],-0x194d+-0xb6+0x1a0f)?_0x2dd4d6[_0x1c0a37(0x291,'\x4e\x5d\x63\x28')]:''),'\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x1c0a37(0x1b4,'\x59\x37\x73\x5a')+(_0x549c9a&&_0x267644['\x69\x64']?_0x2dd4d6[_0x1c0a37(0x325,'\x61\x5b\x4b\x4d')](_0x11d90a,_0x1bcbaa['\x69\x64']):_0x1c0a37(0x3d7,'\x43\x24\x6b\x59')),_0x1c0a37(0x2fa,'\x52\x25\x42\x57')+_0x1c0a37(0x379,'\x52\x25\x42\x57')+'\x3a\x20'+(_0x5eeb1c?_0x2dd4d6[_0x1c0a37(0x2f0,'\x4e\x5d\x63\x28')](_0x48398d,_0x29bf73):_0x2dd4d6['\x71\x42\x57\x64\x69']),'\x6d\x75\x74\x61\x74\x69\x6f\x6e'+_0x1c0a37(0x2c5,'\x34\x30\x5e\x33')+_0x1c0a37(0x462,'\x61\x5b\x4b\x4d')+(_0x482540&&_0x3da202[_0x1c0a37(0x45e,'\x67\x37\x75\x6e')]?_0x4aff91(_0x369e0d['\x63\x61\x74\x65\x67\x6f\x72\x79']):_0x2dd4d6[_0x1c0a37(0x276,'\x78\x72\x26\x31')]),_0x1c0a37(0x3b0,'\x4f\x28\x4e\x5e')+_0x1c0a37(0x335,'\x4f\x28\x4e\x5e')+'\x3a\x20'+(_0x4c18ea?_0x2dd4d6[_0x1c0a37(0x26b,'\x4f\x52\x51\x76')]:_0x2dd4d6[_0x1c0a37(0x48f,'\x59\x37\x73\x5a')]),_0x1c0a37(0x253,'\x38\x63\x5b\x75')+_0x1c0a37(0x307,'\x36\x31\x21\x65')+(_0x161cda&&_0x206193['\x68\x69\x74']?_0x5a5838?_0x1c0a37(0x458,'\x61\x5b\x4b\x4d'):_0x2dd4d6[_0x1c0a37(0x34c,'\x75\x40\x33\x66')]:_0x2dd4d6[_0x1c0a37(0x18e,'\x34\x76\x5b\x29')]),'\x68\x75\x62\x5f\x72\x65\x75\x73'+_0x1c0a37(0x316,'\x59\x37\x73\x5a')+(_0x546d58?_0x2dd4d6[_0x1c0a37(0x1c1,'\x40\x59\x59\x4e')]:_0x4724aa?_0x2dd4d6[_0x1c0a37(0x399,'\x4d\x66\x41\x40')]:_0x2dd4d6['\x51\x66\x4f\x59\x5a'])][_0x1c0a37(0x47f,'\x62\x77\x24\x71')]('\x0a');_0xcd7417[_0x1c0a37(0x22e,'\x43\x24\x6b\x59')](_0x1c0a37(0x20b,'\x45\x56\x5e\x4b')+_0x1c0a37(0x38e,'\x77\x5b\x6c\x52')+'\x5d\x0a'+_0x3f4b5b+(_0x1c0a37(0x27e,'\x47\x41\x48\x7a')+_0x1c0a37(0x35f,'\x34\x76\x5b\x29')+_0x1c0a37(0x300,'\x77\x5b\x6c\x52')));}else return _0x1c0a37(0x486,'\x50\x57\x66\x4b')+_0x1c0a37(0x2e2,'\x23\x31\x51\x4f')+_0x1c0a37(0x29c,'\x23\x6c\x62\x63')+_0x1c0a37(0x261,'\x52\x37\x72\x51')+'\x74\x20'+_0x25cbd7+(_0x1c0a37(0x236,'\x52\x25\x42\x57')+_0x1c0a37(0x271,'\x25\x64\x23\x31')+_0x1c0a37(0x2e4,'\x50\x32\x4a\x4f')+_0x1c0a37(0x415,'\x36\x31\x21\x65')+_0x1c0a37(0x31d,'\x6b\x6c\x50\x39')+'\x20\x61\x70\x70\x72\x6f\x61\x63'+_0x1c0a37(0x490,'\x24\x6a\x29\x6f')+_0x1c0a37(0x285,'\x77\x5b\x6c\x52')+'\x61\x74\x20\x74\x68\x65\x20\x73'+_0x1c0a37(0x49d,'\x52\x25\x42\x57')+_0x1c0a37(0x1ae,'\x24\x6a\x29\x6f')+_0x1c0a37(0x32b,'\x50\x57\x66\x4b')+_0x1c0a37(0x25c,'\x34\x68\x4b\x43')+_0x1c0a37(0x23f,'\x62\x77\x24\x71')+_0x1c0a37(0x20e,'\x51\x49\x38\x7a')+_0x1c0a37(0x28e,'\x62\x77\x24\x71')+_0x1c0a37(0x38b,'\x72\x54\x6d\x41')+_0x1c0a37(0x36c,'\x45\x56\x5e\x4b')+_0x1c0a37(0x1aa,'\x75\x40\x33\x66')+_0x1c0a37(0x32f,'\x50\x32\x4a\x4f')+_0x1c0a37(0x389,'\x23\x6c\x62\x63')+_0x1c0a37(0x334,'\x69\x62\x23\x4b')+_0x1c0a37(0x484,'\x43\x24\x6b\x59')+_0x1c0a37(0x332,'\x75\x40\x33\x66')+_0x1c0a37(0x3ad,'\x40\x49\x37\x5b')+'\x6e\x64\x20\x6d\x6f\x76\x65\x20'+_0x1c0a37(0x477,'\x75\x40\x33\x66')+_0x1c0a37(0x251,'\x51\x25\x36\x48')+_0x1c0a37(0x405,'\x69\x62\x23\x4b')+_0x1c0a37(0x273,'\x62\x77\x24\x71')+'\x76\x61\x74\x65\x20\x63\x79\x63'+_0x1c0a37(0x391,'\x2a\x70\x78\x4d')+_0x1c0a37(0x2af,'\x34\x68\x4b\x43')+_0x1c0a37(0x213,'\x23\x6c\x62\x63')+'\x69\x6e\x67\x20\x72\x65\x70\x61'+'\x69\x72\x2e');}return'';})())+(_0x2ab0f0(0x248,'\x67\x37\x75\x6e')+_0x2ab0f0(0x4a5,'\x47\x41\x48\x7a')+'\x64\x61\x74\x65\x73\x20\x28\x41'+'\x32\x41\x20\x72\x65\x63\x65\x69'+_0x2ab0f0(0x289,'\x34\x68\x4b\x43')+_0x2ab0f0(0x420,'\x36\x31\x21\x65')+'\x6f\x6e\x6c\x79\x2c\x20\x6e\x65'+_0x2ab0f0(0x455,'\x2a\x70\x78\x4d')+_0x2ab0f0(0x2b6,'\x69\x62\x23\x4b')+_0x2ab0f0(0x381,'\x75\x40\x33\x66'))+_0x18cab0+(_0x2ab0f0(0x2c7,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x21e,'\x67\x37\x75\x6e')+_0x2ab0f0(0x1ef,'\x73\x61\x6c\x50')+'\x6d\x64\x29\x3a\x0a\x60\x60\x60'+'\x0a')+_0x3db20c+(_0x2ab0f0(0x38d,'\x6b\x6c\x50\x39')+_0x2ab0f0(0x3b1,'\x50\x6b\x34\x32')+_0x2ab0f0(0x397,'\x66\x28\x31\x25')+_0x2ab0f0(0x47b,'\x40\x49\x37\x5b')+_0x2ab0f0(0x259,'\x69\x62\x23\x4b'))+_0x1209bb+(_0x2ab0f0(0x2cc,'\x39\x5d\x36\x31')+_0x2ab0f0(0x36b,'\x5e\x4f\x51\x64')+'\x6f\x72\x79\x20\x73\x6e\x69\x70'+_0x2ab0f0(0x38c,'\x47\x41\x48\x7a')+'\x0a')+_0x457ca4[_0x2ab0f0(0x282,'\x78\x72\x26\x31')](-(0xb5+0x1b7c+-0x1079))+(_0x2ab0f0(0x2b0,'\x61\x5b\x4b\x4d')+_0x2ab0f0(0x1a3,'\x4f\x52\x51\x76')+_0x2ab0f0(0x427,'\x23\x31\x51\x4f')+_0x2ab0f0(0x205,'\x39\x5d\x36\x31')+_0x2ab0f0(0x3bc,'\x50\x6b\x34\x32'))+_0x3bb35f+(_0x2ab0f0(0x2f6,'\x52\x37\x72\x51')+_0x2ab0f0(0x375,'\x76\x5a\x5e\x55')+_0x2ab0f0(0x2b2,'\x43\x24\x6b\x59')+'\x3a\x0a')+_0x1e1fd5+'\x0a'+_0x1471ca+'\x0a'+_0x430279+'\x0a')[_0x2ab0f0(0x444,'\x51\x25\x36\x48')](),_0x2f43d8=_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x3b8,'\x38\x63\x5b\x75')]&&_0x1af6cb[_0x2ab0f0(0x3a9,'\x6b\x6c\x50\x39')]===_0x2dd4d6[_0x2ab0f0(0x28b,'\x40\x49\x37\x5b')],_0x16db31=_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x1f1,'\x72\x54\x6d\x41')]&&_0x2dd4d6[_0x2ab0f0(0x3f1,'\x73\x61\x6c\x50')](_0x1af6cb['\x6d\x6f\x64\x65'],_0x2dd4d6[_0x2ab0f0(0x475,'\x74\x4e\x41\x57')])?_0x18e300({'\x63\x61\x70\x73\x75\x6c\x65':_0x1af6cb[_0x2ab0f0(0x299,'\x52\x37\x72\x51')]}):null,_0x351f89=_0x2f43d8?_0x2dd4d6[_0x2ab0f0(0x45a,'\x59\x37\x73\x5a')](_0x308883,{'\x63\x61\x70\x73\x75\x6c\x65':_0x1af6cb[_0x2ab0f0(0x1e7,'\x40\x49\x37\x5b')],'\x73\x69\x67\x6e\x61\x6c\x73':_0x3e33c9,'\x6e\x6f\x77\x49\x73\x6f':new Date()[_0x2ab0f0(0x235,'\x24\x6a\x29\x6f')+_0x2ab0f0(0x2c2,'\x31\x5e\x24\x32')]()}):_0xff6d1d({'\x6e\x6f\x77\x49\x73\x6f':new Date()[_0x2ab0f0(0x401,'\x36\x31\x21\x65')+_0x2ab0f0(0x1e0,'\x4f\x52\x51\x76')](),'\x63\x6f\x6e\x74\x65\x78\x74':_0x578b0c,'\x73\x69\x67\x6e\x61\x6c\x73':_0x3e33c9,'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x4772ce,'\x70\x61\x72\x65\x6e\x74\x45\x76\x65\x6e\x74\x49\x64':_0x1f238a(),'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65':_0x22c383,'\x63\x61\x70\x73\x75\x6c\x65\x43\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0xaea4e8,'\x67\x65\x6e\x65\x73\x50\x72\x65\x76\x69\x65\x77':_0x160a4c,'\x63\x61\x70\x73\x75\x6c\x65\x73\x50\x72\x65\x76\x69\x65\x77':_0x3459b5,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x43\x61\x6e\x64\x69\x64\x61\x74\x65\x73\x50\x72\x65\x76\x69\x65\x77':_0xb09cc9,'\x65\x78\x74\x65\x72\x6e\x61\x6c\x43\x61\x6e\x64\x69\x64\x61\x74\x65\x73\x50\x72\x65\x76\x69\x65\x77':_0x18cab0,'\x68\x75\x62\x4d\x61\x74\x63\x68\x65\x64\x42\x6c\x6f\x63\x6b':_0x16db31,'\x73\x74\x72\x61\x74\x65\x67\x79\x50\x6f\x6c\x69\x63\x79':_0x3a1148,'\x66\x61\x69\x6c\x65\x64\x43\x61\x70\x73\x75\x6c\x65\x73':_0x50f945,'\x68\x75\x62\x4c\x65\x73\x73\x6f\x6e\x73':_0x4bf1ef,'\x63\x79\x63\x6c\x65\x49\x64':_0x1380b2,'\x69\x6e\x69\x74\x69\x61\x6c\x55\x73\x65\x72\x50\x72\x6f\x6d\x70\x74':_0x270686,'\x6f\x70\x65\x6e\x50\x52\x48\x69\x6e\x74\x73':_0x1f8e20}),_0x5e5697=_0x2dd4d6[_0x2ab0f0(0x1ee,'\x31\x5e\x24\x32')](_0x2dd4d6['\x72\x4f\x58\x71\x77'](String,process.env.EVOLVE_EMIT_THOUGHT_PROCESS||'')[_0x2ab0f0(0x453,'\x77\x5b\x6c\x52')+_0x2ab0f0(0x35c,'\x31\x5e\x24\x32')](),_0x2dd4d6[_0x2ab0f0(0x2bb,'\x40\x49\x37\x5b')]);if(_0x5e5697){const _0x513309=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x3e33c9)?_0x3e33c9:[],_0x3e8326=[_0x2ab0f0(0x483,'\x72\x54\x6d\x41')+'\x3a\x20'+_0xdb09ac,_0x2ab0f0(0x2f1,'\x73\x61\x6c\x50')+_0x2ab0f0(0x238,'\x72\x35\x6b\x21')+_0x513309[_0x2ab0f0(0x33c,'\x4f\x52\x51\x76')],_0x2ab0f0(0x46b,'\x34\x76\x5b\x29')+'\x20'+_0x513309[_0x2ab0f0(0x46d,'\x34\x30\x5e\x33')](0x786+0x1*0x1945+0x1*-0x20cb,-0x7*0x107+-0x12a3*0x2+0x2c83)[_0x2ab0f0(0x3ba,'\x59\x37\x73\x5a')]('\x2c\x20')+(_0x2dd4d6['\x52\x4a\x6a\x57\x52'](_0x513309[_0x2ab0f0(0x298,'\x52\x25\x42\x57')],-0x2*0x11e4+-0xb85*-0x3+0x145)?_0x2dd4d6['\x55\x74\x52\x67\x77']:''),_0x2ab0f0(0x413,'\x4d\x66\x41\x40')+_0x2ab0f0(0x338,'\x38\x63\x5b\x75')+(_0x22c383&&_0x22c383['\x69\x64']?_0x2dd4d6[_0x2ab0f0(0x34f,'\x4f\x52\x51\x76')](String,_0x22c383['\x69\x64']):_0x2dd4d6['\x71\x42\x57\x64\x69']),_0x2ab0f0(0x445,'\x76\x5a\x5e\x55')+_0x2ab0f0(0x26d,'\x45\x56\x5e\x4b')+'\x3a\x20'+(_0x3717a4?_0x2dd4d6[_0x2ab0f0(0x204,'\x65\x59\x57\x5e')](String,_0x3717a4):_0x2dd4d6[_0x2ab0f0(0x3f4,'\x76\x5a\x5e\x55')]),_0x2ab0f0(0x1b5,'\x23\x31\x51\x4f')+_0x2ab0f0(0x3d0,'\x74\x4e\x41\x57')+'\x79\x3a\x20'+(_0x184aa5&&_0x184aa5['\x63\x61\x74\x65\x67\x6f\x72\x79']?_0x2dd4d6[_0x2ab0f0(0x3b7,'\x38\x63\x5b\x75')](String,_0x184aa5[_0x2ab0f0(0x438,'\x77\x5b\x6c\x52')]):_0x2dd4d6[_0x2ab0f0(0x419,'\x52\x37\x72\x51')]),_0x2ab0f0(0x3c8,'\x2a\x70\x78\x4d')+_0x2ab0f0(0x402,'\x4e\x5d\x63\x28')+'\x3a\x20'+(_0x8b7830?_0x2dd4d6[_0x2ab0f0(0x29a,'\x36\x31\x21\x65')]:_0x2dd4d6[_0x2ab0f0(0x245,'\x23\x6c\x62\x63')]),_0x2ab0f0(0x1bc,'\x74\x4e\x41\x57')+_0x2ab0f0(0x1fe,'\x43\x24\x6b\x59')+(_0x1af6cb&&_0x1af6cb[_0x2ab0f0(0x2a6,'\x34\x30\x5e\x33')]?_0x2f43d8?_0x2dd4d6[_0x2ab0f0(0x44e,'\x23\x6c\x62\x63')]:_0x2ab0f0(0x1bf,'\x2a\x47\x21\x6e')+'\x65':_0x2dd4d6[_0x2ab0f0(0x18e,'\x34\x76\x5b\x29')]),_0x2ab0f0(0x32d,'\x59\x37\x73\x5a')+_0x2ab0f0(0x34d,'\x45\x56\x5e\x4b')+(_0x2f43d8?_0x2ab0f0(0x22c,'\x34\x30\x5e\x33'):_0x16db31?_0x2dd4d6[_0x2ab0f0(0x441,'\x40\x49\x37\x5b')]:_0x2ab0f0(0x3c7,'\x38\x42\x40\x43'))][_0x2ab0f0(0x327,'\x2a\x47\x21\x6e')]('\x0a');console[_0x2ab0f0(0x32e,'\x67\x37\x75\x6e')](_0x2ab0f0(0x19c,'\x50\x6b\x34\x32')+_0x2ab0f0(0x3bd,'\x25\x64\x23\x31')+'\x5d\x0a'+_0x3e8326+(_0x2ab0f0(0x254,'\x78\x72\x26\x31')+_0x2ab0f0(0x215,'\x4f\x52\x51\x76')+_0x2ab0f0(0x47a,'\x25\x64\x23\x31')));}const _0x55b1dc=_0x2dd4d6['\x4d\x45\x4b\x63\x49'](_0x2dd4d6[_0x2ab0f0(0x3e6,'\x78\x72\x26\x31')](String,process.env.EVOLVE_PRINT_PROMPT||'')[_0x2ab0f0(0x447,'\x65\x59\x57\x5e')+_0x2ab0f0(0x2da,'\x39\x5d\x36\x31')](),_0x2ab0f0(0x387,'\x76\x5a\x5e\x55'));if(_0x22a881){let _0x8fda84=_0x2ab0f0(0x24a,'\x24\x6a\x29\x6f')+Date[_0x2ab0f0(0x224,'\x34\x76\x5b\x29')]();try{if(_0x2dd4d6[_0x2ab0f0(0x3cf,'\x52\x37\x72\x51')]!==_0x2dd4d6[_0x2ab0f0(0x26a,'\x38\x63\x5b\x75')]){const _0x4fba8f=_0x2dd4d6[_0x2ab0f0(0x2d9,'\x23\x31\x51\x4f')](_0x5c04eb);if(_0x4fba8f&&_0x4fba8f[_0x2ab0f0(0x44f,'\x72\x35\x6b\x21')]&&_0x4fba8f[_0x2ab0f0(0x264,'\x50\x57\x66\x4b')][_0x2ab0f0(0x384,'\x72\x54\x6d\x41')])_0x8fda84=_0x2dd4d6['\x46\x77\x69\x59\x71'](String,_0x4fba8f[_0x2ab0f0(0x3b3,'\x6b\x6c\x50\x39')][_0x2ab0f0(0x21d,'\x74\x4e\x41\x57')]);}else _0x38afcd[_0x2ab0f0(0x28c,'\x45\x56\x5e\x4b')](_0x142d09),_0x2a3da1[_0x2ab0f0(0x2c1,'\x34\x76\x5b\x29')](_0x2dd4d6[_0x2ab0f0(0x30a,'\x43\x24\x6b\x59')]);}catch(_0x455448){}let _0x23371b=null;try{const _0x2dc22a={};_0x2dc22a[_0x2ab0f0(0x46a,'\x36\x31\x21\x65')]=_0x9d5ac2,_0x2dc22a[_0x2ab0f0(0x42e,'\x2a\x70\x78\x4d')+_0x2ab0f0(0x27f,'\x50\x32\x4a\x4f')]=_0x4f2fe9,_0x2dc22a[_0x2ab0f0(0x330,'\x72\x35\x6b\x21')+_0x2ab0f0(0x487,'\x47\x41\x48\x7a')]=_0xdf603,_0x2dc22a[_0x2ab0f0(0x260,'\x69\x62\x23\x4b')]=_0x5ee0c6,_0x2dc22a[_0x2ab0f0(0x2ea,'\x67\x37\x75\x6e')+_0x2ab0f0(0x3fb,'\x52\x37\x72\x51')]=_0x184aa5&&_0x184aa5['\x69\x64']?_0x184aa5['\x69\x64']:null,_0x2dc22a[_0x2ab0f0(0x365,'\x40\x59\x59\x4e')+_0x2ab0f0(0x362,'\x75\x40\x33\x66')]=_0x45edb4&&_0x45edb4[_0x2ab0f0(0x3fc,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x234,'\x7a\x59\x78\x52')]?_0x45edb4[_0x2ab0f0(0x203,'\x4e\x5d\x63\x28')+_0x2ab0f0(0x450,'\x69\x62\x23\x4b')]:null,_0x23371b=_0x2dd4d6[_0x2ab0f0(0x1dc,'\x36\x31\x21\x65')](_0x5d1e52,{'\x6d\x65\x6d\x6f\x72\x79\x44\x69\x72':_0x1a4660(),'\x63\x79\x63\x6c\x65\x49\x64':_0xdb09ac,'\x72\x75\x6e\x49\x64':_0x8fda84,'\x70\x72\x6f\x6d\x70\x74':_0x351f89,'\x6d\x65\x74\x61':_0x2dc22a});}catch(_0x150ccd){_0x23371b=null;}const _0x2d75ef=[_0x2ab0f0(0x3d6,'\x78\x72\x26\x31')+_0x2ab0f0(0x1fa,'\x6b\x6c\x50\x39')+'\x75\x74\x6f\x72\x20\x28\x74\x68'+_0x2ab0f0(0x45d,'\x41\x61\x4e\x5e'),_0x2dd4d6[_0x2ab0f0(0x3dc,'\x43\x24\x6b\x59')],_0x23371b&&_0x23371b[_0x2ab0f0(0x223,'\x41\x61\x4e\x5e')+'\x74\x68']?_0x2ab0f0(0x496,'\x62\x77\x24\x71')+_0x2ab0f0(0x351,'\x78\x72\x26\x31')+_0x23371b[_0x2ab0f0(0x1f7,'\x51\x25\x36\x48')+'\x74\x68']:_0x2dd4d6['\x47\x4c\x6f\x61\x4e'],'',_0x2ab0f0(0x37e,'\x40\x59\x59\x4e')+_0x2ab0f0(0x36d,'\x4e\x5d\x63\x28')+_0x2ab0f0(0x29b,'\x55\x21\x53\x5d')+_0x2ab0f0(0x256,'\x5e\x4f\x51\x64')+_0x2ab0f0(0x244,'\x50\x32\x4a\x4f')+_0x2ab0f0(0x3fe,'\x52\x37\x72\x51')+_0x2ab0f0(0x42c,'\x75\x40\x33\x66'),_0x2dd4d6[_0x2ab0f0(0x31e,'\x62\x77\x24\x71')],'',_0x2ab0f0(0x3c1,'\x4d\x66\x41\x40')+_0x2ab0f0(0x3e7,'\x2a\x70\x78\x4d')+_0x2ab0f0(0x18f,'\x62\x77\x24\x71')+_0x2ab0f0(0x47c,'\x6b\x6c\x50\x39')+_0x2ab0f0(0x434,'\x38\x42\x40\x43')+_0x2ab0f0(0x197,'\x34\x30\x5e\x33')+_0x2ab0f0(0x180,'\x38\x63\x5b\x75')+_0x2ab0f0(0x2f3,'\x72\x54\x6d\x41')+_0x2ab0f0(0x277,'\x2a\x47\x21\x6e')+_0x2ab0f0(0x295,'\x52\x25\x42\x57')+_0x2ab0f0(0x3a1,'\x65\x59\x57\x5e')+_0x2ab0f0(0x1d0,'\x40\x49\x37\x5b')+_0x2ab0f0(0x406,'\x23\x6c\x62\x63')+_0x2ab0f0(0x33b,'\x4d\x66\x41\x40')+_0x2ab0f0(0x3ea,'\x73\x61\x6c\x50')+_0x2ab0f0(0x275,'\x24\x6a\x29\x6f')+_0x2ab0f0(0x3c3,'\x50\x57\x66\x4b')+_0x2ab0f0(0x390,'\x25\x64\x23\x31')+'\x72\x74\x20\x64\x65\x6c\x61\x79'+'\x2e',_0x2dd4d6[_0x2ab0f0(0x2b7,'\x34\x30\x5e\x33')],_0x2dd4d6[_0x2ab0f0(0x479,'\x51\x49\x38\x7a')],'',_0x2ab0f0(0x326,'\x41\x61\x4e\x5e')+_0x2ab0f0(0x2d0,'\x38\x63\x5b\x75')+_0x2ab0f0(0x1c8,'\x23\x31\x51\x4f')+_0x2ab0f0(0x2ce,'\x52\x37\x72\x51')+_0x2ab0f0(0x24d,'\x69\x62\x23\x4b')+_0x2ab0f0(0x193,'\x25\x64\x23\x31')+_0x2ab0f0(0x22d,'\x40\x49\x37\x5b')+_0x2ab0f0(0x22a,'\x39\x5d\x36\x31')+_0x2ab0f0(0x2b5,'\x38\x63\x5b\x75')+_0x2ab0f0(0x1f3,'\x77\x5b\x6c\x52'),_0x2dd4d6[_0x2ab0f0(0x1c3,'\x34\x68\x4b\x43')](_0x1a5da9,_0x351f89,0x9a3f+0x9269+0x113e*-0xc)][_0x2ab0f0(0x47f,'\x62\x77\x24\x71')]('\x0a'),_0x3513d9=_0x2dd4d6[_0x2ab0f0(0x198,'\x55\x21\x53\x5d')](_0x3b5651,{'\x74\x61\x73\x6b':_0x2d75ef,'\x61\x67\x65\x6e\x74\x49\x64':_0x9d5ac2,'\x63\x6c\x65\x61\x6e\x75\x70':_0x2dd4d6[_0x2ab0f0(0x2de,'\x31\x5e\x24\x32')],'\x6c\x61\x62\x65\x6c':_0x2ab0f0(0x34b,'\x24\x6a\x29\x6f')+'\x67\x65\x5f'+_0x1380b2});console[_0x2ab0f0(0x3e1,'\x4e\x5d\x63\x28')](_0x2dd4d6[_0x2ab0f0(0x186,'\x4e\x5d\x63\x28')]),console[_0x2ab0f0(0x232,'\x47\x41\x48\x7a')](_0x3513d9),_0x55b1dc&&(console[_0x2ab0f0(0x392,'\x34\x30\x5e\x33')](_0x2ab0f0(0x460,'\x43\x24\x6b\x59')+'\x20\x4f\x55\x54\x50\x55\x54\x5d'+_0x2ab0f0(0x1d8,'\x47\x41\x48\x7a')+_0x2ab0f0(0x333,'\x73\x61\x6c\x50')+_0x2ab0f0(0x1e3,'\x47\x41\x48\x7a')+_0x2ab0f0(0x4aa,'\x7a\x59\x78\x52')),console[_0x2ab0f0(0x189,'\x51\x25\x36\x48')](_0x351f89));}else _0x2dd4d6[_0x2ab0f0(0x3d9,'\x43\x24\x6b\x59')](_0x2dd4d6[_0x2ab0f0(0x361,'\x51\x49\x38\x7a')],'\x62\x6e\x65\x65\x70')?(console[_0x2ab0f0(0x230,'\x40\x49\x37\x5b')](_0x351f89),console[_0x2ab0f0(0x25e,'\x52\x37\x72\x51')](_0x2dd4d6[_0x2ab0f0(0x185,'\x5e\x4f\x51\x64')])):_0x517eb3={};}const _0x21da73={};_0x21da73[_0x571477(0x3fa,'\x23\x31\x51\x4f')]=_0x267573,module[_0x571477(0x26f,'\x52\x25\x42\x57')]=_0x21da73;
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { execSync } = require('child_process');
|
|
4
|
+
const { getLastEventId } = require('../../gep/assetStore');
|
|
5
|
+
const { buildGepPrompt, buildReusePrompt, buildHubMatchedBlock } = require('../../gep/prompt');
|
|
6
|
+
const { logAssetCall, assetCostIndex } = require('../../gep/assetCallLog');
|
|
7
|
+
const { estimateReuseTokensSaved, applyModeSaving } = require('../../gep/tokenSavings');
|
|
8
|
+
const { readStateForSolidify, writeStateForSolidify } = require('../../gep/solidify');
|
|
9
|
+
const { clip, writePromptArtifact, renderSessionsSpawnCall } = require('../../gep/bridge');
|
|
10
|
+
const { getEvolutionDir, getRepoRoot } = require('../../gep/paths');
|
|
11
|
+
const { tryExplore } = require('../../gep/explore');
|
|
12
|
+
|
|
13
|
+
const MAX_EXEC_BUFFER = 10 * 1024 * 1024;
|
|
14
|
+
|
|
15
|
+
// ---------------------------------------------------------------------------
|
|
16
|
+
// Stage 7 — Prompt Build & Dispatch
|
|
17
|
+
// ---------------------------------------------------------------------------
|
|
18
|
+
// Input ctx fields (from prior stages + module-level flags injected by run()):
|
|
19
|
+
// bridgeEnabled (Stage 1)
|
|
20
|
+
// recentMasterLog, todayLog, memorySnippet, userSnippet, cycleNum, cycleId,
|
|
21
|
+
// mutationDirective, healthReport, fileList, reportingDirective, moodStatus,
|
|
22
|
+
// memorySize, syncDirective, localStateSummary (Stage 2)
|
|
23
|
+
// genes, capsules, recentEvents, signals, skipHubCalls (Stage 3)
|
|
24
|
+
// hubHit, activeTask, hubLessons, heartbeatActionContext, sharedKnowledgeContext,
|
|
25
|
+
// externalCandidatesPreview, capabilityCandidatesPreview, recentFailedCapsules (Stage 4/5)
|
|
26
|
+
// selectedGene, capsuleCandidates, selector, selectedBy, selectedCapsuleId,
|
|
27
|
+
// strategyPolicy, personalitySelection, personalityState, mutation, forceInnovation (Stage 6)
|
|
28
|
+
// IS_RANDOM_DRIFT, IS_REVIEW_MODE, IS_DRY_RUN, AGENT_NAME,
|
|
29
|
+
// scanTime, initialUserPrompt (injected by run() at dispatch call-site)
|
|
30
|
+
// Returns: nothing (terminal stage — outputs via console or bridge)
|
|
31
|
+
|
|
32
|
+
async function dispatch(ctx) {
|
|
33
|
+
const {
|
|
34
|
+
bridgeEnabled,
|
|
35
|
+
recentMasterLog, todayLog, memorySnippet, userSnippet,
|
|
36
|
+
cycleNum, cycleId, mutationDirective, healthReport, fileList,
|
|
37
|
+
reportingDirective, moodStatus, memorySize, syncDirective, localStateSummary,
|
|
38
|
+
genes, capsules, recentEvents, signals, skipHubCalls,
|
|
39
|
+
hubHit, activeTask, hubLessons,
|
|
40
|
+
heartbeatActionContext, sharedKnowledgeContext,
|
|
41
|
+
externalCandidatesPreview, capabilityCandidatesPreview,
|
|
42
|
+
recentFailedCapsules,
|
|
43
|
+
selectedGene, capsuleCandidates, selector, selectedBy, selectedCapsuleId,
|
|
44
|
+
strategyPolicy, personalitySelection, personalityState, mutation, forceInnovation,
|
|
45
|
+
IS_RANDOM_DRIFT, IS_REVIEW_MODE, IS_DRY_RUN, AGENT_NAME,
|
|
46
|
+
scanTime, initialUserPrompt,
|
|
47
|
+
openPRHints,
|
|
48
|
+
} = ctx;
|
|
49
|
+
|
|
50
|
+
const REPO_ROOT = getRepoRoot();
|
|
51
|
+
|
|
52
|
+
// Solidify state: capture minimal, auditable context for post-patch validation + asset write.
|
|
53
|
+
// This enforces strict protocol closure after patch application.
|
|
54
|
+
try {
|
|
55
|
+
const runId = `run_${Date.now()}`;
|
|
56
|
+
const parentEventId = getLastEventId();
|
|
57
|
+
|
|
58
|
+
// Baseline snapshot (before any edits).
|
|
59
|
+
let baselineUntracked = [];
|
|
60
|
+
let baselineHead = null;
|
|
61
|
+
try {
|
|
62
|
+
const out = execSync('git ls-files --others --exclude-standard', {
|
|
63
|
+
cwd: REPO_ROOT,
|
|
64
|
+
encoding: 'utf8',
|
|
65
|
+
stdio: ['ignore', 'pipe', 'ignore'],
|
|
66
|
+
timeout: 4000,
|
|
67
|
+
windowsHide: true, maxBuffer: MAX_EXEC_BUFFER
|
|
68
|
+
});
|
|
69
|
+
baselineUntracked = String(out)
|
|
70
|
+
.split('\n')
|
|
71
|
+
.map(l => l.trim())
|
|
72
|
+
.filter(Boolean);
|
|
73
|
+
} catch (e) {
|
|
74
|
+
console.warn('[SolidifyState] Failed to read baseline untracked files:', e && e.message || e);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
try {
|
|
78
|
+
const out = execSync('git rev-parse HEAD', {
|
|
79
|
+
cwd: REPO_ROOT,
|
|
80
|
+
encoding: 'utf8',
|
|
81
|
+
stdio: ['ignore', 'pipe', 'ignore'],
|
|
82
|
+
timeout: 4000,
|
|
83
|
+
windowsHide: true, maxBuffer: MAX_EXEC_BUFFER
|
|
84
|
+
});
|
|
85
|
+
baselineHead = String(out || '').trim() || null;
|
|
86
|
+
} catch (e) {
|
|
87
|
+
console.warn('[SolidifyState] Failed to read git HEAD:', e && e.message || e);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const maxFiles = strategyPolicy && Number.isFinite(Number(strategyPolicy.blastRadiusMaxFiles))
|
|
91
|
+
? Number(strategyPolicy.blastRadiusMaxFiles)
|
|
92
|
+
: (
|
|
93
|
+
selectedGene && selectedGene.constraints && Number.isFinite(Number(selectedGene.constraints.max_files))
|
|
94
|
+
? Number(selectedGene.constraints.max_files)
|
|
95
|
+
: 12
|
|
96
|
+
);
|
|
97
|
+
const blastRadiusEstimate = {
|
|
98
|
+
files: Number.isFinite(maxFiles) && maxFiles > 0 ? maxFiles : 0,
|
|
99
|
+
lines: Number.isFinite(maxFiles) && maxFiles > 0 ? Math.round(maxFiles * 80) : 0,
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
// Merge into existing state to preserve last_solidify (do not wipe it).
|
|
103
|
+
const prevState = readStateForSolidify();
|
|
104
|
+
prevState.last_run = {
|
|
105
|
+
run_id: runId,
|
|
106
|
+
created_at: new Date().toISOString(),
|
|
107
|
+
parent_event_id: parentEventId || null,
|
|
108
|
+
selected_gene_id: selectedGene && selectedGene.id ? selectedGene.id : null,
|
|
109
|
+
selected_capsule_id: selectedCapsuleId,
|
|
110
|
+
selector: selector || null,
|
|
111
|
+
signals: Array.isArray(signals) ? signals : [],
|
|
112
|
+
mutation: mutation || null,
|
|
113
|
+
mutation_id: mutation && mutation.id ? mutation.id : null,
|
|
114
|
+
personality_state: personalityState || null,
|
|
115
|
+
personality_key: personalitySelection && personalitySelection.personality_key ? personalitySelection.personality_key : null,
|
|
116
|
+
personality_known: !!(personalitySelection && personalitySelection.personality_known),
|
|
117
|
+
personality_mutations:
|
|
118
|
+
personalitySelection && Array.isArray(personalitySelection.personality_mutations)
|
|
119
|
+
? personalitySelection.personality_mutations
|
|
120
|
+
: [],
|
|
121
|
+
drift: !!IS_RANDOM_DRIFT,
|
|
122
|
+
selected_by: selectedBy,
|
|
123
|
+
source_type: hubHit && hubHit.hit ? (hubHit.mode === 'direct' ? 'reused' : 'reference') : 'generated',
|
|
124
|
+
reused_asset_id: hubHit && hubHit.hit ? (hubHit.asset_id || null) : null,
|
|
125
|
+
reused_source_node: hubHit && hubHit.hit ? (hubHit.source_node_id || null) : null,
|
|
126
|
+
reused_chain_id: hubHit && hubHit.hit ? (hubHit.chain_id || null) : null,
|
|
127
|
+
baseline_untracked: baselineUntracked,
|
|
128
|
+
baseline_git_head: baselineHead,
|
|
129
|
+
blast_radius_estimate: blastRadiusEstimate,
|
|
130
|
+
strategy_policy: strategyPolicy,
|
|
131
|
+
active_task_id: activeTask ? (activeTask.id || activeTask.task_id || null) : null,
|
|
132
|
+
active_task_title: activeTask ? (activeTask.title || null) : null,
|
|
133
|
+
worker_assignment_id: activeTask ? (activeTask._worker_assignment_id || null) : null,
|
|
134
|
+
worker_pending: activeTask ? (activeTask._worker_pending || false) : false,
|
|
135
|
+
commitment_deadline: activeTask ? (activeTask._commitment_deadline || null) : null,
|
|
136
|
+
applied_lessons: hubLessons.map(function(l) { return l.lesson_id; }).filter(Boolean),
|
|
137
|
+
hub_lessons: hubLessons,
|
|
138
|
+
cycleId: cycleNum,
|
|
139
|
+
initial_user_prompt: initialUserPrompt,
|
|
140
|
+
};
|
|
141
|
+
writeStateForSolidify(prevState);
|
|
142
|
+
|
|
143
|
+
if (hubHit && hubHit.hit) {
|
|
144
|
+
const assetAction = hubHit.mode === 'direct' ? 'asset_reuse' : 'asset_reference';
|
|
145
|
+
// Attribute a token saving to this reuse. Prefer the asset's MEASURED
|
|
146
|
+
// derivation cost (carried on the asset, or recorded locally when this
|
|
147
|
+
// node derived it); fall back to a grounded blast_radius estimate. A
|
|
148
|
+
// savings-estimate error must never block the dispatch.
|
|
149
|
+
let tokensSaved = null;
|
|
150
|
+
let tokensSavedBasis = null;
|
|
151
|
+
try {
|
|
152
|
+
const match = hubHit.match || {};
|
|
153
|
+
const dt = match.derivation_tokens || (match.payload && match.payload.derivation_tokens) || null;
|
|
154
|
+
let measured = dt && Number(dt.total_tokens) > 0 ? Number(dt.total_tokens) : null;
|
|
155
|
+
if (measured == null && hubHit.asset_id) {
|
|
156
|
+
let idx = {};
|
|
157
|
+
try { idx = (typeof assetCostIndex === 'function' ? assetCostIndex() : null) || {}; } catch (_) { idx = {}; }
|
|
158
|
+
if (Number(idx[hubHit.asset_id]) > 0) measured = Number(idx[hubHit.asset_id]);
|
|
159
|
+
}
|
|
160
|
+
if (measured != null) {
|
|
161
|
+
// Scale the measured derivation cost by the reuse mode the same way
|
|
162
|
+
// the estimated path does: a 'reference' reuse still re-derives, so it
|
|
163
|
+
// saves only a fraction. Without this, a reference reuse with a
|
|
164
|
+
// measured cost overstated savings (credited the full derivation).
|
|
165
|
+
tokensSaved = applyModeSaving(measured, hubHit.mode);
|
|
166
|
+
tokensSavedBasis = 'measured';
|
|
167
|
+
} else {
|
|
168
|
+
const est = estimateReuseTokensSaved(match, hubHit.mode);
|
|
169
|
+
tokensSaved = est.tokens_saved;
|
|
170
|
+
tokensSavedBasis = est.basis;
|
|
171
|
+
}
|
|
172
|
+
} catch (e) {
|
|
173
|
+
tokensSaved = null;
|
|
174
|
+
tokensSavedBasis = null;
|
|
175
|
+
}
|
|
176
|
+
logAssetCall({
|
|
177
|
+
run_id: runId,
|
|
178
|
+
action: assetAction,
|
|
179
|
+
asset_id: hubHit.asset_id || null,
|
|
180
|
+
asset_type: hubHit.match && hubHit.match.type ? hubHit.match.type : null,
|
|
181
|
+
source_node_id: hubHit.source_node_id || null,
|
|
182
|
+
chain_id: hubHit.chain_id || null,
|
|
183
|
+
score: hubHit.score || null,
|
|
184
|
+
mode: hubHit.mode,
|
|
185
|
+
signals: Array.isArray(signals) ? signals : [],
|
|
186
|
+
tokens_saved: tokensSaved,
|
|
187
|
+
tokens_saved_basis: tokensSavedBasis,
|
|
188
|
+
extra: {
|
|
189
|
+
selected_gene_id: selectedGene && selectedGene.id ? selectedGene.id : null,
|
|
190
|
+
task_id: activeTask ? (activeTask.id || activeTask.task_id || null) : null,
|
|
191
|
+
},
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
} catch (e) {
|
|
195
|
+
console.error(`[SolidifyState] Write failed: ${e.message}`);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (skipHubCalls) {
|
|
199
|
+
try {
|
|
200
|
+
const exploreResult = await tryExplore(signals, null, REPO_ROOT);
|
|
201
|
+
if (exploreResult && exploreResult.signals && exploreResult.signals.length > 0) {
|
|
202
|
+
console.log('[Explore] Discovered ' + exploreResult.signals.length + ' new signals during idle exploration.');
|
|
203
|
+
for (var ei = 0; ei < exploreResult.signals.length; ei++) {
|
|
204
|
+
if (!signals.includes(exploreResult.signals[ei])) {
|
|
205
|
+
signals.push(exploreResult.signals[ei]);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
} catch (exploreErr) {
|
|
210
|
+
console.error('[Explore] Error during idle exploration: ' + exploreErr.message);
|
|
211
|
+
}
|
|
212
|
+
console.log('[IdleGating] Idle cycle complete. Prompt generation and bridge spawning skipped.');
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
const genesPreview = `\`\`\`json\n${JSON.stringify(genes.slice(0, 6), null, 2)}\n\`\`\``;
|
|
217
|
+
const capsulesPreview = `\`\`\`json\n${JSON.stringify(capsules.slice(-3), null, 2)}\n\`\`\``;
|
|
218
|
+
|
|
219
|
+
const reviewNote = IS_REVIEW_MODE
|
|
220
|
+
? 'Review mode: before significant edits, pause and ask the user for confirmation.'
|
|
221
|
+
: 'Review mode: disabled.';
|
|
222
|
+
|
|
223
|
+
// Build recent evolution history summary for context injection
|
|
224
|
+
const recentHistorySummary = (() => {
|
|
225
|
+
if (!recentEvents || recentEvents.length === 0) return '(no prior evolution events)';
|
|
226
|
+
const last8 = recentEvents.slice(-8);
|
|
227
|
+
const lines = last8.map((evt, idx) => {
|
|
228
|
+
const sigs = Array.isArray(evt.signals) ? evt.signals.slice(0, 3).join(', ') : '?';
|
|
229
|
+
const gene = Array.isArray(evt.genes_used) && evt.genes_used.length ? evt.genes_used[0] : 'none';
|
|
230
|
+
const outcome = evt.outcome && evt.outcome.status ? evt.outcome.status : '?';
|
|
231
|
+
const ts = evt.meta && evt.meta.at ? evt.meta.at : (evt.id || '');
|
|
232
|
+
return ` ${idx + 1}. [${evt.intent || '?'}] signals=[${sigs}] gene=${gene} outcome=${outcome} @${ts}`;
|
|
233
|
+
});
|
|
234
|
+
return lines.join('\n');
|
|
235
|
+
})();
|
|
236
|
+
|
|
237
|
+
const context = `
|
|
238
|
+
Initial User Prompt (Original Intent):
|
|
239
|
+
${initialUserPrompt ? '```\n' + initialUserPrompt + '\n```' : '(not available)'}
|
|
240
|
+
|
|
241
|
+
Runtime state:
|
|
242
|
+
- System health: ${healthReport}
|
|
243
|
+
- Agent state: ${moodStatus}
|
|
244
|
+
- Scan duration: ${scanTime}ms
|
|
245
|
+
- Memory size: ${memorySize} bytes
|
|
246
|
+
- Skills available (if any):
|
|
247
|
+
${fileList || '[skills directory not found]'}
|
|
248
|
+
|
|
249
|
+
Local State (ALREADY CONFIGURED -- do NOT duplicate):
|
|
250
|
+
${localStateSummary}
|
|
251
|
+
|
|
252
|
+
Notes:
|
|
253
|
+
- ${reviewNote}
|
|
254
|
+
- ${reportingDirective}
|
|
255
|
+
- ${syncDirective}
|
|
256
|
+
|
|
257
|
+
Recent Evolution History (last 8 cycles -- DO NOT repeat the same intent+signal+gene):
|
|
258
|
+
${recentHistorySummary}
|
|
259
|
+
IMPORTANT: If you see 3+ consecutive "repair" cycles with the same gene, you MUST switch to "innovate" intent.
|
|
260
|
+
${(() => {
|
|
261
|
+
// Compute consecutive failure count from recent events for context injection
|
|
262
|
+
let cfc = 0;
|
|
263
|
+
const evts = Array.isArray(recentEvents) ? recentEvents : [];
|
|
264
|
+
for (let i = evts.length - 1; i >= 0; i--) {
|
|
265
|
+
if (evts[i] && evts[i].outcome && evts[i].outcome.status === 'failed') cfc++;
|
|
266
|
+
else break;
|
|
267
|
+
}
|
|
268
|
+
if (cfc >= 3) {
|
|
269
|
+
return `\nFAILURE STREAK WARNING: The last ${cfc} cycles ALL FAILED. You MUST change your approach.\n- Do NOT repeat the same gene/strategy. Pick a completely different approach.\n- If the error is external (API down, binary missing), mark as FAILED and move on.\n- Prefer a minimal safe innovate cycle over yet another failing repair.`;
|
|
270
|
+
}
|
|
271
|
+
return '';
|
|
272
|
+
})()}
|
|
273
|
+
|
|
274
|
+
External candidates (A2A receive zone; staged only, never execute directly):
|
|
275
|
+
${externalCandidatesPreview}
|
|
276
|
+
|
|
277
|
+
Global memory (MEMORY.md):
|
|
278
|
+
\`\`\`
|
|
279
|
+
${memorySnippet}
|
|
280
|
+
\`\`\`
|
|
281
|
+
|
|
282
|
+
User registry (USER.md):
|
|
283
|
+
\`\`\`
|
|
284
|
+
${userSnippet}
|
|
285
|
+
\`\`\`
|
|
286
|
+
|
|
287
|
+
Recent memory snippet:
|
|
288
|
+
\`\`\`
|
|
289
|
+
${todayLog.slice(-3000)}
|
|
290
|
+
\`\`\`
|
|
291
|
+
|
|
292
|
+
Recent session transcript:
|
|
293
|
+
\`\`\`
|
|
294
|
+
${recentMasterLog}
|
|
295
|
+
\`\`\`
|
|
296
|
+
|
|
297
|
+
Mutation directive:
|
|
298
|
+
${mutationDirective}
|
|
299
|
+
${heartbeatActionContext}
|
|
300
|
+
${sharedKnowledgeContext}
|
|
301
|
+
`.trim();
|
|
302
|
+
|
|
303
|
+
// Build the prompt: in direct-reuse mode, use a minimal reuse prompt.
|
|
304
|
+
// In reference mode (or no hit), use the full GEP prompt with hub match injected.
|
|
305
|
+
const isDirectReuse = hubHit && hubHit.hit && hubHit.mode === 'direct';
|
|
306
|
+
const hubMatchedBlock = hubHit && hubHit.hit && hubHit.mode === 'reference'
|
|
307
|
+
? buildHubMatchedBlock({ capsule: hubHit.match })
|
|
308
|
+
: null;
|
|
309
|
+
|
|
310
|
+
const prompt = isDirectReuse
|
|
311
|
+
? buildReusePrompt({
|
|
312
|
+
capsule: hubHit.match,
|
|
313
|
+
signals,
|
|
314
|
+
nowIso: new Date().toISOString(),
|
|
315
|
+
})
|
|
316
|
+
: buildGepPrompt({
|
|
317
|
+
nowIso: new Date().toISOString(),
|
|
318
|
+
context,
|
|
319
|
+
signals,
|
|
320
|
+
selector,
|
|
321
|
+
parentEventId: getLastEventId(),
|
|
322
|
+
selectedGene,
|
|
323
|
+
capsuleCandidates,
|
|
324
|
+
genesPreview,
|
|
325
|
+
capsulesPreview,
|
|
326
|
+
capabilityCandidatesPreview,
|
|
327
|
+
externalCandidatesPreview,
|
|
328
|
+
hubMatchedBlock,
|
|
329
|
+
strategyPolicy,
|
|
330
|
+
failedCapsules: recentFailedCapsules,
|
|
331
|
+
hubLessons,
|
|
332
|
+
cycleId: cycleNum,
|
|
333
|
+
initialUserPrompt,
|
|
334
|
+
openPRHints,
|
|
335
|
+
});
|
|
336
|
+
|
|
337
|
+
// Optional: emit a compact thought process block for wrappers (noise-controlled).
|
|
338
|
+
const emitThought = String(process.env.EVOLVE_EMIT_THOUGHT_PROCESS || '').toLowerCase() === 'true';
|
|
339
|
+
if (emitThought) {
|
|
340
|
+
const s = Array.isArray(signals) ? signals : [];
|
|
341
|
+
const thought = [
|
|
342
|
+
`cycle_id: ${cycleId}`,
|
|
343
|
+
`signals_count: ${s.length}`,
|
|
344
|
+
`signals: ${s.slice(0, 12).join(', ')}${s.length > 12 ? ' ...' : ''}`,
|
|
345
|
+
`selected_gene: ${selectedGene && selectedGene.id ? String(selectedGene.id) : '(none)'}`,
|
|
346
|
+
`selected_capsule: ${selectedCapsuleId ? String(selectedCapsuleId) : '(none)'}`,
|
|
347
|
+
`mutation_category: ${mutation && mutation.category ? String(mutation.category) : '(none)'}`,
|
|
348
|
+
`force_innovation: ${forceInnovation ? 'true' : 'false'}`,
|
|
349
|
+
`source_type: ${hubHit && hubHit.hit ? (isDirectReuse ? 'reused' : 'reference') : 'generated'}`,
|
|
350
|
+
`hub_reuse_mode: ${isDirectReuse ? 'direct' : hubMatchedBlock ? 'reference' : 'none'}`,
|
|
351
|
+
].join('\n');
|
|
352
|
+
console.log(`[THOUGHT_PROCESS]\n${thought}\n[/THOUGHT_PROCESS]`);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
const printPrompt = String(process.env.EVOLVE_PRINT_PROMPT || '').toLowerCase() === 'true';
|
|
356
|
+
|
|
357
|
+
// Default behavior (v1.4.1+): "execute-by-default" by bridging prompt -> sub-agent via sessions_spawn.
|
|
358
|
+
// This project is the Brain; the Hand is a spawned executor agent. Wrappers can disable bridging with EVOLVE_BRIDGE=false.
|
|
359
|
+
if (bridgeEnabled) {
|
|
360
|
+
// Reuse the run_id stored in the solidify state when possible.
|
|
361
|
+
let runId = `run_${Date.now()}`;
|
|
362
|
+
try {
|
|
363
|
+
const st = readStateForSolidify();
|
|
364
|
+
if (st && st.last_run && st.last_run.run_id) runId = String(st.last_run.run_id);
|
|
365
|
+
} catch (e) {}
|
|
366
|
+
let artifact = null;
|
|
367
|
+
try {
|
|
368
|
+
artifact = writePromptArtifact({
|
|
369
|
+
memoryDir: getEvolutionDir(),
|
|
370
|
+
cycleId,
|
|
371
|
+
runId,
|
|
372
|
+
prompt,
|
|
373
|
+
meta: {
|
|
374
|
+
agent: AGENT_NAME,
|
|
375
|
+
drift_enabled: IS_RANDOM_DRIFT,
|
|
376
|
+
review_mode: IS_REVIEW_MODE,
|
|
377
|
+
dry_run: IS_DRY_RUN,
|
|
378
|
+
mutation_id: mutation && mutation.id ? mutation.id : null,
|
|
379
|
+
personality_key: personalitySelection && personalitySelection.personality_key ? personalitySelection.personality_key : null,
|
|
380
|
+
},
|
|
381
|
+
});
|
|
382
|
+
} catch (e) {
|
|
383
|
+
artifact = null;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
const executorTask = [
|
|
387
|
+
'You are the executor (the Hand).',
|
|
388
|
+
'Your job is to apply a safe, minimal patch in this repo following the attached GEP protocol prompt.',
|
|
389
|
+
artifact && artifact.promptPath ? `Prompt file: ${artifact.promptPath}` : 'Prompt file: (unavailable)',
|
|
390
|
+
'',
|
|
391
|
+
'After applying changes and validations, you MUST run:',
|
|
392
|
+
' node index.js solidify',
|
|
393
|
+
'',
|
|
394
|
+
'Loop chaining (only if you are running in loop mode): after solidify succeeds, print a sessions_spawn call to start the next loop run with a short delay.',
|
|
395
|
+
'Example:',
|
|
396
|
+
'sessions_spawn({ task: "exec: node skills/evolver/index.js evolve", agentId: "main", cleanup: "delete", label: "gep_loop_next" })',
|
|
397
|
+
'',
|
|
398
|
+
'GEP protocol prompt (may be truncated here; prefer the prompt file if provided):',
|
|
399
|
+
clip(prompt, 24000),
|
|
400
|
+
].join('\n');
|
|
401
|
+
|
|
402
|
+
const spawn = renderSessionsSpawnCall({
|
|
403
|
+
task: executorTask,
|
|
404
|
+
agentId: AGENT_NAME,
|
|
405
|
+
cleanup: 'delete',
|
|
406
|
+
label: `gep_bridge_${cycleNum}`,
|
|
407
|
+
});
|
|
408
|
+
|
|
409
|
+
console.log('\n[BRIDGE ENABLED] Spawning executor agent via sessions_spawn.');
|
|
410
|
+
console.log(spawn);
|
|
411
|
+
if (printPrompt) {
|
|
412
|
+
console.log('\n[PROMPT OUTPUT] (EVOLVE_PRINT_PROMPT=true)');
|
|
413
|
+
console.log(prompt);
|
|
414
|
+
}
|
|
415
|
+
} else {
|
|
416
|
+
console.log(prompt);
|
|
417
|
+
console.log('\n[SOLIDIFY REQUIRED] After applying the patch and validations, run: node index.js solidify');
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
module.exports = { dispatch };
|