@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,207 @@
1
- const _0x482182=_0x2e56;function _0xb759(){const _0x1f0851=['\x57\x51\x74\x64\x4d\x5a\x65\x42\x57\x50\x71','\x57\x52\x4e\x63\x53\x78\x5a\x64\x47\x66\x46\x63\x51\x38\x6f\x55\x57\x37\x69','\x42\x53\x6b\x77\x57\x51\x7a\x6f','\x57\x34\x6d\x7a\x57\x34\x47\x50\x6f\x4a\x79','\x57\x4f\x56\x63\x4c\x4d\x46\x63\x4a\x77\x2f\x63\x56\x43\x6f\x33\x57\x37\x75','\x57\x37\x46\x63\x55\x38\x6f\x2b\x63\x38\x6b\x4b\x57\x52\x33\x64\x4a\x62\x75','\x57\x35\x43\x7a\x57\x35\x30\x35\x70\x71\x46\x63\x52\x78\x57','\x70\x61\x4e\x63\x56\x65\x74\x64\x4c\x77\x6d\x6a\x57\x50\x68\x64\x53\x53\x6b\x68\x57\x4f\x48\x70','\x57\x50\x4e\x63\x48\x4a\x37\x63\x4f\x38\x6b\x51','\x6f\x73\x74\x64\x54\x62\x68\x64\x50\x57','\x57\x52\x5a\x63\x56\x6d\x6f\x49\x57\x51\x6c\x64\x4a\x61','\x57\x34\x58\x37\x57\x51\x46\x64\x54\x66\x47\x6b\x45\x6d\x6f\x4c','\x57\x4f\x78\x63\x49\x49\x37\x64\x54\x47','\x57\x34\x38\x66\x41\x43\x6b\x64','\x57\x52\x33\x64\x47\x6d\x6f\x38\x57\x36\x69\x67\x57\x37\x4e\x64\x4c\x71','\x57\x51\x57\x72\x78\x67\x37\x64\x4a\x71','\x57\x4f\x4f\x48\x57\x51\x74\x63\x4d\x75\x53\x2f\x46\x6d\x6f\x4a','\x57\x52\x4e\x63\x4c\x53\x6f\x7a\x57\x37\x56\x63\x51\x53\x6b\x4a','\x76\x43\x6b\x34\x57\x50\x44\x4b\x7a\x53\x6b\x76\x57\x51\x64\x64\x4a\x61','\x61\x74\x79\x6c\x46\x4b\x75\x51\x57\x34\x56\x64\x54\x57','\x69\x5a\x68\x64\x55\x61\x64\x64\x4c\x57','\x79\x59\x64\x63\x49\x6d\x6f\x6e\x79\x47','\x57\x50\x4e\x63\x4d\x74\x4a\x64\x4e\x76\x71','\x78\x32\x64\x63\x52\x71\x4f\x42\x67\x71','\x57\x52\x65\x39\x57\x52\x70\x64\x4b\x4b\x44\x32','\x57\x50\x4a\x63\x4e\x49\x30','\x57\x51\x4a\x63\x4f\x43\x6f\x44\x57\x37\x2f\x63\x4f\x6d\x6b\x55\x57\x51\x71','\x57\x50\x33\x63\x4a\x4b\x31\x38\x62\x4e\x31\x6d\x57\x36\x30','\x57\x52\x47\x64\x72\x63\x4c\x35\x57\x52\x39\x41\x57\x35\x34','\x44\x6d\x6b\x41\x41\x6d\x6f\x55\x57\x51\x71\x70\x57\x51\x47\x43','\x57\x4f\x78\x64\x51\x43\x6b\x6a\x69\x63\x65','\x57\x36\x35\x36\x74\x33\x64\x63\x48\x63\x46\x64\x51\x73\x30','\x57\x37\x75\x56\x57\x37\x50\x38\x76\x47','\x67\x38\x6f\x6e\x44\x43\x6f\x6f\x57\x51\x79','\x57\x50\x70\x63\x4f\x6d\x6f\x4f\x57\x36\x52\x63\x4e\x71','\x57\x36\x46\x64\x50\x59\x68\x64\x4d\x61\x56\x64\x4f\x6d\x6f\x51\x57\x36\x37\x64\x4a\x6d\x6b\x4b\x57\x34\x72\x52','\x6c\x64\x4e\x64\x55\x31\x56\x64\x4c\x57','\x57\x50\x75\x42\x7a\x48\x72\x47','\x57\x36\x50\x6f\x43\x57\x35\x35','\x57\x34\x6e\x69\x6f\x72\x58\x67\x67\x53\x6f\x2f\x70\x71','\x57\x4f\x64\x63\x49\x5a\x56\x63\x50\x47','\x57\x37\x58\x77\x45\x43\x6f\x71\x57\x34\x53','\x57\x51\x64\x64\x52\x74\x57\x2f','\x57\x50\x56\x63\x4d\x63\x78\x64\x53\x4b\x4b','\x62\x43\x6f\x4a\x45\x38\x6f\x36\x57\x34\x71','\x57\x52\x4a\x63\x4f\x65\x70\x63\x56\x43\x6f\x65','\x57\x4f\x69\x77\x57\x51\x68\x64\x54\x4e\x38','\x57\x37\x58\x66\x62\x49\x5a\x63\x49\x47\x71\x6d\x57\x36\x52\x64\x4b\x53\x6b\x62\x57\x50\x78\x64\x54\x38\x6f\x67','\x74\x53\x6f\x2b\x73\x6d\x6f\x2f\x57\x36\x69','\x57\x37\x74\x63\x48\x62\x68\x64\x54\x53\x6f\x73\x57\x34\x37\x64\x51\x6d\x6f\x6f','\x57\x50\x33\x63\x49\x4a\x2f\x64\x47\x75\x6d\x6b\x57\x35\x4e\x63\x4b\x47','\x71\x33\x71\x38\x79\x61','\x75\x72\x68\x64\x4d\x38\x6b\x32','\x6c\x38\x6f\x34\x71\x38\x6f\x51\x57\x50\x75','\x6c\x4e\x43\x6d','\x66\x53\x6f\x6f\x57\x51\x4c\x7a\x44\x61','\x57\x52\x70\x63\x4e\x53\x6f\x37\x57\x35\x5a\x63\x49\x47','\x57\x50\x4e\x63\x49\x53\x6f\x77\x57\x36\x4f','\x6b\x38\x6f\x31\x57\x35\x38\x39\x78\x6d\x6f\x72\x71\x53\x6b\x42','\x57\x4f\x38\x53\x57\x51\x52\x63\x47\x30\x4b','\x6e\x38\x6f\x49\x57\x35\x6e\x69\x46\x47','\x57\x34\x66\x4f\x76\x48\x66\x65','\x57\x50\x78\x63\x4d\x78\x42\x63\x51\x4e\x43','\x57\x34\x2f\x64\x4e\x59\x2f\x64\x56\x30\x75\x67\x57\x34\x68\x63\x4e\x61','\x63\x71\x70\x64\x4b\x33\x64\x64\x4c\x71','\x44\x62\x33\x63\x49\x43\x6f\x66\x43\x57','\x57\x34\x68\x63\x48\x38\x6f\x75\x57\x50\x2f\x64\x4f\x61','\x74\x43\x6b\x45\x75\x53\x6f\x64\x57\x52\x4b','\x57\x37\x46\x63\x47\x58\x78\x64\x54\x6d\x6f\x43\x57\x34\x33\x64\x52\x57','\x79\x4a\x5a\x63\x4e\x43\x6f\x4f\x44\x57','\x57\x36\x43\x42\x7a\x43\x6b\x71\x6b\x47','\x7a\x33\x5a\x63\x53\x57\x47','\x57\x4f\x37\x64\x54\x74\x43\x66\x57\x52\x4b','\x73\x43\x6b\x6c\x74\x67\x6d\x47\x6f\x67\x57','\x76\x4d\x5a\x64\x4d\x58\x78\x63\x54\x71','\x57\x52\x4e\x63\x4e\x38\x6f\x72\x57\x36\x52\x63\x52\x61','\x57\x52\x57\x68\x57\x4f\x34\x63\x57\x36\x71\x31\x57\x51\x70\x63\x53\x57','\x57\x35\x47\x70\x57\x36\x47\x4f\x6a\x5a\x4e\x63\x53\x71','\x6b\x64\x2f\x64\x55\x47\x2f\x64\x48\x47','\x6f\x74\x70\x64\x55\x48\x46\x64\x54\x32\x47','\x76\x77\x52\x63\x53\x75\x30','\x57\x52\x4a\x64\x54\x38\x6b\x66\x66\x47','\x6c\x6d\x6f\x66\x46\x53\x6f\x4f\x57\x52\x71','\x57\x51\x37\x63\x52\x43\x6f\x2b\x57\x51\x56\x64\x50\x57','\x78\x6d\x6b\x62\x42\x31\x71\x6f','\x57\x52\x38\x46\x44\x71','\x57\x50\x56\x63\x4e\x72\x56\x64\x53\x30\x75','\x57\x50\x57\x69\x57\x37\x79\x43\x57\x4f\x69','\x45\x49\x56\x63\x49\x43\x6f\x79','\x57\x50\x4a\x63\x4c\x53\x6f\x6e\x57\x37\x52\x63\x52\x6d\x6f\x52\x57\x52\x37\x63\x56\x57','\x57\x52\x61\x6c\x57\x50\x6d\x75\x57\x37\x72\x4d\x57\x4f\x6c\x63\x52\x57','\x57\x4f\x78\x63\x55\x38\x6f\x65\x57\x50\x5a\x64\x51\x47','\x6f\x33\x6d\x66\x69\x78\x57','\x57\x36\x6a\x33\x74\x58\x66\x71','\x57\x51\x56\x63\x52\x53\x6b\x54\x68\x53\x6f\x2b\x57\x51\x38','\x42\x53\x6b\x6c\x72\x4d\x47\x55\x69\x77\x54\x6f','\x79\x6d\x6b\x62\x57\x50\x76\x58\x45\x57','\x57\x51\x56\x63\x52\x38\x6b\x56\x63\x43\x6f\x55\x57\x51\x2f\x64\x4a\x61','\x57\x51\x52\x63\x56\x38\x6b\x36\x61\x38\x6f\x55\x57\x51\x56\x64\x4d\x47\x69','\x63\x38\x6f\x39\x57\x50\x7a\x57\x46\x38\x6b\x74\x57\x50\x5a\x64\x4d\x61','\x6d\x6d\x6b\x43\x57\x4f\x6c\x64\x47\x38\x6f\x42\x57\x35\x43','\x57\x34\x58\x37\x57\x51\x46\x63\x54\x75\x4f\x2f\x46\x53\x6f\x6a','\x77\x6d\x6b\x67\x61\x73\x34\x48\x69\x4e\x7a\x7a','\x76\x43\x6b\x68\x72\x73\x79\x55\x70\x4d\x53\x72','\x6f\x38\x6f\x6e\x57\x4f\x66\x41\x72\x61','\x57\x52\x74\x63\x49\x49\x4e\x64\x54\x4c\x34\x44\x57\x34\x42\x63\x47\x71','\x6e\x53\x6f\x37\x57\x51\x66\x48\x75\x57','\x57\x34\x44\x53\x44\x6d\x6f\x55\x57\x37\x65\x33','\x57\x36\x37\x63\x56\x64\x33\x64\x4d\x38\x6f\x57','\x57\x37\x57\x41\x57\x36\x62\x37\x71\x43\x6b\x4c\x63\x33\x34','\x57\x34\x38\x41\x57\x34\x7a\x51\x44\x71','\x57\x52\x37\x63\x49\x53\x6f\x51\x57\x37\x65','\x57\x52\x30\x2b\x45\x67\x70\x63\x51\x64\x78\x64\x4c\x47\x71','\x41\x6d\x6f\x52\x45\x43\x6f\x66\x57\x34\x71\x5a\x74\x38\x6f\x2b','\x57\x34\x53\x6e\x57\x34\x6d\x47\x61\x47','\x6d\x53\x6b\x74\x57\x50\x42\x64\x4c\x53\x6f\x54','\x44\x53\x6b\x54\x74\x38\x6f\x47\x57\x52\x71','\x57\x51\x79\x4b\x41\x73\x76\x67','\x57\x4f\x6c\x63\x53\x6d\x6f\x41\x57\x35\x37\x63\x50\x47','\x57\x4f\x78\x64\x4b\x6d\x6f\x41\x57\x35\x34\x58','\x57\x37\x52\x63\x4d\x43\x6f\x70\x57\x51\x37\x64\x4f\x65\x5a\x63\x4c\x77\x4b','\x57\x52\x35\x71\x79\x32\x62\x4b\x57\x51\x6e\x6e\x57\x35\x47','\x57\x50\x50\x74\x70\x53\x6f\x6e\x76\x38\x6f\x49\x57\x34\x37\x63\x4c\x38\x6f\x56\x57\x35\x78\x64\x47\x6d\x6b\x6c','\x57\x35\x61\x71\x57\x35\x53\x2f\x6e\x64\x5a\x63\x53\x76\x65','\x6a\x6d\x6b\x65\x57\x4f\x4a\x63\x54\x57','\x57\x4f\x61\x61\x76\x6d\x6b\x78\x44\x47','\x57\x37\x34\x74\x79\x38\x6b\x7a','\x57\x36\x37\x64\x53\x43\x6f\x6e\x6e\x53\x6b\x2f\x61\x74\x68\x63\x52\x71','\x57\x37\x68\x64\x55\x38\x6f\x44\x6e\x53\x6b\x4a\x6e\x71','\x43\x49\x2f\x63\x48\x6d\x6f\x69\x45\x61','\x63\x38\x6f\x35\x57\x4f\x58\x34\x46\x6d\x6b\x72','\x57\x52\x47\x68\x76\x73\x71','\x57\x51\x68\x64\x52\x43\x6b\x6f\x66\x74\x6a\x62\x57\x4f\x78\x63\x48\x71','\x73\x43\x6b\x42\x57\x36\x5a\x63\x54\x4a\x7a\x34\x6b\x6d\x6f\x48','\x57\x37\x30\x46\x57\x36\x4f','\x57\x51\x68\x64\x54\x38\x6b\x45\x64\x61','\x46\x65\x47\x79\x43\x4c\x6d','\x57\x52\x52\x63\x50\x53\x6f\x69\x57\x37\x56\x63\x4b\x57','\x57\x51\x68\x64\x52\x6d\x6b\x6e\x64\x63\x35\x67','\x57\x51\x79\x51\x57\x51\x64\x64\x4a\x4c\x4f','\x6d\x6d\x6f\x4b\x57\x35\x50\x50\x73\x6d\x6f\x72','\x57\x34\x62\x53\x43\x6d\x6f\x2b','\x79\x38\x6f\x38\x57\x35\x6a\x5a\x77\x6d\x6b\x6b\x71\x53\x6f\x78','\x57\x34\x6d\x66\x75\x53\x6b\x69\x62\x6d\x6b\x56\x57\x35\x42\x63\x47\x61','\x57\x51\x4e\x64\x53\x74\x30\x4c\x57\x51\x54\x48\x57\x51\x47','\x77\x6d\x6b\x76\x46\x63\x79\x43\x6f\x68\x4f\x7a','\x57\x35\x6d\x6d\x57\x51\x35\x55\x76\x6d\x6b\x37\x65\x5a\x4f','\x57\x34\x44\x54\x44\x53\x6f\x35\x57\x36\x65\x33\x57\x50\x69','\x6e\x43\x6f\x48\x57\x52\x66\x64\x79\x71','\x57\x52\x5a\x63\x4d\x53\x6f\x78\x57\x36\x78\x63\x51\x6d\x6b\x2f\x57\x52\x52\x63\x56\x57','\x57\x37\x64\x63\x48\x53\x6f\x76\x57\x51\x5a\x64\x56\x65\x42\x64\x4e\x67\x4b','\x67\x38\x6f\x42\x45\x6d\x6f\x72\x57\x51\x52\x63\x4b\x4d\x79\x44','\x57\x35\x69\x34\x57\x36\x30\x55\x63\x53\x6b\x59\x78\x43\x6f\x67','\x57\x51\x65\x77\x78\x78\x56\x64\x4a\x76\x71','\x42\x43\x6f\x4c\x57\x51\x74\x63\x50\x68\x57','\x46\x66\x64\x64\x56\x47\x74\x63\x47\x4a\x75\x35','\x57\x37\x30\x46\x57\x35\x34\x4c\x69\x6d\x6b\x59\x74\x57','\x43\x38\x6b\x7a\x75\x53\x6f\x35\x57\x52\x6d','\x57\x37\x6e\x2f\x61\x53\x6f\x48\x6a\x65\x33\x63\x55\x67\x53\x6e\x57\x36\x71\x67','\x6e\x6d\x6f\x48\x45\x53\x6f\x62\x57\x34\x4f','\x79\x43\x6b\x66\x73\x38\x6f\x32\x57\x52\x38\x66\x57\x51\x43\x70','\x57\x51\x74\x63\x52\x4e\x2f\x63\x55\x43\x6f\x34','\x57\x34\x65\x70\x79\x38\x6b\x44\x66\x43\x6b\x59','\x57\x51\x2f\x64\x49\x6d\x6f\x4e\x57\x36\x30\x55\x57\x52\x5a\x63\x48\x57','\x57\x34\x64\x64\x4c\x65\x44\x4b\x64\x75\x39\x44\x57\x37\x57','\x57\x51\x4e\x63\x50\x4b\x52\x63\x54\x4c\x4b','\x43\x77\x71\x55\x45\x4e\x47\x76\x57\x52\x30','\x57\x36\x57\x65\x57\x36\x54\x4a','\x70\x6d\x6f\x51\x57\x52\x50\x4b\x72\x57','\x57\x35\x46\x64\x48\x62\x38\x50','\x57\x34\x48\x41\x72\x71\x39\x69\x41\x43\x6f\x7a\x69\x57','\x57\x51\x6c\x64\x52\x73\x71\x4c\x57\x4f\x4f','\x57\x51\x57\x64\x71\x33\x64\x64\x47\x61','\x57\x52\x70\x64\x55\x38\x6b\x49\x6b\x48\x4f','\x6d\x38\x6f\x65\x41\x38\x6f\x43','\x6e\x43\x6f\x74\x79\x38\x6f\x63\x57\x37\x31\x51','\x57\x51\x46\x63\x56\x58\x56\x63\x53\x6d\x6b\x48','\x57\x37\x4a\x64\x4d\x66\x44\x37\x69\x61','\x6b\x63\x56\x64\x55\x48\x64\x64\x54\x47','\x6d\x6d\x6f\x38\x57\x35\x6a\x2b\x77\x61','\x69\x53\x6f\x62\x78\x43\x6f\x64\x57\x37\x44\x55\x57\x52\x46\x63\x4f\x47','\x57\x52\x37\x63\x4a\x74\x74\x64\x53\x43\x6b\x50\x66\x6d\x6b\x4b\x57\x35\x65','\x57\x4f\x2f\x63\x4b\x4b\x78\x63\x4c\x43\x6f\x6a\x57\x51\x74\x64\x55\x66\x61','\x6b\x53\x6f\x4a\x57\x37\x50\x56\x74\x38\x6f\x64\x73\x61','\x57\x52\x61\x53\x57\x51\x64\x64\x49\x65\x7a\x2f','\x57\x51\x47\x6c\x77\x4d\x2f\x64\x4a\x75\x39\x53\x57\x36\x65','\x67\x4b\x57\x78\x6a\x4e\x69','\x45\x66\x78\x64\x4d\x48\x70\x63\x4f\x61','\x44\x4b\x46\x64\x4b\x59\x2f\x63\x48\x71','\x43\x49\x4b\x79\x6c\x30\x47','\x57\x37\x38\x6b\x57\x35\x43\x38\x66\x57','\x74\x38\x6b\x68\x71\x68\x75\x47\x69\x57','\x44\x38\x6b\x79\x45\x67\x6d\x4c','\x6f\x53\x6f\x6b\x71\x53\x6f\x57\x57\x50\x53','\x76\x6d\x6b\x62\x57\x37\x52\x63\x48\x64\x44\x35\x61\x53\x6f\x6c','\x42\x53\x6f\x5a\x71\x53\x6f\x69','\x57\x34\x4b\x43\x57\x36\x54\x34\x62\x6d\x6b\x54\x65\x63\x65','\x57\x35\x4f\x68\x57\x37\x58\x47\x76\x47','\x57\x52\x52\x64\x47\x6d\x6f\x30\x57\x36\x69\x4a\x57\x37\x57','\x76\x53\x6f\x75\x75\x38\x6f\x70\x57\x37\x38\x4c\x74\x43\x6f\x34','\x75\x77\x5a\x63\x4a\x71\x65\x47','\x69\x43\x6b\x45\x57\x36\x37\x64\x53\x47','\x57\x52\x43\x7a\x42\x49\x76\x4b','\x57\x52\x68\x63\x51\x4e\x56\x63\x47\x66\x6d','\x57\x51\x68\x63\x51\x4b\x74\x63\x4c\x4c\x79','\x57\x34\x6c\x64\x4c\x78\x6e\x57\x64\x57','\x72\x33\x68\x64\x50\x5a\x5a\x63\x52\x47','\x57\x52\x64\x63\x51\x53\x6f\x69\x57\x36\x52\x63\x4d\x57','\x41\x30\x47\x78\x73\x75\x75','\x79\x59\x56\x63\x4b\x43\x6f\x79\x46\x38\x6b\x2b','\x43\x59\x57\x6b\x65\x67\x61','\x57\x34\x48\x6a\x6f\x48\x31\x74\x42\x38\x6b\x75\x6f\x71','\x57\x37\x75\x65\x57\x36\x7a\x4c\x42\x57','\x57\x37\x4f\x66\x57\x37\x53\x56\x70\x43\x6b\x4b\x77\x61','\x57\x4f\x2f\x63\x4b\x30\x42\x63\x4a\x6d\x6f\x76\x57\x51\x6d','\x57\x34\x74\x63\x4b\x74\x5a\x63\x4f\x71','\x6e\x33\x4b\x46\x57\x51\x46\x63\x4e\x47','\x57\x51\x47\x58\x77\x77\x56\x64\x51\x57','\x57\x50\x5a\x63\x4a\x62\x5a\x64\x52\x65\x6d\x6f\x57\x35\x79','\x57\x50\x53\x74\x57\x4f\x79\x63\x57\x36\x72\x4d\x57\x4f\x6c\x63\x51\x57','\x57\x4f\x47\x53\x57\x4f\x56\x64\x52\x4e\x47','\x57\x35\x4f\x4d\x57\x37\x44\x48\x72\x57','\x57\x34\x7a\x39\x44\x6d\x6f\x2b\x57\x34\x69\x54\x57\x4f\x30\x31','\x57\x52\x74\x63\x4e\x74\x6c\x64\x52\x65\x75\x51\x57\x35\x33\x63\x49\x71','\x44\x67\x64\x63\x52\x71\x48\x76\x75\x71','\x42\x38\x6b\x2b\x57\x51\x58\x42\x42\x61','\x57\x51\x74\x63\x49\x38\x6f\x34\x57\x51\x52\x64\x47\x47\x4a\x64\x4f\x71','\x57\x34\x6d\x69\x73\x38\x6b\x78\x66\x71','\x57\x34\x68\x64\x48\x65\x72\x36\x63\x31\x75','\x57\x52\x43\x5a\x71\x53\x6b\x37\x46\x65\x56\x63\x54\x4b\x4b','\x64\x67\x65\x44\x57\x51\x42\x63\x4e\x57','\x57\x50\x57\x76\x71\x6d\x6b\x52\x72\x71','\x57\x37\x4a\x63\x4b\x6d\x6f\x76\x57\x52\x4e\x64\x51\x65\x33\x63\x4d\x71','\x57\x35\x53\x64\x79\x53\x6b\x77\x61\x6d\x6b\x55\x57\x34\x5a\x63\x49\x47','\x6d\x33\x43\x76\x6a\x32\x52\x64\x47\x53\x6b\x4b\x57\x35\x65','\x45\x31\x53\x4a\x78\x68\x69','\x41\x43\x6f\x77\x57\x52\x68\x63\x53\x30\x33\x64\x47\x53\x6f\x73\x70\x47','\x57\x51\x79\x55\x57\x37\x61\x64\x57\x4f\x70\x63\x48\x71','\x7a\x43\x6f\x65\x57\x35\x37\x63\x55\x43\x6b\x61\x57\x4f\x4e\x64\x4d\x67\x4e\x64\x48\x4a\x53\x76\x7a\x57','\x57\x37\x39\x55\x6a\x63\x7a\x37','\x57\x35\x38\x70\x46\x43\x6b\x77\x61\x6d\x6b\x35\x57\x34\x61','\x6f\x53\x6b\x37\x57\x52\x4a\x64\x4e\x6d\x6f\x77','\x6e\x6d\x6f\x7a\x44\x38\x6f\x64\x57\x37\x66\x48\x57\x4f\x42\x63\x55\x61','\x57\x34\x47\x73\x46\x43\x6b\x76\x65\x38\x6b\x55\x57\x35\x79','\x77\x6d\x6b\x41\x73\x68\x75\x37\x70\x4b\x53\x6e','\x76\x38\x6b\x4e\x71\x53\x6f\x2f\x57\x52\x69','\x57\x35\x39\x6c\x43\x53\x6f\x56\x57\x36\x4f','\x6d\x32\x6d\x70\x57\x51\x61','\x57\x34\x44\x30\x46\x6d\x6f\x35\x57\x36\x65','\x57\x51\x47\x4f\x76\x57','\x75\x4e\x75\x4d\x7a\x33\x6d','\x57\x52\x70\x63\x47\x58\x33\x63\x54\x43\x6b\x31','\x57\x34\x62\x33\x72\x53\x6f\x55\x57\x37\x79\x54\x57\x4f\x38\x33','\x57\x4f\x46\x64\x4e\x58\x4f\x4c\x57\x52\x47','\x57\x51\x6d\x33\x57\x51\x78\x63\x4f\x30\x4b\x55','\x57\x4f\x42\x63\x4e\x43\x6f\x2f\x57\x34\x6c\x63\x53\x61','\x75\x43\x6b\x68\x74\x32\x65\x37\x6a\x71','\x57\x34\x68\x64\x48\x66\x62\x36\x61\x76\x38','\x57\x4f\x42\x63\x47\x64\x2f\x63\x54\x53\x6b\x37\x67\x71','\x57\x52\x2f\x63\x4d\x38\x6f\x4f','\x57\x37\x65\x77\x41\x59\x58\x59\x57\x37\x35\x44\x57\x50\x69','\x77\x32\x64\x63\x4f\x47\x4b\x6b\x61\x38\x6b\x4d','\x57\x52\x5a\x64\x56\x43\x6f\x63\x57\x35\x79\x68','\x57\x50\x34\x4f\x41\x4e\x74\x63\x55\x72\x4a\x63\x4e\x57','\x57\x52\x33\x63\x49\x43\x6f\x4b\x57\x36\x30\x58\x57\x52\x64\x64\x4c\x6d\x6f\x53','\x57\x36\x34\x76\x57\x36\x57\x6a\x6c\x53\x6b\x34\x72\x38\x6f\x41','\x57\x34\x69\x7a\x57\x34\x47\x4f\x6e\x4a\x61','\x57\x51\x52\x63\x48\x32\x6c\x63\x4a\x67\x38','\x57\x51\x30\x51\x71\x53\x6b\x6c\x43\x71','\x6c\x33\x38\x73\x57\x51\x33\x63\x47\x71','\x57\x35\x58\x31\x46\x73\x58\x56','\x41\x64\x37\x63\x4f\x38\x6f\x62\x79\x47','\x57\x51\x42\x63\x51\x77\x56\x63\x47\x43\x6f\x68','\x57\x52\x5a\x63\x48\x43\x6b\x54\x67\x43\x6f\x34\x57\x52\x4e\x64\x49\x5a\x4b','\x69\x43\x6b\x66\x57\x50\x33\x64\x50\x57','\x57\x4f\x4a\x64\x4d\x38\x6f\x77\x57\x34\x71\x61','\x57\x37\x74\x63\x49\x48\x33\x64\x47\x38\x6f\x2f','\x57\x51\x78\x63\x4e\x6d\x6f\x6b\x57\x51\x74\x64\x4d\x71','\x57\x37\x6c\x64\x4c\x66\x66\x48\x63\x30\x4c\x61\x57\x36\x6d','\x71\x38\x6f\x44\x57\x52\x33\x63\x55\x76\x4b','\x57\x35\x4f\x63\x57\x35\x66\x50\x72\x43\x6b\x49\x65\x5a\x79','\x57\x4f\x61\x53\x76\x6d\x6b\x67\x7a\x71','\x57\x35\x70\x64\x4c\x43\x6f\x36\x63\x57','\x41\x53\x6f\x35\x73\x6d\x6f\x69','\x70\x61\x4a\x63\x56\x30\x78\x64\x4b\x67\x66\x54\x57\x50\x64\x64\x4e\x6d\x6b\x68\x57\x52\x72\x6c\x6d\x61','\x57\x52\x71\x34\x41\x76\x4e\x63\x52\x47\x2f\x64\x49\x71\x4b','\x7a\x6d\x6b\x77\x57\x37\x42\x63\x55\x58\x65','\x68\x6d\x6f\x56\x57\x51\x44\x4c\x45\x38\x6b\x42\x57\x51\x52\x64\x4a\x47','\x57\x37\x74\x63\x47\x48\x6c\x64\x52\x38\x6f\x68\x57\x35\x70\x64\x52\x53\x6f\x70','\x73\x58\x69\x54\x62\x76\x38','\x57\x36\x42\x64\x52\x43\x6f\x30\x46\x38\x6b\x6c\x6d\x59\x68\x63\x52\x57','\x43\x6d\x6b\x75\x74\x38\x6f\x59','\x57\x52\x68\x64\x4f\x38\x6f\x49\x57\x34\x43\x58','\x57\x36\x38\x6f\x57\x51\x65\x2b\x57\x37\x30\x73\x57\x50\x43','\x57\x50\x33\x63\x54\x78\x56\x63\x54\x4c\x69','\x6a\x38\x6f\x42\x42\x53\x6f\x46\x57\x51\x5a\x63\x49\x33\x44\x63','\x57\x51\x4f\x4f\x42\x38\x6b\x47\x44\x31\x4e\x63\x52\x65\x4f','\x57\x50\x38\x77\x57\x37\x44\x53\x73\x6d\x6b\x55\x75\x71','\x61\x4a\x2f\x64\x4b\x68\x56\x64\x54\x71','\x57\x51\x47\x5a\x74\x48\x76\x4a','\x57\x4f\x78\x63\x4c\x57\x74\x64\x54\x75\x79','\x57\x37\x4c\x79\x6b\x4d\x34\x38\x57\x37\x38\x66\x57\x50\x69','\x57\x36\x37\x63\x49\x62\x64\x64\x56\x43\x6f\x68\x57\x35\x69','\x74\x43\x6b\x78\x75\x4d\x34','\x57\x37\x62\x56\x57\x36\x42\x63\x4b\x48\x4b\x50\x6e\x48\x6c\x63\x52\x74\x69\x31\x73\x38\x6b\x63','\x57\x52\x64\x63\x52\x6d\x6b\x45\x42\x43\x6f\x35\x79\x72\x5a\x63\x54\x6d\x6b\x36\x57\x51\x34\x76\x67\x47','\x57\x34\x35\x50\x46\x38\x6f\x47\x57\x35\x6d','\x74\x53\x6b\x68\x74\x32\x69\x51\x70\x30\x43\x44','\x57\x36\x37\x63\x47\x48\x4b','\x79\x53\x6f\x64\x57\x52\x68\x63\x50\x4e\x75','\x71\x48\x69\x7a\x61\x4d\x57','\x57\x37\x4c\x68\x61\x59\x52\x63\x4a\x71\x76\x53\x57\x35\x42\x64\x4f\x6d\x6b\x65\x57\x4f\x4e\x64\x4c\x57','\x57\x4f\x37\x63\x47\x4b\x33\x63\x4e\x43\x6f\x64\x57\x51\x74\x64\x51\x76\x65','\x57\x37\x68\x63\x48\x62\x4e\x64\x54\x6d\x6f\x73\x57\x35\x79','\x57\x52\x4f\x43\x57\x4f\x69\x63\x57\x36\x6d\x47\x57\x4f\x78\x63\x50\x47','\x61\x59\x74\x64\x4b\x68\x52\x64\x50\x53\x6f\x44\x69\x47','\x79\x49\x68\x63\x47\x53\x6f\x46','\x57\x34\x42\x64\x4a\x59\x4a\x64\x53\x67\x65\x7a\x57\x34\x78\x63\x4e\x61','\x6e\x61\x78\x64\x47\x76\x33\x64\x50\x47','\x57\x36\x2f\x64\x56\x38\x6f\x68\x6f\x6d\x6b\x35\x6f\x47','\x57\x51\x71\x36\x57\x37\x43\x63','\x57\x37\x53\x76\x57\x37\x4b\x4f\x68\x53\x6b\x2b\x72\x38\x6f\x6b','\x57\x52\x75\x58\x57\x52\x33\x64\x4a\x75\x4c\x53\x42\x57\x53','\x6f\x63\x6c\x64\x55\x48\x64\x64\x52\x78\x75','\x6a\x30\x4b\x44\x57\x52\x56\x63\x47\x43\x6b\x76\x57\x52\x72\x42','\x57\x35\x76\x65\x6f\x47\x79\x7a\x74\x71','\x57\x36\x43\x35\x57\x36\x72\x38\x71\x71','\x57\x52\x5a\x64\x54\x38\x6b\x5a\x65\x63\x35\x78\x57\x51\x37\x63\x4c\x71','\x45\x53\x6b\x30\x45\x66\x61\x7a','\x43\x38\x6b\x61\x77\x43\x6f\x33\x57\x52\x38\x73\x57\x52\x69\x45','\x46\x53\x6b\x71\x57\x52\x31\x33\x45\x71','\x61\x6d\x6f\x42\x45\x6d\x6f\x4a\x57\x52\x68\x63\x47\x32\x71\x72','\x73\x77\x64\x63\x4d\x74\x38\x53','\x46\x53\x6f\x6c\x78\x53\x6f\x44\x57\x37\x75','\x6f\x53\x6b\x77\x57\x51\x50\x76\x75\x43\x6f\x61\x57\x4f\x5a\x64\x52\x71','\x57\x50\x61\x37\x57\x52\x71','\x57\x4f\x30\x77\x57\x34\x53\x5a\x57\x50\x34','\x6d\x6d\x6b\x73\x57\x51\x5a\x64\x55\x6d\x6f\x74','\x78\x4d\x71\x37\x79\x68\x69\x64','\x70\x32\x68\x63\x47\x6d\x6f\x6b\x7a\x6d\x6b\x34\x7a\x61','\x57\x34\x6c\x64\x48\x32\x2f\x63\x52\x71\x43\x6f\x57\x34\x4a\x63\x56\x5a\x52\x64\x4d\x31\x53','\x57\x36\x6a\x4c\x6c\x64\x58\x63','\x6b\x5a\x74\x64\x51\x30\x42\x64\x54\x61','\x44\x43\x6f\x48\x57\x37\x31\x73\x75\x6d\x6f\x32\x76\x47','\x7a\x53\x6f\x79\x57\x51\x69','\x57\x52\x38\x73\x72\x33\x78\x64\x4c\x31\x53','\x57\x34\x54\x55\x57\x36\x79','\x45\x65\x33\x64\x4f\x47\x6c\x63\x48\x62\x79\x30\x57\x4f\x4f','\x46\x53\x6f\x4f\x76\x6d\x6f\x65\x57\x34\x6d\x4e\x75\x53\x6f\x33','\x72\x43\x6b\x4f\x75\x65\x30\x38','\x76\x43\x6b\x4d\x79\x53\x6f\x2b\x57\x52\x30','\x43\x53\x6b\x4e\x57\x4f\x4f\x50\x63\x53\x6b\x71\x76\x43\x6b\x67\x57\x34\x6c\x64\x48\x76\x33\x63\x4f\x47','\x46\x38\x6f\x35\x72\x43\x6f\x79\x57\x35\x38\x5a\x75\x53\x6f\x4e','\x57\x34\x6d\x7a\x57\x34\x38\x2f\x6a\x5a\x33\x63\x50\x4d\x30','\x57\x51\x33\x63\x4f\x74\x74\x63\x4b\x38\x6b\x49','\x68\x38\x6f\x53\x44\x6d\x6f\x78\x57\x51\x69','\x57\x4f\x46\x63\x48\x63\x65','\x63\x53\x6f\x53\x57\x4f\x50\x34\x46\x6d\x6b\x72\x57\x51\x42\x64\x48\x57','\x57\x51\x6d\x41\x57\x52\x30\x4a\x57\x35\x6d','\x68\x6d\x6b\x6f\x46\x53\x6f\x76\x57\x51\x46\x64\x48\x4e\x57\x78','\x78\x43\x6b\x59\x57\x50\x7a\x31\x42\x47','\x70\x6d\x6b\x76\x57\x50\x33\x64\x56\x6d\x6f\x76\x57\x35\x46\x64\x52\x47','\x57\x4f\x5a\x63\x52\x6d\x6b\x6e\x6a\x38\x6f\x4b','\x57\x34\x43\x61\x57\x34\x65\x32\x6f\x47','\x57\x51\x4c\x79\x57\x36\x53\x56\x6e\x38\x6b\x4c\x74\x53\x6b\x76','\x57\x34\x69\x71\x57\x34\x61\x35\x6d\x61','\x66\x38\x6f\x77\x57\x37\x58\x77\x76\x57','\x57\x37\x4a\x63\x4e\x53\x6b\x49\x57\x52\x48\x31\x57\x51\x6c\x64\x47\x38\x6f\x48\x63\x6d\x6b\x4e\x57\x36\x64\x63\x52\x57','\x6d\x78\x43\x69\x57\x51\x68\x63\x4e\x6d\x6b\x78','\x42\x58\x42\x64\x4c\x38\x6f\x34\x68\x61\x69\x48\x57\x36\x69','\x57\x50\x37\x63\x4b\x30\x42\x63\x53\x6d\x6f\x6b','\x6d\x38\x6b\x77\x42\x53\x6f\x75\x57\x37\x6e\x47\x57\x37\x6c\x63\x54\x71','\x57\x37\x68\x64\x56\x38\x6f\x68\x70\x53\x6b\x47\x6e\x58\x56\x63\x55\x47'];_0xb759=function(){return _0x1f0851;};return _0xb759();}(function(_0x54d87d,_0x3dc2ae){const _0xf17ac1=_0x2e56,_0x21e342=_0x54d87d();while(!![]){try{const _0x50ec04=-parseInt(_0xf17ac1(0x12b,'\x4f\x38\x63\x48'))/(-0x24b2+-0xfe8+0x349b)+parseInt(_0xf17ac1(0x103,'\x71\x70\x7a\x46'))/(0x32d+-0x1b1*-0xe+-0x1ad9)+-parseInt(_0xf17ac1(0xe6,'\x6d\x42\x42\x50'))/(0x17*0xc7+-0x1093+-0x14b*0x1)+-parseInt(_0xf17ac1(0x11e,'\x4e\x70\x32\x40'))/(0x8a3+-0x353*0x6+-0xdf*-0xd)*(parseInt(_0xf17ac1(0x99,'\x33\x64\x50\x34'))/(-0x1*0x2501+-0x5aa*-0x2+-0xb*-0x256))+-parseInt(_0xf17ac1(0xd4,'\x51\x47\x58\x4d'))/(0xe82+0x1bff+-0x2a7b)*(parseInt(_0xf17ac1(0x153,'\x6d\x42\x42\x50'))/(0x3*0x28d+0x1*-0x2089+0x18e9))+parseInt(_0xf17ac1(0x147,'\x38\x30\x30\x4b'))/(-0xb*-0x2cf+0x11*0xb3+-0x2ac0)+-parseInt(_0xf17ac1(0x137,'\x29\x67\x62\x78'))/(0xb79+0x15e*0x1+-0x1*0xcce)*(-parseInt(_0xf17ac1(0xdf,'\x21\x30\x56\x39'))/(0x2634+-0x32*-0x9a+-0x443e));if(_0x50ec04===_0x3dc2ae)break;else _0x21e342['push'](_0x21e342['shift']());}catch(_0x5b185e){_0x21e342['push'](_0x21e342['shift']());}}}(_0xb759,0x1669a+0x34d51*0x1+0x6989*-0x2));const _0x1c4228=(function(){const _0x4650b5=_0x2e56,_0x111ade={'\x48\x5a\x6c\x54\x6f':_0x4650b5(0x1b7,'\x32\x56\x6a\x25'),'\x59\x59\x4f\x59\x73':function(_0x451621,_0x224ed1){return _0x451621(_0x224ed1);},'\x44\x54\x64\x41\x51':_0x4650b5(0x1be,'\x21\x53\x72\x58')};let _0x1d3dac=!![];return function(_0x4afbbd,_0x3e6393){const _0x282cba=_0x4650b5;if(_0x282cba(0xbe,'\x67\x69\x55\x44')===_0x111ade['\x44\x54\x64\x41\x51']){if(_0x3c1862&&_0x38a2a7['\x73\x74\x61\x74\x75\x73']===_0x111ade[_0x282cba(0x9a,'\x29\x67\x62\x78')]){const _0x4e0290=_0x111ade[_0x282cba(0xff,'\x51\x39\x56\x39')](_0x1836ed,_0x18d594['\x73\x63\x6f\x72\x65'])||-0xb5c*-0x3+0x1*-0x905+-0x190f;return _0x4e0290>=0x9*0x1a3+-0x3f5+0x563*-0x2+0.85?0x20*-0x10+0x10*-0x80+-0x5*-0x201:-0x2414+-0x8*0x32b+0x3d70;}const _0x29d538=_0x437af8&&_0x5b5dce[_0x282cba(0x89,'\x71\x70\x7a\x46')](_0x5417af[_0x282cba(0x98,'\x65\x66\x76\x23')+'\x6e\x73'])&&_0x49af8c[_0x282cba(0xf1,'\x21\x30\x56\x39')+'\x6e\x73'][_0x282cba(0xdd,'\x35\x6d\x51\x31')]>-0x25*0x19+-0x7a8+-0x1*-0xb45;return _0x29d538?-0xdb*0x1+0x21d4+0x107c*-0x2:-0x1152+-0x2*0x47d+-0x3c2*-0x7;}else{const _0x4c75bc=_0x1d3dac?function(){const _0x340727=_0x282cba;if(_0x3e6393){const _0x8c9fa6=_0x3e6393[_0x340727(0x1d0,'\x6d\x42\x42\x50')](_0x4afbbd,arguments);return _0x3e6393=null,_0x8c9fa6;}}:function(){};return _0x1d3dac=![],_0x4c75bc;}};}()),_0x1430f7=_0x1c4228(this,function(){const _0x2dc456=_0x2e56,_0x784962={};_0x784962[_0x2dc456(0x92,'\x65\x66\x76\x23')]=_0x2dc456(0xdc,'\x2a\x75\x66\x75')+_0x2dc456(0x1ed,'\x21\x53\x72\x58');const _0x2622b5=_0x784962;return _0x1430f7[_0x2dc456(0xab,'\x32\x56\x6a\x25')]()[_0x2dc456(0xb9,'\x71\x51\x77\x5d')](_0x2622b5[_0x2dc456(0xc4,'\x24\x43\x23\x42')])[_0x2dc456(0x141,'\x74\x63\x4c\x78')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x2dc456(0x1aa,'\x21\x6d\x47\x67')](_0x1430f7)[_0x2dc456(0x135,'\x78\x4c\x73\x51')](_0x2622b5[_0x2dc456(0x17a,'\x71\x70\x7a\x46')]);});_0x1430f7();const _0x2a324a=require('\x66\x73'),_0xa1edf=require(_0x482182(0xd2,'\x74\x63\x4c\x78')),{getNodeId:_0xb7c1df,getHubNodeSecret:_0x5638ea}=require(_0x482182(0x12f,'\x63\x74\x39\x25')+_0x482182(0x1fc,'\x46\x50\x50\x26')),{hubFetch:_0x9a8bb6}=require(_0x482182(0x13f,'\x54\x62\x64\x69')+'\x63\x68'),{logAssetCall:_0x21e45e}=require(_0x482182(0x189,'\x63\x74\x39\x25')+_0x482182(0x188,'\x78\x73\x31\x58')),_0x267c48=_0xa1edf[_0x482182(0x158,'\x71\x65\x67\x31')](require(_0x482182(0x102,'\x67\x69\x55\x44'))[_0x482182(0xb8,'\x21\x6d\x47\x67')+_0x482182(0x132,'\x4e\x70\x32\x40')](),_0x482182(0xcc,'\x46\x30\x6b\x36')+_0x482182(0x195,'\x2a\x2a\x5e\x70')+'\x72\x79\x2e\x6a\x73\x6f\x6e'),_0x5e44b5=0x25c7+-0x186*0x13+-0x24b*0x3;function _0x58dbe1(){const _0x56ee86=_0x482182,_0x48f3cc={};_0x48f3cc[_0x56ee86(0x1e1,'\x33\x64\x50\x34')]=_0x56ee86(0x1a7,'\x6d\x42\x42\x50'),_0x48f3cc[_0x56ee86(0x146,'\x78\x4c\x73\x51')]=function(_0x35c836,_0x2ca141){return _0x35c836!==_0x2ca141;},_0x48f3cc[_0x56ee86(0x184,'\x54\x40\x5d\x49')]=_0x56ee86(0x1e5,'\x45\x42\x4e\x29');const _0x1b4823=_0x48f3cc;try{if(!_0x2a324a[_0x56ee86(0xa3,'\x7a\x4e\x78\x4a')+'\x6e\x63'](_0x267c48))return{};const _0x3c6877=_0x2a324a[_0x56ee86(0x8d,'\x32\x56\x6a\x25')+_0x56ee86(0x15d,'\x78\x4c\x73\x51')](_0x267c48,_0x56ee86(0x1a0,'\x78\x73\x31\x58'));if(!_0x3c6877[_0x56ee86(0x1d2,'\x50\x63\x4a\x61')]())return{};return JSON['\x70\x61\x72\x73\x65'](_0x3c6877);}catch{if(_0x1b4823[_0x56ee86(0x16e,'\x4f\x38\x63\x48')](_0x1b4823[_0x56ee86(0xfb,'\x7a\x4e\x5d\x51')],_0x1b4823[_0x56ee86(0x115,'\x51\x47\x58\x4d')])){if(!_0x198058[_0x56ee86(0x1dd,'\x6d\x42\x42\x50')+'\x6e\x63'](_0x5d17fc))return{};const _0x45cefb=_0x4765f5[_0x56ee86(0xf0,'\x21\x6d\x47\x67')+_0x56ee86(0x1a2,'\x65\x66\x76\x23')](_0x195ef0,_0x1b4823[_0x56ee86(0x139,'\x67\x69\x55\x44')]);if(!_0x45cefb[_0x56ee86(0x126,'\x54\x40\x5d\x49')]())return{};return _0x542486['\x70\x61\x72\x73\x65'](_0x45cefb);}else return{};}}function _0x31b610(_0x3e571a){const _0x1a4c7e=_0x482182,_0x4da238={};_0x4da238[_0x1a4c7e(0x1e0,'\x4f\x38\x63\x48')]=function(_0x122cbb,_0x4a26be){return _0x122cbb!==_0x4a26be;},_0x4da238[_0x1a4c7e(0x180,'\x6e\x65\x49\x28')]=_0x1a4c7e(0xbf,'\x38\x73\x54\x5e'),_0x4da238[_0x1a4c7e(0xd3,'\x4e\x70\x32\x40')]=_0x1a4c7e(0xbd,'\x29\x45\x69\x74'),_0x4da238[_0x1a4c7e(0x117,'\x54\x40\x5d\x49')]=function(_0x476318,_0x5a3a29){return _0x476318+_0x5a3a29;},_0x4da238[_0x1a4c7e(0x13a,'\x71\x70\x7a\x46')]=_0x1a4c7e(0x1fb,'\x4e\x6d\x74\x62'),_0x4da238[_0x1a4c7e(0x16a,'\x65\x66\x76\x23')]=_0x1a4c7e(0x14c,'\x71\x70\x7a\x46');const _0x280ecc=_0x4da238;try{const _0x74bf62=_0xa1edf['\x64\x69\x72\x6e\x61\x6d\x65'](_0x267c48),_0x52af93={};_0x52af93[_0x1a4c7e(0x10f,'\x2a\x2a\x5e\x70')+'\x65']=!![];if(!_0x2a324a[_0x1a4c7e(0x1dd,'\x6d\x42\x42\x50')+'\x6e\x63'](_0x74bf62))_0x2a324a['\x6d\x6b\x64\x69\x72\x53\x79\x6e'+'\x63'](_0x74bf62,_0x52af93);const _0x1fc908=Object[_0x1a4c7e(0x17c,'\x67\x69\x55\x44')](_0x3e571a);if(_0x1fc908[_0x1a4c7e(0xaf,'\x7a\x4e\x78\x4a')]>_0x5e44b5){if(_0x280ecc[_0x1a4c7e(0x1c9,'\x38\x30\x30\x4b')](_0x280ecc['\x59\x69\x57\x49\x79'],_0x280ecc[_0x1a4c7e(0x10c,'\x7a\x4e\x78\x4a')])){const _0x5231a9=_0x1fc908[_0x1a4c7e(0x15a,'\x46\x50\x50\x26')](_0x229110=>({'\x6b':_0x229110,'\x74':_0x3e571a[_0x229110]['\x61\x74']||-0xec3+0x257*-0x8+0x217b}))['\x73\x6f\x72\x74']((_0x29eb46,_0x3528c7)=>_0x29eb46['\x74']-_0x3528c7['\x74']),_0x5c2852=_0x5231a9[_0x1a4c7e(0x1c1,'\x74\x63\x4c\x78')](-0x1*0xa9f+-0x1*0x2b1+-0xd50*-0x1,_0x1fc908[_0x1a4c7e(0xee,'\x28\x4c\x59\x6e')]-_0x5e44b5);for(const _0x2cc3e7 of _0x5c2852)delete _0x3e571a[_0x2cc3e7['\x6b']];}else return(_0x59716d.env.A2A_HUB_URL||'')['\x72\x65\x70\x6c\x61\x63\x65'](/\/+$/,'');}const _0x24deeb=_0x280ecc[_0x1a4c7e(0x159,'\x45\x42\x4e\x29')](_0x267c48,_0x280ecc['\x6c\x66\x65\x43\x65']);_0x2a324a[_0x1a4c7e(0x10a,'\x4f\x38\x63\x48')+_0x1a4c7e(0x8c,'\x36\x6e\x77\x67')](_0x24deeb,_0x280ecc[_0x1a4c7e(0xf7,'\x7a\x4e\x78\x4a')](JSON[_0x1a4c7e(0x94,'\x7a\x36\x71\x21')+'\x79'](_0x3e571a,null,-0x22*0x4e+0x26e6+-0x1*0x1c88),'\x0a'),_0x280ecc[_0x1a4c7e(0x1f8,'\x36\x6e\x77\x67')]),_0x2a324a[_0x1a4c7e(0x123,'\x28\x4c\x59\x6e')+'\x6e\x63'](_0x24deeb,_0x267c48);}catch{}}function _0x3c038d(_0x503116){const _0x473bde=_0x482182,_0x131c69={'\x79\x6d\x43\x55\x43':function(_0x14fe53){return _0x14fe53();}},_0x342591=_0x131c69[_0x473bde(0x15c,'\x78\x4c\x73\x51')](_0x58dbe1);return!!_0x342591[_0x503116];}function _0x1496d0(_0xd9dd14,_0x37901e,_0x51c228){const _0xb38bc1=_0x482182,_0x34751e=_0x58dbe1();_0x34751e[_0xd9dd14]={'\x61\x74':Date[_0xb38bc1(0x179,'\x2a\x75\x66\x75')](),'\x72\x61\x74\x69\x6e\x67':_0x37901e,'\x73\x75\x63\x63\x65\x73\x73':_0x51c228},_0x31b610(_0x34751e);}function _0x3f2b9f(_0x44b956,_0x248c82){const _0x5931e4=_0x482182,_0x572b5e={'\x62\x78\x61\x6c\x44':function(_0x1ba1bf,_0xa8842c){return _0x1ba1bf-_0xa8842c;},'\x75\x5a\x63\x78\x54':function(_0x3298d7,_0xe92c63){return _0x3298d7===_0xe92c63;},'\x55\x71\x53\x67\x56':_0x5931e4(0x1f9,'\x21\x6d\x47\x67'),'\x6c\x4e\x6a\x4b\x68':function(_0xb99755,_0x15cdef){return _0xb99755!==_0x15cdef;},'\x4d\x41\x49\x74\x76':_0x5931e4(0x1f1,'\x54\x62\x64\x69'),'\x4a\x5a\x74\x73\x72':function(_0x52819c,_0x39e0eb){return _0x52819c(_0x39e0eb);},'\x42\x6d\x51\x52\x46':function(_0x464d7a,_0x6defb7){return _0x464d7a>=_0x6defb7;},'\x69\x6d\x72\x59\x63':function(_0x581c34,_0x4744c8){return _0x581c34>_0x4744c8;}};if(_0x44b956&&_0x572b5e[_0x5931e4(0x90,'\x54\x40\x5d\x49')](_0x44b956[_0x5931e4(0x173,'\x41\x4d\x50\x38')],_0x572b5e['\x55\x71\x53\x67\x56'])){if(_0x572b5e['\x6c\x4e\x6a\x4b\x68'](_0x5931e4(0x1f0,'\x38\x30\x30\x4b'),_0x572b5e[_0x5931e4(0xac,'\x44\x7a\x6e\x50')])){const _0x46d92=_0x313399[_0x5931e4(0x13d,'\x71\x70\x7a\x46')](_0x55e07c=>({'\x6b':_0x55e07c,'\x74':_0x1651c8[_0x55e07c]['\x61\x74']||-0x1966+0x160f*-0x1+-0x1*-0x2f75}))[_0x5931e4(0x1ab,'\x45\x73\x4e\x70')]((_0x197749,_0x41bfff)=>_0x197749['\x74']-_0x41bfff['\x74']),_0x396e59=_0x46d92[_0x5931e4(0x16f,'\x78\x4c\x73\x51')](-0x10d*0x1+0x269+-0x15c,xSFzJC[_0x5931e4(0x172,'\x41\x4d\x50\x38')](_0x488580[_0x5931e4(0x1bd,'\x6d\x42\x42\x50')],_0xc41728));for(const _0x2c12cc of _0x396e59)delete _0x5bb2a6[_0x2c12cc['\x6b']];}else{const _0x559101=_0x572b5e[_0x5931e4(0x144,'\x36\x6e\x77\x67')](Number,_0x44b956[_0x5931e4(0x12c,'\x4e\x6d\x74\x62')])||-0x1*0x30f+-0xb2+0x3c1;return _0x572b5e['\x42\x6d\x51\x52\x46'](_0x559101,-0x129d+-0x136d+0x260a+0.85)?0x1129+0x1*-0xbf9+0x3f*-0x15:0x5fc*0x4+-0x2*-0xbc0+-0x2f6c;}}const _0x47abc7=_0x248c82&&Array[_0x5931e4(0x1db,'\x23\x69\x77\x32')](_0x248c82[_0x5931e4(0x155,'\x35\x6d\x51\x31')+'\x6e\x73'])&&_0x572b5e[_0x5931e4(0xbb,'\x7a\x36\x71\x21')](_0x248c82[_0x5931e4(0x1b9,'\x78\x4c\x73\x51')+'\x6e\x73'][_0x5931e4(0x13b,'\x7a\x4e\x5d\x51')],-0xe29+0x5c9*0x5+0x6*-0x276);return _0x47abc7?-0x2659+0x1001*0x1+0x1659:0x4cc*0x2+-0x1e94+0x14fe;}function _0x44d76c({outcome:_0x3fdb70,gene:_0x582f21,signals:_0x47814d,blast:_0x179dc8,sourceType:_0x1d4421}){const _0x2551de=_0x482182,_0x5b3948={'\x58\x49\x58\x41\x58':function(_0x545476,_0x4facf6){return _0x545476(_0x4facf6);},'\x41\x72\x45\x48\x42':function(_0x571945,_0x53aadf){return _0x571945>=_0x53aadf;},'\x58\x4a\x50\x4d\x41':_0x2551de(0xc5,'\x54\x62\x64\x69')+_0x2551de(0xa9,'\x29\x67\x62\x78'),'\x64\x74\x72\x54\x41':function(_0x429a4f,_0x2f3275){return _0x429a4f+_0x2f3275;},'\x6e\x67\x78\x6c\x78':_0x2551de(0xb6,'\x46\x30\x6b\x36'),'\x7a\x59\x70\x63\x52':_0x2551de(0x168,'\x35\x6d\x51\x31'),'\x65\x42\x6a\x77\x52':function(_0x1c812e,_0x376b7b){return _0x1c812e(_0x376b7b);},'\x4c\x79\x49\x52\x73':function(_0x2bb692,_0x2cd39d){return _0x2bb692+_0x2cd39d;},'\x49\x5a\x74\x58\x74':_0x2551de(0xd6,'\x45\x42\x4e\x29')+'\x20','\x63\x63\x78\x59\x59':_0x2551de(0x11b,'\x21\x6d\x47\x67')+'\x20','\x4d\x6b\x69\x59\x6f':function(_0x1c5b27,_0x582b0c){return _0x1c5b27+_0x582b0c;},'\x70\x6f\x48\x65\x51':_0x2551de(0x17d,'\x78\x4c\x73\x51')+_0x2551de(0x1cd,'\x54\x62\x64\x69'),'\x6c\x45\x4c\x6d\x79':function(_0x2f37c5,_0x52b253){return _0x2f37c5||_0x52b253;},'\x58\x52\x70\x79\x57':function(_0x2bd032,_0x2783d3){return _0x2bd032!==_0x2783d3;},'\x66\x4d\x55\x6c\x54':_0x2551de(0x1f6,'\x33\x64\x50\x34'),'\x6f\x56\x51\x48\x66':function(_0x35f942,_0x1222b1){return _0x35f942+_0x1222b1;},'\x48\x43\x62\x57\x6f':_0x2551de(0x8f,'\x7a\x4e\x5d\x51'),'\x45\x47\x64\x45\x4a':function(_0xc5227d,_0xa3a9cf){return _0xc5227d>_0xa3a9cf;},'\x48\x4e\x6c\x4a\x4f':_0x2551de(0x17b,'\x51\x39\x56\x39'),'\x47\x44\x65\x42\x6d':function(_0x926e7d,_0x4f9624){return _0x926e7d+_0x4f9624;},'\x79\x43\x4c\x55\x74':_0x2551de(0x183,'\x7a\x4e\x78\x4a')+'\x20','\x4f\x77\x61\x6e\x6d':_0x2551de(0x124,'\x44\x7a\x6e\x50'),'\x6b\x53\x67\x75\x6e':_0x2551de(0x142,'\x45\x73\x4e\x70'),'\x61\x63\x4e\x52\x41':function(_0x30db9f,_0x1ef9f7){return _0x30db9f+_0x1ef9f7;},'\x67\x75\x4d\x44\x74':_0x2551de(0x8a,'\x51\x47\x58\x4d')+_0x2551de(0xf4,'\x70\x4c\x74\x56'),'\x73\x72\x6d\x43\x67':_0x2551de(0xb3,'\x2a\x75\x66\x75')+'\x2c\x20','\x55\x53\x59\x64\x6b':_0x2551de(0x1b2,'\x23\x69\x77\x32'),'\x59\x67\x59\x67\x4f':function(_0x1c66ce,_0x32fb65){return _0x1c66ce===_0x32fb65;},'\x68\x73\x77\x74\x44':_0x2551de(0x185,'\x24\x47\x32\x5a'),'\x6d\x78\x6c\x45\x70':_0x2551de(0x120,'\x71\x65\x67\x31')+_0x2551de(0x18b,'\x7a\x4e\x78\x4a')+_0x2551de(0x116,'\x45\x42\x4e\x29')+_0x2551de(0x122,'\x50\x63\x4a\x61')+_0x2551de(0x19d,'\x2a\x75\x66\x75')+_0x2551de(0x1ba,'\x36\x45\x4b\x67')+_0x2551de(0xcf,'\x35\x6d\x51\x31')+_0x2551de(0xd8,'\x36\x6e\x77\x67')},_0x50e214=[],_0x43f997=_0x3fdb70&&_0x3fdb70[_0x2551de(0x1ae,'\x45\x73\x4e\x70')]?_0x3fdb70[_0x2551de(0x182,'\x24\x47\x32\x5a')]:_0x5b3948[_0x2551de(0x1f3,'\x78\x4c\x73\x51')],_0xfd924c=_0x3fdb70&&Number[_0x2551de(0x140,'\x2a\x75\x66\x75')](_0x5b3948[_0x2551de(0x1f4,'\x29\x67\x62\x78')](Number,_0x3fdb70[_0x2551de(0x145,'\x45\x42\x4e\x29')]))?_0x5b3948[_0x2551de(0x88,'\x6d\x42\x42\x50')](Number,_0x3fdb70['\x73\x63\x6f\x72\x65'])[_0x2551de(0x1c0,'\x21\x6d\x47\x67')](-0x1d08+-0x1184+0xca*0x3b):'\x3f';_0x50e214[_0x2551de(0xef,'\x51\x39\x56\x39')](_0x5b3948[_0x2551de(0x19b,'\x4e\x70\x32\x40')](_0x5b3948['\x49\x5a\x74\x58\x74'],_0x43f997)+_0x5b3948[_0x2551de(0x197,'\x78\x73\x31\x58')]+_0xfd924c+'\x29'),_0x50e214[_0x2551de(0x130,'\x71\x70\x7a\x46')](_0x5b3948[_0x2551de(0x167,'\x74\x63\x4c\x78')](_0x5b3948[_0x2551de(0x192,'\x36\x6e\x77\x67')],_0x5b3948[_0x2551de(0x161,'\x29\x45\x69\x74')](_0x1d4421,_0x5b3948['\x7a\x59\x70\x63\x52'])));if(_0x582f21&&_0x582f21['\x69\x64']){if(_0x5b3948['\x58\x52\x70\x79\x57'](_0x2551de(0x166,'\x36\x45\x4b\x67'),_0x5b3948['\x66\x4d\x55\x6c\x54']))_0x50e214[_0x2551de(0xc1,'\x78\x73\x31\x58')](_0x5b3948[_0x2551de(0xd5,'\x38\x30\x30\x4b')](_0x5b3948[_0x2551de(0x1b8,'\x76\x74\x6c\x55')](_0x5b3948['\x4d\x6b\x69\x59\x6f'](_0x5b3948[_0x2551de(0x15b,'\x76\x74\x6c\x55')](_0x5b3948[_0x2551de(0x19a,'\x78\x4c\x73\x51')],_0x582f21['\x69\x64']),'\x20\x28'),_0x582f21[_0x2551de(0x9b,'\x21\x53\x72\x58')]||_0x5b3948[_0x2551de(0xba,'\x38\x30\x30\x4b')]),'\x29'));else return{};}if(Array[_0x2551de(0x171,'\x71\x51\x77\x5d')](_0x47814d)&&_0x5b3948[_0x2551de(0x162,'\x38\x30\x30\x4b')](_0x47814d[_0x2551de(0xb1,'\x4e\x6d\x74\x62')],-0x189b+-0x34*-0x97+0x1*-0x611)){if(_0x5b3948[_0x2551de(0x1f2,'\x4f\x38\x63\x48')]===_0x5b3948[_0x2551de(0x14d,'\x32\x56\x6a\x25')])_0x50e214[_0x2551de(0xa6,'\x46\x50\x50\x26')](_0x5b3948[_0x2551de(0x111,'\x4e\x6d\x74\x62')](_0x5b3948[_0x2551de(0xda,'\x2a\x75\x66\x75')],_0x47814d[_0x2551de(0x1d7,'\x23\x69\x77\x32')](-0x20ab*0x1+0x19dd+0x6ce,-0x1*0x2365+-0x1*0x621+0x298c)['\x6a\x6f\x69\x6e']('\x2c\x20')));else{const _0x16ed70=lhqmKH[_0x2551de(0x1c5,'\x38\x73\x54\x5e')](_0x261b5e,_0x2e658a[_0x2551de(0x12d,'\x41\x4d\x50\x38')])||0x5*0x2b3+0x1*-0x1ae9+0xd6a;return lhqmKH[_0x2551de(0xc2,'\x4e\x70\x32\x40')](_0x16ed70,0x53*0x56+0x37*0x5+-0x1cf5+0.85)?0x711+-0x6cf+-0x3d:0x15ca+0xa81+-0x2047*0x1;}}return _0x179dc8&&(_0x5b3948[_0x2551de(0x96,'\x7a\x36\x71\x21')](_0x5b3948[_0x2551de(0x95,'\x46\x50\x50\x26')],_0x5b3948[_0x2551de(0xa5,'\x32\x56\x6a\x25')])?_0x50e214[_0x2551de(0x157,'\x29\x67\x62\x78')](_0x5b3948[_0x2551de(0x178,'\x7a\x4e\x78\x4a')](_0x5b3948[_0x2551de(0x1d1,'\x45\x73\x4e\x70')](_0x5b3948[_0x2551de(0x105,'\x66\x36\x6a\x59')](_0x5b3948['\x67\x75\x4d\x44\x74'],_0x179dc8[_0x2551de(0x1ee,'\x2a\x75\x66\x75')]||0x4bd+-0x5a*-0xc+-0x8f5)+_0x5b3948[_0x2551de(0x169,'\x67\x69\x55\x44')],_0x179dc8[_0x2551de(0xbc,'\x46\x50\x50\x26')]||-0x67f*-0x6+0x3*-0x5ef+-0x152d),_0x5b3948[_0x2551de(0x10d,'\x74\x63\x4c\x78')])):_0x36fb79[_0x5b3948['\x58\x4a\x50\x4d\x41']]=_0x5b3948[_0x2551de(0xf9,'\x54\x40\x5d\x49')](_0x5b3948[_0x2551de(0x14f,'\x71\x70\x7a\x46')],_0x2fea30)),_0x5b3948['\x59\x67\x59\x67\x4f'](_0x43f997,_0x5b3948[_0x2551de(0x1cf,'\x44\x7a\x6e\x50')])?_0x50e214[_0x2551de(0xde,'\x7a\x4e\x78\x4a')](_0x2551de(0x1d9,'\x4e\x6d\x74\x62')+_0x2551de(0x15e,'\x23\x69\x77\x32')+_0x2551de(0xb7,'\x4e\x70\x32\x40')+_0x2551de(0xe9,'\x51\x47\x58\x4d')+_0x2551de(0x1b6,'\x36\x6e\x77\x67')+_0x2551de(0x1f7,'\x29\x45\x69\x74')+_0x2551de(0x19c,'\x36\x45\x4b\x67')+'\x64\x2e'):_0x50e214['\x70\x75\x73\x68'](_0x5b3948[_0x2551de(0x15f,'\x63\x74\x39\x25')]),_0x50e214[_0x2551de(0x175,'\x45\x73\x4e\x70')]('\x0a')[_0x2551de(0xa7,'\x32\x56\x6a\x25')](-0x20*0xe1+0x8c1+0x135f,0x14da*0x1+-0x1157*0x1+-0x16f*-0x3);}function _0x52bb65(){const _0x20085e=_0x482182;return(process.env.A2A_HUB_URL||'')[_0x20085e(0x9f,'\x65\x66\x76\x23')](/\/+$/,'');}function _0x2e56(_0x21ea7b,_0x41913f){_0x21ea7b=_0x21ea7b-(0x6*-0x64b+-0x1063*-0x2+0x584);const _0x379610=_0xb759();let _0x197eaf=_0x379610[_0x21ea7b];if(_0x2e56['\x6f\x71\x47\x6c\x47\x44']===undefined){var _0x509924=function(_0x570329){const _0x248557='\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 _0x13f463='',_0x360be0='',_0x67f856=_0x13f463+_0x509924,_0x267aa0=(''+function(){return-0x35c+0x94*0x11+-0x678;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0xaef+0x1a51+-0x1*0x253f);for(let _0x2df761=-0xa64+0xa82+-0x1e,_0x3b1cd1,_0x15141a,_0x4856a9=-0x168d+0x4*-0x509+-0x3*-0xe3b;_0x15141a=_0x570329['\x63\x68\x61\x72\x41\x74'](_0x4856a9++);~_0x15141a&&(_0x3b1cd1=_0x2df761%(-0x5*0x6ec+0x1*-0x2545+0x47e5)?_0x3b1cd1*(-0x1a*0xb3+-0x2*-0x129a+-0x12c6)+_0x15141a:_0x15141a,_0x2df761++%(-0x20fe+0x19a6+-0x274*-0x3))?_0x13f463+=_0x267aa0||_0x67f856['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4856a9+(0x2524*0x1+-0x125*-0x14+0x7*-0x892))-(-0x212+0x2f*-0x6d+0x161f)!==0x757*-0x2+-0x15b*-0x15+-0x1*0xdc9?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x278+0x128*-0x12+0x1847&_0x3b1cd1>>(-(0x1125+0x42*0x2b+-0x1c39)*_0x2df761&-0xf3*-0x12+-0xaed+-0x623*0x1)):_0x2df761:-0x2452*-0x1+-0x1f60+0x1*-0x4f2){_0x15141a=_0x248557['\x69\x6e\x64\x65\x78\x4f\x66'](_0x15141a);}for(let _0x4415ec=-0x1280+0x17*0xdb+-0x12d,_0x59c6b7=_0x13f463['\x6c\x65\x6e\x67\x74\x68'];_0x4415ec<_0x59c6b7;_0x4415ec++){_0x360be0+='\x25'+('\x30\x30'+_0x13f463['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4415ec)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x13*-0x184+0x1f7e+0x4a2*-0xd))['\x73\x6c\x69\x63\x65'](-(-0x29*-0x14+0x2*-0xaae+-0x5d*-0x32));}return decodeURIComponent(_0x360be0);};const _0x35412b=function(_0x5f30df,_0x1ba0bc){let _0x13e34a=[],_0x416f3e=-0x18b9+0x2616+0xd5d*-0x1,_0x56c3fb,_0x4a70ca='';_0x5f30df=_0x509924(_0x5f30df);let _0x3d7cdf;for(_0x3d7cdf=0x25ca+-0x1e49+-0x781*0x1;_0x3d7cdf<0x637*-0x5+0x1*-0x22d5+0x42e8;_0x3d7cdf++){_0x13e34a[_0x3d7cdf]=_0x3d7cdf;}for(_0x3d7cdf=0x2e9+0xcbb*0x1+-0xfa4;_0x3d7cdf<-0x5ed*-0x3+-0x5*-0xd5+-0x14f0;_0x3d7cdf++){_0x416f3e=(_0x416f3e+_0x13e34a[_0x3d7cdf]+_0x1ba0bc['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3d7cdf%_0x1ba0bc['\x6c\x65\x6e\x67\x74\x68']))%(-0x138f+-0x1*-0x5ff+0x1*0xe90),_0x56c3fb=_0x13e34a[_0x3d7cdf],_0x13e34a[_0x3d7cdf]=_0x13e34a[_0x416f3e],_0x13e34a[_0x416f3e]=_0x56c3fb;}_0x3d7cdf=0x1459+-0x1d08+0xd*0xab,_0x416f3e=0x4a7+0x44*0x89+-0x290b;for(let _0x50f67e=-0x43e*-0x4+-0xb67+-0x591;_0x50f67e<_0x5f30df['\x6c\x65\x6e\x67\x74\x68'];_0x50f67e++){_0x3d7cdf=(_0x3d7cdf+(0x5b*0x5b+-0x1045+-0x1013))%(0x1*0x15ce+0x21*0xe3+0x7*-0x727),_0x416f3e=(_0x416f3e+_0x13e34a[_0x3d7cdf])%(-0x98f+-0xd*-0x249+0x6*-0x331),_0x56c3fb=_0x13e34a[_0x3d7cdf],_0x13e34a[_0x3d7cdf]=_0x13e34a[_0x416f3e],_0x13e34a[_0x416f3e]=_0x56c3fb,_0x4a70ca+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5f30df['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x50f67e)^_0x13e34a[(_0x13e34a[_0x3d7cdf]+_0x13e34a[_0x416f3e])%(0x2453*-0x1+0x449*-0x9+0x4be4)]);}return _0x4a70ca;};_0x2e56['\x4f\x49\x54\x5a\x59\x42']=_0x35412b,_0x2e56['\x59\x4e\x55\x59\x63\x4b']={},_0x2e56['\x6f\x71\x47\x6c\x47\x44']=!![];}const _0x475b2b=_0x379610[0x66*-0x2f+0x216+0x10a4],_0x4417e9=_0x21ea7b+_0x475b2b,_0x91f1b7=_0x2e56['\x59\x4e\x55\x59\x63\x4b'][_0x4417e9];if(!_0x91f1b7){if(_0x2e56['\x58\x62\x76\x55\x4f\x7a']===undefined){const _0x238d8f=function(_0x55e705){this['\x44\x6a\x6b\x55\x46\x70']=_0x55e705,this['\x73\x41\x6b\x78\x50\x61']=[0x1*-0x10f+-0x1abf*0x1+-0x15*-0x153,0xad*-0x2b+-0x3*0xb4e+0x3ef9,0x2560+-0x1862+-0xcfe],this['\x79\x75\x49\x70\x63\x69']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x65\x75\x50\x76\x45\x58']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x61\x57\x4e\x69\x70\x4a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x238d8f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x68\x68\x6f\x53\x67\x51']=function(){const _0x19ba16=new RegExp(this['\x65\x75\x50\x76\x45\x58']+this['\x61\x57\x4e\x69\x70\x4a']),_0x2c72b2=_0x19ba16['\x74\x65\x73\x74'](this['\x79\x75\x49\x70\x63\x69']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x73\x41\x6b\x78\x50\x61'][-0xc0b+-0x2153*0x1+0x2d5f]:--this['\x73\x41\x6b\x78\x50\x61'][-0x2442+-0x2f*-0x1+0x2413];return this['\x4a\x52\x6b\x63\x6b\x47'](_0x2c72b2);},_0x238d8f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4a\x52\x6b\x63\x6b\x47']=function(_0x1c4bdd){if(!Boolean(~_0x1c4bdd))return _0x1c4bdd;return this['\x45\x6b\x61\x7a\x79\x54'](this['\x44\x6a\x6b\x55\x46\x70']);},_0x238d8f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x45\x6b\x61\x7a\x79\x54']=function(_0x524210){for(let _0x1207e8=0x8b*-0x3+-0x3e3*0x2+0x1d*0x53,_0x1f49e6=this['\x73\x41\x6b\x78\x50\x61']['\x6c\x65\x6e\x67\x74\x68'];_0x1207e8<_0x1f49e6;_0x1207e8++){this['\x73\x41\x6b\x78\x50\x61']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x1f49e6=this['\x73\x41\x6b\x78\x50\x61']['\x6c\x65\x6e\x67\x74\x68'];}return _0x524210(this['\x73\x41\x6b\x78\x50\x61'][0x43*0x56+-0x1*-0xb5e+-0x43c*0x8]);},(''+function(){return-0xce0+-0x1*-0x1e0b+-0x5b9*0x3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x1*-0x1136+0x147*-0x2+-0xea7)&&new _0x238d8f(_0x2e56)['\x68\x68\x6f\x53\x67\x51'](),_0x2e56['\x58\x62\x76\x55\x4f\x7a']=!![];}_0x197eaf=_0x2e56['\x4f\x49\x54\x5a\x59\x42'](_0x197eaf,_0x41913f),_0x2e56['\x59\x4e\x55\x59\x63\x4b'][_0x4417e9]=_0x197eaf;}else _0x197eaf=_0x91f1b7;return _0x197eaf;}async function _0x6f3734({reusedAssetId:_0x2422b3,sourceType:_0x630e7d,outcome:_0x2ec05d,gene:_0x509aa3,signals:_0x4dedd3,blast:_0x1eacbe,constraintCheck:_0x241496,runId:_0x5a2a0f}){const _0x246202=_0x482182,_0x4372cc={'\x57\x52\x79\x65\x64':_0x246202(0x1b3,'\x65\x66\x76\x23')+_0x246202(0xf3,'\x46\x50\x50\x26')+'\x69\x64','\x6b\x4b\x56\x53\x62':function(_0x3725ec,_0x92794b,_0xbf23e0,_0x1f3a44){return _0x3725ec(_0x92794b,_0xbf23e0,_0x1f3a44);},'\x4c\x6e\x47\x4b\x79':function(_0x50a5a1,_0x11ea21){return _0x50a5a1>_0x11ea21;},'\x62\x74\x61\x48\x6a':function(_0x2639a1,_0x1bdcce){return _0x2639a1-_0x1bdcce;},'\x53\x48\x63\x49\x61':function(_0x2a6e1e,_0x2d5b1c){return _0x2a6e1e+_0x2d5b1c;},'\x4e\x70\x59\x7a\x62':'\x2e\x74\x6d\x70','\x54\x45\x77\x62\x78':_0x246202(0x193,'\x24\x43\x23\x42'),'\x42\x55\x79\x4b\x56':function(_0x3540bc,_0x2e5fcc){return _0x3540bc!==_0x2e5fcc;},'\x76\x58\x74\x7a\x62':_0x246202(0x1dc,'\x21\x30\x56\x39'),'\x4f\x63\x59\x70\x41':_0x246202(0xb0,'\x54\x62\x64\x69'),'\x76\x7a\x4f\x70\x4f':_0x246202(0x110,'\x71\x51\x77\x5d')+'\x65','\x44\x6b\x64\x54\x77':function(_0x1dfd1f,_0x4cf9d3){return _0x1dfd1f(_0x4cf9d3);},'\x4b\x55\x4d\x4c\x65':_0x246202(0x1e4,'\x7a\x4e\x78\x4a'),'\x6a\x6d\x52\x6f\x4f':_0x246202(0xc3,'\x35\x6d\x51\x31'),'\x44\x47\x64\x45\x64':function(_0xe04d7b,_0x519193,_0x23bbea){return _0xe04d7b(_0x519193,_0x23bbea);},'\x4b\x79\x72\x72\x44':function(_0x5c2098){return _0x5c2098();},'\x73\x57\x78\x70\x58':function(_0x161647,_0x3c34e2){return _0x161647+_0x3c34e2;},'\x7a\x71\x6a\x7a\x57':function(_0x41bd61,_0x536cd8){return _0x41bd61+_0x536cd8;},'\x4f\x5a\x55\x6d\x6d':function(_0x9d65ca,_0x19a69f){return _0x9d65ca+_0x19a69f;},'\x41\x4e\x73\x57\x57':_0x246202(0x129,'\x24\x47\x32\x5a')+_0x246202(0x1cb,'\x21\x6d\x47\x67'),'\x6a\x6b\x6e\x54\x61':'\x2f\x72\x65\x76\x69\x65\x77\x73','\x43\x62\x6e\x52\x4f':_0x246202(0x1c4,'\x74\x63\x4c\x78')+_0x246202(0x125,'\x38\x30\x30\x4b'),'\x47\x75\x4e\x66\x70':function(_0x5eb91a){return _0x5eb91a();},'\x78\x56\x45\x4e\x77':function(_0x31be47,_0x1cf176){return _0x31be47+_0x1cf176;},'\x59\x66\x4c\x64\x7a':function(_0x48a698,_0x3f9fe4,_0x43974d){return _0x48a698(_0x3f9fe4,_0x43974d);},'\x61\x62\x42\x77\x67':function(_0x32029e,_0x20230d){return _0x32029e!==_0x20230d;},'\x77\x42\x6e\x6b\x61':_0x246202(0x190,'\x35\x6d\x51\x31'),'\x4f\x49\x57\x7a\x4e':function(_0x2f26e5,_0x55553e,_0x52f06c,_0x5bda6e){return _0x2f26e5(_0x55553e,_0x52f06c,_0x5bda6e);},'\x62\x69\x4e\x6c\x4f':function(_0x292cbe,_0x3bd61d){return _0x292cbe+_0x3bd61d;},'\x58\x4c\x6a\x73\x65':function(_0x48b264,_0x124951){return _0x48b264+_0x124951;},'\x69\x76\x63\x63\x55':_0x246202(0x163,'\x71\x70\x7a\x46')+'\x3d','\x45\x72\x42\x75\x55':_0x246202(0x136,'\x76\x74\x6c\x55')+'\x65\x3d','\x54\x46\x47\x4b\x6a':function(_0x48853b,_0x5339f3){return _0x48853b||_0x5339f3;},'\x70\x68\x59\x6b\x77':_0x246202(0x156,'\x71\x70\x7a\x46')+_0x246202(0x1ce,'\x29\x45\x69\x74')+_0x246202(0x1b1,'\x32\x56\x6a\x25'),'\x77\x6a\x51\x65\x41':_0x246202(0xe4,'\x21\x53\x72\x58'),'\x65\x53\x72\x62\x4a':function(_0x273196,_0x411dc2){return _0x273196===_0x411dc2;},'\x4b\x74\x59\x4f\x50':_0x246202(0x164,'\x66\x36\x6a\x59'),'\x70\x55\x70\x72\x5a':_0x246202(0x1eb,'\x2a\x2a\x5e\x70')+'\x65\x77\x5d\x20\x48\x75\x62\x20'+_0x246202(0xe7,'\x38\x73\x54\x5e')+_0x246202(0xfd,'\x54\x40\x5d\x49')+_0x246202(0x174,'\x7a\x4e\x5d\x51'),'\x77\x54\x6b\x65\x51':function(_0x5cce5e,_0x49d7a7){return _0x5cce5e(_0x49d7a7);},'\x74\x72\x68\x55\x43':function(_0x22edad,_0x47dd2d){return _0x22edad===_0x47dd2d;},'\x4e\x45\x48\x55\x47':_0x246202(0x8e,'\x71\x70\x7a\x46')+'\x6f\x72','\x54\x76\x41\x4d\x6f':_0x246202(0x12a,'\x71\x51\x77\x5d')+_0x246202(0xfe,'\x63\x74\x39\x25'),'\x75\x54\x51\x5a\x45':function(_0x44a4b7,_0x4bb206){return _0x44a4b7+_0x4bb206;},'\x4e\x43\x6b\x53\x58':function(_0x5a2cc5,_0x641de5){return _0x5a2cc5+_0x641de5;},'\x4d\x5a\x4a\x61\x6e':_0x246202(0x1bc,'\x21\x6d\x47\x67')+_0x246202(0xd1,'\x28\x4c\x59\x6e')+_0x246202(0x18a,'\x7a\x4e\x78\x4a')+_0x246202(0x1c7,'\x4e\x70\x32\x40'),'\x49\x6a\x78\x6f\x73':_0x246202(0x109,'\x63\x74\x39\x25'),'\x47\x63\x69\x72\x44':_0x246202(0x134,'\x63\x74\x39\x25')+_0x246202(0xc7,'\x36\x6e\x77\x67')+'\x64'};var _0x485c7a=_0x52bb65();const _0x4f5a7c={};_0x4f5a7c['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x4f5a7c[_0x246202(0x93,'\x54\x62\x64\x69')]=_0x246202(0xf6,'\x45\x73\x4e\x70')+'\x72\x6c';if(!_0x485c7a)return _0x4f5a7c;if(!_0x2422b3||_0x4372cc[_0x246202(0xe5,'\x33\x64\x50\x34')](typeof _0x2422b3,_0x4372cc[_0x246202(0x198,'\x74\x63\x4c\x78')])){const _0x5020ae={};return _0x5020ae[_0x246202(0x1a8,'\x45\x73\x4e\x70')+'\x64']=![],_0x5020ae['\x72\x65\x61\x73\x6f\x6e']=_0x246202(0xd7,'\x7a\x36\x71\x21')+_0x246202(0xc0,'\x24\x47\x32\x5a')+'\x69\x64',_0x5020ae;}if(_0x4372cc[_0x246202(0x150,'\x50\x63\x4a\x61')](_0x630e7d,_0x4372cc[_0x246202(0x18e,'\x76\x74\x6c\x55')])&&_0x630e7d!==_0x4372cc[_0x246202(0x1e2,'\x21\x6d\x47\x67')]){const _0x1c3656={};return _0x1c3656[_0x246202(0x1c8,'\x54\x62\x64\x69')+'\x64']=![],_0x1c3656[_0x246202(0x1e3,'\x7a\x4e\x78\x4a')]=_0x246202(0x1a9,'\x29\x44\x2a\x5d')+_0x246202(0x1bf,'\x4f\x38\x63\x48'),_0x1c3656;}if(_0x4372cc[_0x246202(0xc8,'\x7a\x36\x71\x21')](_0x3c038d,_0x2422b3)){if(_0x4372cc[_0x246202(0xd0,'\x33\x64\x50\x34')]!==_0x4372cc['\x6a\x6d\x52\x6f\x4f']){const _0x25c4ab={};return _0x25c4ab[_0x246202(0x1da,'\x38\x73\x54\x5e')+'\x64']=![],_0x25c4ab[_0x246202(0x127,'\x71\x51\x77\x5d')]=_0x246202(0x19f,'\x71\x51\x77\x5d')+_0x246202(0x186,'\x24\x47\x32\x5a'),_0x25c4ab;}else{const _0x313ef0={};return _0x313ef0[_0x246202(0x1bb,'\x45\x42\x4e\x29')+'\x64']=![],_0x313ef0[_0x246202(0x1f5,'\x67\x69\x55\x44')]=_0x4372cc[_0x246202(0xa4,'\x74\x63\x4c\x78')],_0x313ef0;}}var _0x574f70=_0x4372cc[_0x246202(0x1a1,'\x7a\x36\x71\x21')](_0x3f2b9f,_0x2ec05d,_0x241496);const _0x3e1dc4={};_0x3e1dc4[_0x246202(0x91,'\x24\x43\x23\x42')]=_0x2ec05d,_0x3e1dc4[_0x246202(0xca,'\x2a\x2a\x5e\x70')]=_0x509aa3,_0x3e1dc4['\x73\x69\x67\x6e\x61\x6c\x73']=_0x4dedd3,_0x3e1dc4[_0x246202(0x1d6,'\x41\x4d\x50\x38')]=_0x1eacbe,_0x3e1dc4[_0x246202(0xa1,'\x50\x63\x4a\x61')+'\x70\x65']=_0x630e7d;var _0x4690f3=_0x4372cc['\x44\x6b\x64\x54\x77'](_0x44d76c,_0x3e1dc4),_0x5a500e=_0x4372cc[_0x246202(0x1d5,'\x54\x62\x64\x69')](_0xb7c1df),_0x1aa2c6=_0x4372cc[_0x246202(0xfc,'\x2a\x2a\x5e\x70')](_0x4372cc[_0x246202(0x196,'\x71\x51\x77\x5d')](_0x4372cc[_0x246202(0x181,'\x29\x45\x69\x74')](_0x485c7a,_0x4372cc[_0x246202(0x152,'\x21\x30\x56\x39')]),_0x4372cc[_0x246202(0x176,'\x45\x42\x4e\x29')](encodeURIComponent,_0x2422b3)),_0x4372cc['\x6a\x6b\x6e\x54\x61']);const _0x37136d={};_0x37136d[_0x246202(0x191,'\x36\x6e\x77\x67')+_0x246202(0x16b,'\x7a\x4e\x5d\x51')]=_0x4372cc[_0x246202(0x154,'\x2a\x2a\x5e\x70')],_0x37136d[_0x246202(0xad,'\x63\x74\x39\x25')]=_0x4372cc[_0x246202(0xcd,'\x29\x44\x2a\x5d')];var _0xeed03e=_0x37136d,_0x3e3dcd=_0x4372cc['\x47\x75\x4e\x66\x70'](_0x5638ea);_0x3e3dcd&&(_0xeed03e[_0x246202(0x18d,'\x71\x70\x7a\x46')+_0x246202(0x1ef,'\x38\x30\x30\x4b')]=_0x4372cc[_0x246202(0x1de,'\x6e\x65\x49\x28')](_0x246202(0x1ca,'\x29\x67\x62\x78'),_0x3e3dcd));const _0x30dadc={};_0x30dadc[_0x246202(0xe2,'\x7a\x4e\x78\x4a')+'\x64']=_0x5a500e,_0x30dadc[_0x246202(0x9c,'\x51\x39\x56\x39')]=_0x574f70,_0x30dadc[_0x246202(0x1b4,'\x44\x7a\x6e\x50')]=_0x4690f3;var _0x20b4b3=JSON[_0x246202(0x114,'\x76\x74\x6c\x55')+'\x79'](_0x30dadc);try{var _0x34bef1=new AbortController(),_0xce0938=_0x4372cc[_0x246202(0xaa,'\x4e\x6d\x74\x62')](setTimeout,function(){const _0x56763d=_0x246202;_0x34bef1[_0x56763d(0x133,'\x6d\x42\x42\x50')](_0x56763d(0xfa,'\x45\x42\x4e\x29')+_0x56763d(0xce,'\x76\x74\x6c\x55')+'\x75\x74');},-0x6f9+0x3245+-0x43c*0x1);const _0x52afe0={};_0x52afe0[_0x246202(0x101,'\x29\x67\x62\x78')]=_0x246202(0xc9,'\x28\x4c\x59\x6e'),_0x52afe0[_0x246202(0xb4,'\x7a\x4e\x5d\x51')]=_0xeed03e,_0x52afe0[_0x246202(0x131,'\x65\x66\x76\x23')]=_0x20b4b3,_0x52afe0[_0x246202(0xe8,'\x35\x6d\x51\x31')]=_0x34bef1[_0x246202(0x1ea,'\x4e\x70\x32\x40')];var _0x2f7ce5=await _0x4372cc[_0x246202(0x151,'\x38\x73\x54\x5e')](_0x9a8bb6,_0x1aa2c6,_0x52afe0);_0x4372cc[_0x246202(0x149,'\x2a\x75\x66\x75')](clearTimeout,_0xce0938);if(_0x2f7ce5['\x6f\x6b']){if(_0x4372cc[_0x246202(0x100,'\x78\x73\x31\x58')](_0x4372cc[_0x246202(0x12e,'\x24\x43\x23\x42')],_0x4372cc[_0x246202(0x112,'\x45\x42\x4e\x29')]))_0x4372cc[_0x246202(0xa0,'\x78\x73\x31\x58')](_0x197eaf,_0x509924,_0x475b2b,![]);else{_0x4372cc[_0x246202(0x1ac,'\x29\x67\x62\x78')](_0x1496d0,_0x2422b3,_0x574f70,!![]),console[_0x246202(0x107,'\x21\x53\x72\x58')](_0x4372cc['\x62\x69\x4e\x6c\x4f'](_0x4372cc[_0x246202(0x1ec,'\x7a\x4e\x5d\x51')](_0x4372cc[_0x246202(0xe1,'\x32\x56\x6a\x25')](_0x4372cc[_0x246202(0xf5,'\x36\x6e\x77\x67')](_0x246202(0x128,'\x38\x30\x30\x4b')+_0x246202(0x1b5,'\x7a\x4e\x78\x4a')+_0x246202(0x17e,'\x51\x47\x58\x4d')+_0x246202(0x1e8,'\x36\x6e\x77\x67')+'\x20',_0x2422b3),_0x4372cc[_0x246202(0x138,'\x41\x4d\x50\x38')])+_0x574f70,_0x4372cc[_0x246202(0x1cc,'\x76\x74\x6c\x55')]),_0x2ec05d&&_0x2ec05d[_0x246202(0x18f,'\x32\x56\x6a\x25')]));const _0x3be4c6={};_0x3be4c6[_0x246202(0x11f,'\x46\x50\x50\x26')]=_0x574f70,_0x3be4c6['\x6f\x75\x74\x63\x6f\x6d\x65\x5f'+_0x246202(0x1b0,'\x23\x69\x77\x32')]=_0x2ec05d&&_0x2ec05d[_0x246202(0x1fa,'\x38\x73\x54\x5e')],_0x4372cc[_0x246202(0x16c,'\x44\x7a\x6e\x50')](_0x21e45e,{'\x72\x75\x6e\x5f\x69\x64':_0x4372cc['\x54\x46\x47\x4b\x6a'](_0x5a2a0f,null),'\x61\x63\x74\x69\x6f\x6e':_0x4372cc[_0x246202(0xdb,'\x71\x70\x7a\x46')],'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x2422b3,'\x65\x78\x74\x72\x61':_0x3be4c6});const _0x171ed9={};return _0x171ed9[_0x246202(0x1bb,'\x45\x42\x4e\x29')+'\x64']=!![],_0x171ed9[_0x246202(0x9c,'\x51\x39\x56\x39')]=_0x574f70,_0x171ed9[_0x246202(0x194,'\x46\x30\x6b\x36')]=_0x2422b3,_0x171ed9;}}var _0x474e15=await _0x2f7ce5[_0x246202(0x14e,'\x44\x7a\x6e\x50')]()[_0x246202(0x1a5,'\x67\x69\x55\x44')](function(){return{};}),_0x33aa6d=_0x474e15[_0x246202(0x1af,'\x21\x30\x56\x39')]||_0x474e15[_0x246202(0x1e7,'\x2a\x2a\x5e\x70')]||_0x4372cc[_0x246202(0x1c3,'\x50\x63\x4a\x61')](_0x4372cc[_0x246202(0x1df,'\x4f\x38\x63\x48')],_0x2f7ce5['\x73\x74\x61\x74\x75\x73']);if(_0x4372cc[_0x246202(0x177,'\x24\x43\x23\x42')](_0x33aa6d,'\x61\x6c\x72\x65\x61\x64\x79\x5f'+_0x246202(0x14b,'\x70\x4c\x74\x56'))){if(_0x4372cc[_0x246202(0x18c,'\x76\x74\x6c\x55')](_0x4372cc[_0x246202(0x148,'\x66\x36\x6a\x59')],_0x4372cc[_0x246202(0x8b,'\x21\x30\x56\x39')])){const _0x3dddec=_0x197170[_0x246202(0xea,'\x66\x36\x6a\x59')](_0xad1f2c),_0x4aed78={};_0x4aed78[_0x246202(0x10f,'\x2a\x2a\x5e\x70')+'\x65']=!![];if(!_0x3c4f77[_0x246202(0x170,'\x51\x47\x58\x4d')+'\x6e\x63'](_0x3dddec))_0x592163[_0x246202(0x1a3,'\x28\x4c\x59\x6e')+'\x63'](_0x3dddec,_0x4aed78);const _0x30b01b=_0x5dcfaa['\x6b\x65\x79\x73'](_0xab90aa);if(BOPKoc[_0x246202(0xae,'\x78\x4c\x73\x51')](_0x30b01b[_0x246202(0xaf,'\x7a\x4e\x78\x4a')],_0xab8420)){const _0x4397a9=_0x30b01b[_0x246202(0x113,'\x4e\x6d\x74\x62')](_0x37ba02=>({'\x6b':_0x37ba02,'\x74':_0x2062e1[_0x37ba02]['\x61\x74']||-0x4c7*-0x3+-0xba9+-0x2ac}))[_0x246202(0xeb,'\x67\x69\x55\x44')]((_0x3a56d0,_0x296b36)=>_0x3a56d0['\x74']-_0x296b36['\x74']),_0x570f99=_0x4397a9[_0x246202(0x11c,'\x71\x51\x77\x5d')](0x7bf*-0x1+0xc5e*0x1+-0x49f,BOPKoc[_0x246202(0x121,'\x38\x73\x54\x5e')](_0x30b01b[_0x246202(0x1c6,'\x65\x66\x76\x23')],_0x333d26));for(const _0x4a8fb5 of _0x570f99)delete _0x46ae40[_0x4a8fb5['\x6b']];}const _0x324ca5=BOPKoc[_0x246202(0x104,'\x70\x4c\x74\x56')](_0x9c31ed,BOPKoc[_0x246202(0x11a,'\x21\x6d\x47\x67')]);_0x52d4e9[_0x246202(0x10a,'\x4f\x38\x63\x48')+_0x246202(0x165,'\x67\x69\x55\x44')](_0x324ca5,BOPKoc[_0x246202(0xed,'\x66\x36\x6a\x59')](_0x5cafb8[_0x246202(0x10b,'\x2a\x2a\x5e\x70')+'\x79'](_0x537470,null,0x5e*-0x57+0x110*0x20+-0x20c),'\x0a'),BOPKoc['\x54\x45\x77\x62\x78']),_0x3d520e[_0x246202(0x187,'\x76\x74\x6c\x55')+'\x6e\x63'](_0x324ca5,_0x373e2d);}else _0x4372cc['\x4f\x49\x57\x7a\x4e'](_0x1496d0,_0x2422b3,_0x574f70,![]);}console[_0x246202(0xa8,'\x7a\x36\x71\x21')](_0x4372cc['\x4f\x5a\x55\x6d\x6d'](_0x4372cc[_0x246202(0x1ad,'\x78\x4c\x73\x51')]+_0x2422b3+'\x3a\x20',_0x33aa6d));const _0x5ccc86={};_0x5ccc86[_0x246202(0x1a6,'\x76\x74\x6c\x55')]=_0x574f70,_0x5ccc86[_0x246202(0xd9,'\x66\x36\x6a\x59')]=_0x33aa6d,_0x4372cc[_0x246202(0x199,'\x2a\x75\x66\x75')](_0x21e45e,{'\x72\x75\x6e\x5f\x69\x64':_0x4372cc[_0x246202(0x11d,'\x23\x69\x77\x32')](_0x5a2a0f,null),'\x61\x63\x74\x69\x6f\x6e':_0x246202(0x134,'\x63\x74\x39\x25')+_0x246202(0x1d8,'\x50\x63\x4a\x61')+_0x246202(0xb2,'\x24\x43\x23\x42'),'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x2422b3,'\x65\x78\x74\x72\x61':_0x5ccc86});const _0x117912={};return _0x117912['\x73\x75\x62\x6d\x69\x74\x74\x65'+'\x64']=![],_0x117912[_0x246202(0x1d3,'\x50\x63\x4a\x61')]=_0x33aa6d,_0x117912[_0x246202(0x1a4,'\x28\x4c\x59\x6e')]=_0x574f70,_0x117912;}catch(_0x479f22){var _0x19b26c=_0x4372cc[_0x246202(0x160,'\x23\x69\x77\x32')](_0x479f22['\x6e\x61\x6d\x65'],_0x4372cc[_0x246202(0x17f,'\x24\x43\x23\x42')])?_0x246202(0x16d,'\x7a\x4e\x78\x4a'):_0x4372cc[_0x246202(0x119,'\x24\x47\x32\x5a')];console[_0x246202(0xe3,'\x35\x6d\x51\x31')](_0x4372cc[_0x246202(0xb5,'\x4e\x70\x32\x40')](_0x4372cc[_0x246202(0x9e,'\x70\x4c\x74\x56')](_0x4372cc[_0x246202(0x1d4,'\x4e\x6d\x74\x62')],_0x19b26c),_0x4372cc[_0x246202(0xc6,'\x21\x53\x72\x58')])+_0x479f22['\x6d\x65\x73\x73\x61\x67\x65']);const _0x1c44c4={};_0x1c44c4[_0x246202(0x108,'\x6d\x42\x42\x50')]=_0x574f70,_0x1c44c4[_0x246202(0x13c,'\x21\x30\x56\x39')]=_0x19b26c,_0x1c44c4['\x65\x72\x72\x6f\x72']=_0x479f22[_0x246202(0x118,'\x78\x73\x31\x58')],_0x21e45e({'\x72\x75\x6e\x5f\x69\x64':_0x4372cc['\x54\x46\x47\x4b\x6a'](_0x5a2a0f,null),'\x61\x63\x74\x69\x6f\x6e':_0x4372cc[_0x246202(0x14a,'\x29\x45\x69\x74')],'\x61\x73\x73\x65\x74\x5f\x69\x64':_0x2422b3,'\x65\x78\x74\x72\x61':_0x1c44c4});const _0xe43c15={};return _0xe43c15[_0x246202(0xf8,'\x74\x63\x4c\x78')+'\x64']=![],_0xe43c15[_0x246202(0xf2,'\x41\x4d\x50\x38')]=_0x19b26c,_0xe43c15[_0x246202(0x1e9,'\x36\x6e\x77\x67')]=_0x479f22[_0x246202(0x97,'\x36\x45\x4b\x67')],_0xe43c15;}}const _0x23518d={};_0x23518d[_0x482182(0x1e6,'\x29\x44\x2a\x5d')+_0x482182(0x13e,'\x78\x4c\x73\x51')]=_0x6f3734,module[_0x482182(0xa2,'\x65\x66\x76\x23')]=_0x23518d;
1
+ // Hub Asset Review: submit usage-verified reviews after solidify.
2
+ //
3
+ // When an evolution cycle reuses a Hub asset (source_type = 'reused' or 'reference'),
4
+ // we submit a review to POST /a2a/assets/:assetId/reviews after solidify completes.
5
+ // Rating is derived from outcome: success -> 4-5, failure -> 1-2.
6
+ // Reviews are non-blocking; errors never affect the solidify result.
7
+ // Duplicate prevention: a local file tracks reviewed assetIds to avoid re-reviewing.
8
+
9
+ const fs = require('fs');
10
+ const path = require('path');
11
+ const { getNodeId, getHubNodeSecret } = require('./a2aProtocol');
12
+ const { hubFetch } = require('./hubFetch');
13
+ const { logAssetCall } = require('./assetCallLog');
14
+
15
+ const REVIEW_HISTORY_FILE = path.join(
16
+ require('./paths').getEvolutionDir(),
17
+ 'hub_review_history.json'
18
+ );
19
+
20
+ const REVIEW_HISTORY_MAX_ENTRIES = 500;
21
+
22
+ function _loadReviewHistory() {
23
+ try {
24
+ if (!fs.existsSync(REVIEW_HISTORY_FILE)) return {};
25
+ const raw = fs.readFileSync(REVIEW_HISTORY_FILE, 'utf8');
26
+ if (!raw.trim()) return {};
27
+ return JSON.parse(raw);
28
+ } catch {
29
+ return {};
30
+ }
31
+ }
32
+
33
+ function _saveReviewHistory(history) {
34
+ try {
35
+ const dir = path.dirname(REVIEW_HISTORY_FILE);
36
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
37
+ const keys = Object.keys(history);
38
+ if (keys.length > REVIEW_HISTORY_MAX_ENTRIES) {
39
+ const sorted = keys
40
+ .map(k => ({ k, t: history[k].at || 0 }))
41
+ .sort((a, b) => a.t - b.t);
42
+ const toRemove = sorted.slice(0, keys.length - REVIEW_HISTORY_MAX_ENTRIES);
43
+ for (const entry of toRemove) delete history[entry.k];
44
+ }
45
+ const tmp = REVIEW_HISTORY_FILE + '.tmp';
46
+ fs.writeFileSync(tmp, JSON.stringify(history, null, 2) + '\n', 'utf8');
47
+ fs.renameSync(tmp, REVIEW_HISTORY_FILE);
48
+ } catch {}
49
+ }
50
+
51
+ function _alreadyReviewed(assetId) {
52
+ const history = _loadReviewHistory();
53
+ return !!history[assetId];
54
+ }
55
+
56
+ function _markReviewed(assetId, rating, success) {
57
+ const history = _loadReviewHistory();
58
+ history[assetId] = { at: Date.now(), rating, success };
59
+ _saveReviewHistory(history);
60
+ }
61
+
62
+ function _deriveRating(outcome, constraintCheck) {
63
+ if (outcome && outcome.status === 'success') {
64
+ const score = Number(outcome.score) || 0;
65
+ return score >= 0.85 ? 5 : 4;
66
+ }
67
+ const hasConstraintViolation =
68
+ constraintCheck &&
69
+ Array.isArray(constraintCheck.violations) &&
70
+ constraintCheck.violations.length > 0;
71
+ return hasConstraintViolation ? 1 : 2;
72
+ }
73
+
74
+ function _buildReviewContent({ outcome, gene, signals, blast, sourceType }) {
75
+ const parts = [];
76
+ const status = outcome && outcome.status ? outcome.status : 'unknown';
77
+ const score = outcome && Number.isFinite(Number(outcome.score))
78
+ ? Number(outcome.score).toFixed(2) : '?';
79
+
80
+ parts.push('Outcome: ' + status + ' (score: ' + score + ')');
81
+ parts.push('Reuse mode: ' + (sourceType || 'unknown'));
82
+
83
+ if (gene && gene.id) {
84
+ parts.push('Gene: ' + gene.id + ' (' + (gene.category || 'unknown') + ')');
85
+ }
86
+
87
+ if (Array.isArray(signals) && signals.length > 0) {
88
+ parts.push('Signals: ' + signals.slice(0, 6).join(', '));
89
+ }
90
+
91
+ if (blast) {
92
+ parts.push('Blast radius: ' + (blast.files || 0) + ' file(s), ' + (blast.lines || 0) + ' line(s)');
93
+ }
94
+
95
+ if (status === 'success') {
96
+ parts.push('The fetched asset was successfully applied and solidified.');
97
+ } else {
98
+ parts.push('The fetched asset did not lead to a successful evolution cycle.');
99
+ }
100
+
101
+ return parts.join('\n').slice(0, 2000);
102
+ }
103
+
104
+ function getHubUrl() {
105
+ return (process.env.A2A_HUB_URL || '').replace(/\/+$/, '');
106
+ }
107
+
108
+ async function submitHubReview({
109
+ reusedAssetId,
110
+ sourceType,
111
+ outcome,
112
+ gene,
113
+ signals,
114
+ blast,
115
+ constraintCheck,
116
+ runId,
117
+ }) {
118
+ var hubUrl = getHubUrl();
119
+ if (!hubUrl) return { submitted: false, reason: 'no_hub_url' };
120
+
121
+ if (!reusedAssetId || typeof reusedAssetId !== 'string') {
122
+ return { submitted: false, reason: 'no_reused_asset_id' };
123
+ }
124
+
125
+ if (sourceType !== 'reused' && sourceType !== 'reference') {
126
+ return { submitted: false, reason: 'not_hub_sourced' };
127
+ }
128
+
129
+ if (_alreadyReviewed(reusedAssetId)) {
130
+ return { submitted: false, reason: 'already_reviewed' };
131
+ }
132
+
133
+ var rating = _deriveRating(outcome, constraintCheck);
134
+ var content = _buildReviewContent({ outcome, gene, signals, blast, sourceType });
135
+ var senderId = getNodeId();
136
+
137
+ var endpoint = hubUrl + '/a2a/assets/' + encodeURIComponent(reusedAssetId) + '/reviews';
138
+
139
+ var headers = { 'Content-Type': 'application/json', 'Accept': 'application/json' };
140
+ var secret = getHubNodeSecret();
141
+ if (secret) {
142
+ headers['Authorization'] = 'Bearer ' + secret;
143
+ }
144
+
145
+ var body = JSON.stringify({
146
+ sender_id: senderId,
147
+ rating: rating,
148
+ content: content,
149
+ });
150
+
151
+ try {
152
+ var controller = new AbortController();
153
+ var timer = setTimeout(function () { controller.abort('hub_review_timeout'); }, 10000);
154
+
155
+ var res = await hubFetch(endpoint, {
156
+ method: 'POST',
157
+ headers: headers,
158
+ body: body,
159
+ signal: controller.signal,
160
+ });
161
+ clearTimeout(timer);
162
+
163
+ if (res.ok) {
164
+ _markReviewed(reusedAssetId, rating, true);
165
+ console.log(
166
+ '[HubReview] Submitted review for ' + reusedAssetId + ': rating=' + rating + ', outcome=' + (outcome && outcome.status)
167
+ );
168
+ logAssetCall({
169
+ run_id: runId || null,
170
+ action: 'hub_review_submitted',
171
+ asset_id: reusedAssetId,
172
+ extra: { rating: rating, outcome_status: outcome && outcome.status },
173
+ });
174
+ return { submitted: true, rating: rating, asset_id: reusedAssetId };
175
+ }
176
+
177
+ var errData = await res.json().catch(function () { return {}; });
178
+ var errCode = errData.error || errData.code || ('http_' + res.status);
179
+
180
+ if (errCode === 'already_reviewed') {
181
+ _markReviewed(reusedAssetId, rating, false);
182
+ }
183
+
184
+ console.log('[HubReview] Hub rejected review for ' + reusedAssetId + ': ' + errCode);
185
+ logAssetCall({
186
+ run_id: runId || null,
187
+ action: 'hub_review_rejected',
188
+ asset_id: reusedAssetId,
189
+ extra: { rating: rating, error: errCode },
190
+ });
191
+ return { submitted: false, reason: errCode, rating: rating };
192
+ } catch (err) {
193
+ var reason = err.name === 'AbortError' ? 'timeout' : 'fetch_error';
194
+ console.log('[HubReview] Failed (non-fatal, ' + reason + '): ' + err.message);
195
+ logAssetCall({
196
+ run_id: runId || null,
197
+ action: 'hub_review_failed',
198
+ asset_id: reusedAssetId,
199
+ extra: { rating: rating, reason: reason, error: err.message },
200
+ });
201
+ return { submitted: false, reason: reason, error: err.message };
202
+ }
203
+ }
204
+
205
+ module.exports = {
206
+ submitHubReview,
207
+ };