@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.
Files changed (112) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1367 -0
  9. package/README.ja-JP.md +1 -1
  10. package/README.ko-KR.md +1 -1
  11. package/README.md +90 -536
  12. package/README.public.md +578 -0
  13. package/README.zh-CN.md +1 -1
  14. package/SECURITY.md +108 -0
  15. package/assets/gep/events.jsonl +3 -0
  16. package/examples/atp-consumer-quickstart.md +100 -0
  17. package/examples/hello-world.md +38 -0
  18. package/index.js +5 -3
  19. package/package.json +6 -18
  20. package/proxy-package.json +39 -0
  21. package/public.manifest.json +145 -0
  22. package/src/adapters/scripts/evolver-session-end.js +18 -37
  23. package/src/atp/atpExecute.js +27 -71
  24. package/src/atp/serviceHelper.js +28 -36
  25. package/src/config.js +17 -0
  26. package/src/evolve/guards.js +721 -1
  27. package/src/evolve/pipeline/collect.js +1283 -1
  28. package/src/evolve/pipeline/dispatch.js +421 -1
  29. package/src/evolve/pipeline/enrich.js +440 -1
  30. package/src/evolve/pipeline/hub.js +319 -1
  31. package/src/evolve/pipeline/select.js +274 -1
  32. package/src/evolve/pipeline/signals.js +206 -1
  33. package/src/evolve/utils.js +264 -1
  34. package/src/evolve.js +350 -1
  35. package/src/gep/a2aProtocol.js +4463 -1
  36. package/src/gep/antiAbuseTelemetry.js +233 -1
  37. package/src/gep/autoDistillConv.js +205 -1
  38. package/src/gep/autoDistillLlm.js +315 -1
  39. package/src/gep/candidateEval.js +92 -1
  40. package/src/gep/candidates.js +198 -1
  41. package/src/gep/contentHash.js +30 -1
  42. package/src/gep/conversationDistiller.js +270 -0
  43. package/src/gep/conversationSniffer.js +266 -1
  44. package/src/gep/crypto.js +89 -1
  45. package/src/gep/curriculum.js +163 -1
  46. package/src/gep/deviceId.js +218 -1
  47. package/src/gep/envFingerprint.js +118 -1
  48. package/src/gep/epigenetics.js +31 -1
  49. package/src/gep/execBridge.js +712 -1
  50. package/src/gep/explore.js +289 -1
  51. package/src/gep/hash.js +15 -1
  52. package/src/gep/hubFetch.js +608 -1
  53. package/src/gep/hubReview.js +207 -1
  54. package/src/gep/hubSearch.js +526 -1
  55. package/src/gep/hubVerify.js +306 -1
  56. package/src/gep/learningSignals.js +89 -1
  57. package/src/gep/memoryGraph.js +1449 -1
  58. package/src/gep/memoryGraphAdapter.js +203 -1
  59. package/src/gep/mutation.js +203 -1
  60. package/src/gep/narrativeMemory.js +108 -1
  61. package/src/gep/oauthLogin.js +9 -3
  62. package/src/gep/openPRRegistry.js +205 -1
  63. package/src/gep/personality.js +423 -1
  64. package/src/gep/policyCheck.js +599 -1
  65. package/src/gep/privacyClient.js +10 -9
  66. package/src/gep/prompt.js +836 -1
  67. package/src/gep/questionGenerator.js +103 -0
  68. package/src/gep/recallInject.js +409 -1
  69. package/src/gep/recallVerifier.js +318 -1
  70. package/src/gep/reflection.js +177 -1
  71. package/src/gep/savingsCore.js +112 -1
  72. package/src/gep/selector.js +602 -1
  73. package/src/gep/signals.js +85 -17
  74. package/src/gep/skillDistiller.js +1294 -1
  75. package/src/gep/solidify.js +1699 -1
  76. package/src/gep/strategy.js +136 -1
  77. package/src/gep/tokenSavings.js +95 -1
  78. package/src/gep/workspaceKeychain.js +174 -1
  79. package/src/proxy/extensions/traceControl.js +109 -1
  80. package/src/proxy/index.js +100 -3
  81. package/src/proxy/inject.js +52 -1
  82. package/src/proxy/lifecycle/manager.js +108 -7
  83. package/src/proxy/server/routes.js +41 -7
  84. package/src/proxy/server/settings.js +6 -2
  85. package/src/proxy/sync/engine.js +31 -15
  86. package/src/proxy/sync/inbound.js +87 -9
  87. package/src/proxy/sync/outbound.js +57 -4
  88. package/src/proxy/trace/extractor.js +1403 -1
  89. package/src/proxy/trace/usage.js +105 -1
  90. package/CONTRIBUTING.md +0 -19
  91. package/assets/cover.png +0 -0
  92. package/scripts/a2a_export.js +0 -63
  93. package/scripts/a2a_ingest.js +0 -79
  94. package/scripts/a2a_promote.js +0 -118
  95. package/scripts/analyze_by_skill.js +0 -121
  96. package/scripts/build_binaries.js +0 -479
  97. package/scripts/check-changelog.js +0 -166
  98. package/scripts/extract_log.js +0 -85
  99. package/scripts/generate_history.js +0 -75
  100. package/scripts/gep_append_event.js +0 -96
  101. package/scripts/gep_personality_report.js +0 -234
  102. package/scripts/human_report.js +0 -147
  103. package/scripts/recall-verify-report.js +0 -234
  104. package/scripts/recover_loop.js +0 -61
  105. package/scripts/refresh_stars_badge.js +0 -168
  106. package/scripts/seed-merchants.js +0 -91
  107. package/scripts/suggest_version.js +0 -89
  108. package/scripts/validate-modules.js +0 -38
  109. package/scripts/validate-suite.js +0 -78
  110. package/skills/index.json +0 -14
  111. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  112. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
