@evomap/evolver 1.89.10 → 1.89.12
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 +1367 -0
- package/README.ja-JP.md +1 -1
- package/README.ko-KR.md +1 -1
- package/README.md +90 -536
- package/README.public.md +578 -0
- package/README.zh-CN.md +1 -1
- package/SECURITY.md +108 -0
- package/assets/gep/events.jsonl +3 -0
- package/examples/atp-consumer-quickstart.md +100 -0
- package/examples/hello-world.md +38 -0
- package/index.js +5 -3
- package/package.json +6 -18
- package/proxy-package.json +39 -0
- package/public.manifest.json +145 -0
- package/src/adapters/scripts/evolver-session-end.js +18 -37
- package/src/atp/atpExecute.js +27 -71
- package/src/atp/serviceHelper.js +28 -36
- package/src/config.js +17 -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/gep/a2aProtocol.js +4463 -1
- package/src/gep/antiAbuseTelemetry.js +233 -1
- 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/conversationDistiller.js +270 -0
- 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 +712 -1
- package/src/gep/explore.js +289 -1
- package/src/gep/hash.js +15 -1
- package/src/gep/hubFetch.js +608 -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 +1449 -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/oauthLogin.js +9 -3
- package/src/gep/openPRRegistry.js +205 -1
- package/src/gep/personality.js +423 -1
- package/src/gep/policyCheck.js +599 -1
- package/src/gep/privacyClient.js +10 -9
- package/src/gep/prompt.js +836 -1
- package/src/gep/questionGenerator.js +103 -0
- package/src/gep/recallInject.js +409 -1
- package/src/gep/recallVerifier.js +318 -1
- package/src/gep/reflection.js +177 -1
- package/src/gep/savingsCore.js +112 -1
- package/src/gep/selector.js +602 -1
- package/src/gep/signals.js +85 -17
- 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 +95 -1
- package/src/gep/workspaceKeychain.js +174 -1
- package/src/proxy/extensions/traceControl.js +109 -1
- package/src/proxy/index.js +100 -3
- package/src/proxy/inject.js +52 -1
- package/src/proxy/lifecycle/manager.js +108 -7
- package/src/proxy/server/routes.js +41 -7
- package/src/proxy/server/settings.js +6 -2
- package/src/proxy/sync/engine.js +31 -15
- package/src/proxy/sync/inbound.js +87 -9
- package/src/proxy/sync/outbound.js +57 -4
- package/src/proxy/trace/extractor.js +1403 -1
- package/src/proxy/trace/usage.js +105 -1
- package/CONTRIBUTING.md +0 -19
- package/assets/cover.png +0 -0
- 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/refresh_stars_badge.js +0 -168
- 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/assets/gep/{genes.seed.json → genes.json} +0 -0
- /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
package/src/gep/mutation.js
CHANGED
|
@@ -1 +1,203 @@
|
|
|
1
|
-
const _0x4c3c9d=_0x281c;(function(_0x12eb50,_0x57e4a9){const _0x363ffa=_0x281c,_0x2546ba=_0x12eb50();while(!![]){try{const _0x12efa6=parseInt(_0x363ffa(0x2e6,'\x45\x21\x6e\x50'))/(-0x11*0x55+0xb63+-0x5bd)*(parseInt(_0x363ffa(0x284,'\x40\x4a\x7a\x57'))/(0x1*0x6fb+-0x2*0xa13+0xd2d))+parseInt(_0x363ffa(0x38e,'\x4a\x64\x63\x48'))/(0xaa5+-0x1a8*0x16+0x19ce)*(parseInt(_0x363ffa(0x3a0,'\x78\x4d\x37\x43'))/(-0x2*0x13d+-0x1153+0x13d1*0x1))+-parseInt(_0x363ffa(0x2fe,'\x23\x35\x5b\x54'))/(0x163a+0x1de8+-0x341d)+parseInt(_0x363ffa(0x3ad,'\x79\x6a\x4e\x24'))/(-0x1562+0xd81*-0x1+-0x1*-0x22e9)*(-parseInt(_0x363ffa(0x252,'\x70\x41\x6f\x37'))/(-0x214c+0x141*-0xd+0x31a0))+parseInt(_0x363ffa(0x29a,'\x44\x61\x5d\x39'))/(-0x2638+-0x1e3+0x2823)*(parseInt(_0x363ffa(0x25b,'\x23\x56\x59\x48'))/(0x8*0x1ab+0x216*-0x9+0x577))+-parseInt(_0x363ffa(0x1c7,'\x29\x5d\x29\x78'))/(-0x13a+0x116d+0x15*-0xc5)+parseInt(_0x363ffa(0x2c9,'\x6e\x35\x5e\x75'))/(0x5fd*-0x5+0x1d11*0x1+-0x1*-0xeb);if(_0x12efa6===_0x57e4a9)break;else _0x2546ba['push'](_0x2546ba['shift']());}catch(_0x13e0e4){_0x2546ba['push'](_0x2546ba['shift']());}}}(_0x5578,-0x12583*-0x7+0xb0fb+-0x26e40));const _0x57263f=(function(){const _0x3fa330=_0x281c,_0x7c318f={'\x54\x74\x6f\x50\x44':'\x33\x7c\x32\x7c\x38\x7c\x30\x7c'+_0x3fa330(0x314,'\x31\x5d\x61\x57')+'\x37','\x58\x7a\x62\x79\x65':function(_0xa743c8,_0x2026fb){return _0xa743c8!==_0x2026fb;},'\x51\x66\x48\x77\x6b':_0x3fa330(0x1f8,'\x76\x5a\x58\x23'),'\x58\x4d\x4c\x74\x43':function(_0x42e3d4,_0x3d4aa4){return _0x42e3d4!==_0x3d4aa4;},'\x50\x6c\x6b\x45\x6d':_0x3fa330(0x27d,'\x29\x29\x32\x41'),'\x48\x78\x6a\x42\x4f':function(_0x577edc,_0xb99a02){return _0x577edc!==_0xb99a02;},'\x6e\x6f\x52\x52\x6d':_0x3fa330(0x277,'\x5d\x53\x48\x26'),'\x68\x74\x4f\x7a\x75':function(_0x176092,_0x4c9ae3){return _0x176092(_0x4c9ae3);},'\x75\x78\x45\x58\x4f':_0x3fa330(0x328,'\x5a\x39\x23\x4f'),'\x74\x4b\x4c\x6a\x64':_0x3fa330(0x361,'\x4e\x29\x57\x4b'),'\x53\x51\x4a\x45\x6d':function(_0x2f8570,_0x426e1f){return _0x2f8570===_0x426e1f;},'\x4c\x42\x59\x47\x4e':_0x3fa330(0x37e,'\x78\x4d\x37\x43'),'\x73\x6d\x66\x53\x50':_0x3fa330(0x309,'\x63\x65\x5d\x49'),'\x72\x75\x64\x71\x6b':_0x3fa330(0x2d1,'\x78\x4d\x37\x43')+_0x3fa330(0x1be,'\x30\x4b\x32\x65')+'\x6c'};let _0x5e0960=!![];return function(_0x55ae66,_0x39fdac){const _0x32bd80=_0x3fa330,_0x4ff82c={'\x72\x6d\x70\x79\x42':function(_0x29dd56,_0x3f2e04){const _0xc40f62=_0x281c;return _0x7c318f[_0xc40f62(0x2e1,'\x76\x5a\x58\x23')](_0x29dd56,_0x3f2e04);},'\x53\x75\x50\x72\x71':_0x32bd80(0x1f7,'\x4c\x61\x26\x30'),'\x64\x44\x69\x6d\x55':_0x32bd80(0x373,'\x5e\x48\x21\x47'),'\x43\x4e\x4f\x6d\x4a':_0x7c318f[_0x32bd80(0x390,'\x26\x70\x45\x6a')],'\x56\x6f\x54\x48\x79':function(_0x199c38,_0x16dcf1){const _0x279e62=_0x32bd80;return _0x7c318f[_0x279e62(0x223,'\x5d\x53\x48\x26')](_0x199c38,_0x16dcf1);},'\x46\x44\x58\x50\x70':function(_0x22e330,_0x18be78){const _0x40ee15=_0x32bd80;return _0x7c318f[_0x40ee15(0x276,'\x45\x21\x6e\x50')](_0x22e330,_0x18be78);},'\x74\x75\x6b\x41\x58':_0x7c318f[_0x32bd80(0x22f,'\x67\x4e\x31\x4f')],'\x76\x4a\x72\x4c\x68':_0x32bd80(0x23d,'\x52\x62\x36\x5d'),'\x6e\x74\x73\x48\x65':function(_0x5a3ab1,_0x3cc893){const _0x387509=_0x32bd80;return _0x7c318f[_0x387509(0x2b0,'\x4c\x61\x26\x30')](_0x5a3ab1,_0x3cc893);},'\x6b\x50\x6f\x76\x63':_0x32bd80(0x356,'\x6b\x77\x6e\x52')},_0x526876=_0x5e0960?function(){const _0x43cd2b=_0x32bd80,_0x42e025={'\x52\x4f\x4e\x51\x56':_0x7c318f[_0x43cd2b(0x2d9,'\x52\x62\x36\x5d')],'\x46\x4e\x61\x74\x48':function(_0x333278,_0x130140){const _0x621dda=_0x43cd2b;return _0x7c318f[_0x621dda(0x2a8,'\x4f\x53\x4c\x36')](_0x333278,_0x130140);},'\x79\x50\x43\x65\x64':_0x7c318f[_0x43cd2b(0x334,'\x26\x70\x45\x6a')],'\x51\x79\x63\x58\x78':function(_0x350c26,_0x467f35){const _0x4ccc35=_0x43cd2b;return _0x7c318f[_0x4ccc35(0x26a,'\x40\x4a\x7a\x57')](_0x350c26,_0x467f35);},'\x48\x51\x46\x64\x4a':_0x7c318f['\x50\x6c\x6b\x45\x6d'],'\x64\x78\x43\x52\x48':function(_0x33a53f,_0x1a0598){const _0x404e11=_0x43cd2b;return _0x7c318f[_0x404e11(0x343,'\x67\x5b\x43\x28')](_0x33a53f,_0x1a0598);},'\x4c\x6c\x6a\x41\x6b':_0x7c318f['\x6e\x6f\x52\x52\x6d'],'\x52\x67\x4a\x7a\x57':function(_0x570c41,_0x1c725f){const _0x3cef77=_0x43cd2b;return _0x7c318f[_0x3cef77(0x30a,'\x38\x5d\x36\x4b')](_0x570c41,_0x1c725f);}};if(_0x7c318f[_0x43cd2b(0x343,'\x67\x5b\x43\x28')](_0x7c318f[_0x43cd2b(0x2d0,'\x67\x5b\x43\x28')],_0x7c318f[_0x43cd2b(0x1e8,'\x67\x4e\x31\x4f')])){if(_0x39fdac){if(_0x7c318f[_0x43cd2b(0x263,'\x5e\x48\x21\x47')]('\x51\x6e\x50\x4b\x6f',_0x7c318f['\x4c\x42\x59\x47\x4e'])){const _0x11d2bc=_0x42e025[_0x43cd2b(0x298,'\x23\x5b\x4e\x62')][_0x43cd2b(0x2d2,'\x43\x4a\x75\x75')]('\x7c');let _0x610666=-0x70b+0x1428+-0x175*0x9;while(!![]){switch(_0x11d2bc[_0x610666++]){case'\x30':if(!_0x248650[_0x43cd2b(0x367,'\x5e\x59\x4e\x56')]||!_0x2e31ed[_0x43cd2b(0x222,'\x4c\x61\x26\x30')](_0x512c4a(_0x1f776b[_0x43cd2b(0x2f7,'\x31\x5d\x61\x57')])))return![];continue;case'\x31':if(!_0x33854d[_0x43cd2b(0x310,'\x6e\x35\x5e\x75')](_0x3e9498[_0x43cd2b(0x245,'\x29\x29\x32\x41')+'\x73\x69\x67\x6e\x61\x6c\x73']))return![];continue;case'\x32':if(_0x42e025[_0x43cd2b(0x25f,'\x31\x5d\x61\x57')](_0x43bb6c[_0x43cd2b(0x21b,'\x67\x5b\x43\x28')],_0x42e025[_0x43cd2b(0x210,'\x67\x5b\x43\x28')]))return![];continue;case'\x33':if(!_0xf592c0||_0x42e025[_0x43cd2b(0x226,'\x55\x61\x6f\x41')](typeof _0x2fbc3f,_0x42e025[_0x43cd2b(0x203,'\x5a\x32\x62\x41')]))return![];continue;case'\x34':if(!_0x950032[_0x43cd2b(0x1e6,'\x4e\x29\x57\x4b')]||_0x42e025['\x64\x78\x43\x52\x48'](typeof _0x415644[_0x43cd2b(0x20b,'\x5a\x39\x23\x4f')],_0x42e025[_0x43cd2b(0x21e,'\x23\x56\x59\x48')]))return![];continue;case'\x35':if(!_0x16462a[_0x43cd2b(0x24f,'\x26\x70\x45\x6a')+'\x65\x6c']||!_0x46eda1[_0x43cd2b(0x20f,'\x67\x5b\x43\x28')](_0x42e025[_0x43cd2b(0x39f,'\x5e\x59\x4e\x56')](_0x30d54f,_0x2eff5e[_0x43cd2b(0x370,'\x78\x6a\x32\x55')+'\x65\x6c'])))return![];continue;case'\x36':if(!_0x254a75[_0x43cd2b(0x26e,'\x78\x44\x47\x52')+_0x43cd2b(0x201,'\x55\x61\x6f\x41')]||typeof _0x5ab870[_0x43cd2b(0x236,'\x67\x5b\x43\x28')+_0x43cd2b(0x22c,'\x40\x4a\x7a\x57')]!==_0x43cd2b(0x29d,'\x67\x5b\x43\x28'))return![];continue;case'\x37':return!![];case'\x38':if(!_0x5dc7b7['\x69\x64']||typeof _0x54818e['\x69\x64']!=='\x73\x74\x72\x69\x6e\x67')return![];continue;}break;}}else{const _0x5ad6cf=_0x39fdac[_0x43cd2b(0x33d,'\x67\x61\x36\x58')](_0x55ae66,arguments);return _0x39fdac=null,_0x5ad6cf;}}}else{const _0x3010bd=_0x49ba42&&_0x4ff82c[_0x43cd2b(0x3a6,'\x4d\x51\x4c\x68')](typeof _0x1b0dde,_0x4ff82c[_0x43cd2b(0x2c6,'\x40\x4a\x7a\x57')])?_0x10b3ae:{},_0x28e74c={'\x74\x79\x70\x65':_0x4ff82c[_0x43cd2b(0x366,'\x4a\x64\x63\x48')],'\x69\x64':_0x4ff82c[_0x43cd2b(0x2a4,'\x79\x6a\x4e\x24')](typeof _0x3010bd['\x69\x64'],_0x43cd2b(0x2ae,'\x78\x44\x47\x52'))?_0x3010bd['\x69\x64']:_0x43cd2b(0x2c1,'\x71\x4e\x44\x5d')+_0xdd83f2(),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x29e2cd[_0x43cd2b(0x29b,'\x76\x5a\x58\x23')](_0x2ea4eb(_0x3010bd[_0x43cd2b(0x2ee,'\x5a\x39\x23\x4f')]))?_0x1ae736(_0x3010bd[_0x43cd2b(0x38a,'\x5b\x33\x52\x33')]):_0x4ff82c['\x43\x4e\x4f\x6d\x4a'],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x4ff82c[_0x43cd2b(0x1cb,'\x78\x4d\x37\x43')](_0x37e760,_0x3010bd[_0x43cd2b(0x2cc,'\x30\x4b\x32\x65')+_0x43cd2b(0x22b,'\x23\x35\x5b\x54')]),'\x74\x61\x72\x67\x65\x74':_0x4ff82c[_0x43cd2b(0x2a9,'\x4c\x61\x26\x30')](typeof _0x3010bd[_0x43cd2b(0x270,'\x4c\x61\x26\x30')],_0x43cd2b(0x37a,'\x4e\x59\x49\x39'))?_0x3010bd[_0x43cd2b(0x1c2,'\x6b\x77\x6e\x52')]:_0x4ff82c[_0x43cd2b(0x364,'\x67\x61\x36\x58')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x4ff82c[_0x43cd2b(0x345,'\x6b\x77\x6e\x52')](typeof _0x3010bd[_0x43cd2b(0x357,'\x4d\x51\x4c\x68')+_0x43cd2b(0x3a1,'\x43\x4a\x75\x75')],_0x4ff82c[_0x43cd2b(0x34d,'\x52\x62\x36\x5d')])?_0x3010bd[_0x43cd2b(0x1f6,'\x71\x4e\x44\x5d')+_0x43cd2b(0x2eb,'\x79\x6a\x4e\x24')]:_0x4ff82c[_0x43cd2b(0x2e9,'\x4e\x29\x57\x4b')](_0x2224bb,_0x3010bd[_0x43cd2b(0x326,'\x5e\x48\x21\x47')]),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x38c11d[_0x43cd2b(0x27e,'\x52\x62\x36\x5d')](_0x4ff82c[_0x43cd2b(0x380,'\x5d\x53\x48\x26')](_0x1ca718,_0x3010bd['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']))?_0x4ff82c[_0x43cd2b(0x1cb,'\x78\x4d\x37\x43')](_0x57f371,_0x3010bd[_0x43cd2b(0x2dd,'\x69\x32\x76\x49')+'\x65\x6c']):_0x4ff82c[_0x43cd2b(0x330,'\x5a\x4d\x4a\x30')]};return _0x28e74c;}}:function(){};return _0x5e0960=![],_0x526876;};}()),_0x57e274=_0x57263f(this,function(){const _0x226fa8=_0x281c,_0x1c20ad={};_0x1c20ad[_0x226fa8(0x1fa,'\x31\x5d\x61\x57')]=_0x226fa8(0x262,'\x4c\x61\x26\x30')+_0x226fa8(0x2b7,'\x5e\x48\x21\x47');const _0xcb5f48=_0x1c20ad;return _0x57e274[_0x226fa8(0x1f0,'\x30\x4b\x32\x65')]()[_0x226fa8(0x22e,'\x52\x62\x36\x5d')](_0xcb5f48['\x56\x46\x51\x46\x78'])[_0x226fa8(0x227,'\x76\x35\x49\x75')]()[_0x226fa8(0x399,'\x5d\x53\x48\x26')+_0x226fa8(0x369,'\x78\x6a\x32\x55')](_0x57e274)[_0x226fa8(0x280,'\x44\x61\x5d\x39')]('\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x226fa8(0x1bb,'\x70\x5a\x46\x31'));});_0x57e274();const {VALID_CATEGORIES:_0x25bb2c,VALID_RISK_LEVELS:_0x574759}=require(_0x4c3c9d(0x305,'\x63\x65\x5d\x49')+_0x4c3c9d(0x374,'\x78\x6a\x32\x55')+'\x6f\x6c');function _0x3e0a1e(_0x32123b){const _0x5a80bc=_0x4c3c9d,_0x495858=Number(_0x32123b);if(!Number[_0x5a80bc(0x382,'\x23\x47\x29\x62')](_0x495858))return-0x1149+-0x6d7*0x3+0x25ce;return Math[_0x5a80bc(0x388,'\x63\x65\x5d\x49')](0x2*0x129d+0x2028+-0x1*0x4562,Math[_0x5a80bc(0x25c,'\x67\x61\x36\x58')](-0x20*-0xb9+-0x1*-0xd5+0xbfa*-0x2,_0x495858));}function _0x209f46(){const _0x86225a=_0x4c3c9d;return Date[_0x86225a(0x26f,'\x67\x4e\x31\x4f')]();}function _0x55f824(_0x1470ab){const _0x3a2079=_0x4c3c9d,_0x37a3e3={'\x4e\x74\x52\x6f\x76':function(_0x2edc41,_0x5a735e){return _0x2edc41(_0x5a735e);},'\x51\x78\x56\x7a\x4a':function(_0x213b18,_0xbbbbf5){return _0x213b18||_0xbbbbf5;}},_0x4eb71a=[],_0x56548d=new Set();for(const _0x4260bc of Array['\x69\x73\x41\x72\x72\x61\x79'](_0x1470ab)?_0x1470ab:[]){const _0x3fcd66=_0x37a3e3['\x4e\x74\x52\x6f\x76'](String,_0x37a3e3['\x51\x78\x56\x7a\x4a'](_0x4260bc,''))[_0x3a2079(0x3ac,'\x52\x62\x36\x5d')]();if(!_0x3fcd66)continue;if(_0x56548d['\x68\x61\x73'](_0x3fcd66))continue;_0x56548d[_0x3a2079(0x1e3,'\x5e\x59\x4e\x56')](_0x3fcd66),_0x4eb71a[_0x3a2079(0x21c,'\x43\x4a\x75\x75')](_0x3fcd66);}return _0x4eb71a;}function _0x5578(){const _0x350988=['\x7a\x6d\x6f\x34\x57\x36\x79\x49\x64\x62\x72\x2b\x41\x73\x4b\x31\x45\x74\x6c\x63\x4d\x71','\x57\x37\x34\x48\x57\x4f\x4a\x63\x50\x66\x64\x63\x56\x6d\x6b\x6b\x61\x57','\x57\x36\x30\x51\x64\x38\x6b\x34\x61\x6d\x6b\x4e\x6c\x61\x34','\x57\x50\x6c\x63\x4f\x66\x53\x78\x62\x38\x6b\x74','\x61\x32\x52\x63\x49\x6d\x6b\x4f','\x57\x50\x78\x63\x52\x76\x43\x46','\x57\x52\x42\x63\x53\x38\x6b\x69\x57\x51\x2f\x63\x4e\x53\x6f\x56\x57\x35\x4a\x63\x56\x47','\x57\x35\x6c\x64\x54\x6d\x6b\x51\x57\x35\x5a\x63\x51\x61','\x6f\x72\x71\x4a\x57\x4f\x66\x74\x57\x35\x42\x63\x4d\x6d\x6f\x67','\x78\x75\x75\x46\x57\x4f\x4c\x50\x41\x57','\x57\x4f\x53\x36\x67\x78\x64\x63\x4f\x4d\x64\x64\x52\x48\x57','\x46\x73\x6a\x4f\x57\x51\x43\x6e\x57\x34\x52\x64\x48\x4b\x38','\x71\x43\x6b\x6a\x57\x35\x2f\x63\x4a\x53\x6f\x4e','\x6d\x6d\x6b\x30\x57\x51\x39\x2b\x74\x76\x6d\x2f','\x62\x38\x6b\x57\x57\x52\x75\x57\x44\x4c\x42\x64\x53\x38\x6b\x70','\x67\x67\x52\x63\x4a\x6d\x6f\x38\x57\x51\x6a\x4a\x57\x36\x69\x7a','\x57\x50\x75\x4d\x67\x68\x37\x64\x4e\x78\x37\x64\x51\x48\x34','\x69\x71\x4c\x56\x57\x4f\x70\x64\x47\x71','\x64\x43\x6f\x4e\x57\x51\x6d\x54\x69\x30\x6c\x64\x53\x43\x6b\x64','\x57\x36\x65\x6d\x74\x53\x6b\x36\x57\x52\x38\x51\x6f\x61\x76\x4b\x77\x66\x46\x64\x4c\x71\x4f','\x57\x51\x52\x64\x52\x38\x6b\x41\x57\x4f\x70\x63\x53\x66\x58\x6f\x57\x52\x34','\x43\x38\x6b\x59\x57\x35\x62\x79\x70\x71','\x45\x38\x6f\x2f\x42\x53\x6f\x47\x46\x47','\x57\x35\x74\x63\x4f\x4c\x30\x77\x61\x6d\x6b\x79\x57\x36\x79','\x72\x4a\x68\x63\x49\x61\x6c\x64\x4b\x67\x44\x61\x57\x52\x57','\x6d\x38\x6f\x4c\x41\x38\x6f\x2f\x72\x53\x6b\x67\x74\x4e\x57','\x67\x38\x6f\x4f\x57\x50\x37\x64\x4a\x64\x38','\x57\x4f\x70\x63\x4a\x43\x6b\x6f\x57\x4f\x42\x63\x4f\x61','\x57\x52\x70\x63\x50\x43\x6f\x34\x57\x51\x70\x64\x4a\x53\x6b\x53\x6e\x53\x6b\x63\x57\x50\x44\x55\x7a\x43\x6b\x43','\x62\x43\x6b\x55\x57\x52\x34','\x57\x4f\x47\x48\x6b\x4e\x4e\x64\x52\x4e\x33\x64\x55\x61\x30','\x6a\x53\x6b\x34\x57\x52\x35\x4a\x73\x31\x71\x42\x41\x47','\x75\x47\x54\x48\x57\x37\x34\x33','\x57\x37\x42\x64\x52\x38\x6b\x4f\x57\x37\x78\x63\x4d\x6d\x6f\x2b\x66\x38\x6b\x53','\x65\x33\x4e\x63\x4c\x6d\x6b\x57\x57\x51\x72\x4a\x57\x37\x4b\x78','\x57\x52\x2f\x64\x56\x58\x2f\x64\x48\x6d\x6b\x57\x46\x68\x48\x4b','\x75\x6d\x6f\x58\x57\x52\x69\x58\x57\x34\x79','\x63\x58\x62\x72\x57\x50\x33\x64\x48\x43\x6b\x64\x57\x52\x71\x6c','\x6b\x38\x6b\x76\x57\x52\x5a\x63\x4e\x6d\x6f\x72\x42\x6d\x6f\x71\x74\x61','\x57\x36\x2f\x63\x48\x43\x6f\x4b\x57\x34\x71','\x57\x37\x37\x64\x4e\x38\x6f\x65\x57\x37\x2f\x63\x54\x77\x68\x63\x49\x4a\x53','\x71\x53\x6f\x4b\x57\x52\x6d\x47\x57\x34\x30','\x74\x6d\x6b\x33\x57\x35\x72\x66\x68\x4c\x6c\x64\x54\x57','\x74\x6d\x6f\x36\x57\x52\x56\x64\x53\x6d\x6f\x43','\x57\x36\x47\x38\x65\x53\x6b\x51\x65\x43\x6b\x71','\x6e\x6d\x6b\x47\x57\x52\x50\x31','\x6d\x53\x6b\x33\x57\x50\x2f\x64\x56\x61\x4f','\x57\x36\x35\x6b\x57\x35\x37\x64\x49\x38\x6f\x53\x57\x52\x4b\x5a\x57\x4f\x65','\x76\x78\x39\x51','\x57\x36\x70\x63\x54\x4b\x78\x63\x4a\x43\x6f\x2b\x69\x71','\x57\x36\x78\x64\x4d\x65\x35\x36\x7a\x38\x6f\x72','\x76\x76\x52\x63\x54\x6d\x6b\x52\x6f\x38\x6b\x34\x57\x34\x38','\x77\x4a\x4a\x63\x54\x73\x68\x63\x47\x4c\x5a\x63\x53\x53\x6b\x49','\x57\x4f\x68\x64\x4e\x53\x6f\x6c\x78\x59\x6d\x41\x57\x36\x56\x64\x4b\x57','\x57\x50\x34\x68\x6f\x65\x46\x64\x55\x57','\x6e\x5a\x7a\x31\x57\x52\x2f\x64\x4d\x47','\x57\x4f\x37\x64\x4b\x4b\x74\x64\x48\x63\x34\x31','\x69\x38\x6b\x76\x57\x52\x44\x64\x78\x61','\x64\x71\x48\x72\x57\x35\x52\x64\x4d\x6d\x6b\x73\x57\x51\x61\x62','\x71\x68\x71\x69\x57\x50\x58\x53\x41\x53\x6f\x34\x57\x4f\x53','\x67\x53\x6b\x49\x57\x51\x6d\x54\x6f\x4b\x42\x64\x54\x38\x6b\x31','\x57\x4f\x37\x64\x48\x31\x64\x64\x49\x64\x71\x52\x57\x35\x78\x64\x4e\x61','\x57\x51\x33\x63\x4f\x38\x6b\x6c\x57\x51\x33\x63\x4d\x53\x6f\x2b','\x62\x4c\x6c\x63\x47\x53\x6f\x37\x7a\x38\x6b\x59\x57\x51\x61\x30','\x64\x43\x6b\x62\x57\x4f\x4c\x48\x7a\x71','\x57\x35\x2f\x63\x4b\x49\x5a\x64\x54\x6d\x6b\x4b\x43\x61','\x72\x38\x6f\x4b\x57\x50\x6d\x34\x57\x36\x65','\x57\x50\x38\x37\x64\x4d\x46\x64\x52\x68\x70\x64\x4f\x30\x47','\x77\x53\x6b\x79\x57\x35\x5a\x64\x4d\x47','\x6a\x43\x6b\x64\x57\x34\x37\x63\x54\x38\x6b\x53\x57\x51\x62\x54\x57\x35\x58\x4f\x57\x52\x46\x64\x52\x43\x6b\x2b\x57\x52\x4b','\x69\x30\x4a\x63\x4b\x38\x6b\x46\x57\x51\x43','\x57\x50\x71\x47\x62\x32\x70\x64\x50\x33\x79','\x57\x36\x6a\x62\x57\x36\x4a\x64\x48\x38\x6f\x48\x57\x51\x71\x49\x57\x4f\x61','\x57\x51\x6a\x43\x63\x53\x6f\x56\x57\x51\x7a\x36\x7a\x58\x65','\x43\x53\x6b\x34\x6d\x74\x5a\x64\x56\x57','\x6d\x6d\x6f\x79\x57\x4f\x68\x64\x4b\x53\x6f\x74','\x57\x52\x54\x54\x6e\x30\x70\x64\x4e\x57\x64\x64\x51\x38\x6f\x6e','\x44\x38\x6f\x79\x57\x4f\x68\x64\x4f\x43\x6f\x54\x57\x52\x6d\x58\x57\x35\x6d','\x57\x37\x48\x78\x57\x4f\x37\x64\x4a\x38\x6f\x48\x57\x51\x4c\x32\x57\x4f\x61','\x57\x35\x31\x4a\x6d\x43\x6f\x42\x57\x36\x4b','\x6d\x6d\x6b\x30\x57\x51\x39\x39\x75\x66\x75\x50\x69\x57','\x78\x71\x56\x64\x4c\x43\x6b\x47\x6a\x6d\x6f\x4d\x57\x37\x43\x71\x77\x66\x54\x2f\x45\x6d\x6f\x48','\x57\x4f\x50\x45\x41\x43\x6f\x66\x57\x36\x43','\x69\x43\x6f\x46\x57\x51\x64\x64\x50\x62\x6c\x64\x47\x6d\x6b\x73\x57\x34\x38','\x57\x34\x72\x72\x6b\x38\x6f\x7a\x57\x35\x4b','\x62\x6d\x6f\x5a\x57\x50\x2f\x64\x48\x74\x43','\x68\x62\x5a\x63\x4c\x43\x6f\x34\x6d\x53\x6b\x5a\x57\x52\x79\x4b','\x6f\x61\x75\x48\x57\x4f\x7a\x76\x57\x35\x46\x63\x50\x53\x6f\x62','\x77\x6d\x6f\x71\x73\x6d\x6f\x39\x44\x58\x69\x76\x57\x35\x43','\x6b\x38\x6b\x6f\x57\x52\x37\x64\x50\x72\x4b','\x57\x50\x33\x63\x52\x31\x65\x78\x66\x38\x6b\x74\x57\x51\x4f\x33','\x57\x50\x52\x64\x47\x59\x4a\x64\x4b\x43\x6b\x6b\x42\x43\x6f\x64\x57\x34\x4f','\x57\x37\x37\x64\x4b\x31\x31\x33\x45\x38\x6f\x68\x57\x52\x34\x6c','\x79\x43\x6f\x65\x57\x50\x74\x64\x4e\x6d\x6f\x77','\x78\x6d\x6b\x65\x78\x38\x6f\x49\x44\x48\x4b','\x57\x52\x6a\x75\x65\x6d\x6f\x52\x57\x37\x6a\x59\x7a\x48\x53','\x45\x53\x6f\x73\x77\x38\x6f\x69\x73\x47','\x71\x64\x46\x63\x53\x63\x4a\x63\x47\x30\x68\x64\x52\x43\x6b\x57','\x57\x36\x4c\x32\x69\x75\x5a\x64\x54\x72\x70\x64\x51\x38\x6b\x46','\x75\x71\x54\x48\x57\x50\x4c\x67\x57\x37\x64\x63\x4b\x43\x6b\x6f','\x74\x57\x50\x2b\x57\x52\x7a\x5a','\x57\x37\x37\x63\x4e\x6d\x6f\x58\x57\x35\x4b\x41','\x57\x4f\x4c\x41\x7a\x43\x6b\x34\x6b\x57','\x77\x5a\x5a\x63\x4f\x59\x78\x63\x4e\x31\x43','\x57\x37\x4b\x4a\x57\x50\x2f\x63\x50\x61\x70\x63\x52\x53\x6f\x65\x66\x57','\x42\x43\x6b\x71\x57\x35\x70\x63\x4d\x43\x6f\x50','\x57\x35\x68\x63\x4b\x32\x2f\x63\x55\x53\x6f\x52','\x57\x4f\x42\x63\x51\x66\x75\x75\x65\x61','\x57\x36\x78\x64\x4e\x43\x6f\x72\x57\x36\x6c\x63\x56\x77\x2f\x63\x49\x71','\x57\x51\x74\x63\x50\x4b\x43\x54\x62\x47','\x57\x52\x74\x64\x4f\x76\x37\x64\x49\x71\x69','\x57\x37\x48\x67\x57\x35\x5a\x64\x48\x38\x6f\x48\x57\x51\x4f','\x75\x43\x6f\x49\x57\x50\x61\x62\x57\x34\x71','\x57\x37\x2f\x63\x4f\x33\x4a\x63\x4b\x6d\x6f\x55','\x57\x37\x74\x64\x4b\x76\x54\x65\x79\x53\x6f\x6d\x57\x52\x71\x69','\x73\x68\x39\x57\x75\x71','\x64\x38\x6b\x41\x57\x34\x70\x63\x4a\x38\x6f\x34\x72\x62\x6d\x6f','\x57\x37\x71\x64\x57\x35\x64\x64\x55\x31\x4f','\x57\x37\x4a\x63\x48\x43\x6f\x4d\x57\x37\x61\x77','\x79\x30\x5a\x63\x4b\x38\x6b\x2f\x6c\x6d\x6b\x36\x57\x34\x69','\x6b\x6d\x6b\x6a\x57\x35\x6e\x71','\x71\x53\x6b\x42\x57\x37\x4c\x45\x63\x31\x78\x64\x4c\x5a\x71','\x67\x78\x4e\x63\x4d\x53\x6b\x4f\x57\x52\x72\x69\x57\x36\x43\x72','\x57\x35\x74\x63\x52\x4b\x69\x45\x65\x6d\x6b\x77\x57\x52\x53\x54','\x6a\x48\x61\x57','\x77\x43\x6b\x62\x57\x34\x6a\x43\x6d\x31\x68\x64\x4f\x63\x53','\x42\x58\x74\x63\x4d\x61\x64\x63\x54\x61','\x57\x51\x42\x64\x49\x38\x6f\x69\x77\x73\x47\x6a\x57\x35\x4a\x63\x47\x71','\x77\x53\x6f\x34\x68\x6d\x6f\x41\x57\x50\x78\x63\x47\x43\x6b\x35\x57\x37\x61','\x57\x50\x6c\x64\x49\x66\x46\x64\x47\x77\x61\x58\x57\x50\x52\x64\x49\x57','\x6c\x38\x6f\x6c\x57\x51\x64\x64\x4e\x47','\x66\x43\x6f\x57\x57\x50\x34','\x6d\x43\x6f\x6b\x57\x51\x42\x64\x51\x62\x56\x64\x49\x61','\x57\x35\x66\x41\x68\x6d\x6f\x71','\x57\x50\x4a\x63\x54\x65\x61\x45\x71\x53\x6b\x66\x57\x51\x34\x57','\x72\x38\x6f\x63\x57\x51\x46\x64\x54\x53\x6f\x55','\x57\x50\x62\x39\x67\x66\x69\x6b','\x57\x35\x4a\x64\x4c\x43\x6f\x4e\x57\x34\x37\x63\x56\x47','\x57\x52\x7a\x55\x73\x6d\x6f\x36\x75\x38\x6f\x69\x46\x5a\x76\x65\x57\x52\x74\x63\x49\x43\x6f\x37\x57\x51\x75','\x67\x63\x50\x73\x57\x34\x79\x55\x6f\x6d\x6b\x53\x57\x51\x66\x6c\x57\x51\x34\x6a\x57\x36\x2f\x64\x56\x61','\x7a\x6d\x6b\x51\x62\x5a\x70\x64\x4b\x6d\x6b\x50\x57\x34\x5a\x63\x4b\x61','\x64\x43\x6f\x54\x57\x4f\x64\x64\x4b\x43\x6f\x32\x57\x52\x65\x78\x57\x51\x57','\x73\x74\x50\x4e\x57\x52\x54\x4e','\x57\x37\x4c\x78\x57\x35\x37\x64\x4a\x38\x6f\x4d\x57\x52\x38','\x76\x75\x39\x55\x71\x6d\x6f\x48\x71\x73\x48\x48','\x77\x53\x6b\x69\x41\x6d\x6f\x74\x76\x57','\x45\x59\x46\x63\x48\x71\x2f\x64\x47\x66\x66\x68\x57\x51\x53','\x75\x72\x62\x44\x57\x50\x76\x61','\x61\x31\x2f\x63\x50\x6d\x6f\x2f\x46\x61','\x73\x57\x35\x46\x57\x50\x6e\x63\x57\x36\x6c\x63\x49\x53\x6b\x66','\x61\x6d\x6b\x35\x6d\x33\x39\x2b\x57\x52\x46\x64\x4b\x53\x6b\x49','\x46\x43\x6f\x36\x77\x38\x6f\x4f\x45\x47','\x67\x77\x33\x63\x4b\x43\x6b\x35\x57\x52\x6a\x4a','\x57\x52\x5a\x64\x50\x67\x64\x64\x56\x47\x30','\x6f\x30\x4a\x63\x4a\x53\x6f\x68\x76\x47','\x63\x58\x44\x41\x57\x50\x74\x64\x4c\x6d\x6b\x6f\x57\x52\x65\x7a','\x41\x38\x6f\x35\x46\x6d\x6f\x30','\x42\x38\x6b\x61\x57\x50\x43\x65\x57\x35\x39\x56\x57\x51\x58\x75','\x61\x43\x6b\x58\x6a\x4e\x66\x76\x57\x51\x6c\x63\x4a\x43\x6b\x57','\x57\x37\x35\x72\x57\x34\x33\x64\x49\x38\x6f\x38\x57\x52\x35\x32\x57\x50\x75','\x57\x51\x56\x63\x53\x53\x6b\x47\x57\x52\x52\x63\x49\x38\x6f\x52\x57\x35\x6d','\x46\x43\x6f\x65\x57\x52\x42\x64\x54\x53\x6f\x54\x57\x37\x69\x4d','\x57\x34\x74\x64\x52\x68\x72\x45\x79\x57','\x63\x38\x6f\x57\x57\x4f\x56\x64\x4c\x38\x6f\x5a\x57\x52\x30\x6a\x57\x50\x4f','\x57\x4f\x70\x64\x54\x43\x6b\x74\x57\x51\x78\x63\x48\x61','\x57\x35\x70\x63\x4e\x53\x6f\x58\x57\x35\x61\x33\x76\x6d\x6f\x59\x6f\x61','\x57\x37\x46\x64\x52\x53\x6b\x4b\x57\x36\x64\x63\x4f\x6d\x6f\x39\x61\x6d\x6b\x73','\x76\x72\x62\x4d\x57\x50\x2f\x64\x4d\x38\x6b\x72\x57\x52\x65','\x57\x51\x57\x4b\x6e\x30\x46\x64\x54\x71\x6c\x64\x52\x43\x6f\x41','\x72\x53\x6b\x62\x57\x50\x68\x63\x4b\x6d\x6f\x50\x77\x71\x6d\x6f','\x66\x6d\x6b\x75\x57\x4f\x56\x63\x55\x6d\x6f\x44','\x57\x4f\x68\x63\x52\x30\x65\x6f\x65\x53\x6b\x68\x57\x51\x61\x32','\x57\x35\x70\x63\x4c\x6d\x6f\x4e\x57\x34\x79\x39\x72\x43\x6f\x59','\x45\x6d\x6f\x42\x57\x52\x64\x63\x47\x6d\x6f\x71\x79\x43\x6f\x79\x76\x47','\x75\x4c\x5a\x63\x4d\x6d\x6b\x37\x6c\x6d\x6b\x52','\x57\x51\x4a\x64\x55\x6d\x6b\x62\x57\x4f\x2f\x63\x53\x58\x6e\x76\x57\x51\x4b','\x76\x53\x6b\x7a\x45\x38\x6f\x6a\x46\x47','\x72\x43\x6b\x43\x65\x64\x4e\x64\x4f\x47','\x7a\x49\x58\x4e\x57\x36\x75\x6e','\x75\x75\x62\x66\x57\x50\x6d\x75\x57\x36\x46\x63\x4c\x38\x6b\x74','\x57\x34\x56\x63\x50\x64\x4c\x43\x64\x43\x6f\x44\x57\x50\x79\x47','\x64\x43\x6b\x47\x57\x4f\x6c\x64\x4b\x59\x52\x63\x48\x57','\x42\x53\x6b\x34\x6f\x5a\x2f\x64\x4b\x6d\x6b\x55\x57\x36\x5a\x63\x47\x61','\x6d\x43\x6b\x70\x6e\x4e\x76\x46','\x44\x59\x72\x30\x57\x36\x38\x79\x57\x34\x5a\x64\x48\x31\x30','\x42\x6d\x6b\x38\x57\x37\x56\x63\x52\x43\x6f\x67','\x61\x72\x76\x6e\x57\x4f\x4e\x64\x4e\x53\x6b\x66\x57\x4f\x38\x61','\x57\x34\x34\x2f\x57\x35\x33\x64\x51\x77\x69','\x57\x36\x42\x64\x49\x64\x76\x39\x6d\x61','\x61\x4c\x4e\x63\x48\x43\x6f\x2b\x7a\x38\x6b\x37','\x57\x37\x34\x4c\x57\x4f\x5a\x63\x50\x62\x68\x63\x51\x43\x6b\x62\x61\x57','\x63\x62\x4e\x64\x47\x6d\x6f\x4f\x46\x6d\x6f\x52\x57\x4f\x42\x64\x4d\x38\x6f\x48\x73\x43\x6f\x4c\x6d\x30\x47','\x63\x6d\x6f\x30\x57\x52\x68\x64\x50\x6d\x6f\x35','\x74\x30\x6c\x63\x55\x6d\x6b\x53\x70\x43\x6b\x34\x57\x34\x6c\x64\x51\x57','\x57\x37\x38\x50\x57\x50\x56\x63\x52\x58\x68\x63\x53\x43\x6b\x78','\x67\x67\x64\x63\x4a\x43\x6b\x39\x57\x51\x76\x2b\x57\x37\x38\x77','\x57\x37\x74\x64\x4c\x38\x6f\x61\x57\x37\x52\x63\x54\x33\x52\x63\x4c\x71','\x76\x74\x4a\x63\x54\x57\x78\x64\x4e\x61','\x62\x5a\x75\x79\x57\x50\x6e\x58\x41\x38\x6f\x57\x57\x50\x4b','\x57\x36\x70\x64\x4b\x4c\x66\x33\x75\x43\x6f\x62\x57\x51\x69\x69','\x57\x37\x64\x64\x55\x6d\x6b\x58\x57\x37\x46\x63\x4e\x53\x6f\x56\x61\x6d\x6b\x78','\x7a\x38\x6f\x64\x57\x50\x42\x64\x54\x53\x6f\x52\x57\x36\x61\x69\x57\x35\x38','\x72\x4d\x4f\x46\x57\x50\x4c\x30\x7a\x38\x6f\x4e\x57\x50\x30','\x79\x43\x6f\x48\x76\x53\x6f\x51\x72\x57','\x74\x4b\x5a\x63\x48\x53\x6b\x32\x6a\x43\x6b\x56\x57\x35\x70\x64\x4b\x71','\x41\x59\x52\x63\x51\x73\x5a\x63\x47\x57','\x57\x37\x4a\x64\x4a\x75\x50\x59\x79\x38\x6f\x6b\x57\x51\x65\x44','\x57\x51\x6a\x6a\x63\x38\x6f\x4b\x57\x36\x39\x56\x79\x62\x61','\x57\x36\x58\x66\x6b\x43\x6f\x56\x57\x52\x56\x63\x47\x47\x5a\x63\x48\x47','\x57\x36\x30\x51\x70\x43\x6b\x2f\x66\x38\x6b\x7a\x6e\x61','\x6a\x38\x6b\x49\x68\x73\x6c\x64\x4b\x53\x6b\x30\x57\x35\x64\x63\x49\x61','\x61\x6d\x6f\x55\x57\x51\x42\x64\x4a\x58\x57','\x57\x4f\x46\x63\x52\x4c\x34\x6e\x62\x38\x6b\x74','\x6a\x74\x4b\x30\x57\x37\x7a\x6a\x57\x35\x2f\x63\x47\x66\x47','\x57\x34\x33\x64\x48\x49\x4c\x52\x61\x47','\x67\x53\x6b\x32\x6f\x33\x76\x38\x57\x51\x2f\x63\x4e\x6d\x6b\x4a','\x57\x36\x78\x63\x56\x4b\x74\x63\x47\x43\x6f\x65\x6f\x74\x79\x37','\x57\x51\x4a\x64\x54\x43\x6b\x75\x57\x4f\x46\x63\x50\x65\x57\x77','\x76\x43\x6f\x31\x57\x51\x68\x64\x4c\x38\x6f\x73','\x76\x4e\x66\x54','\x63\x38\x6b\x68\x57\x34\x66\x73\x68\x4c\x5a\x64\x53\x74\x71','\x57\x52\x58\x58\x62\x4d\x33\x64\x4f\x57','\x57\x4f\x2f\x64\x4a\x65\x68\x64\x4e\x71\x57','\x57\x36\x6d\x57\x57\x4f\x5a\x63\x52\x47\x6c\x63\x51\x43\x6b\x72\x63\x71','\x41\x6d\x6b\x62\x61\x58\x74\x64\x53\x47','\x57\x36\x6c\x64\x48\x53\x6f\x78\x57\x37\x4a\x63\x55\x77\x74\x63\x47\x57','\x67\x31\x64\x63\x48\x6d\x6f\x35\x44\x38\x6b\x31\x57\x51\x34','\x57\x51\x74\x64\x54\x38\x6b\x75\x57\x4f\x42\x64\x54\x62\x39\x69\x57\x51\x6d','\x46\x63\x4e\x63\x51\x73\x56\x64\x4e\x61','\x44\x6d\x6b\x49\x66\x64\x4a\x64\x4c\x53\x6b\x51\x57\x34\x30','\x73\x65\x47\x58\x57\x52\x44\x42','\x79\x6d\x6f\x62\x57\x4f\x57\x72\x57\x34\x58\x50\x57\x52\x6e\x79','\x57\x34\x4e\x63\x4a\x5a\x33\x64\x4f\x38\x6b\x4b\x42\x6d\x6f\x73\x57\x35\x43','\x57\x4f\x2f\x64\x56\x53\x6b\x38\x57\x50\x6c\x63\x55\x61','\x78\x43\x6b\x64\x57\x35\x42\x63\x49\x61','\x57\x50\x69\x48\x68\x33\x5a\x64\x52\x33\x46\x63\x52\x57\x30','\x74\x61\x39\x64\x57\x50\x66\x76\x57\x36\x2f\x63\x4c\x38\x6b\x41','\x63\x64\x47\x4f\x57\x52\x48\x58','\x57\x52\x35\x45\x64\x6d\x6f\x56\x57\x36\x44\x4f\x42\x66\x75','\x57\x50\x2f\x64\x47\x6d\x6b\x49\x57\x52\x56\x63\x48\x71','\x74\x63\x68\x63\x4f\x59\x4a\x63\x4d\x76\x46\x64\x52\x43\x6b\x43','\x71\x47\x4e\x63\x56\x64\x6c\x63\x4c\x71','\x57\x34\x34\x71\x57\x4f\x37\x63\x4a\x58\x4b','\x68\x77\x68\x63\x4c\x6d\x6b\x52\x57\x52\x31\x59\x57\x37\x71\x46','\x67\x38\x6b\x54\x57\x50\x78\x63\x56\x43\x6f\x55','\x57\x52\x79\x50\x69\x32\x6c\x64\x51\x71','\x70\x53\x6b\x70\x6a\x4b\x6e\x36','\x79\x53\x6b\x35\x65\x4a\x4a\x64\x4c\x6d\x6b\x4a','\x57\x4f\x42\x63\x52\x4c\x61\x6f\x65\x43\x6b\x64\x57\x51\x65\x48','\x57\x50\x66\x6c\x6b\x75\x68\x64\x49\x71','\x75\x53\x6f\x4c\x69\x53\x6f\x54\x57\x50\x30','\x7a\x63\x70\x63\x55\x4a\x64\x63\x4f\x47','\x57\x35\x35\x44\x67\x53\x6f\x75','\x57\x4f\x37\x64\x4b\x4c\x46\x64\x4a\x59\x57\x33\x57\x51\x52\x64\x49\x57','\x63\x43\x6b\x33\x57\x51\x61\x55\x6c\x57','\x67\x6d\x6b\x78\x6f\x65\x54\x59','\x57\x36\x4c\x72\x67\x38\x6f\x41\x57\x35\x50\x59\x45\x57','\x57\x34\x52\x63\x4d\x64\x2f\x64\x50\x43\x6b\x49\x72\x38\x6f\x45\x57\x35\x30','\x6f\x38\x6b\x54\x57\x52\x6e\x34\x73\x31\x35\x53\x6b\x57','\x7a\x53\x6b\x63\x65\x72\x74\x64\x4f\x57','\x7a\x38\x6b\x69\x72\x38\x6f\x6a\x76\x57','\x43\x43\x6f\x70\x57\x4f\x46\x64\x51\x6d\x6f\x57\x57\x36\x65\x36','\x77\x43\x6b\x66\x57\x34\x66\x6f\x6c\x47','\x6f\x6d\x6f\x41\x57\x4f\x4a\x64\x53\x43\x6f\x31','\x57\x50\x33\x63\x53\x4e\x71\x73\x64\x6d\x6b\x45\x57\x52\x53\x48','\x6e\x53\x6f\x46\x57\x51\x42\x64\x50\x48\x64\x64\x4d\x57','\x66\x53\x6b\x58\x57\x4f\x74\x64\x4e\x73\x6c\x63\x4d\x4a\x46\x64\x4f\x47','\x57\x51\x6c\x64\x54\x38\x6b\x42\x57\x4f\x78\x63\x4f\x48\x31\x74\x57\x52\x75','\x73\x53\x6b\x79\x57\x35\x71\x78\x61\x66\x6c\x64\x50\x4a\x57','\x6a\x61\x65\x30\x57\x50\x31\x6d\x57\x34\x33\x63\x49\x38\x6f\x6e','\x67\x78\x42\x63\x4b\x38\x6f\x42\x45\x47','\x43\x43\x6f\x6a\x57\x4f\x53\x46\x57\x37\x72\x51\x57\x51\x72\x78','\x57\x37\x52\x64\x52\x53\x6b\x53\x57\x4f\x2f\x63\x55\x61\x39\x67','\x66\x78\x74\x63\x49\x38\x6f\x35\x46\x57','\x57\x35\x4a\x63\x4b\x49\x52\x64\x56\x38\x6f\x4e\x45\x38\x6f\x79\x57\x35\x34','\x57\x34\x57\x41\x57\x34\x37\x64\x4a\x4c\x56\x63\x50\x33\x33\x64\x52\x57','\x68\x53\x6b\x31\x57\x4f\x76\x46\x74\x57','\x66\x77\x37\x63\x4a\x38\x6b\x35\x57\x52\x7a\x34\x57\x36\x69\x62','\x57\x37\x31\x6e\x6a\x38\x6f\x59\x57\x34\x38','\x72\x38\x6b\x68\x57\x34\x79','\x57\x35\x6e\x6d\x64\x43\x6f\x7a\x57\x35\x58\x4c\x41\x53\x6f\x6d','\x65\x71\x72\x43\x57\x50\x2f\x64\x48\x6d\x6b\x72\x57\x4f\x38\x45','\x57\x52\x68\x64\x4f\x43\x6b\x76\x57\x51\x46\x64\x4d\x43\x6f\x55\x57\x34\x70\x63\x4b\x47','\x6b\x72\x71\x4f\x57\x50\x76\x78\x57\x34\x33\x63\x4e\x53\x6f\x41','\x68\x43\x6b\x6a\x57\x34\x6a\x31\x6a\x4b\x37\x64\x53\x57','\x57\x34\x68\x64\x49\x6d\x6f\x66\x57\x34\x64\x63\x56\x61','\x57\x50\x74\x64\x4c\x78\x64\x64\x48\x63\x34\x37\x57\x4f\x68\x64\x4e\x71','\x68\x6d\x6f\x4e\x57\x50\x4e\x64\x4b\x38\x6f\x59\x57\x51\x61\x61\x57\x50\x43','\x57\x37\x4e\x63\x56\x4b\x70\x63\x4b\x57','\x7a\x53\x6b\x4e\x67\x49\x6c\x64\x4a\x47','\x67\x38\x6b\x73\x57\x52\x4e\x63\x47\x43\x6f\x4a','\x57\x36\x74\x63\x4f\x4c\x74\x63\x49\x43\x6f\x2b\x6a\x49\x62\x54','\x70\x6d\x6b\x48\x57\x51\x39\x4a\x75\x66\x65\x50\x69\x57','\x68\x6d\x6b\x59\x57\x52\x53\x64\x64\x47','\x57\x36\x74\x63\x56\x4c\x64\x63\x48\x6d\x6f\x36\x6f\x73\x61','\x6c\x5a\x75\x50\x57\x50\x4c\x30','\x57\x34\x74\x64\x50\x73\x35\x77\x64\x53\x6f\x78\x57\x4f\x79\x34','\x78\x6d\x6f\x42\x57\x50\x68\x64\x49\x38\x6f\x70','\x57\x37\x47\x56\x57\x4f\x34','\x57\x52\x74\x64\x4e\x38\x6f\x41\x74\x64\x4b\x73\x57\x36\x4a\x63\x4e\x71','\x57\x37\x61\x53\x65\x53\x6b\x4b\x65\x43\x6b\x62\x68\x47\x53','\x57\x36\x46\x64\x50\x43\x6b\x58\x57\x37\x46\x63\x4e\x6d\x6f\x56\x61\x6d\x6b\x78','\x57\x34\x33\x63\x48\x6d\x6f\x51\x57\x35\x4b\x41','\x79\x31\x52\x63\x4b\x6d\x6b\x31\x6c\x38\x6b\x67\x57\x35\x37\x64\x50\x57','\x43\x63\x5a\x63\x47\x57\x68\x64\x47\x66\x4c\x43\x57\x52\x57','\x57\x37\x34\x50\x57\x4f\x2f\x63\x51\x49\x2f\x63\x53\x43\x6b\x62\x65\x71','\x57\x37\x38\x5a\x57\x35\x5a\x63\x4f\x62\x37\x63\x55\x43\x6f\x65\x66\x61','\x57\x4f\x37\x64\x4b\x4c\x46\x64\x4e\x5a\x71\x48\x57\x51\x6c\x64\x4b\x71','\x74\x53\x6f\x76\x57\x4f\x57\x76\x57\x35\x39\x56\x57\x51\x35\x70','\x57\x37\x39\x56\x57\x4f\x5a\x63\x53\x58\x2f\x63\x51\x43\x6b\x6c\x62\x61','\x63\x61\x6a\x72\x57\x50\x33\x64\x47\x38\x6b\x6b','\x65\x6d\x6f\x58\x57\x4f\x46\x64\x4d\x43\x6f\x4e\x57\x52\x75\x72\x57\x50\x79','\x57\x50\x6d\x4b\x6d\x75\x33\x64\x54\x61','\x57\x52\x48\x6f\x6a\x65\x4b\x58\x57\x51\x7a\x79\x77\x61','\x77\x49\x33\x63\x53\x4a\x42\x63\x47\x4c\x42\x64\x4e\x38\x6b\x51','\x57\x52\x50\x57\x6e\x4b\x68\x64\x52\x48\x43','\x41\x38\x6b\x4b\x62\x61','\x42\x6d\x6f\x78\x57\x50\x79\x74\x57\x35\x4c\x4e\x57\x51\x76\x65','\x46\x4e\x56\x63\x49\x67\x39\x49\x78\x59\x79\x6b','\x46\x73\x68\x63\x52\x62\x33\x64\x56\x57','\x57\x37\x61\x57\x65\x38\x6b\x4a\x6f\x53\x6b\x43\x6b\x62\x79','\x57\x50\x70\x64\x4b\x4b\x78\x64\x50\x73\x75','\x66\x53\x6f\x5a\x57\x4f\x33\x64\x4e\x53\x6f\x65','\x68\x33\x5a\x63\x56\x43\x6b\x31\x57\x52\x39\x2b\x57\x36\x71\x44','\x57\x36\x37\x64\x56\x53\x6b\x65\x57\x37\x52\x63\x4b\x71','\x43\x53\x6f\x61\x6f\x43\x6f\x7a\x57\x4f\x38','\x57\x34\x42\x64\x54\x5a\x38','\x7a\x5a\x66\x59\x57\x36\x6d\x72\x57\x34\x71','\x62\x78\x56\x63\x4d\x53\x6b\x2b\x57\x52\x48\x37\x57\x37\x4b\x6d','\x72\x68\x53\x74','\x57\x50\x74\x64\x49\x66\x4a\x64\x47\x4a\x79\x5a\x57\x4f\x68\x64\x4e\x71','\x42\x4e\x78\x63\x4b\x4d\x54\x50\x77\x73\x61\x6b','\x78\x43\x6b\x46\x77\x38\x6f\x55\x44\x72\x53\x6f\x57\x35\x43','\x57\x34\x6c\x64\x54\x76\x43\x53\x6c\x38\x6b\x63\x57\x52\x53\x39','\x7a\x71\x48\x62\x57\x37\x57\x34','\x45\x4b\x66\x35\x57\x34\x69\x77\x57\x50\x6c\x64\x47\x6d\x6f\x58\x65\x53\x6b\x31\x57\x52\x47\x62\x57\x34\x4b','\x43\x74\x31\x57\x57\x36\x38\x43\x57\x35\x46\x64\x4b\x65\x61','\x57\x50\x71\x49\x64\x75\x42\x64\x4b\x47','\x44\x43\x6b\x49\x61\x64\x33\x64\x51\x6d\x6b\x51\x57\x35\x56\x63\x4e\x57','\x57\x36\x70\x64\x48\x53\x6f\x78\x57\x37\x4e\x63\x51\x47','\x43\x43\x6f\x6a\x57\x4f\x53\x46\x57\x37\x72\x59\x57\x51\x35\x6e','\x64\x43\x6b\x5a\x57\x50\x4e\x64\x4b\x59\x4a\x63\x4c\x4a\x2f\x64\x4d\x61','\x7a\x6d\x6f\x30\x41\x71','\x66\x77\x64\x63\x4a\x43\x6b\x35\x57\x51\x6d\x33\x57\x37\x34\x44','\x57\x34\x6a\x67\x66\x6d\x6f\x42\x57\x35\x48\x30\x46\x43\x6f\x33','\x78\x43\x6f\x33\x6a\x4d\x35\x34\x57\x51\x2f\x63\x4e\x6d\x6b\x4a','\x57\x50\x37\x64\x49\x76\x4a\x64\x4e\x4a\x71\x47\x57\x4f\x64\x64\x4d\x57','\x57\x36\x52\x63\x56\x6d\x6f\x76\x57\x35\x47\x38','\x57\x37\x42\x64\x51\x6d\x6b\x5a\x57\x37\x46\x63\x4f\x6d\x6f\x50\x61\x6d\x6b\x63','\x57\x37\x6c\x64\x4a\x53\x6f\x65\x57\x37\x70\x63\x56\x32\x46\x63\x47\x49\x43','\x70\x53\x6b\x42\x57\x50\x6e\x32\x41\x71','\x57\x35\x52\x64\x56\x38\x6b\x78\x57\x36\x4a\x63\x52\x61','\x57\x37\x78\x64\x4f\x58\x62\x6a\x70\x47','\x6c\x71\x74\x63\x55\x71\x42\x64\x4b\x67\x4c\x56','\x46\x71\x76\x78\x57\x50\x50\x72\x57\x36\x64\x63\x49\x47','\x57\x35\x42\x64\x51\x38\x6b\x76\x57\x35\x52\x63\x51\x47','\x57\x35\x75\x7a\x57\x36\x37\x64\x50\x33\x4f','\x72\x38\x6f\x44\x76\x6d\x6f\x36\x77\x71','\x71\x53\x6b\x37\x57\x34\x70\x63\x4c\x6d\x6f\x7a','\x57\x34\x72\x7a\x64\x43\x6f\x66\x57\x37\x30','\x57\x4f\x52\x63\x48\x4c\x70\x64\x4d\x59\x38\x2b\x57\x4f\x64\x64\x4a\x61','\x57\x36\x4e\x63\x49\x43\x6f\x58\x57\x34\x57\x33\x76\x6d\x6f\x4a\x42\x71','\x6a\x53\x6b\x4a\x57\x52\x6a\x30','\x46\x43\x6f\x39\x72\x53\x6f\x34\x77\x38\x6b\x6f\x72\x75\x57','\x73\x67\x76\x2b\x76\x38\x6f\x4c\x76\x74\x75\x47','\x67\x30\x37\x63\x49\x6d\x6f\x36','\x57\x52\x52\x63\x4b\x6d\x6f\x59\x57\x36\x69\x73\x76\x43\x6f\x57','\x57\x4f\x44\x34\x72\x38\x6b\x41\x63\x4c\x4a\x64\x50\x66\x6d','\x57\x51\x48\x6c\x43\x38\x6f\x48\x57\x37\x64\x64\x4b\x48\x56\x63\x4b\x57','\x71\x53\x6b\x67\x57\x35\x6a\x42\x67\x76\x4e\x64\x4f\x63\x34','\x57\x50\x70\x63\x55\x6d\x6b\x78\x57\x52\x4a\x63\x4f\x57','\x71\x75\x6a\x4f\x75\x53\x6f\x31','\x43\x48\x78\x63\x4f\x71\x4e\x64\x4f\x61','\x78\x78\x38\x70\x57\x51\x39\x57\x79\x6d\x6f\x54\x57\x4f\x30','\x7a\x38\x6f\x57\x42\x53\x6b\x57\x71\x43\x6b\x44\x78\x33\x69','\x57\x50\x42\x64\x49\x6d\x6f\x65\x73\x63\x34\x70','\x65\x6d\x6b\x54\x57\x51\x50\x52\x76\x57','\x57\x52\x52\x63\x48\x53\x6b\x42\x57\x52\x69','\x57\x4f\x56\x64\x4a\x38\x6f\x70\x73\x74\x71\x4b\x57\x37\x78\x63\x4c\x47','\x68\x66\x78\x63\x48\x53\x6f\x35\x43\x38\x6b\x36\x57\x52\x79','\x71\x38\x6f\x56\x57\x50\x56\x64\x4d\x43\x6f\x4c\x57\x52\x53\x67\x57\x50\x57','\x6b\x38\x6f\x6e\x57\x51\x46\x64\x54\x62\x64\x64\x53\x6d\x6b\x62\x57\x35\x4f','\x57\x36\x70\x63\x4e\x43\x6f\x4c\x57\x34\x47\x6e','\x57\x51\x4e\x64\x53\x6d\x6b\x42\x57\x4f\x56\x63\x4f\x62\x76\x69\x57\x52\x34','\x78\x38\x6b\x6a\x57\x34\x6e\x71\x63\x75\x4b','\x57\x51\x6a\x79\x64\x53\x6f\x52\x57\x36\x39\x50\x76\x48\x4b','\x57\x52\x6e\x78\x43\x53\x6f\x38\x57\x37\x78\x63\x4e\x30\x2f\x63\x4e\x57','\x71\x38\x6f\x71\x74\x53\x6f\x4b\x46\x62\x53\x63\x57\x34\x69','\x77\x43\x6f\x7a\x42\x43\x6f\x48\x41\x47','\x7a\x6d\x6f\x35\x57\x36\x38\x4b\x63\x62\x39\x38\x44\x58\x6d\x6b\x79\x63\x56\x63\x52\x47','\x6b\x38\x6f\x71\x57\x52\x52\x64\x52\x47\x70\x64\x4a\x53\x6b\x75\x57\x35\x6d','\x57\x50\x56\x64\x4e\x38\x6f\x68\x71\x73\x4b\x32\x57\x37\x6c\x63\x48\x57','\x45\x49\x70\x63\x4d\x71\x56\x64\x4b\x76\x44\x41\x57\x51\x61','\x74\x59\x33\x63\x55\x73\x42\x64\x4a\x57','\x78\x53\x6f\x68\x6e\x53\x6f\x50\x57\x51\x34','\x71\x4e\x56\x63\x53\x78\x7a\x37','\x76\x33\x6e\x79\x78\x6d\x6f\x55','\x74\x53\x6b\x36\x41\x38\x6f\x6a\x78\x57','\x77\x5a\x5a\x63\x54\x5a\x68\x63\x4c\x75\x64\x63\x51\x6d\x6b\x58','\x78\x38\x6b\x41\x57\x35\x48\x71\x63\x31\x4a\x64\x54\x57\x69','\x57\x4f\x2f\x64\x47\x31\x46\x64\x49\x74\x4b\x6e\x57\x4f\x46\x64\x4e\x71','\x57\x52\x75\x50\x57\x36\x37\x64\x48\x30\x4e\x63\x4e\x31\x75','\x57\x37\x56\x63\x4e\x76\x66\x52\x45\x53\x6f\x6b\x57\x52\x79\x6e','\x57\x37\x74\x63\x54\x4b\x70\x63\x4a\x38\x6f\x38\x6f\x49\x65\x30','\x57\x35\x2f\x64\x4c\x5a\x4e\x64\x51\x43\x6f\x4e\x46\x43\x6f\x65\x57\x35\x61','\x57\x51\x35\x76\x70\x4b\x71\x41\x57\x50\x44\x7a\x76\x71','\x57\x37\x37\x63\x50\x68\x42\x63\x4d\x6d\x6f\x50\x6e\x63\x4f','\x57\x52\x62\x50\x73\x43\x6f\x38\x75\x6d\x6f\x6b\x46\x74\x54\x62\x57\x52\x74\x63\x4b\x6d\x6f\x67\x57\x51\x6d','\x57\x36\x4b\x53\x63\x6d\x6b\x73','\x57\x50\x64\x64\x48\x6d\x6f\x61\x71\x4a\x53\x41\x57\x37\x70\x63\x4c\x47','\x61\x6d\x6b\x53\x6e\x68\x48\x4a\x57\x51\x6c\x63\x47\x43\x6b\x59','\x57\x50\x64\x64\x48\x38\x6f\x45\x78\x59\x69\x6e\x57\x36\x6c\x64\x4b\x57','\x43\x38\x6f\x74\x69\x38\x6f\x2b\x57\x50\x4b','\x57\x36\x79\x75\x57\x50\x64\x63\x48\x73\x47','\x45\x57\x39\x57\x57\x34\x47\x36','\x79\x53\x6f\x63\x76\x43\x6f\x33\x7a\x61','\x71\x38\x6b\x46\x73\x53\x6f\x75\x46\x71\x57\x73\x57\x34\x57','\x57\x34\x42\x64\x4f\x64\x34','\x6c\x53\x6f\x50\x57\x51\x5a\x64\x4a\x62\x53','\x67\x53\x6b\x30\x57\x52\x6c\x63\x4d\x43\x6f\x54','\x6e\x53\x6b\x41\x57\x51\x33\x63\x4c\x38\x6f\x62\x46\x61','\x57\x35\x6e\x35\x63\x6d\x6f\x69\x57\x35\x35\x4c\x7a\x53\x6f\x68','\x74\x31\x54\x72\x78\x53\x6f\x4b','\x57\x50\x64\x64\x48\x6d\x6f\x6e\x71\x74\x47\x46\x57\x36\x6c\x63\x47\x61','\x57\x37\x48\x47\x6e\x43\x6f\x6d\x57\x36\x57','\x79\x6d\x6f\x37\x45\x53\x6f\x38\x72\x38\x6b\x6e\x73\x67\x61','\x57\x37\x69\x6b\x57\x50\x52\x64\x4a\x4b\x68\x63\x51\x4a\x6c\x64\x50\x61','\x73\x57\x35\x73\x57\x50\x62\x62\x57\x36\x46\x63\x4d\x38\x6b\x74','\x57\x51\x6e\x6d\x78\x6d\x6b\x58\x69\x71','\x63\x4b\x37\x63\x47\x6d\x6f\x35\x43\x43\x6b\x5a','\x64\x43\x6f\x57\x57\x52\x52\x64\x47\x53\x6f\x4a\x57\x52\x30\x6c\x57\x50\x71','\x42\x53\x6b\x4e\x78\x6d\x6f\x2f\x73\x71','\x57\x4f\x44\x53\x73\x53\x6f\x46\x63\x31\x78\x64\x50\x66\x65','\x57\x50\x52\x63\x4f\x38\x6b\x33\x57\x52\x6c\x63\x51\x47','\x57\x51\x44\x4e\x6e\x4b\x33\x64\x4f\x71\x70\x64\x51\x38\x6b\x46','\x57\x51\x76\x78\x69\x30\x53\x64\x57\x52\x54\x6e\x75\x71','\x6a\x38\x6f\x67\x57\x51\x74\x64\x50\x62\x42\x64\x4d\x38\x6b\x66\x57\x35\x69','\x57\x37\x4a\x63\x54\x76\x33\x63\x4a\x38\x6f\x34\x69\x71','\x57\x35\x52\x64\x49\x65\x50\x36\x45\x53\x6f\x6b\x57\x52\x71\x77','\x57\x37\x4a\x64\x4b\x4b\x35\x65\x41\x53\x6f\x67\x57\x51\x38\x44','\x71\x47\x6e\x72\x57\x34\x57\x68','\x57\x37\x5a\x63\x47\x38\x6f\x55\x57\x34\x65\x37\x75\x53\x6f\x56\x6f\x57','\x41\x31\x58\x50\x72\x43\x6f\x79','\x57\x35\x78\x64\x52\x73\x4c\x79\x6e\x53\x6f\x75\x57\x50\x65\x33','\x77\x5a\x64\x63\x4f\x63\x2f\x63\x51\x75\x4e\x64\x52\x43\x6b\x31','\x42\x58\x42\x63\x50\x57\x64\x63\x52\x57','\x42\x31\x70\x63\x4a\x31\x39\x43','\x57\x51\x56\x63\x50\x66\x71\x44\x62\x38\x6b\x75\x57\x52\x53','\x57\x51\x52\x63\x49\x53\x6b\x6a\x57\x4f\x2f\x63\x51\x47','\x57\x34\x4b\x2b\x57\x37\x5a\x64\x49\x32\x75','\x6a\x38\x6b\x4a\x67\x4a\x68\x64\x4e\x38\x6f\x52\x57\x34\x5a\x63\x47\x61','\x57\x51\x4c\x73\x6a\x76\x61\x68\x57\x52\x66\x63\x77\x61','\x57\x36\x4c\x78\x57\x34\x42\x64\x4a\x38\x6f\x35\x57\x51\x71\x35\x57\x50\x43','\x78\x43\x6b\x63\x71\x53\x6f\x35\x41\x31\x6a\x61\x57\x34\x4f','\x44\x33\x68\x64\x48\x4e\x54\x47\x75\x4a\x43\x62','\x57\x34\x47\x46\x6d\x38\x6b\x44\x65\x61','\x66\x62\x75\x4c\x57\x4f\x62\x65\x57\x34\x46\x63\x48\x43\x6f\x6e','\x57\x52\x2f\x64\x55\x6d\x6b\x68\x57\x4f\x33\x63\x53\x71\x47','\x61\x38\x6b\x39\x6a\x33\x58\x76\x57\x51\x5a\x63\x48\x38\x6b\x59','\x6b\x47\x69\x5a','\x57\x35\x65\x52\x65\x38\x6b\x68\x65\x57','\x72\x53\x6b\x45\x74\x53\x6f\x4e\x42\x72\x4f\x66\x57\x35\x61','\x76\x53\x6b\x47\x42\x53\x6f\x55\x46\x61','\x46\x6d\x6b\x67\x57\x35\x7a\x44\x66\x61','\x61\x4d\x37\x63\x49\x43\x6b\x37\x57\x52\x72\x4a','\x57\x52\x50\x6f\x57\x50\x52\x64\x4b\x53\x6b\x39\x57\x52\x66\x4c\x57\x50\x4b','\x46\x6d\x6f\x38\x57\x50\x2f\x64\x47\x38\x6f\x6d','\x73\x38\x6f\x6d\x57\x50\x34\x37\x57\x37\x53','\x45\x38\x6f\x48\x42\x6d\x6f\x2b\x77\x38\x6b\x44\x72\x68\x79','\x73\x4a\x4a\x63\x50\x59\x68\x63\x4b\x75\x52\x64\x55\x53\x6b\x36','\x57\x50\x64\x64\x4d\x43\x6f\x56\x78\x5a\x38\x41\x57\x37\x34','\x57\x37\x52\x63\x4f\x4b\x70\x63\x54\x71','\x57\x37\x44\x34\x65\x53\x6f\x59\x57\x36\x79','\x77\x38\x6b\x6a\x78\x43\x6f\x55','\x75\x48\x76\x63\x57\x50\x71','\x71\x53\x6b\x67\x57\x35\x39\x79\x67\x4c\x5a\x64\x53\x74\x47','\x57\x34\x37\x64\x53\x43\x6b\x52\x57\x35\x70\x63\x4c\x61','\x67\x4c\x6c\x63\x4b\x53\x6f\x4a\x43\x38\x6b\x30\x57\x51\x4b\x49','\x57\x35\x78\x64\x4d\x32\x33\x64\x50\x38\x6b\x50\x46\x6d\x6b\x78\x57\x35\x38','\x57\x34\x4f\x37\x57\x35\x56\x64\x47\x77\x79','\x57\x37\x37\x63\x55\x76\x74\x63\x48\x53\x6f\x55\x6d\x74\x79\x2b','\x57\x50\x78\x64\x4b\x4e\x4e\x64\x4c\x5a\x75','\x44\x38\x6f\x66\x57\x50\x38\x6e\x57\x4f\x54\x4c\x57\x51\x35\x6d','\x6f\x53\x6b\x66\x57\x52\x4f\x75\x69\x57','\x57\x51\x78\x63\x55\x66\x65\x4a\x67\x47','\x57\x51\x35\x77\x74\x38\x6f\x4e\x57\x37\x68\x63\x4c\x31\x78\x63\x4e\x71','\x7a\x68\x76\x37\x75\x53\x6f\x4c\x72\x74\x69','\x57\x50\x56\x63\x53\x75\x79\x73\x64\x38\x6b\x45\x57\x52\x75\x48','\x57\x4f\x69\x33\x63\x68\x64\x64\x53\x4d\x42\x64\x50\x47\x43','\x74\x30\x64\x63\x4b\x53\x6b\x33\x6b\x6d\x6b\x31\x57\x34\x75','\x73\x38\x6f\x73\x57\x50\x68\x64\x4f\x53\x6f\x36\x57\x37\x61\x52','\x57\x37\x68\x64\x53\x53\x6b\x53\x57\x37\x43','\x68\x66\x4e\x63\x47\x6d\x6f\x4c\x43\x43\x6b\x2b','\x73\x77\x76\x35\x72\x43\x6f\x52','\x67\x77\x70\x63\x4e\x38\x6b\x30\x57\x4f\x71','\x76\x47\x39\x39\x57\x50\x6e\x64\x57\x36\x42\x63\x4a\x6d\x6b\x4a','\x67\x67\x4a\x64\x4f\x33\x74\x64\x4a\x58\x74\x63\x55\x43\x6b\x5a\x57\x34\x52\x64\x4b\x4e\x4a\x63\x52\x47\x53','\x72\x58\x6a\x64\x57\x50\x6e\x67','\x68\x6d\x6b\x2b\x57\x51\x61\x4e','\x6a\x38\x6b\x50\x57\x51\x39\x57\x76\x4c\x75','\x73\x53\x6b\x69\x78\x43\x6f\x55\x45\x57\x4f\x66\x57\x34\x43','\x62\x4c\x68\x63\x4b\x43\x6f\x4c\x46\x43\x6b\x47\x57\x51\x62\x4e','\x57\x37\x42\x64\x50\x6d\x6b\x45\x57\x37\x78\x63\x4e\x53\x6f\x52','\x57\x35\x53\x38\x67\x53\x6b\x52\x61\x6d\x6b\x42\x6f\x71','\x6a\x58\x61\x6f\x57\x52\x62\x67','\x75\x4e\x35\x2b\x77\x6d\x6f\x31\x71\x49\x6e\x5a','\x57\x52\x46\x63\x51\x6d\x6b\x61\x57\x52\x5a\x63\x51\x71','\x68\x65\x4a\x63\x4b\x38\x6f\x2b\x46\x6d\x6b\x58','\x42\x53\x6f\x57\x44\x38\x6f\x31\x63\x61'];_0x5578=function(){return _0x350988;};return _0x5578();}function _0x362b43(_0x51162b){const _0x1b2111=_0x4c3c9d,_0x585a66={'\x5a\x5a\x4f\x70\x64':function(_0x4a09c5,_0x235670){return _0x4a09c5(_0x235670);},'\x74\x74\x67\x50\x4e':function(_0x1cf403,_0x8fd779){return _0x1cf403||_0x8fd779;},'\x41\x42\x56\x53\x4d':function(_0x8d682a,_0x4399cd){return _0x8d682a===_0x4399cd;},'\x4e\x54\x48\x70\x53':_0x1b2111(0x235,'\x29\x5d\x29\x78'),'\x7a\x48\x6a\x6e\x6d':_0x1b2111(0x1d0,'\x5a\x4d\x4a\x30')+_0x1b2111(0x32a,'\x26\x70\x45\x6a')+_0x1b2111(0x207,'\x67\x5b\x43\x28')+_0x1b2111(0x32d,'\x70\x41\x6f\x37')+_0x1b2111(0x1dc,'\x69\x32\x76\x49')+'\x79\x2c\x20\x61\x6e\x64\x20\x6c'+_0x1b2111(0x24d,'\x67\x61\x36\x58')+_0x1b2111(0x2c5,'\x55\x61\x6f\x41')+'\x65','\x70\x70\x63\x63\x4f':function(_0x215fdd,_0x5c8a20){return _0x215fdd===_0x5c8a20;},'\x6c\x57\x78\x4d\x6e':_0x1b2111(0x267,'\x70\x5a\x46\x31'),'\x65\x6b\x44\x45\x6a':_0x1b2111(0x363,'\x29\x5d\x29\x78')+_0x1b2111(0x362,'\x4c\x61\x26\x30')+_0x1b2111(0x288,'\x70\x41\x6f\x37')+_0x1b2111(0x2a1,'\x4e\x59\x49\x39')+_0x1b2111(0x307,'\x23\x56\x59\x48')+_0x1b2111(0x31b,'\x6b\x77\x6e\x52')+_0x1b2111(0x322,'\x5a\x39\x23\x4f')+'\x74','\x58\x5a\x61\x6f\x51':function(_0x194982,_0x1c51c0){return _0x194982===_0x1c51c0;},'\x76\x59\x68\x52\x63':_0x1b2111(0x1db,'\x6f\x34\x79\x76'),'\x70\x73\x6e\x58\x62':_0x1b2111(0x3a8,'\x79\x6a\x4e\x24')+_0x1b2111(0x24e,'\x23\x47\x29\x62')+_0x1b2111(0x224,'\x5e\x48\x21\x47')+_0x1b2111(0x1c1,'\x5a\x39\x23\x4f')+_0x1b2111(0x295,'\x52\x62\x36\x5d')+_0x1b2111(0x34b,'\x6b\x77\x6e\x52')+_0x1b2111(0x1d4,'\x76\x5a\x58\x23')+'\x6d','\x74\x6b\x5a\x58\x76':'\x65\x78\x70\x6c\x6f\x72\x65','\x52\x42\x68\x75\x6f':_0x1b2111(0x1bf,'\x71\x4e\x44\x5d')+_0x1b2111(0x1d2,'\x5d\x53\x48\x26')+_0x1b2111(0x313,'\x55\x61\x6f\x41'),'\x73\x47\x42\x58\x78':function(_0x578282,_0x1d5d96){return _0x578282!==_0x1d5d96;},'\x52\x42\x6a\x56\x75':_0x1b2111(0x384,'\x77\x37\x70\x4e'),'\x4b\x76\x6f\x48\x45':'\x65\x72\x72\x73\x69\x67\x3a','\x41\x45\x61\x47\x64':_0x1b2111(0x2f9,'\x45\x21\x6e\x50')+_0x1b2111(0x283,'\x4f\x53\x4c\x36')},_0x678566=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x51162b)?_0x51162b[_0x1b2111(0x31a,'\x67\x4e\x31\x4f')](_0x215d26=>String(_0x215d26||'')):[];if(_0x678566['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x585a66[_0x1b2111(0x2af,'\x5e\x48\x21\x47')])||_0x678566[_0x1b2111(0x27a,'\x63\x65\x5d\x49')](_0x1b2111(0x2da,'\x45\x21\x6e\x50')+_0x1b2111(0x257,'\x78\x4d\x37\x43')+_0x1b2111(0x244,'\x55\x61\x6f\x41')))return![];const _0x47538e=[_0x1b2111(0x1e2,'\x67\x5b\x43\x28')+'\x72',_0x1b2111(0x233,'\x43\x4a\x75\x75'),_0x1b2111(0x22a,'\x26\x70\x45\x6a')+'\x6e',_0x1b2111(0x242,'\x55\x61\x6f\x41'),_0x1b2111(0x21f,'\x52\x62\x36\x5d')];for(const _0x4eb5c7 of _0x678566){if(_0x585a66[_0x1b2111(0x29f,'\x38\x5d\x36\x4b')](_0x585a66['\x52\x42\x6a\x56\x75'],_0x585a66[_0x1b2111(0x225,'\x67\x61\x36\x58')])){const _0x1f3b36=_0x585a66[_0x1b2111(0x2c7,'\x35\x6b\x28\x56')](_0x9d7169,_0x585a66[_0x1b2111(0x2b5,'\x79\x6a\x4e\x24')](_0x1cfc6c,''));if(_0x585a66[_0x1b2111(0x2d8,'\x5d\x53\x48\x26')](_0x1f3b36,_0x585a66[_0x1b2111(0x1ea,'\x4d\x51\x4c\x68')]))return _0x585a66[_0x1b2111(0x350,'\x52\x62\x36\x5d')];if(_0x585a66['\x70\x70\x63\x63\x4f'](_0x1f3b36,_0x585a66[_0x1b2111(0x1e4,'\x71\x4e\x44\x5d')]))return _0x585a66[_0x1b2111(0x323,'\x78\x4d\x37\x43')];if(_0x585a66[_0x1b2111(0x254,'\x6b\x77\x6e\x52')](_0x1f3b36,_0x585a66[_0x1b2111(0x278,'\x29\x5d\x29\x78')]))return _0x585a66['\x70\x73\x6e\x58\x62'];if(_0x585a66[_0x1b2111(0x319,'\x40\x4a\x7a\x57')](_0x1f3b36,_0x585a66[_0x1b2111(0x377,'\x26\x70\x45\x6a')]))return _0x1b2111(0x1fb,'\x79\x6a\x4e\x24')+_0x1b2111(0x1f2,'\x5b\x6a\x63\x6d')+_0x1b2111(0x311,'\x75\x6a\x67\x79')+_0x1b2111(0x2f3,'\x5e\x59\x4e\x56')+_0x1b2111(0x28d,'\x78\x44\x47\x52')+_0x1b2111(0x282,'\x26\x70\x45\x6a')+'\x6b\x6e\x6f\x77\x6c\x65\x64\x67'+_0x1b2111(0x2e7,'\x4e\x59\x49\x39')+_0x1b2111(0x2f2,'\x43\x4a\x75\x75')+_0x1b2111(0x396,'\x23\x47\x29\x62')+_0x1b2111(0x3a7,'\x5d\x53\x48\x26')+_0x1b2111(0x279,'\x45\x21\x6e\x50')+_0x1b2111(0x30e,'\x70\x41\x6f\x37')+'\x73';return _0x1b2111(0x237,'\x52\x62\x36\x5d')+_0x1b2111(0x337,'\x55\x61\x6f\x41')+'\x73\x73\x20\x61\x6e\x64\x20\x73'+_0x1b2111(0x2a7,'\x78\x6a\x32\x55')+_0x1b2111(0x2e2,'\x30\x4b\x32\x65')+'\x74\x79';}else{const _0x3c5303=_0x4eb5c7[_0x1b2111(0x231,'\x43\x4a\x75\x75')+_0x1b2111(0x385,'\x5e\x59\x4e\x56')]();if(_0x47538e[_0x1b2111(0x3a9,'\x29\x5d\x29\x78')](_0xaa13b5=>_0x3c5303===_0xaa13b5))return!![];if(_0x3c5303[_0x1b2111(0x25e,'\x29\x5d\x29\x78')+'\x74\x68'](_0x585a66[_0x1b2111(0x26d,'\x23\x5b\x4e\x62')])||_0x3c5303[_0x1b2111(0x372,'\x5d\x53\x48\x26')+'\x74\x68'](_0x585a66[_0x1b2111(0x346,'\x30\x4b\x32\x65')]))return!![];}}return![];}var _0x244818=[_0x4c3c9d(0x2e5,'\x23\x56\x59\x48')+_0x4c3c9d(0x39b,'\x23\x56\x59\x48')+_0x4c3c9d(0x243,'\x23\x47\x29\x62'),'\x75\x73\x65\x72\x5f\x69\x6d\x70'+_0x4c3c9d(0x38b,'\x67\x5b\x43\x28')+'\x5f\x73\x75\x67\x67\x65\x73\x74'+'\x69\x6f\x6e',_0x4c3c9d(0x20c,'\x69\x32\x76\x49')+_0x4c3c9d(0x321,'\x52\x62\x36\x5d'),'\x63\x61\x70\x61\x62\x69\x6c\x69'+_0x4c3c9d(0x238,'\x23\x56\x59\x48'),_0x4c3c9d(0x33c,'\x5d\x53\x48\x26')+_0x4c3c9d(0x358,'\x45\x21\x6e\x50')+'\x6c\x61\x74\x65\x61\x75',_0x4c3c9d(0x3ae,'\x5b\x6a\x63\x6d')+_0x4c3c9d(0x2e4,'\x79\x6a\x4e\x24')+_0x4c3c9d(0x35f,'\x4c\x61\x26\x30'),_0x4c3c9d(0x247,'\x4a\x64\x63\x48')+_0x4c3c9d(0x269,'\x6b\x77\x6e\x52'),_0x4c3c9d(0x2ea,'\x55\x61\x6f\x41')+_0x4c3c9d(0x3b4,'\x63\x65\x5d\x49')+_0x4c3c9d(0x248,'\x63\x65\x5d\x49'),_0x4c3c9d(0x261,'\x23\x47\x29\x62')+_0x4c3c9d(0x2cf,'\x67\x4e\x31\x4f')+_0x4c3c9d(0x37f,'\x6e\x35\x5e\x75')+'\x65\x63\x74\x65\x64',_0x4c3c9d(0x1c3,'\x70\x41\x6f\x37')+_0x4c3c9d(0x1f9,'\x76\x5a\x58\x23')+_0x4c3c9d(0x266,'\x79\x6a\x4e\x24'),_0x4c3c9d(0x340,'\x44\x61\x5d\x39')+_0x4c3c9d(0x302,'\x23\x47\x29\x62')+_0x4c3c9d(0x2be,'\x6f\x34\x79\x76')+'\x65\x70\x61\x69\x72\x5f\x6c\x6f'+'\x6f\x70',_0x4c3c9d(0x306,'\x76\x5a\x58\x23')+_0x4c3c9d(0x20d,'\x4a\x64\x63\x48'),_0x4c3c9d(0x205,'\x35\x6b\x28\x56')+'\x75\x6d\x5f\x74\x61\x72\x67\x65'+'\x74',_0x4c3c9d(0x241,'\x6e\x35\x5e\x75')+_0x4c3c9d(0x1bc,'\x6f\x34\x79\x76')+_0x4c3c9d(0x286,'\x26\x70\x45\x6a'),_0x4c3c9d(0x2da,'\x45\x21\x6e\x50')+_0x4c3c9d(0x36e,'\x23\x35\x5b\x54')+_0x4c3c9d(0x26c,'\x29\x5d\x29\x78'),_0x4c3c9d(0x2bf,'\x77\x37\x70\x4e')+_0x4c3c9d(0x2b1,'\x76\x5a\x58\x23')+_0x4c3c9d(0x20a,'\x4a\x64\x63\x48')+'\x64'];function _0x1d4891(_0x54b16e){const _0x5ead9a=_0x4c3c9d,_0x36379c={};_0x36379c['\x77\x51\x72\x74\x55']=function(_0x9dacc6,_0xbb53a){return _0x9dacc6<_0xbb53a;},_0x36379c[_0x5ead9a(0x209,'\x6e\x35\x5e\x75')]=function(_0x4887fe,_0x2de670){return _0x4887fe||_0x2de670;},_0x36379c[_0x5ead9a(0x1c0,'\x79\x6a\x4e\x24')]=function(_0x2f7e02,_0x3ebd97){return _0x2f7e02+_0x3ebd97;},_0x36379c['\x45\x61\x75\x7a\x68']=function(_0x739d7d,_0x48f595){return _0x739d7d!==_0x48f595;},_0x36379c[_0x5ead9a(0x355,'\x4d\x51\x4c\x68')]=function(_0x1fec8d,_0x10f34d){return _0x1fec8d||_0x10f34d;},_0x36379c[_0x5ead9a(0x23c,'\x29\x29\x32\x41')]=function(_0x13c3ad,_0x21a4e5){return _0x13c3ad===_0x21a4e5;},_0x36379c[_0x5ead9a(0x2f8,'\x4f\x53\x4c\x36')]=_0x5ead9a(0x1ff,'\x5a\x4d\x4a\x30'),_0x36379c['\x66\x4d\x54\x78\x64']=function(_0x4b3b32,_0x10e3bd){return _0x4b3b32<_0x10e3bd;};const _0x52a016=_0x36379c;var _0x578cb6=Array[_0x5ead9a(0x272,'\x23\x35\x5b\x54')](_0x54b16e)?_0x54b16e[_0x5ead9a(0x395,'\x38\x5d\x36\x4b')](function(_0x24555c){const _0x20c0ed=_0x5ead9a,_0x808472={'\x75\x6c\x6a\x54\x75':function(_0x7fdfcb,_0x1f5dc5){const _0x3276df=_0x281c;return _0x52a016[_0x3276df(0x1de,'\x77\x37\x70\x4e')](_0x7fdfcb,_0x1f5dc5);},'\x42\x73\x7a\x68\x75':function(_0x524416,_0x1661cc){const _0x405b9c=_0x281c;return _0x52a016[_0x405b9c(0x381,'\x30\x4b\x32\x65')](_0x524416,_0x1661cc);}};if(_0x52a016[_0x20c0ed(0x1ba,'\x29\x5d\x29\x78')](_0x20c0ed(0x281,'\x5e\x48\x21\x47'),'\x77\x59\x73\x61\x6b'))return String(_0x52a016[_0x20c0ed(0x353,'\x29\x5d\x29\x78')](_0x24555c,''));else{var _0x382c5a=_0x2b9bf4[_0x20c0ed(0x2e0,'\x40\x4a\x7a\x57')](_0x4a041d)?_0x5b11b4[_0x20c0ed(0x2bb,'\x4a\x64\x63\x48')](function(_0x58036a){const _0x53742b=_0x20c0ed;return _0x1c2a5f(_0x808472[_0x53742b(0x2b4,'\x5a\x32\x62\x41')](_0x58036a,''));}):[];for(var _0x57c010=-0x288+0xb8f+-0x907;_0x52a016[_0x20c0ed(0x3a5,'\x4f\x53\x4c\x36')](_0x57c010,_0x25c346[_0x20c0ed(0x375,'\x45\x21\x6e\x50')]);_0x57c010++){var _0x1bf5e8=_0x211dd5[_0x57c010];if(_0x382c5a['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x1bf5e8))return!![];if(_0x382c5a[_0x20c0ed(0x2b2,'\x67\x4e\x31\x4f')](function(_0x30959f){const _0x33ca8f=_0x20c0ed;return _0x30959f[_0x33ca8f(0x379,'\x5a\x4d\x4a\x30')+'\x74\x68'](_0x808472[_0x33ca8f(0x30c,'\x5a\x4d\x4a\x30')](_0x1bf5e8,'\x3a'));}))return!![];}return![];}}):[];for(var _0x4c080f=-0x137*0x1+-0x4*0x996+0xd*0x30b;_0x52a016[_0x5ead9a(0x39a,'\x79\x6a\x4e\x24')](_0x4c080f,_0x244818[_0x5ead9a(0x26b,'\x6e\x35\x5e\x75')]);_0x4c080f++){var _0x201555=_0x244818[_0x4c080f];if(_0x578cb6[_0x5ead9a(0x3b0,'\x6b\x77\x6e\x52')](_0x201555))return!![];if(_0x578cb6['\x73\x6f\x6d\x65'](function(_0x1e9c33){const _0x514331=_0x5ead9a,_0x1b445d={'\x41\x57\x71\x74\x51':function(_0x491c1d,_0x569e5b){const _0xa41a4d=_0x281c;return _0x52a016[_0xa41a4d(0x230,'\x23\x47\x29\x62')](_0x491c1d,_0x569e5b);}};if(_0x52a016['\x75\x69\x61\x74\x50'](_0x52a016[_0x514331(0x333,'\x4e\x29\x57\x4b')],_0x52a016[_0x514331(0x259,'\x71\x4e\x44\x5d')]))return _0x1e9c33[_0x514331(0x296,'\x4a\x64\x63\x48')+'\x74\x68'](_0x201555+'\x3a');else{var _0x1eea04=_0x4994ec[_0x6b4ab8];if(_0x51e11a[_0x514331(0x1e9,'\x6f\x34\x79\x76')](_0x1eea04))return!![];if(_0x1b72f9[_0x514331(0x22d,'\x23\x56\x59\x48')](function(_0x36f35c){const _0x319dc5=_0x514331;return _0x36f35c[_0x319dc5(0x308,'\x40\x4a\x7a\x57')+'\x74\x68'](_0x1b445d[_0x319dc5(0x1f1,'\x67\x5b\x43\x28')](_0x1eea04,'\x3a'));}))return!![];}}))return!![];}return![];}function _0x3cf61d({signals:_0x39a777,driftEnabled:_0xc9db}){const _0xe66eb=_0x4c3c9d,_0x1113c8={'\x4b\x6e\x43\x71\x64':function(_0x450f21,_0x3b7bce){return _0x450f21(_0x3b7bce);},'\x71\x4d\x41\x76\x47':_0xe66eb(0x2a6,'\x5a\x4d\x4a\x30'),'\x6b\x57\x4c\x67\x56':_0xe66eb(0x1c4,'\x76\x35\x49\x75'),'\x50\x4c\x74\x71\x58':_0xe66eb(0x32f,'\x5a\x4d\x4a\x30')+_0xe66eb(0x31e,'\x78\x6a\x32\x55')+'\x69\x74\x79','\x61\x52\x5a\x47\x42':_0xe66eb(0x344,'\x40\x4a\x7a\x57'),'\x63\x7a\x48\x6a\x61':function(_0x34796d,_0x1c86bb){return _0x34796d(_0x1c86bb);},'\x72\x6a\x77\x70\x4c':_0xe66eb(0x398,'\x69\x32\x76\x49')+'\x67\x79','\x42\x50\x72\x4e\x69':function(_0x1f2ddd,_0x33dd34){return _0x1f2ddd===_0x33dd34;},'\x72\x65\x56\x65\x66':'\x6e\x75\x6d\x62\x65\x72','\x49\x7a\x57\x58\x66':function(_0x2583ca,_0x5cba06){return _0x2583ca(_0x5cba06);},'\x55\x47\x68\x43\x76':function(_0x178964,_0x13e312){return _0x178964(_0x13e312);},'\x71\x61\x50\x65\x7a':_0xe66eb(0x221,'\x5a\x32\x62\x41'),'\x48\x68\x4e\x72\x62':_0xe66eb(0x335,'\x69\x32\x76\x49'),'\x79\x72\x6c\x72\x46':_0xe66eb(0x34c,'\x4a\x64\x63\x48')};if(_0x1113c8[_0xe66eb(0x2c8,'\x70\x5a\x46\x31')](_0x362b43,_0x39a777))return _0xe66eb(0x271,'\x76\x5a\x58\x23');if(_0xc9db)return _0xe66eb(0x21d,'\x6b\x77\x6e\x52');if(_0x1113c8[_0xe66eb(0x285,'\x23\x47\x29\x62')](_0x1d4891,_0x39a777))return _0x1113c8[_0xe66eb(0x3b3,'\x78\x4d\x37\x43')];var _0x2dbb8d=Array[_0xe66eb(0x218,'\x6f\x34\x79\x76')](_0x39a777)?_0x39a777:[];if(_0x2dbb8d[_0xe66eb(0x299,'\x55\x61\x6f\x41')](_0x1113c8[_0xe66eb(0x1fc,'\x67\x4e\x31\x4f')]))return _0x1113c8[_0xe66eb(0x325,'\x63\x65\x5d\x49')];try{if(_0x1113c8['\x71\x61\x50\x65\x7a']===_0x1113c8['\x48\x68\x4e\x72\x62']){if(_0x1113c8['\x4b\x6e\x43\x71\x64'](_0x5ea6fc,_0x24fac0))return _0x1113c8[_0xe66eb(0x38d,'\x31\x5d\x61\x57')];if(_0x5741ee)return _0x1113c8[_0xe66eb(0x1e1,'\x38\x5d\x36\x4b')];if(_0x3708d2(_0x150bd4))return _0x1113c8[_0xe66eb(0x28e,'\x4d\x51\x4c\x68')];var _0x570c3c=_0x52ef57[_0xe66eb(0x2df,'\x29\x29\x32\x41')](_0x349f20)?_0x15c701:[];if(_0x570c3c[_0xe66eb(0x1eb,'\x38\x5d\x36\x4b')](_0x1113c8[_0xe66eb(0x1c6,'\x38\x5d\x36\x4b')]))return _0x1113c8[_0xe66eb(0x1cc,'\x77\x37\x70\x4e')];try{var _0x59b28f=_0x1113c8['\x63\x7a\x48\x6a\x61'](_0x2dc618,_0x1113c8[_0xe66eb(0x255,'\x38\x5d\x36\x4b')])[_0xe66eb(0x30b,'\x23\x35\x5b\x54')+'\x74\x72\x61\x74\x65\x67\x79']();if(_0x59b28f&&_0x1113c8[_0xe66eb(0x312,'\x71\x4e\x44\x5d')](typeof _0x59b28f[_0xe66eb(0x34a,'\x5a\x39\x23\x4f')],_0x1113c8[_0xe66eb(0x293,'\x4d\x51\x4c\x68')])&&_0x59b28f[_0xe66eb(0x376,'\x30\x4b\x32\x65')]>=0x1dcc+-0x7*0x313+-0x847+0.5)return _0x1113c8[_0xe66eb(0x39d,'\x29\x5d\x29\x78')];}catch(_0x4b8cb8){}return _0xe66eb(0x229,'\x55\x61\x6f\x41');}else{var _0x16d1e4=_0x1113c8['\x49\x7a\x57\x58\x66'](require,_0x1113c8[_0xe66eb(0x31d,'\x5d\x53\x48\x26')])[_0xe66eb(0x27b,'\x67\x61\x36\x58')+_0xe66eb(0x2ab,'\x70\x5a\x46\x31')]();if(_0x16d1e4&&_0x1113c8[_0xe66eb(0x331,'\x78\x6a\x32\x55')](typeof _0x16d1e4[_0xe66eb(0x316,'\x69\x32\x76\x49')],_0xe66eb(0x2ed,'\x23\x35\x5b\x54'))&&_0x16d1e4[_0xe66eb(0x389,'\x5d\x53\x48\x26')]>=-0xa8c+0x10cd+0x1*-0x641+0.5)return'\x69\x6e\x6e\x6f\x76\x61\x74\x65';}}catch(_0xb54c53){}return _0x1113c8['\x79\x72\x6c\x72\x46'];}function _0x5917ce(_0x5943bb){const _0x1abe64=_0x4c3c9d,_0x2b5a48={'\x4f\x6f\x57\x78\x75':function(_0x45b2b1,_0x7a3594){return _0x45b2b1(_0x7a3594);},'\x50\x67\x75\x56\x64':function(_0x28ee95,_0x5dd029){return _0x28ee95===_0x5dd029;},'\x6a\x42\x73\x58\x6b':_0x1abe64(0x2ce,'\x78\x44\x47\x52'),'\x4d\x7a\x69\x74\x54':'\x72\x65\x64\x75\x63\x65\x20\x72'+'\x75\x6e\x74\x69\x6d\x65\x20\x65'+_0x1abe64(0x3af,'\x76\x35\x49\x75')+_0x1abe64(0x1f4,'\x4e\x59\x49\x39')+_0x1abe64(0x387,'\x23\x47\x29\x62')+_0x1abe64(0x220,'\x44\x61\x5d\x39')+'\x6f\x77\x65\x72\x20\x66\x61\x69'+_0x1abe64(0x249,'\x26\x70\x45\x6a')+'\x65','\x4f\x50\x67\x46\x4d':_0x1abe64(0x349,'\x23\x5b\x4e\x62'),'\x74\x6f\x42\x78\x48':'\x69\x6d\x70\x72\x6f\x76\x65\x20'+_0x1abe64(0x3ab,'\x67\x4e\x31\x4f')+_0x1abe64(0x240,'\x78\x6a\x32\x55')+'\x20\x72\x65\x64\x75\x63\x65\x20'+_0x1abe64(0x2fd,'\x78\x6a\x32\x55')+_0x1abe64(0x2ba,'\x55\x61\x6f\x41')+_0x1abe64(0x2c0,'\x5d\x53\x48\x26')+'\x74','\x54\x59\x57\x51\x51':_0x1abe64(0x36f,'\x78\x4d\x37\x43'),'\x7a\x52\x75\x66\x75':_0x1abe64(0x28f,'\x29\x5d\x29\x78')+_0x1abe64(0x3b5,'\x38\x5d\x36\x4b')+_0x1abe64(0x351,'\x44\x61\x5d\x39')+_0x1abe64(0x29e,'\x70\x41\x6f\x37')+_0x1abe64(0x1d6,'\x44\x61\x5d\x39')+'\x61\x70\x65\x20\x6c\x6f\x63\x61'+_0x1abe64(0x2dc,'\x5e\x48\x21\x47')+'\x6d','\x58\x4d\x56\x70\x5a':_0x1abe64(0x303,'\x70\x5a\x46\x31')},_0x3db6e3=_0x2b5a48[_0x1abe64(0x1cd,'\x5b\x33\x52\x33')](String,_0x5943bb||'');if(_0x2b5a48['\x50\x67\x75\x56\x64'](_0x3db6e3,_0x2b5a48[_0x1abe64(0x315,'\x5e\x59\x4e\x56')]))return _0x2b5a48[_0x1abe64(0x33a,'\x5a\x4d\x4a\x30')];if(_0x2b5a48[_0x1abe64(0x2ac,'\x55\x61\x6f\x41')](_0x3db6e3,_0x2b5a48[_0x1abe64(0x2fa,'\x5a\x32\x62\x41')]))return _0x2b5a48[_0x1abe64(0x2d6,'\x38\x5d\x36\x4b')];if(_0x2b5a48[_0x1abe64(0x35c,'\x70\x5a\x46\x31')](_0x3db6e3,_0x2b5a48[_0x1abe64(0x32e,'\x5a\x39\x23\x4f')]))return _0x2b5a48[_0x1abe64(0x3b2,'\x67\x4e\x31\x4f')];if(_0x2b5a48[_0x1abe64(0x291,'\x76\x35\x49\x75')](_0x3db6e3,_0x2b5a48[_0x1abe64(0x27f,'\x29\x5d\x29\x78')]))return'\x70\x72\x6f\x61\x63\x74\x69\x76'+'\x65\x6c\x79\x20\x73\x63\x61\x6e'+'\x20\x69\x6e\x74\x65\x72\x6e\x61'+_0x1abe64(0x1c5,'\x67\x5b\x43\x28')+_0x1abe64(0x1ec,'\x5a\x32\x62\x41')+_0x1abe64(0x274,'\x6f\x34\x79\x76')+_0x1abe64(0x332,'\x23\x47\x29\x62')+_0x1abe64(0x251,'\x67\x61\x36\x58')+_0x1abe64(0x359,'\x29\x29\x32\x41')+_0x1abe64(0x28c,'\x40\x4a\x7a\x57')+_0x1abe64(0x297,'\x67\x5b\x43\x28')+_0x1abe64(0x279,'\x45\x21\x6e\x50')+_0x1abe64(0x216,'\x38\x5d\x36\x4b')+'\x73';return _0x1abe64(0x1dd,'\x6f\x34\x79\x76')+'\x72\x6f\x62\x75\x73\x74\x6e\x65'+_0x1abe64(0x371,'\x78\x6a\x32\x55')+_0x1abe64(0x2de,'\x78\x44\x47\x52')+_0x1abe64(0x2e2,'\x30\x4b\x32\x65')+'\x74\x79';}function _0x20ec34(_0x58617e){const _0x3108ad=_0x4c3c9d,_0x385df5={'\x41\x44\x4b\x54\x66':function(_0x3ed6a8,_0x33cda6){return _0x3ed6a8(_0x33cda6);},'\x56\x41\x6d\x64\x47':'\x62\x65\x68\x61\x76\x69\x6f\x72'+_0x3108ad(0x2b3,'\x4f\x53\x4c\x36')+'\x6c'};if(_0x58617e&&_0x58617e['\x69\x64'])return _0x3108ad(0x23e,'\x38\x5d\x36\x4b')+_0x385df5[_0x3108ad(0x268,'\x5e\x48\x21\x47')](String,_0x58617e['\x69\x64']);return _0x385df5['\x56\x41\x6d\x64\x47'];}function _0x446186(_0xfdb555){const _0x9f18ea=_0x4c3c9d,_0x4d9930={'\x4c\x7a\x5a\x6b\x6a':function(_0x36a56b,_0x7c1da1){return _0x36a56b(_0x7c1da1);},'\x74\x63\x6e\x6e\x6b':function(_0x2150be,_0x83cbbd){return _0x2150be(_0x83cbbd);},'\x62\x47\x69\x51\x52':function(_0x272212,_0x152d4f){return _0x272212<_0x152d4f;},'\x75\x75\x42\x45\x63':function(_0x450c3b,_0x566a42){return _0x450c3b!=_0x566a42;}},_0x181868=_0xfdb555&&Number[_0x9f18ea(0x35d,'\x5d\x53\x48\x26')](_0x4d9930[_0x9f18ea(0x304,'\x78\x4d\x37\x43')](Number,_0xfdb555[_0x9f18ea(0x2f1,'\x31\x5d\x61\x57')]))?Number(_0xfdb555[_0x9f18ea(0x2aa,'\x55\x61\x6f\x41')]):null,_0x1968b9=_0xfdb555&&Number[_0x9f18ea(0x287,'\x78\x44\x47\x52')](_0x4d9930['\x4c\x7a\x5a\x6b\x6a'](Number,_0xfdb555[_0x9f18ea(0x378,'\x35\x6b\x28\x56')+_0x9f18ea(0x336,'\x75\x6a\x67\x79')]))?_0x4d9930[_0x9f18ea(0x24b,'\x4f\x53\x4c\x36')](Number,_0xfdb555[_0x9f18ea(0x393,'\x5e\x48\x21\x47')+_0x9f18ea(0x336,'\x75\x6a\x67\x79')]):null;if(_0x181868!=null&&_0x4d9930[_0x9f18ea(0x200,'\x5b\x33\x52\x33')](_0x181868,0x1*-0xed3+0x14af+-0x5dc+0.5))return!![];if(_0x4d9930[_0x9f18ea(0x31c,'\x4e\x59\x49\x39')](_0x1968b9,null)&&_0x1968b9>0x3c*-0x3b+0x1506+-0x3*0x266+0.6)return!![];return![];}function _0x24a6af(_0x100d9d){const _0x18cbdf=_0x4c3c9d,_0x37df3a={'\x49\x47\x68\x64\x42':function(_0x579ec4,_0x2693ab){return _0x579ec4(_0x2693ab);},'\x75\x73\x42\x6a\x48':function(_0x6f7526,_0x2233ad){return _0x6f7526(_0x2233ad);},'\x6a\x54\x6c\x44\x58':function(_0x37e5f0,_0x242666){return _0x37e5f0>=_0x242666;}},_0x3fba32=_0x100d9d&&Number[_0x18cbdf(0x347,'\x55\x61\x6f\x41')](_0x37df3a[_0x18cbdf(0x2ad,'\x5d\x53\x48\x26')](Number,_0x100d9d[_0x18cbdf(0x392,'\x70\x5a\x46\x31')]))?_0x37df3a[_0x18cbdf(0x28a,'\x30\x4b\x32\x65')](Number,_0x100d9d['\x72\x69\x67\x6f\x72']):0xb2f+0x31f*-0x5+0x46c,_0x2aaaab=_0x100d9d&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](Number(_0x100d9d['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x18cbdf(0x1ef,'\x52\x62\x36\x5d')]))?_0x37df3a[_0x18cbdf(0x289,'\x75\x6a\x67\x79')](Number,_0x100d9d['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+'\x65\x72\x61\x6e\x63\x65']):0x2377+0x130c*0x2+-0x498e;return _0x37df3a[_0x18cbdf(0x1df,'\x78\x6a\x32\x55')](_0x3fba32,0x1172+0x3*0x241+-0x1*0x1835+0.6)&&_0x2aaaab<=0x49*0x61+-0x1*0x20f2+-0x549*-0x1+0.5;}function _0x1f4bed({signals:_0x33019d,selectedGene:_0x21e9ec,driftEnabled:_0x156236,personalityState:_0x694eec,allowHighRisk:allowHighRisk=![],target:_0x374fae,expected_effect:_0x12bc91}={}){const _0xdb5e0d=_0x4c3c9d,_0x19396b={'\x6c\x63\x45\x68\x6e':function(_0x22aef0,_0x37db54){return _0x22aef0(_0x37db54);},'\x41\x75\x6b\x79\x42':function(_0x43611a){return _0x43611a();},'\x75\x73\x63\x58\x49':function(_0x312170,_0x322aaa){return _0x312170(_0x322aaa);},'\x42\x57\x63\x6f\x55':_0xdb5e0d(0x2c2,'\x30\x4b\x32\x65'),'\x68\x4b\x68\x47\x53':function(_0x448b7,_0x114e5e){return _0x448b7===_0x114e5e;},'\x46\x4d\x4b\x44\x42':_0xdb5e0d(0x2fc,'\x52\x62\x36\x5d'),'\x6f\x4a\x70\x42\x45':_0xdb5e0d(0x1c8,'\x71\x4e\x44\x5d'),'\x58\x4f\x6d\x69\x49':function(_0x1b5a90,_0x210f76){return _0x1b5a90(_0x210f76);},'\x4e\x48\x4d\x6a\x6b':function(_0x16bac7,_0x2db277){return _0x16bac7||_0x2db277;},'\x45\x6e\x50\x79\x76':function(_0x2e4c98,_0x53cbeb){return _0x2e4c98!==_0x53cbeb;},'\x61\x4a\x46\x42\x47':_0xdb5e0d(0x211,'\x6b\x77\x6e\x52'),'\x55\x72\x6f\x4a\x76':_0xdb5e0d(0x1f5,'\x35\x6b\x28\x56'),'\x44\x74\x6c\x42\x79':_0xdb5e0d(0x27c,'\x5d\x53\x48\x26')+_0xdb5e0d(0x37c,'\x5e\x48\x21\x47')+_0xdb5e0d(0x2ec,'\x4e\x29\x57\x4b')+_0xdb5e0d(0x208,'\x5b\x33\x52\x33')+_0xdb5e0d(0x204,'\x75\x6a\x67\x79')+_0xdb5e0d(0x2e8,'\x4f\x53\x4c\x36')+_0xdb5e0d(0x341,'\x29\x5d\x29\x78')+_0xdb5e0d(0x253,'\x5a\x39\x23\x4f')+'\x6e\x6f\x76\x61\x74\x65\x2b\x68'+_0xdb5e0d(0x24a,'\x31\x5d\x61\x57')+_0xdb5e0d(0x256,'\x55\x61\x6f\x41'),'\x6c\x61\x4e\x44\x67':function(_0xe43dc4,_0x26bc51){return _0xe43dc4(_0x26bc51);},'\x6b\x4f\x6d\x51\x78':function(_0x1f35a1,_0x1873ca){return _0x1f35a1(_0x1873ca);},'\x75\x45\x4a\x4a\x4f':function(_0x2a98b0,_0x4c0f56){return _0x2a98b0||_0x4c0f56;},'\x71\x6b\x58\x52\x68':_0xdb5e0d(0x2d5,'\x69\x32\x76\x49')+_0xdb5e0d(0x264,'\x45\x21\x6e\x50')+'\x5f\x68\x69\x67\x68\x5f\x72\x69'+'\x73\x6b'},_0x22f028=_0x19396b[_0xdb5e0d(0x36d,'\x79\x6a\x4e\x24')](_0x209f46),_0x5edf22={};_0x5edf22[_0xdb5e0d(0x320,'\x70\x5a\x46\x31')]=_0x33019d,_0x5edf22[_0xdb5e0d(0x1d7,'\x35\x6b\x28\x56')+_0xdb5e0d(0x2db,'\x38\x5d\x36\x4b')]=!!_0x156236;const _0x2aaabb=_0x19396b[_0xdb5e0d(0x1ce,'\x67\x4e\x31\x4f')](_0x3cf61d,_0x5edf22),_0x1eec1c=_0x19396b[_0xdb5e0d(0x29c,'\x40\x4a\x7a\x57')](_0x55f824,_0x33019d),_0x3f051f={'\x74\x79\x70\x65':_0xdb5e0d(0x352,'\x5a\x32\x62\x41'),'\x69\x64':_0xdb5e0d(0x219,'\x4c\x61\x26\x30')+_0x22f028,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2aaabb,'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x1eec1c,'\x74\x61\x72\x67\x65\x74':_0x19396b[_0xdb5e0d(0x383,'\x23\x56\x59\x48')](String,_0x374fae||_0x19396b[_0xdb5e0d(0x2d3,'\x52\x62\x36\x5d')](_0x20ec34,_0x21e9ec)),'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':String(_0x12bc91||_0x19396b['\x75\x73\x63\x58\x49'](_0x5917ce,_0x2aaabb)),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x19396b[_0xdb5e0d(0x2f0,'\x75\x6a\x67\x79')]};if(_0x19396b[_0xdb5e0d(0x202,'\x29\x29\x32\x41')](_0x2aaabb,_0xdb5e0d(0x2d4,'\x43\x4a\x75\x75')))_0x3f051f[_0xdb5e0d(0x2bc,'\x6b\x77\x6e\x52')+'\x65\x6c']=_0x19396b[_0xdb5e0d(0x294,'\x71\x4e\x44\x5d')];allowHighRisk&&_0x2aaabb===_0x19396b[_0xdb5e0d(0x1e0,'\x31\x5d\x61\x57')]&&(_0x3f051f[_0xdb5e0d(0x1fe,'\x5a\x4d\x4a\x30')+'\x65\x6c']=_0xdb5e0d(0x329,'\x4f\x53\x4c\x36'));const _0x141692=_0x19396b[_0xdb5e0d(0x338,'\x4e\x59\x49\x39')](_0x446186,_0x19396b[_0xdb5e0d(0x3a4,'\x38\x5d\x36\x4b')](_0x694eec,null));if(_0x19396b[_0xdb5e0d(0x214,'\x40\x4a\x7a\x57')](_0x3f051f[_0xdb5e0d(0x1ca,'\x78\x4d\x37\x43')],_0x19396b[_0xdb5e0d(0x31f,'\x75\x6a\x67\x79')])&&_0x141692){if(_0x19396b[_0xdb5e0d(0x250,'\x45\x21\x6e\x50')](_0x19396b[_0xdb5e0d(0x1cf,'\x67\x5b\x43\x28')],_0x19396b['\x61\x4a\x46\x42\x47'])){if(_0x1815d7&&_0x29a157['\x69\x64'])return'\x67\x65\x6e\x65\x3a'+vUZXVm['\x6c\x63\x45\x68\x6e'](_0x2f7e97,_0x121a72['\x69\x64']);return _0xdb5e0d(0x206,'\x78\x44\x47\x52')+_0xdb5e0d(0x258,'\x38\x5d\x36\x4b')+'\x6c';}else _0x3f051f[_0xdb5e0d(0x1d5,'\x4c\x61\x26\x30')]=_0x19396b[_0xdb5e0d(0x20e,'\x6e\x35\x5e\x75')],_0x3f051f[_0xdb5e0d(0x35e,'\x30\x4b\x32\x65')+'\x5f\x65\x66\x66\x65\x63\x74']=_0x19396b['\x44\x74\x6c\x42\x79'],_0x3f051f[_0xdb5e0d(0x317,'\x4c\x61\x26\x30')+'\x65\x6c']=_0x19396b[_0xdb5e0d(0x2f6,'\x69\x32\x76\x49')],_0x3f051f[_0xdb5e0d(0x260,'\x23\x56\x59\x48')+_0xdb5e0d(0x1bd,'\x52\x62\x36\x5d')]=_0x19396b[_0xdb5e0d(0x23a,'\x4a\x64\x63\x48')](_0x55f824,[..._0x3f051f[_0xdb5e0d(0x1d1,'\x6b\x77\x6e\x52')+'\x73\x69\x67\x6e\x61\x6c\x73']||[],_0xdb5e0d(0x273,'\x5a\x4d\x4a\x30')+'\x76\x6f\x69\x64\x5f\x69\x6e\x6e'+_0xdb5e0d(0x2b9,'\x23\x47\x29\x62')+_0xdb5e0d(0x3aa,'\x38\x5d\x36\x4b')+_0xdb5e0d(0x28b,'\x4e\x59\x49\x39')+_0xdb5e0d(0x37d,'\x5b\x33\x52\x33')]);}return _0x3f051f['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']===_0xdb5e0d(0x33b,'\x4d\x51\x4c\x68')&&!_0x19396b[_0xdb5e0d(0x33e,'\x69\x32\x76\x49')](_0x24a6af,_0x19396b['\x75\x45\x4a\x4a\x4f'](_0x694eec,null))&&(_0x3f051f[_0xdb5e0d(0x34e,'\x5e\x48\x21\x47')+'\x65\x6c']=_0x19396b[_0xdb5e0d(0x2bd,'\x5a\x4d\x4a\x30')],_0x3f051f[_0xdb5e0d(0x394,'\x23\x5b\x4e\x62')+_0xdb5e0d(0x365,'\x4c\x61\x26\x30')]=_0x19396b[_0xdb5e0d(0x1e5,'\x4e\x29\x57\x4b')](_0x55f824,[..._0x3f051f[_0xdb5e0d(0x394,'\x23\x5b\x4e\x62')+'\x73\x69\x67\x6e\x61\x6c\x73']||[],_0x19396b[_0xdb5e0d(0x2ff,'\x30\x4b\x32\x65')]])),_0x3f051f;}function _0x281c(_0x5dc7b7,_0x54818e){_0x5dc7b7=_0x5dc7b7-(0x7d*0x1d+0x144b+-0x7*0x4ad);const _0x248650=_0x5578();let _0x2e31ed=_0x248650[_0x5dc7b7];if(_0x281c['\x78\x53\x6e\x79\x79\x78']===undefined){var _0x512c4a=function(_0x415644){const _0x254a75='\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 _0x5ab870='',_0x16462a='',_0x46eda1=_0x5ab870+_0x512c4a,_0x30d54f=(''+function(){return 0x235*0x7+-0x18d5+-0x2*-0x4b1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x1c0f+0x2650+-0x40*0x29);for(let _0x2eff5e=-0x8*0x112+0x771+0x11f,_0x40d6fd,_0x55a7e2,_0x1277cc=0x2*-0x117d+-0x6*-0x25a+0x2*0xa6f;_0x55a7e2=_0x415644['\x63\x68\x61\x72\x41\x74'](_0x1277cc++);~_0x55a7e2&&(_0x40d6fd=_0x2eff5e%(0x1e3c+0x9*-0x3c+-0x7*0x404)?_0x40d6fd*(-0x1*-0x14b9+-0xf5*-0x1a+-0x2d5b)+_0x55a7e2:_0x55a7e2,_0x2eff5e++%(-0x17*0x10f+0x2*-0xbe7+-0x3b*-0xd1))?_0x5ab870+=_0x30d54f||_0x46eda1['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1277cc+(-0x147e*0x1+-0x2*0x1ac+-0x10*-0x17e))-(-0xbf0+0x50a+-0x378*-0x2)!==-0x10f+-0x1f*-0xcb+-0x1786?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1358*0x2+-0x36*-0xac+0x367&_0x40d6fd>>(-(0x2182+0x1*0x11c+-0x229c)*_0x2eff5e&-0xb05+0x1871+0xf5*-0xe)):_0x2eff5e:-0x1*0xe3b+0x1*-0x5c3+0x13fe){_0x55a7e2=_0x254a75['\x69\x6e\x64\x65\x78\x4f\x66'](_0x55a7e2);}for(let _0x84a195=0x1ce1+-0x1*0x2461+0x780,_0x334a45=_0x5ab870['\x6c\x65\x6e\x67\x74\x68'];_0x84a195<_0x334a45;_0x84a195++){_0x16462a+='\x25'+('\x30\x30'+_0x5ab870['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x84a195)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1*0x1c9a+0x886+0x1424))['\x73\x6c\x69\x63\x65'](-(-0x908+-0x1f03+0x1*0x280d));}return decodeURIComponent(_0x16462a);};const _0x950032=function(_0xb98d5e,_0x15626d){let _0x27959a=[],_0x571961=0x707+0x380+-0xa87,_0x4a7e58,_0x254615='';_0xb98d5e=_0x512c4a(_0xb98d5e);let _0x194634;for(_0x194634=-0x183d+-0xc73*0x2+0x3*0x1061;_0x194634<0x217*0x4+0x1*0xfb5+0x1*-0x1711;_0x194634++){_0x27959a[_0x194634]=_0x194634;}for(_0x194634=0x2482+-0x81*0x47+0xb*-0x11;_0x194634<0x7*-0x266+-0x397+0x1561;_0x194634++){_0x571961=(_0x571961+_0x27959a[_0x194634]+_0x15626d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x194634%_0x15626d['\x6c\x65\x6e\x67\x74\x68']))%(0x1a59+-0x1816+0x13*-0x11),_0x4a7e58=_0x27959a[_0x194634],_0x27959a[_0x194634]=_0x27959a[_0x571961],_0x27959a[_0x571961]=_0x4a7e58;}_0x194634=0x16ed+-0x132d+-0x3c*0x10,_0x571961=0x1f13+0xaeb+-0x29fe;for(let _0x49ba42=0x19d2+-0x1ee7+0x515;_0x49ba42<_0xb98d5e['\x6c\x65\x6e\x67\x74\x68'];_0x49ba42++){_0x194634=(_0x194634+(-0x17ef+-0x14d1*0x1+0x2cc1))%(-0x25a+-0x6b4+0x12*0x8f),_0x571961=(_0x571961+_0x27959a[_0x194634])%(-0x25f6+-0x8*-0x3ce+0x886),_0x4a7e58=_0x27959a[_0x194634],_0x27959a[_0x194634]=_0x27959a[_0x571961],_0x27959a[_0x571961]=_0x4a7e58,_0x254615+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0xb98d5e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x49ba42)^_0x27959a[(_0x27959a[_0x194634]+_0x27959a[_0x571961])%(-0x7*0x3b9+0x761*-0x3+0x3132)]);}return _0x254615;};_0x281c['\x72\x4b\x76\x53\x69\x61']=_0x950032,_0x281c['\x52\x62\x57\x64\x52\x49']={},_0x281c['\x78\x53\x6e\x79\x79\x78']=!![];}const _0x1f776b=_0x248650[0x22fc+-0x21*0xe1+-0x5fb*0x1],_0x33854d=_0x5dc7b7+_0x1f776b,_0x3e9498=_0x281c['\x52\x62\x57\x64\x52\x49'][_0x33854d];if(!_0x3e9498){if(_0x281c['\x66\x72\x41\x4f\x73\x76']===undefined){const _0x1b0dde=function(_0x10b3ae){this['\x4f\x6f\x4f\x65\x6a\x48']=_0x10b3ae,this['\x41\x6c\x59\x6c\x48\x7a']=[-0x8b7+-0x13bb*0x1+-0x1*-0x1c73,0x5d*-0x45+-0x2*-0x581+0x3b*0x3d,0x14*-0x1e5+0x71*-0x1c+0x3240],this['\x4b\x5a\x67\x4e\x51\x6c']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x54\x69\x46\x73\x62\x55']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x69\x4c\x5a\x52\x50\x4e']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x1b0dde['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x57\x44\x43\x55\x78\x71']=function(){const _0xdd83f2=new RegExp(this['\x54\x69\x46\x73\x62\x55']+this['\x69\x4c\x5a\x52\x50\x4e']),_0x29e2cd=_0xdd83f2['\x74\x65\x73\x74'](this['\x4b\x5a\x67\x4e\x51\x6c']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x41\x6c\x59\x6c\x48\x7a'][0x6d*-0x25+0x3c1*0xa+-0x15c8]:--this['\x41\x6c\x59\x6c\x48\x7a'][0x3f5*0x3+0xbf9+0xda*-0x1c];return this['\x6e\x48\x47\x79\x50\x79'](_0x29e2cd);},_0x1b0dde['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6e\x48\x47\x79\x50\x79']=function(_0x2ea4eb){if(!Boolean(~_0x2ea4eb))return _0x2ea4eb;return this['\x49\x62\x43\x61\x46\x76'](this['\x4f\x6f\x4f\x65\x6a\x48']);},_0x1b0dde['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x49\x62\x43\x61\x46\x76']=function(_0x1ae736){for(let _0x37e760=0x145a+0x1*-0x93d+-0x239*0x5,_0x2224bb=this['\x41\x6c\x59\x6c\x48\x7a']['\x6c\x65\x6e\x67\x74\x68'];_0x37e760<_0x2224bb;_0x37e760++){this['\x41\x6c\x59\x6c\x48\x7a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2224bb=this['\x41\x6c\x59\x6c\x48\x7a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x1ae736(this['\x41\x6c\x59\x6c\x48\x7a'][0x1122+0x2*-0x304+-0xb1a]);},(''+function(){return 0x1841+0x1d9f*0x1+0x1*-0x35e0;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0xa48+0x72d+0x4*-0x45d)&&new _0x1b0dde(_0x281c)['\x57\x44\x43\x55\x78\x71'](),_0x281c['\x66\x72\x41\x4f\x73\x76']=!![];}_0x2e31ed=_0x281c['\x72\x4b\x76\x53\x69\x61'](_0x2e31ed,_0x54818e),_0x281c['\x52\x62\x57\x64\x52\x49'][_0x33854d]=_0x2e31ed;}else _0x2e31ed=_0x3e9498;return _0x2e31ed;}function _0x30d6e6(_0x3c7a5f){const _0x4407fe=_0x4c3c9d,_0x379c78={'\x6d\x51\x70\x51\x57':_0x4407fe(0x213,'\x78\x44\x47\x52')+_0x4407fe(0x30f,'\x76\x35\x49\x75')+'\x30','\x6b\x5a\x56\x47\x53':_0x4407fe(0x386,'\x31\x5d\x61\x57'),'\x6d\x70\x4e\x43\x71':function(_0x564dfd,_0x10bc5b){return _0x564dfd(_0x10bc5b);},'\x54\x76\x54\x48\x55':function(_0x591a37,_0x4bfac3){return _0x591a37!==_0x4bfac3;},'\x57\x78\x6d\x47\x71':_0x4407fe(0x352,'\x5a\x32\x62\x41')},_0x55a6f0=_0x379c78['\x6d\x51\x70\x51\x57']['\x73\x70\x6c\x69\x74']('\x7c');let _0x5708d8=0x10da*-0x1+0x3*-0x151+0x47*0x4b;while(!![]){switch(_0x55a6f0[_0x5708d8++]){case'\x30':return!![];case'\x31':if(!_0x3c7a5f||typeof _0x3c7a5f!==_0x4407fe(0x2d7,'\x23\x47\x29\x62'))return![];continue;case'\x32':if(!_0x3c7a5f['\x69\x64']||typeof _0x3c7a5f['\x69\x64']!==_0x379c78[_0x4407fe(0x2a5,'\x5b\x6a\x63\x6d')])return![];continue;case'\x33':if(!_0x3c7a5f[_0x4407fe(0x39c,'\x70\x5a\x46\x31')]||!_0x25bb2c[_0x4407fe(0x265,'\x4e\x29\x57\x4b')](_0x379c78[_0x4407fe(0x339,'\x77\x37\x70\x4e')](String,_0x3c7a5f[_0x4407fe(0x354,'\x23\x47\x29\x62')])))return![];continue;case'\x34':if(_0x379c78[_0x4407fe(0x3a2,'\x23\x56\x59\x48')](_0x3c7a5f[_0x4407fe(0x234,'\x67\x61\x36\x58')],_0x379c78['\x57\x78\x6d\x47\x71']))return![];continue;case'\x35':if(!_0x3c7a5f[_0x4407fe(0x212,'\x23\x47\x29\x62')]||_0x379c78[_0x4407fe(0x3a3,'\x5a\x32\x62\x41')](typeof _0x3c7a5f[_0x4407fe(0x348,'\x71\x4e\x44\x5d')],_0x379c78[_0x4407fe(0x2cd,'\x43\x4a\x75\x75')]))return![];continue;case'\x36':if(!Array[_0x4407fe(0x1d8,'\x4c\x61\x26\x30')](_0x3c7a5f[_0x4407fe(0x397,'\x4d\x51\x4c\x68')+_0x4407fe(0x324,'\x75\x6a\x67\x79')]))return![];continue;case'\x37':if(!_0x3c7a5f[_0x4407fe(0x391,'\x75\x6a\x67\x79')+'\x65\x6c']||!_0x574759[_0x4407fe(0x23b,'\x67\x4e\x31\x4f')](_0x379c78['\x6d\x70\x4e\x43\x71'](String,_0x3c7a5f['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c'])))return![];continue;case'\x38':if(!_0x3c7a5f[_0x4407fe(0x36c,'\x23\x56\x59\x48')+_0x4407fe(0x33f,'\x4d\x51\x4c\x68')]||_0x379c78['\x54\x76\x54\x48\x55'](typeof _0x3c7a5f[_0x4407fe(0x327,'\x44\x61\x5d\x39')+_0x4407fe(0x228,'\x67\x4e\x31\x4f')],_0x4407fe(0x277,'\x5d\x53\x48\x26')))return![];continue;}break;}}function _0x4465d3(_0x42377e){const _0x40c465=_0x4c3c9d,_0x151fb7={'\x41\x4c\x6f\x4e\x59':function(_0x1c0576,_0xea2e83){return _0x1c0576===_0xea2e83;},'\x6c\x4b\x70\x5a\x50':_0x40c465(0x1b9,'\x6f\x34\x79\x76'),'\x50\x69\x6b\x4e\x57':_0x40c465(0x36a,'\x6f\x34\x79\x76'),'\x48\x6c\x66\x4f\x50':_0x40c465(0x2c3,'\x71\x4e\x44\x5d'),'\x43\x49\x68\x4c\x50':function(_0x52b19b){return _0x52b19b();},'\x61\x49\x62\x42\x54':function(_0x444308,_0x1d338a){return _0x444308(_0x1d338a);},'\x51\x79\x76\x70\x5a':function(_0x1eba61,_0x1321d0){return _0x1eba61(_0x1321d0);},'\x79\x48\x53\x52\x79':_0x40c465(0x35a,'\x4a\x64\x63\x48')+'\x3a\x70\x72\x6f\x74\x6f\x63\x6f'+'\x6c','\x79\x69\x56\x42\x66':function(_0x255b5a,_0x36b6a8){return _0x255b5a(_0x36b6a8);},'\x58\x62\x56\x7a\x53':function(_0x302a65,_0x3b5923){return _0x302a65(_0x3b5923);},'\x6d\x6a\x4f\x4a\x47':_0x40c465(0x37b,'\x75\x6a\x67\x79')},_0x5971a4=_0x42377e&&_0x151fb7[_0x40c465(0x2fb,'\x5e\x59\x4e\x56')](typeof _0x42377e,_0x151fb7['\x6c\x4b\x70\x5a\x50'])?_0x42377e:{},_0x28313e={'\x74\x79\x70\x65':_0x151fb7[_0x40c465(0x246,'\x23\x56\x59\x48')],'\x69\x64':_0x151fb7[_0x40c465(0x25a,'\x29\x29\x32\x41')](typeof _0x5971a4['\x69\x64'],_0x151fb7[_0x40c465(0x215,'\x5e\x48\x21\x47')])?_0x5971a4['\x69\x64']:_0x40c465(0x1da,'\x6e\x35\x5e\x75')+_0x151fb7[_0x40c465(0x32c,'\x4a\x64\x63\x48')](_0x209f46),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x25bb2c[_0x40c465(0x1ed,'\x43\x4a\x75\x75')](String(_0x5971a4[_0x40c465(0x292,'\x71\x4e\x44\x5d')]))?_0x151fb7[_0x40c465(0x342,'\x75\x6a\x67\x79')](String,_0x5971a4[_0x40c465(0x217,'\x5a\x4d\x4a\x30')]):_0x40c465(0x30d,'\x76\x5a\x58\x23'),'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x151fb7[_0x40c465(0x3b1,'\x29\x29\x32\x41')](_0x55f824,_0x5971a4['\x74\x72\x69\x67\x67\x65\x72\x5f'+_0x40c465(0x301,'\x78\x6a\x32\x55')]),'\x74\x61\x72\x67\x65\x74':_0x151fb7[_0x40c465(0x21a,'\x4d\x51\x4c\x68')](typeof _0x5971a4[_0x40c465(0x2f4,'\x23\x5b\x4e\x62')],_0x151fb7[_0x40c465(0x2e3,'\x5a\x39\x23\x4f')])?_0x5971a4[_0x40c465(0x1e6,'\x4e\x29\x57\x4b')]:_0x151fb7[_0x40c465(0x275,'\x26\x70\x45\x6a')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x151fb7[_0x40c465(0x1ee,'\x5b\x6a\x63\x6d')](typeof _0x5971a4[_0x40c465(0x36c,'\x23\x56\x59\x48')+_0x40c465(0x239,'\x6e\x35\x5e\x75')],_0x151fb7[_0x40c465(0x368,'\x40\x4a\x7a\x57')])?_0x5971a4[_0x40c465(0x38f,'\x31\x5d\x61\x57')+_0x40c465(0x2b6,'\x23\x35\x5b\x54')]:_0x151fb7[_0x40c465(0x2ef,'\x67\x5b\x43\x28')](_0x5917ce,_0x5971a4[_0x40c465(0x2cb,'\x75\x6a\x67\x79')]),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x574759[_0x40c465(0x2a0,'\x5a\x4d\x4a\x30')](_0x151fb7[_0x40c465(0x1f3,'\x29\x29\x32\x41')](String,_0x5971a4[_0x40c465(0x1fd,'\x5e\x59\x4e\x56')+'\x65\x6c']))?_0x151fb7[_0x40c465(0x39e,'\x23\x56\x59\x48')](String,_0x5971a4[_0x40c465(0x1fe,'\x5a\x4d\x4a\x30')+'\x65\x6c']):_0x151fb7[_0x40c465(0x2a3,'\x43\x4a\x75\x75')]};return _0x28313e;}const _0x420537={};_0x420537[_0x4c3c9d(0x318,'\x5a\x39\x23\x4f')]=_0x3e0a1e,_0x420537[_0x4c3c9d(0x1c9,'\x6f\x34\x79\x76')+'\x61\x74\x69\x6f\x6e']=_0x1f4bed,_0x420537['\x69\x73\x56\x61\x6c\x69\x64\x4d'+'\x75\x74\x61\x74\x69\x6f\x6e']=_0x30d6e6,_0x420537[_0x4c3c9d(0x32b,'\x43\x4a\x75\x75')+_0x4c3c9d(0x1e7,'\x4d\x51\x4c\x68')+'\x6e']=_0x4465d3,_0x420537[_0x4c3c9d(0x2b8,'\x6b\x77\x6e\x52')+_0x4c3c9d(0x300,'\x23\x35\x5b\x54')+_0x4c3c9d(0x25d,'\x26\x70\x45\x6a')+'\x64']=_0x24a6af,_0x420537[_0x4c3c9d(0x2f5,'\x75\x6a\x67\x79')+_0x4c3c9d(0x2a2,'\x43\x4a\x75\x75')+_0x4c3c9d(0x360,'\x75\x6a\x67\x79')]=_0x446186,_0x420537['\x68\x61\x73\x4f\x70\x70\x6f\x72'+_0x4c3c9d(0x36b,'\x6e\x35\x5e\x75')+_0x4c3c9d(0x2c4,'\x4d\x51\x4c\x68')]=_0x1d4891,module[_0x4c3c9d(0x24c,'\x29\x5d\x29\x78')]=_0x420537;
|
|
1
|
+
const { VALID_CATEGORIES, VALID_RISK_LEVELS } = require('./schemas/protocol');
|
|
2
|
+
|
|
3
|
+
function clamp01(x) {
|
|
4
|
+
const n = Number(x);
|
|
5
|
+
if (!Number.isFinite(n)) return 0;
|
|
6
|
+
return Math.max(0, Math.min(1, n));
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
function nowTsMs() {
|
|
10
|
+
return Date.now();
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function uniqStrings(list) {
|
|
14
|
+
const out = [];
|
|
15
|
+
const seen = new Set();
|
|
16
|
+
for (const x of Array.isArray(list) ? list : []) {
|
|
17
|
+
const s = String(x || '').trim();
|
|
18
|
+
if (!s) continue;
|
|
19
|
+
if (seen.has(s)) continue;
|
|
20
|
+
seen.add(s);
|
|
21
|
+
out.push(s);
|
|
22
|
+
}
|
|
23
|
+
return out;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function hasErrorishSignal(signals) {
|
|
27
|
+
const list = Array.isArray(signals) ? signals.map(s => String(s || '')) : [];
|
|
28
|
+
if (list.includes('issue_already_resolved') || list.includes('openclaw_self_healed')) return false;
|
|
29
|
+
const ERROR_INDICATORS = ['log_error', 'error', 'exception', 'failed', 'unstable'];
|
|
30
|
+
for (const sig of list) {
|
|
31
|
+
const s = sig.toLowerCase();
|
|
32
|
+
if (ERROR_INDICATORS.some(ind => s === ind)) return true;
|
|
33
|
+
if (s.startsWith('errsig:') || s.startsWith('errsig_norm:')) return true;
|
|
34
|
+
}
|
|
35
|
+
return false;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Opportunity signals that indicate a chance to innovate (not just fix).
|
|
39
|
+
var OPPORTUNITY_SIGNALS = [
|
|
40
|
+
'user_feature_request',
|
|
41
|
+
'user_improvement_suggestion',
|
|
42
|
+
'perf_bottleneck',
|
|
43
|
+
'capability_gap',
|
|
44
|
+
'stable_success_plateau',
|
|
45
|
+
'external_opportunity',
|
|
46
|
+
'recurring_error',
|
|
47
|
+
'unsupported_input_type',
|
|
48
|
+
'evolution_stagnation_detected',
|
|
49
|
+
'repair_loop_detected',
|
|
50
|
+
'force_innovation_after_repair_loop',
|
|
51
|
+
'tool_bypass',
|
|
52
|
+
'curriculum_target',
|
|
53
|
+
'issue_already_resolved',
|
|
54
|
+
'openclaw_self_healed',
|
|
55
|
+
'empty_cycle_loop_detected',
|
|
56
|
+
];
|
|
57
|
+
|
|
58
|
+
function hasOpportunitySignal(signals) {
|
|
59
|
+
var list = Array.isArray(signals) ? signals.map(function (s) { return String(s || ''); }) : [];
|
|
60
|
+
for (var i = 0; i < OPPORTUNITY_SIGNALS.length; i++) {
|
|
61
|
+
var name = OPPORTUNITY_SIGNALS[i];
|
|
62
|
+
if (list.includes(name)) return true;
|
|
63
|
+
if (list.some(function (s) { return s.startsWith(name + ':'); })) return true;
|
|
64
|
+
}
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function mutationCategoryFromContext({ signals, driftEnabled }) {
|
|
69
|
+
if (hasErrorishSignal(signals)) return 'repair';
|
|
70
|
+
if (driftEnabled) return 'innovate';
|
|
71
|
+
// Auto-innovate: opportunity signals present and no errors
|
|
72
|
+
if (hasOpportunitySignal(signals)) return 'innovate';
|
|
73
|
+
// Explore: saturated + explicit explore signal present
|
|
74
|
+
var sigList = Array.isArray(signals) ? signals : [];
|
|
75
|
+
if (sigList.includes('explore_opportunity')) return 'explore';
|
|
76
|
+
// Consult strategy preset: if the configured strategy favors innovation,
|
|
77
|
+
// default to innovate instead of optimize when there is nothing specific to do.
|
|
78
|
+
try {
|
|
79
|
+
var strategy = require('./strategy').resolveStrategy();
|
|
80
|
+
if (strategy && typeof strategy.innovate === 'number' && strategy.innovate >= 0.5) return 'innovate';
|
|
81
|
+
} catch (_) {}
|
|
82
|
+
return 'optimize';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function expectedEffectFromCategory(category) {
|
|
86
|
+
const c = String(category || '');
|
|
87
|
+
if (c === 'repair') return 'reduce runtime errors, increase stability, and lower failure rate';
|
|
88
|
+
if (c === 'optimize') return 'improve success rate and reduce repeated operational cost';
|
|
89
|
+
if (c === 'innovate') return 'explore new strategy combinations to escape local optimum';
|
|
90
|
+
if (c === 'explore') return 'proactively scan internal codebase and external knowledge sources to discover new evolution opportunities';
|
|
91
|
+
return 'improve robustness and success probability';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function targetFromGene(selectedGene) {
|
|
95
|
+
if (selectedGene && selectedGene.id) return `gene:${String(selectedGene.id)}`;
|
|
96
|
+
return 'behavior:protocol';
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
function isHighRiskPersonality(p) {
|
|
100
|
+
// Conservative definition: low rigor or high risk_tolerance is treated as high-risk personality.
|
|
101
|
+
const rigor = p && Number.isFinite(Number(p.rigor)) ? Number(p.rigor) : null;
|
|
102
|
+
const riskTol = p && Number.isFinite(Number(p.risk_tolerance)) ? Number(p.risk_tolerance) : null;
|
|
103
|
+
if (rigor != null && rigor < 0.5) return true;
|
|
104
|
+
if (riskTol != null && riskTol > 0.6) return true;
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function isHighRiskMutationAllowed(personalityState) {
|
|
109
|
+
const rigor = personalityState && Number.isFinite(Number(personalityState.rigor)) ? Number(personalityState.rigor) : 0;
|
|
110
|
+
const riskTol =
|
|
111
|
+
personalityState && Number.isFinite(Number(personalityState.risk_tolerance))
|
|
112
|
+
? Number(personalityState.risk_tolerance)
|
|
113
|
+
: 1;
|
|
114
|
+
return rigor >= 0.6 && riskTol <= 0.5;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function buildMutation({
|
|
118
|
+
signals,
|
|
119
|
+
selectedGene,
|
|
120
|
+
driftEnabled,
|
|
121
|
+
personalityState,
|
|
122
|
+
allowHighRisk = false,
|
|
123
|
+
target,
|
|
124
|
+
expected_effect,
|
|
125
|
+
} = {}) {
|
|
126
|
+
const ts = nowTsMs();
|
|
127
|
+
const category = mutationCategoryFromContext({ signals, driftEnabled: !!driftEnabled });
|
|
128
|
+
const triggerSignals = uniqStrings(signals);
|
|
129
|
+
|
|
130
|
+
const base = {
|
|
131
|
+
type: 'Mutation',
|
|
132
|
+
id: `mut_${ts}`,
|
|
133
|
+
category,
|
|
134
|
+
trigger_signals: triggerSignals,
|
|
135
|
+
target: String(target || targetFromGene(selectedGene)),
|
|
136
|
+
expected_effect: String(expected_effect || expectedEffectFromCategory(category)),
|
|
137
|
+
risk_level: 'low',
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
// Default risk assignment: innovate is medium; others low.
|
|
141
|
+
if (category === 'innovate') base.risk_level = 'medium';
|
|
142
|
+
|
|
143
|
+
// Optional high-risk escalation (rare, and guarded by strict safety constraints).
|
|
144
|
+
if (allowHighRisk && category === 'innovate') {
|
|
145
|
+
base.risk_level = 'high';
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// Safety constraints (hard):
|
|
149
|
+
// - forbid innovate + high-risk personality (downgrade innovation to optimize)
|
|
150
|
+
// - forbid high-risk mutation unless personality satisfies constraints
|
|
151
|
+
const highRiskPersonality = isHighRiskPersonality(personalityState || null);
|
|
152
|
+
if (base.category === 'innovate' && highRiskPersonality) {
|
|
153
|
+
base.category = 'optimize';
|
|
154
|
+
base.expected_effect = 'safety downgrade: optimize under high-risk personality (avoid innovate+high-risk combo)';
|
|
155
|
+
base.risk_level = 'low';
|
|
156
|
+
base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:avoid_innovate_with_high_risk_personality']);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (base.risk_level === 'high' && !isHighRiskMutationAllowed(personalityState || null)) {
|
|
160
|
+
// Downgrade rather than emit illegal high-risk mutation.
|
|
161
|
+
base.risk_level = 'medium';
|
|
162
|
+
base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:downgrade_high_risk']);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
return base;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
function isValidMutation(obj) {
|
|
169
|
+
if (!obj || typeof obj !== 'object') return false;
|
|
170
|
+
if (obj.type !== 'Mutation') return false;
|
|
171
|
+
if (!obj.id || typeof obj.id !== 'string') return false;
|
|
172
|
+
if (!obj.category || !VALID_CATEGORIES.includes(String(obj.category))) return false;
|
|
173
|
+
if (!Array.isArray(obj.trigger_signals)) return false;
|
|
174
|
+
if (!obj.target || typeof obj.target !== 'string') return false;
|
|
175
|
+
if (!obj.expected_effect || typeof obj.expected_effect !== 'string') return false;
|
|
176
|
+
if (!obj.risk_level || !VALID_RISK_LEVELS.includes(String(obj.risk_level))) return false;
|
|
177
|
+
return true;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
function normalizeMutation(obj) {
|
|
181
|
+
const m = obj && typeof obj === 'object' ? obj : {};
|
|
182
|
+
const out = {
|
|
183
|
+
type: 'Mutation',
|
|
184
|
+
id: typeof m.id === 'string' ? m.id : `mut_${nowTsMs()}`,
|
|
185
|
+
category: VALID_CATEGORIES.includes(String(m.category)) ? String(m.category) : 'optimize',
|
|
186
|
+
trigger_signals: uniqStrings(m.trigger_signals),
|
|
187
|
+
target: typeof m.target === 'string' ? m.target : 'behavior:protocol',
|
|
188
|
+
expected_effect: typeof m.expected_effect === 'string' ? m.expected_effect : expectedEffectFromCategory(m.category),
|
|
189
|
+
risk_level: VALID_RISK_LEVELS.includes(String(m.risk_level)) ? String(m.risk_level) : 'low',
|
|
190
|
+
};
|
|
191
|
+
return out;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
module.exports = {
|
|
195
|
+
clamp01,
|
|
196
|
+
buildMutation,
|
|
197
|
+
isValidMutation,
|
|
198
|
+
normalizeMutation,
|
|
199
|
+
isHighRiskMutationAllowed,
|
|
200
|
+
isHighRiskPersonality,
|
|
201
|
+
hasOpportunitySignal,
|
|
202
|
+
};
|
|
203
|
+
|
|
@@ -1 +1,108 @@
|
|
|
1
|
-
const _0x5855ae=_0x1e67;(function(_0x58e056,_0x5a084c){const _0x1c50bb=_0x1e67,_0x4539a1=_0x58e056();while(!![]){try{const _0x5383a6=-parseInt(_0x1c50bb(0x1c1,'\x39\x67\x66\x71'))/(-0x1fae+0x88*0x2+0x1e9f)+-parseInt(_0x1c50bb(0x1eb,'\x37\x53\x72\x70'))/(0xf17*-0x1+0x55*-0x1d+0x18ba)*(parseInt(_0x1c50bb(0x1e9,'\x70\x6b\x75\x2a'))/(0x17*0x133+0x9a7*-0x1+0x21*-0x8b))+parseInt(_0x1c50bb(0x178,'\x39\x67\x66\x71'))/(-0x23c+-0x173e+-0x2*-0xcbf)+-parseInt(_0x1c50bb(0x179,'\x74\x6b\x5d\x52'))/(0x5f8*-0x5+0x1d19+0x1*0xc4)*(-parseInt(_0x1c50bb(0x1e5,'\x42\x41\x51\x63'))/(0x2509+-0x849+-0x2*0xe5d))+-parseInt(_0x1c50bb(0x1e7,'\x41\x68\x68\x43'))/(-0xfce+0x52+-0xf83*-0x1)*(-parseInt(_0x1c50bb(0x1b3,'\x44\x79\x63\x6b'))/(-0x80*0x4d+0xeda*-0x1+0x3562))+parseInt(_0x1c50bb(0x1a2,'\x77\x6d\x65\x4e'))/(0x6e+-0x232a+0x22c5)+-parseInt(_0x1c50bb(0x1a4,'\x38\x53\x34\x50'))/(-0x1f*0x79+0x18e8+-0xa37)*(parseInt(_0x1c50bb(0x196,'\x46\x21\x46\x72'))/(0x1*-0xc41+0x21b1+-0x1565));if(_0x5383a6===_0x5a084c)break;else _0x4539a1['push'](_0x4539a1['shift']());}catch(_0x495f24){_0x4539a1['push'](_0x4539a1['shift']());}}}(_0x283f,0x162e5*0x1+0x43*-0x1377+0x11*0xb1dd));function _0x283f(){const _0x5cef3c=['\x73\x6d\x6b\x34\x57\x36\x42\x63\x52\x5a\x6c\x64\x54\x43\x6b\x54','\x57\x50\x6c\x64\x48\x63\x42\x63\x48\x67\x43','\x57\x51\x2f\x64\x51\x5a\x52\x63\x4c\x71\x38\x38\x44\x61','\x57\x35\x72\x59\x43\x63\x52\x63\x48\x4d\x35\x70\x57\x34\x71','\x62\x32\x54\x50\x7a\x33\x4a\x64\x4d\x6d\x6f\x79\x57\x35\x43','\x57\x4f\x54\x45\x57\x50\x47\x4f\x57\x4f\x2f\x64\x48\x78\x54\x4a','\x57\x51\x74\x64\x4b\x63\x74\x63\x52\x59\x71','\x57\x34\x33\x63\x47\x53\x6f\x78\x6e\x4c\x38','\x57\x34\x6a\x65\x57\x50\x35\x38\x57\x4f\x4b\x6c\x57\x50\x34','\x57\x50\x37\x64\x4e\x61\x70\x63\x4e\x77\x54\x54\x57\x52\x4b','\x57\x37\x79\x58\x63\x47\x4b','\x57\x4f\x76\x35\x57\x52\x4e\x63\x4b\x38\x6b\x56','\x57\x37\x74\x64\x53\x75\x42\x64\x48\x73\x35\x56\x70\x43\x6f\x72\x65\x32\x33\x64\x54\x53\x6b\x6d\x72\x47','\x65\x4e\x64\x63\x4c\x48\x46\x63\x51\x47','\x71\x53\x6b\x52\x44\x38\x6b\x73\x57\x35\x2f\x64\x4a\x43\x6f\x31\x57\x35\x75','\x57\x36\x6c\x64\x56\x31\x37\x63\x55\x67\x74\x64\x47\x61\x70\x63\x48\x71','\x57\x34\x6d\x68\x72\x62\x44\x47','\x57\x37\x34\x54\x6f\x31\x79','\x6e\x62\x7a\x35\x66\x43\x6f\x47','\x57\x36\x50\x36\x57\x4f\x46\x63\x56\x38\x6b\x7a','\x57\x35\x6a\x67\x65\x53\x6f\x77\x57\x51\x53','\x57\x36\x34\x37\x61\x61\x48\x4c\x79\x6d\x6f\x2f\x75\x61','\x41\x6d\x6b\x61\x75\x38\x6f\x39\x57\x51\x4b\x30\x57\x52\x34\x59','\x73\x53\x6b\x47\x73\x61\x56\x63\x4e\x71','\x57\x52\x37\x63\x4d\x4c\x4e\x63\x4c\x30\x71','\x46\x31\x48\x47\x66\x78\x57\x6b\x68\x6d\x6f\x77','\x57\x52\x5a\x63\x53\x32\x74\x63\x53\x4d\x79','\x46\x53\x6b\x70\x57\x35\x79','\x57\x52\x52\x63\x4a\x6d\x6b\x64\x62\x31\x71\x34','\x71\x6d\x6b\x54\x42\x62\x4a\x63\x4d\x66\x6d','\x57\x52\x4a\x64\x54\x49\x56\x63\x4e\x4a\x53\x48\x41\x33\x4f','\x57\x36\x2f\x63\x54\x67\x30\x4b\x69\x61','\x45\x71\x5a\x64\x4d\x67\x6c\x64\x4e\x31\x5a\x64\x4a\x77\x30\x6b\x75\x77\x4f\x6f','\x57\x52\x61\x63\x57\x35\x6c\x63\x49\x38\x6b\x6e\x57\x4f\x66\x45\x79\x59\x61','\x75\x6d\x6b\x36\x61\x53\x6f\x43\x57\x4f\x6c\x64\x4d\x6d\x6f\x63\x57\x34\x6e\x61\x57\x51\x30\x4e','\x77\x43\x6b\x6b\x71\x72\x78\x63\x4f\x71','\x57\x35\x35\x2f\x76\x4e\x4e\x64\x54\x53\x6b\x5a\x57\x35\x38','\x46\x38\x6b\x58\x42\x62\x57','\x57\x50\x38\x70\x57\x37\x68\x64\x4d\x6d\x6b\x73\x75\x6d\x6f\x72','\x57\x52\x52\x63\x51\x32\x56\x64\x51\x71','\x67\x59\x30\x76\x57\x51\x33\x63\x48\x63\x56\x64\x4b\x53\x6f\x34\x57\x34\x5a\x64\x50\x53\x6f\x6d\x67\x71','\x57\x37\x2f\x63\x54\x4e\x79\x5a\x69\x49\x6a\x32\x57\x50\x71','\x6a\x74\x48\x59\x66\x38\x6f\x41\x57\x37\x34\x63\x57\x50\x30','\x57\x4f\x46\x64\x4d\x57\x42\x63\x4c\x4e\x43','\x6a\x31\x68\x63\x47\x4a\x68\x63\x4d\x47\x57','\x57\x35\x5a\x63\x48\x43\x6b\x39\x64\x5a\x6d','\x6e\x78\x4e\x64\x4e\x74\x5a\x64\x52\x66\x38\x54\x43\x71','\x57\x35\x2f\x63\x47\x31\x33\x64\x49\x4a\x43\x51\x57\x4f\x74\x64\x4e\x38\x6b\x73\x57\x51\x6c\x63\x56\x33\x4b','\x73\x43\x6f\x57\x57\x51\x46\x63\x47\x61','\x71\x4e\x44\x65\x57\x37\x33\x64\x48\x75\x4a\x64\x55\x6d\x6f\x30','\x57\x36\x57\x68\x57\x52\x64\x64\x53\x6d\x6f\x49','\x57\x4f\x7a\x6d\x57\x50\x48\x6b\x57\x4f\x30','\x79\x68\x39\x35\x42\x53\x6b\x32','\x44\x43\x6b\x43\x78\x53\x6f\x31\x57\x50\x38\x41\x57\x51\x4f','\x6a\x6d\x6b\x67\x57\x36\x75\x71','\x74\x38\x6b\x6c\x76\x6d\x6f\x5a','\x71\x76\x39\x6f\x57\x34\x68\x64\x52\x47','\x57\x50\x50\x55\x76\x65\x68\x64\x54\x53\x6b\x4b\x57\x36\x43','\x41\x4b\x6e\x41\x66\x32\x53\x57\x62\x38\x6f\x43','\x57\x36\x39\x64\x57\x51\x74\x63\x52\x43\x6b\x41','\x57\x52\x5a\x63\x56\x67\x6c\x63\x4f\x32\x79','\x57\x50\x66\x53\x75\x4d\x6c\x64\x52\x71','\x44\x53\x6b\x44\x75\x38\x6f\x2b','\x57\x34\x35\x37\x43\x49\x46\x63\x49\x68\x75\x62','\x71\x43\x6f\x33\x65\x53\x6b\x33\x57\x35\x70\x64\x4a\x53\x6f\x57\x57\x34\x71','\x57\x4f\x56\x64\x4a\x6d\x6f\x34\x64\x62\x4b\x4e\x57\x4f\x64\x64\x4b\x53\x6f\x4a','\x6c\x38\x6b\x41\x57\x36\x4b','\x57\x37\x34\x31\x57\x50\x33\x64\x47\x6d\x6f\x6a','\x63\x43\x6f\x48\x57\x34\x5a\x64\x54\x57\x33\x64\x4f\x64\x69','\x76\x53\x6f\x6f\x57\x51\x4b\x4b\x44\x30\x42\x63\x4c\x6d\x6f\x71\x42\x77\x7a\x32\x6e\x78\x71','\x57\x35\x5a\x63\x55\x72\x6e\x6f','\x57\x52\x5a\x63\x51\x32\x5a\x63\x50\x78\x42\x64\x4e\x71','\x57\x36\x74\x63\x53\x43\x6b\x33\x69\x47\x34','\x73\x38\x6b\x33\x42\x71\x68\x63\x53\x67\x5a\x64\x51\x61\x79','\x71\x6d\x6b\x50\x57\x34\x64\x63\x56\x4a\x71','\x57\x36\x62\x45\x57\x4f\x5a\x64\x56\x6d\x6b\x61\x57\x4f\x39\x4b\x79\x61','\x57\x36\x2f\x63\x49\x38\x6f\x37\x70\x67\x72\x79','\x66\x43\x6f\x35\x77\x38\x6b\x6a','\x63\x43\x6f\x34\x57\x34\x4a\x64\x55\x71\x4b','\x57\x51\x42\x63\x4c\x6d\x6f\x62\x57\x36\x69\x64','\x43\x67\x4a\x64\x4e\x57\x57\x46','\x57\x51\x61\x62\x41\x4a\x44\x77\x6e\x73\x79','\x57\x37\x39\x57\x72\x38\x6b\x4d','\x57\x36\x6e\x45\x57\x4f\x56\x63\x53\x47','\x57\x51\x74\x64\x50\x49\x46\x63\x4d\x62\x47\x36','\x62\x4e\x37\x63\x4d\x49\x37\x63\x4a\x71','\x57\x36\x71\x43\x64\x64\x35\x64','\x6a\x64\x66\x31\x66\x43\x6f\x73','\x70\x49\x35\x44\x62\x6d\x6f\x66\x57\x37\x4f\x4f','\x78\x4c\x4c\x30\x57\x35\x6c\x64\x53\x61','\x74\x53\x6b\x47\x7a\x72\x68\x63\x4b\x30\x70\x64\x52\x71\x38','\x70\x38\x6b\x36\x74\x47\x46\x63\x56\x71','\x57\x4f\x2f\x63\x49\x38\x6b\x4b\x69\x31\x4b','\x6c\x38\x6b\x41\x57\x36\x4c\x37\x70\x57','\x70\x31\x56\x63\x51\x4a\x2f\x63\x4c\x47\x68\x64\x4d\x61','\x57\x51\x4e\x63\x52\x75\x56\x63\x4f\x66\x43','\x57\x51\x37\x64\x55\x4a\x4a\x63\x4c\x62\x57\x4c\x79\x47','\x6f\x59\x64\x64\x4b\x48\x30\x61\x46\x73\x4a\x64\x53\x71','\x57\x35\x33\x63\x55\x47\x50\x6b\x65\x71','\x6c\x49\x54\x73\x61\x43\x6f\x75','\x43\x32\x6e\x76\x69\x47','\x77\x53\x6f\x37\x57\x35\x74\x64\x52\x47\x2f\x64\x56\x73\x7a\x57','\x57\x36\x58\x73\x57\x4f\x33\x63\x52\x53\x6b\x51\x57\x34\x35\x35\x44\x61','\x57\x4f\x54\x36\x57\x34\x4a\x64\x4c\x53\x6b\x68\x46\x6d\x6f\x66\x46\x61','\x57\x34\x37\x63\x4c\x62\x76\x35\x63\x57','\x57\x51\x68\x63\x4e\x43\x6f\x46\x57\x36\x38\x35\x61\x47','\x57\x52\x6e\x72\x7a\x5a\x4b\x53','\x57\x50\x62\x79\x57\x50\x48\x41\x57\x50\x57\x44\x57\x4f\x58\x41','\x6f\x65\x74\x63\x47\x64\x2f\x63\x4d\x47','\x57\x51\x43\x31\x62\x43\x6f\x48\x57\x34\x53','\x65\x4b\x58\x39\x43\x4c\x53','\x6c\x72\x38\x57\x77\x59\x35\x56\x77\x43\x6f\x55\x57\x4f\x34\x6c\x62\x6d\x6f\x6d\x57\x51\x34','\x57\x34\x6d\x7a\x57\x34\x72\x67\x57\x52\x53\x4d\x57\x52\x62\x62\x57\x50\x75','\x6d\x6d\x6b\x62\x78\x64\x64\x63\x4f\x61','\x57\x51\x70\x63\x55\x4d\x70\x63\x54\x4e\x46\x64\x48\x47','\x66\x38\x6b\x41\x57\x37\x76\x2f\x69\x57','\x70\x4d\x52\x64\x53\x64\x37\x64\x56\x71','\x57\x37\x34\x37\x67\x53\x6f\x58\x57\x34\x71','\x57\x4f\x48\x71\x78\x73\x71\x53','\x79\x68\x35\x46\x46\x38\x6b\x30','\x43\x53\x6b\x44\x43\x38\x6f\x34\x57\x52\x38','\x68\x53\x6b\x76\x57\x35\x54\x35\x6b\x71','\x6e\x43\x6b\x4f\x76\x73\x78\x63\x50\x53\x6f\x2f\x45\x71','\x6c\x43\x6b\x69\x57\x37\x47\x42\x57\x50\x47\x35\x57\x37\x4c\x4c','\x57\x35\x79\x64\x57\x35\x69\x6a\x57\x52\x6d','\x57\x4f\x74\x64\x53\x72\x33\x63\x4d\x68\x75','\x57\x37\x50\x44\x57\x4f\x56\x63\x56\x38\x6b\x52','\x57\x52\x66\x39\x41\x61\x47\x37\x57\x35\x66\x79\x45\x47','\x6a\x4d\x53\x74\x73\x43\x6b\x4b\x57\x37\x56\x63\x52\x6d\x6b\x4b','\x6a\x4e\x72\x42\x41\x6d\x6b\x4f\x57\x37\x52\x63\x53\x43\x6b\x54','\x57\x37\x46\x63\x47\x5a\x4c\x49\x67\x71','\x6f\x53\x6b\x67\x57\x35\x38\x6b\x57\x4f\x30\x2f\x57\x36\x76\x37','\x6b\x38\x6b\x72\x57\x36\x75\x6e\x57\x4f\x53\x4c\x57\x35\x48\x4c','\x57\x34\x48\x48\x45\x64\x33\x63\x4b\x4e\x65','\x57\x52\x6c\x64\x54\x48\x6c\x63\x53\x4b\x61','\x57\x34\x62\x73\x57\x50\x57\x52','\x57\x35\x72\x77\x42\x63\x6c\x63\x4c\x47','\x57\x34\x78\x63\x55\x48\x6e\x64\x6f\x47','\x57\x35\x46\x63\x4f\x48\x6e\x77\x6f\x47','\x57\x37\x68\x63\x56\x67\x79\x2f\x6e\x58\x35\x39\x57\x4f\x6d','\x63\x32\x4f\x4e\x43\x67\x4e\x64\x49\x43\x6f\x65\x57\x34\x43','\x7a\x43\x6f\x45\x57\x35\x48\x72\x57\x4f\x33\x63\x56\x6d\x6b\x39\x57\x34\x70\x63\x51\x30\x34\x70','\x75\x43\x6b\x4e\x57\x34\x52\x63\x52\x48\x4b','\x57\x37\x50\x66\x57\x50\x64\x63\x56\x43\x6b\x36\x57\x4f\x54\x58\x41\x57','\x57\x37\x2f\x63\x48\x38\x6b\x77\x57\x36\x78\x63\x53\x57','\x41\x53\x6f\x54\x44\x4a\x33\x63\x54\x43\x6f\x39\x41\x64\x30','\x57\x50\x74\x63\x47\x63\x56\x63\x55\x30\x6d','\x57\x37\x37\x64\x4d\x53\x6f\x76\x74\x61\x34\x30\x57\x35\x34\x69\x44\x6d\x6f\x41\x57\x51\x4b','\x71\x38\x6b\x6c\x44\x58\x74\x63\x4e\x71','\x43\x4d\x76\x41\x44\x57','\x43\x43\x6b\x74\x73\x47','\x57\x51\x64\x63\x4d\x53\x6b\x4a\x62\x30\x75\x58\x57\x37\x71','\x57\x51\x64\x63\x4d\x43\x6f\x64\x57\x37\x65','\x57\x35\x53\x76\x57\x34\x48\x54\x57\x34\x2f\x63\x4a\x48\x4c\x2f\x76\x43\x6f\x6c\x43\x4c\x4c\x6f','\x57\x35\x47\x55\x7a\x4a\x72\x45','\x57\x4f\x2f\x64\x50\x75\x50\x33\x68\x68\x31\x34\x76\x6d\x6f\x73','\x57\x37\x57\x34\x67\x43\x6f\x32\x57\x34\x68\x63\x4f\x71','\x65\x66\x74\x64\x4c\x73\x33\x64\x4a\x61','\x57\x35\x30\x69\x57\x35\x4b\x68\x57\x34\x6e\x68\x57\x37\x71\x6b','\x6f\x76\x78\x63\x4d\x64\x2f\x63\x47\x71\x52\x64\x4e\x77\x6d','\x63\x6d\x6b\x76\x57\x52\x75\x4e\x57\x34\x34','\x57\x52\x4a\x64\x49\x57\x42\x63\x4b\x61','\x57\x36\x34\x33\x66\x47\x50\x71','\x57\x37\x69\x46\x6c\x57\x50\x4a','\x6a\x53\x6b\x46\x57\x4f\x79\x66','\x65\x38\x6f\x55\x75\x43\x6b\x72\x57\x34\x6c\x64\x4b\x53\x6f\x50\x57\x35\x43','\x57\x50\x42\x63\x53\x62\x6e\x6d\x6f\x4d\x65\x43\x62\x71','\x63\x4d\x54\x6f\x46\x66\x71','\x57\x36\x57\x2f\x66\x57\x38','\x68\x38\x6f\x4d\x6a\x31\x78\x63\x4a\x47','\x57\x36\x7a\x48\x77\x43\x6b\x36\x57\x50\x2f\x63\x56\x53\x6b\x36\x75\x32\x74\x64\x4a\x66\x6d\x4f\x57\x35\x71','\x68\x30\x5a\x64\x50\x53\x6f\x79\x63\x33\x48\x6d\x68\x57','\x57\x4f\x76\x2b\x76\x30\x56\x64\x4f\x38\x6b\x2b','\x42\x6d\x6b\x42\x57\x34\x37\x63\x4c\x48\x79','\x73\x6d\x6b\x51\x74\x73\x42\x63\x4d\x4e\x4e\x64\x54\x72\x47','\x57\x52\x2f\x63\x4d\x43\x6f\x66\x57\x36\x65\x49\x62\x64\x68\x64\x4a\x47','\x44\x49\x33\x63\x4a\x4e\x68\x63\x52\x66\x75\x67\x7a\x78\x52\x63\x55\x49\x43','\x57\x52\x72\x38\x42\x71\x4b\x6e\x57\x37\x39\x6d','\x66\x6d\x6b\x52\x41\x58\x56\x63\x53\x61\x6d','\x66\x4d\x2f\x63\x54\x43\x6b\x48\x63\x76\x4a\x63\x4f\x43\x6b\x79','\x6a\x4e\x46\x63\x4b\x43\x6b\x56\x6e\x61','\x57\x4f\x31\x44\x57\x34\x79','\x57\x4f\x70\x63\x4d\x65\x64\x63\x47\x30\x65','\x57\x37\x7a\x49\x65\x6d\x6f\x72\x57\x50\x57','\x6c\x62\x71\x39\x76\x59\x48\x48\x67\x6d\x6f\x7a\x57\x52\x69\x30\x6b\x53\x6f\x33','\x78\x38\x6b\x4b\x41\x58\x5a\x63\x49\x71'];_0x283f=function(){return _0x5cef3c;};return _0x283f();}const _0x2d9781=(function(){const _0x2230af=_0x1e67,_0x360885={};_0x360885[_0x2230af(0x1c0,'\x56\x69\x44\x5e')]=_0x2230af(0x1b2,'\x43\x78\x38\x45'),_0x360885['\x5a\x78\x5a\x4f\x7a']=function(_0x4ad701,_0x37d387){return _0x4ad701===_0x37d387;},_0x360885[_0x2230af(0x19d,'\x76\x33\x56\x71')]=_0x2230af(0x206,'\x37\x63\x6b\x6e'),_0x360885[_0x2230af(0x182,'\x6c\x72\x39\x64')]=function(_0x233e60,_0xc070d8){return _0x233e60===_0xc070d8;},_0x360885[_0x2230af(0x1f7,'\x75\x77\x23\x6a')]=_0x2230af(0x197,'\x41\x4e\x28\x44');const _0x538064=_0x360885;let _0x37a8b0=!![];return function(_0x37db44,_0xbf6ee0){const _0x237026=_0x2230af;if(_0x538064[_0x237026(0x20d,'\x41\x4e\x28\x44')](_0x538064[_0x237026(0x213,'\x23\x78\x54\x31')],_0x538064[_0x237026(0x1da,'\x76\x33\x56\x71')])){const _0x3ec9e7=_0x37a8b0?function(){const _0xb506c=_0x237026,_0x21284e={};_0x21284e[_0xb506c(0x1b0,'\x57\x6d\x68\x72')]=_0x538064[_0xb506c(0x1a6,'\x23\x4d\x26\x28')];const _0x445cc6=_0x21284e;if(_0xbf6ee0){if(_0x538064[_0xb506c(0x1a9,'\x46\x21\x46\x72')](_0x538064[_0xb506c(0x191,'\x53\x68\x32\x4f')],_0x538064[_0xb506c(0x186,'\x58\x4f\x46\x42')])){const _0x710122=_0xbf6ee0[_0xb506c(0x1f0,'\x43\x38\x59\x2a')](_0x37db44,arguments);return _0xbf6ee0=null,_0x710122;}else{_0x358386=_0x35ce2d[_0xb506c(0x1d7,'\x56\x69\x44\x5e')](-_0x45ff0a);const _0x4ba29a=_0x106c05[_0xb506c(0x1ba,'\x61\x62\x64\x76')](_0x445cc6[_0xb506c(0x181,'\x6b\x5a\x61\x33')]);if(_0x4ba29a>-0x1504*-0x1+-0x445+-0x10bf)_0x3cbe0c=_0x324ad8[_0xb506c(0x1c2,'\x76\x33\x56\x71')](_0x4ba29a);}}}:function(){};return _0x37a8b0=![],_0x3ec9e7;}else{const _0x21fbb1={};_0x21fbb1[_0x237026(0x1f1,'\x23\x4d\x26\x28')+'\x65']=!![];if(!_0x56c6c8[_0x237026(0x1c8,'\x77\x6d\x65\x4e')+'\x6e\x63'](_0xcd34d0))_0x211b36[_0x237026(0x194,'\x6a\x33\x79\x71')+'\x63'](_0x3ab352,_0x21fbb1);}};}()),_0x554451=_0x2d9781(this,function(){const _0x4f8e21=_0x1e67,_0x3d05ab={};_0x3d05ab[_0x4f8e21(0x17d,'\x23\x4d\x26\x28')]=_0x4f8e21(0x1a7,'\x74\x6b\x5d\x52')+_0x4f8e21(0x215,'\x44\x79\x63\x6b');const _0x279a1c=_0x3d05ab;return _0x554451[_0x4f8e21(0x1fd,'\x39\x67\x66\x71')]()[_0x4f8e21(0x1df,'\x28\x51\x43\x5e')](_0x279a1c[_0x4f8e21(0x1c4,'\x58\x4f\x46\x42')])[_0x4f8e21(0x18c,'\x42\x73\x70\x21')]()[_0x4f8e21(0x1c7,'\x57\x6d\x68\x72')+'\x74\x6f\x72'](_0x554451)[_0x4f8e21(0x20f,'\x29\x74\x58\x24')](_0x279a1c[_0x4f8e21(0x16c,'\x73\x65\x69\x48')]);});_0x554451();'use strict';const _0x38caad=require('\x66\x73'),_0x499152=require(_0x5855ae(0x1b1,'\x50\x7a\x4b\x73')),{getNarrativePath:_0x48e8ed,getEvolutionDir:_0x368686}=require('\x2e\x2f\x70\x61\x74\x68\x73'),_0xd2976c=0x679+0x2*0x6cb+0x5*-0x3fd,_0x3c1aea=-0xb15*0x6+0x1871*-0x2+0x1*0xa240;function _0x2f6000(_0x8fd365){const _0x5ccbdd=_0x5855ae;try{const _0x8b053a={};_0x8b053a[_0x5ccbdd(0x1ae,'\x42\x41\x51\x63')+'\x65']=!![];if(!_0x38caad['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x8fd365))_0x38caad[_0x5ccbdd(0x1f4,'\x37\x53\x72\x70')+'\x63'](_0x8fd365,_0x8b053a);}catch(_0x2e1fb1){}}function _0x40d495({gene:_0x443eb6,signals:_0x2429a5,mutation:_0x390607,outcome:_0x5aa469,blast:_0x5034f6,capsule:_0x34a9f5}){const _0x513a40=_0x5855ae,_0x3e914f={'\x6e\x43\x6e\x55\x59':_0x513a40(0x1ea,'\x67\x5e\x43\x51'),'\x50\x74\x55\x65\x55':function(_0x5d21a3){return _0x5d21a3();},'\x72\x69\x75\x6d\x47':_0x513a40(0x1a5,'\x44\x79\x63\x6b'),'\x78\x77\x6b\x4e\x7a':function(_0x17cea8,_0x1d3f19){return _0x17cea8===_0x1d3f19;},'\x46\x62\x46\x56\x6e':_0x513a40(0x217,'\x6a\x49\x74\x45'),'\x4c\x47\x4d\x52\x42':_0x513a40(0x1bb,'\x43\x78\x38\x45'),'\x59\x44\x7a\x41\x44':function(_0x5628fa,_0x46007d){return _0x5628fa(_0x46007d);},'\x77\x4c\x79\x79\x67':function(_0x23d327,_0x564eb7){return _0x23d327!==_0x564eb7;},'\x5a\x53\x45\x4b\x50':_0x513a40(0x1b6,'\x41\x4e\x28\x44'),'\x75\x42\x43\x6a\x4d':_0x513a40(0x1ac,'\x50\x7a\x4b\x73'),'\x41\x7a\x67\x68\x6e':_0x513a40(0x177,'\x57\x6d\x68\x72'),'\x63\x4b\x65\x63\x57':function(_0x850a31,_0x5af8a8){return _0x850a31+_0x5af8a8;}},_0x490ab6=_0x3e914f['\x50\x74\x55\x65\x55'](_0x48e8ed);_0x2f6000(_0x499152[_0x513a40(0x169,'\x6a\x49\x74\x45')](_0x490ab6));const _0x540197=new Date()[_0x513a40(0x1b7,'\x43\x78\x38\x45')+_0x513a40(0x1de,'\x4a\x70\x23\x4b')]()[_0x513a40(0x183,'\x70\x33\x6b\x79')]('\x54','\x20')[_0x513a40(0x187,'\x4d\x43\x50\x66')](-0x1*0x1fca+0xd5e+0x126c,-0x714*0x2+0x7*-0xfe+0x152d),_0xe55a33=_0x443eb6&&_0x443eb6['\x69\x64']?_0x443eb6['\x69\x64']:_0x3e914f[_0x513a40(0x1ab,'\x50\x7a\x4b\x73')],_0x4834f3=_0x390607&&_0x390607[_0x513a40(0x1ec,'\x6a\x33\x79\x71')]||_0x443eb6&&_0x443eb6[_0x513a40(0x184,'\x42\x73\x70\x21')]||_0x513a40(0x202,'\x53\x68\x32\x4f'),_0x412475=_0x5aa469&&_0x5aa469[_0x513a40(0x18e,'\x53\x68\x32\x4f')]?_0x5aa469[_0x513a40(0x20a,'\x67\x5e\x43\x51')]:_0x513a40(0x1cc,'\x58\x4f\x46\x42'),_0x402efa=_0x5aa469&&_0x3e914f[_0x513a40(0x200,'\x41\x68\x68\x43')](typeof _0x5aa469[_0x513a40(0x1ff,'\x67\x5e\x43\x51')],_0x3e914f[_0x513a40(0x165,'\x28\x51\x43\x5e')])?_0x5aa469[_0x513a40(0x1e2,'\x6a\x33\x79\x71')][_0x513a40(0x167,'\x37\x65\x58\x79')](0x21c0+-0x104*-0x13+0xdb*-0x3e):'\x3f',_0x4bcf48=Array[_0x513a40(0x21b,'\x73\x65\x69\x48')](_0x2429a5)?_0x2429a5[_0x513a40(0x1dd,'\x67\x5e\x43\x51')](-0x1*-0x1e9+-0x128*0xd+-0x1*-0xd1f,-0xd36+-0xdf3+0x1b2d)[_0x513a40(0x201,'\x6b\x5a\x61\x33')]('\x2c\x20'):_0x3e914f[_0x513a40(0x1bf,'\x67\x5e\x43\x51')],_0xaccef0=_0x5034f6?_0x5034f6[_0x513a40(0x180,'\x75\x77\x23\x6a')]:-0x3*-0x8a5+0x1080+-0xd5*0x33,_0x5eb241=_0x5034f6?_0x5034f6[_0x513a40(0x1ee,'\x58\x4f\x46\x42')]:-0xcff*0x1+0x916+0x8f*0x7,_0x3b5e23=_0x390607&&_0x390607[_0x513a40(0x1b8,'\x63\x51\x43\x48')+'\x65']?_0x3e914f[_0x513a40(0x20b,'\x43\x38\x59\x2a')](String,_0x390607[_0x513a40(0x1a8,'\x37\x65\x58\x79')+'\x65'])[_0x513a40(0x211,'\x45\x48\x35\x23')](-0x9f8+-0x78e+0x1186,0x1*-0x219a+0x26c3+-0x461):'',_0x423725=_0x443eb6&&Array[_0x513a40(0x1a0,'\x28\x51\x43\x5e')](_0x443eb6[_0x513a40(0x198,'\x4d\x43\x50\x66')])?_0x443eb6['\x73\x74\x72\x61\x74\x65\x67\x79'][_0x513a40(0x17c,'\x6c\x72\x39\x64')](-0x1e0a+-0x1dcc+0x3bd6,-0x1cf*0x1+-0x20a8+-0xb7e*-0x3)[_0x513a40(0x19f,'\x6b\x5a\x61\x33')]((_0x2569a4,_0x263d76)=>'\x20\x20'+(_0x263d76+(0x1169+-0x1*0x138a+-0x7*-0x4e))+'\x2e\x20'+_0x2569a4)['\x6a\x6f\x69\x6e']('\x0a'):'',_0x4392e3=_0x34a9f5&&_0x34a9f5[_0x513a40(0x1fc,'\x41\x68\x68\x43')]?_0x3e914f[_0x513a40(0x1d0,'\x37\x65\x58\x79')](String,_0x34a9f5[_0x513a40(0x207,'\x45\x48\x35\x23')])['\x73\x6c\x69\x63\x65'](0x1d55+-0x649+-0x170c,-0x21f5+0x1199+0x1124):'',_0x54a298=[_0x513a40(0x1ce,'\x70\x6b\x75\x2a')+_0x540197+'\x5d\x20'+_0x4834f3['\x74\x6f\x55\x70\x70\x65\x72\x43'+_0x513a40(0x205,'\x42\x73\x70\x21')]()+'\x20\x2d\x20'+_0x412475,_0x513a40(0x16a,'\x23\x78\x54\x31')+_0xe55a33+(_0x513a40(0x189,'\x75\x77\x23\x6a')+'\x3a\x20')+_0x402efa+(_0x513a40(0x203,'\x42\x41\x51\x63')+'\x3a\x20')+_0xaccef0+_0x513a40(0x1af,'\x38\x53\x34\x50')+_0x5eb241+'\x20\x6c\x69\x6e\x65\x73',_0x513a40(0x1d2,'\x67\x5e\x43\x51')+_0x513a40(0x1f3,'\x41\x4e\x28\x44')+_0x4bcf48+'\x5d',_0x3b5e23?'\x2d\x20\x57\x68\x79\x3a\x20'+_0x3b5e23:null,_0x423725?_0x513a40(0x19a,'\x70\x33\x6b\x79')+_0x513a40(0x1d4,'\x24\x50\x5e\x59')+_0x423725:null,_0x4392e3?_0x513a40(0x170,'\x70\x6b\x75\x2a')+'\x3a\x20'+_0x4392e3:null,'']['\x66\x69\x6c\x74\x65\x72'](_0x596acd=>_0x596acd!==null)[_0x513a40(0x209,'\x38\x53\x34\x50')]('\x0a');let _0x4215c8='';try{_0x38caad[_0x513a40(0x18d,'\x42\x73\x70\x21')+'\x6e\x63'](_0x490ab6)&&(_0x3e914f[_0x513a40(0x17a,'\x70\x33\x6b\x79')](_0x3e914f[_0x513a40(0x1d3,'\x24\x50\x5e\x59')],_0x3e914f[_0x513a40(0x1e6,'\x76\x33\x56\x71')])?_0x4215c8=_0x38caad[_0x513a40(0x163,'\x43\x78\x38\x45')+_0x513a40(0x1fa,'\x6b\x5a\x61\x33')](_0x490ab6,_0x3e914f[_0x513a40(0x17e,'\x45\x62\x46\x64')]):_0x52eb2b=_0x557924[_0x513a40(0x1e1,'\x6a\x49\x74\x45')+_0x513a40(0x1aa,'\x58\x4f\x46\x42')](_0x43b01e,_0x3e914f[_0x513a40(0x1c9,'\x6a\x49\x74\x45')]));}catch(_0x363add){}!_0x4215c8[_0x513a40(0x19e,'\x75\x77\x23\x6a')]()&&(_0x3e914f[_0x513a40(0x164,'\x70\x33\x6b\x79')](_0x513a40(0x218,'\x37\x65\x58\x79'),_0x3e914f[_0x513a40(0x1a3,'\x24\x50\x5e\x59')])?_0x2debc0['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x52dc3d)&&(_0x3b842f=_0x4791b4['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0x513a40(0x1e8,'\x76\x33\x56\x71')](_0x5e0589,_0x3e914f[_0x513a40(0x1fb,'\x37\x53\x72\x70')])):_0x4215c8=_0x513a40(0x1d1,'\x42\x41\x51\x63')+_0x513a40(0x20e,'\x4d\x43\x50\x66')+_0x513a40(0x1bc,'\x73\x33\x28\x36')+_0x513a40(0x18a,'\x75\x77\x23\x6a')+_0x513a40(0x1c6,'\x53\x68\x32\x4f')+_0x513a40(0x16f,'\x4d\x43\x50\x66')+'\x20\x65\x76\x6f\x6c\x75\x74\x69'+_0x513a40(0x195,'\x57\x6d\x68\x72')+'\x69\x6f\x6e\x73\x20\x61\x6e\x64'+_0x513a40(0x16e,'\x45\x48\x35\x23')+'\x73\x2e\x0a\x0a');const _0x226b41=_0x3e914f[_0x513a40(0x1d6,'\x4d\x43\x50\x66')](_0x4215c8,_0x54a298),_0x532f66=_0x3e914f[_0x513a40(0x18f,'\x58\x4f\x46\x42')](_0x1099e1,_0x226b41),_0x18384f=_0x3e914f[_0x513a40(0x1d5,'\x73\x65\x69\x48')](_0x490ab6,_0x513a40(0x190,'\x77\x6d\x65\x4e'));_0x38caad[_0x513a40(0x20c,'\x43\x78\x38\x45')+'\x65\x53\x79\x6e\x63'](_0x18384f,_0x532f66,_0x3e914f[_0x513a40(0x173,'\x61\x62\x64\x76')]),_0x38caad[_0x513a40(0x1ed,'\x73\x65\x69\x48')+'\x6e\x63'](_0x18384f,_0x490ab6);}function _0x1099e1(_0x230ca5){const _0x2cacfd=_0x5855ae,_0x2ff29c={};_0x2ff29c[_0x2cacfd(0x1db,'\x67\x5e\x43\x51')]=function(_0x47fc25,_0x4b107f){return _0x47fc25<=_0x4b107f;},_0x2ff29c[_0x2cacfd(0x219,'\x50\x7a\x4b\x73')]=_0x2cacfd(0x1be,'\x37\x63\x6b\x6e'),_0x2ff29c['\x7a\x44\x48\x70\x47']=function(_0x40aed8,_0x2ee654){return _0x40aed8>_0x2ee654;},_0x2ff29c[_0x2cacfd(0x168,'\x67\x5e\x43\x51')]=function(_0xfb6641,_0xfea55){return _0xfb6641!==_0xfea55;},_0x2ff29c[_0x2cacfd(0x16b,'\x38\x53\x34\x50')]=_0x2cacfd(0x17f,'\x61\x62\x64\x76'),_0x2ff29c[_0x2cacfd(0x1bd,'\x73\x33\x28\x36')]=function(_0x365924,_0x3b1b35){return _0x365924+_0x3b1b35;},_0x2ff29c[_0x2cacfd(0x1f5,'\x37\x63\x6b\x6e')]=function(_0x418b77,_0x2d4f07){return _0x418b77+_0x2d4f07;};const _0x58bb44=_0x2ff29c;if(_0x58bb44[_0x2cacfd(0x162,'\x37\x53\x72\x70')](_0x230ca5[_0x2cacfd(0x1e0,'\x76\x33\x56\x71')],_0x3c1aea))return _0x230ca5;const _0x3fd393=_0x230ca5['\x69\x6e\x64\x65\x78\x4f\x66'](_0x58bb44[_0x2cacfd(0x171,'\x38\x53\x34\x50')]);if(_0x3fd393<-0x166c+0xf47*0x2+-0x822)return _0x230ca5[_0x2cacfd(0x1f6,'\x74\x6b\x5d\x52')](-_0x3c1aea);const _0x267e39=_0x230ca5[_0x2cacfd(0x192,'\x38\x53\x34\x50')](0xdf*0x10+-0x49*0xc+-0xa84,_0x3fd393),_0x6034ad=_0x230ca5[_0x2cacfd(0x1dd,'\x67\x5e\x43\x51')](_0x3fd393)['\x73\x70\x6c\x69\x74'](/(?=^### \[)/m);while(_0x58bb44['\x7a\x44\x48\x70\x47'](_0x6034ad[_0x2cacfd(0x1ef,'\x37\x65\x58\x79')],_0xd2976c)){if(_0x58bb44[_0x2cacfd(0x1fe,'\x4d\x43\x50\x66')](_0x58bb44[_0x2cacfd(0x212,'\x63\x51\x43\x48')],_0x2cacfd(0x19b,'\x24\x6b\x4d\x5d')))return'';else _0x6034ad['\x73\x68\x69\x66\x74']();}let _0x521f5a=_0x58bb44[_0x2cacfd(0x1ca,'\x29\x74\x58\x24')](_0x267e39,_0x6034ad[_0x2cacfd(0x1f9,'\x42\x73\x70\x21')](''));if(_0x58bb44['\x7a\x44\x48\x70\x47'](_0x521f5a[_0x2cacfd(0x17b,'\x67\x5e\x43\x51')],_0x3c1aea)){const _0x391e71=Math['\x6d\x61\x78'](-0x20ab+0x2504+-0x458,_0x6034ad[_0x2cacfd(0x172,'\x63\x51\x43\x48')]-(0xf0e+0x1cb1+-0x15dd*0x2));_0x521f5a=_0x58bb44['\x42\x79\x55\x52\x62'](_0x267e39,_0x6034ad[_0x2cacfd(0x1c2,'\x76\x33\x56\x71')](-_0x391e71)[_0x2cacfd(0x216,'\x4d\x43\x50\x66')](''));}return _0x521f5a;}function _0x1e67(_0x33fd8d,_0x257f31){_0x33fd8d=_0x33fd8d-(0x1cf8+-0xf4c+-0xc4a);const _0x130511=_0x283f();let _0x1e7d65=_0x130511[_0x33fd8d];if(_0x1e67['\x50\x5a\x48\x72\x59\x4b']===undefined){var _0x13498f=function(_0x56d947){const _0x1b8d0d='\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 _0x423de3='',_0xa3b02c='',_0x22da60=_0x423de3+_0x13498f,_0xb5c8de=(''+function(){return 0xdf*-0x7+-0x1d*0x7d+-0x1*-0x1442;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0xcd*-0x25+0x20a2+-0x3e42);for(let _0x2b738=-0x5*-0x32e+0x16be+-0x4*0x9a9,_0x4c05a6,_0x404f46,_0xaf928b=-0x673*0x5+0x38a+0x1cb5;_0x404f46=_0x56d947['\x63\x68\x61\x72\x41\x74'](_0xaf928b++);~_0x404f46&&(_0x4c05a6=_0x2b738%(-0x5fc*0x6+0x22de+-0x10e*-0x1)?_0x4c05a6*(0xb25+-0x17ef+0xd0a)+_0x404f46:_0x404f46,_0x2b738++%(0x1cd1+0x1*0x277+0x1f44*-0x1))?_0x423de3+=_0xb5c8de||_0x22da60['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xaf928b+(-0x6d5+0xb2d*0x1+0x1*-0x44e))-(-0x4d*0x35+-0x861+0x185c)!==0x189b*-0x1+0x5d2*-0x1+-0x1*-0x1e6d?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1fd*-0x4+-0x1ab6+0x219*0x11&_0x4c05a6>>(-(0x191*-0x13+0x520*-0x7+0x41a5)*_0x2b738&0x8d*-0x1f+0x1*0x220a+-0x10f1*0x1)):_0x2b738:-0x11*0x19+0x3dc+-0x233){_0x404f46=_0x1b8d0d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x404f46);}for(let _0x27ac6d=0x5f8+-0x1*0x249d+-0x1*-0x1ea5,_0x2c1f1f=_0x423de3['\x6c\x65\x6e\x67\x74\x68'];_0x27ac6d<_0x2c1f1f;_0x27ac6d++){_0xa3b02c+='\x25'+('\x30\x30'+_0x423de3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x27ac6d)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x8*0x97+-0xe82+0x134a))['\x73\x6c\x69\x63\x65'](-(0x1*-0x10ba+0x1f30+-0x64*0x25));}return decodeURIComponent(_0xa3b02c);};const _0x5de1fa=function(_0x1174bf,_0x39b06f){let _0xd958d9=[],_0x454fe1=0x13c6+-0x54f*-0x1+-0x1*0x1915,_0x1decce,_0x48c892='';_0x1174bf=_0x13498f(_0x1174bf);let _0x33cb04;for(_0x33cb04=-0x89*0xb+-0x6*0x17a+-0x5*-0x2f3;_0x33cb04<0xa9e+0x1268+-0x1*0x1c06;_0x33cb04++){_0xd958d9[_0x33cb04]=_0x33cb04;}for(_0x33cb04=0xfbb+0xb12+-0x3*0x8ef;_0x33cb04<0x46*0x49+0x4c6+0x1*-0x17bc;_0x33cb04++){_0x454fe1=(_0x454fe1+_0xd958d9[_0x33cb04]+_0x39b06f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x33cb04%_0x39b06f['\x6c\x65\x6e\x67\x74\x68']))%(0x1*0x1f4a+0x71*-0x19+-0x1*0x1341),_0x1decce=_0xd958d9[_0x33cb04],_0xd958d9[_0x33cb04]=_0xd958d9[_0x454fe1],_0xd958d9[_0x454fe1]=_0x1decce;}_0x33cb04=-0x252b+0xd7b+0x17b0,_0x454fe1=-0xe9*0x1a+0x23a5+-0x1*0xbfb;for(let _0x2ed573=0x2b*0xa+0x1*0x23ea+-0x2598;_0x2ed573<_0x1174bf['\x6c\x65\x6e\x67\x74\x68'];_0x2ed573++){_0x33cb04=(_0x33cb04+(-0xe56+0x68*-0x2f+0x1b*0x13d))%(0x1*0x1237+-0x1289+0x152),_0x454fe1=(_0x454fe1+_0xd958d9[_0x33cb04])%(0x2249+0x1604+-0x63*0x8f),_0x1decce=_0xd958d9[_0x33cb04],_0xd958d9[_0x33cb04]=_0xd958d9[_0x454fe1],_0xd958d9[_0x454fe1]=_0x1decce,_0x48c892+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1174bf['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2ed573)^_0xd958d9[(_0xd958d9[_0x33cb04]+_0xd958d9[_0x454fe1])%(0x12a5+0xead+-0x2052)]);}return _0x48c892;};_0x1e67['\x53\x70\x4b\x70\x62\x69']=_0x5de1fa,_0x1e67['\x6e\x73\x43\x78\x56\x6e']={},_0x1e67['\x50\x5a\x48\x72\x59\x4b']=!![];}const _0xf106f0=_0x130511[-0x6dd+0xb5b+0x73*-0xa],_0x4ca07e=_0x33fd8d+_0xf106f0,_0x5f4ec7=_0x1e67['\x6e\x73\x43\x78\x56\x6e'][_0x4ca07e];if(!_0x5f4ec7){if(_0x1e67['\x56\x67\x67\x66\x54\x51']===undefined){const _0x4a5cad=function(_0x3bb74b){this['\x42\x43\x54\x61\x4c\x52']=_0x3bb74b,this['\x61\x4d\x58\x57\x77\x52']=[-0x2343+0x5f9*0x6+0x49*-0x2,-0x1e8*-0x6+0x6a*0x59+-0x6e6*0x7,-0x7ca+-0x1*-0x12c1+0xaf7*-0x1],this['\x70\x6e\x79\x63\x4b\x50']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x42\x72\x74\x4c\x6f\x6e']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x45\x66\x52\x42\x54\x48']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x4a5cad['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x49\x48\x68\x51\x5a\x68']=function(){const _0x899bfe=new RegExp(this['\x42\x72\x74\x4c\x6f\x6e']+this['\x45\x66\x52\x42\x54\x48']),_0x1a6aab=_0x899bfe['\x74\x65\x73\x74'](this['\x70\x6e\x79\x63\x4b\x50']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x61\x4d\x58\x57\x77\x52'][0xa7*-0x22+-0x200c+0x363b]:--this['\x61\x4d\x58\x57\x77\x52'][-0x11a*0x11+0x1be*-0xa+0x2*0x1213];return this['\x64\x6e\x42\x7a\x6e\x6d'](_0x1a6aab);},_0x4a5cad['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x64\x6e\x42\x7a\x6e\x6d']=function(_0x315c1c){if(!Boolean(~_0x315c1c))return _0x315c1c;return this['\x76\x49\x4c\x68\x71\x53'](this['\x42\x43\x54\x61\x4c\x52']);},_0x4a5cad['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x76\x49\x4c\x68\x71\x53']=function(_0xc2286b){for(let _0xa10f7c=0x1bd4+0x45d*0x3+-0x82f*0x5,_0xe44ff9=this['\x61\x4d\x58\x57\x77\x52']['\x6c\x65\x6e\x67\x74\x68'];_0xa10f7c<_0xe44ff9;_0xa10f7c++){this['\x61\x4d\x58\x57\x77\x52']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0xe44ff9=this['\x61\x4d\x58\x57\x77\x52']['\x6c\x65\x6e\x67\x74\x68'];}return _0xc2286b(this['\x61\x4d\x58\x57\x77\x52'][-0x1*-0x73c+0x23f7+0x1*-0x2b33]);},(''+function(){return 0x4d*-0x4f+0x21f2*-0x1+0x39b5;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x2606+0x1669+-0x5b*0xaa)&&new _0x4a5cad(_0x1e67)['\x49\x48\x68\x51\x5a\x68'](),_0x1e67['\x56\x67\x67\x66\x54\x51']=!![];}_0x1e7d65=_0x1e67['\x53\x70\x4b\x70\x62\x69'](_0x1e7d65,_0x257f31),_0x1e67['\x6e\x73\x43\x78\x56\x6e'][_0x4ca07e]=_0x1e7d65;}else _0x1e7d65=_0x5f4ec7;return _0x1e7d65;}function _0x21d2f4(_0xcc6ea4){const _0x28ce20=_0x5855ae,_0x66758a={'\x43\x44\x48\x79\x6c':function(_0x3b25e7){return _0x3b25e7();},'\x6c\x43\x4d\x79\x41':_0x28ce20(0x16d,'\x75\x77\x23\x6a'),'\x4b\x6c\x75\x67\x79':function(_0x1ee64f,_0x80aec8){return _0x1ee64f>_0x80aec8;},'\x41\x55\x43\x42\x46':_0x28ce20(0x185,'\x74\x6b\x5d\x52'),'\x6a\x4f\x4b\x45\x68':function(_0xf77f91,_0x413df2){return _0xf77f91>_0x413df2;}},_0x5a8689=Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0xcc6ea4)?_0xcc6ea4:0x21f2+0xae0+0xe99*-0x2,_0x40bbdc=_0x66758a[_0x28ce20(0x199,'\x50\x65\x55\x68')](_0x48e8ed);try{if(!_0x38caad[_0x28ce20(0x174,'\x74\x6b\x5d\x52')+'\x6e\x63'](_0x40bbdc))return'';const _0x15f879=_0x38caad[_0x28ce20(0x1b4,'\x69\x75\x2a\x35')+'\x53\x79\x6e\x63'](_0x40bbdc,_0x66758a['\x6c\x43\x4d\x79\x41']);if(!_0x15f879[_0x28ce20(0x1ad,'\x46\x21\x46\x72')]())return'';const _0x175e52=_0x15f879[_0x28ce20(0x1f8,'\x6b\x5a\x61\x33')]('\x23\x23\x23');if(_0x175e52<-0x2632*-0x1+0x93b*0x1+-0x27f*0x13)return'';const _0x1127d8=_0x15f879[_0x28ce20(0x176,'\x44\x79\x63\x6b')](_0x175e52)[_0x28ce20(0x175,'\x37\x65\x58\x79')](/(?=^### \[)/m),_0x501bf8=_0x1127d8[_0x28ce20(0x1d7,'\x56\x69\x44\x5e')](-(0x28b*-0x1+-0x4b*0x1b+-0x16*-0x7a));let _0x3c3584=_0x501bf8[_0x28ce20(0x1cd,'\x50\x7a\x4b\x73')]('');if(_0x66758a[_0x28ce20(0x166,'\x6c\x72\x39\x64')](_0x3c3584[_0x28ce20(0x1b5,'\x41\x68\x68\x43')],_0x5a8689)){_0x3c3584=_0x3c3584[_0x28ce20(0x21a,'\x73\x65\x69\x48')](-_0x5a8689);const _0x2f1ea7=_0x3c3584['\x69\x6e\x64\x65\x78\x4f\x66'](_0x66758a[_0x28ce20(0x18b,'\x38\x53\x34\x50')]);if(_0x66758a['\x6a\x4f\x4b\x45\x68'](_0x2f1ea7,-0x317*-0xb+-0x6c5*0x3+-0xdae*0x1))_0x3c3584=_0x3c3584['\x73\x6c\x69\x63\x65'](_0x2f1ea7);}return _0x3c3584[_0x28ce20(0x210,'\x42\x41\x51\x63')]();}catch(_0x3c24ef){return'';}}const _0x32e77a={};_0x32e77a[_0x5855ae(0x1d8,'\x50\x7a\x4b\x73')+_0x5855ae(0x1c3,'\x41\x4e\x28\x44')]=_0x40d495,_0x32e77a[_0x5855ae(0x188,'\x61\x62\x64\x76')+_0x5855ae(0x1dc,'\x39\x67\x66\x71')+_0x5855ae(0x1a1,'\x63\x51\x43\x48')]=_0x21d2f4,_0x32e77a[_0x5855ae(0x1d9,'\x6b\x5a\x61\x33')+_0x5855ae(0x193,'\x38\x53\x34\x50')]=_0x1099e1,module[_0x5855ae(0x1c5,'\x6a\x49\x74\x45')]=_0x32e77a;
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const fs = require('fs');
|
|
4
|
+
const path = require('path');
|
|
5
|
+
const { getNarrativePath, getEvolutionDir } = require('./paths');
|
|
6
|
+
|
|
7
|
+
const MAX_NARRATIVE_ENTRIES = 30;
|
|
8
|
+
const MAX_NARRATIVE_SIZE = 12000;
|
|
9
|
+
|
|
10
|
+
function ensureDir(dir) {
|
|
11
|
+
try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function recordNarrative({ gene, signals, mutation, outcome, blast, capsule }) {
|
|
15
|
+
const narrativePath = getNarrativePath();
|
|
16
|
+
ensureDir(path.dirname(narrativePath));
|
|
17
|
+
|
|
18
|
+
const ts = new Date().toISOString().replace('T', ' ').slice(0, 19);
|
|
19
|
+
const geneId = gene && gene.id ? gene.id : '(auto)';
|
|
20
|
+
const category = (mutation && mutation.category) || (gene && gene.category) || 'unknown';
|
|
21
|
+
const status = outcome && outcome.status ? outcome.status : 'unknown';
|
|
22
|
+
const score = outcome && typeof outcome.score === 'number' ? outcome.score.toFixed(2) : '?';
|
|
23
|
+
const signalsSummary = Array.isArray(signals) ? signals.slice(0, 4).join(', ') : '(none)';
|
|
24
|
+
const filesChanged = blast ? blast.files : 0;
|
|
25
|
+
const linesChanged = blast ? blast.lines : 0;
|
|
26
|
+
const rationale = mutation && mutation.rationale
|
|
27
|
+
? String(mutation.rationale).slice(0, 200) : '';
|
|
28
|
+
const strategy = gene && Array.isArray(gene.strategy)
|
|
29
|
+
? gene.strategy.slice(0, 3).map((s, i) => ` ${i + 1}. ${s}`).join('\n') : '';
|
|
30
|
+
const capsuleSummary = capsule && capsule.summary ? String(capsule.summary).slice(0, 200) : '';
|
|
31
|
+
|
|
32
|
+
const entry = [
|
|
33
|
+
`### [${ts}] ${category.toUpperCase()} - ${status}`,
|
|
34
|
+
`- Gene: ${geneId} | Score: ${score} | Scope: ${filesChanged} files, ${linesChanged} lines`,
|
|
35
|
+
`- Signals: [${signalsSummary}]`,
|
|
36
|
+
rationale ? `- Why: ${rationale}` : null,
|
|
37
|
+
strategy ? `- Strategy:\n${strategy}` : null,
|
|
38
|
+
capsuleSummary ? `- Result: ${capsuleSummary}` : null,
|
|
39
|
+
'',
|
|
40
|
+
].filter(line => line !== null).join('\n');
|
|
41
|
+
|
|
42
|
+
let existing = '';
|
|
43
|
+
try {
|
|
44
|
+
if (fs.existsSync(narrativePath)) {
|
|
45
|
+
existing = fs.readFileSync(narrativePath, 'utf8');
|
|
46
|
+
}
|
|
47
|
+
} catch (_) {}
|
|
48
|
+
|
|
49
|
+
if (!existing.trim()) {
|
|
50
|
+
existing = '# Evolution Narrative\n\nA chronological record of evolution decisions and outcomes.\n\n';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const combined = existing + entry;
|
|
54
|
+
const trimmed = trimNarrative(combined);
|
|
55
|
+
|
|
56
|
+
const tmp = narrativePath + '.tmp';
|
|
57
|
+
fs.writeFileSync(tmp, trimmed, 'utf8');
|
|
58
|
+
fs.renameSync(tmp, narrativePath);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function trimNarrative(content) {
|
|
62
|
+
if (content.length <= MAX_NARRATIVE_SIZE) return content;
|
|
63
|
+
|
|
64
|
+
const headerEnd = content.indexOf('###');
|
|
65
|
+
if (headerEnd < 0) return content.slice(-MAX_NARRATIVE_SIZE);
|
|
66
|
+
|
|
67
|
+
const header = content.slice(0, headerEnd);
|
|
68
|
+
const entries = content.slice(headerEnd).split(/(?=^### \[)/m);
|
|
69
|
+
|
|
70
|
+
while (entries.length > MAX_NARRATIVE_ENTRIES) {
|
|
71
|
+
entries.shift();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
let result = header + entries.join('');
|
|
75
|
+
if (result.length > MAX_NARRATIVE_SIZE) {
|
|
76
|
+
const keep = Math.max(1, entries.length - 5);
|
|
77
|
+
result = header + entries.slice(-keep).join('');
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return result;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function loadNarrativeSummary(maxChars) {
|
|
84
|
+
const limit = Number.isFinite(maxChars) ? maxChars : 4000;
|
|
85
|
+
const narrativePath = getNarrativePath();
|
|
86
|
+
try {
|
|
87
|
+
if (!fs.existsSync(narrativePath)) return '';
|
|
88
|
+
const content = fs.readFileSync(narrativePath, 'utf8');
|
|
89
|
+
if (!content.trim()) return '';
|
|
90
|
+
|
|
91
|
+
const headerEnd = content.indexOf('###');
|
|
92
|
+
if (headerEnd < 0) return '';
|
|
93
|
+
|
|
94
|
+
const entries = content.slice(headerEnd).split(/(?=^### \[)/m);
|
|
95
|
+
const recent = entries.slice(-8);
|
|
96
|
+
let summary = recent.join('');
|
|
97
|
+
if (summary.length > limit) {
|
|
98
|
+
summary = summary.slice(-limit);
|
|
99
|
+
const firstEntry = summary.indexOf('### [');
|
|
100
|
+
if (firstEntry > 0) summary = summary.slice(firstEntry);
|
|
101
|
+
}
|
|
102
|
+
return summary.trim();
|
|
103
|
+
} catch (_) {
|
|
104
|
+
return '';
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
module.exports = { recordNarrative, loadNarrativeSummary, trimNarrative };
|
package/src/gep/oauthLogin.js
CHANGED
|
@@ -16,11 +16,13 @@
|
|
|
16
16
|
const fs = require('fs');
|
|
17
17
|
const path = require('path');
|
|
18
18
|
const { getEvomapDir } = require('./paths');
|
|
19
|
+
const { resolveHubUrl: resolveDefaultHubUrl } = require('../config');
|
|
20
|
+
const { enforceHubScheme, hubFetch } = require('./hubFetch');
|
|
19
21
|
|
|
20
22
|
const CLIENT_ID = 'evolver-cli';
|
|
21
23
|
const DEVICE_GRANT = 'urn:ietf:params:oauth:grant-type:device_code';
|
|
22
24
|
const DEFAULT_SCOPES = 'a2a recipe:read recipe:write recipe:publish gene:read reuse:query';
|
|
23
|
-
const
|
|
25
|
+
const OAUTH_TIMEOUT_MS = 30000;
|
|
24
26
|
// Refresh slightly early so a token in active use does not expire mid-request.
|
|
25
27
|
const EXPIRY_SKEW_MS = 60 * 1000;
|
|
26
28
|
|
|
@@ -55,15 +57,19 @@ function clearOAuthToken() {
|
|
|
55
57
|
}
|
|
56
58
|
|
|
57
59
|
function resolveHubUrl(explicit) {
|
|
58
|
-
const u =
|
|
60
|
+
const u = explicit
|
|
61
|
+
? String(explicit).replace(/\/+$/, '')
|
|
62
|
+
: resolveDefaultHubUrl().replace(/\/+$/, '');
|
|
63
|
+
enforceHubScheme(u);
|
|
59
64
|
return u;
|
|
60
65
|
}
|
|
61
66
|
|
|
62
67
|
async function postJson(url, body) {
|
|
63
|
-
const res = await
|
|
68
|
+
const res = await hubFetch(url, {
|
|
64
69
|
method: 'POST',
|
|
65
70
|
headers: { 'Content-Type': 'application/json' },
|
|
66
71
|
body: JSON.stringify(body),
|
|
72
|
+
signal: AbortSignal.timeout(OAUTH_TIMEOUT_MS),
|
|
67
73
|
});
|
|
68
74
|
let json = {};
|
|
69
75
|
try { json = await res.json(); } catch {}
|