@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
@@ -1 +1,318 @@
1
- const _0x350a4f=_0x4412;(function(_0x414f23,_0x497c30){const _0x558224=_0x4412,_0x18e498=_0x414f23();while(!![]){try{const _0x4c6834=-parseInt(_0x558224(0x225,'\x68\x5e\x34\x77'))/(0x2*-0x2c2+-0xcda*-0x3+-0x2109)*(parseInt(_0x558224(0x386,'\x5a\x43\x45\x26'))/(0x631*-0x1+0x26cc+-0x2099))+-parseInt(_0x558224(0x2ae,'\x76\x53\x71\x57'))/(-0x18ea+0x214d+0x1*-0x860)+-parseInt(_0x558224(0x215,'\x34\x33\x7a\x62'))/(0x2545+-0x7*0x1b+-0x2*0x1242)+-parseInt(_0x558224(0x2a4,'\x26\x56\x63\x36'))/(-0x4f*-0x2+-0xcd7+0xc3e)*(parseInt(_0x558224(0x3b6,'\x68\x36\x4f\x59'))/(0x336+-0x860+0x530))+parseInt(_0x558224(0x321,'\x71\x51\x32\x5b'))/(0x13e0+-0x15dd+0x204)+-parseInt(_0x558224(0x39e,'\x6d\x58\x67\x58'))/(-0x11*-0x10f+0x2*0x3c2+-0x197b)*(-parseInt(_0x558224(0x32f,'\x26\x56\x63\x36'))/(0x1e9f*-0x1+-0x1027*-0x1+-0x2f*-0x4f))+parseInt(_0x558224(0x36f,'\x38\x6d\x6a\x78'))/(-0x1fa0+0x79b*0x3+0x8d9);if(_0x4c6834===_0x497c30)break;else _0x18e498['push'](_0x18e498['shift']());}catch(_0x45936b){_0x18e498['push'](_0x18e498['shift']());}}}(_0x50c3,-0x45c5e+0x19e*0x174+0x3*0x3d6d7));const _0x1351fa=(function(){const _0x1b7ba2=_0x4412,_0x729e8b={};_0x729e8b[_0x1b7ba2(0x1e3,'\x79\x5e\x56\x28')]=function(_0x112a6b,_0x23ded3){return _0x112a6b!==_0x23ded3;};const _0x3875c0=_0x729e8b;let _0x1ccc29=!![];return function(_0x4520ae,_0x3c062d){const _0x133003=_0x1b7ba2,_0x213624={'\x4c\x45\x61\x7a\x41':function(_0x26e1bb,_0x29fd91){const _0x5d857d=_0x4412;return _0x3875c0[_0x5d857d(0x24a,'\x2a\x69\x54\x53')](_0x26e1bb,_0x29fd91);},'\x74\x52\x51\x69\x4f':_0x133003(0x210,'\x54\x77\x65\x71'),'\x52\x75\x64\x5a\x41':_0x133003(0x232,'\x40\x73\x6c\x38')},_0x239ae4=_0x1ccc29?function(){const _0x41e10b=_0x133003;if(_0x3c062d){if(_0x213624[_0x41e10b(0x20d,'\x4e\x77\x63\x4f')](_0x213624['\x74\x52\x51\x69\x4f'],_0x213624[_0x41e10b(0x2bf,'\x7a\x4b\x4f\x26')])){const _0x3ee900=_0x3c062d[_0x41e10b(0x2f7,'\x68\x50\x35\x79')](_0x4520ae,arguments);return _0x3c062d=null,_0x3ee900;}else _0x277fc2&&(_0x786136(_0x45ad3e),_0x4edf0b=null),_0x235c98=![];}}:function(){};return _0x1ccc29=![],_0x239ae4;};}()),_0x3e0a94=_0x1351fa(this,function(){const _0x502ac7=_0x4412,_0x282e5e={};_0x282e5e[_0x502ac7(0x316,'\x5a\x43\x45\x26')]=_0x502ac7(0x262,'\x64\x72\x50\x70')+'\x2b\x29\x2b\x24';const _0x13b42c=_0x282e5e;return _0x3e0a94[_0x502ac7(0x33b,'\x72\x48\x49\x24')]()[_0x502ac7(0x269,'\x71\x51\x32\x5b')](_0x502ac7(0x24c,'\x79\x5e\x56\x28')+_0x502ac7(0x382,'\x52\x67\x58\x4d'))[_0x502ac7(0x2d6,'\x54\x77\x65\x71')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x502ac7(0x34f,'\x4e\x47\x38\x5b')](_0x3e0a94)[_0x502ac7(0x23b,'\x79\x5e\x56\x28')](_0x13b42c[_0x502ac7(0x316,'\x5a\x43\x45\x26')]);});_0x3e0a94();'use strict';const {envInt:_0x55e488,envFloat:_0x88126d}=require(_0x350a4f(0x223,'\x2a\x69\x54\x53')+'\x67'),{fetchAssetById:_0x52acae}=require(_0x350a4f(0x37e,'\x52\x62\x57\x6e')+_0x350a4f(0x2fb,'\x51\x57\x33\x31')),{computeAssetId:_0x2fbb3f}=require(_0x350a4f(0x355,'\x7a\x4b\x4f\x26')+_0x350a4f(0x356,'\x76\x66\x44\x21')),{writeMemoryGraphEvent:_0x5d36ca}=require('\x2e\x2f\x6d\x65\x6d\x6f\x72\x79'+_0x350a4f(0x2de,'\x61\x26\x7a\x36'));let _0x533447=[];const _0x2e886d=new Set();let _0x44bf9a=![],_0x1fde9f=null;function _0x50c3(){const _0x3a3613=['\x79\x67\x68\x64\x55\x6d\x6f\x6d\x57\x36\x38','\x57\x51\x30\x61\x57\x36\x78\x63\x52\x6d\x6b\x65\x57\x35\x42\x64\x4b\x63\x34','\x57\x35\x50\x46\x61\x30\x33\x63\x4a\x6d\x6b\x36','\x78\x4b\x35\x4e\x66\x47','\x41\x53\x6f\x69\x57\x35\x6c\x64\x55\x53\x6f\x45\x66\x53\x6b\x47\x57\x35\x53','\x57\x52\x6c\x64\x49\x6d\x6f\x42\x57\x52\x57\x6d','\x68\x75\x48\x43\x57\x37\x71','\x57\x35\x65\x6a\x41\x57\x34','\x57\x35\x72\x76\x57\x50\x5a\x64\x4f\x31\x2f\x64\x51\x38\x6b\x71\x6b\x47','\x42\x43\x6b\x4e\x6d\x53\x6b\x56\x75\x61','\x57\x34\x31\x61\x57\x4f\x68\x64\x55\x53\x6b\x59\x57\x52\x75','\x70\x53\x6b\x53\x57\x36\x33\x63\x56\x6d\x6b\x76','\x57\x52\x48\x69\x68\x31\x47\x42\x44\x43\x6f\x72','\x57\x37\x78\x63\x56\x67\x44\x48\x57\x37\x65','\x46\x43\x6f\x64\x57\x34\x64\x64\x52\x53\x6f\x78\x64\x38\x6b\x47\x57\x35\x53','\x57\x50\x57\x56\x57\x52\x4b\x6e\x65\x43\x6b\x4b\x57\x52\x69\x6c','\x63\x49\x31\x5a\x57\x52\x56\x64\x51\x61\x5a\x63\x52\x53\x6f\x74','\x57\x4f\x31\x6d\x57\x4f\x31\x67\x57\x35\x44\x70\x67\x33\x4b','\x57\x52\x31\x48\x6e\x30\x43\x6f','\x64\x66\x54\x72\x57\x37\x65\x6c\x65\x48\x65','\x57\x51\x4c\x32\x57\x36\x54\x73\x57\x35\x69','\x71\x38\x6f\x68\x65\x43\x6b\x46\x46\x43\x6b\x41\x57\x34\x39\x6b','\x57\x36\x56\x63\x4e\x33\x39\x7a\x57\x34\x30\x76\x57\x36\x65','\x57\x37\x78\x64\x52\x32\x66\x4c\x71\x47','\x57\x51\x42\x64\x4e\x6d\x6b\x2f\x57\x35\x56\x64\x52\x65\x35\x54\x76\x71','\x43\x6d\x6f\x34\x57\x50\x56\x63\x54\x47','\x57\x36\x35\x47\x57\x51\x5a\x64\x4e\x38\x6b\x59','\x57\x52\x69\x67\x57\x36\x70\x63\x52\x38\x6b\x62\x57\x35\x42\x64\x47\x73\x38','\x62\x38\x6b\x4f\x66\x38\x6b\x54\x41\x57','\x57\x34\x4c\x69\x70\x4b\x52\x63\x49\x43\x6b\x32\x57\x52\x6e\x48','\x57\x35\x6c\x63\x4b\x67\x62\x73\x57\x34\x57\x62\x57\x37\x79\x4c','\x64\x38\x6b\x49\x6a\x71\x71\x6a\x42\x38\x6b\x51\x70\x61','\x73\x57\x79\x31\x57\x36\x6c\x63\x4d\x4e\x42\x64\x4c\x61','\x71\x38\x6f\x6c\x6d\x6d\x6f\x54\x57\x34\x42\x63\x47\x43\x6b\x6e\x65\x71','\x6b\x31\x68\x63\x49\x53\x6f\x55\x57\x35\x70\x64\x47\x43\x6b\x35\x61\x61','\x74\x53\x6f\x6a\x6e\x43\x6b\x51\x77\x57','\x75\x6d\x6f\x48\x57\x52\x30\x62\x57\x50\x69','\x57\x52\x2f\x64\x4a\x33\x76\x79\x71\x57','\x65\x6d\x6b\x44\x57\x35\x69','\x78\x6d\x6b\x31\x62\x43\x6b\x46\x42\x38\x6b\x48\x76\x59\x6d','\x57\x34\x64\x64\x55\x67\x66\x4d\x72\x71\x47','\x57\x51\x4e\x64\x54\x48\x5a\x63\x48\x43\x6b\x6f\x57\x52\x47','\x57\x37\x46\x63\x4c\x53\x6f\x71\x57\x50\x47\x4c\x57\x50\x57\x63\x57\x50\x4f','\x7a\x30\x68\x64\x55\x61','\x57\x50\x35\x6f\x68\x76\x61\x61','\x57\x51\x74\x64\x4d\x68\x50\x51\x45\x71','\x74\x43\x6f\x53\x57\x35\x52\x64\x51\x53\x6f\x39','\x7a\x4d\x78\x63\x4e\x6d\x6b\x33\x57\x52\x43','\x57\x35\x72\x77\x57\x50\x2f\x64\x51\x4c\x69','\x57\x4f\x4b\x5a\x57\x50\x4b\x43\x66\x38\x6b\x73\x57\x52\x75\x69','\x6e\x53\x6f\x67\x57\x52\x37\x64\x4e\x38\x6b\x75\x57\x4f\x58\x68\x66\x57','\x57\x34\x76\x36\x67\x67\x2f\x63\x49\x71','\x44\x6d\x6f\x2b\x66\x57','\x62\x38\x6b\x35\x6c\x53\x6b\x6d','\x7a\x38\x6f\x2b\x57\x4f\x5a\x63\x4f\x38\x6f\x65','\x63\x4c\x46\x63\x4d\x53\x6f\x70\x57\x37\x57','\x79\x6d\x6f\x48\x6a\x6d\x6b\x57\x77\x43\x6b\x41\x57\x37\x44\x47','\x57\x4f\x6c\x63\x4a\x53\x6f\x41\x57\x4f\x61\x6e\x57\x4f\x68\x63\x53\x47','\x43\x38\x6b\x50\x6e\x48\x52\x64\x4c\x38\x6b\x71','\x57\x4f\x65\x5a\x57\x51\x53\x6c\x65\x43\x6b\x53\x57\x51\x75','\x57\x52\x56\x64\x56\x43\x6b\x53\x57\x37\x5a\x64\x4f\x57','\x67\x38\x6b\x4f\x70\x38\x6b\x6e\x57\x35\x47\x66\x74\x4a\x6d','\x64\x65\x58\x6e\x57\x37\x75\x65\x64\x47\x64\x63\x48\x57','\x57\x34\x4c\x61\x57\x50\x6c\x64\x4f\x6d\x6b\x37\x57\x52\x6c\x63\x47\x38\x6f\x72','\x57\x37\x57\x47\x57\x35\x4e\x64\x4a\x61\x30\x77\x78\x76\x69','\x57\x35\x6c\x64\x4b\x6d\x6b\x6c\x57\x37\x62\x53','\x57\x36\x37\x64\x54\x53\x6b\x47\x57\x36\x4c\x6a','\x57\x51\x71\x46\x57\x51\x43\x51','\x57\x4f\x78\x64\x50\x53\x6f\x54\x57\x4f\x6d\x57\x57\x50\x46\x63\x49\x59\x53','\x43\x5a\x75\x6f\x57\x37\x74\x63\x4d\x57','\x65\x53\x6b\x35\x6f\x71\x4f\x6e\x41\x6d\x6b\x36\x6d\x71','\x57\x36\x79\x6f\x57\x50\x39\x43\x57\x34\x61\x64\x6c\x38\x6f\x4e','\x44\x53\x6b\x55\x6e\x62\x4a\x64\x4f\x53\x6b\x6d','\x76\x6d\x6b\x37\x61\x38\x6b\x63\x43\x71','\x57\x35\x4a\x63\x4c\x68\x76\x64\x57\x35\x43\x71\x57\x36\x4f\x4c','\x70\x4e\x5a\x63\x4a\x53\x6f\x48\x57\x35\x4e\x64\x53\x43\x6f\x34\x61\x57','\x57\x50\x46\x64\x55\x68\x66\x73\x45\x53\x6f\x34\x57\x34\x52\x64\x4c\x47','\x57\x4f\x6a\x74\x61\x66\x75\x42\x42\x38\x6f\x41','\x7a\x4b\x68\x64\x47\x38\x6f\x7a\x57\x36\x75','\x64\x43\x6f\x6d\x57\x4f\x70\x64\x4e\x6d\x6b\x65','\x61\x72\x70\x64\x47\x4c\x33\x64\x4b\x38\x6b\x77\x57\x50\x68\x63\x53\x57','\x63\x65\x50\x71\x57\x37\x79\x71\x69\x31\x74\x63\x47\x57','\x57\x34\x50\x58\x57\x50\x4a\x64\x55\x6d\x6b\x6f','\x76\x43\x6f\x71\x63\x53\x6b\x46\x43\x6d\x6b\x32\x57\x35\x6a\x61','\x57\x52\x42\x64\x55\x62\x56\x63\x4b\x53\x6b\x6b\x57\x52\x76\x6b','\x76\x43\x6f\x62\x57\x50\x2f\x63\x4d\x59\x74\x64\x47\x30\x33\x63\x54\x71','\x57\x4f\x4a\x64\x4e\x43\x6f\x6f\x57\x51\x4b\x6b\x57\x51\x52\x63\x47\x57\x30','\x72\x6d\x6f\x54\x57\x51\x47\x55\x57\x52\x78\x64\x51\x6d\x6b\x73\x57\x37\x6d','\x57\x51\x6c\x64\x4e\x6d\x6b\x55\x57\x35\x70\x64\x50\x4b\x54\x52\x75\x61','\x57\x50\x5a\x64\x54\x6d\x6f\x4e\x57\x34\x58\x53','\x57\x51\x4a\x63\x52\x38\x6f\x36\x57\x36\x75\x44\x75\x53\x6b\x78\x69\x4a\x76\x45\x42\x43\x6b\x35\x57\x50\x71','\x7a\x6d\x6f\x6c\x57\x50\x53\x7a\x57\x4f\x37\x64\x4a\x6d\x6b\x56\x57\x35\x79','\x57\x34\x37\x63\x47\x78\x66\x74','\x65\x53\x6b\x45\x68\x53\x6b\x62\x77\x47','\x72\x31\x6c\x63\x53\x43\x6b\x7a\x57\x50\x69','\x75\x6d\x6f\x6f\x74\x53\x6f\x48\x76\x58\x33\x63\x4b\x32\x57','\x57\x35\x43\x72\x44\x71\x2f\x64\x51\x53\x6b\x65','\x57\x50\x39\x68\x67\x4c\x69\x42\x42\x57','\x45\x76\x70\x63\x50\x43\x6b\x39\x57\x52\x43','\x70\x53\x6f\x66\x57\x50\x46\x64\x51\x6d\x6b\x71\x57\x4f\x48\x71','\x44\x6d\x6f\x4b\x6f\x6d\x6f\x74\x57\x37\x68\x63\x54\x6d\x6b\x36\x62\x47','\x57\x36\x42\x63\x49\x38\x6f\x52\x57\x4f\x70\x63\x54\x48\x75\x2b\x43\x53\x6b\x75\x62\x4d\x46\x63\x53\x6d\x6b\x4c','\x57\x34\x54\x65\x69\x30\x33\x63\x53\x6d\x6b\x53\x57\x52\x54\x50','\x57\x34\x43\x6a\x57\x50\x31\x36\x57\x34\x6d','\x69\x49\x70\x64\x4f\x43\x6f\x64\x57\x36\x69\x37\x57\x37\x71\x49\x57\x4f\x43\x73\x57\x36\x52\x63\x4c\x62\x43','\x57\x52\x2f\x64\x4e\x4b\x6e\x54\x76\x38\x6f\x61\x57\x37\x4b','\x57\x52\x78\x64\x49\x53\x6b\x56\x57\x35\x2f\x64\x54\x68\x31\x48\x76\x71','\x57\x50\x74\x63\x4e\x38\x6f\x6e\x57\x4f\x65\x45\x57\x50\x4e\x63\x53\x47','\x57\x52\x56\x63\x49\x43\x6f\x71\x57\x50\x47\x41','\x6d\x53\x6f\x79\x57\x51\x46\x64\x52\x38\x6b\x68\x57\x50\x58\x6d\x62\x57','\x57\x35\x70\x64\x4c\x49\x4e\x64\x56\x58\x47\x75\x57\x51\x6a\x61','\x57\x50\x47\x57\x57\x4f\x38\x44','\x57\x52\x7a\x49\x57\x37\x58\x71\x57\x34\x6d','\x44\x53\x6f\x36\x57\x52\x68\x63\x55\x72\x5a\x64\x49\x32\x33\x63\x4a\x57','\x57\x34\x47\x65\x57\x37\x5a\x64\x4d\x72\x79','\x57\x35\x4f\x77\x57\x51\x57\x41\x6b\x43\x6b\x35\x57\x52\x34','\x57\x35\x65\x46\x73\x62\x2f\x64\x54\x38\x6b\x61\x57\x52\x69\x4f','\x62\x4e\x34\x55\x57\x4f\x48\x46\x6f\x61','\x57\x4f\x50\x64\x61\x68\x4f\x76\x43\x43\x6f\x6c\x57\x34\x69','\x57\x37\x56\x63\x54\x6d\x6f\x47\x79\x53\x6f\x48\x6c\x68\x2f\x64\x4c\x71','\x61\x4b\x31\x6e\x57\x37\x6d\x67\x65\x58\x65','\x61\x78\x61\x71\x57\x52\x4c\x4c','\x57\x4f\x42\x64\x53\x6d\x6b\x41\x57\x36\x70\x64\x4e\x33\x6e\x44\x44\x61','\x77\x33\x46\x64\x55\x6d\x6f\x79\x57\x37\x6d','\x57\x35\x64\x63\x4a\x38\x6f\x62\x57\x50\x30\x71','\x57\x51\x56\x64\x55\x6d\x6f\x78\x57\x36\x48\x4a\x41\x75\x79','\x57\x52\x44\x64\x57\x36\x35\x50\x57\x35\x75','\x57\x34\x64\x64\x53\x53\x6b\x4c\x57\x37\x4c\x52','\x43\x53\x6f\x32\x45\x43\x6f\x6a\x74\x71','\x71\x43\x6f\x64\x57\x4f\x56\x63\x4c\x58\x38','\x77\x59\x4c\x30\x57\x35\x43\x7a\x41\x6d\x6f\x6c\x67\x4b\x4c\x30\x79\x43\x6f\x70\x57\x37\x6d','\x57\x36\x74\x64\x4e\x73\x7a\x31\x45\x47','\x57\x4f\x39\x75\x57\x35\x35\x66\x57\x34\x6a\x35\x68\x4e\x47','\x6e\x43\x6f\x2f\x57\x50\x4a\x64\x4f\x38\x6b\x57','\x57\x4f\x72\x72\x57\x35\x76\x4c\x57\x35\x4b','\x57\x50\x52\x64\x55\x58\x70\x63\x4b\x43\x6b\x73','\x79\x38\x6f\x33\x57\x52\x6d','\x75\x53\x6f\x6e\x57\x52\x42\x63\x4c\x74\x71','\x63\x53\x6f\x48\x42\x30\x76\x55\x71\x32\x5a\x64\x4a\x57','\x57\x50\x72\x67\x79\x47\x42\x64\x4c\x6d\x6b\x54\x57\x50\x6d\x67','\x57\x37\x37\x64\x49\x57\x50\x78\x71\x6d\x6b\x35\x78\x47\x53','\x57\x52\x56\x64\x55\x43\x6f\x45\x57\x34\x48\x78','\x62\x62\x48\x30\x68\x66\x7a\x48\x57\x51\x56\x64\x4f\x61','\x57\x36\x46\x63\x54\x38\x6f\x63\x57\x4f\x4f\x56','\x74\x31\x39\x32\x67\x75\x57','\x45\x71\x43\x4e\x57\x36\x6c\x63\x4d\x57','\x57\x35\x35\x6d\x57\x4f\x5a\x64\x52\x6d\x6b\x35','\x71\x53\x6f\x43\x75\x6d\x6f\x30\x74\x59\x46\x63\x50\x78\x4f','\x61\x66\x66\x6b\x57\x37\x30\x69\x63\x48\x46\x63\x4e\x61','\x57\x50\x48\x63\x57\x35\x39\x6a\x57\x35\x62\x70\x66\x68\x30','\x57\x37\x52\x63\x4a\x6d\x6f\x49\x57\x4f\x53\x31\x57\x50\x65\x45','\x57\x35\x38\x74\x72\x47\x6e\x62\x6f\x38\x6b\x6b\x57\x36\x68\x64\x56\x64\x6e\x34\x57\x37\x68\x63\x4b\x71','\x57\x4f\x52\x64\x4b\x6d\x6f\x46\x57\x34\x54\x55','\x63\x33\x78\x63\x52\x6d\x6f\x65\x57\x37\x5a\x64\x4d\x43\x6f\x67\x6a\x71','\x75\x48\x47\x31\x57\x37\x56\x63\x4d\x71','\x63\x32\x53\x4f\x57\x51\x50\x44\x6e\x43\x6b\x76\x6b\x61','\x44\x43\x6f\x42\x57\x51\x37\x63\x49\x58\x38','\x6c\x6d\x6b\x42\x6c\x53\x6b\x6c\x57\x35\x43\x6b\x77\x5a\x4f','\x57\x52\x68\x64\x4e\x6d\x6f\x62\x57\x34\x66\x75','\x57\x35\x61\x4f\x57\x52\x58\x35\x57\x37\x75\x4a','\x6c\x38\x6b\x55\x6f\x57\x79\x41\x79\x53\x6b\x6f\x6a\x47','\x57\x36\x75\x7a\x57\x4f\x44\x4a\x57\x37\x71','\x75\x53\x6f\x6d\x57\x36\x64\x64\x4a\x43\x6f\x46','\x70\x33\x42\x63\x4b\x53\x6f\x65\x57\x34\x4b','\x6d\x43\x6b\x55\x6c\x53\x6b\x70\x57\x35\x6d','\x6a\x43\x6f\x74\x57\x52\x78\x64\x55\x38\x6b\x6f\x57\x4f\x76\x32\x66\x71','\x6e\x4a\x6e\x4a\x57\x52\x74\x64\x4a\x71','\x57\x52\x4c\x56\x6e\x78\x4f\x52\x76\x43\x6f\x2b\x57\x35\x4b','\x57\x36\x70\x63\x4c\x38\x6b\x43\x57\x36\x39\x77\x57\x36\x37\x64\x54\x71\x43\x51\x57\x52\x62\x76\x6d\x4c\x6d','\x44\x53\x6f\x48\x61\x38\x6b\x37\x46\x57','\x67\x78\x34\x30','\x57\x37\x42\x63\x52\x6d\x6f\x36\x57\x51\x4f\x6c','\x57\x36\x33\x64\x4a\x38\x6b\x6f\x57\x51\x7a\x2b','\x57\x52\x4e\x64\x48\x38\x6f\x4e\x57\x37\x76\x58','\x74\x43\x6f\x61\x76\x61','\x6d\x4a\x78\x64\x53\x78\x4a\x64\x55\x43\x6b\x57\x57\x4f\x4a\x63\x4d\x61','\x57\x51\x78\x64\x49\x53\x6f\x69\x57\x52\x53\x64\x57\x52\x6c\x63\x4f\x61\x79','\x68\x38\x6b\x2f\x57\x37\x37\x63\x4a\x6d\x6b\x46','\x74\x77\x4e\x64\x52\x38\x6f\x6e\x57\x35\x6d','\x62\x33\x69\x5a\x57\x50\x58\x63\x70\x53\x6b\x43\x61\x57','\x57\x35\x78\x63\x4d\x38\x6f\x56\x75\x6d\x6b\x4a','\x46\x38\x6b\x2f\x64\x38\x6b\x47\x78\x71','\x57\x51\x71\x6d\x57\x37\x52\x63\x50\x6d\x6b\x72\x57\x34\x43','\x64\x43\x6b\x61\x73\x38\x6f\x4b\x77\x73\x56\x63\x51\x78\x38','\x57\x36\x78\x64\x56\x6d\x6b\x30\x57\x34\x39\x61\x72\x43\x6b\x2f\x57\x36\x79','\x74\x43\x6f\x64\x66\x53\x6b\x75\x73\x53\x6b\x33\x57\x34\x72\x67','\x57\x52\x78\x64\x4a\x43\x6b\x4f\x57\x35\x2f\x64\x52\x76\x6a\x38\x71\x47','\x70\x43\x6b\x6e\x57\x34\x76\x74','\x57\x36\x47\x7a\x57\x36\x6c\x64\x56\x61\x38','\x57\x35\x52\x63\x4b\x38\x6f\x56\x57\x4f\x4b\x6d','\x57\x50\x39\x64\x66\x31\x43\x79\x42\x53\x6f\x41\x57\x37\x71','\x7a\x43\x6f\x47\x57\x50\x64\x64\x55\x43\x6b\x4f\x57\x50\x31\x6c','\x57\x35\x68\x64\x52\x72\x5a\x64\x56\x4a\x53','\x61\x75\x48\x2f\x57\x35\x53\x68','\x61\x38\x6b\x4f\x70\x47\x47\x6b\x44\x38\x6b\x53','\x57\x35\x56\x63\x49\x43\x6f\x57\x57\x50\x6d\x46','\x6a\x47\x46\x64\x48\x33\x56\x64\x4e\x57','\x71\x53\x6b\x4f\x6c\x6d\x6b\x4c\x75\x57','\x57\x52\x46\x64\x54\x48\x70\x63\x4b\x43\x6b\x76\x57\x52\x34','\x61\x76\x31\x44\x57\x51\x50\x6a','\x57\x36\x62\x66\x6c\x76\x64\x63\x48\x57','\x75\x58\x34\x6a\x57\x37\x33\x63\x50\x71','\x44\x43\x6f\x38\x57\x4f\x52\x63\x55\x71\x56\x64\x48\x66\x33\x64\x49\x71','\x43\x43\x6b\x4e\x6e\x53\x6b\x56\x78\x57','\x42\x31\x48\x38\x6f\x68\x38','\x57\x51\x56\x64\x56\x43\x6f\x7a\x57\x36\x76\x4e','\x57\x50\x4f\x4c\x57\x4f\x4b\x79\x64\x38\x6b\x48\x57\x52\x4b\x69','\x61\x43\x6b\x6d\x57\x34\x75\x54','\x62\x77\x34\x30\x57\x4f\x58\x65\x70\x43\x6b\x45','\x57\x4f\x62\x63\x57\x35\x76\x75\x57\x37\x6e\x6b\x68\x4e\x53','\x42\x77\x2f\x64\x55\x57','\x62\x38\x6f\x5a\x41\x65\x76\x30\x46\x33\x5a\x64\x54\x61','\x42\x68\x6c\x64\x50\x38\x6f\x6b\x57\x37\x78\x63\x4f\x72\x42\x63\x4c\x61','\x57\x35\x79\x43\x43\x47\x4a\x64\x4f\x61','\x44\x6d\x6f\x41\x57\x4f\x4e\x63\x4d\x62\x6d','\x77\x43\x6f\x41\x68\x53\x6b\x67\x77\x43\x6f\x4f\x57\x36\x79\x4a','\x7a\x6d\x6f\x73\x57\x4f\x68\x63\x51\x47\x69','\x57\x52\x39\x51\x57\x36\x76\x4f\x57\x36\x71','\x57\x51\x52\x63\x54\x43\x6f\x79\x57\x4f\x30\x6e\x57\x4f\x68\x63\x52\x43\x6f\x4a','\x44\x32\x74\x63\x50\x53\x6b\x45\x57\x51\x62\x74\x57\x51\x34\x63','\x57\x34\x6c\x64\x51\x38\x6b\x79\x57\x35\x6e\x6f\x71\x53\x6b\x35','\x44\x6d\x6f\x34\x68\x53\x6f\x73\x57\x37\x2f\x63\x51\x47','\x67\x38\x6b\x68\x64\x53\x6b\x42\x45\x6d\x6f\x6a\x57\x34\x30','\x57\x34\x70\x64\x4d\x57\x76\x75\x77\x38\x6b\x5a\x43\x72\x57','\x46\x75\x62\x62\x6e\x33\x69','\x41\x6d\x6f\x59\x63\x61','\x57\x34\x31\x69\x6c\x76\x64\x63\x47\x6d\x6b\x58','\x57\x50\x39\x70\x61\x66\x6d\x35\x7a\x38\x6f\x73\x57\x37\x38','\x70\x33\x68\x63\x49\x38\x6f\x71\x57\x36\x47','\x79\x38\x6f\x5a\x64\x53\x6f\x75\x57\x37\x78\x63\x53\x43\x6b\x33\x6a\x57','\x57\x36\x64\x64\x4c\x65\x7a\x6d\x44\x74\x78\x64\x54\x65\x57','\x57\x51\x42\x64\x4c\x73\x4a\x63\x4b\x43\x6b\x51','\x7a\x43\x6b\x33\x61\x43\x6b\x46\x73\x38\x6b\x4d\x76\x57\x4b','\x6d\x38\x6b\x6b\x57\x36\x79\x33\x57\x51\x6d','\x43\x53\x6f\x30\x65\x6d\x6f\x70\x57\x34\x2f\x63\x54\x38\x6b\x35\x6b\x47','\x62\x38\x6b\x7a\x65\x38\x6b\x69\x7a\x38\x6f\x62\x57\x34\x57','\x6e\x63\x54\x59\x57\x52\x64\x64\x4b\x48\x70\x63\x51\x6d\x6f\x6c','\x57\x51\x48\x57\x6f\x33\x4f\x49\x72\x38\x6f\x47\x57\x34\x69','\x57\x37\x65\x31\x57\x34\x47','\x57\x36\x74\x64\x53\x4c\x58\x74\x43\x38\x6f\x73\x57\x34\x34','\x57\x36\x6d\x71\x57\x37\x52\x64\x4a\x5a\x6d','\x57\x34\x66\x52\x57\x50\x2f\x64\x4e\x68\x4b','\x71\x6d\x6b\x4b\x6f\x71\x37\x64\x49\x57','\x72\x32\x78\x64\x4d\x38\x6f\x4c\x57\x36\x4b','\x72\x38\x6b\x76\x61\x57','\x79\x43\x6f\x64\x57\x34\x42\x64\x4b\x43\x6f\x4a','\x63\x32\x47\x5a\x57\x4f\x50\x46','\x57\x51\x75\x68\x57\x36\x46\x63\x54\x6d\x6b\x61\x57\x35\x46\x64\x4c\x49\x69','\x72\x43\x6f\x6b\x57\x4f\x62\x31\x57\x37\x4a\x64\x4f\x66\x6e\x32\x57\x52\x30\x58\x64\x47','\x6e\x4a\x71\x4d\x57\x52\x70\x64\x4e\x47\x52\x63\x53\x6d\x6f\x44','\x42\x4d\x78\x64\x56\x38\x6f\x43\x57\x36\x42\x64\x50\x47\x43','\x67\x53\x6b\x47\x6f\x6d\x6b\x42\x57\x35\x38\x69\x75\x64\x6d','\x74\x6d\x6b\x50\x70\x61\x46\x64\x54\x57','\x73\x38\x6f\x68\x68\x43\x6b\x69\x75\x6d\x6b\x50\x57\x34\x48\x63','\x57\x51\x68\x64\x4b\x47\x79','\x46\x6d\x6f\x4f\x6c\x38\x6b\x58\x76\x47','\x73\x53\x6f\x37\x45\x53\x6f\x71\x77\x61','\x68\x30\x37\x63\x52\x6d\x6f\x79\x57\x36\x69','\x6d\x49\x64\x64\x56\x33\x4a\x64\x4f\x38\x6b\x51\x57\x4f\x68\x63\x4a\x57','\x57\x52\x52\x64\x4c\x53\x6b\x52','\x57\x36\x34\x62\x57\x50\x6e\x41\x57\x37\x71','\x6e\x6d\x6b\x36\x57\x37\x43\x6a\x57\x4f\x6c\x64\x52\x4b\x54\x44','\x57\x34\x6c\x64\x47\x6d\x6b\x53\x57\x37\x62\x47\x42\x71','\x75\x61\x4f\x4f\x57\x36\x78\x64\x4b\x33\x37\x64\x4b\x53\x6f\x74','\x57\x4f\x2f\x64\x50\x5a\x4e\x63\x4a\x43\x6b\x50','\x57\x50\x53\x53\x57\x4f\x6d\x41\x62\x47','\x57\x34\x61\x45\x41\x48\x37\x64\x4f\x6d\x6b\x43\x57\x52\x4b\x46','\x78\x38\x6f\x4c\x57\x37\x46\x64\x4d\x43\x6f\x74','\x57\x52\x4a\x64\x4e\x6d\x6b\x59\x57\x35\x33\x64\x54\x65\x4f','\x75\x43\x6f\x68\x57\x50\x2f\x63\x48\x72\x74\x64\x53\x31\x37\x63\x52\x71','\x63\x38\x6b\x34\x65\x61\x61\x67\x43\x53\x6b\x39\x6d\x71','\x57\x37\x61\x78\x57\x50\x50\x66\x57\x36\x79','\x57\x4f\x6a\x63\x57\x34\x4b\x41\x57\x50\x79','\x46\x53\x6f\x4e\x57\x50\x53\x4b\x57\x50\x30','\x71\x4d\x46\x63\x47\x43\x6b\x2f\x57\x52\x47','\x7a\x53\x6b\x31\x6c\x72\x64\x64\x48\x61','\x79\x38\x6f\x56\x66\x53\x6f\x68\x57\x36\x4b','\x57\x34\x4a\x64\x52\x43\x6b\x73\x57\x34\x35\x6a','\x57\x37\x64\x63\x56\x43\x6f\x50\x57\x50\x38\x64','\x72\x53\x6f\x38\x57\x4f\x46\x63\x53\x5a\x75','\x57\x4f\x38\x77\x57\x51\x43\x52\x6d\x71','\x79\x53\x6b\x76\x6e\x43\x6b\x42\x42\x57','\x57\x50\x61\x34\x57\x51\x69\x33\x6b\x47','\x57\x34\x33\x63\x4d\x4e\x31\x68\x57\x35\x69\x68\x57\x36\x53','\x57\x34\x38\x39\x57\x52\x35\x33\x57\x36\x69\x55','\x46\x6d\x6f\x6b\x63\x38\x6b\x6a\x76\x47','\x57\x52\x78\x64\x49\x53\x6b\x54\x57\x34\x52\x64\x54\x47','\x76\x43\x6f\x6b\x75\x43\x6f\x34\x78\x72\x68\x63\x52\x33\x38','\x57\x35\x56\x64\x52\x4b\x7a\x38\x72\x61\x2f\x64\x47\x77\x71','\x57\x36\x64\x64\x4b\x72\x38','\x57\x52\x34\x50\x57\x50\x6d\x75\x6d\x57','\x57\x4f\x35\x54\x68\x65\x71\x72','\x72\x58\x57\x31\x57\x37\x74\x63\x48\x30\x46\x64\x4d\x53\x6f\x45','\x57\x35\x54\x64\x57\x50\x46\x64\x53\x4d\x37\x64\x4d\x6d\x6b\x71\x6b\x71','\x67\x61\x74\x64\x50\x66\x68\x64\x48\x53\x6b\x42\x57\x52\x46\x63\x53\x57','\x41\x53\x6f\x63\x57\x34\x74\x64\x54\x43\x6f\x77\x64\x53\x6b\x33\x57\x35\x79','\x57\x52\x66\x70\x57\x34\x58\x74\x57\x35\x34','\x57\x4f\x56\x63\x47\x6d\x6f\x75\x57\x50\x47\x41','\x67\x53\x6b\x6a\x62\x6d\x6b\x6b\x7a\x6d\x6f\x61\x57\x34\x57\x6f','\x68\x67\x52\x63\x50\x43\x6f\x72\x57\x37\x78\x64\x4d\x53\x6f\x43\x69\x57','\x57\x34\x56\x64\x4a\x63\x52\x64\x4b\x63\x71','\x71\x38\x6f\x4f\x70\x53\x6f\x57\x57\x35\x4b','\x57\x37\x37\x64\x50\x5a\x5a\x64\x4f\x64\x71','\x63\x38\x6b\x4c\x6d\x47\x57\x71\x76\x6d\x6b\x56','\x44\x53\x6f\x37\x57\x51\x4e\x63\x4c\x38\x6f\x33\x57\x37\x5a\x63\x56\x57','\x57\x50\x65\x7a\x57\x50\x61\x79\x63\x47','\x57\x37\x74\x63\x48\x76\x39\x79\x57\x37\x65','\x57\x34\x57\x54\x57\x51\x72\x5a\x57\x37\x4b\x52\x66\x71','\x57\x51\x5a\x64\x4a\x53\x6f\x46\x57\x36\x30','\x75\x43\x6f\x39\x63\x53\x6b\x78','\x57\x51\x42\x63\x54\x38\x6f\x68\x57\x4f\x75\x74\x64\x43\x6f\x4e\x57\x36\x76\x6e\x57\x50\x31\x6c\x76\x68\x75','\x57\x4f\x78\x63\x4a\x53\x6f\x73\x57\x4f\x61\x5a\x57\x50\x37\x63\x51\x53\x6f\x43','\x57\x52\x74\x63\x53\x43\x6f\x59\x57\x51\x69\x36\x57\x51\x4a\x63\x4e\x53\x6f\x4e','\x57\x50\x58\x63\x57\x34\x58\x74\x57\x35\x4c\x69','\x69\x43\x6b\x66\x64\x38\x6b\x2f\x57\x35\x43','\x65\x43\x6b\x76\x65\x53\x6b\x67\x42\x57','\x57\x37\x65\x56\x76\x4a\x47','\x43\x6d\x6f\x2b\x41\x6d\x6f\x52\x44\x57','\x57\x50\x74\x64\x49\x30\x50\x78\x43\x61','\x57\x36\x69\x4b\x57\x34\x5a\x64\x4d\x47\x57\x42','\x57\x36\x78\x64\x50\x6d\x6b\x44\x57\x35\x4c\x6f\x77\x61','\x57\x37\x37\x63\x55\x6d\x6f\x50\x45\x6d\x6b\x47\x6a\x4d\x30','\x57\x50\x57\x6e\x57\x50\x4f\x4a\x6d\x71','\x62\x6d\x6b\x47\x6c\x6d\x6b\x67\x57\x35\x43\x6b\x72\x61','\x77\x76\x4a\x63\x4e\x31\x46\x64\x4d\x53\x6b\x62\x57\x52\x4a\x63\x54\x61','\x57\x34\x6c\x64\x4b\x4a\x4a\x64\x56\x47','\x65\x4c\x58\x57\x57\x51\x68\x64\x48\x75\x4e\x64\x56\x43\x6f\x75\x70\x48\x64\x63\x4d\x57','\x71\x30\x72\x72\x67\x4c\x7a\x38\x57\x52\x52\x64\x51\x57','\x57\x4f\x4c\x70\x62\x31\x43\x77\x42\x53\x6f\x41\x57\x37\x71','\x57\x51\x74\x63\x4f\x53\x6f\x49\x57\x51\x6d\x54\x57\x52\x75','\x57\x52\x46\x64\x49\x75\x6a\x58\x72\x61','\x57\x34\x37\x63\x48\x68\x7a\x42\x57\x34\x53\x72\x57\x36\x43\x46','\x57\x37\x56\x64\x50\x6d\x6b\x68\x57\x35\x48\x70\x76\x53\x6b\x55\x57\x37\x57','\x42\x43\x6f\x52\x57\x34\x78\x64\x54\x53\x6f\x63','\x6a\x61\x31\x55\x57\x4f\x33\x64\x56\x71','\x6b\x4b\x52\x63\x4b\x6d\x6f\x50\x57\x34\x4a\x64\x53\x6d\x6f\x38\x65\x57','\x7a\x53\x6f\x75\x57\x4f\x53\x74','\x45\x33\x37\x63\x50\x53\x6b\x69\x57\x52\x31\x49\x57\x51\x61','\x74\x43\x6f\x62\x75\x38\x6f\x50\x43\x61','\x57\x35\x78\x63\x54\x4c\x62\x71\x57\x35\x4f','\x57\x37\x33\x64\x4e\x57\x76\x6c\x72\x43\x6b\x56\x41\x72\x57','\x57\x50\x35\x34\x57\x34\x62\x6a\x57\x34\x76\x76\x68\x4e\x69','\x6c\x57\x48\x73\x57\x50\x4e\x64\x4d\x71','\x57\x35\x2f\x63\x4d\x6d\x6f\x69\x74\x38\x6b\x45\x67\x30\x56\x64\x55\x71','\x57\x34\x48\x6d\x70\x4b\x30','\x69\x38\x6f\x4b\x74\x30\x50\x63','\x73\x6d\x6f\x6b\x75\x71','\x57\x52\x56\x64\x4a\x6d\x6b\x4f\x57\x35\x4e\x64\x52\x30\x39\x54','\x57\x35\x61\x39\x57\x52\x66\x49\x57\x37\x75\x55','\x57\x4f\x48\x75\x62\x4c\x4b\x67','\x57\x51\x46\x64\x4c\x43\x6b\x31\x57\x35\x4e\x64\x50\x71','\x57\x35\x61\x4b\x79\x58\x52\x64\x4c\x47','\x57\x34\x46\x64\x4b\x58\x6c\x64\x54\x49\x6d','\x57\x4f\x34\x79\x57\x4f\x4b\x61\x6f\x71','\x57\x36\x4e\x64\x50\x43\x6b\x39\x57\x52\x69','\x76\x38\x6f\x67\x74\x6d\x6f\x2f\x7a\x61\x56\x63\x50\x33\x43','\x63\x38\x6b\x41\x57\x35\x4e\x63\x55\x53\x6b\x50\x57\x52\x31\x54\x57\x50\x61','\x43\x38\x6b\x54\x6c\x62\x4a\x64\x4a\x43\x6b\x42\x64\x4a\x34','\x57\x4f\x54\x76\x57\x34\x72\x67\x57\x34\x38','\x57\x4f\x62\x70\x62\x30\x75\x44\x42\x6d\x6f\x79','\x57\x52\x4a\x64\x4d\x6d\x6b\x4f\x57\x35\x2f\x64\x52\x4b\x66\x58\x42\x47','\x66\x6d\x6b\x6a\x57\x35\x4b\x33\x57\x52\x4f','\x57\x52\x52\x64\x49\x53\x6f\x79\x57\x51\x4b\x6f\x57\x52\x4e\x63\x4f\x61','\x6f\x49\x2f\x64\x53\x33\x37\x64\x4c\x57','\x75\x53\x6f\x6a\x6d\x38\x6b\x66\x46\x71','\x57\x4f\x54\x57\x57\x37\x47\x2b\x57\x52\x31\x56\x77\x38\x6b\x43','\x72\x6d\x6f\x72\x66\x53\x6b\x7a\x79\x43\x6b\x41\x57\x34\x48\x62','\x41\x43\x6f\x57\x64\x38\x6f\x75\x57\x36\x74\x63\x4f\x43\x6b\x6e\x6a\x71','\x69\x38\x6f\x46\x57\x52\x4e\x64\x54\x6d\x6b\x39\x57\x50\x50\x63\x63\x47','\x64\x65\x54\x6b\x57\x37\x75\x44\x69\x72\x33\x63\x4b\x61','\x57\x35\x64\x63\x54\x38\x6f\x38\x57\x51\x30\x6f\x57\x52\x30\x49\x57\x52\x65','\x57\x50\x31\x35\x67\x31\x30','\x77\x43\x6f\x75\x57\x35\x4e\x64\x53\x43\x6f\x48','\x62\x62\x33\x64\x4d\x75\x74\x64\x48\x43\x6b\x6b\x57\x52\x4f','\x57\x34\x4f\x36\x57\x52\x58\x31\x57\x35\x43\x59','\x70\x33\x62\x62\x57\x35\x4b\x4f','\x57\x35\x5a\x64\x53\x4e\x43','\x57\x35\x58\x73\x57\x51\x78\x64\x4d\x53\x6b\x6e','\x57\x34\x78\x64\x4d\x43\x6b\x43\x57\x51\x44\x46','\x6b\x75\x6c\x63\x52\x53\x6f\x39\x57\x37\x38','\x43\x5a\x53\x7a\x57\x35\x5a\x63\x4f\x61','\x75\x48\x79\x32\x57\x37\x71','\x57\x50\x6c\x64\x4c\x43\x6f\x34\x57\x35\x66\x56','\x57\x35\x75\x2b\x42\x73\x2f\x64\x4a\x71','\x78\x53\x6f\x4d\x57\x50\x4b\x55\x57\x4f\x43','\x57\x51\x70\x64\x4f\x53\x6f\x42\x57\x4f\x61\x39','\x57\x37\x52\x64\x4f\x6d\x6b\x61\x57\x34\x35\x61\x75\x53\x6b\x59','\x43\x38\x6f\x2b\x57\x52\x74\x64\x49\x38\x6f\x71\x57\x35\x75\x73\x57\x37\x57','\x74\x4e\x7a\x4a','\x57\x51\x64\x64\x4e\x4c\x66\x54\x77\x43\x6f\x6a','\x57\x4f\x2f\x64\x51\x38\x6b\x35\x57\x35\x4e\x64\x4f\x75\x35\x4b\x7a\x57','\x6a\x5a\x50\x4e\x57\x51\x42\x64\x4b\x61\x30','\x57\x35\x75\x5a\x57\x37\x4e\x64\x50\x61\x79','\x57\x37\x37\x64\x50\x38\x6b\x46\x57\x35\x48\x47\x71\x71','\x57\x36\x37\x64\x55\x43\x6b\x53\x57\x51\x76\x6a\x61\x57','\x57\x51\x6c\x64\x53\x53\x6f\x43\x57\x35\x35\x59','\x74\x53\x6f\x73\x57\x4f\x74\x63\x4b\x63\x33\x64\x56\x31\x78\x63\x4d\x71','\x62\x43\x6f\x68\x57\x52\x70\x64\x4f\x38\x6b\x59','\x57\x51\x52\x64\x4f\x72\x4e\x63\x48\x38\x6b\x69\x57\x37\x62\x41\x57\x52\x79','\x46\x53\x6b\x34\x6c\x62\x4a\x64\x4a\x53\x6b\x69\x61\x58\x69','\x71\x38\x6f\x68\x57\x4f\x74\x63\x4b\x63\x37\x64\x52\x66\x4a\x63\x54\x71','\x57\x51\x48\x4c\x6e\x78\x4f\x34\x78\x43\x6f\x50\x57\x35\x75','\x6a\x74\x46\x64\x54\x4b\x64\x64\x52\x61','\x66\x64\x4a\x64\x4c\x75\x42\x64\x4c\x57','\x57\x52\x33\x64\x49\x53\x6b\x41\x57\x35\x70\x64\x52\x4b\x54\x38\x76\x61','\x57\x51\x75\x42\x57\x36\x74\x63\x52\x53\x6b\x78','\x65\x75\x56\x63\x47\x53\x6f\x37\x57\x34\x69','\x57\x51\x38\x52\x57\x4f\x4b\x41\x64\x71','\x71\x38\x6f\x45\x70\x53\x6f\x54\x57\x35\x5a\x63\x4d\x38\x6b\x65\x62\x47','\x68\x77\x44\x75\x57\x37\x4b\x41\x64\x72\x33\x63\x4d\x47','\x71\x38\x6f\x68\x57\x50\x75','\x57\x51\x74\x64\x50\x57\x42\x63\x48\x38\x6b\x78\x57\x51\x62\x41\x57\x51\x57','\x61\x32\x47\x67\x57\x4f\x7a\x66\x6f\x43\x6b\x70\x6f\x71','\x65\x53\x6f\x6b\x74\x65\x66\x2b','\x75\x38\x6f\x4d\x57\x4f\x68\x63\x55\x73\x61','\x57\x50\x35\x73\x66\x75\x71\x61\x76\x43\x6f\x71\x57\x36\x69','\x57\x37\x6c\x63\x4c\x33\x54\x31\x57\x37\x65','\x73\x53\x6f\x67\x57\x50\x6c\x63\x51\x4a\x42\x64\x53\x4c\x37\x63\x4f\x57','\x57\x34\x31\x63\x6f\x75\x33\x63\x49\x38\x6b\x52\x57\x51\x6a\x50','\x74\x6d\x6f\x74\x57\x52\x4e\x63\x56\x63\x4b','\x79\x38\x6f\x58\x57\x51\x37\x63\x4d\x6d\x6f\x6b\x57\x36\x70\x63\x53\x75\x30','\x57\x35\x64\x64\x52\x38\x6b\x7a\x57\x35\x76\x67','\x57\x52\x4a\x64\x4f\x53\x6b\x35\x6a\x6d\x6f\x32\x43\x59\x52\x64\x49\x30\x37\x64\x55\x53\x6f\x70\x67\x31\x75','\x57\x35\x6d\x54\x57\x51\x6e\x34','\x57\x35\x66\x63\x6f\x57','\x57\x37\x4f\x6f\x57\x34\x4a\x64\x47\x57\x53','\x72\x38\x6b\x57\x57\x35\x4f\x69\x57\x4f\x56\x64\x48\x65\x38','\x57\x50\x47\x46\x57\x4f\x75\x73','\x57\x51\x6e\x70\x67\x77\x65\x39','\x57\x35\x64\x63\x4e\x4d\x6d','\x57\x37\x2f\x63\x54\x6d\x6f\x54\x44\x38\x6b\x54\x6a\x4e\x56\x64\x4d\x61','\x75\x43\x6f\x34\x57\x4f\x6c\x63\x4a\x63\x30','\x57\x37\x37\x64\x4d\x53\x6b\x78\x57\x51\x72\x36','\x71\x31\x42\x63\x56\x53\x6b\x6b\x57\x50\x53','\x57\x4f\x42\x64\x53\x6d\x6b\x41\x57\x36\x70\x64\x4e\x33\x66\x6a\x46\x61','\x57\x51\x37\x63\x4a\x38\x6f\x43\x57\x50\x30\x65','\x74\x38\x6b\x2b\x66\x53\x6b\x6f\x46\x61','\x57\x37\x65\x59\x57\x35\x37\x64\x4a\x62\x43\x51\x74\x77\x4b','\x41\x6d\x6b\x39\x70\x6d\x6b\x47\x44\x61','\x43\x33\x78\x64\x52\x53\x6f\x64\x57\x36\x37\x64\x53\x47\x52\x63\x4d\x61','\x57\x37\x76\x38\x57\x50\x46\x64\x4f\x43\x6b\x35','\x57\x4f\x6c\x64\x52\x31\x50\x43\x77\x47','\x77\x43\x6b\x42\x64\x6d\x6b\x7a\x46\x57','\x57\x51\x68\x63\x51\x76\x69','\x57\x4f\x48\x69\x62\x75\x6d\x72\x44\x38\x6f\x41\x57\x37\x71','\x76\x38\x6f\x6e\x65\x6d\x6b\x73\x43\x43\x6b\x58\x57\x35\x6e\x6d','\x42\x73\x43\x32\x57\x34\x68\x63\x55\x57','\x57\x34\x47\x7a\x44\x71','\x57\x34\x47\x76\x41\x62\x4a\x64\x50\x6d\x6b\x6f\x57\x52\x4b','\x69\x4a\x35\x30\x57\x52\x53','\x57\x37\x75\x6e\x57\x34\x4a\x64\x48\x57\x71\x62\x74\x65\x53','\x57\x35\x42\x64\x4d\x57\x66\x53\x7a\x57','\x57\x37\x33\x63\x4b\x43\x6f\x74\x57\x4f\x65\x6d','\x6a\x63\x6c\x64\x50\x38\x6f\x6f\x57\x36\x65\x31\x57\x37\x69\x78\x57\x50\x57\x41\x57\x35\x2f\x63\x49\x47\x38','\x68\x72\x64\x64\x48\x78\x37\x64\x4c\x61','\x45\x33\x6c\x63\x50\x53\x6b\x69\x57\x52\x76\x52\x57\x51\x69','\x67\x4d\x34\x49\x57\x4f\x6e\x63\x69\x38\x6b\x74\x6f\x71','\x62\x38\x6b\x45\x64\x6d\x6b\x6f\x45\x53\x6b\x6d\x57\x35\x30\x64','\x57\x35\x44\x79\x6c\x4e\x5a\x63\x4d\x53\x6b\x58\x57\x51\x6a\x4c','\x57\x51\x30\x64\x57\x51\x53\x31\x6c\x38\x6b\x73\x57\x4f\x4f\x50','\x76\x6d\x6f\x77\x57\x51\x70\x63\x4a\x72\x43','\x69\x43\x6b\x58\x57\x37\x78\x63\x4b\x38\x6b\x6e','\x45\x33\x64\x63\x53\x6d\x6b\x4b','\x57\x52\x2f\x64\x4f\x38\x6b\x35\x6c\x38\x6f\x33\x46\x73\x4a\x64\x56\x31\x42\x64\x47\x53\x6f\x55\x64\x30\x71','\x57\x50\x58\x74\x65\x75\x6d\x72\x78\x43\x6f\x7a\x57\x36\x75','\x57\x50\x57\x50\x57\x4f\x75\x78\x70\x6d\x6b\x2b\x57\x52\x43\x66','\x57\x34\x42\x64\x49\x59\x5a\x64\x55\x59\x43','\x57\x35\x42\x64\x55\x5a\x4c\x6c\x78\x61','\x57\x35\x35\x77\x57\x50\x70\x64\x4f\x6d\x6b\x36\x57\x52\x75','\x43\x43\x6f\x38\x64\x43\x6f\x70','\x57\x51\x30\x77\x57\x51\x75\x31\x6e\x43\x6b\x69\x57\x4f\x6d\x2b','\x57\x4f\x46\x64\x50\x63\x70\x63\x48\x38\x6b\x63','\x61\x38\x6f\x50\x57\x50\x56\x64\x49\x71','\x57\x34\x56\x64\x4c\x53\x6b\x65\x57\x50\x50\x45','\x57\x34\x64\x64\x48\x5a\x37\x64\x55\x58\x4b\x69\x57\x52\x6e\x78','\x43\x76\x74\x64\x51\x43\x6f\x43\x57\x37\x70\x64\x51\x61\x5a\x63\x4d\x47','\x44\x6d\x6f\x32\x57\x4f\x78\x63\x4d\x49\x38','\x57\x35\x52\x63\x53\x67\x61','\x57\x34\x76\x74\x57\x50\x5a\x64\x52\x47','\x57\x50\x34\x4c\x57\x50\x47\x71\x62\x43\x6b\x4b\x57\x52\x38\x6e','\x45\x65\x6a\x5a\x6b\x78\x4b','\x57\x35\x56\x64\x53\x6d\x6b\x31\x57\x36\x31\x4f','\x65\x62\x58\x68\x57\x50\x4e\x64\x53\x5a\x5a\x63\x49\x53\x6f\x39','\x41\x38\x6f\x34\x64\x6d\x6f\x73\x57\x37\x68\x63\x4f\x38\x6b\x33','\x42\x38\x6b\x74\x6e\x72\x74\x64\x4b\x6d\x6b\x76\x66\x48\x75','\x70\x43\x6b\x4a\x6e\x58\x4f\x61','\x67\x30\x65\x32\x57\x4f\x6e\x51','\x44\x53\x6f\x53\x57\x51\x71'];_0x50c3=function(){return _0x3a3613;};return _0x50c3();}const _0x7fc7b0={};_0x7fc7b0['\x6f\x6b']=0x0,_0x7fc7b0['\x6d\x69\x73\x73\x69\x6e\x67']=0x0,_0x7fc7b0[_0x350a4f(0x35b,'\x30\x36\x53\x2a')]=0x0,_0x7fc7b0[_0x350a4f(0x3a5,'\x6d\x58\x67\x58')]=0x0;let _0x2e1867=_0x7fc7b0;const _0x23aab6=[0x16fc+0x18c2+-0x13a*0x17,0x667+-0xdb*0x25+0x14f6*0x4,0x1a1*-0x52+-0x16424+0x2d416];function _0x10c1f8(){const _0x4bd1a9=_0x350a4f,_0x2b086d={'\x51\x6d\x4f\x50\x48':function(_0x3e99e2,_0x17cd3d){return _0x3e99e2===_0x17cd3d;},'\x69\x54\x59\x41\x63':function(_0x161893,_0x2b0edd){return _0x161893(_0x2b0edd);}};return _0x2b086d[_0x4bd1a9(0x1e0,'\x58\x4a\x36\x45')](_0x2b086d[_0x4bd1a9(0x3c7,'\x52\x62\x57\x6e')](String,process.env.EVOLVE_RECALL_VERIFY||'\x30'),'\x31');}function _0x4412(_0xd4115e,_0x4bcc53){_0xd4115e=_0xd4115e-(0x397+0x1f0e+-0x20c5);const _0x5292c4=_0x50c3();let _0x24da81=_0x5292c4[_0xd4115e];if(_0x4412['\x59\x6d\x54\x6a\x41\x55']===undefined){var _0x392d4b=function(_0x56673a){const _0x187dce='\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 _0x1bee05='',_0x1d47e1='',_0x1f03c8=_0x1bee05+_0x392d4b,_0x25f601=(''+function(){return 0x1*0x1b1a+-0x11d*-0xf+-0x2bcd;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x445+-0x1*-0x1582+-0x113c);for(let _0x278739=0x1b82+-0x396+-0x17ec,_0x5298f5,_0x141e57,_0x502088=0x752*0x5+-0x1*-0x932+-0x2dcc;_0x141e57=_0x56673a['\x63\x68\x61\x72\x41\x74'](_0x502088++);~_0x141e57&&(_0x5298f5=_0x278739%(0xd67+-0x24a6+-0x7c1*-0x3)?_0x5298f5*(-0xb5f+0x100*-0x7+0x129f)+_0x141e57:_0x141e57,_0x278739++%(0x3f*0x3d+-0x2584+0x1685))?_0x1bee05+=_0x25f601||_0x1f03c8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x502088+(0x122*-0x19+0xd17+-0x3*-0x517))-(-0x3*-0x902+0x3f*0x1+-0x1b3b*0x1)!==0x1d75+0x57a*-0x2+-0x1281?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x238d*0x1+-0x12f9*-0x1+0xb*0x199&_0x5298f5>>(-(0x196*-0x1+-0x4aa*0x2+0x1d2*0x6)*_0x278739&-0x1ee5+-0x274*-0x6+0x13f*0xd)):_0x278739:-0xe78+0x2fe*-0x5+0x1d6e){_0x141e57=_0x187dce['\x69\x6e\x64\x65\x78\x4f\x66'](_0x141e57);}for(let _0x5292f0=-0x1a5*0x2+-0x93+0x3dd*0x1,_0x1b2ff4=_0x1bee05['\x6c\x65\x6e\x67\x74\x68'];_0x5292f0<_0x1b2ff4;_0x5292f0++){_0x1d47e1+='\x25'+('\x30\x30'+_0x1bee05['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5292f0)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*-0xaf3+-0x3ad*-0x5+-0x75e))['\x73\x6c\x69\x63\x65'](-(-0xb*0x17e+0x1cda+-0xc6e));}return decodeURIComponent(_0x1d47e1);};const _0x2fc6ee=function(_0x52cb55,_0x2345c1){let _0x12458f=[],_0x146448=-0xa46+-0x1686+0x4*0x833,_0x6485a2,_0x818ec7='';_0x52cb55=_0x392d4b(_0x52cb55);let _0x512103;for(_0x512103=0x24b4+-0x1d9f+0x103*-0x7;_0x512103<0xb34+0x237d+-0x2db1;_0x512103++){_0x12458f[_0x512103]=_0x512103;}for(_0x512103=0x19ff+0xddc+-0x27db;_0x512103<0x9a2*-0x4+-0xa3*0x19+0x3773;_0x512103++){_0x146448=(_0x146448+_0x12458f[_0x512103]+_0x2345c1['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x512103%_0x2345c1['\x6c\x65\x6e\x67\x74\x68']))%(0x3bd*-0x3+-0x1*-0x10b3+-0x47c),_0x6485a2=_0x12458f[_0x512103],_0x12458f[_0x512103]=_0x12458f[_0x146448],_0x12458f[_0x146448]=_0x6485a2;}_0x512103=0x2c7*-0xa+-0x1522+0x30e8,_0x146448=0xe*0x1ea+-0x1e90+0x3c4;for(let _0x7e5d68=0x19ae+0x2*0x523+-0x23f4;_0x7e5d68<_0x52cb55['\x6c\x65\x6e\x67\x74\x68'];_0x7e5d68++){_0x512103=(_0x512103+(0x17e5+-0x1a7*-0x12+-0x35a2))%(0x1c44+0x63b+-0x6b3*0x5),_0x146448=(_0x146448+_0x12458f[_0x512103])%(0x1073+-0xf2a+-0x49*0x1),_0x6485a2=_0x12458f[_0x512103],_0x12458f[_0x512103]=_0x12458f[_0x146448],_0x12458f[_0x146448]=_0x6485a2,_0x818ec7+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x52cb55['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x7e5d68)^_0x12458f[(_0x12458f[_0x512103]+_0x12458f[_0x146448])%(-0x1b27+-0x8b6+0x24dd)]);}return _0x818ec7;};_0x4412['\x79\x6e\x6f\x42\x54\x5a']=_0x2fc6ee,_0x4412['\x5a\x59\x4c\x53\x4f\x5a']={},_0x4412['\x59\x6d\x54\x6a\x41\x55']=!![];}const _0x223b32=_0x5292c4[-0x61b+0x212d+-0x1b12],_0x343ac2=_0xd4115e+_0x223b32,_0x393125=_0x4412['\x5a\x59\x4c\x53\x4f\x5a'][_0x343ac2];if(!_0x393125){if(_0x4412['\x49\x66\x63\x48\x6b\x57']===undefined){const _0x10ceae=function(_0x21a353){this['\x45\x6d\x51\x54\x43\x74']=_0x21a353,this['\x48\x42\x78\x64\x48\x7a']=[-0x8d4+0x2*-0x14c+0xb6d,-0x627+0xa79+0x1*-0x452,-0xea4+0x563*-0x1+0x1407],this['\x74\x74\x58\x42\x4e\x74']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4d\x63\x62\x69\x61\x71']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x58\x41\x5a\x67\x44\x66']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x10ceae['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x50\x51\x5a\x75\x78\x66']=function(){const _0x4319d6=new RegExp(this['\x4d\x63\x62\x69\x61\x71']+this['\x58\x41\x5a\x67\x44\x66']),_0x3f2457=_0x4319d6['\x74\x65\x73\x74'](this['\x74\x74\x58\x42\x4e\x74']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x48\x42\x78\x64\x48\x7a'][0x1eb4+0x22*0x16+-0x219f]:--this['\x48\x42\x78\x64\x48\x7a'][0xb1f+0x17bf+-0x22de*0x1];return this['\x4c\x69\x4a\x79\x52\x4f'](_0x3f2457);},_0x10ceae['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x69\x4a\x79\x52\x4f']=function(_0x400848){if(!Boolean(~_0x400848))return _0x400848;return this['\x55\x78\x70\x48\x7a\x44'](this['\x45\x6d\x51\x54\x43\x74']);},_0x10ceae['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x55\x78\x70\x48\x7a\x44']=function(_0x4cb781){for(let _0x168dd4=-0x1083+0x19d5+-0x952*0x1,_0x175269=this['\x48\x42\x78\x64\x48\x7a']['\x6c\x65\x6e\x67\x74\x68'];_0x168dd4<_0x175269;_0x168dd4++){this['\x48\x42\x78\x64\x48\x7a']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x175269=this['\x48\x42\x78\x64\x48\x7a']['\x6c\x65\x6e\x67\x74\x68'];}return _0x4cb781(this['\x48\x42\x78\x64\x48\x7a'][0x2*-0x8a+0x234a+0x111b*-0x2]);},(''+function(){return 0x2064+0x1ce0+0x4*-0xf51;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x14f7+0x2510+-0x3a06)&&new _0x10ceae(_0x4412)['\x50\x51\x5a\x75\x78\x66'](),_0x4412['\x49\x66\x63\x48\x6b\x57']=!![];}_0x24da81=_0x4412['\x79\x6e\x6f\x42\x54\x5a'](_0x24da81,_0x4bcc53),_0x4412['\x5a\x59\x4c\x53\x4f\x5a'][_0x343ac2]=_0x24da81;}else _0x24da81=_0x393125;return _0x24da81;}function _0x404db5(){const _0x298ff8=_0x350a4f,_0x2af6b8={'\x46\x7a\x7a\x56\x7a':function(_0x5c80f1,_0x4db6cf,_0x37e8d0){return _0x5c80f1(_0x4db6cf,_0x37e8d0);},'\x52\x41\x6f\x4d\x6c':_0x298ff8(0x360,'\x58\x4a\x36\x45')+_0x298ff8(0x376,'\x2a\x69\x54\x53')+_0x298ff8(0x291,'\x62\x48\x65\x42')+_0x298ff8(0x243,'\x64\x72\x50\x70'),'\x47\x51\x46\x72\x64':function(_0x6dc789,_0x23c0f0){return _0x6dc789>_0x23c0f0;}},_0x231f50=_0x2af6b8['\x46\x7a\x7a\x56\x7a'](_0x88126d,_0x2af6b8[_0x298ff8(0x35f,'\x43\x67\x59\x43')],0xa57*0x2+-0x215+0xee*-0x14);if(!Number[_0x298ff8(0x273,'\x62\x48\x65\x42')](_0x231f50)||_0x231f50<-0x2de*-0xd+0x19af+0x47*-0xe3||_0x2af6b8[_0x298ff8(0x2db,'\x4a\x4e\x72\x63')](_0x231f50,-0xb44+-0x30*-0xbf+0x3d*-0x67))return-0x6*0x601+-0x136c+-0x3773*-0x1;return _0x231f50;}function _0x20f674(){const _0x13fce4=_0x350a4f,_0x1f09bd={'\x6a\x63\x4e\x4e\x53':function(_0x209575,_0xed53a4,_0x207a8c){return _0x209575(_0xed53a4,_0x207a8c);},'\x4b\x4d\x73\x56\x53':'\x45\x56\x4f\x4c\x56\x45\x5f\x52'+'\x45\x43\x41\x4c\x4c\x5f\x56\x45'+_0x13fce4(0x236,'\x76\x53\x71\x57')+_0x13fce4(0x228,'\x62\x74\x57\x33')};return _0x1f09bd[_0x13fce4(0x34a,'\x79\x31\x72\x64')](_0x55e488,_0x1f09bd[_0x13fce4(0x2d4,'\x40\x73\x6c\x38')],0x19a2+-0x1e44+0x5a2);}function _0x1ff089(){const _0x2ea24b=_0x350a4f,_0x4cd6fb={'\x63\x42\x4a\x66\x44':function(_0x1cd158,_0x11d3cf,_0x1bb3e5){return _0x1cd158(_0x11d3cf,_0x1bb3e5);},'\x65\x41\x4f\x76\x62':_0x2ea24b(0x2b5,'\x54\x77\x65\x71')+_0x2ea24b(0x1e4,'\x32\x25\x77\x4e')+_0x2ea24b(0x31e,'\x52\x67\x58\x4d')+_0x2ea24b(0x30a,'\x54\x77\x65\x71')};return _0x4cd6fb[_0x2ea24b(0x1f5,'\x76\x66\x44\x21')](_0x55e488,_0x4cd6fb[_0x2ea24b(0x315,'\x74\x71\x7a\x24')],-0x21f7+0xbcc+0x131*0x23);}function _0x2ea65c(){const _0xc325fc=_0x350a4f,_0x3d961a={};_0x3d961a[_0xc325fc(0x201,'\x54\x77\x65\x71')]='\x45\x56\x4f\x4c\x56\x45\x5f\x52'+_0xc325fc(0x2aa,'\x54\x77\x65\x71')+'\x52\x49\x46\x59\x5f\x49\x4e\x49'+_0xc325fc(0x36e,'\x41\x72\x25\x31')+_0xc325fc(0x2b7,'\x5a\x43\x45\x26');const _0x2b1c54=_0x3d961a;return _0x55e488(_0x2b1c54[_0xc325fc(0x39d,'\x24\x4e\x63\x6c')],0xa5c+0x389*0xa+-0x45d*0x6);}function _0x3dcdba(){const _0x5a68c4=_0x350a4f,_0x5e41d3={'\x45\x56\x69\x50\x6d':function(_0x565853,_0x2661e9,_0x21c95a){return _0x565853(_0x2661e9,_0x21c95a);}};return _0x5e41d3['\x45\x56\x69\x50\x6d'](_0x55e488,_0x5a68c4(0x1e1,'\x2a\x69\x54\x53')+'\x45\x43\x41\x4c\x4c\x5f\x56\x45'+'\x52\x49\x46\x59\x5f\x41\x54\x54'+'\x45\x4d\x50\x54\x53',0x21*0x18+0x1df*0x3+-0x35*0x2a);}function _0x2c01b0(){const _0x5de932=_0x350a4f,_0x14f9b5={'\x42\x77\x51\x65\x78':function(_0x4fb198,_0x3daca9,_0xa6cb5e){return _0x4fb198(_0x3daca9,_0xa6cb5e);},'\x45\x75\x41\x51\x49':_0x5de932(0x217,'\x62\x74\x57\x33')+_0x5de932(0x277,'\x51\x57\x33\x31')+'\x52\x49\x46\x59\x5f\x46\x45\x54'+_0x5de932(0x251,'\x76\x66\x44\x21')+_0x5de932(0x350,'\x4d\x33\x24\x65')};return _0x14f9b5[_0x5de932(0x2b6,'\x73\x69\x71\x5e')](_0x55e488,_0x14f9b5[_0x5de932(0x20c,'\x51\x57\x33\x31')],0x3*0x816+-0x1*0x2b41+-0x323f*-0x1);}function _0x3312d5(_0x302102,_0x5271b8,_0x1f0fe7,_0xd3f524){const _0x42ff21=_0x350a4f,_0x1af5ff={'\x68\x43\x75\x53\x77':function(_0x37edcd,_0x773d53,_0x1bbf62,_0x589d47){return _0x37edcd(_0x773d53,_0x1bbf62,_0x589d47);},'\x78\x58\x4f\x55\x6c':_0x42ff21(0x1fe,'\x52\x62\x57\x6e')+_0x42ff21(0x2b0,'\x54\x77\x65\x71')+_0x42ff21(0x22f,'\x52\x67\x58\x4d'),'\x6a\x76\x78\x45\x6f':_0x42ff21(0x326,'\x52\x62\x57\x6e')+_0x42ff21(0x3b5,'\x43\x76\x63\x5e'),'\x44\x69\x62\x69\x64':function(_0x1f71e3,_0x27376d,_0x3e9cf6){return _0x1f71e3(_0x27376d,_0x3e9cf6);},'\x67\x76\x51\x4d\x52':_0x42ff21(0x30e,'\x79\x5e\x56\x28')+_0x42ff21(0x2ff,'\x25\x68\x39\x6c')+_0x42ff21(0x3ad,'\x61\x26\x7a\x36')+'\x50\x4c\x45\x5f\x52\x41\x54\x45','\x77\x6b\x56\x79\x68':function(_0x58919f,_0x36aac1){return _0x58919f<_0x36aac1;},'\x74\x69\x71\x61\x52':function(_0x3cb675,_0x3d9adb){return _0x3cb675-_0x3d9adb;},'\x70\x50\x6c\x57\x78':_0x42ff21(0x367,'\x21\x71\x68\x4e')+_0x42ff21(0x362,'\x59\x71\x5b\x4f'),'\x4a\x59\x77\x68\x64':'\x72\x65\x63\x61\x6c\x6c\x5f\x76'+_0x42ff21(0x1f3,'\x51\x57\x33\x31'),'\x74\x4d\x70\x5a\x52':function(_0x153fc6,_0x47e555){return _0x153fc6+_0x47e555;},'\x61\x56\x57\x73\x73':_0x42ff21(0x3a3,'\x34\x33\x7a\x62'),'\x56\x4a\x49\x4d\x74':function(_0x18dce1,_0x47f154){return _0x18dce1===_0x47f154;},'\x4a\x61\x51\x56\x6d':function(_0x17b679,_0x2d80a8){return _0x17b679(_0x2d80a8);},'\x53\x42\x6c\x48\x48':_0x42ff21(0x28e,'\x4d\x33\x24\x65'),'\x6b\x4b\x6f\x49\x67':_0x42ff21(0x265,'\x62\x48\x65\x42')+'\x65\x72\x69\x66\x79\x5d\x20\x77'+'\x72\x69\x74\x65\x4d\x65\x6d\x6f'+_0x42ff21(0x32b,'\x51\x57\x33\x31')+_0x42ff21(0x33e,'\x76\x53\x71\x57')+_0x42ff21(0x1ef,'\x4a\x4e\x72\x63'),'\x63\x77\x45\x53\x50':function(_0x2ac066,_0x31249b){return _0x2ac066===_0x31249b;},'\x63\x68\x6e\x4e\x55':'\x72\x6f\x75\x6e\x64\x74\x72\x69'+_0x42ff21(0x252,'\x41\x72\x25\x31'),'\x52\x6d\x58\x4b\x6e':_0x42ff21(0x2e2,'\x31\x65\x35\x37')+_0x42ff21(0x2c3,'\x21\x6c\x54\x21')+'\x63\x68'},_0x2ee7f0=Date[_0x42ff21(0x399,'\x74\x71\x7a\x24')](),_0x320901={'\x6f\x75\x74\x63\x6f\x6d\x65':_0x5271b8,'\x72\x65\x61\x73\x6f\x6e':_0x1f0fe7||null,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0xd3f524&&Number[_0x42ff21(0x1ff,'\x61\x26\x7a\x36')](_0xd3f524[_0x42ff21(0x27a,'\x73\x69\x71\x5e')])?_0xd3f524['\x61\x74\x74\x65\x6d\x70\x74\x73']:_0x302102[_0x42ff21(0x335,'\x4e\x77\x63\x4f')]||-0x29*0xe2+-0x106*0x4+0x47a*0x9,'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0xd3f524&&Number[_0x42ff21(0x273,'\x62\x48\x65\x42')](_0xd3f524[_0x42ff21(0x247,'\x62\x48\x65\x42')+'\x6d\x73'])?_0xd3f524[_0x42ff21(0x39a,'\x30\x79\x55\x4e')+'\x6d\x73']:0x13*-0x39+-0x2*-0xdbd+-0x173f,'\x61\x67\x65\x5f\x61\x74\x5f\x76\x65\x72\x69\x66\x79\x5f\x6d\x73':_0x302102['\x70\x75\x62\x6c\x69\x73\x68\x65'+_0x42ff21(0x263,'\x7a\x4b\x4f\x26')]?_0x1af5ff[_0x42ff21(0x2b1,'\x4e\x77\x63\x4f')](_0x2ee7f0,_0x302102['\x70\x75\x62\x6c\x69\x73\x68\x65'+_0x42ff21(0x3c5,'\x73\x69\x71\x5e')]):-0x1bc5*0x1+-0x135f+0x2f24,'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':_0xd3f524&&_0xd3f524['\x72\x65\x63\x61\x6c\x6c\x65\x64'+_0x42ff21(0x38f,'\x2a\x2a\x30\x76')]?_0xd3f524[_0x42ff21(0x209,'\x6d\x58\x67\x58')+_0x42ff21(0x358,'\x68\x5e\x34\x77')]:null},_0x53fa7f={'\x74\x79\x70\x65':_0x1af5ff['\x70\x50\x6c\x57\x78'],'\x6b\x69\x6e\x64':_0x1af5ff[_0x42ff21(0x297,'\x63\x70\x64\x74')],'\x69\x64':_0x1af5ff[_0x42ff21(0x260,'\x38\x6d\x6a\x78')](_0x1af5ff[_0x42ff21(0x3b8,'\x68\x50\x35\x79')](_0x42ff21(0x2ad,'\x26\x56\x63\x36')+_0x2ee7f0,'\x5f'),Math[_0x42ff21(0x21f,'\x34\x33\x7a\x62')]()['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x169c+0x206d+0x263*-0x17)[_0x42ff21(0x1e8,'\x54\x77\x65\x71')](0x1cfb+0x17da+-0x34d3*0x1,-0x4*0x2f9+0x11a1*0x1+-0x5b3)),'\x74\x73':_0x2ee7f0,'\x61\x73\x73\x65\x74':{'\x74\x79\x70\x65':_0x302102[_0x42ff21(0x25c,'\x68\x5e\x34\x77')]||_0x1af5ff[_0x42ff21(0x374,'\x43\x67\x59\x43')],'\x69\x64':_0x302102[_0x42ff21(0x294,'\x43\x76\x63\x5e')]||null},'\x76\x65\x72\x69\x66\x69\x63\x61\x74\x69\x6f\x6e':_0x320901,'\x73\x69\x67\x6e\x61\x6c':{'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x42ff21(0x302,'\x54\x77\x65\x71')](_0x302102['\x73\x69\x67\x6e\x61\x6c\x73'])?_0x302102[_0x42ff21(0x300,'\x62\x74\x57\x33')][_0x42ff21(0x23d,'\x62\x48\x65\x42')](0x210d+-0x15d*0xb+-0x120e,0xaf5+0x18ee+-0x23db):[]}};try{if(_0x1af5ff[_0x42ff21(0x2b8,'\x71\x51\x32\x5b')](_0x42ff21(0x3ba,'\x74\x71\x7a\x24'),_0x42ff21(0x320,'\x43\x67\x59\x43')))_0x1af5ff[_0x42ff21(0x369,'\x64\x21\x6c\x33')](_0x5d36ca,_0x53fa7f);else{_0x1af5ff[_0x42ff21(0x1f0,'\x52\x67\x58\x4d')](_0x441292,_0x318c8a,_0x1af5ff[_0x42ff21(0x383,'\x43\x76\x63\x5e')],'\x73\x61\x6d\x70\x6c\x65\x5f\x72'+_0x42ff21(0x279,'\x24\x4e\x63\x6c'));const _0x5971cb={};return _0x5971cb[_0x42ff21(0x334,'\x5a\x43\x45\x26')]=![],_0x5971cb[_0x42ff21(0x2ef,'\x61\x26\x7a\x36')]=_0x1af5ff[_0x42ff21(0x34d,'\x4a\x4e\x72\x63')],_0x5971cb;}}catch(_0xfcea3d){if(process.env.EVOLVE_RECALL_VERIFY_DEBUG==='\x31'){if('\x45\x64\x75\x49\x4f'===_0x1af5ff['\x53\x42\x6c\x48\x48']){const _0x5a1a4c=iXPGbW[_0x42ff21(0x378,'\x64\x72\x50\x70')](_0x5c5c03,iXPGbW['\x67\x76\x51\x4d\x52'],0x3ab*0x7+-0x258+-0x1754);if(!_0x3ae941[_0x42ff21(0x1ed,'\x21\x71\x68\x4e')](_0x5a1a4c)||iXPGbW[_0x42ff21(0x24b,'\x25\x68\x39\x6c')](_0x5a1a4c,-0x4*0x8db+-0x174d+0x3ab9)||_0x5a1a4c>-0x1289+-0x289+0x1513)return 0x6*-0x63d+0x4a4+-0x20cb*-0x1;return _0x5a1a4c;}else console[_0x42ff21(0x2b4,'\x51\x57\x33\x31')](_0x1af5ff[_0x42ff21(0x221,'\x54\x77\x65\x71')](_0x1af5ff['\x6b\x4b\x6f\x49\x67'],_0xfcea3d&&_0xfcea3d[_0x42ff21(0x261,'\x34\x33\x7a\x62')]||_0xfcea3d));}}if(_0x1af5ff[_0x42ff21(0x258,'\x63\x70\x64\x74')](_0x5271b8,_0x1af5ff[_0x42ff21(0x354,'\x43\x67\x59\x43')]))_0x2e1867['\x6f\x6b']++;else{if(_0x5271b8===_0x42ff21(0x29c,'\x25\x68\x39\x6c')+_0x42ff21(0x278,'\x30\x36\x53\x2a')+'\x67')_0x2e1867[_0x42ff21(0x246,'\x41\x72\x25\x31')]++;else{if(_0x5271b8===_0x1af5ff[_0x42ff21(0x295,'\x65\x4d\x6d\x76')])_0x2e1867[_0x42ff21(0x2c8,'\x31\x65\x35\x37')]++;else _0x2e1867[_0x42ff21(0x1fa,'\x40\x73\x6c\x38')]++;}}}function _0x52e6b2(_0x56581f){const _0x266330=_0x350a4f,_0x5d1366={'\x70\x72\x49\x4c\x63':function(_0x17f323,_0x59b5af,_0xb2e42c){return _0x17f323(_0x59b5af,_0xb2e42c);},'\x4e\x69\x6d\x57\x49':'\x45\x56\x4f\x4c\x56\x45\x5f\x52'+_0x266330(0x270,'\x41\x72\x25\x31')+_0x266330(0x20a,'\x58\x4a\x36\x45')+'\x43\x48\x5f\x54\x49\x4d\x45\x4f'+_0x266330(0x25b,'\x68\x5e\x34\x77'),'\x49\x6c\x4c\x70\x4b':'\x66\x65\x74\x63\x68\x5f\x6e\x6f'+_0x266330(0x214,'\x25\x68\x39\x6c'),'\x46\x67\x65\x67\x65':_0x266330(0x2d3,'\x41\x72\x25\x31'),'\x66\x58\x63\x79\x5a':function(_0x1c9525){return _0x1c9525();},'\x48\x71\x52\x55\x49':function(_0x591cb4,_0x3a726e){return _0x591cb4!==_0x3a726e;},'\x71\x5a\x76\x6c\x41':'\x6f\x6f\x6d\x43\x4d','\x59\x64\x43\x49\x63':_0x266330(0x253,'\x64\x21\x6c\x33'),'\x6b\x6b\x50\x56\x4e':_0x266330(0x2fe,'\x58\x4a\x36\x45'),'\x76\x63\x4a\x74\x4f':function(_0x3b3e16,_0x542fa2,_0x5f2e21,_0x5b3e0c){return _0x3b3e16(_0x542fa2,_0x5f2e21,_0x5b3e0c);},'\x7a\x57\x54\x4c\x66':_0x266330(0x2e4,'\x2a\x2a\x30\x76')+'\x74\x69\x6f\x6e\x5f\x73\x6b\x69'+_0x266330(0x2cd,'\x30\x36\x53\x2a'),'\x4a\x74\x4b\x6f\x53':_0x266330(0x3c2,'\x79\x72\x21\x5b')+_0x266330(0x331,'\x62\x48\x65\x42'),'\x59\x4a\x4a\x4d\x43':function(_0xe59c59){return _0xe59c59();},'\x50\x47\x43\x71\x7a':function(_0x42b982,_0x17dfff){return _0x42b982<_0x17dfff;},'\x48\x42\x77\x59\x6d':function(_0x3f1dba,_0x400621,_0x4686e3,_0x5c58d5){return _0x3f1dba(_0x400621,_0x4686e3,_0x5c58d5);},'\x45\x55\x78\x4d\x4d':function(_0x1d83c5,_0x1c17f4){return _0x1d83c5+_0x1c17f4;},'\x63\x4f\x41\x64\x4e':function(_0x146b5f){return _0x146b5f();},'\x47\x48\x46\x42\x61':function(_0x1822de,_0x34c71a){return _0x1822de>=_0x34c71a;},'\x64\x51\x4d\x6a\x55':_0x266330(0x2af,'\x41\x72\x25\x31')+'\x6c\x6c'},_0x15c8f1={'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x56581f&&_0x56581f[_0x266330(0x35a,'\x52\x62\x57\x6e')]?String(_0x56581f[_0x266330(0x250,'\x30\x36\x53\x2a')]):null,'\x74\x79\x70\x65':_0x56581f&&_0x56581f[_0x266330(0x2ca,'\x7a\x4b\x4f\x26')]?String(_0x56581f[_0x266330(0x241,'\x71\x51\x32\x5b')]):_0x5d1366[_0x266330(0x36b,'\x79\x72\x21\x5b')],'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x266330(0x35d,'\x76\x66\x44\x21')](_0x56581f&&_0x56581f[_0x266330(0x344,'\x43\x67\x59\x43')])?_0x56581f['\x73\x69\x67\x6e\x61\x6c\x73']:[],'\x70\x75\x62\x6c\x69\x73\x68\x65\x64\x41\x74':_0x56581f&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x56581f['\x70\x75\x62\x6c\x69\x73\x68\x65'+_0x266330(0x2f2,'\x74\x71\x7a\x24')])?_0x56581f[_0x266330(0x296,'\x74\x71\x7a\x24')+_0x266330(0x3c5,'\x73\x69\x71\x5e')]:Date[_0x266330(0x3a8,'\x51\x57\x33\x31')](),'\x61\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x6e\x65\x78\x74\x45\x6c\x69\x67\x69\x62\x6c\x65\x41\x74':0x0};if(!_0x5d1366[_0x266330(0x240,'\x54\x77\x65\x71')](_0x10c1f8)){if(_0x5d1366['\x48\x71\x52\x55\x49'](_0x5d1366[_0x266330(0x2c5,'\x59\x71\x5b\x4f')],_0x5d1366[_0x266330(0x345,'\x4a\x4e\x72\x63')])){_0x3312d5(_0x15c8f1,_0x266330(0x31f,'\x62\x48\x65\x42')+_0x266330(0x32d,'\x2a\x2a\x30\x76')+_0x266330(0x2fc,'\x79\x72\x21\x5b'),'\x66\x65\x61\x74\x75\x72\x65\x5f'+_0x266330(0x2f1,'\x76\x66\x44\x21'));const _0x38b3da={};return _0x38b3da[_0x266330(0x29b,'\x41\x72\x25\x31')]=![],_0x38b3da['\x72\x65\x61\x73\x6f\x6e']=_0x266330(0x311,'\x40\x73\x6c\x38')+_0x266330(0x22e,'\x58\x4a\x36\x45'),_0x38b3da;}else return POMBHg[_0x266330(0x2f6,'\x26\x56\x63\x36')](_0x92ca2a,POMBHg[_0x266330(0x28b,'\x41\x72\x25\x31')],0x141*0x18+-0x1a7e+0x1ba6);}if(!_0x15c8f1[_0x266330(0x2cf,'\x68\x50\x35\x79')]){if(_0x5d1366[_0x266330(0x2ea,'\x25\x68\x39\x6c')]===_0x5d1366[_0x266330(0x340,'\x59\x71\x5b\x4f')]){_0x5d1366[_0x266330(0x2f4,'\x68\x36\x4f\x59')](_0x3312d5,_0x15c8f1,_0x5d1366[_0x266330(0x235,'\x63\x65\x67\x57')],_0x5d1366[_0x266330(0x1e7,'\x73\x69\x71\x5e')]);const _0x2a83ab={};return _0x2a83ab[_0x266330(0x3be,'\x31\x65\x35\x37')]=![],_0x2a83ab[_0x266330(0x266,'\x63\x65\x67\x57')]=_0x5d1366[_0x266330(0x211,'\x40\x73\x6c\x38')],_0x2a83ab;}else{const _0x31e7a7={};return _0x31e7a7[_0x266330(0x23a,'\x62\x48\x65\x42')]='\x76\x65\x72\x69\x66\x69\x63\x61'+_0x266330(0x24f,'\x5a\x43\x45\x26')+_0x266330(0x336,'\x54\x77\x65\x71'),_0x31e7a7[_0x266330(0x38d,'\x73\x69\x71\x5e')]=_0x266330(0x2a9,'\x2a\x2a\x30\x76')+_0x266330(0x20f,'\x4e\x47\x38\x5b'),_0x31e7a7[_0x266330(0x26b,'\x24\x4e\x63\x6c')+'\x6d\x73']=_0x3b6526,_0x31e7a7[_0x266330(0x377,'\x38\x6d\x6a\x78')+_0x266330(0x275,'\x58\x4a\x36\x45')]=null,_0x31e7a7[_0x266330(0x23c,'\x41\x72\x25\x31')]=_0x122145&&_0x4cda4a[_0x266330(0x274,'\x31\x65\x35\x37')]||_0x5d1366[_0x266330(0x384,'\x76\x66\x44\x21')],_0x31e7a7;}}const _0x11b4fd=_0x5d1366[_0x266330(0x3c6,'\x25\x68\x39\x6c')](_0x404db5);if(_0x5d1366[_0x266330(0x2d9,'\x41\x72\x25\x31')](_0x11b4fd,-0xbd7+0x2*-0x10bd+-0x2*-0x16a9)&&Math[_0x266330(0x328,'\x41\x72\x25\x31')]()>=_0x11b4fd){_0x5d1366[_0x266330(0x25f,'\x52\x67\x58\x4d')](_0x3312d5,_0x15c8f1,_0x266330(0x306,'\x63\x70\x64\x74')+_0x266330(0x216,'\x62\x74\x57\x33')+_0x266330(0x323,'\x40\x73\x6c\x38'),_0x266330(0x233,'\x79\x31\x72\x64')+'\x61\x74\x65');const _0x5a5beb={};return _0x5a5beb[_0x266330(0x3ac,'\x51\x57\x33\x31')]=![],_0x5a5beb['\x72\x65\x61\x73\x6f\x6e']='\x73\x61\x6d\x70\x6c\x65\x5f\x72'+_0x266330(0x2c6,'\x4e\x47\x38\x5b'),_0x5a5beb;}_0x15c8f1[_0x266330(0x398,'\x4a\x4e\x72\x63')+_0x266330(0x268,'\x34\x33\x7a\x62')]=_0x5d1366[_0x266330(0x308,'\x34\x33\x7a\x62')](_0x15c8f1[_0x266330(0x22a,'\x40\x73\x6c\x38')+_0x266330(0x2bc,'\x40\x73\x6c\x38')],_0x2ea65c());const _0x2bb53f=_0x5d1366[_0x266330(0x387,'\x4e\x77\x63\x4f')](_0x20f674);while(_0x5d1366[_0x266330(0x1ea,'\x64\x21\x6c\x33')](_0x533447[_0x266330(0x1fb,'\x79\x5e\x56\x28')],_0x2bb53f)){const _0xdf18f8=_0x533447[_0x266330(0x2f3,'\x41\x72\x25\x31')]();_0x3312d5(_0xdf18f8,_0x5d1366[_0x266330(0x2fa,'\x2a\x2a\x30\x76')],_0x5d1366[_0x266330(0x32e,'\x79\x5e\x56\x28')]);}_0x533447[_0x266330(0x2bd,'\x68\x50\x35\x79')](_0x15c8f1);const _0x13b6a0={};return _0x13b6a0[_0x266330(0x2d5,'\x64\x21\x6c\x33')]=!![],_0x13b6a0;}async function _0x46c237(_0x3ad330,_0x534103){const _0x326055=_0x350a4f,_0x16135b={'\x55\x41\x6b\x71\x4f':function(_0x130c5d,_0x38b4ba,_0x2e5fdf){return _0x130c5d(_0x38b4ba,_0x2e5fdf);},'\x65\x53\x59\x53\x4c':_0x326055(0x2e8,'\x51\x57\x33\x31')+_0x326055(0x313,'\x68\x36\x4f\x59')+_0x326055(0x341,'\x62\x48\x65\x42')+_0x326055(0x1e5,'\x34\x33\x7a\x62'),'\x58\x4a\x61\x46\x62':function(_0x37fb6a,_0x16df09){return _0x37fb6a(_0x16df09);},'\x58\x45\x51\x70\x75':'\x76\x65\x72\x69\x66\x69\x63\x61'+_0x326055(0x242,'\x52\x62\x57\x6e')+'\x70\x70\x65\x64','\x63\x4b\x68\x72\x65':_0x326055(0x280,'\x24\x4e\x63\x6c')+_0x326055(0x2da,'\x30\x36\x53\x2a'),'\x71\x55\x71\x4c\x63':function(_0x381d04,_0x506315){return _0x381d04-_0x506315;},'\x65\x67\x70\x66\x63':function(_0x4a466d,_0x30d5e6){return _0x4a466d(_0x30d5e6);},'\x7a\x67\x69\x76\x76':_0x326055(0x322,'\x52\x67\x58\x4d')+_0x326055(0x312,'\x58\x4a\x36\x45')+'\x63\x68','\x63\x4e\x65\x72\x62':'\x68\x61\x73\x68\x5f\x64\x72\x69'+'\x66\x74','\x4a\x6e\x6d\x76\x76':function(_0x40149a,_0x4b736a){return _0x40149a===_0x4b736a;},'\x4c\x75\x46\x50\x49':function(_0x13c855,_0x42367b){return _0x13c855+_0x42367b;},'\x41\x65\x6e\x6b\x52':function(_0x4e0895,_0x3f2b8f){return _0x4e0895-_0x3f2b8f;},'\x69\x4d\x71\x47\x56':_0x326055(0x36c,'\x5a\x43\x45\x26')+_0x326055(0x245,'\x4a\x4e\x72\x63'),'\x4b\x4a\x50\x64\x4e':function(_0x43deb1,_0x3e0988){return _0x43deb1+_0x3e0988;},'\x72\x42\x47\x53\x78':function(_0x2d8604,_0x10a6fe){return _0x2d8604+_0x10a6fe;},'\x67\x56\x4d\x52\x52':'\x6d\x67\x65\x5f','\x63\x46\x5a\x73\x50':function(_0x2d48e9,_0x52f16b){return _0x2d48e9(_0x52f16b);},'\x79\x6e\x77\x4a\x51':function(_0x54509e,_0x81e79){return _0x54509e===_0x81e79;},'\x67\x58\x47\x4a\x43':function(_0x3751c2,_0x55e5a){return _0x3751c2===_0x55e5a;},'\x53\x4f\x4a\x55\x70':_0x326055(0x206,'\x64\x21\x6c\x33')+_0x326055(0x28a,'\x54\x77\x65\x71'),'\x71\x52\x68\x58\x42':'\x72\x6f\x75\x6e\x64\x74\x72\x69'+'\x70\x5f\x6d\x69\x73\x73\x69\x6e'+'\x67','\x50\x54\x6a\x42\x6c':'\x74\x66\x75\x6d\x43','\x6c\x70\x46\x4b\x6e':_0x326055(0x37a,'\x59\x71\x5b\x4f')+'\x61\x73\x73\x65\x74\x5f\x69\x64','\x57\x77\x56\x44\x4a':function(_0x4d4419,_0x781237){return _0x4d4419!==_0x781237;},'\x4e\x45\x42\x71\x56':_0x326055(0x231,'\x52\x62\x57\x6e'),'\x45\x72\x54\x4d\x65':function(_0x1402c5){return _0x1402c5();},'\x77\x45\x4c\x4e\x78':function(_0xc4b4bd,_0x1332b1){return _0xc4b4bd-_0x1332b1;},'\x4b\x77\x52\x44\x45':'\x47\x61\x6c\x6b\x4a','\x51\x71\x77\x4f\x6a':_0x326055(0x309,'\x34\x33\x7a\x62'),'\x58\x77\x74\x77\x74':function(_0x245286,_0x32981e){return _0x245286===_0x32981e;},'\x6e\x6b\x67\x69\x6b':_0x326055(0x37c,'\x65\x4d\x6d\x76'),'\x66\x66\x66\x54\x47':function(_0x44cfaa,_0x2cc6b4){return _0x44cfaa!==_0x2cc6b4;},'\x66\x62\x4e\x6e\x70':_0x326055(0x29d,'\x68\x5e\x34\x77'),'\x53\x65\x64\x7a\x54':_0x326055(0x2bb,'\x24\x4e\x63\x6c'),'\x52\x41\x46\x74\x59':_0x326055(0x31c,'\x24\x4e\x63\x6c')+_0x326055(0x371,'\x59\x71\x5b\x4f'),'\x6a\x66\x75\x4a\x61':_0x326055(0x1f2,'\x21\x6c\x54\x21'),'\x7a\x72\x79\x6a\x52':_0x326055(0x3a0,'\x4a\x4e\x72\x63'),'\x47\x6b\x63\x63\x6e':_0x326055(0x380,'\x25\x68\x39\x6c')+_0x326055(0x24e,'\x51\x57\x33\x31')+_0x326055(0x359,'\x63\x70\x64\x74'),'\x51\x45\x4c\x56\x6f':function(_0x51eaf8,_0xb8569){return _0x51eaf8(_0xb8569);},'\x55\x5a\x48\x65\x68':_0x326055(0x26c,'\x5a\x43\x45\x26')},_0x312236=Date[_0x326055(0x375,'\x52\x62\x57\x6e')]();if(!_0x3ad330){if(_0x16135b[_0x326055(0x298,'\x68\x36\x4f\x59')]===_0x326055(0x22c,'\x64\x21\x6c\x33'))return MvdXWR[_0x326055(0x290,'\x26\x56\x63\x36')](_0x57409a,MvdXWR[_0x326055(0x372,'\x76\x66\x44\x21')],-0x5f*0x35+-0x20b1*0x1+-0x1*-0x355c);else{const _0x298a70={};return _0x298a70['\x6f\x75\x74\x63\x6f\x6d\x65']=_0x16135b[_0x326055(0x1f8,'\x65\x4d\x6d\x76')],_0x298a70[_0x326055(0x21e,'\x43\x76\x63\x5e')]=_0x16135b[_0x326055(0x388,'\x30\x36\x53\x2a')],_0x298a70['\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73']=0x0,_0x298a70[_0x326055(0x28d,'\x76\x53\x71\x57')+_0x326055(0x292,'\x62\x74\x57\x33')]=null,_0x298a70;}}let _0x5eccf4;try{_0x16135b[_0x326055(0x346,'\x34\x33\x7a\x62')](_0x16135b['\x4e\x45\x42\x71\x56'],_0x326055(0x2a3,'\x76\x66\x44\x21'))?_0x5ac6e7=_0x16135b[_0x326055(0x37b,'\x76\x53\x71\x57')](_0x518db6,_0x43c36b):_0x5eccf4=await _0x16135b[_0x326055(0x2f5,'\x64\x21\x6c\x33')](_0x52acae,_0x3ad330,{'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x16135b[_0x326055(0x267,'\x43\x76\x63\x5e')](_0x2c01b0),'\x62\x79\x70\x61\x73\x73\x43\x61\x63\x68\x65':!![]});}catch(_0x1308ee){return{'\x6f\x75\x74\x63\x6f\x6d\x65':_0x16135b[_0x326055(0x337,'\x4a\x4e\x72\x63')],'\x72\x65\x61\x73\x6f\x6e':_0x16135b[_0x326055(0x299,'\x65\x4d\x6d\x76')],'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x16135b[_0x326055(0x27d,'\x24\x4e\x63\x6c')](Date[_0x326055(0x200,'\x79\x31\x72\x64')](),_0x312236),'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':null,'\x65\x72\x72\x6f\x72':_0x1308ee&&_0x1308ee[_0x326055(0x330,'\x68\x36\x4f\x59')]||_0x16135b[_0x326055(0x28f,'\x71\x51\x32\x5b')](String,_0x1308ee)};}const _0x5ab7e4=_0x16135b['\x77\x45\x4c\x4e\x78'](Date[_0x326055(0x1e2,'\x62\x48\x65\x42')](),_0x312236);if(!_0x5eccf4||!_0x5eccf4['\x6f\x6b']){if(_0x16135b[_0x326055(0x392,'\x65\x4d\x6d\x76')]!==_0x16135b[_0x326055(0x38b,'\x2a\x69\x54\x53')]){const _0xf5b61d={};return _0xf5b61d[_0x326055(0x397,'\x59\x71\x5b\x4f')]=_0x16135b[_0x326055(0x2b2,'\x79\x31\x72\x64')],_0xf5b61d[_0x326055(0x3a4,'\x51\x57\x33\x31')]=_0x16135b[_0x326055(0x202,'\x41\x72\x25\x31')],_0xf5b61d[_0x326055(0x39a,'\x30\x79\x55\x4e')+'\x6d\x73']=_0x5ab7e4,_0xf5b61d['\x72\x65\x63\x61\x6c\x6c\x65\x64'+_0x326055(0x1f4,'\x34\x33\x7a\x62')]=null,_0xf5b61d['\x65\x72\x72\x6f\x72']=_0x5eccf4&&_0x5eccf4[_0x326055(0x229,'\x68\x36\x4f\x59')]||_0x326055(0x2dc,'\x25\x68\x39\x6c')+_0x326055(0x213,'\x43\x67\x59\x43'),_0xf5b61d;}else return{'\x6f\x75\x74\x63\x6f\x6d\x65':_0x16135b[_0x326055(0x339,'\x43\x76\x63\x5e')],'\x72\x65\x61\x73\x6f\x6e':_0x16135b[_0x326055(0x39f,'\x4d\x33\x24\x65')],'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x16135b[_0x326055(0x36a,'\x58\x4a\x36\x45')](_0xa636e6[_0x326055(0x28c,'\x40\x73\x6c\x38')](),_0x4d070d),'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':null,'\x65\x72\x72\x6f\x72':_0x3c1dcb&&_0x2d387b['\x6d\x65\x73\x73\x61\x67\x65']||_0x16135b[_0x326055(0x2cc,'\x38\x6d\x6a\x78')](_0x196ae1,_0x4f077b)};}if(!_0x5eccf4[_0x326055(0x3bd,'\x59\x71\x5b\x4f')]){if(_0x16135b[_0x326055(0x342,'\x74\x71\x7a\x24')](_0x326055(0x393,'\x7a\x4b\x4f\x26'),_0x16135b[_0x326055(0x310,'\x65\x4d\x6d\x76')])){const _0x4aaa40={};return _0x4aaa40[_0x326055(0x3b2,'\x6d\x58\x67\x58')]=_0x16135b[_0x326055(0x3ab,'\x58\x4a\x36\x45')],_0x4aaa40[_0x326055(0x21e,'\x43\x76\x63\x5e')]=null,_0x4aaa40['\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73']=_0x5ab7e4,_0x4aaa40[_0x326055(0x395,'\x54\x77\x65\x71')+_0x326055(0x1f4,'\x34\x33\x7a\x62')]=null,_0x4aaa40;}else{const _0xa7b0c6={};return _0xa7b0c6[_0x326055(0x314,'\x41\x72\x25\x31')]=_0x16135b[_0x326055(0x208,'\x62\x74\x57\x33')],_0xa7b0c6[_0x326055(0x218,'\x4a\x4e\x72\x63')]=_0x16135b[_0x326055(0x272,'\x2a\x69\x54\x53')],_0xa7b0c6[_0x326055(0x244,'\x21\x6c\x54\x21')+'\x6d\x73']=_0x2806f7,_0xa7b0c6[_0x326055(0x391,'\x4d\x33\x24\x65')+_0x326055(0x3b9,'\x21\x6c\x54\x21')]=_0x9a4a90,_0xa7b0c6;}}const _0x2073dd=_0x5eccf4['\x61\x73\x73\x65\x74'];if(_0x16135b['\x66\x66\x66\x54\x47'](_0x2073dd[_0x326055(0x35a,'\x52\x62\x57\x6e')],_0x3ad330)){if(_0x16135b[_0x326055(0x2d0,'\x65\x4d\x6d\x76')](_0x16135b['\x66\x62\x4e\x6e\x70'],_0x16135b[_0x326055(0x3c3,'\x21\x6c\x54\x21')])){const _0x251c62={};return _0x251c62[_0x326055(0x212,'\x79\x5e\x56\x28')]=_0x16135b[_0x326055(0x22d,'\x63\x65\x67\x57')],_0x251c62[_0x326055(0x2d1,'\x63\x70\x64\x74')]=_0x16135b[_0x326055(0x271,'\x2a\x69\x54\x53')],_0x251c62[_0x326055(0x22b,'\x34\x33\x7a\x62')+'\x6d\x73']=_0x5ab7e4,_0x251c62['\x72\x65\x63\x61\x6c\x6c\x65\x64'+'\x5f\x68\x61\x73\x68']=_0x2073dd[_0x326055(0x34b,'\x4a\x4e\x72\x63')]||null,_0x251c62;}else return _0x259578[_0x326055(0x2b3,'\x63\x70\x64\x74')]({},_0x2c0eee);}let _0x1d3b79;try{_0x16135b['\x67\x58\x47\x4a\x43'](_0x16135b[_0x326055(0x2a5,'\x2a\x69\x54\x53')],_0x326055(0x21a,'\x6d\x58\x67\x58'))?_0x1d3b79=_0x2fbb3f(_0x2073dd):_0x16135b[_0x326055(0x333,'\x62\x74\x57\x33')](_0x25f601.env.EVOLVE_RECALL_VERIFY_DEBUG,'\x31')&&_0x5292f0[_0x326055(0x2a0,'\x63\x65\x67\x57')](_0x16135b[_0x326055(0x2c0,'\x34\x33\x7a\x62')]('\x5b\x52\x65\x63\x61\x6c\x6c\x56'+_0x326055(0x318,'\x30\x36\x53\x2a')+_0x326055(0x26d,'\x73\x69\x71\x5e')+'\x63\x6b\x20\x66\x61\x69\x6c\x65'+'\x64\x3a\x20',_0x1b2ff4&&_0x52cb55[_0x326055(0x29f,'\x72\x48\x49\x24')]||_0x2345c1));}catch(_0x3df5ca){return _0x16135b[_0x326055(0x3a7,'\x7a\x4b\x4f\x26')](_0x16135b['\x7a\x72\x79\x6a\x52'],_0x16135b[_0x326055(0x324,'\x6d\x58\x67\x58')])?_0x25c016[_0x326055(0x1eb,'\x62\x48\x65\x42')]:{'\x6f\x75\x74\x63\x6f\x6d\x65':_0x16135b[_0x326055(0x259,'\x71\x51\x32\x5b')],'\x72\x65\x61\x73\x6f\x6e':_0x16135b[_0x326055(0x276,'\x54\x77\x65\x71')],'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x5ab7e4,'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':null,'\x65\x72\x72\x6f\x72':_0x3df5ca&&_0x3df5ca[_0x326055(0x249,'\x38\x6d\x6a\x78')]||_0x16135b[_0x326055(0x2e1,'\x63\x70\x64\x74')](String,_0x3df5ca)};}if(_0x1d3b79!==_0x2073dd[_0x326055(0x351,'\x30\x79\x55\x4e')]){if(_0x16135b[_0x326055(0x30c,'\x68\x5e\x34\x77')]===_0x16135b['\x55\x5a\x48\x65\x68']){const _0x194074={};return _0x194074['\x6f\x75\x74\x63\x6f\x6d\x65']=_0x16135b['\x7a\x67\x69\x76\x76'],_0x194074['\x72\x65\x61\x73\x6f\x6e']=_0x16135b['\x63\x4e\x65\x72\x62'],_0x194074[_0x326055(0x244,'\x21\x6c\x54\x21')+'\x6d\x73']=_0x5ab7e4,_0x194074[_0x326055(0x2cb,'\x64\x21\x6c\x33')+'\x5f\x68\x61\x73\x68']=_0x1d3b79,_0x194074;}else{const _0xf72378=_0x44bfa5[_0x326055(0x257,'\x61\x26\x7a\x36')](),_0x93f8da={'\x6f\x75\x74\x63\x6f\x6d\x65':_0x46d892,'\x72\x65\x61\x73\x6f\x6e':_0x34460c||null,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x4b0107&&_0x4915c0[_0x326055(0x226,'\x7a\x4b\x4f\x26')](_0x96cb25[_0x326055(0x26e,'\x21\x6c\x54\x21')])?_0x5b14ee[_0x326055(0x26f,'\x24\x4e\x63\x6c')]:_0x452540[_0x326055(0x27a,'\x73\x69\x71\x5e')]||-0x3*-0x365+-0x8*-0x16e+0x3*-0x735,'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x2dc10c&&_0x244dc6[_0x326055(0x27b,'\x59\x71\x5b\x4f')](_0x3698b2[_0x326055(0x2e5,'\x40\x73\x6c\x38')+'\x6d\x73'])?_0x5e63fe[_0x326055(0x247,'\x62\x48\x65\x42')+'\x6d\x73']:-0x15f0+-0x49e+0x1a8e,'\x61\x67\x65\x5f\x61\x74\x5f\x76\x65\x72\x69\x66\x79\x5f\x6d\x73':_0x552fe2[_0x326055(0x2a7,'\x59\x71\x5b\x4f')+_0x326055(0x2bc,'\x40\x73\x6c\x38')]?MvdXWR[_0x326055(0x1f6,'\x4d\x33\x24\x65')](_0xf72378,_0x42c458[_0x326055(0x353,'\x79\x31\x72\x64')+_0x326055(0x2f2,'\x74\x71\x7a\x24')]):0x1*0x1adf+0x1323+-0x2e02,'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':_0x3dc4f8&&_0x4ba309[_0x326055(0x377,'\x38\x6d\x6a\x78')+'\x5f\x68\x61\x73\x68']?_0x9fab92[_0x326055(0x385,'\x41\x72\x25\x31')+_0x326055(0x2c4,'\x21\x71\x68\x4e')]:null},_0x2bea4f={};_0x2bea4f[_0x326055(0x2ce,'\x72\x48\x49\x24')]=_0x171b6a['\x74\x79\x70\x65']||_0x326055(0x2dd,'\x40\x73\x6c\x38'),_0x2bea4f['\x69\x64']=_0x3e93ab[_0x326055(0x203,'\x68\x5e\x34\x77')]||null;const _0x439fdc={'\x74\x79\x70\x65':_0x326055(0x3a6,'\x79\x31\x72\x64')+_0x326055(0x2f9,'\x5a\x43\x45\x26'),'\x6b\x69\x6e\x64':MvdXWR[_0x326055(0x365,'\x43\x67\x59\x43')],'\x69\x64':MvdXWR[_0x326055(0x282,'\x4d\x33\x24\x65')](MvdXWR[_0x326055(0x363,'\x4d\x33\x24\x65')](MvdXWR[_0x326055(0x1f7,'\x54\x77\x65\x71')],_0xf72378),'\x5f')+_0x41a716[_0x326055(0x327,'\x72\x48\x49\x24')]()[_0x326055(0x33b,'\x72\x48\x49\x24')](-0x13fc+0xe*0x12e+-0x16*-0x2a)[_0x326055(0x394,'\x43\x67\x59\x43')](-0x3ac+-0xb*0x27d+0x1f0d,0x864*0x3+-0x16f7+-0x25*0xf),'\x74\x73':_0xf72378,'\x61\x73\x73\x65\x74':_0x2bea4f,'\x76\x65\x72\x69\x66\x69\x63\x61\x74\x69\x6f\x6e':_0x93f8da,'\x73\x69\x67\x6e\x61\x6c':{'\x73\x69\x67\x6e\x61\x6c\x73':_0xd2659d[_0x326055(0x32a,'\x5a\x43\x45\x26')](_0x3be8d9[_0x326055(0x222,'\x79\x72\x21\x5b')])?_0x4f540b[_0x326055(0x220,'\x76\x53\x71\x57')][_0x326055(0x39c,'\x72\x48\x49\x24')](0x63*-0x2+0x926+-0x860,0x1bd5+0x1*-0x1eaf+0x2e2):[]}};try{MvdXWR[_0x326055(0x3ae,'\x73\x69\x71\x5e')](_0x463bd2,_0x439fdc);}catch(_0x5f3b55){MvdXWR[_0x326055(0x20b,'\x4e\x77\x63\x4f')](_0x2252b6.env.EVOLVE_RECALL_VERIFY_DEBUG,'\x31')&&_0x4d7120['\x77\x61\x72\x6e'](_0x326055(0x364,'\x79\x72\x21\x5b')+'\x65\x72\x69\x66\x79\x5d\x20\x77'+_0x326055(0x3aa,'\x41\x72\x25\x31')+_0x326055(0x37f,'\x34\x33\x7a\x62')+_0x326055(0x1e6,'\x68\x5e\x34\x77')+_0x326055(0x38e,'\x30\x36\x53\x2a')+(_0x5f3b55&&_0x5f3b55[_0x326055(0x3c1,'\x74\x71\x7a\x24')]||_0x5f3b55));}if(MvdXWR['\x67\x58\x47\x4a\x43'](_0x4f63af,MvdXWR[_0x326055(0x2ab,'\x4d\x33\x24\x65')]))_0x525312['\x6f\x6b']++;else{if(_0x1bb051===MvdXWR['\x71\x52\x68\x58\x42'])_0x2bace4[_0x326055(0x2e7,'\x68\x5e\x34\x77')]++;else{if(MvdXWR[_0x326055(0x3bc,'\x64\x21\x6c\x33')](_0x2efd4d,MvdXWR[_0x326055(0x2ac,'\x64\x72\x50\x70')]))_0x5c305b[_0x326055(0x2e6,'\x21\x71\x68\x4e')]++;else _0xcd4189[_0x326055(0x31b,'\x73\x69\x71\x5e')]++;}}}}const _0x5f3dba={};return _0x5f3dba['\x6f\x75\x74\x63\x6f\x6d\x65']=_0x16135b[_0x326055(0x1ee,'\x79\x5e\x56\x28')],_0x5f3dba['\x72\x65\x61\x73\x6f\x6e']=null,_0x5f3dba[_0x326055(0x304,'\x79\x72\x21\x5b')+'\x6d\x73']=_0x5ab7e4,_0x5f3dba[_0x326055(0x2df,'\x62\x48\x65\x42')+_0x326055(0x207,'\x4a\x4e\x72\x63')]=_0x1d3b79,_0x5f3dba;}async function _0x3ad1bd(){const _0x3960a2=_0x350a4f,_0x44be29={'\x65\x7a\x71\x59\x6e':function(_0x47b8b9,_0x129a8a,_0x157690,_0x325581){return _0x47b8b9(_0x129a8a,_0x157690,_0x325581);},'\x62\x49\x4e\x79\x52':_0x3960a2(0x2ee,'\x65\x4d\x6d\x76')+_0x3960a2(0x227,'\x41\x72\x25\x31'),'\x75\x71\x4f\x6c\x56':function(_0x13c58b,_0x494eb8,_0x31def5){return _0x13c58b(_0x494eb8,_0x31def5);},'\x51\x45\x64\x62\x46':_0x3960a2(0x3b4,'\x41\x72\x25\x31')+_0x3960a2(0x2c1,'\x63\x65\x67\x57')+_0x3960a2(0x30b,'\x38\x6d\x6a\x78')+_0x3960a2(0x338,'\x24\x4e\x63\x6c')+_0x3960a2(0x21b,'\x72\x48\x49\x24'),'\x6f\x44\x70\x46\x63':function(_0x61b316,_0x316721){return _0x61b316===_0x316721;},'\x70\x4e\x76\x44\x48':function(_0x52fd1e){return _0x52fd1e();},'\x75\x54\x78\x71\x53':_0x3960a2(0x2ec,'\x68\x36\x4f\x59'),'\x43\x70\x62\x64\x57':function(_0x5124c4,_0x1b4a18){return _0x5124c4<=_0x1b4a18;},'\x46\x41\x57\x73\x62':function(_0x2f983b,_0x5e1e67){return _0x2f983b!==_0x5e1e67;},'\x59\x68\x6e\x75\x43':_0x3960a2(0x2eb,'\x52\x67\x58\x4d'),'\x54\x70\x54\x44\x6c':_0x3960a2(0x281,'\x2a\x2a\x30\x76')+_0x3960a2(0x234,'\x4a\x4e\x72\x63')+'\x67','\x4a\x44\x48\x57\x6d':_0x3960a2(0x35c,'\x4a\x4e\x72\x63')+_0x3960a2(0x3b1,'\x51\x57\x33\x31')+'\x70\x70\x65\x64','\x41\x65\x4c\x51\x76':function(_0x4d3d3c,_0x2f63e7){return _0x4d3d3c===_0x2f63e7;},'\x53\x51\x4b\x7a\x4c':'\x68\x75\x62\x5f\x75\x6e\x72\x65'+_0x3960a2(0x389,'\x21\x71\x68\x4e'),'\x47\x6a\x6a\x68\x67':function(_0x5b28ef,_0x575464){return _0x5b28ef<_0x575464;},'\x61\x73\x71\x70\x76':function(_0x1915e2,_0x25919f){return _0x1915e2&&_0x25919f;},'\x64\x59\x43\x58\x6e':function(_0x5809a8,_0x345bd5){return _0x5809a8-_0x345bd5;},'\x42\x73\x50\x72\x6d':function(_0x4290a5,_0x389f){return _0x4290a5+_0x389f;},'\x49\x57\x50\x69\x43':_0x3960a2(0x38a,'\x76\x66\x44\x21'),'\x51\x59\x5a\x58\x76':function(_0x3694f5,_0x4fcfda,_0x1ee54e,_0xeedaf8,_0x5a394e){return _0x3694f5(_0x4fcfda,_0x1ee54e,_0xeedaf8,_0x5a394e);},'\x63\x4f\x71\x6a\x54':function(_0x61f84c,_0x69e783){return _0x61f84c!==_0x69e783;}},_0x17f6d0={};_0x17f6d0['\x70\x72\x6f\x63\x65\x73\x73\x65'+'\x64']=0x0;if(_0x44be29[_0x3960a2(0x303,'\x62\x48\x65\x42')](_0x533447['\x6c\x65\x6e\x67\x74\x68'],-0x19b3+0x1*0xbe4+0xdcf))return _0x17f6d0;const _0x5447d2=Date[_0x3960a2(0x287,'\x2a\x2a\x30\x76')](),_0x1e4d5d=_0x44be29[_0x3960a2(0x25e,'\x72\x48\x49\x24')](_0x3dcdba),_0x2bcc12=[];for(let _0x4e4466=0x3a*0x4a+-0xffb+0x1*-0xc9;_0x4e4466<_0x533447['\x6c\x65\x6e\x67\x74\x68'];_0x4e4466++){if(_0x44be29[_0x3960a2(0x23e,'\x72\x48\x49\x24')]!==_0x44be29[_0x3960a2(0x319,'\x63\x70\x64\x74')])_0x4785fe(_0x514bf7),_0x117672=null;else{const _0xf7c15=_0x533447[_0x4e4466];_0x44be29[_0x3960a2(0x343,'\x76\x66\x44\x21')](_0xf7c15[_0x3960a2(0x204,'\x68\x50\x35\x79')+_0x3960a2(0x30f,'\x21\x6c\x54\x21')],_0x5447d2)&&!_0x2e886d['\x68\x61\x73'](_0xf7c15[_0x3960a2(0x24d,'\x25\x68\x39\x6c')])&&_0x2bcc12[_0x3960a2(0x396,'\x32\x25\x77\x4e')](_0xf7c15);}}const _0x503849={};_0x503849[_0x3960a2(0x31a,'\x25\x68\x39\x6c')+'\x64']=0x0;if(_0x44be29[_0x3960a2(0x329,'\x26\x56\x63\x36')](_0x2bcc12[_0x3960a2(0x2f0,'\x73\x69\x71\x5e')],-0x1b0a+0x15a3+-0x3*-0x1cd))return _0x503849;let _0x4cc9a2=0x153b*-0x1+-0x20dd+0x1b0c*0x2;for(const _0xdd5658 of _0x2bcc12){if(_0x44be29[_0x3960a2(0x368,'\x79\x5e\x56\x28')](_0x44be29[_0x3960a2(0x1fc,'\x25\x68\x39\x6c')],_0x3960a2(0x357,'\x7a\x4b\x4f\x26'))){_0x2e886d[_0x3960a2(0x2ed,'\x32\x25\x77\x4e')](_0xdd5658[_0x3960a2(0x3a2,'\x26\x56\x63\x36')]);try{_0xdd5658['\x61\x74\x74\x65\x6d\x70\x74\x73']+=0x4c5*0x7+0x2025+0x131*-0x37;const _0xe974f3=await _0x44be29[_0x3960a2(0x23f,'\x4e\x77\x63\x4f')](_0x46c237,_0xdd5658[_0x3960a2(0x2f8,'\x54\x77\x65\x71')],_0xdd5658['\x74\x79\x70\x65']),_0x508f7f=_0x44be29[_0x3960a2(0x303,'\x62\x48\x65\x42')](_0xe974f3[_0x3960a2(0x33f,'\x30\x36\x53\x2a')],_0x44be29[_0x3960a2(0x1f1,'\x26\x56\x63\x36')])||_0x44be29[_0x3960a2(0x2e3,'\x6d\x58\x67\x58')](_0xe974f3['\x6f\x75\x74\x63\x6f\x6d\x65'],_0x44be29[_0x3960a2(0x25d,'\x43\x67\x59\x43')])&&_0x44be29['\x41\x65\x4c\x51\x76'](_0xe974f3['\x72\x65\x61\x73\x6f\x6e'],_0x44be29[_0x3960a2(0x21c,'\x52\x62\x57\x6e')]),_0x483282=_0x44be29[_0x3960a2(0x284,'\x34\x33\x7a\x62')](_0xdd5658[_0x3960a2(0x305,'\x30\x36\x53\x2a')],_0x1e4d5d);if(_0x44be29[_0x3960a2(0x1fd,'\x62\x48\x65\x42')](_0x508f7f,_0x483282)){const _0x3a4d7e=Math[_0x3960a2(0x29e,'\x72\x48\x49\x24')](_0x44be29['\x64\x59\x43\x58\x6e'](_0xdd5658[_0x3960a2(0x381,'\x62\x48\x65\x42')],-0x16*-0x1ba+0x5c+-0x2657),_0x23aab6[_0x3960a2(0x301,'\x21\x6c\x54\x21')]-(0x1676+0x2606*-0x1+0xf91));_0xdd5658[_0x3960a2(0x3c4,'\x25\x68\x39\x6c')+_0x3960a2(0x255,'\x79\x5e\x56\x28')]=_0x44be29[_0x3960a2(0x3b0,'\x32\x25\x77\x4e')](Date[_0x3960a2(0x200,'\x79\x31\x72\x64')](),_0x23aab6[_0x3a4d7e]);}else{if(_0x3960a2(0x238,'\x30\x79\x55\x4e')!==_0x44be29['\x49\x57\x50\x69\x43']){SakIkC[_0x3960a2(0x2d2,'\x64\x72\x50\x70')](_0xa91e5,_0x1c4339,_0x3960a2(0x2be,'\x54\x77\x65\x71')+_0x3960a2(0x283,'\x4e\x47\x38\x5b')+_0x3960a2(0x224,'\x4e\x77\x63\x4f'),SakIkC['\x62\x49\x4e\x79\x52']);const _0xbf9af0={};return _0xbf9af0[_0x3960a2(0x3be,'\x31\x65\x35\x37')]=![],_0xbf9af0[_0x3960a2(0x264,'\x68\x36\x4f\x59')]=SakIkC[_0x3960a2(0x34c,'\x5a\x43\x45\x26')],_0xbf9af0;}else{_0x44be29[_0x3960a2(0x347,'\x52\x62\x57\x6e')](_0x3312d5,_0xdd5658,_0xe974f3[_0x3960a2(0x212,'\x79\x5e\x56\x28')],_0xe974f3[_0x3960a2(0x3a9,'\x2a\x2a\x30\x76')],{'\x61\x74\x74\x65\x6d\x70\x74\x73':_0xdd5658[_0x3960a2(0x3b3,'\x63\x65\x67\x57')],'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0xe974f3[_0x3960a2(0x307,'\x43\x76\x63\x5e')+'\x6d\x73'],'\x72\x65\x63\x61\x6c\x6c\x65\x64\x5f\x68\x61\x73\x68':_0xe974f3[_0x3960a2(0x2b9,'\x4e\x77\x63\x4f')+_0x3960a2(0x34e,'\x73\x69\x71\x5e')]});const _0x53103d=_0x533447[_0x3960a2(0x20e,'\x21\x71\x68\x4e')](_0xdd5658);if(_0x44be29['\x63\x4f\x71\x6a\x54'](_0x53103d,-(0x2f0+-0x1b46+0x1857)))_0x533447[_0x3960a2(0x366,'\x79\x5e\x56\x28')](_0x53103d,-0x193*0xa+-0x1989+0x1*0x2948);}}_0x4cc9a2+=-0x1*-0x125c+0x2d7*0x9+0x1*-0x2bea;}finally{_0x2e886d[_0x3960a2(0x37d,'\x31\x65\x35\x37')](_0xdd5658[_0x3960a2(0x34b,'\x4a\x4e\x72\x63')]);}}else return SakIkC[_0x3960a2(0x390,'\x68\x5e\x34\x77')](_0x2f52b7,SakIkC[_0x3960a2(0x325,'\x26\x56\x63\x36')],0x69c*0x1+-0x8b*-0x3b+0x3*-0x65f);}const _0x5146d6={};return _0x5146d6[_0x3960a2(0x30d,'\x21\x71\x68\x4e')+'\x64']=_0x4cc9a2,_0x5146d6;}function _0x21e345(){const _0x37a209=_0x350a4f,_0x20604e={'\x78\x78\x48\x4e\x49':function(_0x105a3e,_0x41b430){return _0x105a3e===_0x41b430;},'\x73\x51\x57\x66\x50':_0x37a209(0x379,'\x74\x71\x7a\x24'),'\x4c\x66\x6f\x42\x53':function(_0x1d09ea){return _0x1d09ea();},'\x70\x53\x43\x71\x54':function(_0x2a6a8f,_0x1541cd){return _0x2a6a8f+_0x1541cd;},'\x46\x70\x7a\x49\x46':_0x37a209(0x3a1,'\x62\x74\x57\x33')+_0x37a209(0x2e9,'\x58\x4a\x36\x45')+_0x37a209(0x39b,'\x74\x71\x7a\x24')+_0x37a209(0x2d8,'\x4a\x4e\x72\x63')+_0x37a209(0x29a,'\x73\x69\x71\x5e'),'\x56\x4c\x44\x57\x61':function(_0xbcd078,_0x2e5ad2,_0x41fe6f){return _0xbcd078(_0x2e5ad2,_0x41fe6f);},'\x58\x65\x69\x57\x4e':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x46\x5a\x62\x4f\x78':_0x37a209(0x256,'\x30\x36\x53\x2a'),'\x70\x66\x4d\x55\x51':_0x37a209(0x26a,'\x43\x67\x59\x43')};if(_0x44bf9a)return;_0x44bf9a=!![];const _0x48e5a5=_0x1ff089();_0x1fde9f=_0x20604e[_0x37a209(0x219,'\x79\x72\x21\x5b')](setInterval,function(){const _0x602434=_0x37a209,_0x249bd1={'\x74\x77\x73\x6a\x6a':function(_0x6e9bd8,_0x3508f2){const _0x39b270=_0x4412;return _0x20604e[_0x39b270(0x1f9,'\x54\x77\x65\x71')](_0x6e9bd8,_0x3508f2);},'\x6a\x4f\x65\x6a\x68':_0x20604e[_0x602434(0x3b7,'\x43\x76\x63\x5e')],'\x67\x61\x4d\x75\x55':function(_0x1cd2ee,_0x11a24f){const _0x3c4f98=_0x602434;return _0x20604e[_0x3c4f98(0x38c,'\x65\x4d\x6d\x76')](_0x1cd2ee,_0x11a24f);}};_0x20604e[_0x602434(0x27f,'\x40\x73\x6c\x38')](_0x3ad1bd)[_0x602434(0x2c7,'\x74\x71\x7a\x24')](function(_0x1b0c5e){const _0x1ed132=_0x602434;_0x249bd1[_0x1ed132(0x361,'\x68\x5e\x34\x77')]('\x42\x57\x48\x77\x64',_0x249bd1[_0x1ed132(0x288,'\x43\x76\x63\x5e')])?_0x291d59[_0x1ed132(0x286,'\x79\x5e\x56\x28')](_0x28f8ae):_0x249bd1[_0x1ed132(0x25a,'\x58\x4a\x36\x45')](process.env.EVOLVE_RECALL_VERIFY_DEBUG,'\x31')&&console[_0x1ed132(0x2e0,'\x4d\x33\x24\x65')]('\x5b\x52\x65\x63\x61\x6c\x6c\x56'+'\x65\x72\x69\x66\x79\x5d\x20\x77'+_0x1ed132(0x2a8,'\x6d\x58\x67\x58')+_0x1ed132(0x3c0,'\x63\x65\x67\x57')+_0x1ed132(0x3bb,'\x52\x62\x57\x6e')+(_0x1b0c5e&&_0x1b0c5e[_0x1ed132(0x2c2,'\x51\x57\x33\x31')]||_0x1b0c5e));});},_0x48e5a5),_0x1fde9f&&_0x20604e['\x78\x78\x48\x4e\x49'](typeof _0x1fde9f['\x75\x6e\x72\x65\x66'],_0x20604e[_0x37a209(0x2a2,'\x79\x31\x72\x64')])&&(_0x20604e[_0x37a209(0x348,'\x4d\x33\x24\x65')]!==_0x20604e[_0x37a209(0x2fd,'\x4e\x47\x38\x5b')]?_0x1fde9f[_0x37a209(0x293,'\x65\x4d\x6d\x76')]():_0x512103[_0x37a209(0x237,'\x2a\x2a\x30\x76')](_0x20604e[_0x37a209(0x373,'\x71\x51\x32\x5b')](_0x20604e[_0x37a209(0x21d,'\x68\x36\x4f\x59')],_0x7e5d68&&_0x10ceae[_0x37a209(0x2a6,'\x26\x56\x63\x36')]||_0x21a353)));}function _0x203ec0(){const _0x4170b3=_0x350a4f,_0x212525={'\x53\x43\x66\x47\x6a':function(_0x37df61,_0x4b9b74){return _0x37df61(_0x4b9b74);}};_0x1fde9f&&(_0x212525[_0x4170b3(0x370,'\x25\x68\x39\x6c')](clearInterval,_0x1fde9f),_0x1fde9f=null),_0x44bf9a=![];}function _0x911579(){return Object['\x61\x73\x73\x69\x67\x6e']({},_0x2e1867);}function _0x43190a(){const _0x365fd7=_0x350a4f,_0xef13f5={'\x79\x58\x50\x61\x64':function(_0x3702fc){return _0x3702fc();}};_0xef13f5[_0x365fd7(0x27c,'\x30\x79\x55\x4e')](_0x203ec0),_0x533447=[],_0x2e886d[_0x365fd7(0x36d,'\x63\x65\x67\x57')]();const _0x405c0a={};_0x405c0a['\x6f\x6b']=0x0,_0x405c0a[_0x365fd7(0x230,'\x26\x56\x63\x36')]=0x0,_0x405c0a['\x6d\x69\x73\x6d\x61\x74\x63\x68']=0x0,_0x405c0a[_0x365fd7(0x254,'\x2a\x69\x54\x53')]=0x0,_0x2e1867=_0x405c0a;}function _0x8e1961(){const _0x558306=_0x350a4f;return _0x533447[_0x558306(0x33c,'\x59\x71\x5b\x4f')];}const _0x1513f6={};_0x1513f6[_0x350a4f(0x1e9,'\x72\x48\x49\x24')+'\x75\x62\x6c\x69\x73\x68\x65\x64'+'\x41\x73\x73\x65\x74']=_0x52e6b2,_0x1513f6[_0x350a4f(0x317,'\x2a\x69\x54\x53')+'\x63\x65']=_0x46c237,_0x1513f6[_0x350a4f(0x27e,'\x41\x72\x25\x31')+_0x350a4f(0x239,'\x52\x62\x57\x6e')]=_0x21e345,_0x1513f6[_0x350a4f(0x1ec,'\x24\x4e\x63\x6c')+'\x65\x72']=_0x203ec0,_0x1513f6[_0x350a4f(0x33d,'\x41\x72\x25\x31')+_0x350a4f(0x248,'\x32\x25\x77\x4e')]=_0x911579,_0x1513f6[_0x350a4f(0x2d7,'\x63\x65\x67\x57')+_0x350a4f(0x2c9,'\x2a\x2a\x30\x76')]=_0x3ad1bd,_0x1513f6[_0x350a4f(0x31d,'\x38\x6d\x6a\x78')+_0x350a4f(0x2ba,'\x74\x71\x7a\x24')]=_0x43190a,_0x1513f6[_0x350a4f(0x3af,'\x65\x4d\x6d\x76')+_0x350a4f(0x2a1,'\x43\x76\x63\x5e')+_0x350a4f(0x205,'\x2a\x69\x54\x53')+'\x67']=_0x8e1961,module[_0x350a4f(0x332,'\x62\x74\x57\x33')]=_0x1513f6;
1
+ 'use strict';
2
+
3
+ // ---------------------------------------------------------------------------
4
+ // recallVerifier — confirm that assets we publish to Hub can actually be
5
+ // recalled later. After a successful publish (capsule bundle, anti-pattern,
6
+ // or skill bundle), enqueue the asset_id; a background worker uses Hub's
7
+ // Phase 2 deterministic lookup to verify the asset round-trips, with
8
+ // exponential backoff to absorb Hub indexing latency. Outcomes land as
9
+ // MemoryGraphEvents of kind 'recall_verify' so a report script can compute
10
+ // per-asset-type success rates and gate releases.
11
+ //
12
+ // Scope: only assets with a content-hash asset_id are verified. MemoryGraph
13
+ // events themselves go through a different transport (POST /a2a/memory/event,
14
+ // not the asset store) and produce no asset_id, so they cannot be subject to
15
+ // roundtrip verification. This naturally terminates any recursion of
16
+ // recall_verify events that would otherwise mirror to Hub.
17
+ //
18
+ // Graceful degradation: if fetchAssetById fails for any reason (network,
19
+ // auth, schema), the worker emits 'verification_skipped' rather than
20
+ // throwing. Verification must NEVER block the daemon cycle.
21
+ // ---------------------------------------------------------------------------
22
+
23
+ const { envInt, envFloat } = require('../config');
24
+ const { fetchAssetById } = require('./hubSearch');
25
+ const { computeAssetId } = require('./contentHash');
26
+ const { writeMemoryGraphEvent } = require('./memoryGraph');
27
+
28
+ // --- Module state (per-process lifetime, bounded) ---
29
+
30
+ let _queue = [];
31
+ const _inflightAssetIds = new Set();
32
+ let _workerStarted = false;
33
+ let _workerTimer = null;
34
+ let _lastReport = { ok: 0, missing: 0, mismatch: 0, skipped: 0 };
35
+
36
+ // Backoff schedule between attempts. attempt 1 fires INITIAL_WAIT_MS after
37
+ // publish; if it returns missing, retries fire after these intervals.
38
+ const BACKOFF_MS = [5000, 15000, 60000];
39
+
40
+ // --- Env getters (read at call time, never module-load) ---
41
+
42
+ function _isFeatureEnabled() {
43
+ // Default OFF: Hub /a2a/fetch contract is strict (unknown asset_id → empty
44
+ // results, 0 cost) so client-side round-trip verification is redundant as a
45
+ // default safety net. Operators who want end-to-end SLA observability can
46
+ // opt in with EVOLVE_RECALL_VERIFY=1; events still emit locally and (once
47
+ // Hub-side schema lands, see EvoMap/evomap-hub#670) optionally to Hub.
48
+ return String(process.env.EVOLVE_RECALL_VERIFY || '0') === '1';
49
+ }
50
+
51
+ function _getSampleRate() {
52
+ // Clamp to [0, 1] to match the startup banner in index.js. A negative
53
+ // env value would otherwise make the gate `Math.random() >= rate`
54
+ // always true → every verify silently skipped, while the banner
55
+ // (which does its own range clamp) still shows 1.0. Operators need
56
+ // the implementation and the banner to agree. (Bugbot review on PR #53.)
57
+ const raw = envFloat('EVOLVE_RECALL_VERIFY_SAMPLE_RATE', 1.0);
58
+ if (!Number.isFinite(raw) || raw < 0 || raw > 1) return 1.0;
59
+ return raw;
60
+ }
61
+
62
+ function _getQueueMax() {
63
+ return envInt('EVOLVE_RECALL_VERIFY_QUEUE_MAX', 256);
64
+ }
65
+
66
+ function _getPollMs() {
67
+ return envInt('EVOLVE_RECALL_VERIFY_POLL_MS', 5000);
68
+ }
69
+
70
+ function _getInitialWaitMs() {
71
+ return envInt('EVOLVE_RECALL_VERIFY_INITIAL_WAIT_MS', 5000);
72
+ }
73
+
74
+ function _getMaxAttempts() {
75
+ return envInt('EVOLVE_RECALL_VERIFY_ATTEMPTS', 3);
76
+ }
77
+
78
+ function _getFetchTimeoutMs() {
79
+ return envInt('EVOLVE_RECALL_VERIFY_FETCH_TIMEOUT_MS', 8000);
80
+ }
81
+
82
+ // --- Event emission ---
83
+
84
+ function _emitEvent(entry, outcome, reason, extras) {
85
+ const ts = Date.now();
86
+ const verification = {
87
+ outcome,
88
+ reason: reason || null,
89
+ attempts: extras && Number.isFinite(extras.attempts) ? extras.attempts : (entry.attempts || 0),
90
+ latency_ms: extras && Number.isFinite(extras.latency_ms) ? extras.latency_ms : 0,
91
+ age_at_verify_ms: entry.publishedAt ? (ts - entry.publishedAt) : 0,
92
+ recalled_hash: extras && extras.recalled_hash ? extras.recalled_hash : null,
93
+ };
94
+ const ev = {
95
+ type: 'MemoryGraphEvent',
96
+ kind: 'recall_verify',
97
+ id: 'mge_' + ts + '_' + Math.random().toString(36).slice(2, 10),
98
+ ts,
99
+ asset: {
100
+ type: entry.type || 'Unknown',
101
+ id: entry.asset_id || null,
102
+ },
103
+ verification,
104
+ signal: { signals: Array.isArray(entry.signals) ? entry.signals.slice(0, 8) : [] },
105
+ };
106
+ try {
107
+ writeMemoryGraphEvent(ev);
108
+ } catch (writeErr) {
109
+ if (process.env.EVOLVE_RECALL_VERIFY_DEBUG === '1') {
110
+ console.warn('[RecallVerify] writeMemoryGraphEvent failed: ' + (writeErr && writeErr.message || writeErr));
111
+ }
112
+ }
113
+ if (outcome === 'roundtrip_ok') _lastReport.ok++;
114
+ else if (outcome === 'roundtrip_missing') _lastReport.missing++;
115
+ else if (outcome === 'roundtrip_mismatch') _lastReport.mismatch++;
116
+ else _lastReport.skipped++;
117
+ }
118
+
119
+ // --- Public API ---
120
+
121
+ function enqueuePublishedAsset(input) {
122
+ const entry = {
123
+ asset_id: input && input.asset_id ? String(input.asset_id) : null,
124
+ type: input && input.type ? String(input.type) : 'Unknown',
125
+ signals: Array.isArray(input && input.signals) ? input.signals : [],
126
+ publishedAt: input && Number.isFinite(input.publishedAt) ? input.publishedAt : Date.now(),
127
+ attempts: 0,
128
+ nextEligibleAt: 0,
129
+ };
130
+
131
+ if (!_isFeatureEnabled()) {
132
+ _emitEvent(entry, 'verification_skipped', 'feature_disabled');
133
+ return { enqueued: false, reason: 'feature_disabled' };
134
+ }
135
+
136
+ if (!entry.asset_id) {
137
+ _emitEvent(entry, 'verification_skipped', 'missing_asset_id');
138
+ return { enqueued: false, reason: 'missing_asset_id' };
139
+ }
140
+
141
+ const sampleRate = _getSampleRate();
142
+ if (sampleRate < 1.0 && Math.random() >= sampleRate) {
143
+ _emitEvent(entry, 'verification_skipped', 'sample_rate');
144
+ return { enqueued: false, reason: 'sample_rate' };
145
+ }
146
+
147
+ entry.nextEligibleAt = entry.publishedAt + _getInitialWaitMs();
148
+
149
+ const queueMax = _getQueueMax();
150
+ while (_queue.length >= queueMax) {
151
+ const dropped = _queue.shift();
152
+ _emitEvent(dropped, 'verification_skipped', 'queue_full');
153
+ }
154
+
155
+ _queue.push(entry);
156
+ return { enqueued: true };
157
+ }
158
+
159
+ // Single-asset verification. Returns one of the four outcomes.
160
+ // outcome ∈ { roundtrip_ok | roundtrip_missing | roundtrip_mismatch | verification_skipped }
161
+ async function verifyOnce(assetId, assetType) {
162
+ const t0 = Date.now();
163
+ if (!assetId) {
164
+ return { outcome: 'verification_skipped', reason: 'missing_asset_id', latency_ms: 0, recalled_hash: null };
165
+ }
166
+ let result;
167
+ try {
168
+ result = await fetchAssetById(assetId, { timeoutMs: _getFetchTimeoutMs(), bypassCache: true });
169
+ } catch (err) {
170
+ return {
171
+ outcome: 'verification_skipped',
172
+ reason: 'hub_unreachable',
173
+ latency_ms: Date.now() - t0,
174
+ recalled_hash: null,
175
+ error: err && err.message || String(err),
176
+ };
177
+ }
178
+
179
+ const latency = Date.now() - t0;
180
+
181
+ if (!result || !result.ok) {
182
+ return {
183
+ outcome: 'verification_skipped',
184
+ reason: 'hub_unreachable',
185
+ latency_ms: latency,
186
+ recalled_hash: null,
187
+ error: (result && result.error) || 'fetch_not_ok',
188
+ };
189
+ }
190
+
191
+ if (!result.asset) {
192
+ return { outcome: 'roundtrip_missing', reason: null, latency_ms: latency, recalled_hash: null };
193
+ }
194
+
195
+ const recalled = result.asset;
196
+ if (recalled.asset_id !== assetId) {
197
+ return { outcome: 'roundtrip_missing', reason: 'wrong_asset', latency_ms: latency, recalled_hash: recalled.asset_id || null };
198
+ }
199
+
200
+ // Recompute the asset_id from the recalled body. If it doesn't match what
201
+ // the recalled asset claims its asset_id is, the Hub re-encoded or
202
+ // corrupted the asset between publish and fetch.
203
+ let recomputed;
204
+ try {
205
+ recomputed = computeAssetId(recalled);
206
+ } catch (hashErr) {
207
+ return {
208
+ outcome: 'verification_skipped',
209
+ reason: 'hash_recompute_failed',
210
+ latency_ms: latency,
211
+ recalled_hash: null,
212
+ error: hashErr && hashErr.message || String(hashErr),
213
+ };
214
+ }
215
+
216
+ if (recomputed !== recalled.asset_id) {
217
+ return { outcome: 'roundtrip_mismatch', reason: 'hash_drift', latency_ms: latency, recalled_hash: recomputed };
218
+ }
219
+
220
+ return { outcome: 'roundtrip_ok', reason: null, latency_ms: latency, recalled_hash: recomputed };
221
+ }
222
+
223
+ // Drain the queue once. Public + idempotent so tests can drive it
224
+ // synchronously without waiting on setInterval.
225
+ async function _runWorkerOnce() {
226
+ if (_queue.length === 0) return { processed: 0 };
227
+ const now = Date.now();
228
+ const maxAttempts = _getMaxAttempts();
229
+ const ready = [];
230
+ for (let i = 0; i < _queue.length; i++) {
231
+ const entry = _queue[i];
232
+ if (entry.nextEligibleAt <= now && !_inflightAssetIds.has(entry.asset_id)) {
233
+ ready.push(entry);
234
+ }
235
+ }
236
+ if (ready.length === 0) return { processed: 0 };
237
+
238
+ let processed = 0;
239
+ for (const entry of ready) {
240
+ _inflightAssetIds.add(entry.asset_id);
241
+ try {
242
+ entry.attempts += 1;
243
+ const verifyResult = await verifyOnce(entry.asset_id, entry.type);
244
+
245
+ const isRetryable = (verifyResult.outcome === 'roundtrip_missing' ||
246
+ (verifyResult.outcome === 'verification_skipped' && verifyResult.reason === 'hub_unreachable'));
247
+ const hasAttemptsLeft = entry.attempts < maxAttempts;
248
+
249
+ if (isRetryable && hasAttemptsLeft) {
250
+ const backoffIdx = Math.min(entry.attempts - 1, BACKOFF_MS.length - 1);
251
+ entry.nextEligibleAt = Date.now() + BACKOFF_MS[backoffIdx];
252
+ } else {
253
+ _emitEvent(entry, verifyResult.outcome, verifyResult.reason, {
254
+ attempts: entry.attempts,
255
+ latency_ms: verifyResult.latency_ms,
256
+ recalled_hash: verifyResult.recalled_hash,
257
+ });
258
+ const idx = _queue.indexOf(entry);
259
+ if (idx !== -1) _queue.splice(idx, 1);
260
+ }
261
+ processed += 1;
262
+ } finally {
263
+ // Always release inflight (including on retry) — next poll re-adds.
264
+ _inflightAssetIds.delete(entry.asset_id);
265
+ }
266
+ }
267
+ return { processed };
268
+ }
269
+
270
+ function startWorker() {
271
+ if (_workerStarted) return;
272
+ _workerStarted = true;
273
+ const pollMs = _getPollMs();
274
+ _workerTimer = setInterval(function () {
275
+ _runWorkerOnce().catch(function (err) {
276
+ if (process.env.EVOLVE_RECALL_VERIFY_DEBUG === '1') {
277
+ console.warn('[RecallVerify] worker tick failed: ' + (err && err.message || err));
278
+ }
279
+ });
280
+ }, pollMs);
281
+ if (_workerTimer && typeof _workerTimer.unref === 'function') {
282
+ _workerTimer.unref();
283
+ }
284
+ }
285
+
286
+ function stopWorker() {
287
+ if (_workerTimer) {
288
+ clearInterval(_workerTimer);
289
+ _workerTimer = null;
290
+ }
291
+ _workerStarted = false;
292
+ }
293
+
294
+ function getLastReport() {
295
+ return Object.assign({}, _lastReport);
296
+ }
297
+
298
+ function _resetForTesting() {
299
+ stopWorker();
300
+ _queue = [];
301
+ _inflightAssetIds.clear();
302
+ _lastReport = { ok: 0, missing: 0, mismatch: 0, skipped: 0 };
303
+ }
304
+
305
+ function _getQueueLengthForTesting() {
306
+ return _queue.length;
307
+ }
308
+
309
+ module.exports = {
310
+ enqueuePublishedAsset,
311
+ verifyOnce,
312
+ startWorker,
313
+ stopWorker,
314
+ getLastReport,
315
+ _runWorkerOnce,
316
+ _resetForTesting,
317
+ _getQueueLengthForTesting,
318
+ };