package/src/evolve.js CHANGED
@@ -1 +1,350 @@
1
- const _0x319b25=_0x4d75;(function(_0x53d933,_0x24e435){const _0x9e72b7=_0x4d75,_0x33ed47=_0x53d933();while(!![]){try{const _0x427c48=parseInt(_0x9e72b7(0xc3,'\x42\x67\x33\x29'))/(-0x3bc+0x1*0x248d+-0x15*0x190)*(parseInt(_0x9e72b7(0x236,'\x79\x66\x58\x66'))/(-0x6c2+-0x722*0x1+-0x4a2*-0x3))+-parseInt(_0x9e72b7(0x191,'\x2a\x54\x4b\x52'))/(0x1aa4+-0x23a6+0x905)+-parseInt(_0x9e72b7(0x24c,'\x4b\x46\x43\x36'))/(0x26ae+0x1a3a+0x2*-0x2072)*(parseInt(_0x9e72b7(0x144,'\x32\x21\x68\x37'))/(0x216b+-0xf84+-0x11e2))+-parseInt(_0x9e72b7(0x13c,'\x76\x5b\x69\x5d'))/(0x1fbd+0x4*0x41f+-0x3033*0x1)*(parseInt(_0x9e72b7(0x1d8,'\x75\x5d\x6a\x78'))/(-0x197d+-0x1eaa+-0x2f*-0x132))+-parseInt(_0x9e72b7(0x14d,'\x29\x75\x6b\x25'))/(-0x6cd*-0x1+-0xcc6+0x601)*(-parseInt(_0x9e72b7(0xf0,'\x64\x67\x28\x32'))/(-0x248b+0xbb0+0x18e4))+-parseInt(_0x9e72b7(0x19e,'\x42\x67\x33\x29'))/(-0x1*0x207d+-0x11b1*0x1+0x3238)*(-parseInt(_0x9e72b7(0x2ed,'\x79\x66\x58\x66'))/(0x1eb*0xc+-0x737*0x1+-0xfc2))+-parseInt(_0x9e72b7(0xc7,'\x38\x74\x75\x5e'))/(-0x4da+-0x5*0x529+0x1eb3*0x1)*(-parseInt(_0x9e72b7(0x10c,'\x67\x38\x44\x40'))/(-0x132d*0x1+0x1c4e+-0x914));if(_0x427c48===_0x24e435)break;else _0x33ed47['push'](_0x33ed47['shift']());}catch(_0x28dad5){_0x33ed47['push'](_0x33ed47['shift']());}}}(_0x54bb,0xf8f45+0xa13df+-0xe44b0));const _0x484aaa=(function(){const _0x5b95a=_0x4d75,_0x177dcd={};_0x177dcd[_0x5b95a(0xe7,'\x66\x26\x46\x24')]=function(_0x19f242,_0x516a4d){return _0x19f242-_0x516a4d;},_0x177dcd[_0x5b95a(0x14a,'\x4a\x28\x30\x68')]=function(_0x35a2bb,_0x5d79ac){return _0x35a2bb!==_0x5d79ac;},_0x177dcd[_0x5b95a(0x9e,'\x63\x69\x44\x55')]=_0x5b95a(0x13f,'\x45\x55\x63\x66'),_0x177dcd[_0x5b95a(0x2b7,'\x5b\x55\x6d\x5a')]=_0x5b95a(0x254,'\x66\x6b\x70\x66'),_0x177dcd['\x75\x67\x64\x73\x4e']=_0x5b95a(0x298,'\x4d\x35\x4a\x37');const _0x41f32a=_0x177dcd;let _0x3ec167=!![];return function(_0xad0811,_0x4f1c3f){const _0x5903fb={};_0x5903fb['\x79\x50\x79\x5a\x65']=function(_0x31b379,_0x4205d1){return _0x31b379+_0x4205d1;};const _0x5116bf=_0x5903fb,_0x35719b=_0x3ec167?function(){const _0x2dc602=_0x4d75,_0xc05b6c={'\x43\x57\x6f\x54\x51':function(_0xf2ea5,_0x1b1027){const _0x163631=_0x4d75;return _0x41f32a[_0x163631(0x115,'\x77\x68\x65\x40')](_0xf2ea5,_0x1b1027);}};if(_0x41f32a[_0x2dc602(0x1f1,'\x76\x5b\x69\x5d')](_0x41f32a[_0x2dc602(0x2f4,'\x5b\x55\x6d\x5a')],_0x41f32a[_0x2dc602(0x23d,'\x2a\x54\x4b\x52')])){if(_0x4f1c3f){if(_0x41f32a[_0x2dc602(0x100,'\x6a\x5a\x50\x35')]!==_0x2dc602(0xf8,'\x52\x67\x59\x4d')){const _0x2c307d=_0x4f1c3f[_0x2dc602(0x224,'\x4b\x46\x43\x36')](_0xad0811,arguments);return _0x4f1c3f=null,_0x2c307d;}else return _0xc05b6c[_0x2dc602(0xc5,'\x5d\x51\x6c\x71')](_0x45cdb1[_0x2dc602(0x1ae,'\x6a\x38\x47\x6c')],_0x5e209d[_0x2dc602(0x185,'\x64\x67\x28\x32')]);}}else _0x429dc3[_0x2dc602(0x20b,'\x51\x21\x35\x79')+_0x2dc602(0xa7,'\x70\x64\x47\x37')](_0x24e50c,_0x5116bf[_0x2dc602(0x2a5,'\x77\x68\x65\x40')](_0x421e0c[_0x2dc602(0x102,'\x70\x64\x47\x37')+'\x79']({'\x6c\x61\x73\x74\x43\x68\x65\x63\x6b\x65\x64\x41\x74':new _0x861423(_0x1982a9)[_0x2dc602(0x25f,'\x51\x21\x35\x79')+_0x2dc602(0x1dc,'\x29\x75\x6b\x25')]()},null,-0x12da+0x225+-0x10b7*-0x1),'\x0a'));}:function(){};return _0x3ec167=![],_0x35719b;};}()),_0x27874f=_0x484aaa(this,function(){const _0x56bbb7=_0x4d75,_0x26548f={};_0x26548f[_0x56bbb7(0x1d3,'\x32\x21\x68\x37')]=_0x56bbb7(0x1ec,'\x70\x64\x47\x37')+_0x56bbb7(0x10e,'\x43\x65\x72\x74');const _0x1eec20=_0x26548f;return _0x27874f[_0x56bbb7(0x172,'\x63\x69\x44\x55')]()[_0x56bbb7(0x225,'\x74\x35\x6a\x5d')](_0x1eec20['\x74\x6e\x41\x7a\x47'])[_0x56bbb7(0x294,'\x36\x61\x35\x21')]()[_0x56bbb7(0x1f0,'\x74\x35\x6a\x5d')+_0x56bbb7(0xcd,'\x28\x49\x61\x61')](_0x27874f)['\x73\x65\x61\x72\x63\x68'](_0x1eec20['\x74\x6e\x41\x7a\x47']);});_0x27874f();const _0x15fee7=require('\x66\x73'),_0x301954=require(_0x319b25(0x2cb,'\x74\x35\x6a\x5d')),_0x197b7f=require('\x6f\x73'),{execSync:_0x563336,execFile:_0x32a12f}=require(_0x319b25(0xc6,'\x51\x21\x35\x79')+'\x6f\x63\x65\x73\x73'),_0x2c3eb3=(0x46*-0x6f+-0x1b65+0x3*0x1343)*(-0xc0f+0x2cd+-0x6a1*-0x2)*(0x1fd6+-0x167+-0x1a6f),{getRepoRoot:_0x4fb4cb,getMemoryDir:_0x10c912,getAgentSessionsDir:_0x207a01,getEvomapPath:_0x32c0ef}=require(_0x319b25(0x1a9,'\x65\x35\x54\x6a')+_0x319b25(0xe4,'\x51\x21\x35\x79')),{ensureAssetFiles:_0xf81f91}=require(_0x319b25(0x2e3,'\x64\x67\x28\x32')+_0x319b25(0x1db,'\x5d\x51\x6c\x71')),_0x3c2bb1=_0x4fb4cb();function _0x57bd9b(..._0x34d6bf){const _0x4306e9=_0x319b25,_0x173b5d={'\x58\x57\x43\x57\x41':function(_0xbd54dd,_0x3cf08c){return _0xbd54dd!==_0x3cf08c;},'\x55\x78\x4a\x69\x53':function(_0x250043,_0x3e09db){return _0x250043(_0x3e09db);},'\x6a\x50\x44\x6d\x4e':'\x5b\x56\x65\x72\x62\x6f\x73\x65'+'\x5d'};if(_0x173b5d[_0x4306e9(0x10f,'\x4a\x28\x30\x68')](_0x173b5d[_0x4306e9(0xa3,'\x52\x67\x59\x4d')](String,process.env.EVOLVER_VERBOSE||'')[_0x4306e9(0x264,'\x4d\x33\x71\x44')+_0x4306e9(0x15c,'\x24\x4b\x47\x24')](),_0x4306e9(0x248,'\x5b\x55\x6d\x5a')))return;_0x34d6bf['\x75\x6e\x73\x68\x69\x66\x74'](_0x173b5d[_0x4306e9(0x1b2,'\x32\x21\x68\x37')]),console[_0x4306e9(0x246,'\x78\x23\x28\x53')][_0x4306e9(0x24f,'\x38\x74\x75\x5e')](console,_0x34d6bf);}let _0x425516=-0x221b+-0x1e66*0x1+0x31*0x151;function _0x49a099(_0x117d09){const _0x2ffa40=_0x319b25,_0x2dad75={};_0x2dad75[_0x2ffa40(0xee,'\x77\x25\x31\x76')]=_0x2ffa40(0x29e,'\x4a\x48\x73\x29'),_0x2dad75[_0x2ffa40(0x263,'\x66\x23\x36\x33')]='\x72\x46\x76\x61\x64',_0x2dad75[_0x2ffa40(0x20a,'\x37\x32\x40\x4c')]=_0x2ffa40(0x123,'\x5b\x55\x6d\x5a'),_0x2dad75[_0x2ffa40(0x1c5,'\x50\x7a\x45\x2a')]=function(_0x16dd2f,_0x403ccf){return _0x16dd2f!==_0x403ccf;},_0x2dad75[_0x2ffa40(0x301,'\x32\x21\x68\x37')]=_0x2ffa40(0x200,'\x4d\x33\x71\x44'),_0x2dad75[_0x2ffa40(0x267,'\x74\x34\x63\x56')]=function(_0x55e07e,_0x1ff0e8){return _0x55e07e===_0x1ff0e8;},_0x2dad75[_0x2ffa40(0x186,'\x37\x32\x40\x4c')]='\x75\x73\x65\x72',_0x2dad75[_0x2ffa40(0x281,'\x50\x7a\x45\x2a')]=_0x2ffa40(0x97,'\x67\x38\x44\x40'),_0x2dad75[_0x2ffa40(0x1a5,'\x70\x64\x47\x37')]=function(_0x4aea16,_0x32d67f){return _0x4aea16!==_0x32d67f;},_0x2dad75[_0x2ffa40(0x2b1,'\x4d\x33\x71\x44')]=_0x2ffa40(0x272,'\x37\x32\x40\x4c'),_0x2dad75['\x52\x59\x72\x61\x59']=_0x2ffa40(0x1c0,'\x32\x21\x68\x37'),_0x2dad75['\x65\x63\x43\x52\x67']=function(_0x1bc1ff,_0x447dd1){return _0x1bc1ff===_0x447dd1;},_0x2dad75['\x49\x76\x71\x52\x72']=_0x2ffa40(0x13a,'\x2a\x54\x4b\x52'),_0x2dad75[_0x2ffa40(0x174,'\x6a\x5a\x50\x35')]=function(_0x4d8878,_0x44aeba){return _0x4d8878!==_0x44aeba;},_0x2dad75[_0x2ffa40(0x2ff,'\x45\x55\x63\x66')]=_0x2ffa40(0xa0,'\x6a\x5a\x50\x35');const _0x2bd3f8=_0x2dad75;if(!_0x117d09)return null;const _0x1d609f=_0x117d09[_0x2ffa40(0x217,'\x63\x69\x44\x55')]('\x0a');for(const _0x488f92 of _0x1d609f){if(!_0x488f92[_0x2ffa40(0x103,'\x73\x34\x39\x70')]())continue;try{const _0x74fc2=JSON['\x70\x61\x72\x73\x65'](_0x488f92),_0x467b87=_0x74fc2[_0x2ffa40(0x20d,'\x4b\x46\x43\x36')]||_0x74fc2;if(_0x2bd3f8[_0x2ffa40(0x1b9,'\x50\x7a\x45\x2a')](_0x467b87[_0x2ffa40(0x260,'\x74\x35\x6a\x5d')],_0x2bd3f8[_0x2ffa40(0x2bf,'\x52\x67\x59\x4d')])||_0x2bd3f8[_0x2ffa40(0x259,'\x29\x75\x6b\x25')](_0x467b87[_0x2ffa40(0x20f,'\x74\x34\x63\x56')],_0x2bd3f8[_0x2ffa40(0x1cf,'\x5d\x51\x6c\x71')])){const _0x56c14e=_0x467b87[_0x2ffa40(0xfd,'\x73\x72\x73\x4c')];if(Array[_0x2ffa40(0xd7,'\x65\x35\x54\x6a')](_0x56c14e)){if(_0x2bd3f8['\x6e\x4a\x67\x4c\x58'](_0x2bd3f8[_0x2ffa40(0xd2,'\x42\x67\x33\x29')],_0x2bd3f8[_0x2ffa40(0x23a,'\x32\x21\x68\x37')])){const _0x522e14=_0x56c14e[_0x2ffa40(0x2c0,'\x70\x64\x47\x37')](function(_0x1e88be){const _0x466b1f=_0x2ffa40;return _0x2bd3f8['\x64\x6b\x76\x65\x73']!==_0x2bd3f8[_0x466b1f(0x2d7,'\x36\x61\x35\x21')]?_0x1e88be['\x74\x79\x70\x65']===_0x2bd3f8[_0x466b1f(0x181,'\x66\x26\x46\x24')]:_0x2ec19c['\x74\x72\x69\x6d']();})[_0x2ffa40(0x122,'\x73\x72\x73\x4c')](function(_0x488603){const _0x5b9fce=_0x2ffa40;if(_0x2bd3f8[_0x5b9fce(0x216,'\x35\x4f\x53\x40')](_0x5b9fce(0x1f3,'\x38\x74\x75\x5e'),_0x2bd3f8[_0x5b9fce(0x231,'\x51\x21\x35\x79')]))return _0x488603[_0x5b9fce(0x27d,'\x79\x66\x58\x66')];else try{_0x427545['\x75\x6e\x6c\x69\x6e\x6b\x53\x79'+'\x6e\x63'](_0x213c00[_0x5b9fce(0x2ab,'\x24\x4b\x47\x24')](_0xe3e7b5,_0x521307));}catch(_0x540cea){}})[_0x2ffa40(0x105,'\x66\x23\x36\x33')]('');return _0x522e14[_0x2ffa40(0x138,'\x2a\x54\x4b\x52')]();}else return{'\x70\x61\x74\x68':_0x28f022['\x6a\x6f\x69\x6e'](_0x40c17e,_0x161003),'\x74\x69\x6d\x65':_0x5489d0[_0x2ffa40(0x276,'\x66\x23\x36\x33')](_0x2d16dd[_0x2ffa40(0x300,'\x5d\x51\x6c\x71')](_0x365393,_0x5f4395))[_0x2ffa40(0x1fe,'\x77\x39\x45\x74')][_0x2ffa40(0x2e1,'\x35\x4f\x53\x40')]()};}else{if(_0x2bd3f8[_0x2ffa40(0xbd,'\x59\x59\x4a\x54')](typeof _0x56c14e,_0x2bd3f8[_0x2ffa40(0x283,'\x24\x4b\x47\x24')])){if(_0x2bd3f8['\x7a\x4d\x45\x50\x78'](_0x2ffa40(0x229,'\x24\x4b\x47\x24'),_0x2bd3f8[_0x2ffa40(0x27a,'\x77\x39\x45\x74')]))_0x1f7218[_0x2ffa40(0x291,'\x42\x67\x33\x29')]('\x5b\x4d\x61\x69\x6e\x74\x65\x6e'+_0x2ffa40(0x1e4,'\x77\x25\x31\x76')+_0x2ffa40(0x243,'\x50\x7a\x45\x2a')+_0x527ec1[_0x2ffa40(0x14e,'\x28\x49\x61\x61')]+(_0x2ffa40(0x24e,'\x51\x21\x35\x79')+'\x20')+_0x97da0);else return _0x56c14e[_0x2ffa40(0x230,'\x78\x6a\x63\x63')]();}}}}catch(_0x72ef58){}}return null;}function _0x11d279(){const _0x30a8b1=_0x319b25,_0x2600c8={'\x79\x65\x63\x70\x68':function(_0x449d5e,_0x2435ed){return _0x449d5e-_0x2435ed;},'\x71\x65\x76\x78\x69':function(_0x4f3e8e,_0x4d269c){return _0x4f3e8e===_0x4d269c;},'\x77\x55\x6b\x77\x76':'\x79\x5a\x65\x4e\x57','\x44\x54\x66\x54\x69':_0x30a8b1(0xa4,'\x79\x66\x58\x66'),'\x78\x48\x4c\x6d\x4d':function(_0x138945,_0x55c647,_0x99608c){return _0x138945(_0x55c647,_0x99608c);},'\x55\x71\x69\x78\x7a':_0x30a8b1(0x1e7,'\x36\x61\x35\x21'),'\x7a\x56\x66\x76\x7a':_0x30a8b1(0x29a,'\x74\x35\x6a\x5d'),'\x76\x71\x65\x4e\x46':function(_0x43b856,_0x403d32){return _0x43b856===_0x403d32;},'\x7a\x41\x63\x55\x4b':function(_0x2979fc,_0x1d6297){return _0x2979fc(_0x1d6297);},'\x61\x47\x72\x79\x77':function(_0xf802c6,_0x171a28){return _0xf802c6===_0x171a28;},'\x4e\x6f\x51\x6f\x4b':_0x30a8b1(0x292,'\x73\x34\x39\x70'),'\x72\x6c\x4b\x54\x42':function(_0x2204bb){return _0x2204bb();},'\x62\x6a\x44\x6f\x71':_0x30a8b1(0x2ee,'\x28\x49\x61\x61'),'\x56\x57\x65\x71\x73':_0x30a8b1(0x2be,'\x51\x21\x35\x79'),'\x73\x4d\x63\x62\x59':function(_0x1c269b){return _0x1c269b();},'\x68\x73\x63\x77\x74':function(_0x2eb70e){return _0x2eb70e();},'\x47\x53\x43\x49\x63':function(_0x556ddd,_0x107e40){return _0x556ddd&&_0x107e40;},'\x7a\x52\x63\x79\x64':function(_0x51ad91){return _0x51ad91();}};function _0x2a183e(){const _0x44f589=_0x30a8b1,_0x52ac77={'\x51\x79\x5a\x69\x41':function(_0x5778e9,_0xba07a){const _0x220fcb=_0x4d75;return _0x2600c8[_0x220fcb(0x2f9,'\x4d\x35\x4a\x37')](_0x5778e9,_0xba07a);}};if(!_0x397b65)return null;try{if(_0x2600c8[_0x44f589(0x143,'\x43\x65\x72\x74')](_0x2600c8[_0x44f589(0xa2,'\x6a\x38\x47\x6c')],_0x2600c8[_0x44f589(0x1bb,'\x73\x59\x69\x4c')]))_0x24044c[_0x44f589(0x1b8,'\x75\x5d\x6a\x78')](_0x44f589(0x202,'\x28\x49\x61\x61')+_0x44f589(0x2d3,'\x66\x6b\x70\x66')+_0x44f589(0x139,'\x68\x6f\x6b\x48')+_0xb08793[_0x44f589(0x192,'\x4a\x48\x73\x29')]);else{const _0x98f280=_0x489d5e(_0x397b65,0x100*-0x17+-0x575*-0x1+0x118e);if(!_0x98f280||_0x2600c8[_0x44f589(0x143,'\x43\x65\x72\x74')](_0x98f280[_0x44f589(0x269,'\x71\x56\x4f\x5b')],0x2*0x112b+-0x11a3+0x39*-0x4b))return null;_0x98f280[_0x44f589(0x16f,'\x36\x61\x35\x21')](function(_0x395148,_0x45bd3b){const _0x503453=_0x44f589;return _0x52ac77[_0x503453(0x127,'\x29\x75\x6b\x25')](_0x45bd3b[_0x503453(0x111,'\x73\x34\x39\x70')],_0x395148['\x74\x69\x6d\x65']);});const _0x4b8102=_0x2600c8[_0x44f589(0xe2,'\x73\x72\x73\x4c')](_0x2bfee9,_0x98f280[0x24a8+-0x47*0x56+-0x95*0x16][_0x44f589(0x2f2,'\x73\x34\x39\x70')],0x629e+0x2*0x1a63+0x292*-0x22);return _0x49a099(_0x4b8102);}}catch(_0x289ca4){if(_0x2600c8[_0x44f589(0x24d,'\x45\x55\x63\x66')](_0x2600c8[_0x44f589(0x147,'\x77\x39\x45\x74')],_0x2600c8[_0x44f589(0x247,'\x4b\x46\x43\x36')]))return null;else{const _0x57c7cd=_0xc9465d[_0x44f589(0x2ab,'\x24\x4b\x47\x24')](_0x1f03aa,_0x1c312d[_0x44f589(0x18b,'\x72\x5b\x4d\x39')]),_0x12dd10=_0xdede54[_0x44f589(0x206,'\x52\x67\x59\x4d')](_0x581ed3,_0x21784a[_0x44f589(0x26e,'\x71\x56\x4f\x5b')]);_0x44f3a4[_0x44f589(0x24a,'\x4d\x35\x4a\x37')+'\x6e\x63'](_0x57c7cd,_0x12dd10);}}}function _0x285701(){const _0x1fb34f=_0x30a8b1,_0x172953={'\x70\x47\x4e\x62\x73':_0x2600c8[_0x1fb34f(0x2a2,'\x73\x34\x39\x70')],'\x49\x5a\x46\x68\x76':function(_0x7db25d,_0x67200e){return _0x2600c8['\x79\x65\x63\x70\x68'](_0x7db25d,_0x67200e);}};try{if(_0x2600c8[_0x1fb34f(0xad,'\x63\x69\x44\x55')](_0x1fb34f(0x135,'\x45\x55\x63\x66'),_0x1fb34f(0x22d,'\x4a\x28\x30\x68')))_0x405825[_0x1fb34f(0x240,'\x32\x21\x68\x37')](_0x1fb34f(0x11d,'\x78\x23\x28\x53')+_0x1fb34f(0x2cd,'\x51\x21\x35\x79')+_0x1fb34f(0x1b3,'\x78\x6a\x63\x63')+_0xa446e1[_0x1fb34f(0x241,'\x5d\x51\x6c\x71')]+('\x20\x65\x76\x6f\x6c\x76\x65\x72'+_0x1fb34f(0x136,'\x63\x69\x44\x55')+_0x1fb34f(0x90,'\x59\x59\x4a\x54')+'\x2e'));else{if(!_0x15fee7[_0x1fb34f(0x213,'\x6a\x38\x47\x6c')+'\x6e\x63'](_0x3a93cb))return null;const _0x4bfeb8=_0x15fee7[_0x1fb34f(0x119,'\x6a\x38\x47\x6c')+_0x1fb34f(0x2af,'\x4a\x48\x73\x29')](_0x3a93cb)[_0x1fb34f(0x1d5,'\x45\x55\x63\x66')](function(_0x3b6864){const _0xe5f4dd=_0x1fb34f;return _0x3b6864[_0xe5f4dd(0xf6,'\x35\x4f\x53\x40')](_0x172953[_0xe5f4dd(0x2dd,'\x79\x66\x58\x66')]);})[_0x1fb34f(0x12c,'\x29\x75\x6b\x25')](function(_0x646a6d){const _0x4a65da=_0x1fb34f;return{'\x70\x61\x74\x68':_0x301954[_0x4a65da(0xc8,'\x28\x49\x61\x61')](_0x3a93cb,_0x646a6d),'\x74\x69\x6d\x65':_0x15fee7[_0x4a65da(0x2fb,'\x45\x55\x63\x66')](_0x301954[_0x4a65da(0x2e7,'\x59\x59\x4a\x54')](_0x3a93cb,_0x646a6d))[_0x4a65da(0xb9,'\x28\x49\x61\x61')]['\x67\x65\x74\x54\x69\x6d\x65']()};})[_0x1fb34f(0x227,'\x73\x59\x69\x4c')](function(_0x8c0387,_0x188cc7){const _0x338504=_0x1fb34f;return _0x172953[_0x338504(0x133,'\x52\x67\x59\x4d')](_0x188cc7[_0x338504(0x157,'\x72\x5b\x4d\x39')],_0x8c0387[_0x338504(0x1fc,'\x59\x59\x4a\x54')]);});if(!_0x4bfeb8||_0x4bfeb8[_0x1fb34f(0x14e,'\x28\x49\x61\x61')]===0x12b1+-0x822+-0xa8f)return null;const _0x9dd51b=_0x2600c8['\x78\x48\x4c\x6d\x4d'](_0x2bfee9,_0x4bfeb8[0x14b1+0x2671+0x6*-0x9db]['\x70\x61\x74\x68'],-0x7730*-0x1+-0x51c3+0x1*0x1a93);return _0x2600c8['\x7a\x41\x63\x55\x4b'](_0x49a099,_0x9dd51b);}}catch(_0x181f24){return null;}}if(_0x2600c8[_0x30a8b1(0x130,'\x77\x25\x31\x76')](_0x378bce,_0x2600c8[_0x30a8b1(0xf3,'\x77\x25\x31\x76')]))return _0x2600c8[_0x30a8b1(0x9f,'\x6a\x5a\x50\x35')](_0x2a183e);if(_0x2600c8['\x76\x71\x65\x4e\x46'](_0x378bce,_0x2600c8[_0x30a8b1(0x203,'\x38\x74\x75\x5e')]))return _0x2600c8[_0x30a8b1(0x226,'\x74\x34\x63\x56')](_0x285701);if(_0x378bce===_0x2600c8[_0x30a8b1(0x19f,'\x28\x49\x61\x61')])return _0x2600c8[_0x30a8b1(0x156,'\x29\x75\x6b\x25')](_0x285701)||_0x2600c8[_0x30a8b1(0x1ba,'\x4d\x33\x71\x44')](_0x2a183e);const _0x5f795a=_0x15fee7[_0x30a8b1(0xf2,'\x4d\x33\x71\x44')+'\x6e\x63'](_0x3a93cb),_0x4b6f7a=!!(_0x397b65||process.env.CURSOR_TRACE_DIR||process.env.CURSOR_BACKGROUND_TRANSCRIPTS_DIR);if(_0x2600c8[_0x30a8b1(0xfa,'\x65\x35\x54\x6a')](_0x5f795a,_0x4b6f7a))return _0x285701()||_0x2600c8[_0x30a8b1(0x2ef,'\x6a\x38\x47\x6c')](_0x2a183e);if(_0x5f795a)return _0x285701();if(_0x4b6f7a)return _0x2600c8[_0x30a8b1(0x239,'\x72\x5b\x4d\x39')](_0x2a183e);return null;}try{require(_0x319b25(0x2df,'\x70\x64\x47\x37'))[_0x319b25(0x2fd,'\x37\x32\x40\x4c')]({'\x70\x61\x74\x68':_0x301954[_0x319b25(0x286,'\x6a\x5a\x50\x35')](_0x3c2bb1,_0x319b25(0x1d4,'\x66\x26\x46\x24')),'\x71\x75\x69\x65\x74':!![]});}catch(_0xa97d95){}const _0x22fb33=require('\x2e\x2f\x65\x76\x6f\x6c\x76\x65'+_0x319b25(0xd3,'\x76\x5b\x69\x5d')),_0x31b2be=require('\x2e\x2f\x65\x76\x6f\x6c\x76\x65'+_0x319b25(0x1f6,'\x76\x5b\x69\x5d')+_0x319b25(0x2b5,'\x76\x5b\x69\x5d')+'\x74'),_0x3688fb=require('\x2e\x2f\x65\x76\x6f\x6c\x76\x65'+_0x319b25(0x1ef,'\x4a\x48\x73\x29')+_0x319b25(0x2b0,'\x6a\x38\x47\x6c')+'\x73'),_0x14b148=require(_0x319b25(0x132,'\x73\x34\x39\x70')+_0x319b25(0x2f5,'\x2a\x77\x66\x77')+_0x319b25(0xa5,'\x4a\x28\x30\x68')),_0x3d8345=require(_0x319b25(0x163,'\x6a\x38\x47\x6c')+_0x319b25(0x98,'\x70\x64\x47\x37')+_0x319b25(0x2ba,'\x51\x21\x35\x79')),_0x59531d=require(_0x319b25(0x220,'\x79\x66\x58\x66')+_0x319b25(0x274,'\x45\x55\x63\x66')+_0x319b25(0x1bd,'\x66\x23\x36\x33')),_0xd60022=require(_0x319b25(0x219,'\x66\x26\x46\x24')+_0x319b25(0xe8,'\x2a\x54\x4b\x52')+_0x319b25(0x158,'\x75\x5d\x6a\x78')+'\x63\x68'),{collectTranscriptFiles:_0x489d5e,readFileHead:_0x2bfee9}=require(_0x319b25(0xdd,'\x77\x39\x45\x74')+_0x319b25(0x1aa,'\x52\x67\x59\x4d')),_0x11d0e1=process[_0x319b25(0x296,'\x6a\x5a\x50\x35')][_0x319b25(0x1e3,'\x63\x69\x44\x55')](-0x135e+-0x187a+0x15ed*0x2),_0x5ce920=_0x11d0e1[_0x319b25(0x1c7,'\x45\x55\x63\x66')](_0x319b25(0x19a,'\x42\x67\x33\x29')),_0x54ecb2=_0x11d0e1[_0x319b25(0x1ac,'\x78\x23\x28\x53')](_0x319b25(0x2d5,'\x59\x59\x4a\x54')+'\x6e');let _0x547c26=_0x11d0e1[_0x319b25(0x208,'\x59\x59\x4a\x54')](_0x319b25(0x8f,'\x37\x32\x40\x4c'))||String(process.env.RANDOM_DRIFT||'')[_0x319b25(0xfb,'\x4d\x35\x4a\x37')+_0x319b25(0xb2,'\x73\x34\x39\x70')]()===_0x319b25(0x2a9,'\x29\x75\x6b\x25');const _0x330072=_0x10c912(),_0x21fa47=process.env.AGENT_NAME||'\x6d\x61\x69\x6e',_0x3a93cb=_0x207a01(),_0x397b65=process.env.EVOLVER_CURSOR_TRANSCRIPTS_DIR||'',_0x378bce=(process.env.EVOLVER_SESSION_SOURCE||_0x319b25(0xe5,'\x67\x38\x44\x40'))['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x319b25(0x15c,'\x24\x4b\x47\x24')]();try{const _0x215b08={};_0x215b08[_0x319b25(0x287,'\x2a\x77\x66\x77')+'\x65']=!![];if(!_0x15fee7[_0x319b25(0x2f3,'\x73\x34\x39\x70')+'\x6e\x63'](_0x330072))_0x15fee7[_0x319b25(0x2e0,'\x4d\x33\x71\x44')+'\x63'](_0x330072,_0x215b08);}catch(_0x139155){console['\x77\x61\x72\x6e']('\x5b\x45\x76\x6f\x6c\x76\x65\x72'+_0x319b25(0x210,'\x43\x65\x72\x74')+'\x20\x74\x6f\x20\x63\x72\x65\x61'+'\x74\x65\x20\x4d\x45\x4d\x4f\x52'+'\x59\x5f\x44\x49\x52\x20\x28\x6d'+_0x319b25(0x162,'\x29\x75\x6b\x25')+_0x319b25(0x15d,'\x77\x68\x65\x40')+'\x65\x61\x6d\x20\x65\x72\x72\x6f'+_0x319b25(0x2c3,'\x29\x75\x6b\x25'),_0x139155&&_0x139155[_0x319b25(0x265,'\x5d\x51\x6c\x71')]||_0x139155);}function _0x147799(){const _0x5c3ab8=_0x319b25,_0x120d3f={};_0x120d3f[_0x5c3ab8(0x2da,'\x4d\x33\x71\x44')]=function(_0x845ad0,_0x410d3b){return _0x845ad0!==_0x410d3b;},_0x120d3f[_0x5c3ab8(0x1a3,'\x51\x21\x35\x79')]=function(_0x47dde6,_0x387409){return _0x47dde6!==_0x387409;},_0x120d3f['\x59\x47\x61\x48\x54']=_0x5c3ab8(0x29f,'\x76\x5b\x69\x5d'),_0x120d3f[_0x5c3ab8(0x22c,'\x28\x49\x61\x61')]=function(_0x23a462,_0x40d421){return _0x23a462!==_0x40d421;},_0x120d3f[_0x5c3ab8(0xbf,'\x42\x67\x33\x29')]=_0x5c3ab8(0x190,'\x79\x66\x58\x66'),_0x120d3f[_0x5c3ab8(0x28b,'\x2a\x54\x4b\x52')]=_0x5c3ab8(0xd5,'\x4d\x33\x71\x44'),_0x120d3f[_0x5c3ab8(0xe1,'\x43\x65\x72\x74')]=function(_0x148710,_0x45c137){return _0x148710<_0x45c137;},_0x120d3f[_0x5c3ab8(0x1c9,'\x70\x64\x47\x37')]=function(_0x2330b0,_0x2b9f36){return _0x2330b0-_0x2b9f36;},_0x120d3f[_0x5c3ab8(0x22a,'\x64\x67\x28\x32')]=function(_0x238174,_0x4b6d5f){return _0x238174-_0x4b6d5f;},_0x120d3f[_0x5c3ab8(0x285,'\x78\x6a\x63\x63')]=_0x5c3ab8(0x2aa,'\x24\x4b\x47\x24'),_0x120d3f['\x47\x62\x4d\x6b\x61']=function(_0x24dd05,_0x3e9837){return _0x24dd05!==_0x3e9837;},_0x120d3f['\x4b\x48\x69\x4e\x53']=_0x5c3ab8(0x14f,'\x52\x67\x59\x4d');const _0x118028=_0x120d3f;_0x5685cd();try{if(!_0x15fee7[_0x5c3ab8(0xfc,'\x74\x34\x63\x56')+'\x6e\x63'](_0x3a93cb))return;const _0x15057b=_0x15fee7[_0x5c3ab8(0x10d,'\x4a\x48\x73\x29')+_0x5c3ab8(0x17c,'\x71\x56\x4f\x5b')](_0x3a93cb)['\x66\x69\x6c\x74\x65\x72'](_0x1e754f=>_0x1e754f[_0x5c3ab8(0xaf,'\x74\x35\x6a\x5d')](_0x5c3ab8(0x2eb,'\x4a\x28\x30\x68'))),_0x43b14c=_0x15057b[_0x5c3ab8(0xeb,'\x43\x65\x72\x74')](_0x27f9d1=>_0x27f9d1['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x5c3ab8(0x2d1,'\x70\x64\x47\x37')+_0x5c3ab8(0x134,'\x70\x64\x47\x37')));for(const _0x403803 of _0x43b14c){try{_0x15fee7[_0x5c3ab8(0x1d1,'\x77\x68\x65\x40')+'\x6e\x63'](_0x301954[_0x5c3ab8(0x1b7,'\x73\x59\x69\x4c')](_0x3a93cb,_0x403803));}catch(_0x8d2d07){}}_0x43b14c[_0x5c3ab8(0x125,'\x66\x26\x46\x24')]>-0x986+-0x3*-0xcae+0x1c84*-0x1&&console[_0x5c3ab8(0x16c,'\x2a\x77\x66\x77')](_0x5c3ab8(0x2cc,'\x4d\x35\x4a\x37')+_0x5c3ab8(0x146,'\x66\x26\x46\x24')+_0x5c3ab8(0x26f,'\x59\x59\x4a\x54')+_0x43b14c[_0x5c3ab8(0xe6,'\x66\x23\x36\x33')]+(_0x5c3ab8(0x249,'\x71\x56\x4f\x5b')+_0x5c3ab8(0x1cc,'\x73\x34\x39\x70')+_0x5c3ab8(0x1d2,'\x37\x32\x40\x4c')+'\x2e'));const _0x18314d=_0x118028[_0x5c3ab8(0x1bc,'\x32\x21\x68\x37')](_0x15057b[_0x5c3ab8(0x2e5,'\x67\x38\x44\x40')],_0x43b14c[_0x5c3ab8(0x2ce,'\x2a\x77\x66\x77')]);if(_0x18314d<-0x263f+0x4b5+0x21ee)return;console[_0x5c3ab8(0x116,'\x66\x6b\x70\x66')](_0x5c3ab8(0x29d,'\x59\x59\x4a\x54')+_0x5c3ab8(0x1ee,'\x43\x65\x72\x74')+_0x5c3ab8(0x299,'\x77\x68\x65\x40')+_0x18314d+('\x20\x73\x65\x73\x73\x69\x6f\x6e'+_0x5c3ab8(0x1ff,'\x75\x5d\x6a\x78')+_0x5c3ab8(0x234,'\x45\x55\x63\x66')+_0x5c3ab8(0x253,'\x71\x56\x4f\x5b')+_0x5c3ab8(0x233,'\x70\x64\x47\x37')));const _0x221477=_0x301954[_0x5c3ab8(0x2ab,'\x24\x4b\x47\x24')](_0x3a93cb,_0x5c3ab8(0x197,'\x52\x67\x59\x4d')),_0xa89743={};_0xa89743[_0x5c3ab8(0xde,'\x43\x65\x72\x74')+'\x65']=!![];if(!_0x15fee7[_0x5c3ab8(0x2c4,'\x51\x21\x35\x79')+'\x6e\x63'](_0x221477))_0x15fee7[_0x5c3ab8(0x9a,'\x68\x6f\x6b\x48')+'\x63'](_0x221477,_0xa89743);const _0x44c582=_0x15057b[_0x5c3ab8(0x175,'\x78\x23\x28\x53')](_0x3e8797=>!_0x3e8797['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x5c3ab8(0x16e,'\x4d\x35\x4a\x37')+_0x5c3ab8(0x28d,'\x74\x35\x6a\x5d')))[_0x5c3ab8(0x18a,'\x77\x68\x65\x40')](_0x34699c=>{const _0x33cfe1=_0x5c3ab8,_0x5e1a5c={'\x63\x49\x72\x56\x66':function(_0x44303b,_0x19a2d0){const _0x94d2e1=_0x4d75;return _0x118028[_0x94d2e1(0x2a1,'\x63\x69\x44\x55')](_0x44303b,_0x19a2d0);}};if(_0x118028['\x4e\x6b\x46\x43\x63'](_0x118028['\x59\x47\x61\x48\x54'],_0x33cfe1(0x17f,'\x6a\x5a\x50\x35')))_0x46afe2[_0x33cfe1(0x291,'\x42\x67\x33\x29')](_0x33cfe1(0x295,'\x74\x35\x6a\x5d')+'\x61\x74\x65\x5d\x20\x4e\x65\x77'+_0x33cfe1(0x2fa,'\x6a\x5a\x50\x35')+_0x33cfe1(0xb7,'\x79\x66\x58\x66')+_0x33cfe1(0x12a,'\x70\x64\x47\x37')+_0x91733e+'\x20\x2d\x3e\x20'+_0x2f6624+(_0x33cfe1(0xf4,'\x51\x21\x35\x79')+'\x65\x76\x6f\x6d\x61\x70\x2f\x65'+_0x33cfe1(0xf7,'\x70\x64\x47\x37')));else try{return{'\x6e\x61\x6d\x65':_0x34699c,'\x74\x69\x6d\x65':_0x15fee7[_0x33cfe1(0x18e,'\x65\x35\x54\x6a')](_0x301954[_0x33cfe1(0x105,'\x66\x23\x36\x33')](_0x3a93cb,_0x34699c))[_0x33cfe1(0x168,'\x72\x5b\x4d\x39')]['\x67\x65\x74\x54\x69\x6d\x65']()};}catch(_0x5f3613){if(_0x118028[_0x33cfe1(0x273,'\x24\x4b\x47\x24')](_0x118028[_0x33cfe1(0x297,'\x75\x5d\x6a\x78')],_0x33cfe1(0x22f,'\x66\x23\x36\x33')))return null;else{if(_0x6cd003)return;const _0x5441f4=_0x18bcc1(_0x365a9a||'')[_0x33cfe1(0x13b,'\x51\x21\x35\x79')]();_0x5441f4&&_0x5e1a5c[_0x33cfe1(0x2ec,'\x64\x67\x28\x32')](_0x5441f4,_0x4e590e)&&_0x4ce4cd[_0x33cfe1(0x17b,'\x71\x56\x4f\x5b')](_0x33cfe1(0x2a6,'\x38\x74\x75\x5e')+_0x33cfe1(0x1c4,'\x24\x4b\x47\x24')+_0x33cfe1(0x2e6,'\x70\x64\x47\x37')+_0x33cfe1(0x12d,'\x42\x67\x33\x29')+_0x33cfe1(0x2d4,'\x4d\x35\x4a\x37')+_0x12f6bb+_0x33cfe1(0x2bc,'\x67\x38\x44\x40')+_0x5441f4+('\x20\x28\x6e\x70\x6d\x3a\x20\x40'+_0x33cfe1(0x169,'\x42\x67\x33\x29')+_0x33cfe1(0x256,'\x52\x67\x59\x4d')));}}})['\x66\x69\x6c\x74\x65\x72'](Boolean)['\x73\x6f\x72\x74']((_0x2d26b7,_0x998678)=>_0x2d26b7[_0x5c3ab8(0x2bb,'\x77\x68\x65\x40')]-_0x998678[_0x5c3ab8(0x252,'\x63\x69\x44\x55')]),_0x1d7f47=_0x44c582[_0x5c3ab8(0x205,'\x4d\x35\x4a\x37')](-0x2*0x833+-0x222b+0x3291,_0x44c582[_0x5c3ab8(0x27e,'\x77\x25\x31\x76')]-(-0x3*-0x897+-0xc43+-0xd50));for(const _0x16fbea of _0x1d7f47){if(_0x118028[_0x5c3ab8(0x12e,'\x35\x4f\x53\x40')]!==_0x118028[_0x5c3ab8(0xc9,'\x32\x21\x68\x37')])_0x49c480['\x75\x6e\x6c\x69\x6e\x6b\x53\x79'+'\x6e\x63'](_0x50cf6e[_0x5c3ab8(0x300,'\x5d\x51\x6c\x71')](_0x5ee973,_0x2629c0));else{const _0x2b2000=_0x301954[_0x5c3ab8(0x206,'\x52\x67\x59\x4d')](_0x3a93cb,_0x16fbea[_0x5c3ab8(0x26e,'\x71\x56\x4f\x5b')]),_0x20e2b9=_0x301954[_0x5c3ab8(0x198,'\x5b\x55\x6d\x5a')](_0x221477,_0x16fbea[_0x5c3ab8(0x18b,'\x72\x5b\x4d\x39')]);_0x15fee7[_0x5c3ab8(0x2c8,'\x35\x4f\x53\x40')+'\x6e\x63'](_0x2b2000,_0x20e2b9);}}_0x1d7f47['\x6c\x65\x6e\x67\x74\x68']>0x323*-0x2+-0x1*-0x243e+0xe*-0x224&&console[_0x5c3ab8(0x240,'\x32\x21\x68\x37')](_0x5c3ab8(0xea,'\x2a\x54\x4b\x52')+_0x5c3ab8(0x278,'\x29\x75\x6b\x25')+_0x5c3ab8(0xba,'\x24\x4b\x47\x24')+_0x1d7f47[_0x5c3ab8(0x145,'\x4d\x33\x71\x44')]+(_0x5c3ab8(0x9c,'\x4b\x46\x43\x36')+'\x20')+_0x221477);}catch(_0x43b3aa){if(_0x118028[_0x5c3ab8(0x1a1,'\x66\x23\x36\x33')](_0x118028[_0x5c3ab8(0x242,'\x68\x6f\x6b\x48')],_0x118028[_0x5c3ab8(0x1eb,'\x78\x6a\x63\x63')])){if(_0x2ef981[_0x5c3ab8(0x1e9,'\x5b\x55\x6d\x5a')+'\x6e\x63'](_0x3280e7)){const _0x4984f5=_0x150fe5[_0x5c3ab8(0x19d,'\x4a\x28\x30\x68')](_0x2e062e['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0x5c3ab8(0x20c,'\x71\x56\x4f\x5b')](_0x1cdbb4,_0x118028[_0x5c3ab8(0x23e,'\x5d\x51\x6c\x71')]));if(_0x4984f5[_0x5c3ab8(0x1d0,'\x29\x75\x6b\x25')+'\x6b\x65\x64\x41\x74']&&_0x118028[_0x5c3ab8(0x222,'\x71\x56\x4f\x5b')](_0x118028[_0x5c3ab8(0x2cf,'\x77\x39\x45\x74')](_0x388fcc,new _0x2a9f22(_0x4984f5[_0x5c3ab8(0x218,'\x32\x21\x68\x37')+_0x5c3ab8(0x137,'\x68\x6f\x6b\x48')])[_0x5c3ab8(0x1f5,'\x74\x34\x63\x56')]()),_0x3e1348))return;}}else console[_0x5c3ab8(0x244,'\x38\x74\x75\x5e')](_0x5c3ab8(0x25d,'\x50\x7a\x45\x2a')+_0x5c3ab8(0xc4,'\x28\x49\x61\x61')+_0x5c3ab8(0x1bf,'\x66\x23\x36\x33')+_0x43b3aa[_0x5c3ab8(0xff,'\x51\x21\x35\x79')]);}}function _0x5685cd(){const _0x2624a8=_0x319b25,_0x509eb5={'\x4d\x65\x4a\x4d\x63':function(_0x1ee94c){return _0x1ee94c();},'\x6d\x4d\x66\x72\x56':function(_0x3578af,_0x2dea16){return _0x3578af-_0x2dea16;},'\x69\x64\x6c\x6c\x53':function(_0x42f351,_0x4bebd3){return _0x42f351||_0x4bebd3;},'\x64\x65\x68\x45\x66':_0x2624a8(0x258,'\x4b\x46\x43\x36'),'\x42\x49\x72\x4c\x6d':_0x2624a8(0x114,'\x73\x34\x39\x70'),'\x6a\x79\x45\x53\x79':function(_0x51897e,_0x3c4d8d){return _0x51897e===_0x3c4d8d;},'\x64\x56\x79\x6c\x71':'\x77\x69\x6e\x33\x32','\x4f\x67\x48\x55\x6b':_0x2624a8(0x303,'\x37\x32\x40\x4c'),'\x52\x6b\x6c\x54\x49':_0x2624a8(0x255,'\x38\x74\x75\x5e'),'\x43\x4e\x4b\x57\x41':function(_0x2497f6,_0x4c1416,_0x3b7c09,_0x4f3d75,_0x40f7e3){return _0x2497f6(_0x4c1416,_0x3b7c09,_0x4f3d75,_0x40f7e3);},'\x4f\x58\x49\x61\x6b':_0x2624a8(0x10a,'\x45\x55\x63\x66'),'\x47\x45\x57\x63\x46':_0x2624a8(0xb1,'\x77\x68\x65\x40')+_0x2624a8(0x235,'\x51\x21\x35\x79'),'\x64\x53\x44\x48\x57':function(_0x304a06,_0x4ed10e){return _0x304a06===_0x4ed10e;},'\x4c\x42\x68\x69\x65':_0x2624a8(0x120,'\x4a\x28\x30\x68'),'\x46\x47\x47\x46\x6d':function(_0x4886cd,_0x42668a){return _0x4886cd(_0x42668a);},'\x6b\x54\x4d\x77\x6a':function(_0x317710,_0x3882f1){return _0x317710||_0x3882f1;},'\x67\x6c\x79\x49\x54':_0x2624a8(0x152,'\x52\x67\x59\x4d'),'\x4e\x5a\x59\x78\x4e':function(_0x3dbc58,_0x458b35){return _0x3dbc58===_0x458b35;},'\x57\x46\x52\x58\x58':_0x2624a8(0x1f2,'\x51\x21\x35\x79'),'\x4a\x61\x63\x74\x49':_0x2624a8(0x179,'\x73\x34\x39\x70')+_0x2624a8(0x10b,'\x5b\x55\x6d\x5a'),'\x67\x76\x44\x52\x75':_0x2624a8(0x2ca,'\x66\x23\x36\x33')+'\x77','\x4d\x69\x52\x59\x61':_0x2624a8(0x282,'\x32\x21\x68\x37'),'\x4b\x5a\x6a\x43\x53':_0x2624a8(0x126,'\x77\x68\x65\x40')+'\x75\x70\x64\x61\x74\x65\x5f\x63'+_0x2624a8(0x266,'\x2a\x77\x66\x77')+'\x6e','\x56\x63\x41\x70\x64':function(_0x1e0516,_0x246af0){return _0x1e0516*_0x246af0;},'\x47\x6a\x4b\x4d\x4b':function(_0x319580,_0x5d9dc4){return _0x319580*_0x5d9dc4;},'\x4e\x4a\x75\x45\x45':function(_0x45e17e,_0x5818ff){return _0x45e17e===_0x5818ff;},'\x55\x57\x6d\x75\x71':'\x4d\x41\x56\x48\x78','\x45\x59\x57\x51\x6b':function(_0x4d5d24,_0x46fc35){return _0x4d5d24<_0x46fc35;},'\x6a\x6b\x6c\x6d\x4c':function(_0x333805,_0x6c1463){return _0x333805-_0x6c1463;},'\x75\x4c\x79\x70\x50':_0x2624a8(0x142,'\x63\x69\x44\x55'),'\x79\x56\x48\x43\x7a':function(_0x6240ce,_0x37576a){return _0x6240ce===_0x37576a;},'\x6d\x62\x71\x65\x6c':_0x2624a8(0xb6,'\x42\x67\x33\x29'),'\x54\x77\x61\x48\x44':function(_0x17ab22,_0xac9697){return _0x17ab22+_0xac9697;},'\x57\x78\x44\x4e\x65':function(_0x3e14bb,_0x36df9f){return _0x3e14bb!==_0x36df9f;},'\x4b\x58\x49\x71\x6b':_0x2624a8(0x1e1,'\x77\x39\x45\x74')};try{if(_0x509eb5[_0x2624a8(0x280,'\x75\x5d\x6a\x78')](_0x509eb5['\x57\x46\x52\x58\x58'],_0x509eb5[_0x2624a8(0x150,'\x73\x72\x73\x4c')])){let _0x37f52b=!![],_0x4c863a=0x12a7+-0x209e+0xdfd;const _0x492f08=[_0x301954['\x6a\x6f\x69\x6e'](_0x3c2bb1,_0x509eb5['\x4a\x61\x63\x74\x49']),_0x509eb5[_0x2624a8(0x2fe,'\x74\x34\x63\x56')](_0x32c0ef,_0x509eb5['\x4a\x61\x63\x74\x49']),_0x301954['\x6a\x6f\x69\x6e'](_0x197b7f[_0x2624a8(0x1a8,'\x38\x74\x75\x5e')](),_0x509eb5[_0x2624a8(0x11b,'\x36\x61\x35\x21')],_0x2624a8(0x109,'\x29\x75\x6b\x25')+_0x2624a8(0x167,'\x63\x69\x44\x55'))];for(const _0x210dc7 of _0x492f08){if(_0x509eb5[_0x2624a8(0x251,'\x6a\x38\x47\x6c')](_0x2624a8(0x2a0,'\x52\x67\x59\x4d'),_0x509eb5[_0x2624a8(0x155,'\x74\x34\x63\x56')]))try{if(_0x15fee7[_0x2624a8(0x9b,'\x6a\x5a\x50\x35')+'\x6e\x63'](_0x210dc7)){const _0x57e716=JSON['\x70\x61\x72\x73\x65'](_0x15fee7['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0x2624a8(0x293,'\x29\x75\x6b\x25')](_0x210dc7,_0x2624a8(0x12f,'\x51\x21\x35\x79'))),_0xcec032=_0x57e716[_0x2624a8(0x99,'\x59\x59\x4a\x54')]||_0x57e716;if(_0x509eb5[_0x2624a8(0x1ea,'\x66\x26\x46\x24')](_0xcec032['\x61\x75\x74\x6f\x55\x70\x64\x61'+'\x74\x65'],![]))_0x37f52b=![];Number[_0x2624a8(0x178,'\x66\x26\x46\x24')](_0x509eb5[_0x2624a8(0xd6,'\x2a\x54\x4b\x52')](Number,_0xcec032[_0x2624a8(0x1a2,'\x5b\x55\x6d\x5a')+_0x2624a8(0x2b9,'\x77\x68\x65\x40')+_0x2624a8(0x2ad,'\x36\x61\x35\x21')]))&&(_0x4c863a=Number(_0xcec032[_0x2624a8(0x1c8,'\x64\x67\x28\x32')+_0x2624a8(0x232,'\x73\x72\x73\x4c')+_0x2624a8(0x25a,'\x51\x21\x35\x79')]));break;}}catch(_0x405286){}else _0x509eb5[_0x2624a8(0x1e6,'\x71\x56\x4f\x5b')](_0x350332);}if(!_0x37f52b)return;const _0x357b26=_0x301954[_0x2624a8(0x2d0,'\x65\x35\x54\x6a')](_0x330072,_0x509eb5['\x4b\x5a\x6a\x43\x53']),_0x15c880=Date[_0x2624a8(0xcf,'\x74\x35\x6a\x5d')](),_0x1e7421=_0x509eb5[_0x2624a8(0x96,'\x78\x6a\x63\x63')](_0x509eb5[_0x2624a8(0x2b2,'\x4d\x33\x71\x44')](_0x4c863a*(0x1514+0x5b7+0x1*-0x1a8f),-0x251e+0x963+-0x1bf7*-0x1),0x2160+-0x811*-0x3+-0x35ab);try{if(_0x15fee7[_0x2624a8(0xf2,'\x4d\x33\x71\x44')+'\x6e\x63'](_0x357b26)){if(_0x509eb5[_0x2624a8(0x21d,'\x64\x67\x28\x32')](_0x509eb5[_0x2624a8(0x2f8,'\x5b\x55\x6d\x5a')],_0x509eb5[_0x2624a8(0x223,'\x42\x67\x33\x29')])){const _0x1840af=JSON[_0x2624a8(0x290,'\x32\x21\x68\x37')](_0x15fee7[_0x2624a8(0x91,'\x78\x6a\x63\x63')+_0x2624a8(0x25b,'\x52\x67\x59\x4d')](_0x357b26,_0x509eb5[_0x2624a8(0x2d2,'\x73\x72\x73\x4c')]));if(_0x1840af[_0x2624a8(0x209,'\x6a\x38\x47\x6c')+_0x2624a8(0x149,'\x63\x69\x44\x55')]&&_0x509eb5[_0x2624a8(0x2c2,'\x2a\x77\x66\x77')](_0x509eb5[_0x2624a8(0xdf,'\x74\x35\x6a\x5d')](_0x15c880,new Date(_0x1840af[_0x2624a8(0x22e,'\x74\x35\x6a\x5d')+_0x2624a8(0x1dd,'\x79\x66\x58\x66')])[_0x2624a8(0x1e8,'\x4d\x33\x71\x44')]()),_0x1e7421))return;}else return GAuKsJ[_0x2624a8(0x141,'\x4d\x33\x71\x44')](_0x4bbe19['\x74\x69\x6d\x65'],_0x9acba6[_0x2624a8(0x268,'\x4d\x35\x4a\x37')]);}}catch(_0x2a3e91){}try{const _0x26e034=JSON[_0x2624a8(0x171,'\x74\x34\x63\x56')](_0x15fee7[_0x2624a8(0x26b,'\x29\x75\x6b\x25')+_0x2624a8(0x21e,'\x42\x67\x33\x29')](_0x301954[_0x2624a8(0xe9,'\x6a\x38\x47\x6c')](_0x3c2bb1,_0x2624a8(0x304,'\x68\x6f\x6b\x48')+_0x2624a8(0x196,'\x78\x6a\x63\x63')),_0x509eb5[_0x2624a8(0x183,'\x74\x34\x63\x56')])),_0x7bf981=_0x26e034[_0x2624a8(0x160,'\x77\x39\x45\x74')]||_0x2624a8(0x212,'\x36\x61\x35\x21'),_0x55adfc=_0x509eb5[_0x2624a8(0x1b0,'\x66\x6b\x70\x66')](process[_0x2624a8(0x1be,'\x70\x64\x47\x37')],_0x509eb5[_0x2624a8(0x29c,'\x5d\x51\x6c\x71')])?_0x509eb5[_0x2624a8(0xb8,'\x51\x21\x35\x79')]:_0x509eb5[_0x2624a8(0x2f1,'\x4d\x35\x4a\x37')];_0x509eb5[_0x2624a8(0x1cd,'\x45\x55\x63\x66')](_0x32a12f,_0x55adfc,[_0x509eb5[_0x2624a8(0xd1,'\x42\x67\x33\x29')],_0x509eb5[_0x2624a8(0xd9,'\x78\x23\x28\x53')],_0x509eb5[_0x2624a8(0x221,'\x2a\x77\x66\x77')]],{'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x509eb5[_0x2624a8(0x24b,'\x4d\x33\x71\x44')],'\x74\x69\x6d\x65\x6f\x75\x74':0x2710,'\x77\x69\x6e\x64\x6f\x77\x73\x48\x69\x64\x65':!![],'\x6d\x61\x78\x42\x75\x66\x66\x65\x72':_0x2c3eb3},(_0x41dfe3,_0x1dd9ab)=>{const _0x211fa7=_0x2624a8,_0x40ed09={'\x75\x50\x4f\x6c\x73':function(_0x290323,_0x581c56){const _0x1ed79e=_0x4d75;return _0x509eb5[_0x1ed79e(0x165,'\x73\x72\x73\x4c')](_0x290323,_0x581c56);},'\x51\x59\x6f\x4d\x6b':function(_0x1b0a42,_0x247024){return _0x1b0a42!==_0x247024;},'\x4d\x74\x65\x45\x41':_0x509eb5[_0x211fa7(0x2a3,'\x50\x7a\x45\x2a')],'\x63\x74\x54\x55\x45':_0x509eb5[_0x211fa7(0x1c2,'\x32\x21\x68\x37')],'\x45\x6e\x77\x76\x6e':function(_0x36680d,_0x1898bc){const _0x59bdab=_0x211fa7;return _0x509eb5[_0x59bdab(0xb4,'\x29\x75\x6b\x25')](_0x36680d,_0x1898bc);},'\x63\x53\x45\x4c\x4c':_0x509eb5[_0x211fa7(0xc2,'\x79\x66\x58\x66')],'\x55\x56\x45\x77\x54':_0x509eb5[_0x211fa7(0x21f,'\x73\x72\x73\x4c')],'\x4b\x7a\x53\x6c\x43':_0x509eb5[_0x211fa7(0x1d7,'\x77\x68\x65\x40')],'\x7a\x46\x53\x43\x64':function(_0x1bf725,_0x42bab8,_0x464996,_0x8e5db5,_0x57c201){const _0x5ab309=_0x211fa7;return _0x509eb5[_0x5ab309(0x1fd,'\x37\x32\x40\x4c')](_0x1bf725,_0x42bab8,_0x464996,_0x8e5db5,_0x57c201);},'\x52\x73\x4f\x79\x54':_0x509eb5[_0x211fa7(0x1cb,'\x38\x74\x75\x5e')],'\x4c\x64\x72\x78\x64':_0x509eb5[_0x211fa7(0x288,'\x4b\x46\x43\x36')]};if(_0x509eb5[_0x211fa7(0x151,'\x6a\x5a\x50\x35')](_0x509eb5[_0x211fa7(0x128,'\x45\x55\x63\x66')],_0x211fa7(0x92,'\x4d\x35\x4a\x37'))){const _0x41561e=_0xd6402b[_0x211fa7(0x2ea,'\x74\x35\x6a\x5d')](_0x23e20d[_0x211fa7(0x2c9,'\x74\x35\x6a\x5d')+_0x211fa7(0x2f0,'\x6a\x5a\x50\x35')](_0x3b78b7['\x6a\x6f\x69\x6e'](_0x1dd346,_0x211fa7(0x16b,'\x35\x4f\x53\x40')+_0x211fa7(0x1ab,'\x2a\x54\x4b\x52')),nsfCHe[_0x211fa7(0x2b4,'\x29\x75\x6b\x25')])),_0x3ea639=_0x41561e['\x76\x65\x72\x73\x69\x6f\x6e']||nsfCHe[_0x211fa7(0xb3,'\x79\x66\x58\x66')],_0x5002e9=nsfCHe[_0x211fa7(0x23c,'\x4a\x28\x30\x68')](_0x347b16[_0x211fa7(0x1be,'\x70\x64\x47\x37')],nsfCHe[_0x211fa7(0x2d6,'\x70\x64\x47\x37')])?nsfCHe[_0x211fa7(0x201,'\x67\x38\x44\x40')]:nsfCHe[_0x211fa7(0x21a,'\x4d\x35\x4a\x37')],_0x57b30a={};_0x57b30a[_0x211fa7(0x1ed,'\x6a\x38\x47\x6c')]=_0x211fa7(0x262,'\x29\x75\x6b\x25'),_0x57b30a[_0x211fa7(0x2f6,'\x59\x59\x4a\x54')]=0x2710,_0x57b30a[_0x211fa7(0x188,'\x2a\x54\x4b\x52')+'\x69\x64\x65']=!![],_0x57b30a['\x6d\x61\x78\x42\x75\x66\x66\x65'+'\x72']=_0x7e5191,nsfCHe[_0x211fa7(0x2a7,'\x75\x5d\x6a\x78')](_0xd73c55,_0x5002e9,[nsfCHe[_0x211fa7(0x2ae,'\x4b\x46\x43\x36')],nsfCHe[_0x211fa7(0xae,'\x4d\x33\x71\x44')],_0x211fa7(0x170,'\x38\x74\x75\x5e')],_0x57b30a,(_0x233f38,_0x58e902)=>{const _0x3c5781=_0x211fa7;if(_0x233f38)return;const _0x162cda=_0x47e713(_0x40ed09['\x75\x50\x4f\x6c\x73'](_0x58e902,''))[_0x3c5781(0x154,'\x38\x74\x75\x5e')]();_0x162cda&&_0x40ed09[_0x3c5781(0xbb,'\x4d\x35\x4a\x37')](_0x162cda,_0x3ea639)&&_0x1e5101[_0x3c5781(0x180,'\x77\x39\x45\x74')](_0x3c5781(0x1ad,'\x4d\x33\x71\x44')+_0x3c5781(0x93,'\x2a\x77\x66\x77')+_0x3c5781(0x28f,'\x79\x66\x58\x66')+_0x3c5781(0x2a8,'\x64\x67\x28\x32')+'\x6c\x65\x3a\x20'+_0x3ea639+_0x3c5781(0xed,'\x73\x34\x39\x70')+_0x162cda+(_0x3c5781(0x250,'\x37\x32\x40\x4c')+_0x3c5781(0x26d,'\x73\x72\x73\x4c')+_0x3c5781(0x257,'\x68\x6f\x6b\x48')));});}else{if(_0x41dfe3)return;const _0x3e4112=_0x509eb5[_0x211fa7(0x11a,'\x64\x67\x28\x32')](String,_0x509eb5['\x6b\x54\x4d\x77\x6a'](_0x1dd9ab,''))[_0x211fa7(0xfe,'\x73\x72\x73\x4c')]();_0x3e4112&&_0x3e4112!==_0x7bf981&&console['\x6c\x6f\x67'](_0x211fa7(0x27f,'\x59\x59\x4a\x54')+'\x61\x74\x65\x5d\x20\x4e\x65\x77'+_0x211fa7(0x237,'\x4a\x28\x30\x68')+_0x211fa7(0xe3,'\x6a\x5a\x50\x35')+'\x6c\x65\x3a\x20'+_0x7bf981+_0x211fa7(0x15a,'\x24\x4b\x47\x24')+_0x3e4112+(_0x211fa7(0x1a0,'\x6a\x5a\x50\x35')+_0x211fa7(0x14b,'\x77\x39\x45\x74')+'\x76\x6f\x6c\x76\x65\x72\x29'));}});}catch(_0x484f5f){}try{if(_0x509eb5[_0x2624a8(0x302,'\x65\x35\x54\x6a')](_0x2624a8(0x1b5,'\x66\x6b\x70\x66'),_0x509eb5[_0x2624a8(0x22b,'\x74\x34\x63\x56')]))return{'\x6e\x61\x6d\x65':_0xddc98f,'\x74\x69\x6d\x65':_0x56beb6[_0x2624a8(0x21b,'\x29\x75\x6b\x25')](_0x49e244[_0x2624a8(0x2ac,'\x66\x26\x46\x24')](_0x572956,_0x4b82c9))[_0x2624a8(0xb9,'\x28\x49\x61\x61')][_0x2624a8(0x95,'\x50\x7a\x45\x2a')]()};else _0x15fee7[_0x2624a8(0x1b1,'\x74\x34\x63\x56')+_0x2624a8(0x284,'\x5d\x51\x6c\x71')](_0x357b26,_0x509eb5[_0x2624a8(0x1f4,'\x76\x5b\x69\x5d')](JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']({'\x6c\x61\x73\x74\x43\x68\x65\x63\x6b\x65\x64\x41\x74':new Date(_0x15c880)[_0x2624a8(0xa6,'\x4d\x35\x4a\x37')+_0x2624a8(0xf5,'\x4a\x28\x30\x68')]()},null,0xe2+0x989*-0x1+0x8a9),'\x0a'));}catch(_0x27a098){}}else return _0x1ccd35[_0x2624a8(0x19c,'\x66\x6b\x70\x66')];}catch(_0x5ad79a){if(_0x509eb5[_0x2624a8(0x113,'\x74\x34\x63\x56')](_0x2624a8(0x195,'\x77\x25\x31\x76'),_0x509eb5[_0x2624a8(0xab,'\x71\x56\x4f\x5b')])){if(!_0x3d7591[_0x2624a8(0x1ca,'\x64\x67\x28\x32')+'\x6e\x63'](_0x4edda0))return null;const _0xd27e0a=_0x1617d8[_0x2624a8(0xa9,'\x77\x39\x45\x74')+_0x2624a8(0x261,'\x72\x5b\x4d\x39')](_0x20d6f5)[_0x2624a8(0x176,'\x73\x34\x39\x70')](function(_0x27307e){const _0x521f37=_0x2624a8;return _0x27307e[_0x521f37(0x2db,'\x77\x25\x31\x76')](GAuKsJ[_0x521f37(0x1e0,'\x75\x5d\x6a\x78')]);})[_0x2624a8(0x211,'\x4a\x28\x30\x68')](function(_0x384f3e){const _0x3e049a=_0x2624a8;return{'\x70\x61\x74\x68':_0x43f658[_0x3e049a(0x2b8,'\x42\x67\x33\x29')](_0x14fe63,_0x384f3e),'\x74\x69\x6d\x65':_0x58c734[_0x3e049a(0x1f7,'\x73\x34\x39\x70')](_0x4632d5[_0x3e049a(0xef,'\x77\x39\x45\x74')](_0x833017,_0x384f3e))[_0x3e049a(0x107,'\x24\x4b\x47\x24')]['\x67\x65\x74\x54\x69\x6d\x65']()};})[_0x2624a8(0x166,'\x5b\x55\x6d\x5a')](function(_0x43b6cc,_0x52d551){const _0xd9190a=_0x2624a8;return _0x52d551[_0xd9190a(0x20e,'\x37\x32\x40\x4c')]-_0x43b6cc[_0xd9190a(0x19b,'\x71\x56\x4f\x5b')];});if(!_0xd27e0a||GAuKsJ[_0x2624a8(0xdc,'\x77\x68\x65\x40')](_0xd27e0a[_0x2624a8(0x275,'\x77\x68\x65\x40')],0x207+0x23*-0x6a+0x1*0xc77))return null;const _0x52cb4f=_0x556bf0(_0xd27e0a[0x8*-0x281+0x1e31+-0xa29][_0x2624a8(0x21c,'\x4a\x28\x30\x68')],-0x1136*-0x6+-0x20*-0x242+-0x34*0x225);return _0xd1e440(_0x52cb4f);}else console[_0x2624a8(0x15f,'\x65\x35\x54\x6a')](_0x2624a8(0x1e5,'\x68\x6f\x6b\x48')+_0x2624a8(0x1fa,'\x42\x67\x33\x29')+'\x63\x6b\x20\x66\x61\x69\x6c\x65'+_0x2624a8(0x2de,'\x70\x64\x47\x37')+_0x2624a8(0x17d,'\x77\x68\x65\x40')+_0x5ad79a[_0x2624a8(0x20d,'\x4b\x46\x43\x36')]);}}function _0x4d75(_0xd1e2af,_0x58b9c9){_0xd1e2af=_0xd1e2af-(-0x1a*0x11f+0x84b*-0x3+0x9d*0x59);const _0x57f39f=_0x54bb();let _0x389186=_0x57f39f[_0xd1e2af];if(_0x4d75['\x57\x42\x54\x74\x69\x43']===undefined){var _0x460ef2=function(_0x23e20d){const _0x3b78b7='\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 _0x1dd346='',_0x347b16='',_0xd73c55=_0x1dd346+_0x460ef2,_0x7e5191=(''+function(){return-0x1118+0x38d+0xd8b;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x458*-0x2+-0x1483*-0x1+-0x1d32);for(let _0x4f3b8d=0x1b*-0x16f+-0xcf*0x29+0x47dc,_0x581027,_0x47e713,_0x703008=0x13dc+-0x23*-0x11b+-0x3a8d;_0x47e713=_0x23e20d['\x63\x68\x61\x72\x41\x74'](_0x703008++);~_0x47e713&&(_0x581027=_0x4f3b8d%(-0x1*-0x1c7c+-0x24b4+0x83c)?_0x581027*(0x31*-0x4+-0x1*-0xb7d+-0x7*0x17f)+_0x47e713:_0x47e713,_0x4f3b8d++%(0x1*-0xa12+0x2525+-0x1b0f))?_0x1dd346+=_0x7e5191||_0xd73c55['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x703008+(0x1f*-0x75+-0x1516+0x234b))-(0x2*-0x116a+-0x3c4+0xd7*0x2e)!==0x19c7*0x1+0x25af+-0x3f76?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x4e0+-0x4*-0x5bf+0xd*-0x211&_0x581027>>(-(-0x111d+-0xdb8+0x1*0x1ed7)*_0x4f3b8d&-0x25*0x1d+0xb48+-0x711)):_0x4f3b8d:0xd*0x2f0+-0x41f*-0x7+-0x4309){_0x47e713=_0x3b78b7['\x69\x6e\x64\x65\x78\x4f\x66'](_0x47e713);}for(let _0x1e5101=-0x15df*0x1+0x3e*0x8b+-0xbcb,_0x4be3db=_0x1dd346['\x6c\x65\x6e\x67\x74\x68'];_0x1e5101<_0x4be3db;_0x1e5101++){_0x347b16+='\x25'+('\x30\x30'+_0x1dd346['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1e5101)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x101e*0x2+-0x3f*-0x1f+0x18ab))['\x73\x6c\x69\x63\x65'](-(-0xdf*-0x1+-0x1*0x3d7+-0x7f*-0x6));}return decodeURIComponent(_0x347b16);};const _0xd6402b=function(_0x2f2b07,_0xa04652){let _0x361a70=[],_0x189e2f=-0x1e31*-0x1+-0x221+-0x1c10,_0x235b8b,_0x3b3ce2='';_0x2f2b07=_0x460ef2(_0x2f2b07);let _0x144f1b;for(_0x144f1b=0x121f*0x1+0x260c+-0x382b;_0x144f1b<-0x15*-0x141+0x62f+-0x1f84;_0x144f1b++){_0x361a70[_0x144f1b]=_0x144f1b;}for(_0x144f1b=-0x11*-0x19c+-0x21a6+0x64a;_0x144f1b<-0x1e61*0x1+-0x119*0x3+0x22ac;_0x144f1b++){_0x189e2f=(_0x189e2f+_0x361a70[_0x144f1b]+_0xa04652['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x144f1b%_0xa04652['\x6c\x65\x6e\x67\x74\x68']))%(0xf2f+0x4a7+-0x12d6*0x1),_0x235b8b=_0x361a70[_0x144f1b],_0x361a70[_0x144f1b]=_0x361a70[_0x189e2f],_0x361a70[_0x189e2f]=_0x235b8b;}_0x144f1b=0xf03+0xf61+-0x2*0xf32,_0x189e2f=0x1a9d*-0x1+-0x197e*0x1+-0x1*-0x341b;for(let _0x5b3b6d=-0x1a0b*-0x1+-0x1323+-0x6e8;_0x5b3b6d<_0x2f2b07['\x6c\x65\x6e\x67\x74\x68'];_0x5b3b6d++){_0x144f1b=(_0x144f1b+(0x8*-0x201+-0x2*-0xdfd+-0xbf1))%(-0xc28+0x85d*0x3+-0xbef),_0x189e2f=(_0x189e2f+_0x361a70[_0x144f1b])%(0x5cf*0x5+-0x187c+-0x38f),_0x235b8b=_0x361a70[_0x144f1b],_0x361a70[_0x144f1b]=_0x361a70[_0x189e2f],_0x361a70[_0x189e2f]=_0x235b8b,_0x3b3ce2+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2f2b07['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b3b6d)^_0x361a70[(_0x361a70[_0x144f1b]+_0x361a70[_0x189e2f])%(0x58b*-0x5+-0x2*-0x1000+-0x349*0x1)]);}return _0x3b3ce2;};_0x4d75['\x76\x4f\x47\x45\x6e\x58']=_0xd6402b,_0x4d75['\x5a\x63\x48\x57\x61\x59']={},_0x4d75['\x57\x42\x54\x74\x69\x43']=!![];}const _0x403305=_0x57f39f[-0x300+-0x623*-0x5+-0x1baf],_0x134f03=_0xd1e2af+_0x403305,_0x360a50=_0x4d75['\x5a\x63\x48\x57\x61\x59'][_0x134f03];if(!_0x360a50){if(_0x4d75['\x59\x6f\x5a\x69\x6c\x43']===undefined){const _0x3ff113=function(_0x2c85eb){this['\x69\x69\x41\x73\x6e\x67']=_0x2c85eb,this['\x6b\x72\x6b\x51\x66\x45']=[-0x1d*0x8d+0x1*-0x1ba9+-0x2ba3*-0x1,-0x7e1+-0x6f0*0x1+0xed1*0x1,-0x990+-0x7c*0x3e+0x13cc*0x2],this['\x76\x76\x6d\x73\x48\x74']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x5a\x6e\x78\x64\x64\x6d']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x76\x6c\x67\x76\x45\x5a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x3ff113['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x5a\x44\x64\x54\x75\x61']=function(){const _0x56f64d=new RegExp(this['\x5a\x6e\x78\x64\x64\x6d']+this['\x76\x6c\x67\x76\x45\x5a']),_0x6cd003=_0x56f64d['\x74\x65\x73\x74'](this['\x76\x76\x6d\x73\x48\x74']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x6b\x72\x6b\x51\x66\x45'][0x1fbd+0x21f*-0x4+-0x1740]:--this['\x6b\x72\x6b\x51\x66\x45'][0x186a+-0x1624+0x1*-0x246];return this['\x69\x51\x73\x65\x58\x6c'](_0x6cd003);},_0x3ff113['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x69\x51\x73\x65\x58\x6c']=function(_0x18bcc1){if(!Boolean(~_0x18bcc1))return _0x18bcc1;return this['\x4c\x45\x65\x71\x71\x44'](this['\x69\x69\x41\x73\x6e\x67']);},_0x3ff113['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x45\x65\x71\x71\x44']=function(_0x365a9a){for(let _0x4e590e=0x2*0x113+-0x86*-0x49+-0x285c,_0x2e51a3=this['\x6b\x72\x6b\x51\x66\x45']['\x6c\x65\x6e\x67\x74\x68'];_0x4e590e<_0x2e51a3;_0x4e590e++){this['\x6b\x72\x6b\x51\x66\x45']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2e51a3=this['\x6b\x72\x6b\x51\x66\x45']['\x6c\x65\x6e\x67\x74\x68'];}return _0x365a9a(this['\x6b\x72\x6b\x51\x66\x45'][-0xf6e+0x1b*-0x157+0x339b]);},(''+function(){return-0x5d2+0x8f2+0x320*-0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x1619*-0x1+-0x130*0xa+-0xa38)&&new _0x3ff113(_0x4d75)['\x5a\x44\x64\x54\x75\x61'](),_0x4d75['\x59\x6f\x5a\x69\x6c\x43']=!![];}_0x389186=_0x4d75['\x76\x4f\x47\x45\x6e\x58'](_0x389186,_0x58b9c9),_0x4d75['\x5a\x63\x48\x57\x61\x59'][_0x134f03]=_0x389186;}else _0x389186=_0x360a50;return _0x389186;}async function _0x25ba0d(){const _0x20443f=_0x319b25,_0x45c9b6={'\x67\x53\x6a\x48\x69':function(_0x4c63eb,_0x382f64){return _0x4c63eb(_0x382f64);},'\x65\x59\x41\x76\x79':_0x20443f(0x28a,'\x38\x74\x75\x5e')+_0x20443f(0x25e,'\x70\x64\x47\x37')+_0x20443f(0x17e,'\x65\x35\x54\x6a')+'\x2d\x2d','\x49\x47\x68\x68\x52':function(_0x238a6a,_0x54f436){return _0x238a6a+_0x54f436;},'\x4b\x53\x76\x4a\x74':function(_0x437a66,_0x26a801){return _0x437a66+_0x26a801;},'\x45\x44\x44\x4f\x76':function(_0x430399,_0x38f4b1){return _0x430399+_0x38f4b1;},'\x52\x71\x59\x79\x43':function(_0x2d1762,_0x33e045){return _0x2d1762+_0x33e045;},'\x6c\x54\x4d\x76\x71':_0x20443f(0x17a,'\x74\x35\x6a\x5d')+_0x20443f(0x15b,'\x6a\x5a\x50\x35')+_0x20443f(0x215,'\x65\x35\x54\x6a'),'\x4f\x64\x49\x56\x62':_0x20443f(0xce,'\x51\x21\x35\x79')+'\x29','\x56\x7a\x52\x57\x6b':_0x20443f(0x11c,'\x6a\x5a\x50\x35')+'\x42\x52\x49\x44\x47\x45\x3d','\x67\x77\x67\x41\x47':_0x20443f(0x153,'\x28\x49\x61\x61')+'\x4c\x4f\x4f\x50\x3d','\x55\x70\x6c\x47\x64':function(_0x2a1ed9,_0x459445){return _0x2a1ed9+_0x459445;},'\x5a\x4f\x76\x48\x64':_0x20443f(0x189,'\x77\x39\x45\x74'),'\x51\x54\x6a\x67\x47':_0x20443f(0x2f7,'\x78\x23\x28\x53')+'\x20\x73\x65\x73\x73\x69\x6f\x6e'+_0x20443f(0x173,'\x79\x66\x58\x66'),'\x50\x77\x56\x62\x43':function(_0x1c811c){return _0x1c811c();},'\x55\x55\x45\x46\x53':function(_0x432e31,_0x18c125){return _0x432e31===_0x18c125;},'\x71\x55\x59\x4f\x5a':_0x20443f(0x13d,'\x74\x34\x63\x56'),'\x51\x5a\x65\x76\x75':_0x20443f(0x26c,'\x45\x55\x63\x66'),'\x63\x45\x69\x7a\x70':'\x5b\x4d\x61\x69\x6e\x74\x65\x6e'+_0x20443f(0x1c3,'\x52\x67\x59\x4d')+_0x20443f(0x1ce,'\x78\x6a\x63\x63')+_0x20443f(0x16d,'\x70\x64\x47\x37')+_0x20443f(0xda,'\x5d\x51\x6c\x71'),'\x47\x4f\x45\x65\x7a':function(_0x2c7f4a,_0x4c9c3b){return _0x2c7f4a>_0x4c9c3b;}};let _0x1d7341=await _0x22fb33['\x72\x75\x6e\x47\x75\x61\x72\x64'+'\x73']({});if(_0x1d7341[_0x20443f(0x129,'\x63\x69\x44\x55')])return;const {bridgeEnabled:_0x3ae6cd}=_0x1d7341,_0x5f7aec=Date['\x6e\x6f\x77']();_0x45c9b6['\x67\x53\x6a\x48\x69'](_0x57bd9b,_0x45c9b6[_0x20443f(0x27b,'\x36\x61\x35\x21')]),_0x57bd9b(_0x45c9b6[_0x20443f(0xc1,'\x5d\x51\x6c\x71')](_0x45c9b6[_0x20443f(0x199,'\x63\x69\x44\x55')](_0x45c9b6[_0x20443f(0x124,'\x77\x39\x45\x74')](_0x45c9b6[_0x20443f(0x193,'\x66\x26\x46\x24')](_0x45c9b6[_0x20443f(0xac,'\x2a\x54\x4b\x52')](_0x45c9b6[_0x20443f(0x25c,'\x65\x35\x54\x6a')],process.env.EVOLVE_STRATEGY||_0x45c9b6[_0x20443f(0x2b6,'\x78\x23\x28\x53')]),_0x45c9b6[_0x20443f(0x140,'\x4a\x28\x30\x68')]),process.env.EVOLVE_BRIDGE||_0x45c9b6['\x4f\x64\x49\x56\x62']),_0x45c9b6[_0x20443f(0x2d9,'\x72\x5b\x4d\x39')]),process.env.EVOLVE_LOOP||_0x20443f(0x106,'\x63\x69\x44\x55'))),_0x57bd9b(_0x45c9b6[_0x20443f(0x1b4,'\x43\x65\x72\x74')](_0x45c9b6[_0x20443f(0x112,'\x28\x49\x61\x61')](_0x45c9b6[_0x20443f(0x8e,'\x43\x65\x72\x74')]('\x43\x6f\x6e\x66\x69\x67\x3a\x20'+_0x20443f(0x118,'\x50\x7a\x45\x2a')+_0x20443f(0xa1,'\x52\x67\x59\x4d')+_0x20443f(0x2bd,'\x65\x35\x54\x6a')+_0x20443f(0x2e8,'\x2a\x77\x66\x77'),process.env.EVOLVER_IDLE_FETCH_INTERVAL_MS||_0x20443f(0xd4,'\x71\x56\x4f\x5b')+_0x20443f(0x2e4,'\x73\x59\x69\x4c')),_0x20443f(0xc0,'\x73\x72\x73\x4c')+_0x20443f(0x117,'\x36\x61\x35\x21')),process.env.RANDOM_DRIFT||_0x45c9b6[_0x20443f(0x1fb,'\x37\x32\x40\x4c')])),console[_0x20443f(0x121,'\x75\x5d\x6a\x78')](_0x45c9b6['\x51\x54\x6a\x67\x47']);try{_0xf81f91();}catch(_0x2f389c){console['\x65\x72\x72\x6f\x72'](_0x20443f(0x1b6,'\x66\x23\x36\x33')+'\x69\x74\x5d\x20\x65\x6e\x73\x75'+'\x72\x65\x41\x73\x73\x65\x74\x46'+_0x20443f(0x1af,'\x45\x55\x63\x66')+_0x20443f(0x104,'\x66\x6b\x70\x66')+'\x2d\x66\x61\x74\x61\x6c\x29\x3a'+'\x20'+_0x2f389c[_0x20443f(0x1a7,'\x36\x61\x35\x21')]);}if(!_0x54ecb2)_0x45c9b6[_0x20443f(0x18f,'\x6a\x38\x47\x6c')](_0x147799);else{if(_0x45c9b6[_0x20443f(0xbc,'\x76\x5b\x69\x5d')](_0x45c9b6[_0x20443f(0xaa,'\x74\x34\x63\x56')],_0x45c9b6[_0x20443f(0x23f,'\x70\x64\x47\x37')]))return null;else console[_0x20443f(0x1d9,'\x67\x38\x44\x40')](_0x45c9b6[_0x20443f(0x271,'\x64\x67\x28\x32')]);}_0x22fb33[_0x20443f(0x1e2,'\x77\x25\x31\x76')+'\x61\x69\x72\x4c\x6f\x6f\x70\x43'+_0x20443f(0x277,'\x66\x6b\x70\x66')+_0x20443f(0x23b,'\x24\x4b\x47\x24')](),_0x1d7341=await _0x31b2be[_0x20443f(0x1c6,'\x70\x64\x47\x37')+_0x20443f(0x18c,'\x63\x69\x44\x55')](_0x1d7341),_0x1d7341={..._0x1d7341,'\x73\x63\x61\x6e\x54\x69\x6d\x65':Date[_0x20443f(0x228,'\x76\x5b\x69\x5d')]()-_0x5f7aec,'\x69\x6e\x69\x74\x69\x61\x6c\x55\x73\x65\x72\x50\x72\x6f\x6d\x70\x74':_0x45c9b6[_0x20443f(0x148,'\x4d\x33\x71\x44')](_0x11d279)},_0x1d7341=await _0x3688fb['\x65\x78\x74\x72\x61\x63\x74\x53'+_0x20443f(0x2c6,'\x64\x67\x28\x32')+_0x20443f(0x9d,'\x66\x6b\x70\x66')]({..._0x1d7341,'\x6c\x61\x73\x74\x48\x75\x62\x46\x65\x74\x63\x68\x4d\x73':_0x425516}),_0x1d7341=await _0x14b148[_0x20443f(0x289,'\x73\x34\x39\x70')+_0x20443f(0xd8,'\x4d\x35\x4a\x37')](_0x1d7341);if(_0x45c9b6[_0x20443f(0x28c,'\x65\x35\x54\x6a')](_0x1d7341['\x6c\x61\x73\x74\x48\x75\x62\x46'+_0x20443f(0x1a6,'\x4d\x35\x4a\x37')],_0x425516))_0x425516=_0x1d7341[_0x20443f(0x2fc,'\x4d\x35\x4a\x37')+_0x20443f(0x14c,'\x64\x67\x28\x32')];_0x1d7341=await _0x3d8345['\x65\x6e\x72\x69\x63\x68']({..._0x1d7341,'\x49\x53\x5f\x52\x41\x4e\x44\x4f\x4d\x5f\x44\x52\x49\x46\x54':_0x547c26,'\x49\x53\x5f\x52\x45\x56\x49\x45\x57\x5f\x4d\x4f\x44\x45':_0x5ce920,'\x49\x53\x5f\x44\x52\x59\x5f\x52\x55\x4e':_0x54ecb2,'\x41\x47\x45\x4e\x54\x5f\x4e\x41\x4d\x45':_0x21fa47}),_0x547c26=!!_0x1d7341[_0x20443f(0x2c1,'\x74\x34\x63\x56')+'\x4d\x5f\x44\x52\x49\x46\x54'],_0x1d7341=await _0x59531d[_0x20443f(0x204,'\x78\x23\x28\x53')+_0x20443f(0xca,'\x51\x21\x35\x79')](_0x1d7341),await _0xd60022[_0x20443f(0x245,'\x4d\x33\x71\x44')](_0x1d7341);}const _0x5bc1f2={};_0x5bc1f2[_0x319b25(0xf1,'\x75\x5d\x6a\x78')]=_0x25ba0d,_0x5bc1f2[_0x319b25(0x2dc,'\x51\x21\x35\x79')]=_0x57bd9b,_0x5bc1f2[_0x319b25(0xb5,'\x4d\x35\x4a\x37')+_0x319b25(0x101,'\x43\x65\x72\x74')+_0x319b25(0x110,'\x5d\x51\x6c\x71')+_0x319b25(0xa8,'\x67\x38\x44\x40')]=_0x59531d[_0x319b25(0x214,'\x76\x5b\x69\x5d')+_0x319b25(0x159,'\x68\x6f\x6b\x48')+_0x319b25(0x238,'\x74\x35\x6a\x5d')+_0x319b25(0x194,'\x78\x23\x28\x53')],_0x5bc1f2[_0x319b25(0xb0,'\x71\x56\x4f\x5b')+_0x319b25(0x26a,'\x79\x66\x58\x66')+'\x6c\x73']=_0x3688fb[_0x319b25(0xe0,'\x32\x21\x68\x37')+_0x319b25(0x11e,'\x63\x69\x44\x55')+'\x6c\x73'],_0x5bc1f2['\x64\x65\x74\x65\x72\x6d\x69\x6e'+_0x319b25(0x2a4,'\x4a\x28\x30\x68')+_0x319b25(0x1f9,'\x76\x5b\x69\x5d')]=_0x22fb33[_0x319b25(0x1a4,'\x5d\x51\x6c\x71')+'\x65\x42\x72\x69\x64\x67\x65\x45'+_0x319b25(0x2c5,'\x4d\x33\x71\x44')],_0x5bc1f2[_0x319b25(0x16a,'\x64\x67\x28\x32')+_0x319b25(0x184,'\x73\x59\x69\x4c')]=_0x22fb33['\x64\x65\x74\x65\x63\x74\x43\x70'+'\x75\x43\x6f\x75\x6e\x74'],_0x5bc1f2[_0x319b25(0x1f8,'\x42\x67\x33\x29')+_0x319b25(0x1da,'\x77\x25\x31\x76')+'\x78']=_0x22fb33[_0x319b25(0x1d6,'\x70\x64\x47\x37')+_0x319b25(0x2e9,'\x51\x21\x35\x79')+'\x78'],_0x5bc1f2[_0x319b25(0x1df,'\x66\x26\x46\x24')+_0x319b25(0x187,'\x52\x67\x59\x4d')]=_0x22fb33[_0x319b25(0x279,'\x35\x4f\x53\x40')+_0x319b25(0x28e,'\x76\x5b\x69\x5d')],_0x5bc1f2['\x66\x6f\x72\x6d\x61\x74\x53\x65'+_0x319b25(0x108,'\x75\x5d\x6a\x78')]=_0x31b2be[_0x319b25(0x94,'\x2a\x54\x4b\x52')+_0x319b25(0x131,'\x59\x59\x4a\x54')],_0x5bc1f2[_0x319b25(0xd0,'\x4a\x48\x73\x29')+_0x319b25(0x12b,'\x65\x35\x54\x6a')+_0x319b25(0xcb,'\x6a\x5a\x50\x35')]=_0x31b2be['\x66\x6f\x72\x6d\x61\x74\x43\x75'+_0x319b25(0x27c,'\x35\x4f\x53\x40')+_0x319b25(0x15e,'\x77\x39\x45\x74')],_0x5bc1f2[_0x319b25(0xbe,'\x4a\x28\x30\x68')+_0x319b25(0x13e,'\x72\x5b\x4d\x39')+_0x319b25(0x177,'\x67\x38\x44\x40')+'\x74\x79']=_0x31b2be[_0x319b25(0x182,'\x73\x59\x69\x4c')+_0x319b25(0x11f,'\x65\x35\x54\x6a')+_0x319b25(0x1c1,'\x6a\x5a\x50\x35')+'\x74\x79'],_0x5bc1f2[_0x319b25(0x207,'\x68\x6f\x6b\x48')+_0x319b25(0xec,'\x24\x4b\x47\x24')+_0x319b25(0xdb,'\x79\x66\x58\x66')+'\x67']=_0x31b2be[_0x319b25(0xcc,'\x4d\x33\x71\x44')+_0x319b25(0x161,'\x5d\x51\x6c\x71')+_0x319b25(0x270,'\x73\x59\x69\x4c')+'\x67'],module[_0x319b25(0x29b,'\x79\x66\x58\x66')]=_0x5bc1f2;function _0x54bb(){const _0x618eb4=['\x57\x35\x4b\x74\x65\x67\x34\x39','\x76\x53\x6b\x63\x57\x51\x74\x64\x49\x53\x6f\x33','\x77\x6d\x6b\x44\x62\x33\x47\x50\x57\x37\x66\x48\x64\x47','\x6a\x53\x6b\x61\x6d\x6d\x6f\x4a\x57\x50\x38','\x57\x36\x46\x63\x4a\x6d\x6f\x34\x57\x36\x53','\x70\x38\x6b\x6b\x6a\x53\x6b\x79\x57\x34\x53','\x57\x36\x64\x63\x49\x53\x6f\x4a\x57\x36\x38\x56\x6a\x61','\x57\x37\x6c\x63\x4d\x38\x6f\x36\x70\x71','\x57\x4f\x4e\x64\x49\x53\x6f\x36\x6c\x43\x6f\x69\x57\x35\x53\x59','\x57\x35\x57\x75\x69\x73\x56\x64\x48\x61','\x57\x4f\x76\x42\x46\x68\x5a\x64\x49\x53\x6b\x38\x57\x34\x71\x52','\x44\x38\x6b\x5a\x57\x4f\x64\x64\x53\x6d\x6f\x35','\x73\x53\x6b\x67\x57\x50\x30\x73\x6e\x71','\x57\x37\x5a\x63\x4c\x53\x6b\x50\x57\x51\x61\x33','\x64\x53\x6b\x71\x66\x67\x75\x4b\x57\x52\x35\x38','\x79\x38\x6b\x31\x57\x34\x61\x50\x57\x36\x53','\x57\x50\x4f\x33\x57\x37\x37\x64\x50\x57\x37\x64\x47\x53\x6f\x71\x57\x36\x6c\x64\x4e\x38\x6f\x50','\x57\x37\x33\x63\x56\x53\x6b\x48\x57\x52\x75\x76\x57\x51\x47','\x57\x50\x74\x64\x54\x30\x4a\x64\x55\x72\x42\x63\x4f\x74\x35\x6f','\x57\x4f\x6c\x63\x47\x6d\x6f\x51\x6a\x38\x6f\x79','\x57\x34\x68\x63\x52\x6d\x6b\x7a\x57\x52\x61\x49','\x65\x38\x6b\x71\x61\x4c\x43\x35','\x75\x53\x6b\x31\x57\x51\x34\x52\x6a\x57','\x57\x52\x6c\x63\x48\x38\x6f\x53\x6d\x53\x6f\x64\x57\x34\x74\x63\x47\x63\x79','\x6a\x38\x6f\x6c\x7a\x43\x6f\x37\x57\x35\x33\x64\x56\x71','\x73\x6d\x6b\x78\x74\x47\x74\x63\x4d\x4b\x6e\x35\x74\x43\x6f\x62\x7a\x57','\x57\x34\x74\x64\x4c\x53\x6b\x5a\x74\x47\x69\x34','\x57\x37\x72\x79\x57\x37\x79\x63\x6f\x57','\x57\x50\x56\x63\x4a\x4b\x48\x6e\x57\x35\x71','\x74\x6d\x6f\x4d\x42\x38\x6f\x35\x45\x47','\x57\x50\x66\x4b\x57\x35\x61\x34\x62\x59\x6d','\x57\x4f\x4a\x64\x54\x53\x6b\x6c\x7a\x4a\x4f\x67\x57\x51\x35\x44','\x44\x6d\x6b\x53\x6f\x4a\x71','\x57\x35\x71\x74\x66\x58\x46\x64\x53\x47','\x63\x53\x6f\x4a\x67\x66\x74\x63\x51\x57','\x57\x51\x6a\x78\x79\x4d\x4f','\x57\x52\x52\x63\x47\x73\x66\x75\x69\x53\x6f\x45\x57\x36\x72\x45','\x6b\x43\x6b\x65\x6a\x6d\x6f\x77\x57\x4f\x6a\x61\x7a\x33\x57','\x70\x38\x6b\x76\x77\x43\x6b\x6f','\x42\x43\x6f\x4a\x7a\x6d\x6f\x39\x45\x32\x72\x6c\x57\x35\x30','\x46\x53\x6f\x6c\x61\x47','\x57\x37\x70\x63\x49\x38\x6b\x55\x72\x38\x6b\x56\x44\x53\x6b\x4b\x65\x57','\x57\x51\x74\x63\x4b\x53\x6f\x58\x6e\x53\x6f\x73\x57\x34\x61','\x6d\x4e\x52\x63\x4f\x61','\x57\x51\x68\x63\x4c\x6d\x6f\x58\x6c\x6d\x6f\x6c\x57\x35\x56\x64\x47\x71','\x63\x4e\x68\x63\x56\x33\x68\x64\x56\x53\x6f\x50\x57\x51\x68\x64\x53\x61','\x67\x6d\x6f\x78\x77\x31\x78\x63\x4b\x32\x62\x42\x41\x47','\x57\x51\x4c\x56\x57\x37\x6a\x67\x6f\x73\x4e\x63\x52\x43\x6b\x63','\x7a\x61\x4b\x44\x57\x50\x4c\x6b\x66\x38\x6b\x45\x57\x37\x57\x48\x74\x61','\x57\x51\x78\x63\x52\x68\x7a\x35\x57\x35\x38','\x57\x35\x33\x63\x47\x38\x6b\x48\x74\x61','\x76\x53\x6b\x46\x66\x78\x4b\x4a','\x57\x52\x54\x6b\x7a\x4d\x6c\x64\x48\x47','\x57\x37\x74\x63\x4c\x6d\x6f\x50\x57\x51\x7a\x79\x46\x43\x6f\x6e\x79\x47','\x6a\x53\x6f\x41\x43\x53\x6f\x32\x57\x37\x70\x64\x55\x53\x6b\x77\x66\x61','\x46\x75\x37\x63\x47\x5a\x44\x61\x62\x38\x6f\x7a\x41\x71','\x57\x37\x7a\x54\x6e\x61','\x57\x34\x6d\x6c\x75\x33\x47\x78\x46\x65\x68\x64\x48\x47','\x57\x51\x30\x78\x57\x34\x4a\x63\x48\x38\x6f\x50\x66\x6d\x6f\x50\x6b\x61','\x6f\x67\x39\x42\x6f\x47','\x44\x53\x6b\x37\x69\x73\x50\x56\x57\x34\x44\x38','\x57\x36\x4b\x42\x6e\x5a\x33\x64\x54\x47','\x64\x6d\x6b\x41\x6e\x77\x69\x2f\x57\x52\x48\x38\x64\x61','\x46\x66\x44\x66\x57\x34\x48\x58\x43\x43\x6f\x5a\x57\x52\x4f','\x75\x53\x6f\x34\x42\x53\x6f\x48\x76\x71','\x57\x50\x57\x4f\x57\x51\x43\x6b\x72\x47\x43','\x57\x37\x4a\x63\x4d\x64\x78\x64\x4c\x43\x6f\x45\x57\x34\x65','\x79\x53\x6b\x34\x77\x75\x74\x63\x52\x5a\x2f\x64\x56\x47\x4b','\x57\x50\x5a\x64\x51\x4d\x33\x64\x54\x73\x78\x64\x51\x61\x4c\x68','\x57\x37\x56\x63\x48\x5a\x42\x64\x4a\x43\x6f\x6e\x57\x35\x79\x50\x66\x71','\x7a\x43\x6f\x76\x57\x52\x70\x63\x50\x73\x33\x63\x56\x43\x6b\x59\x69\x61','\x6d\x30\x4e\x63\x47\x57','\x6a\x4b\x4a\x63\x48\x57','\x57\x52\x6c\x63\x4d\x38\x6b\x47\x78\x6d\x6f\x4f\x70\x38\x6f\x57','\x46\x4d\x42\x63\x53\x38\x6b\x30\x7a\x64\x75\x50\x57\x34\x71','\x75\x53\x6f\x53\x72\x53\x6f\x50\x44\x71','\x57\x52\x56\x63\x4e\x53\x6f\x4b','\x57\x52\x56\x64\x56\x67\x42\x64\x4e\x71\x69','\x74\x6d\x6f\x4a\x79\x64\x4a\x64\x49\x38\x6b\x57\x57\x4f\x6a\x63','\x57\x37\x30\x46\x6c\x71\x56\x64\x54\x71','\x78\x43\x6f\x6a\x42\x49\x52\x64\x49\x38\x6b\x52','\x6e\x53\x6f\x77\x41\x38\x6f\x32','\x65\x66\x50\x73\x7a\x38\x6f\x33','\x57\x35\x6a\x63\x57\x34\x57\x32\x64\x71','\x57\x36\x74\x63\x4c\x38\x6f\x2f\x57\x36\x69\x55\x6e\x6d\x6f\x6f\x72\x71','\x57\x52\x68\x63\x4b\x6d\x6f\x56\x6c\x6d\x6f\x68','\x57\x52\x37\x63\x4a\x53\x6b\x58','\x57\x52\x48\x46\x79\x4d\x4f','\x66\x38\x6b\x42\x65\x4e\x6d\x31\x57\x51\x75','\x57\x4f\x34\x37\x57\x50\x66\x56\x75\x68\x2f\x64\x54\x38\x6f\x69\x70\x43\x6b\x67\x57\x52\x68\x63\x49\x71','\x6c\x77\x68\x63\x50\x53\x6b\x48\x72\x74\x48\x4e\x57\x4f\x4f','\x57\x35\x43\x33\x57\x34\x66\x73\x66\x71','\x65\x78\x4c\x49\x57\x35\x54\x36','\x57\x51\x6c\x64\x4a\x38\x6b\x47\x57\x52\x72\x57\x43\x38\x6f\x4c\x79\x4b\x56\x63\x53\x53\x6b\x36\x73\x47','\x78\x78\x70\x63\x4d\x47\x42\x63\x4e\x43\x6b\x45\x57\x36\x6d','\x57\x51\x46\x64\x51\x68\x6c\x64\x50\x71\x47','\x57\x50\x75\x54\x57\x51\x69\x44\x77\x47','\x57\x4f\x33\x64\x4e\x38\x6b\x39\x57\x4f\x42\x64\x4e\x57','\x57\x51\x76\x7a\x57\x35\x4e\x63\x4b\x47','\x57\x35\x35\x38\x57\x34\x61\x2f\x61\x64\x4e\x64\x55\x47','\x57\x34\x74\x63\x47\x38\x6b\x36\x76\x47','\x6d\x38\x6b\x4d\x65\x66\x57\x35','\x57\x52\x5a\x64\x4a\x38\x6f\x30\x57\x51\x35\x70\x7a\x6d\x6b\x68\x43\x61','\x6b\x30\x2f\x63\x49\x43\x6f\x62','\x43\x38\x6f\x59\x41\x48\x6d','\x42\x6d\x6b\x44\x57\x52\x30\x32\x6f\x57','\x57\x51\x64\x64\x4c\x38\x6b\x30\x57\x37\x6d\x61\x70\x43\x6b\x6b\x72\x75\x65\x72\x57\x34\x56\x63\x48\x47','\x57\x37\x37\x64\x50\x6d\x6b\x34\x77\x61\x75','\x63\x6d\x6b\x44\x72\x43\x6f\x62\x71\x62\x53\x30\x57\x34\x34','\x64\x6d\x6b\x59\x57\x4f\x46\x63\x55\x6d\x6b\x6b','\x57\x34\x2f\x63\x4d\x43\x6b\x4e\x76\x38\x6b\x7a\x57\x4f\x74\x64\x51\x38\x6f\x4c','\x57\x34\x4a\x63\x47\x53\x6f\x76\x65\x38\x6b\x5a','\x68\x78\x33\x63\x50\x68\x52\x64\x4e\x38\x6f\x52\x57\x52\x33\x64\x52\x61','\x57\x35\x38\x34\x67\x75\x79\x36','\x57\x51\x30\x76\x57\x34\x74\x63\x47\x38\x6f\x73\x61\x47','\x6a\x4d\x76\x41\x70\x71\x4e\x64\x50\x53\x6b\x45','\x41\x6d\x6b\x58\x70\x4a\x58\x49\x57\x34\x66\x47','\x43\x64\x52\x63\x4f\x6d\x6b\x57\x7a\x4d\x35\x35\x57\x4f\x47','\x57\x50\x62\x37\x57\x35\x43\x2b\x62\x74\x57','\x57\x37\x4e\x63\x4a\x43\x6f\x2b\x57\x36\x47','\x57\x50\x6d\x56\x57\x51\x47\x73\x76\x48\x68\x64\x4e\x53\x6f\x64','\x57\x34\x52\x63\x4d\x53\x6b\x36\x57\x51\x79\x6f\x57\x50\x75\x55\x57\x34\x69','\x57\x37\x6d\x50\x57\x37\x50\x76','\x44\x43\x6b\x42\x57\x51\x56\x64\x4f\x43\x6b\x2f\x57\x37\x42\x64\x4f\x6d\x6b\x68','\x79\x38\x6f\x65\x76\x49\x2f\x63\x4f\x57','\x57\x36\x34\x69\x6c\x64\x52\x64\x54\x53\x6f\x71\x73\x32\x4b','\x57\x34\x6e\x76\x57\x4f\x70\x63\x56\x59\x71','\x57\x51\x50\x6c\x57\x35\x4a\x63\x4d\x77\x6c\x63\x50\x57','\x71\x6d\x6b\x48\x57\x36\x38\x4f\x57\x34\x65','\x7a\x43\x6f\x76\x71\x64\x74\x63\x4b\x71','\x65\x6d\x6b\x72\x57\x52\x4e\x63\x4f\x6d\x6b\x6f\x57\x52\x54\x6e\x57\x36\x65','\x71\x53\x6f\x4c\x41\x64\x65','\x57\x52\x52\x64\x4e\x64\x44\x73\x69\x57','\x77\x6d\x6b\x58\x6d\x43\x6f\x58\x61\x57','\x57\x37\x4e\x63\x51\x6d\x6b\x53\x57\x51\x75\x76','\x42\x6d\x6f\x45\x7a\x57\x56\x64\x4a\x61','\x57\x36\x6e\x65\x57\x51\x4a\x63\x54\x72\x47','\x6c\x53\x6f\x2f\x57\x52\x4e\x63\x54\x53\x6b\x68\x57\x51\x50\x4e\x57\x37\x53','\x57\x34\x65\x45\x68\x33\x34\x65\x46\x72\x70\x64\x48\x47','\x6f\x43\x6b\x2f\x57\x52\x4a\x64\x51\x43\x6f\x6c','\x57\x36\x44\x57\x57\x51\x64\x63\x50\x61\x57','\x72\x38\x6f\x61\x77\x43\x6f\x73\x73\x67\x72\x35\x57\x37\x34','\x57\x36\x54\x6d\x57\x52\x78\x63\x4e\x47\x43','\x57\x35\x35\x47\x57\x34\x61\x59\x6e\x67\x2f\x64\x4a\x6d\x6f\x48','\x46\x53\x6f\x6d\x61\x53\x6f\x5a\x45\x4d\x30\x63\x57\x51\x38','\x45\x53\x6b\x57\x62\x53\x6f\x2f\x65\x71','\x57\x35\x69\x44\x65\x4d\x79\x68\x43\x72\x78\x64\x51\x61','\x44\x43\x6b\x7a\x57\x51\x33\x64\x56\x53\x6f\x51\x57\x37\x74\x64\x50\x6d\x6b\x44','\x69\x38\x6f\x6b\x43\x53\x6f\x38\x57\x34\x78\x64\x56\x53\x6b\x58\x62\x71','\x57\x35\x79\x4f\x67\x77\x53\x4a','\x6a\x38\x6f\x68\x42\x38\x6f\x47\x57\x36\x74\x64\x56\x43\x6b\x67\x68\x71','\x74\x38\x6b\x67\x67\x4a\x48\x54','\x57\x52\x37\x63\x4d\x74\x4a\x64\x4a\x38\x6f\x46\x57\x50\x6d\x4f\x78\x47','\x78\x38\x6b\x35\x57\x4f\x78\x64\x48\x43\x6f\x45','\x57\x51\x7a\x41\x57\x34\x42\x63\x4d\x77\x6c\x63\x50\x30\x44\x76','\x6b\x4c\x5a\x63\x4c\x67\x4e\x64\x49\x47','\x66\x43\x6f\x70\x63\x65\x6c\x63\x53\x78\x31\x6e\x42\x61','\x57\x51\x42\x63\x47\x43\x6b\x54\x77\x43\x6b\x56\x42\x53\x6b\x64\x67\x61','\x6d\x77\x48\x75\x74\x43\x6f\x31\x6c\x59\x31\x54','\x57\x35\x31\x52\x57\x4f\x42\x63\x51\x63\x30','\x57\x35\x56\x64\x56\x65\x78\x64\x51\x47','\x45\x53\x6b\x45\x57\x51\x6c\x64\x50\x53\x6f\x36\x57\x36\x69','\x57\x35\x79\x78\x63\x4b\x34\x68\x44\x61\x64\x64\x4e\x47','\x57\x4f\x68\x63\x48\x6d\x6b\x54\x7a\x6d\x6b\x69','\x57\x36\x33\x63\x4e\x33\x79\x65\x7a\x38\x6b\x46\x57\x52\x7a\x35\x6f\x73\x74\x63\x56\x53\x6f\x5a\x75\x71','\x79\x43\x6b\x49\x74\x61','\x57\x50\x68\x64\x51\x53\x6b\x4c\x57\x4f\x6c\x64\x4a\x49\x46\x64\x47\x57\x47','\x63\x4e\x33\x63\x50\x65\x5a\x64\x4d\x43\x6f\x50\x57\x51\x42\x64\x50\x57','\x65\x6d\x6f\x61\x68\x61','\x6e\x31\x35\x6f\x57\x36\x35\x32','\x57\x4f\x5a\x63\x4a\x6d\x6b\x4f\x45\x53\x6f\x64\x57\x36\x43\x33\x62\x38\x6b\x6e\x74\x57','\x57\x50\x6c\x64\x56\x66\x2f\x64\x4a\x5a\x6c\x64\x53\x47\x4c\x68','\x57\x52\x4a\x64\x47\x4a\x58\x30\x62\x71','\x57\x51\x46\x63\x53\x6d\x6f\x78\x6e\x6d\x6f\x73','\x57\x50\x37\x64\x54\x53\x6b\x6d\x57\x4f\x37\x64\x48\x62\x68\x64\x51\x58\x4b','\x63\x38\x6b\x7a\x64\x33\x75\x4f','\x57\x50\x5a\x64\x53\x6d\x6b\x6b\x57\x4f\x4a\x64\x53\x4d\x70\x64\x4a\x58\x53','\x66\x53\x6b\x4b\x69\x43\x6f\x77\x57\x4f\x72\x4a\x43\x4b\x53','\x65\x4b\x70\x63\x52\x53\x6f\x50\x67\x57','\x61\x75\x31\x37\x61\x62\x65','\x57\x37\x42\x63\x56\x53\x6b\x37\x57\x4f\x79\x69\x57\x51\x30\x37','\x57\x34\x56\x63\x4c\x6d\x6b\x36\x73\x38\x6b\x34\x57\x4f\x46\x64\x4e\x6d\x6f\x39','\x57\x52\x56\x64\x47\x33\x6c\x64\x50\x61\x75','\x57\x4f\x72\x49\x57\x35\x2f\x63\x53\x4c\x75','\x57\x50\x4c\x41\x76\x49\x72\x6a\x6f\x30\x52\x63\x47\x47','\x57\x36\x69\x55\x57\x37\x72\x46\x6d\x49\x5a\x63\x54\x43\x6b\x61','\x43\x38\x6b\x2b\x57\x35\x75\x30\x57\x35\x38\x39\x42\x53\x6b\x65','\x68\x32\x42\x63\x47\x61\x78\x63\x4d\x43\x6b\x76\x57\x36\x2f\x64\x4b\x61','\x72\x43\x6f\x76\x57\x52\x70\x63\x53\x64\x64\x63\x51\x6d\x6f\x39\x79\x57','\x57\x37\x68\x64\x54\x38\x6f\x57\x69\x43\x6f\x45','\x57\x34\x52\x63\x4b\x38\x6f\x52\x63\x53\x6b\x67','\x76\x38\x6b\x56\x6f\x47\x66\x56','\x57\x36\x56\x64\x49\x43\x6f\x57\x62\x38\x6f\x4a','\x57\x37\x34\x46\x6d\x72\x52\x64\x55\x53\x6f\x37\x72\x57','\x57\x50\x64\x64\x4a\x53\x6f\x34\x70\x38\x6f\x63\x57\x35\x69\x32\x65\x57','\x57\x36\x33\x63\x48\x74\x4a\x64\x4c\x43\x6f\x4f\x57\x34\x4f\x31\x77\x61','\x57\x37\x42\x63\x48\x38\x6f\x59\x57\x4f\x39\x43\x41\x38\x6b\x64\x43\x47','\x57\x35\x68\x64\x4e\x38\x6f\x5a\x69\x38\x6f\x63\x57\x35\x4f','\x57\x37\x64\x63\x4c\x53\x6f\x4a\x57\x50\x79\x7a\x74\x53\x6b\x6b\x79\x47','\x67\x66\x72\x6c\x41\x53\x6f\x2f','\x57\x34\x72\x36\x57\x36\x7a\x5a','\x61\x76\x76\x32\x44\x43\x6f\x41','\x57\x52\x52\x63\x48\x43\x6f\x51\x6d\x53\x6f\x68','\x57\x37\x2f\x64\x47\x49\x50\x41\x69\x53\x6b\x61\x57\x51\x76\x52','\x57\x35\x78\x63\x47\x53\x6b\x35\x57\x4f\x69\x6d','\x77\x6d\x6b\x42\x42\x4c\x64\x63\x4e\x47','\x57\x37\x70\x64\x56\x53\x6b\x38\x71\x62\x47\x4b\x57\x4f\x35\x53','\x79\x53\x6b\x30\x66\x5a\x7a\x33','\x57\x4f\x4b\x4b\x57\x51\x43\x42\x71\x61\x68\x64\x55\x53\x6f\x45','\x57\x52\x53\x6e\x57\x34\x37\x63\x49\x6d\x6f\x36','\x57\x35\x76\x48\x57\x34\x4f\x35','\x70\x38\x6b\x61\x6a\x38\x6f\x68\x57\x50\x39\x4c\x7a\x31\x57','\x57\x35\x4c\x39\x57\x36\x48\x36\x57\x37\x74\x63\x55\x38\x6f\x5a\x57\x35\x6d','\x57\x36\x53\x48\x57\x36\x72\x65\x66\x73\x33\x63\x56\x53\x6b\x65','\x64\x68\x35\x57\x79\x38\x6f\x73','\x57\x37\x68\x63\x4d\x38\x6f\x36\x6a\x6d\x6b\x31\x6f\x75\x2f\x63\x4e\x47','\x64\x66\x2f\x63\x49\x53\x6f\x68','\x72\x4c\x6e\x4c\x57\x50\x6c\x63\x51\x53\x6f\x71\x57\x37\x79','\x6e\x4e\x6a\x71\x72\x57','\x57\x36\x53\x76\x6b\x73\x53','\x74\x38\x6f\x57\x57\x37\x61\x57\x57\x36\x54\x58\x74\x43\x6b\x70','\x43\x43\x6b\x44\x57\x52\x38','\x45\x59\x34\x7a\x79\x66\x47','\x57\x36\x69\x34\x57\x37\x35\x64\x69\x4a\x42\x63\x49\x6d\x6b\x45','\x57\x35\x5a\x64\x4b\x43\x6f\x38\x70\x38\x6f\x73\x57\x34\x4f\x36\x70\x61','\x63\x4b\x46\x63\x48\x53\x6b\x62\x75\x57\x7a\x71\x57\x35\x71','\x76\x75\x68\x63\x4a\x4a\x6e\x51','\x63\x38\x6b\x66\x63\x4e\x38\x35','\x57\x34\x76\x4b\x57\x52\x74\x63\x50\x49\x4e\x64\x53\x38\x6f\x44\x57\x37\x53','\x57\x35\x56\x63\x54\x4b\x37\x64\x51\x49\x74\x64\x52\x71\x54\x68','\x57\x4f\x6d\x42\x57\x37\x74\x63\x48\x38\x6f\x43','\x63\x53\x6f\x41\x67\x4b\x6c\x63\x4f\x77\x58\x67\x42\x61','\x42\x6d\x6b\x44\x57\x52\x53\x54','\x64\x6d\x6f\x31\x43\x38\x6f\x77\x57\x35\x75','\x57\x34\x6c\x63\x4d\x38\x6f\x4f\x57\x51\x47','\x57\x4f\x70\x63\x52\x31\x6a\x61\x57\x36\x43','\x43\x48\x72\x70\x57\x35\x4c\x54\x6d\x38\x6b\x52\x57\x37\x65','\x57\x36\x39\x6f\x6b\x53\x6f\x74\x57\x37\x79','\x64\x67\x78\x63\x49\x43\x6f\x68\x70\x71','\x57\x34\x74\x63\x54\x43\x6f\x52\x57\x52\x35\x69','\x73\x4b\x7a\x4d\x57\x4f\x33\x63\x53\x47','\x76\x43\x6f\x46\x57\x52\x5a\x63\x53\x73\x46\x63\x53\x47','\x57\x36\x53\x77\x64\x48\x52\x64\x4b\x71','\x77\x38\x6f\x4c\x43\x59\x53','\x57\x35\x68\x64\x4b\x43\x6f\x4d','\x45\x38\x6f\x2f\x6d\x38\x6f\x50\x6b\x57','\x63\x6d\x6f\x2b\x41\x43\x6f\x30\x57\x36\x69','\x57\x37\x71\x79\x6e\x63\x56\x64\x56\x57','\x57\x36\x68\x64\x53\x53\x6b\x46\x78\x74\x57','\x72\x6d\x6b\x53\x57\x50\x4b\x49\x66\x61','\x73\x53\x6f\x42\x57\x51\x37\x63\x54\x57\x46\x63\x53\x53\x6f\x54\x79\x57','\x63\x6d\x6b\x49\x57\x51\x70\x63\x51\x43\x6b\x51','\x57\x52\x54\x79\x57\x35\x2f\x63\x4b\x71','\x57\x36\x64\x63\x55\x38\x6f\x43\x67\x38\x6b\x39','\x57\x52\x4a\x63\x52\x76\x6e\x37\x57\x37\x4a\x64\x4f\x38\x6f\x30\x57\x52\x4f','\x57\x34\x6a\x43\x75\x63\x71','\x42\x53\x6b\x75\x57\x51\x42\x64\x55\x38\x6f\x50\x57\x37\x4e\x64\x52\x38\x6b\x6a','\x57\x36\x70\x63\x4e\x38\x6f\x38\x70\x6d\x6b\x4d\x67\x4c\x71','\x7a\x71\x54\x57\x57\x36\x66\x4b\x67\x53\x6b\x33\x57\x37\x6d','\x70\x6d\x6b\x6b\x57\x51\x4f\x33\x6c\x43\x6f\x74\x72\x53\x6b\x6d','\x75\x53\x6f\x69\x57\x52\x5a\x63\x54\x59\x68\x63\x56\x43\x6f\x58\x75\x61','\x57\x51\x58\x53\x42\x68\x42\x64\x48\x57','\x57\x37\x54\x43\x57\x52\x78\x63\x53\x5a\x6d','\x45\x53\x6f\x7a\x64\x6d\x6f\x6c\x6b\x61','\x77\x43\x6b\x73\x57\x52\x47\x5a\x6d\x61','\x57\x37\x74\x63\x54\x38\x6f\x30\x57\x37\x43\x7a','\x6d\x4c\x56\x63\x4d\x78\x33\x64\x4c\x61','\x57\x36\x61\x4f\x67\x33\x57\x78','\x57\x34\x76\x51\x57\x51\x61','\x66\x78\x33\x63\x56\x4e\x4a\x64\x4d\x43\x6f\x55','\x62\x53\x6b\x54\x70\x43\x6f\x53\x57\x52\x47','\x71\x43\x6b\x32\x61\x43\x6f\x4d\x70\x5a\x46\x64\x54\x61','\x7a\x43\x6b\x53\x69\x74\x7a\x30','\x57\x37\x78\x63\x53\x53\x6b\x38\x57\x51\x69\x61\x57\x52\x71\x39\x57\x34\x34','\x57\x50\x79\x55\x57\x51\x57','\x46\x4b\x44\x2f\x57\x50\x4e\x63\x53\x71','\x57\x35\x52\x63\x4e\x53\x6b\x4d\x78\x71','\x46\x30\x70\x63\x4b\x53\x6f\x6c\x66\x61\x37\x63\x52\x6d\x6b\x73','\x57\x52\x4f\x65\x57\x34\x4e\x63\x49\x53\x6f\x59\x66\x6d\x6f\x69\x64\x47','\x57\x37\x78\x63\x56\x53\x6b\x4e\x57\x50\x43\x68','\x65\x57\x71\x48\x57\x35\x46\x63\x47\x38\x6f\x2f\x57\x35\x62\x2b\x57\x52\x76\x5a','\x42\x43\x6b\x73\x57\x52\x4a\x64\x51\x53\x6f\x32','\x57\x51\x42\x63\x48\x43\x6f\x38\x6e\x38\x6b\x4a\x78\x31\x6c\x63\x4e\x71','\x79\x43\x6b\x55\x69\x5a\x76\x2f','\x79\x4a\x6e\x74\x75\x53\x6f\x32\x70\x78\x34\x65','\x57\x36\x6d\x74\x57\x35\x6e\x34\x61\x71','\x64\x6d\x6b\x43\x63\x33\x6d','\x46\x30\x4e\x63\x49\x6d\x6f\x61\x77\x62\x46\x63\x50\x38\x6b\x66','\x79\x43\x6f\x76\x79\x4a\x74\x63\x47\x57','\x42\x53\x6b\x55\x70\x47','\x57\x34\x4c\x48\x57\x34\x38\x48\x64\x64\x33\x63\x54\x47','\x6f\x38\x6b\x6b\x6f\x6d\x6f\x75\x57\x4f\x35\x65\x6b\x57','\x78\x4b\x6a\x57\x57\x35\x4b','\x61\x38\x6f\x62\x69\x4c\x46\x63\x51\x57','\x57\x36\x46\x63\x48\x43\x6f\x42\x70\x38\x6b\x4c\x64\x76\x75','\x57\x36\x58\x33\x57\x34\x30\x30','\x6d\x4b\x68\x63\x49\x53\x6b\x4a\x7a\x57','\x45\x43\x6b\x74\x63\x43\x6f\x35\x6e\x63\x46\x63\x53\x43\x6f\x31','\x57\x34\x43\x78\x75\x68\x47\x78\x46\x65\x4e\x63\x47\x47','\x57\x37\x6c\x63\x48\x53\x6f\x41\x61\x38\x6b\x46\x6c\x66\x6c\x63\x47\x61','\x76\x6d\x6f\x76\x57\x52\x68\x63\x50\x47','\x57\x51\x39\x71\x42\x61','\x64\x6d\x6f\x41\x68\x71\x34','\x70\x6d\x6b\x50\x57\x4f\x74\x63\x49\x43\x6b\x41','\x57\x36\x78\x63\x54\x6d\x6b\x64\x57\x52\x30\x77\x57\x51\x75\x53\x57\x36\x75','\x66\x68\x33\x63\x4f\x32\x5a\x64\x4a\x6d\x6f\x48\x57\x52\x65','\x57\x37\x6a\x4e\x6d\x6d\x6f\x69\x57\x4f\x47\x79\x57\x35\x33\x63\x54\x47','\x57\x36\x6d\x76\x68\x63\x2f\x64\x49\x47','\x57\x52\x57\x69\x57\x34\x52\x63\x4a\x47','\x6d\x30\x70\x63\x49\x53\x6f\x64\x64\x62\x61','\x6e\x75\x54\x49\x57\x35\x50\x47\x68\x6d\x6b\x38\x57\x37\x47','\x63\x38\x6f\x6c\x67\x4c\x6c\x63\x54\x68\x58\x65\x41\x47','\x42\x53\x6b\x47\x57\x52\x46\x64\x4f\x43\x6f\x59','\x57\x51\x4e\x63\x56\x4e\x76\x34\x57\x36\x33\x64\x54\x53\x6b\x50\x57\x51\x4b','\x6d\x75\x46\x63\x49\x43\x6f\x62','\x57\x35\x76\x59\x57\x36\x76\x5a\x57\x36\x78\x64\x56\x57','\x73\x38\x6f\x56\x76\x4a\x37\x64\x4c\x38\x6b\x58\x57\x50\x48\x6a','\x69\x43\x6f\x36\x42\x38\x6f\x50\x57\x36\x61','\x6b\x4e\x58\x79\x41\x6d\x6f\x46','\x76\x53\x6f\x35\x6a\x43\x6f\x41\x65\x61','\x6d\x38\x6b\x68\x57\x51\x46\x64\x4f\x53\x6f\x36\x57\x37\x5a\x64\x51\x6d\x6b\x61','\x57\x52\x2f\x63\x49\x53\x6b\x56\x76\x38\x6b\x31\x42\x71','\x6f\x6d\x6b\x4b\x57\x51\x56\x63\x50\x38\x6b\x34\x57\x52\x7a\x51\x57\x36\x57','\x42\x53\x6f\x4c\x43\x72\x6c\x63\x4e\x43\x6b\x2f\x57\x35\x76\x39','\x67\x6d\x6f\x61\x67\x66\x70\x63\x52\x5a\x76\x50\x46\x71','\x41\x4b\x52\x63\x4c\x61\x39\x79\x65\x38\x6f\x69\x69\x47','\x57\x52\x70\x63\x50\x38\x6f\x66\x64\x6d\x6f\x53','\x6c\x4c\x4c\x4f\x6f\x62\x65','\x46\x31\x5a\x63\x4a\x59\x35\x31\x65\x53\x6f\x44\x6b\x71','\x6b\x66\x35\x73\x57\x35\x53','\x57\x50\x68\x64\x55\x38\x6b\x68\x57\x4f\x52\x64\x4d\x59\x53','\x57\x36\x54\x73\x57\x37\x35\x49\x57\x36\x37\x63\x49\x53\x6f\x4d\x57\x34\x71','\x57\x50\x68\x64\x54\x62\x58\x66\x68\x57','\x43\x43\x6b\x41\x6c\x6d\x6f\x4d\x70\x71','\x57\x35\x39\x30\x57\x51\x2f\x63\x4e\x48\x38','\x76\x53\x6f\x6f\x66\x53\x6f\x38\x6b\x61','\x68\x65\x56\x63\x51\x78\x68\x64\x4a\x47','\x57\x50\x76\x34\x57\x35\x4e\x63\x4e\x77\x57','\x71\x53\x6f\x41\x71\x53\x6f\x46','\x57\x36\x48\x4e\x6d\x6d\x6f\x77\x57\x35\x71\x62\x57\x34\x46\x63\x52\x57','\x42\x68\x6e\x62\x57\x4f\x6c\x63\x4a\x71','\x57\x37\x42\x63\x48\x64\x56\x64\x4f\x53\x6f\x75\x57\x35\x57\x50\x78\x57','\x6c\x43\x6f\x5a\x46\x4e\x4c\x4a\x57\x35\x35\x39\x61\x57','\x57\x35\x4a\x63\x56\x43\x6f\x79\x57\x36\x71\x34','\x67\x76\x52\x63\x47\x53\x6b\x57\x42\x61','\x74\x53\x6f\x42\x57\x52\x70\x63\x50\x58\x53','\x57\x35\x6c\x64\x53\x53\x6f\x2b\x6c\x53\x6f\x64','\x46\x65\x31\x70\x57\x35\x31\x58\x6e\x53\x6b\x59\x57\x37\x4f','\x57\x35\x4c\x4b\x57\x52\x78\x63\x4f\x71\x38','\x57\x37\x33\x63\x4a\x43\x6f\x48','\x57\x37\x33\x63\x48\x63\x56\x64\x4b\x53\x6f\x75\x57\x34\x65','\x6b\x53\x6f\x78\x66\x76\x75','\x70\x32\x39\x36\x6f\x48\x52\x64\x51\x6d\x6b\x76\x73\x47','\x46\x43\x6f\x37\x57\x51\x4a\x63\x54\x59\x56\x63\x4a\x38\x6f\x34\x7a\x61','\x73\x43\x6f\x68\x74\x6d\x6f\x68','\x57\x52\x56\x64\x4e\x49\x6e\x6f\x61\x71','\x57\x51\x69\x6a\x57\x35\x6c\x63\x52\x43\x6f\x32','\x57\x51\x42\x63\x47\x43\x6b\x4c\x65\x61','\x63\x6d\x6f\x71\x57\x51\x37\x63\x52\x63\x52\x63\x54\x47','\x6f\x75\x6e\x41\x57\x34\x62\x57\x6b\x38\x6b\x55','\x68\x75\x37\x63\x51\x78\x70\x64\x4e\x61','\x57\x36\x54\x45\x57\x36\x50\x2f\x57\x36\x2f\x63\x51\x38\x6f\x5a\x57\x34\x34','\x46\x75\x2f\x63\x52\x5a\x46\x63\x4a\x71','\x57\x34\x78\x64\x50\x38\x6f\x38\x66\x38\x6f\x2f','\x57\x34\x4c\x2f\x57\x34\x53\x42\x68\x61','\x6c\x43\x6b\x4c\x66\x4e\x71\x67','\x57\x36\x74\x63\x50\x5a\x2f\x64\x4c\x38\x6f\x62','\x72\x53\x6b\x37\x61\x6d\x6f\x76\x70\x61','\x45\x43\x6b\x2b\x57\x52\x30\x53\x6f\x53\x6f\x44\x74\x6d\x6b\x4e','\x57\x51\x52\x63\x56\x38\x6b\x34\x41\x53\x6b\x4b','\x77\x38\x6b\x46\x6a\x49\x31\x50\x57\x37\x31\x49\x63\x57','\x57\x51\x78\x64\x51\x62\x7a\x2b\x6e\x71','\x79\x53\x6f\x45\x43\x6d\x6f\x59\x57\x37\x4e\x64\x4f\x53\x6b\x30\x62\x47','\x64\x43\x6f\x43\x64\x4c\x6d','\x43\x43\x6f\x59\x61\x6d\x6f\x4a\x6d\x47','\x44\x43\x6f\x78\x64\x53\x6f\x61','\x57\x50\x2f\x64\x54\x4b\x6c\x64\x53\x47','\x6b\x4d\x58\x48\x69\x72\x33\x64\x53\x38\x6b\x69','\x45\x75\x76\x7a\x57\x50\x4a\x63\x4e\x57','\x73\x78\x4a\x63\x49\x47','\x57\x36\x6a\x56\x57\x36\x72\x7a\x6d\x73\x56\x63\x55\x53\x6b\x6c','\x57\x34\x64\x63\x4d\x53\x6b\x55\x57\x50\x61\x31','\x57\x35\x42\x63\x53\x43\x6b\x65\x57\x50\x38\x51','\x41\x49\x33\x64\x54\x53\x6f\x48\x6a\x58\x48\x64\x57\x52\x33\x64\x52\x53\x6f\x47\x41\x71','\x6e\x6d\x6f\x41\x68\x4e\x70\x63\x53\x57','\x57\x35\x52\x63\x4b\x43\x6f\x59\x69\x6d\x6f\x6c\x57\x35\x69\x36\x68\x47','\x57\x52\x75\x4c\x57\x4f\x69\x4f\x71\x71','\x57\x34\x4e\x63\x50\x43\x6b\x32\x73\x43\x6b\x75','\x57\x37\x56\x63\x4a\x43\x6f\x56\x57\x51\x75','\x57\x51\x46\x63\x49\x53\x6b\x69\x78\x53\x6b\x31\x79\x6d\x6b\x49\x66\x57','\x57\x36\x70\x64\x48\x53\x6f\x32\x70\x53\x6b\x49\x66\x4b\x78\x63\x4d\x47','\x57\x51\x46\x63\x48\x53\x6b\x53\x76\x71','\x6c\x43\x6f\x47\x66\x71\x43','\x68\x76\x33\x63\x4d\x6d\x6b\x43\x77\x62\x76\x6d\x57\x52\x53','\x57\x36\x56\x63\x4a\x6d\x6f\x48\x6e\x38\x6b\x31','\x57\x36\x31\x70\x57\x34\x57\x73\x62\x71','\x57\x35\x43\x42\x65\x4e\x34\x68\x79\x61','\x57\x35\x61\x50\x67\x48\x5a\x64\x4b\x53\x6f\x79\x7a\x4b\x4f','\x57\x35\x39\x42\x62\x6d\x6f\x59\x57\x34\x30','\x63\x38\x6f\x44\x75\x47\x57','\x57\x36\x70\x63\x4b\x43\x6f\x36\x69\x38\x6b\x4b\x64\x68\x78\x63\x49\x57','\x57\x37\x2f\x63\x55\x53\x6b\x54\x57\x52\x34\x65\x57\x51\x71','\x6b\x38\x6f\x79\x41\x6d\x6f\x59\x57\x37\x5a\x64\x56\x43\x6b\x67\x65\x61','\x57\x50\x56\x64\x4d\x43\x6f\x48\x45\x53\x6b\x31\x57\x50\x5a\x64\x47\x6d\x6f\x39\x70\x71','\x46\x30\x52\x63\x4a\x4a\x31\x6d\x62\x43\x6f\x56\x70\x47','\x76\x6d\x6f\x46\x57\x52\x5a\x63\x50\x57\x6c\x63\x53\x38\x6f\x4b\x7a\x71','\x7a\x43\x6b\x2f\x57\x52\x52\x63\x54\x53\x6b\x66\x57\x51\x58\x4f\x57\x36\x34','\x76\x53\x6f\x42\x57\x51\x4e\x63\x51\x57','\x57\x50\x6d\x53\x57\x34\x42\x63\x47\x53\x6f\x58\x62\x43\x6f\x2b\x67\x71','\x57\x36\x46\x63\x48\x38\x6f\x57\x6e\x43\x6b\x6e\x78\x32\x78\x63\x4e\x47','\x57\x37\x7a\x4e\x70\x43\x6f\x65\x57\x35\x69\x41','\x57\x52\x64\x63\x51\x38\x6f\x4b\x70\x53\x6f\x4a','\x6e\x68\x52\x63\x52\x53\x6b\x37','\x57\x35\x71\x65\x65\x77\x79\x75\x44\x58\x70\x64\x54\x61','\x57\x51\x4a\x63\x52\x78\x6a\x71\x57\x36\x4f','\x7a\x53\x6f\x35\x43\x71\x6c\x63\x51\x43\x6f\x52\x57\x35\x6a\x39','\x57\x51\x71\x65\x57\x50\x33\x64\x49\x57','\x57\x50\x30\x2b\x57\x36\x39\x4b\x57\x37\x4a\x64\x53\x53\x6f\x4b\x57\x35\x75','\x57\x35\x69\x48\x6f\x30\x79\x55','\x70\x68\x4c\x4e\x66\x62\x4b','\x7a\x59\x78\x63\x4e\x43\x6b\x42\x43\x61\x72\x4a\x57\x4f\x34','\x57\x52\x66\x6a\x41\x65\x37\x64\x50\x61','\x57\x34\x74\x63\x49\x38\x6b\x2f\x57\x52\x61\x51','\x57\x50\x4a\x64\x53\x6d\x6b\x6e\x57\x50\x37\x64\x55\x63\x52\x64\x55\x47\x65','\x57\x37\x64\x63\x4a\x6d\x6f\x48\x6d\x53\x6b\x2f\x64\x65\x6d','\x6c\x68\x58\x4b\x57\x34\x31\x58','\x57\x35\x76\x73\x76\x4d\x71\x6e\x46\x65\x5a\x64\x4a\x71','\x57\x35\x75\x44\x63\x4d\x38\x6d\x7a\x61','\x57\x37\x5a\x63\x53\x6d\x6b\x52\x57\x52\x53\x74\x57\x50\x6d\x4e\x57\x34\x47','\x41\x4b\x52\x63\x4c\x61\x48\x69\x64\x43\x6f\x7a','\x42\x63\x74\x64\x54\x6d\x6f\x53\x69\x68\x61\x36\x57\x52\x52\x64\x55\x53\x6f\x32\x76\x53\x6f\x37\x7a\x61','\x42\x6d\x6b\x71\x79\x43\x6f\x32\x57\x36\x64\x63\x4f\x43\x6b\x30\x66\x57','\x63\x6d\x6b\x38\x6d\x77\x2f\x63\x4c\x43\x6f\x56\x57\x34\x65\x6f','\x79\x43\x6b\x4f\x72\x75\x64\x63\x56\x48\x69','\x57\x50\x65\x65\x67\x33\x47\x72\x45\x57\x37\x64\x48\x71','\x57\x35\x50\x38\x57\x36\x6a\x34','\x57\x34\x58\x64\x68\x38\x6f\x38\x57\x36\x53\x48\x57\x50\x6d','\x57\x36\x52\x63\x4e\x43\x6f\x46\x70\x38\x6b\x58\x67\x32\x56\x63\x4b\x57','\x76\x53\x6f\x42\x57\x51\x2f\x63\x53\x63\x65','\x6d\x53\x6b\x77\x57\x52\x57\x51\x6d\x6d\x6f\x77','\x69\x43\x6f\x32\x44\x6d\x6f\x66\x57\x37\x79','\x41\x71\x35\x37\x57\x36\x44\x4f\x6c\x53\x6b\x73\x57\x35\x57','\x57\x34\x46\x64\x47\x38\x6b\x34\x72\x58\x75\x38\x57\x4f\x50\x31','\x57\x37\x71\x6e\x57\x37\x72\x73\x64\x57','\x45\x38\x6f\x6d\x72\x43\x6f\x73','\x57\x50\x4f\x6b\x57\x34\x56\x63\x56\x38\x6f\x77','\x57\x36\x37\x63\x4b\x63\x33\x64\x49\x71','\x57\x37\x56\x63\x49\x74\x64\x64\x4b\x53\x6f\x70\x57\x34\x61\x69\x71\x47','\x57\x34\x2f\x63\x51\x53\x6b\x61\x75\x6d\x6b\x41','\x57\x52\x76\x59\x6f\x53\x6f\x74\x57\x34\x6d\x45\x57\x34\x46\x63\x54\x57','\x57\x34\x72\x36\x57\x36\x7a\x5a\x57\x36\x37\x63\x51\x53\x6f\x49','\x57\x51\x4b\x49\x57\x51\x4f\x71\x74\x72\x5a\x64\x4c\x43\x6f\x78','\x57\x37\x56\x63\x55\x38\x6b\x2b\x74\x43\x6b\x39','\x57\x52\x65\x65\x57\x34\x74\x63\x4d\x38\x6f\x33','\x63\x6d\x6f\x64\x74\x53\x6f\x64\x78\x4b\x48\x37\x57\x36\x61','\x42\x38\x6b\x64\x57\x51\x2f\x64\x50\x53\x6f\x6d\x57\x36\x4e\x64\x52\x38\x6b\x6e','\x57\x51\x71\x61\x57\x35\x74\x63\x4e\x38\x6f\x78\x62\x6d\x6f\x35\x6d\x71','\x69\x78\x72\x74\x72\x6d\x6f\x59\x79\x61','\x57\x35\x38\x39\x61\x47\x4a\x64\x56\x47','\x45\x6d\x6b\x48\x57\x4f\x4a\x64\x47\x43\x6f\x72','\x65\x33\x46\x63\x55\x78\x65','\x57\x34\x39\x78\x57\x4f\x4a\x63\x4d\x71\x43','\x6a\x30\x70\x63\x4a\x38\x6b\x77\x42\x61','\x6c\x67\x54\x71\x64\x6d\x6f\x34\x41\x4a\x4f','\x70\x43\x6b\x65\x6e\x38\x6f\x6a\x57\x4f\x50\x72\x7a\x57\x65','\x72\x38\x6b\x47\x57\x35\x4f\x77\x57\x36\x79','\x42\x5a\x7a\x7a\x75\x6d\x6f\x59\x79\x73\x4f','\x57\x34\x6e\x47\x57\x36\x6a\x35\x57\x36\x2f\x64\x54\x38\x6f\x4c\x57\x4f\x4b','\x57\x52\x31\x70\x57\x35\x46\x63\x4d\x65\x64\x64\x52\x47\x6e\x75','\x57\x52\x4f\x4b\x57\x35\x70\x63\x4a\x6d\x6f\x37','\x57\x37\x54\x32\x6e\x53\x6f\x2b\x57\x4f\x79\x38\x57\x34\x56\x63\x52\x47','\x57\x37\x78\x63\x4b\x43\x6f\x4a\x57\x36\x53\x47\x6e\x38\x6f\x55\x41\x61','\x72\x43\x6b\x37\x68\x6d\x6f\x65\x6d\x5a\x37\x63\x53\x71','\x57\x50\x4c\x6a\x57\x37\x46\x63\x4a\x67\x69','\x77\x6d\x6b\x45\x42\x4e\x75','\x57\x50\x34\x63\x66\x33\x4f\x68\x46\x47\x4a\x64\x48\x71','\x57\x35\x76\x4c\x57\x36\x72\x36\x57\x37\x46\x63\x55\x53\x6f\x4b','\x69\x6d\x6b\x6f\x6d\x6d\x6f\x6c\x57\x50\x4c\x4c\x45\x30\x65','\x74\x43\x6f\x6e\x71\x53\x6f\x63\x77\x76\x6a\x68\x57\x37\x43','\x63\x31\x50\x35\x57\x4f\x42\x63\x55\x6d\x6b\x78\x57\x36\x44\x35','\x7a\x53\x6f\x57\x44\x57','\x67\x43\x6b\x5a\x6e\x78\x34\x42','\x77\x53\x6f\x7a\x79\x6d\x6f\x4c\x42\x57','\x74\x6d\x6f\x59\x46\x38\x6f\x32\x78\x61','\x57\x37\x7a\x6b\x57\x36\x38\x73\x6e\x47\x4e\x64\x4d\x53\x6f\x45','\x57\x37\x61\x76\x57\x37\x58\x68\x69\x61','\x57\x36\x50\x32\x57\x36\x4b\x2b\x6f\x47','\x64\x30\x48\x41\x57\x36\x50\x76','\x45\x43\x6f\x74\x57\x51\x43\x57\x70\x61','\x57\x52\x57\x6f\x57\x36\x37\x63\x55\x6d\x6f\x71\x69\x53\x6f\x56\x62\x71','\x57\x35\x71\x48\x62\x32\x71\x62','\x79\x53\x6b\x48\x71\x4b\x74\x63\x53\x57','\x57\x51\x78\x63\x4c\x6d\x6f\x49\x6f\x38\x6f\x67\x57\x35\x33\x64\x4e\x72\x61','\x57\x36\x47\x56\x68\x61\x68\x64\x49\x71','\x66\x68\x37\x63\x52\x43\x6f\x76\x65\x57','\x57\x35\x4a\x63\x52\x43\x6f\x4e\x57\x34\x57\x31','\x64\x53\x6b\x65\x61\x31\x47\x6c','\x57\x35\x33\x63\x56\x38\x6b\x39\x57\x51\x4f\x66','\x71\x38\x6f\x75\x57\x52\x4e\x63\x53\x62\x70\x63\x53\x38\x6f\x38\x41\x61','\x6c\x65\x37\x63\x49\x38\x6f\x72\x66\x62\x5a\x63\x4d\x53\x6b\x6c','\x57\x50\x70\x63\x49\x53\x6b\x33\x78\x38\x6b\x53\x7a\x6d\x6b\x47\x74\x47','\x57\x37\x2f\x63\x47\x4a\x57','\x70\x30\x39\x2b\x57\x37\x50\x68','\x65\x38\x6f\x78\x70\x4d\x78\x63\x49\x57','\x57\x51\x53\x6f\x57\x34\x52\x63\x4d\x38\x6f\x51\x62\x43\x6f\x2b\x6e\x47','\x57\x35\x37\x63\x51\x6d\x6f\x6a\x57\x50\x6a\x78','\x46\x66\x50\x43\x57\x34\x35\x52\x6d\x38\x6b\x38\x57\x37\x79','\x57\x34\x4e\x63\x4a\x53\x6f\x42\x62\x43\x6b\x37','\x57\x34\x78\x64\x48\x38\x6b\x30\x72\x62\x6d','\x46\x6d\x6f\x71\x64\x53\x6f\x79\x70\x30\x44\x68','\x57\x50\x4b\x34\x57\x34\x4a\x63\x50\x53\x6f\x30','\x57\x36\x52\x64\x51\x38\x6f\x75\x63\x43\x6f\x30','\x57\x35\x76\x57\x57\x34\x48\x65\x57\x36\x79','\x45\x6d\x6b\x76\x57\x51\x34\x49\x6d\x6d\x6f\x76\x77\x53\x6b\x68','\x57\x37\x78\x63\x4b\x53\x6f\x47\x57\x52\x48\x50','\x57\x36\x5a\x63\x4d\x4c\x54\x42\x57\x34\x4a\x64\x49\x43\x6f\x6c\x57\x50\x6d','\x6d\x66\x2f\x63\x55\x68\x46\x64\x56\x57','\x6f\x67\x31\x74\x57\x34\x6e\x5a','\x57\x51\x70\x64\x4d\x38\x6b\x5a\x57\x37\x48\x56\x78\x43\x6b\x33\x73\x33\x69\x33','\x57\x34\x4e\x64\x4e\x43\x6b\x2b\x74\x63\x54\x57\x57\x51\x35\x57','\x6f\x4b\x2f\x63\x56\x30\x56\x64\x56\x61','\x57\x36\x78\x63\x47\x43\x6f\x36\x70\x6d\x6b\x30\x69\x66\x42\x63\x47\x61','\x6e\x43\x6f\x52\x79\x72\x54\x2f\x57\x34\x62\x44\x66\x4d\x53','\x57\x34\x6c\x64\x4e\x6d\x6b\x30\x72\x57','\x57\x37\x6e\x78\x57\x51\x4a\x63\x53\x57\x61','\x57\x36\x6c\x63\x50\x6d\x6f\x4d\x6a\x6d\x6b\x58\x63\x30\x6d','\x77\x38\x6f\x77\x77\x43\x6f\x79\x78\x76\x75','\x57\x36\x70\x63\x56\x53\x6b\x38\x57\x52\x43\x76\x57\x50\x6d\x37\x57\x35\x75','\x57\x35\x5a\x64\x4e\x6d\x6b\x56','\x57\x51\x37\x63\x4a\x43\x6f\x32\x6e\x53\x6b\x58\x63\x4b\x52\x63\x48\x47','\x73\x6d\x6f\x76\x57\x51\x4f','\x76\x4e\x4e\x63\x4d\x58\x4a\x63\x4e\x43\x6b\x6e\x57\x34\x78\x64\x49\x57','\x57\x35\x37\x63\x55\x53\x6f\x70\x57\x51\x50\x73','\x57\x34\x64\x63\x4f\x38\x6f\x4e\x57\x4f\x4c\x54','\x57\x50\x64\x64\x4d\x43\x6f\x4b\x6c\x53\x6f\x76\x57\x35\x4f\x53','\x44\x30\x6c\x63\x47\x43\x6f\x63\x67\x71\x33\x63\x50\x43\x6b\x75','\x57\x36\x74\x63\x52\x38\x6b\x50\x57\x36\x4f','\x57\x35\x78\x63\x55\x43\x6f\x77\x57\x34\x61\x53','\x6e\x32\x42\x63\x48\x53\x6b\x4e\x7a\x63\x62\x57','\x57\x51\x65\x70\x57\x34\x42\x63\x4e\x38\x6f\x36','\x57\x52\x30\x65\x57\x50\x57\x44\x7a\x71','\x66\x4e\x5a\x63\x54\x74\x42\x63\x47\x57','\x70\x31\x35\x39\x57\x34\x35\x57\x6d\x43\x6b\x30\x57\x37\x4f','\x57\x50\x33\x63\x54\x43\x6b\x79\x73\x6d\x6b\x70','\x57\x37\x4e\x64\x4e\x53\x6f\x4d\x6b\x43\x6f\x6e\x57\x35\x4a\x64\x4d\x73\x79','\x79\x6d\x6b\x31\x57\x35\x75\x4b\x57\x37\x62\x55\x71\x43\x6b\x44','\x74\x6d\x6f\x72\x57\x52\x68\x63\x52\x47\x47','\x57\x35\x50\x54\x57\x51\x4a\x63\x50\x57\x42\x64\x56\x38\x6f\x52\x57\x37\x6d','\x71\x43\x6b\x74\x57\x35\x53\x59\x57\x34\x43','\x57\x52\x74\x63\x47\x66\x7a\x34\x57\x34\x65','\x63\x6d\x6f\x75\x78\x43\x6f\x71\x72\x65\x31\x31\x57\x36\x57','\x57\x37\x6c\x63\x47\x43\x6f\x47','\x42\x6d\x6b\x34\x78\x30\x47','\x6a\x38\x6b\x31\x57\x51\x74\x63\x54\x6d\x6b\x46\x57\x51\x43','\x57\x51\x46\x64\x4e\x31\x6c\x64\x55\x59\x71','\x57\x52\x5a\x63\x4a\x53\x6f\x34\x57\x37\x79\x4b\x6c\x38\x6f\x75\x79\x57','\x57\x36\x30\x56\x57\x37\x35\x45','\x57\x34\x4a\x63\x53\x38\x6f\x57\x57\x36\x38\x56\x6e\x38\x6f\x79\x79\x57','\x44\x6d\x6b\x35\x57\x35\x4f\x4c\x57\x36\x44\x56','\x42\x6d\x6f\x72\x63\x6d\x6f\x61\x63\x75\x57\x73\x57\x51\x4f','\x57\x52\x37\x64\x4e\x67\x46\x63\x47\x71','\x57\x50\x4e\x64\x54\x43\x6b\x46\x57\x4f\x4a\x64\x4e\x61','\x57\x52\x33\x63\x4e\x53\x6f\x51\x6d\x71','\x44\x53\x6b\x68\x6e\x38\x6b\x4e\x57\x51\x68\x64\x4c\x38\x6b\x46\x6d\x6d\x6f\x38\x42\x78\x57','\x57\x51\x33\x64\x4d\x59\x53','\x57\x37\x74\x63\x4f\x38\x6b\x4d\x57\x51\x65\x76\x57\x52\x6d\x6e\x57\x35\x38','\x57\x52\x70\x64\x53\x43\x6b\x34\x57\x4f\x6c\x64\x50\x61','\x57\x51\x42\x64\x47\x43\x6f\x39\x69\x6d\x6b\x39\x72\x71\x42\x63\x53\x47','\x44\x43\x6b\x73\x57\x51\x47','\x41\x65\x68\x63\x48\x63\x39\x32\x63\x43\x6f\x69\x6c\x57','\x57\x34\x43\x44\x65\x4e\x57\x68\x79\x65\x47','\x57\x36\x58\x52\x57\x35\x61\x38\x68\x47','\x65\x38\x6b\x70\x57\x4f\x5a\x63\x49\x59\x37\x63\x51\x38\x6f\x68\x73\x61','\x67\x75\x42\x63\x48\x6d\x6b\x43\x44\x71','\x57\x52\x57\x6f\x57\x36\x56\x63\x48\x6d\x6f\x4f\x66\x6d\x6f\x50\x6e\x61','\x57\x37\x57\x63\x6c\x64\x33\x64\x50\x38\x6f\x4c\x43\x78\x57','\x57\x51\x2f\x63\x50\x33\x72\x48\x57\x36\x4e\x64\x51\x6d\x6f\x59','\x57\x52\x4a\x63\x55\x4e\x6e\x34','\x57\x36\x56\x63\x4a\x6d\x6f\x47\x69\x38\x6b\x58\x67\x65\x6d','\x78\x43\x6f\x73\x74\x38\x6f\x63\x79\x57','\x44\x53\x6b\x58\x57\x34\x79\x4c\x57\x36\x54\x52\x74\x43\x6b\x34','\x57\x34\x69\x67\x64\x67\x6d\x6d\x44\x71\x4a\x64\x4a\x71','\x57\x36\x52\x63\x47\x5a\x64\x64\x4a\x61','\x41\x38\x6f\x59\x44\x4b\x46\x64\x4e\x6d\x6b\x4c\x57\x37\x48\x48','\x69\x43\x6b\x2f\x57\x51\x70\x63\x56\x71','\x68\x53\x6b\x75\x63\x4d\x75\x4f','\x43\x53\x6f\x6d\x64\x53\x6f\x64\x70\x57','\x57\x51\x5a\x64\x4e\x73\x58\x73\x70\x38\x6f\x49\x57\x36\x50\x6e','\x66\x53\x6f\x45\x68\x4c\x4a\x63\x4b\x78\x4c\x6a\x45\x61','\x41\x53\x6b\x45\x57\x51\x56\x64\x50\x71','\x57\x34\x74\x63\x4e\x38\x6b\x38\x76\x47','\x70\x38\x6f\x37\x68\x58\x64\x64\x56\x4b\x2f\x64\x54\x57\x4f\x52\x66\x6d\x6f\x42\x57\x36\x65','\x71\x4e\x70\x63\x49\x62\x68\x63\x4d\x6d\x6b\x71\x57\x37\x74\x64\x52\x71','\x6f\x43\x6f\x35\x57\x50\x31\x31','\x72\x6d\x6b\x52\x57\x4f\x57\x73\x68\x57','\x64\x77\x52\x63\x53\x77\x56\x64\x49\x6d\x6f\x48\x57\x51\x33\x64\x4b\x47','\x57\x36\x52\x63\x4d\x64\x74\x64\x48\x61','\x57\x37\x52\x64\x47\x53\x6b\x65\x75\x64\x75','\x57\x34\x34\x63\x61\x71\x64\x64\x54\x47','\x57\x51\x37\x64\x4e\x32\x4e\x63\x4a\x38\x6b\x6c','\x57\x4f\x68\x63\x51\x43\x6b\x34\x76\x38\x6b\x55','\x41\x38\x6f\x34\x44\x71','\x64\x31\x6a\x47\x63\x64\x5a\x63\x56\x61','\x7a\x38\x6b\x69\x6a\x38\x6f\x43\x64\x62\x42\x63\x48\x53\x6f\x65','\x57\x37\x75\x4c\x57\x37\x7a\x75\x6d\x49\x5a\x63\x51\x43\x6b\x30','\x62\x6d\x6f\x34\x71\x43\x6f\x76\x57\x37\x30','\x6c\x68\x7a\x54\x68\x62\x30','\x63\x6d\x6f\x57\x46\x43\x6f\x2b\x79\x78\x44\x72\x57\x35\x65','\x57\x51\x65\x6d\x57\x51\x4f\x78\x74\x71\x68\x64\x4e\x53\x6f\x45','\x65\x43\x6b\x66\x6c\x4d\x6d\x56\x57\x50\x6a\x5a\x62\x57','\x64\x78\x64\x63\x54\x6d\x6b\x4d\x46\x59\x35\x4e\x57\x52\x4f','\x74\x53\x6b\x35\x57\x4f\x30\x32\x70\x71','\x57\x52\x70\x64\x47\x73\x69','\x57\x51\x68\x63\x51\x77\x4f','\x57\x35\x52\x63\x49\x43\x6b\x52\x74\x61','\x57\x50\x6c\x63\x54\x43\x6f\x68\x65\x6d\x6f\x75','\x57\x50\x4e\x64\x56\x65\x78\x64\x55\x5a\x2f\x64\x51\x71','\x57\x52\x42\x63\x4d\x43\x6b\x55\x78\x6d\x6b\x33\x79\x6d\x6b\x49\x70\x47','\x6b\x6d\x6f\x78\x69\x76\x2f\x63\x53\x57','\x75\x6d\x6b\x31\x57\x51\x42\x64\x55\x38\x6f\x36','\x67\x43\x6b\x78\x63\x77\x71\x35','\x57\x35\x30\x78\x72\x63\x4f','\x6c\x67\x42\x63\x51\x6d\x6b\x4e\x71\x4a\x6e\x4f\x57\x4f\x43','\x66\x6d\x6f\x70\x63\x57','\x57\x52\x68\x63\x47\x38\x6f\x57\x57\x51\x50\x71\x79\x43\x6b\x64\x7a\x71','\x76\x33\x33\x63\x4a\x5a\x31\x6c','\x57\x37\x70\x63\x4e\x43\x6f\x31\x41\x61','\x57\x50\x5a\x64\x4d\x43\x6b\x42\x57\x50\x74\x64\x4d\x61','\x57\x34\x6e\x47\x57\x36\x6a\x35\x57\x36\x2f\x63\x4b\x38\x6f\x35\x57\x34\x43','\x57\x52\x64\x64\x4e\x4a\x5a\x64\x4c\x38\x6f\x75\x57\x35\x38\x54\x78\x47','\x57\x37\x7a\x75\x57\x36\x75\x2f\x68\x57'];_0x54bb=function(){return _0x618eb4;};return _0x54bb();}
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+ const os = require('os');
4
+ const { execSync, execFile } = require('child_process');
5
+
6
+ // 10 MB — prevents RangeError on large child process output (e.g. git log/diff
7
+ // on large repos). See GHSA reports / issue #451.
8
+ const MAX_EXEC_BUFFER = 10 * 1024 * 1024;
9
+ const { getRepoRoot, getMemoryDir, getAgentSessionsDir, getEvomapPath } = require('./gep/paths');
10
+ const { ensureAssetFiles } = require('./gep/assetStore');
11
+
12
+ const REPO_ROOT = getRepoRoot();
13
+
14
+ // Verbose logging helper. Checks EVOLVER_VERBOSE env const (set by --verbose flag in index.js).
15
+ function verbose(...args) {
16
+ if (String(process.env.EVOLVER_VERBOSE || '').toLowerCase() !== 'true') return;
17
+ args.unshift('[Verbose]');
18
+ console.log.apply(console, args);
19
+ }
20
+
21
+ // Idle-cycle gating: tracks the timestamp of the last Hub fetch across cycles.
22
+ // Gating logic (shouldSkipHubCalls) lives in pipeline/signals.js; this variable
23
+ // is passed in as lastHubFetchMs and updated here after a successful Hub fetch.
24
+ let _lastHubFetchMs = 0;
25
+
26
+ function extractFirstUserMessage(content) {
27
+ if (!content) return null;
28
+ const lines = content.split('\n');
29
+ for (const line of lines) {
30
+ if (!line.trim()) continue;
31
+ try {
32
+ const data = JSON.parse(line);
33
+ const msg = data.message || data;
34
+ if (msg.role === 'user' || msg.role === 'USER') {
35
+ const msgContent = msg.content;
36
+ if (Array.isArray(msgContent)) {
37
+ const textParts = msgContent.filter(function(c) { return c.type === 'text'; }).map(function(c) { return c.text; }).join('');
38
+ return textParts.trim();
39
+ } else if (typeof msgContent === 'string') {
40
+ return msgContent.trim();
41
+ }
42
+ }
43
+ } catch (_) {
44
+ // Not JSON, skip
45
+ }
46
+ }
47
+ return null;
48
+ }
49
+
50
+ function getCurrentSessionInitialPrompt() {
51
+ function getCursorPrompt() {
52
+ if (!CURSOR_TRANSCRIPTS_DIR) return null;
53
+ try {
54
+ const files = collectTranscriptFiles(CURSOR_TRANSCRIPTS_DIR, 3);
55
+ if (!files || files.length === 0) return null;
56
+ files.sort(function(a, b) { return b.time - a.time; });
57
+ const headContent = readFileHead(files[0].path, 16384);
58
+ return extractFirstUserMessage(headContent);
59
+ } catch (e) {
60
+ return null;
61
+ }
62
+ }
63
+
64
+ function getOpenClawPrompt() {
65
+ try {
66
+ if (!fs.existsSync(AGENT_SESSIONS_DIR)) return null;
67
+ const sessions = fs.readdirSync(AGENT_SESSIONS_DIR)
68
+ .filter(function(f) { return f.endsWith('.jsonl'); })
69
+ .map(function(f) {
70
+ return {
71
+ path: path.join(AGENT_SESSIONS_DIR, f),
72
+ time: fs.statSync(path.join(AGENT_SESSIONS_DIR, f)).mtime.getTime(),
73
+ };
74
+ })
75
+ .sort(function(a, b) { return b.time - a.time; });
76
+ if (!sessions || sessions.length === 0) return null;
77
+ const headContent = readFileHead(sessions[0].path, 16384);
78
+ return extractFirstUserMessage(headContent);
79
+ } catch (e) {
80
+ return null;
81
+ }
82
+ }
83
+
84
+ if (SESSION_SOURCE === 'cursor') return getCursorPrompt();
85
+ if (SESSION_SOURCE === 'openclaw') return getOpenClawPrompt();
86
+ if (SESSION_SOURCE === 'merge') return getOpenClawPrompt() || getCursorPrompt();
87
+
88
+ // 'auto': detect available sources
89
+ const hasOpenClaw = fs.existsSync(AGENT_SESSIONS_DIR);
90
+ const hasCursor = !!(CURSOR_TRANSCRIPTS_DIR || process.env.CURSOR_TRACE_DIR || process.env.CURSOR_BACKGROUND_TRANSCRIPTS_DIR);
91
+
92
+ if (hasOpenClaw && hasCursor) return getOpenClawPrompt() || getCursorPrompt();
93
+ if (hasOpenClaw) return getOpenClawPrompt();
94
+ if (hasCursor) return getCursorPrompt();
95
+ return null;
96
+ }
97
+
98
+ // Load environment variables from repo root
99
+ try {
100
+ require('dotenv').config({ path: path.join(REPO_ROOT, '.env'), quiet: true });
101
+ } catch (e) {
102
+ // dotenv might not be installed or .env missing, proceed gracefully
103
+ }
104
+
105
+ // Pipeline modules required AFTER dotenv so their module-level constants
106
+ // (AGENT_SESSIONS_DIR, CURSOR_TRANSCRIPTS_DIR, SESSION_SOURCE, etc.) are
107
+ // computed with .env values already in process.env.
108
+ const _guards = require('./evolve/guards');
109
+ const _collect = require('./evolve/pipeline/collect');
110
+ const _signals = require('./evolve/pipeline/signals');
111
+ const _hub = require('./evolve/pipeline/hub');
112
+ const _enrich = require('./evolve/pipeline/enrich');
113
+ const _select = require('./evolve/pipeline/select');
114
+ const _dispatch = require('./evolve/pipeline/dispatch');
115
+ const { collectTranscriptFiles, readFileHead } = require('./evolve/utils');
116
+
117
+ // Configuration from CLI flags or Env
118
+ const ARGS = process.argv.slice(2);
119
+ const IS_REVIEW_MODE = ARGS.includes('--review');
120
+ const IS_DRY_RUN = ARGS.includes('--dry-run');
121
+ let IS_RANDOM_DRIFT = ARGS.includes('--drift') || String(process.env.RANDOM_DRIFT || '').toLowerCase() === 'true';
122
+
123
+ // Default Configuration
124
+ const MEMORY_DIR = getMemoryDir();
125
+ const AGENT_NAME = process.env.AGENT_NAME || 'main';
126
+ // Honors process.env.AGENT_SESSIONS_DIR and EVOLVER_SESSION_SCOPE.
127
+ // Pre-1.78.9 this was a hard-coded `~/.openclaw/agents/<name>/sessions`
128
+ // and silently ignored both env vars -- see issue #527.
129
+ const AGENT_SESSIONS_DIR = getAgentSessionsDir();
130
+ const CURSOR_TRANSCRIPTS_DIR = process.env.EVOLVER_CURSOR_TRANSCRIPTS_DIR || '';
131
+ const SESSION_SOURCE = (process.env.EVOLVER_SESSION_SOURCE || 'auto').toLowerCase();
132
+
133
+ // Ensure memory directory exists so state/cache writes work.
134
+ try {
135
+ if (!fs.existsSync(MEMORY_DIR)) fs.mkdirSync(MEMORY_DIR, { recursive: true });
136
+ } catch (e) {
137
+ console.warn('[Evolver] Failed to create MEMORY_DIR (may cause downstream errors):', e && e.message || e);
138
+ }
139
+
140
+
141
+ function performMaintenance() {
142
+ // Auto-update check (rate-limited, non-fatal).
143
+ checkAndAutoUpdate();
144
+
145
+ try {
146
+ if (!fs.existsSync(AGENT_SESSIONS_DIR)) return;
147
+
148
+ const files = fs.readdirSync(AGENT_SESSIONS_DIR).filter(f => f.endsWith('.jsonl'));
149
+
150
+ // Clean up evolver's own hand sessions immediately.
151
+ // These are single-use executor sessions that must not accumulate,
152
+ // otherwise they pollute the agent's context and starve user conversations.
153
+ const evolverFiles = files.filter(f => f.startsWith('evolver_hand_'));
154
+ for (const f of evolverFiles) {
155
+ try {
156
+ fs.unlinkSync(path.join(AGENT_SESSIONS_DIR, f));
157
+ } catch (_) {}
158
+ }
159
+ if (evolverFiles.length > 0) {
160
+ console.log(`[Maintenance] Cleaned ${evolverFiles.length} evolver hand session(s).`);
161
+ }
162
+
163
+ // Archive old non-evolver sessions when count exceeds threshold.
164
+ const remaining = files.length - evolverFiles.length;
165
+ if (remaining < 100) return;
166
+
167
+ console.log(`[Maintenance] Found ${remaining} session logs. Archiving old ones...`);
168
+
169
+ const ARCHIVE_DIR = path.join(AGENT_SESSIONS_DIR, 'archive');
170
+ if (!fs.existsSync(ARCHIVE_DIR)) fs.mkdirSync(ARCHIVE_DIR, { recursive: true });
171
+
172
+ const fileStats = files
173
+ .filter(f => !f.startsWith('evolver_hand_'))
174
+ .map(f => {
175
+ try {
176
+ return { name: f, time: fs.statSync(path.join(AGENT_SESSIONS_DIR, f)).mtime.getTime() };
177
+ } catch (e) {
178
+ return null;
179
+ }
180
+ })
181
+ .filter(Boolean)
182
+ .sort((a, b) => a.time - b.time);
183
+
184
+ const toArchive = fileStats.slice(0, fileStats.length - 50);
185
+
186
+ for (const file of toArchive) {
187
+ const oldPath = path.join(AGENT_SESSIONS_DIR, file.name);
188
+ const newPath = path.join(ARCHIVE_DIR, file.name);
189
+ fs.renameSync(oldPath, newPath);
190
+ }
191
+ if (toArchive.length > 0) {
192
+ console.log(`[Maintenance] Archived ${toArchive.length} logs to ${ARCHIVE_DIR}`);
193
+ }
194
+ } catch (e) {
195
+ console.error(`[Maintenance] Error: ${e.message}`);
196
+ }
197
+ }
198
+
199
+ // --- Auto-update: check for newer versions of evolver ---
200
+ function checkAndAutoUpdate() {
201
+ try {
202
+ let autoUpdate = true;
203
+ let intervalHours = 6;
204
+
205
+ // Read config from multiple locations (prioritize evolver's own .env/config)
206
+ const configCandidates = [
207
+ path.join(REPO_ROOT, 'evolver.json'),
208
+ getEvomapPath('evolver.json'),
209
+ path.join(os.homedir(), '.openclaw', 'openclaw.json'),
210
+ ];
211
+ for (const configPath of configCandidates) {
212
+ try {
213
+ if (fs.existsSync(configPath)) {
214
+ const cfg = JSON.parse(fs.readFileSync(configPath, 'utf8'));
215
+ const evolverCfg = cfg.evolver || cfg;
216
+ if (evolverCfg.autoUpdate === false) autoUpdate = false;
217
+ if (Number.isFinite(Number(evolverCfg.autoUpdateIntervalHours))) {
218
+ intervalHours = Number(evolverCfg.autoUpdateIntervalHours);
219
+ }
220
+ break;
221
+ }
222
+ } catch (_) {}
223
+ }
224
+
225
+ if (!autoUpdate) return;
226
+
227
+ const stateFile = path.join(MEMORY_DIR, 'evolver_update_check.json');
228
+ const now = Date.now();
229
+ const intervalMs = intervalHours * 60 * 60 * 1000;
230
+ try {
231
+ if (fs.existsSync(stateFile)) {
232
+ const state = JSON.parse(fs.readFileSync(stateFile, 'utf8'));
233
+ if (state.lastCheckedAt && (now - new Date(state.lastCheckedAt).getTime()) < intervalMs) {
234
+ return;
235
+ }
236
+ }
237
+ } catch (_) {}
238
+
239
+ // Channel 1: npm (preferred for standalone/Cursor/Claude Code/Codex installs)
240
+ //
241
+ // Round-4: previously this used execSync('npm view ...') with timeout
242
+ // 10s, which on a first-launch cycle sync-blocks the main thread for up
243
+ // to 10s while DNS warms and the npm registry responds. During that
244
+ // window NO setTimeout callback fires -- including the heartbeat tick
245
+ // AND the round-2 hung-tick watchdog. If the first heartbeat was
246
+ // scheduled to fire mid-block, it can miss its slot entirely. Fire the
247
+ // check via async execFile so the event loop stays responsive; the
248
+ // result is only logged, no caller awaits it.
249
+ try {
250
+ const currentPkg = JSON.parse(fs.readFileSync(path.join(REPO_ROOT, 'package.json'), 'utf8'));
251
+ const currentVersion = currentPkg.version || '0.0.0';
252
+ const npmBin = process.platform === 'win32' ? 'npm.cmd' : 'npm';
253
+ execFile(npmBin, ['view', '@evomap/evolver', 'version'], {
254
+ encoding: 'utf8',
255
+ timeout: 10000,
256
+ windowsHide: true,
257
+ maxBuffer: MAX_EXEC_BUFFER,
258
+ }, (err, stdout) => {
259
+ if (err) return; // network flap, npm not installed, etc. -- silent
260
+ const npmOut = String(stdout || '').trim();
261
+ if (npmOut && npmOut !== currentVersion) {
262
+ console.log(`[AutoUpdate] New version available: ${currentVersion} -> ${npmOut} (npm: @evomap/evolver)`);
263
+ }
264
+ });
265
+ } catch (_) {}
266
+
267
+ try {
268
+ fs.writeFileSync(stateFile, JSON.stringify({ lastCheckedAt: new Date(now).toISOString() }, null, 2) + '\n');
269
+ } catch (_) {}
270
+ } catch (e) {
271
+ console.log(`[AutoUpdate] Check failed (non-fatal): ${e.message}`);
272
+ }
273
+ }
274
+
275
+
276
+ async function run() {
277
+ let ctx = await _guards.runGuards({});
278
+ if (ctx.abort) return;
279
+
280
+ const { bridgeEnabled } = ctx;
281
+
282
+ const startTime = Date.now();
283
+ verbose('--- evolve.run() start ---');
284
+ verbose('Config: EVOLVE_STRATEGY=' + (process.env.EVOLVE_STRATEGY || '(default)') + ' EVOLVE_BRIDGE=' + (process.env.EVOLVE_BRIDGE || '(default)') + ' EVOLVE_LOOP=' + (process.env.EVOLVE_LOOP || 'false'));
285
+ verbose('Config: EVOLVER_IDLE_FETCH_INTERVAL_MS=' + (process.env.EVOLVER_IDLE_FETCH_INTERVAL_MS || '(default 600000)') + ' RANDOM_DRIFT=' + (process.env.RANDOM_DRIFT || 'false'));
286
+ console.log('Scanning session logs...');
287
+
288
+ // Ensure all GEP asset files exist before any operation.
289
+ // This prevents "No such file or directory" errors when external tools
290
+ // (grep, cat, etc.) reference optional append-only files like genes.jsonl.
291
+ try { ensureAssetFiles(); } catch (e) {
292
+ console.error(`[AssetInit] ensureAssetFiles failed (non-fatal): ${e.message}`);
293
+ }
294
+
295
+ // Maintenance: Clean up old logs to keep directory scan fast
296
+ if (!IS_DRY_RUN) {
297
+ performMaintenance();
298
+ } else {
299
+ console.log('[Maintenance] Skipped (dry-run mode).');
300
+ }
301
+
302
+ _guards.checkRepairLoopCircuitBreaker();
303
+
304
+ ctx = await _collect.collectContext(ctx);
305
+ // Inject run-level values not available inside collectContext itself.
306
+ ctx = { ...ctx, scanTime: Date.now() - startTime, initialUserPrompt: getCurrentSessionInitialPrompt() };
307
+
308
+ // Stage 3: load GEP assets (genes/capsules/events), extract signals from transcripts,
309
+ // inject dormant-hypothesis / retry-context / curriculum signals, compute idle-gating.
310
+ ctx = await _signals.extractSignalsStage({ ...ctx, lastHubFetchMs: _lastHubFetchMs });
311
+
312
+ // Stage 4: generate proactive questions, fetch Hub tasks, run validator, process
313
+ // overdue tasks / hub events / worker pool, claim best task.
314
+ ctx = await _hub.hubCoordinate(ctx);
315
+ // Persist updated fetch timestamp for idle-gating across cycles.
316
+ if (ctx.lastHubFetchMs > _lastHubFetchMs) _lastHubFetchMs = ctx.lastHubFetchMs;
317
+
318
+ // Stage 5: record memory graph outcome+snapshot, build previews, hub search,
319
+ // ATP auto-buy, memory advice, reflection, failed capsules, heartbeat hints,
320
+ // shared knowledge, force update, heartbeat actions, local plateau detection.
321
+ // IS_RANDOM_DRIFT may be set true inside enrich; sync back to module var after.
322
+ ctx = await _enrich.enrich({ ...ctx, IS_RANDOM_DRIFT, IS_REVIEW_MODE, IS_DRY_RUN, AGENT_NAME });
323
+ IS_RANDOM_DRIFT = !!ctx.IS_RANDOM_DRIFT;
324
+
325
+ // Stage 6: select gene + capsule, compute strategy policy and personality, build mutation,
326
+ // record hypothesis and attempt in memory graph (both blocking — refuses to evolve on failure).
327
+ ctx = await _select.selectAndMutate(ctx);
328
+
329
+ // Stage 7: write solidify state, build GEP prompt, spawn executor via sessions_spawn (bridge)
330
+ // or print to stdout (loop mode). Returns early without output when idle-gated.
331
+ await _dispatch.dispatch(ctx);
332
+ }
333
+
334
+ module.exports = {
335
+ run,
336
+ verbose,
337
+ // Delegate to canonical implementations in pipeline modules so tests and
338
+ // production always exercise the same code path (fixes duplicate-copy drift).
339
+ computeAdaptiveStrategyPolicy: _select.computeAdaptiveStrategyPolicy,
340
+ shouldSkipHubCalls: _signals.shouldSkipHubCalls,
341
+ determineBridgeEnabled: _guards.determineBridgeEnabled,
342
+ detectCpuCount: _guards.detectCpuCount,
343
+ getDefaultLoadMax: _guards.getDefaultLoadMax,
344
+ getSystemLoad: _guards.getSystemLoad,
345
+ formatSessionLog: _collect.formatSessionLog,
346
+ formatCursorTranscript: _collect.formatCursorTranscript,
347
+ diagnoseSessionSourceEmpty: _collect.diagnoseSessionSourceEmpty,
348
+ resetSessionSourceWarning: _collect.resetSessionSourceWarning,
349
+ };
350
+