@evomap/evolver 1.89.11 → 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 (100) 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.md +90 -537
  10. package/README.public.md +578 -0
  11. package/SECURITY.md +108 -0
  12. package/assets/gep/events.jsonl +3 -0
  13. package/examples/atp-consumer-quickstart.md +100 -0
  14. package/examples/hello-world.md +38 -0
  15. package/package.json +6 -18
  16. package/proxy-package.json +39 -0
  17. package/public.manifest.json +145 -0
  18. package/src/evolve/guards.js +721 -1
  19. package/src/evolve/pipeline/collect.js +1283 -1
  20. package/src/evolve/pipeline/dispatch.js +421 -1
  21. package/src/evolve/pipeline/enrich.js +440 -1
  22. package/src/evolve/pipeline/hub.js +319 -1
  23. package/src/evolve/pipeline/select.js +274 -1
  24. package/src/evolve/pipeline/signals.js +206 -1
  25. package/src/evolve/utils.js +264 -1
  26. package/src/evolve.js +350 -1
  27. package/src/gep/a2aProtocol.js +4463 -1
  28. package/src/gep/antiAbuseTelemetry.js +233 -1
  29. package/src/gep/autoDistillConv.js +205 -1
  30. package/src/gep/autoDistillLlm.js +315 -1
  31. package/src/gep/candidateEval.js +92 -1
  32. package/src/gep/candidates.js +198 -1
  33. package/src/gep/contentHash.js +30 -1
  34. package/src/gep/conversationDistiller.js +270 -0
  35. package/src/gep/conversationSniffer.js +266 -1
  36. package/src/gep/crypto.js +89 -1
  37. package/src/gep/curriculum.js +163 -1
  38. package/src/gep/deviceId.js +218 -1
  39. package/src/gep/envFingerprint.js +118 -1
  40. package/src/gep/epigenetics.js +31 -1
  41. package/src/gep/execBridge.js +712 -1
  42. package/src/gep/explore.js +289 -1
  43. package/src/gep/hash.js +15 -1
  44. package/src/gep/hubFetch.js +608 -1
  45. package/src/gep/hubReview.js +207 -1
  46. package/src/gep/hubSearch.js +526 -1
  47. package/src/gep/hubVerify.js +306 -1
  48. package/src/gep/learningSignals.js +89 -1
  49. package/src/gep/memoryGraph.js +1449 -1
  50. package/src/gep/memoryGraphAdapter.js +203 -1
  51. package/src/gep/mutation.js +203 -1
  52. package/src/gep/narrativeMemory.js +108 -1
  53. package/src/gep/openPRRegistry.js +205 -1
  54. package/src/gep/personality.js +423 -1
  55. package/src/gep/policyCheck.js +599 -1
  56. package/src/gep/prompt.js +836 -1
  57. package/src/gep/questionGenerator.js +103 -0
  58. package/src/gep/recallInject.js +409 -1
  59. package/src/gep/recallVerifier.js +318 -1
  60. package/src/gep/reflection.js +177 -1
  61. package/src/gep/savingsCore.js +112 -1
  62. package/src/gep/selector.js +602 -1
  63. package/src/gep/skillDistiller.js +1294 -1
  64. package/src/gep/solidify.js +1699 -1
  65. package/src/gep/strategy.js +136 -1
  66. package/src/gep/tokenSavings.js +95 -1
  67. package/src/gep/workspaceKeychain.js +174 -1
  68. package/src/proxy/extensions/traceControl.js +109 -1
  69. package/src/proxy/inject.js +52 -1
  70. package/src/proxy/lifecycle/manager.js +108 -7
  71. package/src/proxy/server/routes.js +31 -0
  72. package/src/proxy/server/settings.js +6 -2
  73. package/src/proxy/sync/engine.js +31 -15
  74. package/src/proxy/sync/inbound.js +87 -9
  75. package/src/proxy/sync/outbound.js +57 -4
  76. package/src/proxy/trace/extractor.js +1403 -1
  77. package/src/proxy/trace/usage.js +105 -1
  78. package/CONTRIBUTING.md +0 -19
  79. package/assets/cover.png +0 -0
  80. package/scripts/a2a_export.js +0 -63
  81. package/scripts/a2a_ingest.js +0 -79
  82. package/scripts/a2a_promote.js +0 -118
  83. package/scripts/analyze_by_skill.js +0 -121
  84. package/scripts/build_binaries.js +0 -479
  85. package/scripts/check-changelog.js +0 -166
  86. package/scripts/extract_log.js +0 -85
  87. package/scripts/generate_history.js +0 -75
  88. package/scripts/gep_append_event.js +0 -96
  89. package/scripts/gep_personality_report.js +0 -234
  90. package/scripts/human_report.js +0 -147
  91. package/scripts/recall-verify-report.js +0 -234
  92. package/scripts/recover_loop.js +0 -61
  93. package/scripts/refresh_stars_badge.js +0 -168
  94. package/scripts/seed-merchants.js +0 -91
  95. package/scripts/suggest_version.js +0 -89
  96. package/scripts/validate-modules.js +0 -38
  97. package/scripts/validate-suite.js +0 -78
  98. package/skills/index.json +0 -14
  99. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  100. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,306 @@
1
- const _0x5ce74f=_0x364b;(function(_0x522796,_0x3efbbf){const _0x50d2ed=_0x364b,_0x52eb4a=_0x522796();while(!![]){try{const _0x3d4d46=-parseInt(_0x50d2ed(0x2fb,'\x72\x6b\x64\x39'))/(0x1*-0x1124+0xef*-0x1d+0x2c38)*(parseInt(_0x50d2ed(0x31e,'\x35\x31\x73\x28'))/(0x49*0x80+0x17*-0x19f+0xcb))+parseInt(_0x50d2ed(0x296,'\x35\x64\x69\x71'))/(0x815*-0x1+-0x1*-0xd4f+-0x537)+-parseInt(_0x50d2ed(0x39e,'\x5a\x2a\x44\x43'))/(0x4*-0x766+0xe35*-0x2+-0x1d03*-0x2)+-parseInt(_0x50d2ed(0x361,'\x7a\x73\x2a\x6d'))/(0x24c7+-0xc2*0x5+-0x20f8)+-parseInt(_0x50d2ed(0x385,'\x61\x4d\x59\x66'))/(-0x3e*-0x9f+-0x1069*-0x2+0x1*-0x474e)+parseInt(_0x50d2ed(0x22e,'\x30\x5b\x6e\x32'))/(0xc67*0x1+-0x16f+-0xaf1)+parseInt(_0x50d2ed(0x3a4,'\x72\x6b\x64\x39'))/(0x1*0x121d+-0x17c*0x3+-0xda1*0x1)*(parseInt(_0x50d2ed(0x34c,'\x6c\x4e\x62\x53'))/(-0x1*-0x1b55+0x43f*-0x3+-0xe8f));if(_0x3d4d46===_0x3efbbf)break;else _0x52eb4a['push'](_0x52eb4a['shift']());}catch(_0x4cd1b8){_0x52eb4a['push'](_0x52eb4a['shift']());}}}(_0x316a,-0xbd62d+0x1d23e+0xda66*0x13));const _0x26f1c0=(function(){const _0x5a42fb=_0x364b,_0x10d03d={'\x7a\x4a\x4d\x4c\x67':function(_0x64cd21,_0x4ba95f,_0x393392){return _0x64cd21(_0x4ba95f,_0x393392);},'\x52\x4a\x77\x78\x71':function(_0xe5f9c1){return _0xe5f9c1();},'\x6f\x49\x42\x78\x75':_0x5a42fb(0x272,'\x30\x6d\x24\x31')};let _0x129933=!![];return function(_0x529fa3,_0x5d7815){const _0x3d5fad=_0x129933?function(){const _0x2f9194=_0x364b,_0x1e3368={'\x6c\x51\x51\x6d\x75':function(_0x10f3fd){return _0x10f3fd();},'\x6e\x6a\x41\x63\x4e':function(_0x1a0b78,_0x2f11f9,_0x261ece){const _0x23afb7=_0x364b;return _0x10d03d[_0x23afb7(0x355,'\x46\x5d\x2a\x51')](_0x1a0b78,_0x2f11f9,_0x261ece);},'\x74\x74\x6e\x43\x77':function(_0x505e9d){const _0x261618=_0x364b;return _0x10d03d[_0x261618(0x2c0,'\x4a\x45\x70\x4d')](_0x505e9d);},'\x49\x6d\x59\x76\x69':_0x2f9194(0x346,'\x6b\x36\x31\x75')};if(_0x2f9194(0x202,'\x71\x6e\x63\x48')!==_0x10d03d[_0x2f9194(0x22b,'\x58\x29\x72\x44')]){if(_0x5d7815){const _0x2bf488=_0x5d7815[_0x2f9194(0x2e2,'\x59\x73\x45\x42')](_0x529fa3,arguments);return _0x5d7815=null,_0x2bf488;}}else try{const _0x22db5e=_0x1e3368[_0x2f9194(0x264,'\x79\x39\x51\x64')](_0x3ceff4);if(!_0x22db5e)return;const _0x345b26=_0x47bde6[_0x2f9194(0x270,'\x79\x39\x51\x64')](_0x1e3368[_0x2f9194(0x227,'\x39\x64\x4e\x6c')](_0x3fe8e7)),_0x528326={};_0x528326[_0x2f9194(0x2ab,'\x35\x64\x69\x71')+'\x65']=!![];if(!_0xb54019['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x345b26))_0xce2ba1['\x6d\x6b\x64\x69\x72\x53\x79\x6e'+'\x63'](_0x345b26,_0x528326);const _0x211742=_0x389d70[_0x2f9194(0x39c,'\x65\x77\x40\x38')+'\x79'](_0x1538d2),_0x4d58f9=_0x1e3368[_0x2f9194(0x244,'\x43\x4e\x47\x51')](_0x1f98d1,_0x22db5e,_0x211742),_0x34d6a9={};_0x34d6a9[_0x2f9194(0x29f,'\x39\x64\x4e\x6c')]=_0x13677d,_0x34d6a9[_0x2f9194(0x304,'\x65\x77\x40\x38')]=_0x4d58f9,_0x5d3b68[_0x2f9194(0x364,'\x5e\x4c\x6a\x23')+_0x2f9194(0x2a8,'\x39\x64\x4e\x6c')](_0x1e3368[_0x2f9194(0x24a,'\x30\x6d\x24\x31')](_0x546c29),_0x3c064a[_0x2f9194(0x29a,'\x35\x50\x73\x75')+'\x79'](_0x34d6a9),_0x1e3368[_0x2f9194(0x367,'\x6b\x36\x31\x75')]);}catch(_0x40a5e7){}}:function(){};return _0x129933=![],_0x3d5fad;};}()),_0x5552be=_0x26f1c0(this,function(){const _0x700275=_0x364b,_0x2556bc={};_0x2556bc[_0x700275(0x3a3,'\x61\x4d\x59\x66')]=_0x700275(0x26c,'\x46\x5d\x2a\x51')+_0x700275(0x399,'\x59\x73\x45\x42');const _0x21cf2b=_0x2556bc;return _0x5552be[_0x700275(0x303,'\x59\x74\x4e\x46')]()[_0x700275(0x1fa,'\x39\x64\x4e\x6c')](_0x700275(0x242,'\x55\x56\x29\x77')+'\x2b\x29\x2b\x24')['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x700275(0x39d,'\x6c\x4e\x62\x53')+_0x700275(0x245,'\x72\x6b\x64\x39')](_0x5552be)[_0x700275(0x267,'\x59\x73\x45\x42')](_0x21cf2b[_0x700275(0x2bb,'\x71\x6e\x63\x48')]);});_0x5552be();const _0x54f85a=require('\x63\x72\x79\x70\x74\x6f'),_0x3b0051=require('\x66\x73'),_0x4467c6=require('\x70\x61\x74\x68'),{hubFetch:_0x576101}=require(_0x5ce74f(0x397,'\x43\x54\x64\x51')+'\x63\x68'),{withFileLock:_0x465775}=require(_0x5ce74f(0x23f,'\x39\x64\x4e\x6c')+_0x5ce74f(0x1ef,'\x4f\x66\x76\x42'));function _0x32a020(_0x30dbff,_0x104cc1){const _0x4aa52a=_0x5ce74f,_0x31f018={};_0x31f018[_0x4aa52a(0x204,'\x35\x64\x69\x71')]=_0x4aa52a(0x2ce,'\x5b\x28\x58\x4d');const _0x26158d=_0x31f018;return _0x54f85a[_0x4aa52a(0x307,'\x72\x6b\x64\x39')+'\x61\x63'](_0x26158d['\x55\x44\x78\x4d\x56'],_0x30dbff)[_0x4aa52a(0x216,'\x46\x5d\x2a\x51')](_0x104cc1)['\x64\x69\x67\x65\x73\x74'](_0x4aa52a(0x3a1,'\x39\x64\x4e\x6c'));}function _0x5f44a9(_0x252e41){const _0x1e612d=_0x5ce74f,_0x12f7d7={'\x41\x6b\x59\x5a\x72':_0x1e612d(0x252,'\x59\x74\x4e\x46'),'\x4a\x43\x79\x61\x56':function(_0x548832,_0x1cc7f9){return _0x548832(_0x1cc7f9);},'\x57\x63\x56\x51\x56':function(_0x460468,_0x5d92ee){return _0x460468||_0x5d92ee;},'\x76\x74\x79\x71\x44':_0x1e612d(0x2b3,'\x26\x6e\x66\x6b')};return _0x54f85a[_0x1e612d(0x2f4,'\x46\x5d\x2a\x51')+'\x73\x68'](_0x12f7d7[_0x1e612d(0x279,'\x49\x46\x50\x34')])[_0x1e612d(0x3a6,'\x30\x6d\x24\x31')](_0x12f7d7[_0x1e612d(0x37a,'\x4f\x66\x76\x42')](String,_0x12f7d7[_0x1e612d(0x39f,'\x5a\x2a\x44\x43')](_0x252e41,'')))[_0x1e612d(0x2c9,'\x30\x5b\x6e\x32')](_0x12f7d7[_0x1e612d(0x2e0,'\x5e\x4c\x6a\x23')])[_0x1e612d(0x24d,'\x36\x6d\x29\x69')](-0x1a*-0xf8+0x1913+0x10c1*-0x3,0x121a+-0x1*0xf0d+-0x2fd);}function _0x316a(){const _0x4112a3=['\x43\x72\x70\x63\x4b\x4e\x33\x63\x4b\x78\x57\x61\x57\x34\x58\x74\x45\x4a\x71\x75\x57\x51\x69','\x61\x6d\x6f\x52\x73\x38\x6b\x69\x70\x57','\x65\x74\x54\x47\x57\x50\x6c\x64\x4d\x43\x6b\x59','\x72\x53\x6f\x74\x57\x34\x46\x64\x47\x6d\x6b\x6c','\x57\x36\x4b\x36\x42\x49\x79','\x78\x43\x6f\x41\x57\x50\x46\x63\x48\x38\x6f\x33','\x57\x37\x58\x42\x57\x50\x53','\x78\x38\x6f\x52\x57\x36\x64\x64\x50\x43\x6b\x58','\x6c\x58\x57\x77\x57\x36\x46\x64\x50\x43\x6f\x74\x6a\x61\x61','\x57\x4f\x76\x5a\x57\x36\x31\x65','\x57\x35\x46\x63\x4e\x49\x34\x61\x6b\x71','\x57\x50\x4a\x63\x4d\x43\x6f\x70\x70\x6d\x6f\x45','\x57\x35\x37\x63\x4c\x75\x48\x38','\x57\x37\x71\x78\x57\x50\x70\x63\x52\x49\x65','\x57\x35\x62\x51\x69\x31\x78\x64\x4b\x61','\x76\x62\x4a\x64\x4a\x6d\x6f\x74\x57\x36\x38','\x66\x53\x6b\x56\x57\x51\x2f\x63\x51\x47','\x57\x36\x37\x63\x4f\x6d\x6b\x46\x57\x4f\x4f','\x71\x57\x64\x63\x51\x43\x6b\x70\x75\x57','\x7a\x58\x64\x64\x52\x65\x43\x63','\x6c\x48\x75\x56\x57\x36\x4a\x64\x56\x53\x6f\x79\x6a\x71','\x64\x4a\x54\x47\x57\x50\x68\x64\x49\x6d\x6b\x4f\x61\x6d\x6b\x6c','\x57\x51\x78\x63\x55\x53\x6b\x31\x57\x35\x52\x64\x54\x71','\x57\x51\x70\x63\x56\x6d\x6b\x59\x57\x4f\x68\x64\x50\x47','\x77\x43\x6f\x41\x57\x35\x66\x59\x57\x35\x79','\x71\x48\x6c\x63\x55\x6d\x6b\x4d\x42\x47','\x45\x43\x6f\x70\x57\x37\x68\x64\x56\x6d\x6b\x41\x57\x36\x5a\x64\x4f\x65\x71','\x46\x53\x6f\x69\x57\x36\x74\x64\x55\x61','\x57\x4f\x30\x52\x57\x36\x6d\x6a\x57\x52\x4a\x63\x4c\x57','\x57\x4f\x52\x63\x48\x38\x6b\x72\x57\x52\x56\x64\x4e\x71','\x7a\x49\x70\x64\x54\x76\x57','\x57\x52\x64\x63\x4c\x38\x6f\x71\x74\x43\x6b\x44\x57\x34\x78\x64\x51\x43\x6f\x52','\x79\x61\x37\x63\x52\x6d\x6b\x4d\x73\x47','\x6d\x48\x53\x4f\x57\x52\x42\x63\x4f\x53\x6b\x61','\x75\x6d\x6f\x72\x73\x53\x6f\x57\x65\x43\x6b\x63\x57\x35\x42\x64\x54\x71','\x75\x30\x37\x64\x4f\x57\x4a\x63\x53\x65\x5a\x63\x53\x57','\x57\x37\x70\x63\x51\x38\x6b\x71\x57\x50\x6a\x51\x6b\x53\x6b\x48\x57\x52\x75','\x57\x36\x4f\x59\x71\x72\x6c\x63\x52\x61','\x69\x77\x58\x2f\x45\x63\x57','\x45\x53\x6f\x41\x57\x35\x48\x54\x57\x36\x4b','\x76\x38\x6f\x75\x57\x37\x31\x7a\x57\x35\x37\x64\x54\x32\x46\x64\x55\x61','\x7a\x38\x6f\x74\x45\x38\x6f\x4e\x62\x57','\x46\x65\x44\x65\x6d\x59\x65','\x74\x4c\x4a\x64\x4d\x48\x6c\x63\x4a\x61','\x57\x37\x64\x63\x4c\x6d\x6f\x63','\x65\x53\x6f\x61\x71\x6d\x6f\x32\x79\x47','\x73\x48\x52\x64\x51\x53\x6f\x53\x57\x37\x5a\x63\x52\x47','\x57\x34\x69\x64\x57\x50\x5a\x63\x48\x74\x30','\x57\x50\x76\x4c\x57\x52\x43\x73\x57\x4f\x38','\x68\x6d\x6f\x38\x42\x6d\x6b\x52\x69\x38\x6f\x77\x57\x52\x2f\x64\x53\x71','\x69\x47\x5a\x64\x4f\x49\x53','\x70\x31\x76\x6f\x57\x50\x4e\x63\x54\x47','\x7a\x6d\x6b\x41\x57\x35\x4e\x63\x50\x47','\x42\x58\x71\x4d\x7a\x6d\x6f\x79','\x64\x6d\x6f\x76\x71\x53\x6f\x50\x42\x61','\x78\x76\x7a\x37\x6d\x61','\x41\x43\x6b\x66\x57\x34\x52\x63\x51\x53\x6f\x75','\x76\x53\x6f\x71\x57\x36\x76\x4b\x57\x35\x71','\x57\x4f\x42\x64\x55\x72\x6c\x63\x48\x53\x6b\x48','\x57\x4f\x70\x63\x55\x38\x6b\x65\x57\x51\x64\x64\x4e\x57','\x57\x34\x4e\x63\x53\x43\x6f\x72\x57\x50\x52\x64\x56\x71','\x57\x36\x7a\x42\x57\x50\x6a\x2b\x79\x38\x6f\x45\x57\x35\x72\x4e','\x63\x66\x50\x74\x41\x63\x56\x64\x49\x4c\x56\x64\x54\x47','\x79\x75\x6c\x64\x50\x57','\x6d\x4e\x48\x48\x57\x35\x2f\x64\x48\x74\x47\x39','\x45\x6d\x6b\x78\x57\x34\x50\x77\x57\x35\x61','\x57\x37\x54\x42\x57\x51\x6a\x63\x79\x61','\x57\x4f\x79\x4b\x57\x36\x69\x61\x57\x51\x6c\x63\x4a\x43\x6f\x54','\x42\x66\x2f\x64\x54\x4e\x62\x33\x74\x6d\x6b\x45\x6c\x71','\x57\x52\x74\x63\x56\x67\x52\x63\x4b\x43\x6f\x68','\x57\x37\x4e\x64\x4c\x4a\x35\x6c','\x57\x4f\x58\x55\x57\x36\x66\x6c\x57\x35\x2f\x64\x4e\x4b\x42\x64\x4e\x71','\x41\x43\x6b\x64\x57\x36\x31\x72\x57\x35\x6d','\x57\x4f\x50\x4b\x57\x36\x31\x7a\x57\x35\x2f\x64\x49\x66\x33\x64\x48\x71','\x57\x36\x76\x63\x6b\x77\x53','\x74\x67\x33\x64\x4b\x6d\x6b\x6a\x57\x37\x75','\x77\x49\x46\x63\x51\x6d\x6b\x2f\x74\x43\x6b\x63\x65\x57','\x63\x65\x54\x38\x57\x35\x4e\x64\x4c\x61','\x57\x36\x37\x63\x48\x53\x6b\x41\x57\x35\x46\x64\x56\x76\x4f\x63','\x64\x53\x6f\x32\x44\x43\x6b\x57\x6e\x6d\x6f\x4b\x57\x51\x75','\x6e\x38\x6b\x73\x57\x34\x56\x64\x55\x53\x6b\x33\x67\x38\x6f\x2f','\x6b\x38\x6b\x43\x57\x35\x33\x64\x50\x53\x6b\x56','\x62\x6d\x6f\x48\x43\x71','\x76\x5a\x74\x63\x52\x38\x6b\x4a\x73\x57','\x46\x75\x62\x47\x6d\x62\x37\x64\x4c\x5a\x46\x63\x4e\x71','\x67\x38\x6f\x66\x57\x37\x64\x63\x4f\x38\x6f\x65','\x57\x52\x6c\x63\x4e\x53\x6b\x74\x57\x50\x4a\x64\x48\x6d\x6f\x65\x57\x37\x52\x64\x49\x61','\x63\x57\x30\x6c\x69\x47','\x57\x37\x5a\x64\x4d\x43\x6f\x34\x68\x75\x65','\x57\x51\x50\x2b\x57\x52\x4b\x55\x57\x4f\x57','\x57\x52\x5a\x63\x4e\x6d\x6b\x4d\x57\x35\x74\x64\x49\x67\x38\x6e\x57\x4f\x4b','\x57\x35\x52\x63\x47\x74\x30\x6d','\x57\x35\x54\x4e\x57\x4f\x7a\x38\x75\x57','\x57\x51\x5a\x63\x4e\x53\x6b\x50\x57\x4f\x69','\x71\x43\x6f\x6d\x41\x38\x6f\x52\x65\x71','\x78\x66\x42\x64\x4a\x61\x37\x63\x4a\x47','\x72\x49\x4e\x63\x56\x53\x6b\x4a\x76\x71','\x45\x59\x56\x64\x56\x4c\x4f\x44','\x64\x4d\x72\x56\x57\x51\x37\x63\x56\x47','\x6a\x38\x6f\x62\x57\x34\x42\x63\x50\x6d\x6f\x57\x57\x37\x43','\x79\x48\x4e\x64\x55\x68\x65\x2f','\x57\x51\x42\x63\x4b\x6d\x6f\x49\x42\x53\x6b\x43','\x64\x59\x79\x6c\x57\x35\x37\x64\x4e\x61','\x57\x36\x2f\x63\x52\x53\x6f\x79\x57\x51\x64\x64\x4f\x61\x4e\x63\x4f\x38\x6b\x4a','\x57\x35\x6e\x2b\x6c\x4c\x42\x64\x56\x71','\x45\x30\x50\x4f\x69\x61\x6c\x64\x55\x5a\x56\x63\x4b\x57','\x57\x4f\x79\x4a\x57\x36\x69\x75\x57\x50\x57','\x41\x38\x6b\x62\x57\x37\x31\x32\x57\x36\x4f','\x57\x51\x31\x2f\x57\x50\x6d\x73\x57\x51\x34','\x42\x43\x6f\x65\x57\x4f\x37\x63\x53\x43\x6f\x37\x72\x53\x6b\x54\x57\x52\x37\x63\x4d\x53\x6b\x76\x57\x34\x58\x4d\x57\x37\x57','\x74\x53\x6f\x72\x43\x6d\x6f\x51','\x57\x36\x66\x6b\x57\x4f\x75\x5a','\x79\x71\x69\x57\x7a\x6d\x6f\x69\x6c\x6d\x6b\x72','\x67\x65\x46\x63\x54\x38\x6b\x2b\x57\x4f\x46\x64\x55\x47\x4e\x64\x4b\x6d\x6f\x4c\x44\x6d\x6f\x56\x57\x34\x34','\x6a\x38\x6f\x69\x57\x34\x37\x63\x54\x43\x6f\x32','\x62\x48\x52\x64\x47\x75\x56\x64\x4a\x61','\x62\x76\x6e\x50\x79\x49\x4e\x64\x4c\x32\x64\x64\x52\x61','\x57\x4f\x56\x63\x50\x38\x6b\x7a\x57\x4f\x78\x64\x50\x57','\x69\x32\x58\x59\x57\x50\x64\x63\x55\x47','\x57\x50\x70\x63\x54\x38\x6b\x62\x57\x52\x42\x64\x4c\x61','\x45\x4b\x70\x64\x50\x30\x44\x35','\x62\x67\x2f\x64\x56\x57\x5a\x64\x52\x57','\x41\x47\x75\x49\x41\x71','\x69\x73\x57\x57\x63\x53\x6f\x39','\x71\x43\x6f\x79\x57\x52\x30','\x57\x52\x6c\x63\x54\x43\x6f\x44\x41\x53\x6b\x45','\x75\x5a\x6c\x63\x54\x6d\x6b\x4a\x76\x57','\x57\x36\x2f\x63\x51\x6d\x6b\x78\x57\x4f\x58\x47\x6c\x61','\x57\x34\x4e\x63\x4e\x66\x4c\x58\x6f\x47','\x46\x43\x6f\x31\x57\x50\x6c\x63\x56\x43\x6f\x6a\x57\x51\x33\x63\x4b\x6d\x6f\x54','\x57\x37\x68\x63\x52\x6d\x6b\x6f\x57\x52\x66\x4c\x69\x53\x6b\x4f\x57\x4f\x6d','\x57\x52\x64\x64\x4a\x72\x46\x63\x54\x53\x6b\x75\x57\x52\x56\x64\x52\x6d\x6f\x6c','\x57\x4f\x52\x63\x53\x43\x6f\x61\x6b\x38\x6f\x62','\x43\x38\x6f\x42\x57\x36\x78\x64\x56\x38\x6b\x62','\x6b\x53\x6b\x68\x57\x35\x4a\x63\x53\x71','\x57\x35\x6c\x63\x4b\x6d\x6b\x6e\x57\x4f\x6e\x59','\x57\x34\x52\x63\x4f\x53\x6b\x58\x57\x51\x54\x52','\x57\x36\x39\x59\x6d\x4e\x64\x64\x53\x64\x5a\x64\x4d\x6d\x6f\x4b','\x7a\x65\x78\x64\x4f\x72\x2f\x63\x52\x4c\x52\x63\x56\x53\x6b\x47','\x57\x4f\x58\x79\x57\x50\x69\x68\x57\x52\x43','\x57\x37\x31\x75\x57\x50\x7a\x44\x43\x61','\x57\x35\x2f\x63\x4a\x65\x54\x6b\x69\x61','\x71\x43\x6f\x46\x57\x37\x62\x4a\x57\x37\x61','\x57\x50\x6c\x63\x56\x6d\x6b\x72\x57\x37\x56\x64\x4a\x57','\x62\x53\x6b\x56\x57\x51\x56\x63\x55\x48\x4b\x72','\x57\x51\x64\x63\x47\x53\x6f\x63\x6c\x66\x44\x54\x57\x52\x71','\x57\x51\x64\x63\x56\x67\x5a\x63\x47\x57','\x6d\x6d\x6b\x76\x57\x35\x4a\x64\x50\x43\x6b\x51\x65\x6d\x6f\x2b\x57\x4f\x69','\x57\x36\x56\x64\x4e\x38\x6f\x61\x69\x4c\x65','\x67\x74\x44\x38\x57\x50\x56\x64\x4a\x6d\x6b\x33\x6f\x47','\x57\x50\x4f\x55\x57\x36\x30\x70\x57\x51\x34','\x46\x4c\x78\x64\x54\x4e\x44\x4d\x45\x43\x6b\x4b\x6f\x61','\x6f\x38\x6f\x62\x57\x36\x42\x63\x4e\x38\x6f\x31','\x68\x4b\x6a\x43\x6e\x71','\x6f\x4b\x4c\x77\x57\x35\x52\x64\x48\x30\x38','\x6d\x71\x52\x64\x51\x33\x34','\x76\x43\x6f\x6a\x57\x36\x62\x4b\x57\x34\x78\x64\x4f\x66\x68\x64\x49\x61','\x75\x38\x6b\x73\x57\x34\x64\x63\x50\x53\x6f\x64\x57\x4f\x4e\x64\x51\x38\x6f\x5a','\x57\x51\x5a\x64\x4a\x64\x2f\x63\x52\x53\x6b\x34','\x69\x43\x6b\x42\x57\x37\x33\x64\x50\x38\x6b\x36\x57\x36\x56\x64\x4a\x75\x34','\x79\x30\x4a\x64\x54\x4d\x30','\x46\x30\x4e\x64\x53\x38\x6b\x4b\x57\x35\x53','\x57\x52\x30\x62\x57\x34\x57\x47\x57\x4f\x71','\x72\x72\x4c\x42\x70\x59\x74\x64\x52\x4e\x42\x64\x51\x47','\x57\x37\x4a\x64\x52\x74\x62\x52\x57\x50\x34','\x57\x36\x48\x55\x6a\x78\x43','\x65\x78\x72\x76\x57\x52\x4a\x63\x53\x61','\x57\x52\x69\x50\x69\x73\x56\x64\x56\x57\x56\x64\x47\x38\x6f\x54','\x57\x50\x76\x77\x57\x34\x4c\x4d\x57\x34\x57','\x68\x53\x6f\x36\x79\x38\x6f\x4e','\x73\x38\x6f\x79\x46\x38\x6f\x4f\x63\x53\x6b\x66\x57\x35\x33\x64\x4a\x71','\x69\x38\x6b\x6c\x57\x51\x64\x63\x52\x63\x6d','\x69\x75\x78\x64\x47\x5a\x6d','\x6e\x53\x6f\x6c\x57\x34\x70\x63\x52\x57','\x77\x6d\x6f\x31\x57\x36\x76\x61\x57\x34\x4b','\x46\x75\x50\x5a\x69\x71','\x6f\x30\x72\x75\x57\x50\x33\x63\x47\x61\x52\x63\x4f\x38\x6f\x63','\x45\x61\x6c\x64\x53\x4c\x6d\x30','\x57\x52\x64\x63\x4c\x43\x6f\x61\x6f\x43\x6f\x73','\x62\x30\x37\x64\x4b\x61\x2f\x64\x49\x47','\x74\x67\x4b\x39\x57\x34\x6c\x63\x4e\x43\x6f\x53\x42\x38\x6b\x75\x57\x50\x56\x64\x54\x53\x6b\x66\x57\x37\x53\x44','\x6b\x53\x6b\x64\x57\x35\x52\x64\x51\x6d\x6b\x33\x67\x57','\x79\x61\x53\x6a\x79\x6d\x6f\x75\x69\x6d\x6b\x52\x57\x37\x30','\x70\x4c\x6e\x45\x57\x50\x5a\x63\x4c\x5a\x2f\x63\x4f\x38\x6f\x79','\x78\x4b\x68\x63\x55\x57\x33\x64\x54\x53\x6b\x74','\x79\x43\x6b\x43\x57\x50\x74\x64\x4f\x43\x6b\x48\x57\x51\x2f\x63\x4c\x63\x6d\x69\x78\x30\x4f\x4e','\x69\x4c\x54\x4a\x45\x59\x57','\x57\x50\x33\x63\x4d\x53\x6f\x48\x61\x43\x6f\x50\x57\x51\x68\x63\x4d\x4e\x53','\x57\x36\x6d\x34\x41\x5a\x57','\x75\x74\x74\x63\x55\x6d\x6b\x54\x74\x43\x6b\x63\x70\x30\x53','\x79\x65\x5a\x64\x48\x32\x7a\x4b','\x77\x59\x5a\x64\x51\x4d\x57\x34','\x73\x6d\x6f\x6d\x57\x52\x71\x34','\x57\x52\x62\x2b\x57\x52\x34\x4b\x57\x52\x6e\x36\x57\x34\x7a\x6b','\x57\x35\x70\x63\x54\x38\x6f\x55\x57\x51\x78\x64\x55\x71','\x57\x34\x39\x2f\x6c\x4e\x4f','\x57\x52\x78\x64\x49\x62\x78\x63\x55\x38\x6b\x6a\x57\x52\x68\x64\x4f\x53\x6f\x72','\x42\x38\x6f\x75\x57\x37\x66\x30\x57\x35\x74\x64\x54\x4d\x42\x64\x4c\x61','\x66\x57\x38\x62\x6a\x6d\x6f\x6a\x57\x51\x5a\x63\x4f\x6d\x6f\x4d','\x64\x61\x57\x64\x6a\x43\x6f\x6f\x57\x50\x78\x63\x56\x6d\x6f\x6f','\x41\x30\x70\x64\x4a\x53\x6b\x73\x57\x35\x6c\x63\x54\x53\x6b\x34\x57\x37\x34','\x79\x53\x6b\x73\x57\x36\x46\x63\x53\x43\x6f\x6a\x57\x4f\x46\x64\x51\x53\x6f\x34','\x46\x68\x64\x63\x4e\x4a\x33\x64\x52\x61','\x6b\x30\x2f\x64\x4e\x57','\x57\x34\x46\x63\x49\x66\x4c\x5a\x6a\x4b\x42\x63\x56\x5a\x6d','\x66\x43\x6b\x57\x57\x34\x46\x64\x51\x6d\x6b\x76','\x78\x6d\x6f\x45\x57\x36\x50\x38\x57\x36\x37\x64\x54\x77\x70\x64\x4d\x61','\x6b\x43\x6f\x6b\x76\x6d\x6f\x44\x46\x71','\x57\x34\x68\x63\x56\x43\x6b\x45','\x61\x31\x68\x63\x51\x38\x6f\x51\x57\x35\x52\x63\x50\x63\x6c\x64\x4d\x61','\x57\x4f\x30\x52\x57\x37\x79\x63\x57\x51\x52\x63\x4a\x53\x6f\x54','\x6d\x53\x6f\x62\x44\x53\x6f\x50\x42\x53\x6f\x47\x76\x66\x43','\x6c\x43\x6b\x77\x57\x34\x33\x64\x50\x53\x6b\x56\x63\x6d\x6f\x2b','\x43\x53\x6f\x6d\x57\x34\x74\x64\x54\x43\x6b\x71\x57\x37\x64\x64\x4f\x67\x38','\x79\x78\x78\x64\x4d\x67\x58\x30','\x75\x73\x2f\x64\x51\x76\x34\x68\x57\x37\x35\x68\x57\x4f\x4f','\x57\x52\x64\x64\x53\x53\x6b\x6d\x57\x37\x68\x63\x51\x4d\x6c\x64\x52\x6d\x6b\x55\x57\x50\x79\x46\x57\x51\x42\x64\x4c\x53\x6b\x51','\x57\x36\x74\x64\x49\x5a\x54\x6a\x57\x4f\x79\x2b','\x57\x36\x4a\x63\x50\x6d\x6b\x42\x57\x50\x44\x54\x69\x38\x6b\x78\x57\x4f\x53','\x57\x36\x33\x63\x51\x38\x6b\x52\x57\x50\x58\x56','\x68\x63\x31\x52','\x57\x34\x46\x63\x54\x38\x6b\x46\x57\x4f\x54\x75\x57\x34\x53\x34','\x57\x4f\x42\x63\x54\x6d\x6b\x70\x77\x68\x68\x63\x4a\x38\x6b\x63\x6c\x57','\x68\x67\x4e\x63\x56\x6d\x6f\x2b\x77\x6d\x6b\x33\x62\x75\x75','\x76\x38\x6f\x73\x43\x6d\x6f\x4e\x62\x47','\x57\x34\x78\x63\x56\x49\x53\x4e\x66\x47','\x57\x37\x56\x64\x4e\x53\x6f\x6c','\x46\x5a\x68\x64\x49\x4b\x75\x52','\x57\x37\x54\x46\x57\x4f\x76\x5a\x75\x71','\x57\x52\x5a\x63\x4c\x38\x6f\x71\x75\x71','\x57\x52\x56\x63\x54\x43\x6f\x67\x72\x43\x6b\x45','\x57\x36\x43\x53\x57\x50\x42\x63\x49\x61\x31\x6b\x57\x34\x57','\x6f\x33\x76\x61\x71\x59\x4f','\x62\x6d\x6b\x55\x57\x51\x78\x63\x55\x47\x30\x39\x71\x49\x38','\x61\x6d\x6b\x72\x57\x52\x6d\x47\x46\x66\x74\x64\x4c\x6d\x6b\x61','\x57\x36\x5a\x64\x4d\x38\x6f\x37\x57\x4f\x64\x63\x4a\x74\x57\x30\x57\x50\x70\x63\x49\x57\x56\x63\x51\x53\x6f\x31','\x6a\x75\x31\x39\x6c\x61','\x46\x66\x78\x63\x53\x61\x2f\x64\x52\x61','\x6f\x53\x6f\x63\x7a\x6d\x6f\x78\x79\x53\x6f\x2b\x78\x4c\x4f','\x65\x62\x71\x79\x6b\x6d\x6f\x6a\x57\x50\x74\x63\x52\x6d\x6f\x34','\x44\x43\x6f\x67\x57\x37\x4e\x64\x4f\x38\x6b\x68\x57\x37\x64\x64\x53\x68\x47','\x57\x51\x6c\x63\x4a\x4d\x43\x44\x57\x34\x6e\x54\x57\x4f\x38\x74\x7a\x32\x37\x63\x48\x38\x6b\x48','\x57\x34\x42\x64\x4d\x61\x4c\x35\x57\x51\x71','\x6c\x4b\x72\x64\x57\x51\x64\x63\x48\x58\x56\x63\x48\x6d\x6f\x42','\x57\x50\x37\x63\x54\x6d\x6b\x66','\x57\x36\x78\x63\x4b\x6d\x6b\x35\x57\x51\x66\x75','\x57\x34\x37\x63\x51\x43\x6f\x46\x57\x4f\x78\x64\x4e\x61','\x57\x36\x56\x64\x4e\x43\x6f\x31\x57\x4f\x33\x63\x4a\x4a\x34\x30\x57\x52\x37\x63\x48\x59\x56\x63\x47\x6d\x6f\x51','\x57\x50\x6c\x63\x4d\x53\x6b\x37\x42\x77\x69','\x45\x43\x6b\x68\x57\x35\x5a\x63\x50\x6d\x6f\x73\x57\x4f\x4b','\x57\x36\x35\x69\x66\x66\x42\x64\x55\x71','\x72\x53\x6b\x44\x57\x36\x33\x63\x53\x43\x6f\x38','\x57\x51\x4a\x63\x49\x38\x6f\x76\x78\x38\x6b\x42','\x75\x61\x4e\x64\x4f\x4c\x65\x71','\x57\x36\x42\x63\x51\x38\x6b\x49\x57\x51\x7a\x56','\x57\x51\x42\x63\x4b\x53\x6b\x42\x79\x31\x75','\x43\x66\x6c\x64\x52\x71\x43','\x77\x4c\x42\x63\x47\x48\x33\x64\x4f\x61','\x57\x35\x4a\x63\x51\x43\x6b\x66\x57\x51\x7a\x76','\x67\x53\x6b\x78\x57\x50\x70\x63\x55\x58\x71','\x57\x51\x30\x32\x57\x34\x53\x62\x57\x52\x65','\x76\x53\x6b\x2f\x57\x37\x78\x63\x51\x38\x6f\x76','\x69\x65\x7a\x7a\x57\x4f\x4e\x63\x48\x47\x5a\x63\x55\x6d\x6f\x72','\x6e\x77\x35\x30\x57\x35\x46\x64\x50\x5a\x71\x54\x57\x34\x57','\x57\x51\x52\x63\x56\x43\x6b\x6e\x57\x35\x68\x64\x55\x47','\x42\x66\x44\x37\x70\x61\x6c\x64\x52\x73\x68\x63\x50\x61','\x57\x37\x6c\x63\x4f\x53\x6b\x62','\x57\x35\x53\x49\x72\x49\x46\x63\x4f\x61','\x45\x74\x78\x64\x55\x66\x72\x74\x57\x36\x6e\x62\x57\x4f\x4b','\x6b\x38\x6b\x43\x57\x34\x5a\x64\x52\x61','\x57\x4f\x52\x63\x4a\x4b\x4a\x63\x52\x43\x6f\x57\x45\x53\x6b\x38\x6d\x57','\x57\x37\x61\x58\x57\x4f\x78\x63\x4b\x48\x4c\x75','\x76\x63\x70\x63\x4d\x6d\x6b\x39\x74\x6d\x6b\x67\x67\x57','\x68\x6d\x6f\x61\x7a\x6d\x6f\x68\x7a\x71','\x76\x6d\x6f\x51\x46\x6d\x6f\x55\x6e\x61','\x70\x58\x33\x64\x56\x61','\x44\x57\x53\x4d\x43\x6d\x6f\x54','\x6a\x30\x62\x2f','\x6c\x38\x6f\x63\x43\x43\x6f\x48\x71\x43\x6f\x4e\x78\x77\x30','\x57\x4f\x30\x4a\x57\x37\x61\x6e','\x57\x4f\x78\x63\x54\x6d\x6b\x43\x72\x33\x56\x63\x4b\x57','\x64\x38\x6f\x33\x7a\x6d\x6f\x67\x79\x71','\x44\x43\x6f\x50\x57\x34\x66\x34\x57\x34\x6d','\x6f\x76\x48\x2b\x57\x50\x68\x63\x4b\x61','\x77\x73\x64\x64\x4e\x4e\x6d\x37','\x6e\x38\x6f\x69\x57\x34\x4a\x63\x54\x43\x6f\x34\x57\x34\x64\x63\x56\x74\x61','\x57\x50\x5a\x63\x47\x59\x47','\x57\x50\x56\x63\x54\x6d\x6b\x6f\x72\x4e\x4e\x63\x4e\x6d\x6b\x34','\x57\x35\x66\x6a\x66\x75\x52\x64\x4c\x61','\x41\x30\x64\x64\x47\x38\x6b\x7a\x57\x37\x37\x63\x48\x61','\x61\x43\x6f\x47\x57\x35\x2f\x63\x4d\x38\x6f\x66','\x43\x38\x6f\x32\x57\x4f\x79','\x57\x37\x6e\x47\x6a\x4e\x78\x64\x54\x5a\x78\x64\x4c\x6d\x6f\x44','\x61\x53\x6f\x4f\x43\x43\x6b\x61\x69\x53\x6f\x31\x57\x51\x6c\x64\x55\x61','\x57\x37\x47\x7a\x76\x72\x64\x63\x53\x57','\x76\x32\x74\x64\x49\x61\x4e\x63\x49\x61','\x6f\x65\x39\x75\x42\x47','\x69\x38\x6f\x77\x57\x34\x37\x63\x4f\x53\x6f\x32\x57\x35\x4e\x63\x53\x63\x34','\x57\x51\x6d\x69\x57\x35\x6d\x32\x57\x4f\x75','\x57\x36\x72\x6b\x57\x4f\x54\x43\x72\x61','\x61\x4b\x76\x50\x79\x49\x4e\x64\x4c\x32\x64\x64\x52\x61','\x62\x4e\x78\x64\x51\x38\x6f\x30\x63\x38\x6f\x74\x62\x4e\x62\x38\x73\x49\x70\x64\x51\x71','\x57\x51\x78\x63\x4e\x53\x6b\x55\x57\x50\x2f\x64\x47\x38\x6f\x61\x57\x37\x68\x64\x4f\x61','\x57\x50\x4b\x52\x57\x37\x79\x6a\x57\x51\x38','\x57\x37\x70\x64\x4c\x64\x54\x72','\x57\x51\x70\x63\x55\x67\x5a\x63\x52\x6d\x6f\x6e\x73\x53\x6b\x67\x6c\x47','\x44\x4c\x56\x64\x4c\x43\x6b\x76\x57\x35\x4e\x63\x48\x38\x6b\x30\x57\x36\x4f','\x57\x50\x58\x44\x57\x4f\x61\x6b\x57\x52\x4f','\x57\x50\x50\x53\x57\x36\x62\x6c\x57\x35\x2f\x64\x4e\x47','\x74\x38\x6b\x73\x57\x35\x7a\x6f\x57\x34\x69','\x57\x35\x64\x64\x49\x62\x54\x44\x57\x52\x43','\x79\x53\x6f\x67\x57\x37\x5a\x64\x54\x43\x6b\x44','\x57\x36\x48\x50\x64\x68\x42\x64\x51\x74\x37\x64\x47\x38\x6f\x62','\x78\x43\x6f\x6b\x57\x51\x4b\x38\x43\x68\x78\x64\x4d\x6d\x6b\x73','\x57\x50\x4a\x63\x56\x53\x6b\x49\x77\x4e\x37\x63\x4e\x43\x6b\x58\x6a\x61','\x57\x52\x5a\x63\x4e\x6d\x6b\x4d\x57\x35\x74\x64\x49\x67\x38\x6e\x57\x4f\x75','\x57\x37\x78\x64\x4d\x49\x54\x6a','\x57\x36\x34\x55\x57\x4f\x64\x63\x4a\x58\x35\x30\x57\x35\x64\x64\x4e\x57','\x57\x50\x50\x4f\x57\x36\x69\x73','\x57\x52\x74\x63\x49\x38\x6f\x42\x72\x47','\x57\x34\x47\x41\x73\x47\x52\x63\x47\x63\x42\x63\x52\x31\x53','\x79\x53\x6f\x70\x57\x52\x57\x47\x45\x57','\x67\x6d\x6f\x4e\x79\x53\x6b\x58\x6a\x38\x6f\x38\x57\x51\x75','\x41\x63\x46\x64\x49\x53\x6f\x4c\x57\x35\x65','\x65\x76\x4c\x56\x57\x50\x64\x63\x4f\x47','\x57\x50\x52\x63\x47\x6d\x6b\x53\x77\x67\x30','\x57\x51\x39\x2f\x57\x51\x6d\x31\x57\x51\x65','\x57\x34\x68\x63\x56\x43\x6b\x2f\x57\x50\x62\x6b\x57\x35\x71\x5a\x57\x35\x69','\x57\x52\x31\x4d\x57\x52\x34','\x6d\x53\x6f\x55\x75\x53\x6f\x39\x43\x47','\x71\x38\x6f\x76\x57\x52\x38\x38\x42\x65\x68\x64\x49\x6d\x6b\x41','\x57\x37\x64\x64\x53\x5a\x58\x70\x57\x52\x47','\x57\x35\x54\x37\x57\x52\x66\x42\x57\x37\x4e\x64\x4c\x43\x6b\x36\x77\x53\x6f\x51\x63\x43\x6f\x32\x46\x48\x71','\x57\x51\x30\x50\x57\x50\x69','\x57\x52\x6d\x77\x57\x34\x53\x4b\x57\x51\x71','\x57\x37\x46\x63\x48\x6d\x6b\x4d\x57\x50\x54\x4b','\x57\x51\x56\x63\x4c\x6d\x6b\x5a\x57\x50\x2f\x64\x4c\x38\x6f\x6b\x57\x37\x65','\x57\x34\x64\x63\x4e\x43\x6f\x55\x57\x51\x52\x64\x55\x61','\x57\x34\x48\x66\x63\x66\x78\x64\x4b\x71','\x62\x38\x6b\x2b\x57\x51\x4e\x63\x55\x58\x34\x72\x74\x49\x65','\x57\x37\x46\x63\x54\x53\x6f\x7a\x57\x51\x33\x64\x4b\x74\x78\x63\x52\x38\x6b\x4a','\x57\x35\x2f\x63\x56\x43\x6b\x4c\x57\x52\x72\x6d','\x42\x4a\x6a\x48\x57\x35\x6c\x64\x4b\x64\x6d\x52','\x65\x75\x7a\x30\x57\x50\x56\x63\x4e\x71','\x64\x76\x76\x34\x57\x4f\x78\x63\x49\x61','\x57\x4f\x54\x39\x57\x37\x62\x6c','\x57\x4f\x31\x5a\x57\x36\x62\x74','\x57\x51\x37\x63\x55\x6d\x6b\x73\x57\x50\x42\x64\x4b\x47','\x7a\x4b\x4e\x64\x53\x61\x2f\x63\x55\x61','\x57\x35\x4a\x64\x56\x53\x6b\x43\x72\x4d\x56\x63\x4e\x53\x6b\x50\x68\x47','\x6f\x43\x6f\x70\x57\x34\x70\x63\x56\x38\x6f\x48\x57\x34\x5a\x63\x4f\x63\x57','\x57\x51\x6c\x63\x47\x6d\x6b\x4c\x57\x50\x4a\x64\x47\x47','\x57\x50\x33\x64\x55\x53\x6f\x65\x57\x34\x4f\x74\x57\x50\x72\x32\x57\x50\x57','\x7a\x43\x6b\x72\x57\x34\x68\x64\x51\x6d\x6f\x76\x57\x4f\x70\x64\x4f\x38\x6f\x2f','\x78\x65\x37\x63\x4c\x61\x4e\x64\x4a\x61','\x57\x51\x56\x63\x47\x43\x6b\x58','\x57\x37\x4a\x63\x50\x6d\x6b\x72\x57\x50\x54\x57\x6d\x61','\x62\x4b\x70\x64\x53\x61\x46\x64\x4d\x47','\x77\x38\x6b\x2b\x57\x52\x5a\x63\x4f\x71\x61\x75\x71\x49\x75','\x68\x33\x76\x57\x57\x34\x64\x64\x4a\x61','\x45\x6d\x6b\x64\x57\x35\x42\x63\x48\x53\x6f\x72','\x57\x37\x5a\x63\x55\x4d\x7a\x62\x66\x61','\x6e\x58\x31\x37\x57\x51\x2f\x64\x4f\x71','\x62\x53\x6b\x33\x57\x51\x70\x63\x52\x71\x4b','\x57\x37\x66\x57\x57\x36\x47\x47\x57\x34\x39\x50\x57\x34\x62\x6b','\x6f\x53\x6f\x71\x57\x34\x37\x63\x54\x38\x6f\x2f\x57\x36\x57','\x6f\x53\x6b\x6c\x57\x35\x46\x64\x55\x53\x6b\x33\x64\x43\x6f\x69\x57\x51\x71','\x57\x52\x70\x63\x48\x43\x6b\x4d\x57\x35\x71','\x57\x52\x78\x63\x4d\x43\x6b\x48\x57\x35\x37\x63\x47\x38\x6b\x42','\x57\x35\x52\x63\x54\x6d\x6b\x6b\x57\x4f\x48\x72\x57\x35\x6d\x34','\x78\x38\x6f\x62\x57\x4f\x4e\x63\x4f\x53\x6f\x44','\x77\x4a\x5a\x64\x56\x76\x6d\x41\x57\x37\x4c\x6e','\x7a\x72\x4e\x64\x4f\x78\x65\x43','\x57\x36\x30\x55\x57\x4f\x56\x63\x53\x62\x47','\x57\x34\x46\x63\x4d\x65\x62\x39\x69\x66\x79','\x79\x71\x69\x57\x7a\x6d\x6f\x69\x6c\x6d\x6b\x72\x57\x35\x43','\x7a\x75\x4e\x64\x50\x71\x74\x63\x56\x75\x78\x63\x50\x6d\x6b\x6a','\x46\x6d\x6f\x33\x77\x6d\x6f\x66\x6d\x47','\x72\x63\x2f\x64\x54\x65\x53\x73\x57\x34\x48\x6e\x57\x50\x57','\x57\x51\x64\x63\x56\x53\x6b\x36\x79\x68\x61','\x41\x6d\x6f\x37\x57\x50\x2f\x64\x50\x53\x6b\x73\x57\x37\x34','\x77\x63\x2f\x64\x49\x75\x79\x37','\x57\x34\x52\x63\x4d\x61\x79\x77\x61\x57','\x57\x34\x5a\x63\x4c\x65\x48\x48','\x57\x50\x42\x63\x4e\x4d\x33\x63\x4a\x6d\x6f\x57','\x57\x35\x42\x63\x48\x73\x34\x62\x6f\x53\x6f\x78\x57\x34\x47','\x73\x6d\x6f\x56\x73\x6d\x6f\x50\x66\x47','\x57\x34\x64\x63\x49\x74\x65\x6f\x6d\x53\x6f\x75\x57\x34\x74\x63\x51\x47','\x57\x52\x5a\x63\x4c\x38\x6f\x33\x6f\x53\x6f\x52','\x46\x71\x65\x33\x45\x53\x6f\x63\x6b\x47','\x7a\x53\x6f\x48\x57\x36\x6e\x31\x57\x37\x34','\x57\x37\x71\x72\x77\x57\x56\x63\x54\x61','\x7a\x38\x6f\x47\x57\x37\x48\x44\x57\x35\x75','\x57\x35\x64\x63\x4f\x6d\x6b\x45\x57\x4f\x54\x6b','\x57\x34\x43\x30\x57\x51\x57\x65\x57\x4f\x64\x63\x4b\x49\x78\x63\x4c\x71','\x57\x50\x33\x63\x53\x38\x6f\x66\x7a\x38\x6b\x32','\x73\x61\x33\x64\x54\x53\x6f\x4d\x57\x34\x43','\x57\x34\x39\x46\x64\x77\x68\x64\x4c\x71','\x71\x6d\x6f\x78\x41\x38\x6f\x51\x61\x53\x6b\x67\x57\x35\x30','\x6e\x74\x44\x30\x57\x52\x68\x64\x55\x71','\x46\x38\x6b\x5a\x57\x35\x2f\x63\x53\x43\x6f\x4a','\x6e\x43\x6f\x71\x57\x36\x70\x63\x56\x38\x6f\x68','\x77\x31\x37\x63\x56\x71\x42\x64\x4c\x57','\x57\x52\x70\x63\x4f\x6d\x6b\x6c\x43\x76\x79','\x71\x43\x6f\x67\x43\x6d\x6f\x33\x66\x38\x6b\x79\x57\x36\x56\x64\x51\x57','\x57\x51\x52\x63\x47\x43\x6f\x43\x78\x38\x6b\x54','\x78\x61\x5a\x64\x54\x68\x57\x46','\x74\x38\x6b\x79\x57\x35\x7a\x64\x57\x36\x4f','\x43\x72\x56\x63\x4e\x33\x56\x63\x4b\x33\x34\x68\x57\x36\x39\x4b\x75\x48\x4b\x73\x57\x50\x4f','\x57\x50\x37\x63\x4d\x38\x6b\x33\x57\x35\x33\x64\x4b\x33\x47\x53\x57\x50\x34','\x43\x75\x42\x64\x49\x53\x6b\x7a\x57\x35\x4a\x63\x4c\x43\x6b\x50','\x73\x61\x46\x64\x52\x43\x6f\x36\x57\x34\x68\x63\x55\x72\x46\x64\x49\x61','\x6a\x38\x6f\x75\x57\x34\x78\x63\x56\x6d\x6f\x47','\x76\x43\x6f\x49\x57\x37\x62\x35\x57\x35\x69','\x57\x36\x2f\x63\x50\x77\x6e\x2b\x6e\x47','\x65\x33\x76\x34\x57\x51\x64\x63\x4e\x71','\x70\x47\x56\x64\x48\x77\x68\x64\x4d\x73\x56\x63\x49\x57','\x62\x61\x75\x45\x65\x38\x6f\x63\x57\x4f\x70\x63\x51\x53\x6f\x6d','\x6d\x43\x6b\x43\x57\x34\x4b','\x77\x32\x42\x64\x51\x66\x6a\x63','\x65\x53\x6b\x2b\x57\x52\x37\x63\x48\x48\x4b\x61\x41\x74\x47','\x73\x4b\x4a\x64\x53\x78\x44\x4d\x75\x43\x6b\x35\x45\x71','\x57\x50\x6c\x63\x52\x43\x6f\x73\x69\x53\x6f\x2f','\x67\x63\x58\x38\x57\x50\x52\x64\x4e\x57','\x57\x36\x44\x6b\x57\x50\x66\x49\x41\x6d\x6f\x6b\x57\x34\x4c\x73','\x78\x30\x68\x63\x50\x48\x4e\x64\x4f\x38\x6b\x43\x78\x57','\x42\x68\x58\x59\x6f\x58\x6d','\x57\x50\x4f\x32\x57\x37\x79\x66\x57\x51\x78\x63\x48\x6d\x6f\x48\x43\x71','\x57\x35\x33\x63\x49\x4a\x4f\x64\x6d\x53\x6f\x75\x57\x34\x47','\x57\x51\x4c\x76\x57\x36\x31\x35\x57\x37\x53','\x7a\x4e\x2f\x64\x55\x67\x50\x67','\x63\x33\x37\x64\x53\x58\x52\x63\x47\x57','\x42\x75\x37\x64\x55\x67\x7a\x57\x73\x57','\x57\x50\x56\x64\x54\x4a\x46\x63\x47\x53\x6b\x6b','\x7a\x76\x74\x64\x53\x61\x70\x63\x53\x4b\x34','\x57\x50\x76\x69\x57\x34\x31\x4c\x57\x37\x69','\x7a\x53\x6b\x76\x57\x50\x2f\x64\x50\x38\x6b\x4a\x57\x51\x56\x64\x52\x63\x57\x4a\x43\x4c\x38\x42\x76\x47','\x6f\x6d\x6f\x62\x57\x34\x4e\x63\x53\x43\x6f\x4e\x57\x37\x43','\x57\x52\x5a\x63\x4d\x43\x6b\x4e','\x57\x36\x33\x63\x4f\x38\x6b\x70\x57\x4f\x50\x63','\x67\x6d\x6f\x36\x44\x38\x6b\x32\x6b\x6d\x6f\x33\x57\x52\x2f\x64\x55\x57','\x73\x6d\x6f\x42\x46\x71','\x6d\x53\x6f\x62\x44\x53\x6f\x50\x42\x53\x6f\x47\x76\x61','\x57\x36\x46\x63\x54\x38\x6f\x6f\x57\x51\x42\x64\x4f\x61','\x57\x36\x64\x64\x47\x53\x6f\x66','\x57\x50\x6c\x63\x53\x6d\x6b\x6a\x76\x61','\x57\x35\x52\x63\x4e\x66\x39\x48\x6e\x57','\x62\x33\x4a\x64\x4b\x64\x5a\x64\x4d\x71','\x57\x52\x70\x64\x4e\x71\x56\x63\x53\x53\x6b\x2f\x57\x52\x56\x64\x50\x57','\x62\x38\x6b\x2b\x57\x51\x56\x63\x51\x49\x4f\x6c\x73\x5a\x69','\x57\x37\x68\x63\x49\x38\x6b\x31\x57\x35\x52\x64\x4b\x68\x57\x47\x57\x50\x79','\x57\x51\x50\x35\x57\x52\x38\x56','\x43\x43\x6f\x38\x57\x50\x46\x63\x55\x47','\x57\x52\x4a\x63\x4e\x43\x6f\x58\x77\x43\x6b\x37\x57\x34\x68\x64\x50\x47','\x57\x50\x70\x63\x47\x53\x6b\x65\x77\x33\x53','\x41\x58\x79\x4b\x7a\x38\x6f\x74','\x57\x52\x7a\x4c\x7a\x74\x6c\x63\x4e\x62\x56\x63\x55\x65\x6d','\x6a\x53\x6f\x62\x57\x34\x74\x63\x4f\x38\x6f\x48\x57\x36\x5a\x63\x53\x64\x71','\x69\x43\x6b\x6e\x57\x51\x4a\x63\x52\x57\x61'];_0x316a=function(){return _0x4112a3;};return _0x316a();}function _0x48aac5({geneId:_0x4c8b0f,signals:_0x654234,mutation:_0x32a255}){const _0xb49cf3=_0x5ce74f,_0x1c5e54={'\x6b\x49\x50\x65\x67':_0xb49cf3(0x248,'\x36\x6d\x29\x69'),'\x79\x6f\x70\x78\x4c':'\x6d\x65\x6d\x6f\x72\x79','\x4d\x52\x52\x4e\x73':'\x65\x65\x50\x51\x52','\x58\x67\x43\x73\x6f':_0xb49cf3(0x315,'\x71\x6e\x63\x48'),'\x70\x79\x49\x79\x62':function(_0x2c3176,_0x55afbb){return _0x2c3176(_0x55afbb);},'\x44\x74\x4f\x6d\x7a':'\x2e\x2f\x61\x32\x61\x50\x72\x6f'+_0xb49cf3(0x30d,'\x6d\x47\x47\x6b'),'\x45\x58\x48\x6f\x72':function(_0x15486f,_0x55b35d){return _0x15486f(_0x55b35d);},'\x45\x69\x57\x4d\x79':_0xb49cf3(0x347,'\x5e\x4c\x6a\x23'),'\x61\x74\x44\x69\x54':_0xb49cf3(0x205,'\x33\x21\x64\x71'),'\x68\x49\x52\x7a\x64':function(_0x2b7e93,_0xec7d98){return _0x2b7e93(_0xec7d98);},'\x68\x44\x6c\x57\x78':function(_0x5317bf,_0x1c2225){return _0x5317bf(_0x1c2225);},'\x45\x58\x4e\x6c\x64':function(_0xe85462,_0x110eef){return _0xe85462||_0x110eef;},'\x76\x73\x7a\x47\x72':function(_0x4351d5,_0x2bf4de,_0x2eb75f){return _0x4351d5(_0x2bf4de,_0x2eb75f);}};let _0xd15217=null;try{if(_0x1c5e54[_0xb49cf3(0x33c,'\x72\x6b\x64\x39')]===_0x1c5e54[_0xb49cf3(0x239,'\x5e\x4c\x6a\x23')])return _0x266fc4[_0xb49cf3(0x30a,'\x59\x74\x4e\x46')](_0x5bf64a[_0xb49cf3(0x22a,'\x5d\x5d\x5b\x45')](),_0x1c5e54[_0xb49cf3(0x231,'\x5b\x6d\x45\x70')],_0x1c5e54[_0xb49cf3(0x1f6,'\x59\x73\x45\x42')]);else _0xd15217=_0x1c5e54[_0xb49cf3(0x1fd,'\x5e\x4c\x6a\x23')](require,_0x1c5e54[_0xb49cf3(0x1e6,'\x30\x5b\x6e\x32')])['\x67\x65\x74\x48\x75\x62\x4e\x6f'+'\x64\x65\x53\x65\x63\x72\x65\x74']();}catch(_0x26002d){}if(!_0xd15217)return null;let _0x5becf0=null;try{_0x5becf0=_0x1c5e54[_0xb49cf3(0x1fc,'\x24\x31\x65\x58')](require,_0x1c5e54[_0xb49cf3(0x23a,'\x5e\x4c\x6a\x23')])[_0xb49cf3(0x213,'\x2a\x47\x6b\x78')+'\x64']();}catch(_0x5bffdd){}if(!_0x5becf0)return null;const _0x47b928=_0x54f85a[_0xb49cf3(0x36a,'\x6d\x47\x47\x6b')+'\x73\x68'](_0x1c5e54[_0xb49cf3(0x247,'\x6a\x6f\x47\x56')])[_0xb49cf3(0x386,'\x5a\x2a\x44\x43')](_0xd15217)[_0xb49cf3(0x292,'\x6b\x64\x40\x66')](_0x1c5e54[_0xb49cf3(0x273,'\x35\x64\x69\x71')]),_0x477930=Date[_0xb49cf3(0x29e,'\x24\x71\x4f\x43')](),_0x365ec8=_0x1c5e54[_0xb49cf3(0x23d,'\x59\x74\x4e\x46')](_0x5f44a9,JSON[_0xb49cf3(0x336,'\x71\x6e\x63\x48')+'\x79'](Array[_0xb49cf3(0x282,'\x6f\x47\x63\x4c')](_0x654234)?_0x654234[_0xb49cf3(0x38d,'\x79\x39\x51\x64')](-0x1*0x1325+-0x1*-0xdff+0x526,0x572*-0x3+0x20dd+-0x29*0x67):[])),_0x23c5eb=_0x1c5e54[_0xb49cf3(0x35b,'\x24\x31\x65\x58')](_0x5f44a9,JSON[_0xb49cf3(0x28a,'\x26\x6e\x66\x6b')+'\x79'](_0x1c5e54[_0xb49cf3(0x225,'\x35\x31\x73\x28')](_0x32a255,{}))),_0x5264d3=[_0x5becf0,_0x1c5e54[_0xb49cf3(0x280,'\x62\x67\x64\x77')](_0x4c8b0f,''),_0x365ec8,_0x23c5eb,String(_0x477930)]['\x6a\x6f\x69\x6e']('\x7c'),_0x4e0f66=_0x1c5e54['\x76\x73\x7a\x47\x72'](_0x32a020,_0x47b928,_0x5264d3),_0xdf926f={};return _0xdf926f[_0xb49cf3(0x203,'\x67\x5b\x40\x45')]=_0x5becf0,_0xdf926f[_0xb49cf3(0x36e,'\x5d\x5d\x5b\x45')+'\x65\x74']=_0xd15217,_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')]={},_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')][_0xb49cf3(0x2c2,'\x7a\x73\x2a\x6d')+'\x64']=_0x5becf0,_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')][_0xb49cf3(0x2a2,'\x74\x71\x63\x47')]=_0x4c8b0f||'',_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')][_0xb49cf3(0x25a,'\x39\x28\x71\x2a')+_0xb49cf3(0x2c8,'\x6c\x4e\x62\x53')]=_0x365ec8,_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')]['\x6d\x75\x74\x61\x74\x69\x6f\x6e'+_0xb49cf3(0x249,'\x7a\x5a\x59\x39')]=_0x23c5eb,_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')]['\x74\x73']=_0x477930,_0xdf926f[_0xb49cf3(0x23c,'\x46\x5d\x2a\x51')][_0xb49cf3(0x2eb,'\x6b\x36\x31\x75')+_0xb49cf3(0x1e8,'\x5e\x4c\x6a\x23')]=_0x4e0f66,_0xdf926f;}function _0x5b2650({geneId:_0x5304db,signals:_0x325dd1,mutation:_0x231e3e}){const _0x5cb354=_0x5ce74f,_0x3e819d={'\x69\x6b\x58\x65\x67':'\x28\x28\x28\x2e\x2b\x29\x2b\x29'+'\x2b\x29\x2b\x24','\x69\x56\x6f\x43\x6c':function(_0x1779ef,_0x12d584){return _0x1779ef(_0x12d584);},'\x4c\x71\x67\x75\x65':function(_0x58a844,_0x5701ce){return _0x58a844+_0x5701ce;},'\x6a\x63\x53\x53\x64':_0x5cb354(0x291,'\x6a\x6f\x47\x56'),'\x62\x66\x5a\x71\x56':function(_0x2e5a5f,_0x1934b4){return _0x2e5a5f===_0x1934b4;},'\x41\x46\x78\x63\x51':_0x5cb354(0x353,'\x5e\x4c\x6a\x23'),'\x73\x6e\x49\x53\x4e':function(_0x66120d){return _0x66120d();},'\x75\x71\x66\x58\x72':'\x6f\x66\x66\x6c\x69\x6e\x65\x5f'+_0x5cb354(0x396,'\x36\x6d\x29\x69')+_0x5cb354(0x2f9,'\x6d\x47\x47\x6b'),'\x41\x73\x44\x75\x45':function(_0x14865c,_0x28a261){return _0x14865c===_0x28a261;},'\x44\x52\x77\x76\x7a':_0x5cb354(0x311,'\x4a\x45\x70\x4d'),'\x43\x45\x44\x72\x58':_0x5cb354(0x363,'\x59\x73\x45\x42')+'\x72\x6c','\x50\x42\x55\x45\x6c':_0x5cb354(0x2b5,'\x5b\x28\x58\x4d')+_0x5cb354(0x24f,'\x35\x64\x69\x71'),'\x69\x7a\x68\x6c\x55':function(_0x34fea0,_0x29c8ee){return _0x34fea0+_0x29c8ee;},'\x58\x79\x47\x78\x57':_0x5cb354(0x24e,'\x5d\x5d\x5b\x45')+_0x5cb354(0x243,'\x30\x6d\x24\x31')+'\x64\x69\x66\x79','\x5a\x48\x4d\x6e\x73':function(_0x4d7055,_0x37dc90){return _0x4d7055(_0x37dc90);},'\x70\x74\x68\x57\x42':_0x5cb354(0x37e,'\x35\x31\x73\x28')+'\x67','\x6c\x41\x4a\x48\x58':function(_0x1c9551,_0x1ffcb0,_0x57b912){return _0x1c9551(_0x1ffcb0,_0x57b912);}},_0xbc5026=(process.env.A2A_HUB_URL||'')[_0x5cb354(0x2ed,'\x7a\x5a\x59\x39')](/\/+$/,''),_0x4c51bf={};_0x4c51bf['\x6f\x6b']=![],_0x4c51bf[_0x5cb354(0x2b7,'\x59\x66\x6c\x39')]=_0x3e819d['\x43\x45\x44\x72\x58'],_0x4c51bf['\x6f\x66\x66\x6c\x69\x6e\x65']=!![];if(!_0xbc5026)return Promise[_0x5cb354(0x38a,'\x55\x56\x29\x77')](_0x4c51bf);const _0x32801c={};_0x32801c[_0x5cb354(0x2db,'\x35\x31\x73\x28')]=_0x5304db,_0x32801c[_0x5cb354(0x224,'\x35\x50\x73\x75')]=_0x325dd1,_0x32801c[_0x5cb354(0x379,'\x62\x67\x64\x77')]=_0x231e3e;const _0x1afe20=_0x3e819d[_0x5cb354(0x351,'\x5a\x2a\x44\x43')](_0x48aac5,_0x32801c),_0x4161ca={};_0x4161ca['\x6f\x6b']=![],_0x4161ca[_0x5cb354(0x318,'\x49\x46\x50\x34')]=_0x3e819d[_0x5cb354(0x3a2,'\x55\x56\x29\x77')],_0x4161ca[_0x5cb354(0x29c,'\x58\x29\x72\x44')]=!![];if(!_0x1afe20)return Promise[_0x5cb354(0x381,'\x4f\x66\x76\x42')](_0x4161ca);const _0xf11454=_0x3e819d[_0x5cb354(0x274,'\x43\x4e\x47\x51')](_0xbc5026,_0x3e819d[_0x5cb354(0x388,'\x55\x56\x29\x77')]),_0x18e642=_0x3e819d[_0x5cb354(0x1e7,'\x30\x6d\x24\x31')](require,_0x3e819d[_0x5cb354(0x20d,'\x26\x6e\x66\x6b')])['\x48\x54\x54\x50\x5f\x54\x52\x41'+_0x5cb354(0x1f0,'\x2a\x47\x6b\x78')+_0x5cb354(0x222,'\x50\x47\x61\x6d')+'\x53']||-0x173a+0x17df+0x7af*0x5,_0x14c6d0={};_0x14c6d0[_0x5cb354(0x287,'\x6b\x64\x40\x66')+_0x5cb354(0x2e4,'\x63\x62\x4b\x5a')]=_0x5cb354(0x371,'\x74\x71\x63\x47')+'\x69\x6f\x6e\x2f\x6a\x73\x6f\x6e',_0x14c6d0[_0x5cb354(0x27b,'\x72\x6b\x64\x39')+_0x5cb354(0x32b,'\x6d\x47\x47\x6b')]='\x42\x65\x61\x72\x65\x72\x20'+_0x1afe20[_0x5cb354(0x2cc,'\x6f\x5d\x66\x4a')+'\x65\x74'];const _0x2b6dd8=_0x14c6d0;return _0x3e819d['\x6c\x41\x4a\x48\x58'](_0x576101,_0xf11454,{'\x6d\x65\x74\x68\x6f\x64':'\x50\x4f\x53\x54','\x68\x65\x61\x64\x65\x72\x73':_0x2b6dd8,'\x62\x6f\x64\x79':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x1afe20['\x62\x6f\x64\x79']),'\x73\x69\x67\x6e\x61\x6c':AbortSignal[_0x5cb354(0x27c,'\x67\x5b\x40\x45')](_0x18e642)})[_0x5cb354(0x2a5,'\x5d\x5d\x5b\x45')](function(_0x21c437){const _0x24a7db=_0x5cb354,_0x3e6c53={'\x4d\x56\x59\x69\x51':function(_0x2e4c4e,_0x498b98){return _0x2e4c4e>=_0x498b98;},'\x4e\x71\x65\x65\x6e':function(_0x42c12d,_0x3baf5f){const _0x2d750a=_0x364b;return _0x3e819d[_0x2d750a(0x223,'\x43\x54\x64\x51')](_0x42c12d,_0x3baf5f);},'\x7a\x54\x49\x4f\x59':_0x3e819d['\x6a\x63\x53\x53\x64']};if(_0x3e819d[_0x24a7db(0x2b8,'\x59\x4e\x45\x6d')](_0x3e819d[_0x24a7db(0x2dc,'\x33\x74\x70\x5b')],_0x24a7db(0x209,'\x39\x28\x71\x2a')))return _0x4e4de5[_0x24a7db(0x229,'\x55\x56\x29\x77')]()[_0x24a7db(0x32c,'\x5b\x6d\x45\x70')](GnFrmY[_0x24a7db(0x2c5,'\x24\x31\x65\x58')])[_0x24a7db(0x2cf,'\x79\x39\x51\x64')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x24a7db(0x37d,'\x55\x56\x29\x77')](_0x359085)[_0x24a7db(0x310,'\x35\x64\x69\x71')](GnFrmY[_0x24a7db(0x36b,'\x6b\x64\x40\x66')]);else{_0x21c437[_0x24a7db(0x1f1,'\x33\x74\x70\x5b')]<-0x9ef+0x3*-0x14e+0x5*0x329&&_0x3e819d[_0x24a7db(0x319,'\x5d\x5d\x5b\x45')](_0x1f2786);if(!_0x21c437['\x6f\x6b'])return _0x21c437[_0x24a7db(0x35c,'\x63\x62\x4b\x5a')]()[_0x24a7db(0x2b9,'\x62\x67\x64\x77')](function(_0x455377){const _0x3d5a8a=_0x24a7db,_0x3baea5=_0x3e6c53[_0x3d5a8a(0x322,'\x59\x74\x4e\x46')](_0x21c437[_0x3d5a8a(0x33d,'\x36\x6d\x29\x69')],0x2426+0x44f*-0x4+-0x10f6);return{'\x6f\x6b':![],'\x65\x72\x72\x6f\x72':_0x3e6c53[_0x3d5a8a(0x30e,'\x4a\x45\x70\x4d')](_0x3e6c53[_0x3d5a8a(0x39a,'\x43\x4e\x47\x51')](_0x3e6c53[_0x3d5a8a(0x295,'\x46\x5d\x2a\x51')]+_0x21c437['\x73\x74\x61\x74\x75\x73'],'\x3a\x20'),_0x455377[_0x3d5a8a(0x343,'\x30\x5b\x6e\x32')](0x20ef*-0x1+-0x8f*0x3+-0x376*-0xa,-0x565+-0x13cd+-0xcfd*-0x2)),'\x6f\x66\x66\x6c\x69\x6e\x65':_0x3baea5};});return _0x21c437[_0x24a7db(0x221,'\x6f\x5d\x66\x4a')]()[_0x24a7db(0x352,'\x71\x6e\x63\x48')](function(_0x1d7a69){const _0x34b31e=_0x24a7db;return _0x1d7a69&&_0x1d7a69['\x6f\x6b']&&_0x1d7a69[_0x34b31e(0x206,'\x71\x6e\x63\x48')+'\x74\x6f\x6b\x65\x6e']&&_0x3e819d[_0x34b31e(0x278,'\x4a\x45\x70\x4d')](_0xf6123e,_0x1d7a69[_0x34b31e(0x357,'\x79\x39\x51\x64')+_0x34b31e(0x219,'\x6c\x4e\x62\x53')]),_0x1d7a69;});}})[_0x5cb354(0x32d,'\x62\x67\x64\x77')](function(_0x1e49af){const _0x4137fb=_0x5cb354,_0x18c729={};_0x18c729[_0x4137fb(0x2c6,'\x6d\x47\x47\x6b')]=_0x3e819d[_0x4137fb(0x33a,'\x62\x67\x64\x77')];const _0x4e36d0=_0x18c729;if(_0x3e819d[_0x4137fb(0x218,'\x5a\x2a\x44\x43')](_0x3e819d[_0x4137fb(0x254,'\x33\x21\x64\x71')],_0x3e819d[_0x4137fb(0x2a1,'\x6a\x6f\x47\x56')])){const _0x5c627f={};return _0x5c627f['\x6f\x6b']=![],_0x5c627f[_0x4137fb(0x30b,'\x79\x39\x51\x64')]=_0x1e49af[_0x4137fb(0x201,'\x39\x64\x4e\x6c')],_0x5c627f[_0x4137fb(0x31d,'\x59\x73\x45\x42')]=!![],_0x5c627f;}else{const _0x280d90={};return _0x280d90['\x6f\x6b']=![],_0x280d90[_0x4137fb(0x289,'\x7a\x73\x2a\x6d')]=_0x4e36d0[_0x4137fb(0x1f4,'\x79\x39\x51\x64')],_0x280d90[_0x4137fb(0x253,'\x55\x56\x29\x77')]=!![],_0x280d90;}});}var _0x3d1d67=null,_0x5d542c=null;function _0x38d787(){const _0x179794=_0x5ce74f,_0x3364ba={'\x72\x4e\x54\x4f\x67':function(_0x4f7e91,_0x48b806){return _0x4f7e91(_0x48b806);},'\x56\x50\x6a\x62\x4f':_0x179794(0x33e,'\x24\x71\x4f\x43'),'\x77\x52\x77\x48\x4d':_0x179794(0x2a4,'\x72\x6b\x64\x39'),'\x46\x49\x69\x53\x50':_0x179794(0x258,'\x62\x67\x64\x77'),'\x79\x67\x48\x5a\x5a':function(_0x34b0d5){return _0x34b0d5();},'\x67\x42\x61\x67\x4a':_0x179794(0x220,'\x46\x5d\x2a\x51'),'\x4a\x6a\x55\x74\x5a':function(_0x49aa69,_0x3d7335){return _0x49aa69!==_0x3d7335;},'\x53\x59\x62\x48\x68':'\x73\x74\x72\x69\x6e\x67','\x72\x74\x4a\x50\x62':function(_0x5c9fea,_0x18ea0b,_0x330abd){return _0x5c9fea(_0x18ea0b,_0x330abd);},'\x61\x55\x6b\x57\x71':function(_0x27cc40,_0x85bff){return _0x27cc40(_0x85bff);},'\x4a\x43\x75\x5a\x4c':function(_0x2152f0,_0x29dbd0){return _0x2152f0!==_0x29dbd0;},'\x7a\x54\x76\x6f\x49':_0x179794(0x2ee,'\x49\x46\x50\x34'),'\x50\x43\x66\x56\x4d':_0x179794(0x26a,'\x24\x31\x65\x58'),'\x4d\x58\x69\x6c\x47':function(_0x4e0309,_0x10b755){return _0x4e0309===_0x10b755;},'\x68\x52\x47\x6f\x77':_0x179794(0x320,'\x6f\x47\x63\x4c')};try{return _0x3364ba['\x61\x55\x6b\x57\x71'](require,_0x3364ba[_0x179794(0x358,'\x36\x6d\x29\x69')])['\x67\x65\x74\x4d\x65\x6d\x6f\x72'+_0x179794(0x2f7,'\x71\x6e\x63\x48')]();}catch(_0x3c0d8d){try{return _0x3364ba[_0x179794(0x24c,'\x7a\x73\x2a\x6d')](_0x3364ba[_0x179794(0x2c3,'\x72\x6b\x64\x39')],_0x3364ba[_0x179794(0x3ac,'\x39\x64\x4e\x6c')])?_0x4467c6[_0x179794(0x34d,'\x6b\x64\x40\x66')](require(_0x179794(0x238,'\x7a\x5a\x59\x39'))[_0x179794(0x283,'\x65\x77\x40\x38')+'\x6f\x6f\x74'](),_0x3364ba[_0x179794(0x2ba,'\x33\x74\x70\x5b')],_0x3364ba[_0x179794(0x28f,'\x46\x5d\x2a\x51')]):_0x9ac9c2[_0x179794(0x30a,'\x59\x74\x4e\x46')](_0x3364ba[_0x179794(0x3a7,'\x71\x6e\x63\x48')](_0x48f463,_0x3364ba[_0x179794(0x268,'\x24\x31\x65\x58')])[_0x179794(0x39b,'\x58\x29\x72\x44')+_0x179794(0x2ff,'\x35\x50\x73\x75')](),_0x3364ba[_0x179794(0x38e,'\x59\x66\x6c\x39')],_0x3364ba[_0x179794(0x2b2,'\x33\x21\x64\x71')]);}catch(_0x2c8bd0){if(_0x3364ba[_0x179794(0x35e,'\x4a\x45\x70\x4d')](_0x3364ba[_0x179794(0x383,'\x6b\x64\x40\x66')],_0x3364ba[_0x179794(0x288,'\x59\x4e\x45\x6d')]))return _0x4467c6[_0x179794(0x2b6,'\x46\x5d\x2a\x51')](process[_0x179794(0x298,'\x72\x6b\x64\x39')](),'\x2e\x65\x76\x6f\x6c\x76\x65\x72',_0x3364ba['\x46\x49\x69\x53\x50']);else{if(!_0x42095a[_0x179794(0x2f1,'\x6b\x64\x40\x66')+'\x6e\x63'](_0x3364ba[_0x179794(0x2bc,'\x35\x31\x73\x28')](_0x92290f)))return null;const _0x57dee1=_0x775a32[_0x179794(0x2f2,'\x2a\x47\x6b\x78')](_0x2ec730[_0x179794(0x2a3,'\x36\x6d\x29\x69')+_0x179794(0x2cb,'\x4a\x45\x70\x4d')](_0x3364ba['\x79\x67\x48\x5a\x5a'](_0x283be0),_0x3364ba[_0x179794(0x334,'\x55\x56\x29\x77')]));if(!_0x57dee1||!_0x57dee1[_0x179794(0x327,'\x59\x73\x45\x42')]||_0x3364ba[_0x179794(0x35f,'\x59\x4e\x45\x6d')](typeof _0x57dee1[_0x179794(0x308,'\x59\x66\x6c\x39')],_0x3364ba['\x53\x59\x62\x48\x68']))return null;const _0x362303=_0x5ed480();if(!_0x362303)return null;const _0x4577d9=_0x3364ba[_0x179794(0x305,'\x24\x71\x4f\x43')](_0x1266dd,_0x362303,_0x312a97[_0x179794(0x28d,'\x30\x5b\x6e\x32')+'\x79'](_0x57dee1[_0x179794(0x23b,'\x46\x5d\x2a\x51')])),_0x247bee=_0x410d46['\x66\x72\x6f\x6d'](_0x4577d9,_0x179794(0x378,'\x6a\x6f\x47\x56')),_0x229526=_0x4559f7[_0x179794(0x348,'\x6f\x47\x63\x4c')](_0x57dee1[_0x179794(0x2e1,'\x30\x6d\x24\x31')],_0x179794(0x205,'\x33\x21\x64\x71'));if(_0x3364ba[_0x179794(0x3a8,'\x30\x6d\x24\x31')](_0x247bee[_0x179794(0x297,'\x35\x64\x69\x71')],_0x229526[_0x179794(0x2af,'\x7a\x73\x2a\x6d')])||!_0x27ed23['\x74\x69\x6d\x69\x6e\x67\x53\x61'+_0x179794(0x1f2,'\x6d\x47\x47\x6b')](_0x247bee,_0x229526))return null;return _0x57dee1[_0x179794(0x1f9,'\x30\x5b\x6e\x32')];}}}}function _0x1054ab(){const _0x49bdd1=_0x5ce74f;return!_0x3d1d67&&(_0x3d1d67=_0x4467c6[_0x49bdd1(0x2a6,'\x33\x21\x64\x71')](_0x38d787(),_0x49bdd1(0x1f7,'\x63\x62\x4b\x5a'))),_0x3d1d67;}function _0x5bb1e5(){const _0x2bec8a=_0x5ce74f,_0x24b5a6={};_0x24b5a6[_0x2bec8a(0x390,'\x4a\x45\x70\x4d')]=_0x2bec8a(0x25e,'\x33\x21\x64\x71'),_0x24b5a6[_0x2bec8a(0x393,'\x6f\x5d\x66\x4a')]=_0x2bec8a(0x2ec,'\x6b\x64\x40\x66'),_0x24b5a6[_0x2bec8a(0x25d,'\x39\x64\x4e\x6c')]=function(_0x4cbf7b,_0x56b10f){return _0x4cbf7b!==_0x56b10f;},_0x24b5a6[_0x2bec8a(0x290,'\x6b\x64\x40\x66')]='\x53\x59\x4d\x78\x4b',_0x24b5a6[_0x2bec8a(0x326,'\x6a\x6f\x47\x56')]=_0x2bec8a(0x2d9,'\x6f\x5d\x66\x4a');const _0x3fe921=_0x24b5a6;if(!_0x5d542c){if(_0x3fe921[_0x2bec8a(0x335,'\x5b\x6d\x45\x70')](_0x3fe921['\x6f\x58\x67\x69\x45'],_0x2bec8a(0x26f,'\x71\x6e\x63\x48')))return _0x1b6711[_0x2bec8a(0x21d,'\x72\x6b\x64\x39')+'\x73\x68'](nnnNEE[_0x2bec8a(0x2d4,'\x24\x31\x65\x58')])[_0x2bec8a(0x362,'\x4f\x66\x76\x42')](_0x381319(_0x19cb13||''))[_0x2bec8a(0x246,'\x5b\x6d\x45\x70')](nnnNEE[_0x2bec8a(0x2c4,'\x59\x74\x4e\x46')])['\x73\x6c\x69\x63\x65'](0x84e*0x2+0x9*-0x409+0x13b5,0x2*0xf05+-0x1bd2+-0x228);else _0x5d542c=_0x4467c6['\x6a\x6f\x69\x6e'](_0x38d787(),_0x3fe921[_0x2bec8a(0x30f,'\x5e\x4c\x6a\x23')]);}return _0x5d542c;}function _0x194d19(){const _0x5379fa=_0x5ce74f,_0x583bbd={'\x52\x49\x48\x46\x57':function(_0x20452e){return _0x20452e();},'\x74\x6d\x44\x58\x7a':'\x6f\x66\x66\x6c\x69\x6e\x65\x5f'+_0x5379fa(0x384,'\x4a\x45\x70\x4d')+_0x5379fa(0x34a,'\x30\x6d\x24\x31')+'\x64','\x4f\x4e\x52\x55\x6a':function(_0x32f1ab,_0x5a9f8a){return _0x32f1ab===_0x5a9f8a;},'\x43\x70\x53\x4a\x4f':_0x5379fa(0x2d7,'\x63\x62\x4b\x5a'),'\x48\x56\x6d\x6a\x70':_0x5379fa(0x233,'\x61\x4d\x59\x66'),'\x4c\x76\x51\x57\x6b':function(_0x213631,_0x3f320d){return _0x213631(_0x3f320d);},'\x70\x62\x61\x4c\x7a':function(_0x454bd,_0x5b90c0){return _0x454bd!==_0x5b90c0;},'\x4f\x61\x57\x75\x57':_0x5379fa(0x2d2,'\x50\x47\x61\x6d')};if(process.env.A2A_NODE_SECRET)return process.env.A2A_NODE_SECRET;try{if(_0x583bbd[_0x5379fa(0x293,'\x74\x71\x63\x47')](_0x583bbd[_0x5379fa(0x237,'\x5b\x6d\x45\x70')],_0x583bbd[_0x5379fa(0x2fa,'\x7a\x5a\x59\x39')]))gDGjLg[_0x5379fa(0x338,'\x5d\x5d\x5b\x45')](_0x4f8de0);else return _0x583bbd[_0x5379fa(0x2ca,'\x59\x74\x4e\x46')](require,_0x5379fa(0x350,'\x6b\x36\x31\x75')+_0x5379fa(0x2fe,'\x4f\x66\x76\x42'))[_0x5379fa(0x3a0,'\x5e\x4c\x6a\x23')+'\x64\x65\x53\x65\x63\x72\x65\x74']()||null;}catch(_0x558777){if(_0x583bbd['\x70\x62\x61\x4c\x7a'](_0x5379fa(0x2ae,'\x35\x50\x73\x75'),_0x583bbd[_0x5379fa(0x302,'\x35\x64\x69\x71')])){const _0x5c2db1={};return _0x5c2db1['\x6f\x6b']=![],_0x5c2db1[_0x5379fa(0x2a9,'\x59\x73\x45\x42')]=_0x583bbd[_0x5379fa(0x37c,'\x58\x29\x72\x44')],_0x5c2db1['\x6f\x66\x66\x6c\x69\x6e\x65']=!![],_0x5c2db1;}else return null;}}function _0xf6123e(_0x37f89e){const _0x5458e8=_0x5ce74f,_0x459fed={'\x70\x4e\x55\x66\x49':function(_0x27eb24){return _0x27eb24();},'\x75\x53\x4e\x64\x46':_0x5458e8(0x22f,'\x33\x74\x70\x5b'),'\x6c\x7a\x45\x4c\x48':function(_0x2001b1,_0x2831f4){return _0x2001b1===_0x2831f4;},'\x67\x70\x62\x48\x4b':_0x5458e8(0x2d3,'\x6b\x36\x31\x75'),'\x50\x7a\x50\x50\x78':_0x5458e8(0x324,'\x59\x74\x4e\x46'),'\x64\x71\x65\x74\x74':function(_0x4aa70a){return _0x4aa70a();},'\x75\x46\x54\x4e\x61':function(_0x479857){return _0x479857();},'\x78\x76\x63\x73\x76':function(_0x37517a,_0xac62e1,_0x1f1d79){return _0x37517a(_0xac62e1,_0x1f1d79);},'\x6e\x6b\x6f\x56\x74':_0x5458e8(0x333,'\x4f\x66\x76\x42')};try{if(_0x459fed[_0x5458e8(0x1fe,'\x4a\x45\x70\x4d')](_0x459fed[_0x5458e8(0x2f5,'\x49\x46\x50\x34')],_0x459fed[_0x5458e8(0x2b0,'\x6c\x4e\x62\x53')]))return!_0x3f1ccc&&(_0x41f52f=_0x51cf46[_0x5458e8(0x30a,'\x59\x74\x4e\x46')](gvzOiC[_0x5458e8(0x331,'\x59\x4e\x45\x6d')](_0x522f18),gvzOiC[_0x5458e8(0x1ea,'\x72\x6b\x64\x39')])),_0x16a85d;else{const _0x334edf=_0x459fed[_0x5458e8(0x241,'\x59\x74\x4e\x46')](_0x194d19);if(!_0x334edf)return;const _0x42b34a=_0x4467c6[_0x5458e8(0x37f,'\x30\x5b\x6e\x32')](_0x459fed[_0x5458e8(0x269,'\x50\x47\x61\x6d')](_0x1054ab)),_0x1bfce4={};_0x1bfce4[_0x5458e8(0x35d,'\x5e\x4c\x6a\x23')+'\x65']=!![];if(!_0x3b0051[_0x5458e8(0x27d,'\x35\x31\x73\x28')+'\x6e\x63'](_0x42b34a))_0x3b0051[_0x5458e8(0x21f,'\x33\x74\x70\x5b')+'\x63'](_0x42b34a,_0x1bfce4);const _0xbc9537=JSON[_0x5458e8(0x214,'\x67\x5b\x40\x45')+'\x79'](_0x37f89e),_0x577377=_0x459fed['\x78\x76\x63\x73\x76'](_0x32a020,_0x334edf,_0xbc9537),_0x2da533={};_0x2da533['\x64\x61\x74\x61']=_0x37f89e,_0x2da533[_0x5458e8(0x2f3,'\x5a\x2a\x44\x43')]=_0x577377,_0x3b0051[_0x5458e8(0x2de,'\x35\x50\x73\x75')+_0x5458e8(0x28c,'\x63\x62\x4b\x5a')](_0x1054ab(),JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x2da533),_0x459fed[_0x5458e8(0x257,'\x33\x74\x70\x5b')]);}}catch(_0x283b42){}}function _0x565c1b(){const _0x3e1076=_0x5ce74f,_0x4b8254={'\x6d\x75\x52\x79\x48':function(_0x59a4ee){return _0x59a4ee();},'\x42\x4c\x5a\x4b\x5a':function(_0x3fbc0f){return _0x3fbc0f();},'\x46\x68\x62\x77\x63':_0x3e1076(0x356,'\x35\x50\x73\x75'),'\x4a\x4a\x57\x5a\x4e':function(_0x5413a1,_0x184732){return _0x5413a1!==_0x184732;},'\x41\x67\x74\x42\x62':_0x3e1076(0x294,'\x39\x28\x71\x2a'),'\x43\x4b\x71\x4f\x78':function(_0x5a2e3e,_0x7c8095,_0x3cbe59){return _0x5a2e3e(_0x7c8095,_0x3cbe59);},'\x6e\x76\x71\x53\x4b':_0x3e1076(0x1f5,'\x6f\x47\x63\x4c')};try{if(!_0x3b0051[_0x3e1076(0x276,'\x79\x39\x51\x64')+'\x6e\x63'](_0x4b8254[_0x3e1076(0x25f,'\x4a\x45\x70\x4d')](_0x1054ab)))return null;const _0xef8b6c=JSON[_0x3e1076(0x2a0,'\x62\x67\x64\x77')](_0x3b0051[_0x3e1076(0x1f8,'\x58\x29\x72\x44')+_0x3e1076(0x20a,'\x6b\x36\x31\x75')](_0x4b8254[_0x3e1076(0x215,'\x5d\x5d\x5b\x45')](_0x1054ab),_0x4b8254[_0x3e1076(0x266,'\x59\x4e\x45\x6d')]));if(!_0xef8b6c||!_0xef8b6c[_0x3e1076(0x33f,'\x2a\x47\x6b\x78')]||_0x4b8254[_0x3e1076(0x20c,'\x30\x5b\x6e\x32')](typeof _0xef8b6c[_0x3e1076(0x2b1,'\x50\x47\x61\x6d')],_0x4b8254[_0x3e1076(0x1f3,'\x58\x29\x72\x44')]))return null;const _0x29bf6d=_0x4b8254[_0x3e1076(0x328,'\x65\x77\x40\x38')](_0x194d19);if(!_0x29bf6d)return null;const _0x4a2324=_0x4b8254[_0x3e1076(0x26d,'\x6f\x5d\x66\x4a')](_0x32a020,_0x29bf6d,JSON[_0x3e1076(0x21b,'\x43\x54\x64\x51')+'\x79'](_0xef8b6c[_0x3e1076(0x1f9,'\x30\x5b\x6e\x32')])),_0x4a4325=Buffer[_0x3e1076(0x3ad,'\x39\x28\x71\x2a')](_0x4a2324,_0x4b8254[_0x3e1076(0x36c,'\x4a\x45\x70\x4d')]),_0x2d14ac=Buffer[_0x3e1076(0x36d,'\x43\x54\x64\x51')](_0xef8b6c['\x68\x6d\x61\x63'],_0x4b8254[_0x3e1076(0x36c,'\x4a\x45\x70\x4d')]);if(_0x4a4325[_0x3e1076(0x2af,'\x7a\x73\x2a\x6d')]!==_0x2d14ac[_0x3e1076(0x365,'\x43\x4e\x47\x51')]||!_0x54f85a[_0x3e1076(0x387,'\x5b\x6d\x45\x70')+_0x3e1076(0x2a7,'\x6f\x5d\x66\x4a')](_0x4a4325,_0x2d14ac))return null;return _0xef8b6c[_0x3e1076(0x21e,'\x5a\x2a\x44\x43')];}catch(_0x38fc86){return null;}}function _0x1f2786(){const _0x2890af=_0x5ce74f,_0x4f814b={'\x6f\x4c\x59\x75\x78':function(_0x31cf14,_0x227193){return _0x31cf14!==_0x227193;},'\x73\x64\x78\x44\x7a':'\x47\x6f\x5a\x6f\x66','\x71\x46\x74\x43\x6a':function(_0x230870,_0x1c9db9){return _0x230870(_0x1c9db9);},'\x4e\x55\x42\x5a\x4b':_0x2890af(0x251,'\x59\x74\x4e\x46')};try{if(_0x4f814b[_0x2890af(0x3b0,'\x36\x6d\x29\x69')](_0x4f814b[_0x2890af(0x325,'\x6b\x64\x40\x66')],_0x2890af(0x312,'\x6f\x5d\x66\x4a'))){const _0x540e0c=_0x4467c6[_0x2890af(0x394,'\x33\x74\x70\x5b')](_0x5bb1e5()),_0x44d623={};_0x44d623[_0x2890af(0x316,'\x63\x62\x4b\x5a')+'\x65']=!![];if(!_0x3b0051[_0x2890af(0x250,'\x4f\x66\x76\x42')+'\x6e\x63'](_0x540e0c))_0x3b0051[_0x2890af(0x314,'\x61\x4d\x59\x66')+'\x63'](_0x540e0c,_0x44d623);_0x3b0051[_0x2890af(0x344,'\x6b\x64\x40\x66')+_0x2890af(0x27f,'\x24\x31\x65\x58')](_0x5bb1e5(),_0x4f814b[_0x2890af(0x2bf,'\x6d\x47\x47\x6b')](String,Date[_0x2890af(0x1ec,'\x5b\x6d\x45\x70')]()),_0x4f814b[_0x2890af(0x313,'\x5b\x28\x58\x4d')]);}else{const _0x305b6c={};return _0x305b6c['\x6f\x6b']=![],_0x305b6c[_0x2890af(0x341,'\x24\x71\x4f\x43')]=_0x2890af(0x259,'\x59\x73\x45\x42')+_0x2890af(0x373,'\x65\x77\x40\x38')+_0x2890af(0x211,'\x30\x5b\x6e\x32'),_0x305b6c[_0x2890af(0x2f0,'\x30\x5b\x6e\x32')]=!![],_0x305b6c;}}catch(_0x309d4f){}}function _0x20da8d(){const _0x409d24=_0x5ce74f,_0xd9f392={'\x62\x6e\x58\x77\x52':function(_0x4cf0ad,_0x57ff18){return _0x4cf0ad(_0x57ff18);},'\x79\x4e\x5a\x55\x66':_0x409d24(0x354,'\x71\x6e\x63\x48')+_0x409d24(0x306,'\x5d\x5d\x5b\x45'),'\x52\x62\x56\x43\x70':_0x409d24(0x3a5,'\x39\x64\x4e\x6c'),'\x52\x50\x74\x43\x66':_0x409d24(0x309,'\x26\x6e\x66\x6b'),'\x5a\x54\x4f\x48\x6f':function(_0x20aa95){return _0x20aa95();},'\x63\x6f\x45\x50\x4e':function(_0x57b71a,_0x5c09cc,_0x321240){return _0x57b71a(_0x5c09cc,_0x321240);}};try{if(_0xd9f392['\x52\x62\x56\x43\x70']!==_0xd9f392[_0x409d24(0x1fb,'\x58\x29\x72\x44')]){if(!_0x3b0051[_0x409d24(0x349,'\x24\x31\x65\x58')+'\x6e\x63'](_0xd9f392[_0x409d24(0x230,'\x30\x5b\x6e\x32')](_0x5bb1e5)))return-0x1cb8+-0x26b4+0x436c;return _0xd9f392['\x63\x6f\x45\x50\x4e'](parseInt,_0x3b0051['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0x409d24(0x370,'\x71\x6e\x63\x48')](_0xd9f392[_0x409d24(0x281,'\x5e\x4c\x6a\x23')](_0x5bb1e5),_0x409d24(0x2df,'\x6f\x47\x63\x4c')),-0x1*0x1541+-0x1b69+0x30b4)||0x1c9*-0x5+0x443*-0x9+0x2f48;}else _0x55c91a=FgwSPZ['\x62\x6e\x58\x77\x52'](_0x182bf6,FgwSPZ[_0x409d24(0x208,'\x50\x47\x61\x6d')])[_0x409d24(0x2d5,'\x24\x31\x65\x58')+'\x64']();}catch(_0x5ba8cb){return 0x206d*-0x1+0x7*0xbb+0x1b50;}}var _0x58e58a=-0x21ba+0x5*0xe9+-0x1*-0x1d37,_0x235b8c=(0x22da+0x1597+-0x967*0x6)*(0x1772+0x21ff+0x115*-0x35)*(0x1cf2+0x55c+-0x2212)*(0x34b*-0x5+0x16a8+-0x5f5)*(-0x1c1*0xf+0x1*0xee6+0xf51),_0x59275c=(-0x42*0x7e+-0x2da*-0xd+0x17*-0x32)*(-0x2*-0xffa+0x1216+-0x31ce)*(-0x1090+-0x69d*0x1+-0x1cd*-0xd)*(0x1*-0x2ad+-0x1*-0x1ef7+-0x1862);function _0x4baa4c(){const _0x50dbaa=_0x5ce74f,_0x2a6fe4={'\x68\x72\x57\x77\x62':function(_0x5a6968,_0x209e58){return _0x5a6968(_0x209e58);},'\x51\x72\x52\x6c\x6b':_0x50dbaa(0x1ff,'\x35\x64\x69\x71')+_0x50dbaa(0x207,'\x35\x50\x73\x75')+_0x50dbaa(0x2bd,'\x36\x6d\x29\x69'),'\x54\x56\x62\x61\x6c':function(_0x4c59fa){return _0x4c59fa();},'\x41\x61\x59\x57\x5a':_0x50dbaa(0x200,'\x59\x66\x6c\x39'),'\x54\x43\x48\x4c\x4f':_0x50dbaa(0x27e,'\x35\x64\x69\x71'),'\x61\x48\x63\x67\x4a':function(_0x3656de){return _0x3656de();},'\x79\x67\x43\x46\x4e':_0x50dbaa(0x21c,'\x39\x64\x4e\x6c')+_0x50dbaa(0x376,'\x30\x6d\x24\x31'),'\x58\x49\x41\x41\x51':function(_0xa7f331,_0x43ae23){return _0xa7f331>_0x43ae23;},'\x58\x78\x58\x78\x50':function(_0xf71676,_0x2e5f38){return _0xf71676-_0x2e5f38;},'\x6c\x4d\x69\x42\x50':function(_0x424d18,_0x291f29){return _0x424d18!==_0x291f29;},'\x4f\x67\x50\x73\x65':_0x50dbaa(0x2b4,'\x6c\x4e\x62\x53'),'\x52\x48\x71\x6a\x73':function(_0x4b9f63,_0x30c1d1){return _0x4b9f63>_0x30c1d1;},'\x4e\x54\x4b\x57\x6e':function(_0x58062e,_0x4fb00a){return _0x58062e>_0x4fb00a;},'\x52\x41\x77\x51\x41':function(_0x53276a,_0x2d6c5e){return _0x53276a!==_0x2d6c5e;},'\x56\x47\x4b\x53\x46':'\x45\x4a\x44\x4c\x69','\x75\x53\x67\x68\x62':_0x50dbaa(0x2d1,'\x5b\x6d\x45\x70')+_0x50dbaa(0x301,'\x63\x62\x4b\x5a')+_0x50dbaa(0x23e,'\x39\x28\x71\x2a'),'\x5a\x75\x49\x62\x75':function(_0x517a6b,_0x4ba372){return _0x517a6b>_0x4ba372;},'\x70\x6c\x55\x76\x74':_0x50dbaa(0x340,'\x4f\x66\x76\x42')+_0x50dbaa(0x330,'\x74\x71\x63\x47')+_0x50dbaa(0x372,'\x24\x31\x65\x58')+'\x64','\x69\x6a\x75\x56\x76':function(_0x34764a,_0x5045ef){return _0x34764a>=_0x5045ef;},'\x48\x69\x7a\x44\x54':function(_0x131e7e,_0x35ab1a){return _0x131e7e+_0x35ab1a;},'\x61\x68\x49\x72\x75':function(_0x2c067b){return _0x2c067b();},'\x78\x74\x5a\x79\x58':function(_0x10bc2e,_0xdac1f6){return _0x10bc2e(_0xdac1f6);},'\x43\x6d\x62\x63\x64':_0x50dbaa(0x31c,'\x26\x6e\x66\x6b'),'\x6f\x61\x66\x78\x57':'\x50\x49\x6c\x77\x76','\x74\x79\x68\x77\x63':_0x50dbaa(0x345,'\x35\x64\x69\x71'),'\x52\x43\x75\x6e\x52':function(_0x4039e3,_0x13e409,_0x105830){return _0x4039e3(_0x13e409,_0x105830);},'\x41\x62\x66\x56\x4b':function(_0x239d2b){return _0x239d2b();},'\x6a\x4d\x45\x78\x48':_0x50dbaa(0x1ee,'\x4a\x45\x70\x4d')+'\x65\x6f\x75\x74','\x4d\x67\x77\x78\x6c':function(_0x49726c,_0x5d8a89){return _0x49726c!==_0x5d8a89;},'\x44\x64\x73\x58\x56':_0x50dbaa(0x275,'\x39\x64\x4e\x6c'),'\x4a\x76\x4e\x64\x52':_0x50dbaa(0x380,'\x58\x29\x72\x44')+_0x50dbaa(0x38b,'\x39\x64\x4e\x6c')+_0x50dbaa(0x38f,'\x24\x71\x4f\x43')};try{if(_0x2a6fe4[_0x50dbaa(0x391,'\x26\x6e\x66\x6b')]===_0x2a6fe4[_0x50dbaa(0x317,'\x30\x5b\x6e\x32')]){var _0x59f5db=_0x4467c6[_0x50dbaa(0x342,'\x7a\x73\x2a\x6d')](_0x2a6fe4['\x61\x48\x63\x67\x4a'](_0x1054ab));const _0x1d7ee5={};_0x1d7ee5[_0x50dbaa(0x337,'\x39\x28\x71\x2a')+'\x65']=!![];if(!_0x3b0051[_0x50dbaa(0x2f6,'\x46\x5d\x2a\x51')+'\x6e\x63'](_0x59f5db))_0x3b0051[_0x50dbaa(0x22c,'\x43\x54\x64\x51')+'\x63'](_0x59f5db,_0x1d7ee5);}else{if(_0x43380f.env.A2A_NODE_SECRET)return _0x8c77a8.env.A2A_NODE_SECRET;try{return xtxwaO[_0x50dbaa(0x3ae,'\x43\x4e\x47\x51')](_0xba2a9f,_0x50dbaa(0x38c,'\x6d\x47\x47\x6b')+_0x50dbaa(0x306,'\x5d\x5d\x5b\x45'))[_0x50dbaa(0x286,'\x36\x6d\x29\x69')+_0x50dbaa(0x382,'\x6c\x4e\x62\x53')]()||null;}catch(_0x6864bb){return null;}}}catch(_0x3d2437){}try{if(_0x2a6fe4[_0x50dbaa(0x277,'\x6f\x5d\x66\x4a')]===_0x50dbaa(0x2ef,'\x26\x6e\x66\x6b'))return _0x2a6fe4[_0x50dbaa(0x262,'\x2a\x47\x6b\x78')](_0x465775,_0x2a6fe4['\x41\x62\x66\x56\x4b'](_0x1054ab),function(){const _0x5d39ba=_0x50dbaa,_0x2130f9={'\x76\x73\x61\x77\x55':function(_0x342259){const _0x4e316a=_0x364b;return _0x2a6fe4[_0x4e316a(0x2ac,'\x36\x6d\x29\x69')](_0x342259);},'\x44\x64\x77\x45\x69':_0x2a6fe4[_0x5d39ba(0x217,'\x49\x46\x50\x34')]};if(_0x2a6fe4[_0x5d39ba(0x234,'\x71\x6e\x63\x48')]!==_0x2a6fe4[_0x5d39ba(0x34f,'\x30\x5b\x6e\x32')])return null;else{var _0x18b2c8=_0x2a6fe4[_0x5d39ba(0x22d,'\x5a\x2a\x44\x43')](_0x565c1b);const _0x406819={};_0x406819['\x6f\x6b']=![],_0x406819[_0x5d39ba(0x26b,'\x55\x56\x29\x77')]=_0x2a6fe4['\x79\x67\x43\x46\x4e'],_0x406819[_0x5d39ba(0x29c,'\x58\x29\x72\x44')]=!![];if(!_0x18b2c8)return _0x406819;var _0x31a235=_0x18b2c8[_0x5d39ba(0x32f,'\x5b\x6d\x45\x70')+_0x5d39ba(0x321,'\x6b\x36\x31\x75')+_0x5d39ba(0x261,'\x62\x67\x64\x77')]||_0x58e58a,_0x510155=_0x18b2c8[_0x5d39ba(0x1eb,'\x63\x62\x4b\x5a')+'\x74']||-0xf5c*-0x2+-0xb*-0x249+-0x37db*0x1,_0x2de9a3=_0x18b2c8['\x75\x73\x65\x64\x43\x6f\x75\x6e'+'\x74']||0x242e*0x1+0x4*0x3c5+-0x3*0x1116,_0x4349e6=Date['\x6e\x6f\x77'](),_0x507b93=_0x20da8d();if(_0x2a6fe4[_0x5d39ba(0x25b,'\x79\x39\x51\x64')](_0x507b93,-0x14b+0x18a3+-0x1758)&&_0x4349e6<_0x2a6fe4[_0x5d39ba(0x2d8,'\x39\x28\x71\x2a')](_0x507b93,_0x59275c)){if(_0x2a6fe4[_0x5d39ba(0x32a,'\x6f\x5d\x66\x4a')](_0x5d39ba(0x2f8,'\x67\x5b\x40\x45'),_0x2a6fe4[_0x5d39ba(0x2da,'\x58\x29\x72\x44')]))_0x562415=_0x102a79[_0x5d39ba(0x31b,'\x79\x39\x51\x64')](nXNjTW[_0x5d39ba(0x3a9,'\x6f\x5d\x66\x4a')](_0x281461),nXNjTW[_0x5d39ba(0x360,'\x6a\x6f\x47\x56')]);else{const _0x4633c8={};return _0x4633c8['\x6f\x6b']=![],_0x4633c8[_0x5d39ba(0x300,'\x6d\x47\x47\x6b')]=_0x2a6fe4[_0x5d39ba(0x2e3,'\x58\x29\x72\x44')],_0x4633c8['\x6f\x66\x66\x6c\x69\x6e\x65']=!![],_0x4633c8;}}if(_0x2a6fe4[_0x5d39ba(0x2cd,'\x6d\x47\x47\x6b')](_0x510155,-0x2d7+-0x1*-0x138e+-0x10b7)&&_0x2a6fe4[_0x5d39ba(0x377,'\x43\x4e\x47\x51')](_0x4349e6,_0x510155)){if(_0x2a6fe4[_0x5d39ba(0x285,'\x6b\x64\x40\x66')](_0x2a6fe4[_0x5d39ba(0x24b,'\x62\x67\x64\x77')],_0x5d39ba(0x2e8,'\x59\x74\x4e\x46'))){const _0x3adf96={};return _0x3adf96['\x6f\x6b']=![],_0x3adf96[_0x5d39ba(0x26e,'\x35\x31\x73\x28')]=_0x2a6fe4[_0x5d39ba(0x36f,'\x61\x4d\x59\x66')],_0x3adf96[_0x5d39ba(0x253,'\x55\x56\x29\x77')]=!![],_0x3adf96;}else{const _0x1e59d={};return _0x1e59d['\x6f\x6b']=![],_0x1e59d[_0x5d39ba(0x29d,'\x61\x4d\x59\x66')]=_0x2a6fe4['\x75\x53\x67\x68\x62'],_0x1e59d[_0x5d39ba(0x255,'\x4a\x45\x70\x4d')]=!![],_0x1e59d;}}if(_0x507b93>0x649*0x3+-0x1*-0x10a5+0x1*-0x2380&&_0x2a6fe4[_0x5d39ba(0x1ed,'\x50\x47\x61\x6d')](_0x2a6fe4[_0x5d39ba(0x226,'\x5e\x4c\x6a\x23')](_0x4349e6,_0x507b93),_0x235b8c)){const _0x273d97={};return _0x273d97['\x6f\x6b']=![],_0x273d97[_0x5d39ba(0x2e5,'\x30\x6d\x24\x31')]=_0x2a6fe4['\x70\x6c\x55\x76\x74'],_0x273d97['\x6f\x66\x66\x6c\x69\x6e\x65']=!![],_0x273d97;}if(_0x2a6fe4[_0x5d39ba(0x339,'\x26\x6e\x66\x6b')](_0x2de9a3,_0x31a235)){const _0x279d22={};return _0x279d22['\x6f\x6b']=![],_0x279d22[_0x5d39ba(0x318,'\x49\x46\x50\x34')]=_0x5d39ba(0x380,'\x58\x29\x72\x44')+_0x5d39ba(0x25c,'\x4a\x45\x70\x4d')+_0x5d39ba(0x2fd,'\x4f\x66\x76\x42'),_0x279d22[_0x5d39ba(0x28e,'\x59\x66\x6c\x39')]=!![],_0x279d22;}_0x18b2c8[_0x5d39ba(0x1e9,'\x7a\x5a\x59\x39')+'\x74']=_0x2a6fe4[_0x5d39ba(0x271,'\x7a\x73\x2a\x6d')](_0x2de9a3,-0x20ae+-0x7d3+0x2882),_0xf6123e(_0x18b2c8);const _0x43eec7={};return _0x43eec7['\x6f\x6b']=!![],_0x43eec7[_0x5d39ba(0x2c1,'\x5b\x28\x58\x4d')]=!![],_0x43eec7[_0x5d39ba(0x265,'\x59\x66\x6c\x39')+'\x67']=_0x31a235-_0x18b2c8[_0x5d39ba(0x236,'\x61\x4d\x59\x66')+'\x74'],_0x43eec7;}});else{const _0x29e0b2={};return _0x29e0b2['\x6f\x6b']=![],_0x29e0b2[_0x50dbaa(0x2a9,'\x59\x73\x45\x42')]=_0x351c92[_0x50dbaa(0x232,'\x59\x74\x4e\x46')],_0x29e0b2[_0x50dbaa(0x31d,'\x59\x73\x45\x42')]=!![],_0x29e0b2;}}catch(_0xc31389){var _0x449dda=_0xc31389&&_0xc31389[_0x50dbaa(0x28b,'\x43\x4e\x47\x51')]||_0x2a6fe4[_0x50dbaa(0x260,'\x59\x66\x6c\x39')](String,_0xc31389);if(_0x2a6fe4[_0x50dbaa(0x2e7,'\x74\x71\x63\x47')](_0x449dda['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2a6fe4[_0x50dbaa(0x323,'\x5e\x4c\x6a\x23')]),-(-0x59*0x35+0xc38+0x636))){if(_0x2a6fe4['\x4d\x67\x77\x78\x6c'](_0x2a6fe4[_0x50dbaa(0x3af,'\x5b\x6d\x45\x70')],'\x61\x6e\x41\x55\x75')){const _0x34bdca={};return _0x34bdca['\x6f\x6b']=![],_0x34bdca[_0x50dbaa(0x332,'\x6c\x4e\x62\x53')]=_0x2a6fe4[_0x50dbaa(0x30c,'\x39\x28\x71\x2a')],_0x34bdca['\x6f\x66\x66\x6c\x69\x6e\x65']=!![],_0x34bdca;}else try{const _0x16c993=_0x2927dd[_0x50dbaa(0x263,'\x59\x66\x6c\x39')](_0x4150fa()),_0x546e62={};_0x546e62[_0x50dbaa(0x235,'\x36\x6d\x29\x69')+'\x65']=!![];if(!_0x129fd0['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x16c993))_0x20b21f[_0x50dbaa(0x240,'\x35\x64\x69\x71')+'\x63'](_0x16c993,_0x546e62);_0x50dbbd[_0x50dbaa(0x20b,'\x35\x64\x69\x71')+_0x50dbaa(0x3aa,'\x4a\x45\x70\x4d')](xtxwaO['\x61\x68\x49\x72\x75'](_0x3c12af),xtxwaO[_0x50dbaa(0x34b,'\x74\x71\x63\x47')](_0x562a3e,_0x1a5d7d[_0x50dbaa(0x284,'\x4f\x66\x76\x42')]()),xtxwaO[_0x50dbaa(0x2d6,'\x79\x39\x51\x64')]);}catch(_0x2fc236){}}return{'\x6f\x6b':![],'\x65\x72\x72\x6f\x72':_0x50dbaa(0x2c7,'\x6c\x4e\x62\x53')+_0x50dbaa(0x37b,'\x24\x31\x65\x58')+_0x50dbaa(0x29b,'\x79\x39\x51\x64'),'\x6f\x66\x66\x6c\x69\x6e\x65':!![],'\x64\x65\x74\x61\x69\x6c':_0x449dda[_0x50dbaa(0x31f,'\x35\x64\x69\x71')](-0x2*0x6b6+0x610+0xc*0x9d,0x1e24+-0x1365+-0x9f7)};}}function _0x39ca84(){const _0x44cf92=_0x5ce74f,_0x4c61be={};_0x4c61be[_0x44cf92(0x33b,'\x24\x31\x65\x58')]=function(_0x31d6d5,_0x3659b7){return _0x31d6d5===_0x3659b7;},_0x4c61be[_0x44cf92(0x2dd,'\x5d\x5d\x5b\x45')]='\x74\x65\x73\x74',_0x4c61be[_0x44cf92(0x3ab,'\x5b\x6d\x45\x70')]=_0x44cf92(0x2e6,'\x24\x31\x65\x58'),_0x4c61be[_0x44cf92(0x256,'\x4a\x45\x70\x4d')]=_0x44cf92(0x329,'\x43\x54\x64\x51');const _0x16c005=_0x4c61be;if(_0x16c005['\x71\x6e\x79\x74\x41'](process.env.NODE_ENV,_0x16c005[_0x44cf92(0x2e9,'\x61\x4d\x59\x66')])){var _0x42314f=(process.env.EVOLVER_SOLIDIFY_VERIFY||'')[_0x44cf92(0x21a,'\x71\x6e\x63\x48')+_0x44cf92(0x389,'\x7a\x73\x2a\x6d')]();if(_0x16c005[_0x44cf92(0x228,'\x5d\x5d\x5b\x45')](_0x42314f,_0x16c005[_0x44cf92(0x34e,'\x67\x5b\x40\x45')])||_0x16c005[_0x44cf92(0x299,'\x5b\x6d\x45\x70')](_0x42314f,'\x30')||_0x42314f===_0x16c005[_0x44cf92(0x395,'\x6b\x36\x31\x75')])return![];}var _0x119d63=process.env.A2A_HUB_URL||'';return!!_0x119d63;}function _0x364b(_0x2a59e3,_0x3fdfe4){_0x2a59e3=_0x2a59e3-(-0x110b*-0x1+0x1*0x173f+-0xb6*0x36);const _0x5692f8=_0x316a();let _0x23cf5b=_0x5692f8[_0x2a59e3];if(_0x364b['\x52\x62\x46\x74\x47\x77']===undefined){var _0x42095a=function(_0x5ed480){const _0x1266dd='\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 _0x312a97='',_0x410d46='',_0x4559f7=_0x312a97+_0x42095a,_0x27ed23=(''+function(){return-0xa0b*-0x2+0x1*0x84e+-0x1c64;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1916+0x4d0+0x1de5*-0x1);for(let _0x1c3dbc=-0x1*0x167d+-0x680+0x1cfd,_0x259c92,_0x5b5a7c,_0x333055=0x6df+-0x8*0x23e+0xb11;_0x5b5a7c=_0x5ed480['\x63\x68\x61\x72\x41\x74'](_0x333055++);~_0x5b5a7c&&(_0x259c92=_0x1c3dbc%(-0x3*0x65b+0x22d*0xb+-0x4da)?_0x259c92*(0xd88+-0x1*-0x1f5a+0x1651*-0x2)+_0x5b5a7c:_0x5b5a7c,_0x1c3dbc++%(0x1f33+0x1*0x2645+-0x4574))?_0x312a97+=_0x27ed23||_0x4559f7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x333055+(0x15d0+0x3*0x84e+-0xa6*0x48))-(0x1153+0xb74+-0x1cbd*0x1)!==-0x53*-0x4c+-0x17fc+-0xa8?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x20c9+-0x1d*-0x10d+0xa1*-0x63&_0x259c92>>(-(0x1*0x4c4+0x28*-0x2b+0x1f6)*_0x1c3dbc&-0x1*0xf2e+-0x17fa+0x272e)):_0x1c3dbc:0x13ab+0x3fc+0x1*-0x17a7){_0x5b5a7c=_0x1266dd['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5b5a7c);}for(let _0x198983=-0x18*-0x18d+0x287*-0x3+-0x1da3,_0x453dac=_0x312a97['\x6c\x65\x6e\x67\x74\x68'];_0x198983<_0x453dac;_0x198983++){_0x410d46+='\x25'+('\x30\x30'+_0x312a97['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x198983)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xe6b+0x4a8+-0x1303))['\x73\x6c\x69\x63\x65'](-(-0xdaf+0x1a0e+-0xc5d));}return decodeURIComponent(_0x410d46);};const _0x283be0=function(_0x3f0169,_0x182372){let _0x4206c6=[],_0xaa87a5=-0x9f*-0x33+0xdf8+-0x2da5,_0x1696db,_0x43b6bf='';_0x3f0169=_0x42095a(_0x3f0169);let _0x22899e;for(_0x22899e=0xa7+0xf*-0x1f9+-0x1cf*-0x10;_0x22899e<0x62b*-0x5+0x15e*-0xf+0x3459;_0x22899e++){_0x4206c6[_0x22899e]=_0x22899e;}for(_0x22899e=0x201b+0x172f+-0x374a;_0x22899e<-0x2543*0x1+-0x1029+0x366c;_0x22899e++){_0xaa87a5=(_0xaa87a5+_0x4206c6[_0x22899e]+_0x182372['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x22899e%_0x182372['\x6c\x65\x6e\x67\x74\x68']))%(-0x1f26+-0x1b23+0x3b49),_0x1696db=_0x4206c6[_0x22899e],_0x4206c6[_0x22899e]=_0x4206c6[_0xaa87a5],_0x4206c6[_0xaa87a5]=_0x1696db;}_0x22899e=0x1c4e+0xc45*0x1+-0x263*0x11,_0xaa87a5=-0x59*0x2+0xda0+0x1*-0xcee;for(let _0x56541c=0x1d21*-0x1+0x14de*0x1+-0x2d*-0x2f;_0x56541c<_0x3f0169['\x6c\x65\x6e\x67\x74\x68'];_0x56541c++){_0x22899e=(_0x22899e+(-0xadb*-0x1+0x13b5+-0x1e8f*0x1))%(0xf*-0xe1+0x2551+-0x1722),_0xaa87a5=(_0xaa87a5+_0x4206c6[_0x22899e])%(0x24f7+-0xb92+-0x1865),_0x1696db=_0x4206c6[_0x22899e],_0x4206c6[_0x22899e]=_0x4206c6[_0xaa87a5],_0x4206c6[_0xaa87a5]=_0x1696db,_0x43b6bf+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x3f0169['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x56541c)^_0x4206c6[(_0x4206c6[_0x22899e]+_0x4206c6[_0xaa87a5])%(-0xc27+0x935*-0x1+0x165c)]);}return _0x43b6bf;};_0x364b['\x79\x4c\x65\x55\x78\x56']=_0x283be0,_0x364b['\x51\x76\x73\x73\x73\x48']={},_0x364b['\x52\x62\x46\x74\x47\x77']=!![];}const _0x92290f=_0x5692f8[0x166b+-0xa94*-0x2+0x73*-0x61],_0x775a32=_0x2a59e3+_0x92290f,_0x2ec730=_0x364b['\x51\x76\x73\x73\x73\x48'][_0x775a32];if(!_0x2ec730){if(_0x364b['\x7a\x50\x6c\x4c\x46\x4b']===undefined){const _0x254949=function(_0x3903bf){this['\x61\x64\x4f\x73\x79\x72']=_0x3903bf,this['\x50\x69\x77\x76\x62\x72']=[0xfb+-0xe44+-0xbd*-0x12,-0x677+-0x223b*0x1+0x28b2,0x1e72+-0xdef+0x3*-0x581],this['\x65\x4d\x41\x64\x6c\x65']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x57\x49\x6d\x73\x4e\x4c']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x77\x45\x74\x65\x56\x6a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x254949['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4a\x59\x54\x59\x68\x4e']=function(){const _0x32e7af=new RegExp(this['\x57\x49\x6d\x73\x4e\x4c']+this['\x77\x45\x74\x65\x56\x6a']),_0x3db148=_0x32e7af['\x74\x65\x73\x74'](this['\x65\x4d\x41\x64\x6c\x65']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x50\x69\x77\x76\x62\x72'][0x5*0x23b+0x23e8+-0x2f0e]:--this['\x50\x69\x77\x76\x62\x72'][0x2*0x458+-0x7*0x4f3+0xf*0x1bb];return this['\x6f\x4a\x65\x4d\x6a\x72'](_0x3db148);},_0x254949['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6f\x4a\x65\x4d\x6a\x72']=function(_0x3130ca){if(!Boolean(~_0x3130ca))return _0x3130ca;return this['\x67\x69\x70\x54\x42\x4a'](this['\x61\x64\x4f\x73\x79\x72']);},_0x254949['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x67\x69\x70\x54\x42\x4a']=function(_0x125aca){for(let _0x598942=0x1991+0x24d*0xd+-0x127e*0x3,_0x2927dd=this['\x50\x69\x77\x76\x62\x72']['\x6c\x65\x6e\x67\x74\x68'];_0x598942<_0x2927dd;_0x598942++){this['\x50\x69\x77\x76\x62\x72']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2927dd=this['\x50\x69\x77\x76\x62\x72']['\x6c\x65\x6e\x67\x74\x68'];}return _0x125aca(this['\x50\x69\x77\x76\x62\x72'][0x152*0x1d+0x1bbe+-0x2104*0x2]);},(''+function(){return 0x2323*0x1+0x1*0x221b+-0x453e;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x4*0x283+-0xf3a*-0x1+-0x1945)&&new _0x254949(_0x364b)['\x4a\x59\x54\x59\x68\x4e'](),_0x364b['\x7a\x50\x6c\x4c\x46\x4b']=!![];}_0x23cf5b=_0x364b['\x79\x4c\x65\x55\x78\x56'](_0x23cf5b,_0x3fdfe4),_0x364b['\x51\x76\x73\x73\x73\x48'][_0x775a32]=_0x23cf5b;}else _0x23cf5b=_0x2ec730;return _0x23cf5b;}const _0x33be11={};_0x33be11[_0x5ce74f(0x2ea,'\x26\x6e\x66\x6b')+_0x5ce74f(0x374,'\x65\x77\x40\x38')+'\x65\x72\x6d\x69\x74']=_0x5b2650,_0x33be11[_0x5ce74f(0x20e,'\x6b\x36\x31\x75')+'\x66\x79\x56\x65\x72\x69\x66\x79'+_0x5ce74f(0x2d0,'\x39\x28\x71\x2a')]=_0x39ca84,_0x33be11[_0x5ce74f(0x210,'\x59\x74\x4e\x46')+_0x5ce74f(0x32e,'\x33\x21\x64\x71')+_0x5ce74f(0x2be,'\x5b\x6d\x45\x70')]=_0x4baa4c,_0x33be11[_0x5ce74f(0x368,'\x59\x4e\x45\x6d')+_0x5ce74f(0x375,'\x67\x5b\x40\x45')+'\x69\x66\x79\x54\x73']=_0x20da8d,module[_0x5ce74f(0x2fc,'\x35\x50\x73\x75')]=_0x33be11;
1
+ const crypto = require('crypto');
2
+ const fs = require('fs');
3
+ const path = require('path');
4
+ const { hubFetch } = require('./hubFetch');
5
+ const { withFileLock } = require('./assetStore');
6
+
7
+ function hmacSha256(key, data) {
8
+ return crypto.createHmac('sha256', key).update(data).digest('hex');
9
+ }
10
+
11
+ function hashCompact(input) {
12
+ return crypto.createHash('sha256').update(String(input || '')).digest('hex').slice(0, 16);
13
+ }
14
+
15
+ function buildRequestPayload({ geneId, signals, mutation }) {
16
+ let nodeSecret = null;
17
+ try {
18
+ nodeSecret = require('./a2aProtocol').getHubNodeSecret();
19
+ } catch (e) {}
20
+ if (!nodeSecret) return null;
21
+
22
+ let nodeId = null;
23
+ try {
24
+ nodeId = require('./a2aProtocol').getNodeId();
25
+ } catch (e) {}
26
+ if (!nodeId) return null;
27
+
28
+ const secretHash = crypto.createHash('sha256').update(nodeSecret).digest('hex');
29
+
30
+ const ts = Date.now();
31
+ const signalsHash = hashCompact(JSON.stringify(Array.isArray(signals) ? signals.slice(0, 8) : []));
32
+ const mutationHash = hashCompact(JSON.stringify(mutation || {}));
33
+
34
+ const challengeData = [nodeId, geneId || '', signalsHash, mutationHash, String(ts)].join('|');
35
+ const clientSignature = hmacSha256(secretHash, challengeData);
36
+
37
+ return {
38
+ nodeId,
39
+ nodeSecret,
40
+ body: {
41
+ sender_id: nodeId,
42
+ gene_id: geneId || '',
43
+ signals_hash: signalsHash,
44
+ mutation_hash: mutationHash,
45
+ ts: ts,
46
+ client_signature: clientSignature,
47
+ },
48
+ };
49
+ }
50
+
51
+
52
+ function requestSolidifyPermit({ geneId, signals, mutation }) {
53
+ const hubUrl = (process.env.A2A_HUB_URL || '').replace(/\/+$/, '');
54
+ if (!hubUrl) return Promise.resolve({ ok: false, error: 'no_hub_url', offline: true });
55
+
56
+ const req = buildRequestPayload({ geneId, signals, mutation });
57
+ if (!req) return Promise.resolve({ ok: false, error: 'no_credentials', offline: true });
58
+
59
+ const endpoint = hubUrl + '/a2a/verify-solidify';
60
+ const timeoutMs = require('../config').HTTP_TRANSPORT_TIMEOUT_MS || 10000;
61
+
62
+ const headers = {
63
+ 'Content-Type': 'application/json',
64
+ 'Authorization': 'Bearer ' + req.nodeSecret,
65
+ };
66
+
67
+ return hubFetch(endpoint, {
68
+ method: 'POST',
69
+ headers: headers,
70
+ body: JSON.stringify(req.body),
71
+ signal: AbortSignal.timeout(timeoutMs),
72
+ })
73
+ .then(function (res) {
74
+ // Any non-5xx response proves the hub's application layer answered, so
75
+ // the daemon is not actually offline — refresh lastOnlineVerify even on
76
+ // 4xx and on 2xx envelopes that report ok=false. Previously this only
77
+ // fired in the {ok:true} success branch, so a long streak of envelope
78
+ // errors (quota_exceeded, rate_limited, validation) or 4xx responses
79
+ // (bad auth, forbidden) would let the offline-duration counter run
80
+ // past MAX_OFFLINE_DURATION_MS (7d) and falsely block consumeOfflinePermit
81
+ // with offline_duration_exceeded. 5xx is left out — it can be a CDN /
82
+ // load balancer up while the hub itself is down, so the conservative
83
+ // "treat as offline" semantic is preserved there.
84
+ if (res.status < 500) {
85
+ recordLastOnlineVerify();
86
+ }
87
+ if (!res.ok) {
88
+ return res.text().then(function (t) {
89
+ // 5xx = hub/infra down → treat as offline so consumeOfflinePermit fires.
90
+ // 4xx = explicit rejection (bad auth, quota exceeded) → not offline.
91
+ const offline = res.status >= 500;
92
+ return { ok: false, error: 'HTTP ' + res.status + ': ' + t.slice(0, 200), offline };
93
+ });
94
+ }
95
+ return res.json().then(function (result) {
96
+ if (result && result.ok && result.offline_token) {
97
+ cacheOfflineToken(result.offline_token);
98
+ }
99
+ return result;
100
+ });
101
+ })
102
+ .catch(function (err) {
103
+ return { ok: false, error: err.message, offline: true };
104
+ });
105
+ }
106
+
107
+ // --- Offline token management ---
108
+
109
+ var _OFFLINE_TOKEN_FILE = null;
110
+ var _LAST_VERIFY_FILE = null;
111
+
112
+ function getMemDir() {
113
+ try {
114
+ return require('./paths').getMemoryDir();
115
+ } catch (e) {
116
+ try {
117
+ return path.join(require('./paths').getRepoRoot(), '.evolver', 'memory');
118
+ } catch (e2) {
119
+ return path.join(process.cwd(), '.evolver', 'memory');
120
+ }
121
+ }
122
+ }
123
+
124
+ function offlineTokenPath() {
125
+ if (!_OFFLINE_TOKEN_FILE) {
126
+ _OFFLINE_TOKEN_FILE = path.join(getMemDir(), '.ot');
127
+ }
128
+ return _OFFLINE_TOKEN_FILE;
129
+ }
130
+
131
+ function lastVerifyPath() {
132
+ if (!_LAST_VERIFY_FILE) {
133
+ _LAST_VERIFY_FILE = path.join(getMemDir(), '.lv');
134
+ }
135
+ return _LAST_VERIFY_FILE;
136
+ }
137
+
138
+ // Offline token integrity (C2): the .ot file is an anti-tamper quota counter,
139
+ // not a credential — encryption is the wrong primitive. Sign the token with
140
+ // HMAC-SHA256 keyed off nodeSecret instead. A cloned install carries a stale
141
+ // secret-signed token; HMAC verification fails on the first offline read and
142
+ // the token is rejected. Online verification rotates the secret, so legit
143
+ // re-issuance is automatic.
144
+ function getNodeSecret() {
145
+ // Env var first — matches a2aProtocol.getHubNodeSecret() priority and lets
146
+ // the HMAC path work in environments where a2aProtocol can't be required.
147
+ if (process.env.A2A_NODE_SECRET) return process.env.A2A_NODE_SECRET;
148
+ try { return require('./a2aProtocol').getHubNodeSecret() || null; } catch (e) { return null; }
149
+ }
150
+
151
+ function cacheOfflineToken(token) {
152
+ try {
153
+ const nodeSecret = getNodeSecret();
154
+ if (!nodeSecret) return;
155
+ const dir = path.dirname(offlineTokenPath());
156
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
157
+ // HMAC stability: token field names must NOT be integer-like strings.
158
+ // V8's JSON.stringify sorts integer-keyed properties numerically while
159
+ // preserving insertion order for non-integer keys; an all-digit field
160
+ // would re-order between cache and load and break verification.
161
+ const data = JSON.stringify(token);
162
+ const hmac = hmacSha256(nodeSecret, data);
163
+ fs.writeFileSync(offlineTokenPath(), JSON.stringify({ data: token, hmac }), 'utf8');
164
+ } catch (e) {}
165
+ }
166
+
167
+ function loadOfflineToken() {
168
+ try {
169
+ if (!fs.existsSync(offlineTokenPath())) return null;
170
+ const stored = JSON.parse(fs.readFileSync(offlineTokenPath(), 'utf8'));
171
+ if (!stored || !stored.data || typeof stored.hmac !== 'string') return null;
172
+ const nodeSecret = getNodeSecret();
173
+ if (!nodeSecret) return null;
174
+ const expected = hmacSha256(nodeSecret, JSON.stringify(stored.data));
175
+ // Hex-encode the HMAC bytes for comparison: 32-byte buffers, not 64-byte
176
+ // ASCII representations. Length pre-check guards timingSafeEqual which
177
+ // throws on mismatched lengths.
178
+ const expBuf = Buffer.from(expected, 'hex');
179
+ const gotBuf = Buffer.from(stored.hmac, 'hex');
180
+ if (expBuf.length !== gotBuf.length || !crypto.timingSafeEqual(expBuf, gotBuf)) {
181
+ return null;
182
+ }
183
+ return stored.data;
184
+ } catch (e) {
185
+ return null;
186
+ }
187
+ }
188
+
189
+ function recordLastOnlineVerify() {
190
+ try {
191
+ const dir = path.dirname(lastVerifyPath());
192
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
193
+ fs.writeFileSync(lastVerifyPath(), String(Date.now()), 'utf8');
194
+ } catch (e) {}
195
+ }
196
+
197
+ function getLastOnlineVerifyTs() {
198
+ try {
199
+ if (!fs.existsSync(lastVerifyPath())) return 0;
200
+ return parseInt(fs.readFileSync(lastVerifyPath(), 'utf8'), 10) || 0;
201
+ } catch (e) {
202
+ return 0;
203
+ }
204
+ }
205
+
206
+ var MAX_OFFLINE_SOLIDIFIES = 10;
207
+ var MAX_OFFLINE_DURATION_MS = 7 * 24 * 60 * 60 * 1000;
208
+ var MAX_CLOCK_DRIFT_MS = 24 * 60 * 60 * 1000;
209
+
210
+ // The offline-permit pipeline is `loadOfflineToken → check cap →
211
+ // cacheOfflineToken` (read → check → write). Within a single Node process
212
+ // the chain is synchronous so no intra-process race, but two cooperating
213
+ // processes (daemon + CLI `evolver solidify`) hitting the path at the same
214
+ // moment could both read the same `usedCount`, both pass the cap check,
215
+ // and both increment-and-write — the local counter then trailed reality
216
+ // and the offline quota could be exceeded by N for N concurrent callers.
217
+ // Hub-side enforcement catches this on the next online verify, but the
218
+ // audit posture is wrong locally.
219
+ //
220
+ // Reuse `withFileLock` from assetStore.js — same `src/gep/` directory,
221
+ // already battle-tested for multi-process read-modify-write of memory-dir
222
+ // files, and uses PID-liveness (`process.kill(pid, 0)`) for stale
223
+ // detection plus an Atomics-or-busy-wait fallback for the retry sleep.
224
+ // withFileLock throws on acquire timeout; we map that to a specific
225
+ // `offline_permit_busy` result so callers (daemon heartbeat / CLI
226
+ // solidify) can distinguish "contended" from "permit denied" and retry
227
+ // next cycle.
228
+ function consumeOfflinePermit() {
229
+ // Ensure the memory directory exists before withFileLock tries to
230
+ // create `<memDir>/.ot.lock`. Pre-refactor, the function always
231
+ // returned a structured envelope (loadOfflineToken / cacheOfflineToken
232
+ // both swallow errors internally); after the refactor a fresh install
233
+ // without the memory dir would throw ENOENT from _acquireLock and
234
+ // bubble past the Lock-timeout catch below, breaking the never-throw
235
+ // contract (Bugbot PR #157 R2 Low).
236
+ try {
237
+ var dir = path.dirname(offlineTokenPath());
238
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
239
+ } catch (_) { /* fall through — caught by the wrapper below */ }
240
+
241
+ try {
242
+ return withFileLock(offlineTokenPath(), function () {
243
+ var token = loadOfflineToken();
244
+ if (!token) return { ok: false, error: 'no_offline_token', offline: true };
245
+
246
+ var maxSolidifies = token.maxOfflineSolidifies || MAX_OFFLINE_SOLIDIFIES;
247
+ var expiresAt = token.expiresAt || 0;
248
+ var usedCount = token.usedCount || 0;
249
+ var now = Date.now();
250
+
251
+ var lastOnline = getLastOnlineVerifyTs();
252
+ if (lastOnline > 0 && now < lastOnline - MAX_CLOCK_DRIFT_MS) {
253
+ return { ok: false, error: 'clock_drift_detected', offline: true };
254
+ }
255
+
256
+ if (expiresAt > 0 && now > expiresAt) {
257
+ return { ok: false, error: 'offline_token_expired', offline: true };
258
+ }
259
+
260
+ if (lastOnline > 0 && (now - lastOnline) > MAX_OFFLINE_DURATION_MS) {
261
+ return { ok: false, error: 'offline_duration_exceeded', offline: true };
262
+ }
263
+
264
+ if (usedCount >= maxSolidifies) {
265
+ return { ok: false, error: 'offline_quota_exhausted', offline: true };
266
+ }
267
+
268
+ token.usedCount = usedCount + 1;
269
+ cacheOfflineToken(token);
270
+ return { ok: true, offline: true, remaining: maxSolidifies - token.usedCount };
271
+ });
272
+ } catch (e) {
273
+ // Preserve the "always returns a structured envelope" contract that
274
+ // the pre-refactor consumeOfflinePermit had (loadOfflineToken and
275
+ // cacheOfflineToken both swallowed FS errors internally).
276
+ //
277
+ // - "Lock timeout" → another process holds the lock past the
278
+ // acquire deadline. Surface as busy so the caller's heartbeat
279
+ // loop can retry on the next cycle.
280
+ // - Any other error (ENOENT/EACCES on the lock file, FS misconfig)
281
+ // → report as offline_lock_failed with the original message
282
+ // truncated. The daemon's solidify.js call site treats !ok as
283
+ // a recoverable hint, not a crash trigger.
284
+ var msg = (e && e.message) || String(e);
285
+ if (msg.indexOf('Lock timeout') !== -1) {
286
+ return { ok: false, error: 'offline_permit_busy', offline: true };
287
+ }
288
+ return { ok: false, error: 'offline_lock_failed', offline: true, detail: msg.slice(0, 200) };
289
+ }
290
+ }
291
+
292
+ function isSolidifyVerifyEnabled() {
293
+ if (process.env.NODE_ENV === 'test') {
294
+ var v = (process.env.EVOLVER_SOLIDIFY_VERIFY || '').toLowerCase();
295
+ if (v === 'false' || v === '0' || v === 'off') return false;
296
+ }
297
+ var hubUrl = process.env.A2A_HUB_URL || '';
298
+ return !!hubUrl;
299
+ }
300
+
301
+ module.exports = {
302
+ requestSolidifyPermit,
303
+ isSolidifyVerifyEnabled,
304
+ consumeOfflinePermit,
305
+ getLastOnlineVerifyTs,
306
+ };