@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,89 @@
1
- function _0x39cc(_0x163f90,_0x2b37b1){_0x163f90=_0x163f90-(0x86*0x1+0x1*0x79d+-0x4*0x1d6);const _0x120dcc=_0x3cde();let _0xf87aa5=_0x120dcc[_0x163f90];if(_0x39cc['\x63\x58\x55\x73\x75\x50']===undefined){var _0x4ef918=function(_0x493834){const _0x414ea9='\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 _0x3dc792='',_0x512778='',_0xcf73b6=_0x3dc792+_0x4ef918,_0x2fa48f=(''+function(){return-0x12b4+-0x86c+0x1b20;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1705+0x119b+-0x289f);for(let _0x1c32f3=0x1d0d+-0x20c5*-0x1+-0x29*0x182,_0xca2f55,_0x13d34b,_0x346f8e=0x25ae+-0xd17*0x1+0x4eb*-0x5;_0x13d34b=_0x493834['\x63\x68\x61\x72\x41\x74'](_0x346f8e++);~_0x13d34b&&(_0xca2f55=_0x1c32f3%(-0x675*-0x3+-0x53*-0x13+-0x1984)?_0xca2f55*(0xd81+0x2429*0x1+-0x316a)+_0x13d34b:_0x13d34b,_0x1c32f3++%(-0x1*0x20ab+-0x1*-0x1711+0x99e))?_0x3dc792+=_0x2fa48f||_0xcf73b6['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x346f8e+(-0x72*-0x11+-0x1c23+0x1*0x149b))-(-0x1770+0x1599+0x1e1)!==0x14d4+-0x1bc2+0x6ee?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x9b5+-0x717+-0x53*0x5&_0xca2f55>>(-(-0x1bed*-0x1+0xb7*0x1d+0x1*-0x30a6)*_0x1c32f3&-0x15f7+-0x2333+0x3930)):_0x1c32f3:-0xb2d*0x1+0xb*0x151+-0x34e){_0x13d34b=_0x414ea9['\x69\x6e\x64\x65\x78\x4f\x66'](_0x13d34b);}for(let _0x12d7b7=-0x1*0x1825+-0x2f*-0x4f+0x1*0x9a4,_0x5293e2=_0x3dc792['\x6c\x65\x6e\x67\x74\x68'];_0x12d7b7<_0x5293e2;_0x12d7b7++){_0x512778+='\x25'+('\x30\x30'+_0x3dc792['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x12d7b7)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x17d8+0x1375*0x1+-0x2b3d))['\x73\x6c\x69\x63\x65'](-(-0x6cf+-0x24e0+0x2bb1));}return decodeURIComponent(_0x512778);};const _0x283a50=function(_0x126fd7,_0x136fb7){let _0x73c247=[],_0x3f9af6=-0x20f0+-0x1154+-0xc91*-0x4,_0x35d036,_0x2bd9b9='';_0x126fd7=_0x4ef918(_0x126fd7);let _0xf117b0;for(_0xf117b0=-0x579+0xd*0x61+0x8c;_0xf117b0<-0x107b+-0x1de0+0x2f5b;_0xf117b0++){_0x73c247[_0xf117b0]=_0xf117b0;}for(_0xf117b0=-0x1*0x141b+-0x7b0+0x1bcb;_0xf117b0<0x1*0x20b9+0x2*-0x9cd+0x1*-0xc1f;_0xf117b0++){_0x3f9af6=(_0x3f9af6+_0x73c247[_0xf117b0]+_0x136fb7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf117b0%_0x136fb7['\x6c\x65\x6e\x67\x74\x68']))%(-0x9*0x233+-0x264b+0x3b16),_0x35d036=_0x73c247[_0xf117b0],_0x73c247[_0xf117b0]=_0x73c247[_0x3f9af6],_0x73c247[_0x3f9af6]=_0x35d036;}_0xf117b0=0xf*-0x4e+0x329+0x169,_0x3f9af6=-0x7e8+0x5*0x2cb+-0x60f;for(let _0x972a47=0x52*0xd+0x1a98+-0xf61*0x2;_0x972a47<_0x126fd7['\x6c\x65\x6e\x67\x74\x68'];_0x972a47++){_0xf117b0=(_0xf117b0+(-0x3*0xd03+-0x18a7+0x3fb1))%(-0x6*-0x397+-0x39*0x85+-0x65*-0x17),_0x3f9af6=(_0x3f9af6+_0x73c247[_0xf117b0])%(0x10*-0x1f0+-0x2034+0x4034),_0x35d036=_0x73c247[_0xf117b0],_0x73c247[_0xf117b0]=_0x73c247[_0x3f9af6],_0x73c247[_0x3f9af6]=_0x35d036,_0x2bd9b9+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x126fd7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x972a47)^_0x73c247[(_0x73c247[_0xf117b0]+_0x73c247[_0x3f9af6])%(0x15c2+0x1591+-0x2a53)]);}return _0x2bd9b9;};_0x39cc['\x48\x57\x52\x52\x51\x41']=_0x283a50,_0x39cc['\x48\x41\x53\x66\x6c\x53']={},_0x39cc['\x63\x58\x55\x73\x75\x50']=!![];}const _0x24da14=_0x120dcc[0x24c3+0x1*0x264c+-0x1905*0x3],_0x1cc72a=_0x163f90+_0x24da14,_0xfc9736=_0x39cc['\x48\x41\x53\x66\x6c\x53'][_0x1cc72a];if(!_0xfc9736){if(_0x39cc['\x53\x71\x41\x77\x49\x6d']===undefined){const _0x46e240=function(_0x209d53){this['\x61\x51\x47\x54\x47\x6b']=_0x209d53,this['\x64\x49\x68\x50\x5a\x77']=[0x252+-0x1fe0+-0x2f*-0xa1,0x1aec+0x1361+0x1b*-0x1b7,-0x4*0x905+0x1fc7+0x3*0x16f],this['\x79\x45\x50\x79\x4f\x55']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4b\x69\x76\x76\x45\x7a']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x48\x73\x49\x64\x55\x43']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x46e240['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x41\x52\x62\x68\x48\x62']=function(){const _0xff047e=new RegExp(this['\x4b\x69\x76\x76\x45\x7a']+this['\x48\x73\x49\x64\x55\x43']),_0x3e3e2b=_0xff047e['\x74\x65\x73\x74'](this['\x79\x45\x50\x79\x4f\x55']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x64\x49\x68\x50\x5a\x77'][0x25c0+-0x2686+0x1*0xc7]:--this['\x64\x49\x68\x50\x5a\x77'][-0x1*-0x8f3+-0x192*0x7+0x20b];return this['\x71\x69\x51\x73\x50\x68'](_0x3e3e2b);},_0x46e240['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x71\x69\x51\x73\x50\x68']=function(_0x1a5766){if(!Boolean(~_0x1a5766))return _0x1a5766;return this['\x44\x52\x69\x6d\x73\x4e'](this['\x61\x51\x47\x54\x47\x6b']);},_0x46e240['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x44\x52\x69\x6d\x73\x4e']=function(_0x1a9c77){for(let _0x3c67ce=0x7de+0x1fa0+-0x277e,_0x527e31=this['\x64\x49\x68\x50\x5a\x77']['\x6c\x65\x6e\x67\x74\x68'];_0x3c67ce<_0x527e31;_0x3c67ce++){this['\x64\x49\x68\x50\x5a\x77']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x527e31=this['\x64\x49\x68\x50\x5a\x77']['\x6c\x65\x6e\x67\x74\x68'];}return _0x1a9c77(this['\x64\x49\x68\x50\x5a\x77'][0x11*-0x5a+-0xba3*-0x1+-0x45*0x15]);},(''+function(){return 0x14*-0xc6+0x20c*0x7+0x124;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x2*-0xbb1+-0x2e0+-0x1*-0x1a43)&&new _0x46e240(_0x39cc)['\x41\x52\x62\x68\x48\x62'](),_0x39cc['\x53\x71\x41\x77\x49\x6d']=!![];}_0xf87aa5=_0x39cc['\x48\x57\x52\x52\x51\x41'](_0xf87aa5,_0x2b37b1),_0x39cc['\x48\x41\x53\x66\x6c\x53'][_0x1cc72a]=_0xf87aa5;}else _0xf87aa5=_0xfc9736;return _0xf87aa5;}const _0x3029f6=_0x39cc;(function(_0x2f6f11,_0x1138fe){const _0x1d0958=_0x39cc,_0x558d4f=_0x2f6f11();while(!![]){try{const _0x521247=-parseInt(_0x1d0958(0x13c,'\x58\x78\x6a\x6c'))/(-0x1*-0x62e+-0x5e9*0x4+0x1177)*(parseInt(_0x1d0958(0xd4,'\x77\x38\x6c\x7a'))/(0x7*0x56b+-0xa23+-0x1bc8))+-parseInt(_0x1d0958(0x103,'\x66\x47\x7a\x67'))/(-0x13a8+0xbe3+0x7c8)+-parseInt(_0x1d0958(0x15a,'\x26\x5a\x25\x28'))/(-0xabd+-0x17e*-0x3+0x647)*(parseInt(_0x1d0958(0x17a,'\x79\x77\x4d\x61'))/(0xeb*0x29+0x1b1*0x13+-0x45c1))+parseInt(_0x1d0958(0x125,'\x79\x77\x4d\x61'))/(-0xe93+-0x1*-0xd15+0x184)*(-parseInt(_0x1d0958(0x107,'\x58\x78\x5b\x55'))/(-0x1cf6+0x1*-0x111e+-0x431*-0xb))+parseInt(_0x1d0958(0x163,'\x37\x57\x75\x5e'))/(0x8db*-0x3+-0x2468+0x7f*0x7f)*(-parseInt(_0x1d0958(0xea,'\x26\x5a\x25\x28'))/(-0x23e2*0x1+-0x2493+0x487e))+-parseInt(_0x1d0958(0x191,'\x72\x70\x26\x59'))/(0x1fdd*0x1+0xf87+-0x1a2*0x1d)*(-parseInt(_0x1d0958(0x109,'\x58\x78\x6a\x6c'))/(-0x250d+-0xe01+0x3319))+parseInt(_0x1d0958(0x126,'\x77\x38\x6c\x7a'))/(-0x1*0x236f+0x1*-0x20d2+0x444d);if(_0x521247===_0x1138fe)break;else _0x558d4f['push'](_0x558d4f['shift']());}catch(_0x2036b6){_0x558d4f['push'](_0x558d4f['shift']());}}}(_0x3cde,-0x23*-0x3529+0x44d04+-0x1f286*0x2));const _0x4aed16=(function(){const _0x1093c5=_0x39cc,_0x30b0b8={'\x6d\x44\x75\x47\x43':function(_0x3d977d,_0x34bf0b,_0x1a80b0){return _0x3d977d(_0x34bf0b,_0x1a80b0);},'\x4c\x69\x68\x66\x72':'\x61\x72\x65\x61\x3a\x73\x6b\x69'+_0x1093c5(0x17e,'\x51\x32\x69\x53'),'\x48\x54\x7a\x50\x61':function(_0x4b29b9,_0x4a0484){return _0x4b29b9===_0x4a0484;},'\x7a\x5a\x51\x75\x66':_0x1093c5(0x195,'\x51\x32\x69\x53'),'\x4c\x6b\x65\x53\x48':function(_0x103513,_0x9ee0dc){return _0x103513===_0x9ee0dc;},'\x75\x5a\x6e\x57\x55':'\x53\x41\x57\x62\x42'};let _0x21d613=!![];return function(_0x55ce8a,_0x2550fd){const _0x22b054=_0x1093c5,_0x5a3871={'\x58\x72\x63\x63\x77':function(_0x3dbfff,_0x526c4c,_0x3b7322){return _0x30b0b8['\x6d\x44\x75\x47\x43'](_0x3dbfff,_0x526c4c,_0x3b7322);},'\x48\x56\x71\x69\x70':_0x30b0b8['\x4c\x69\x68\x66\x72'],'\x71\x66\x4f\x6e\x68':function(_0x1046eb,_0x5e377a){return _0x1046eb(_0x5e377a);},'\x55\x63\x7a\x4f\x66':function(_0x58112f,_0x1aa85f){const _0x39a4a4=_0x39cc;return _0x30b0b8[_0x39a4a4(0x105,'\x72\x70\x26\x59')](_0x58112f,_0x1aa85f);},'\x71\x55\x46\x59\x58':_0x30b0b8['\x7a\x5a\x51\x75\x66']};if(_0x30b0b8[_0x22b054(0x100,'\x33\x21\x61\x76')](_0x30b0b8[_0x22b054(0x12a,'\x66\x78\x32\x62')],_0x22b054(0x16d,'\x26\x43\x26\x31'))){if(_0x1199b7[_0x22b054(0x136,'\x33\x21\x61\x76')](_0x33b1d6[_0x1f55f6]))_0x2bc150++;}else{const _0x268ceb=_0x21d613?function(){const _0x70da9f=_0x22b054;if(_0x5a3871[_0x70da9f(0x183,'\x56\x69\x6f\x68')](_0x5a3871[_0x70da9f(0xd6,'\x26\x43\x26\x31')],_0x5a3871[_0x70da9f(0xe1,'\x77\x38\x6c\x7a')])){if(_0x2550fd){if(_0x70da9f(0x11d,'\x4b\x29\x64\x36')!==_0x70da9f(0x178,'\x5d\x5a\x4a\x49'))_0x5a3871[_0x70da9f(0xdb,'\x26\x5a\x25\x28')](_0x12632c,_0x290299,_0x5a3871[_0x70da9f(0x115,'\x63\x6d\x52\x55')]);else{const _0x42c589=_0x2550fd[_0x70da9f(0x170,'\x73\x51\x48\x33')](_0x55ce8a,arguments);return _0x2550fd=null,_0x42c589;}}}else{const _0x17ad14={'\x76\x51\x52\x49\x42':function(_0x3c4d5f,_0x15df57){return _0x5a3871['\x71\x66\x4f\x6e\x68'](_0x3c4d5f,_0x15df57);}};return _0x5dad7b[_0x70da9f(0x16e,'\x37\x57\x75\x5e')](new _0x1fb6ac((_0x1ce043[_0x70da9f(0x192,'\x31\x4b\x68\x5e')](_0x314832)?_0x23ac90:[])['\x66\x69\x6c\x74\x65\x72'](_0x5d6ee1)[_0x70da9f(0x13b,'\x77\x38\x6c\x7a')](function(_0x29c1d5){const _0x5ca2c4=_0x70da9f;return _0x17ad14[_0x5ca2c4(0x104,'\x51\x62\x5b\x5b')](_0x37347f,_0x29c1d5)[_0x5ca2c4(0xf3,'\x6c\x6b\x6d\x56')]();})[_0x70da9f(0xdc,'\x47\x24\x35\x6c')](_0x475493)));}}:function(){};return _0x21d613=![],_0x268ceb;}};}()),_0x181451=_0x4aed16(this,function(){const _0x3ec0b9=_0x39cc,_0x25dc79={};_0x25dc79[_0x3ec0b9(0x158,'\x58\x78\x5b\x55')]=_0x3ec0b9(0x111,'\x51\x32\x69\x53')+_0x3ec0b9(0xe7,'\x66\x21\x5d\x6d');const _0x4d2567=_0x25dc79;return _0x181451[_0x3ec0b9(0xcb,'\x66\x78\x32\x62')]()[_0x3ec0b9(0xfa,'\x77\x38\x6c\x7a')](_0x4d2567[_0x3ec0b9(0xe5,'\x66\x47\x7a\x67')])[_0x3ec0b9(0xeb,'\x72\x70\x26\x59')]()[_0x3ec0b9(0x147,'\x4b\x29\x64\x36')+_0x3ec0b9(0xde,'\x58\x78\x5b\x55')](_0x181451)[_0x3ec0b9(0x117,'\x79\x77\x4d\x61')](_0x4d2567[_0x3ec0b9(0x18f,'\x77\x38\x6c\x7a')]);});_0x181451();function _0x37fc8a(_0x3e82f4){const _0x2649b0=_0x39cc,_0x54f788={'\x70\x4c\x67\x46\x7a':function(_0x294cf9,_0x174dd1){return _0x294cf9(_0x174dd1);}};return Array[_0x2649b0(0x11f,'\x62\x21\x58\x30')](new Set((Array[_0x2649b0(0x17b,'\x34\x33\x51\x5b')](_0x3e82f4)?_0x3e82f4:[])[_0x2649b0(0x16c,'\x79\x77\x4d\x61')](Boolean)[_0x2649b0(0x18b,'\x58\x78\x5b\x55')](function(_0xb36620){const _0x2660d2=_0x2649b0;return _0x54f788['\x70\x4c\x67\x46\x7a'](String,_0xb36620)[_0x2660d2(0x12f,'\x25\x4b\x29\x56')]();})[_0x2649b0(0x129,'\x4c\x50\x51\x46')](Boolean)));}function _0x4859d7(_0x507031,_0x2da65d){const _0xc02cf0=_0x39cc,_0x18ff11={'\x59\x42\x56\x75\x6c':function(_0x5953d4,_0x1cff0a){return _0x5953d4(_0x1cff0a);}};if(!_0x2da65d)return;_0x507031[_0xc02cf0(0xd7,'\x25\x5d\x6a\x51')](_0x18ff11[_0xc02cf0(0xec,'\x26\x43\x26\x31')](String,_0x2da65d)[_0xc02cf0(0x12f,'\x25\x4b\x29\x56')]());}function _0x4742d0(_0xa4970c,_0x4204fc){const _0x42cf33=_0x39cc,_0x34639d={'\x6d\x79\x45\x41\x73':function(_0x389110,_0x5046e1){return _0x389110!==_0x5046e1;},'\x47\x6d\x4b\x59\x6e':'\x6f\x62\x6a\x65\x63\x74','\x74\x65\x46\x69\x52':_0x42cf33(0x13e,'\x49\x65\x6d\x23'),'\x54\x72\x47\x4e\x79':function(_0x478c97,_0x576e02){return _0x478c97(_0x576e02);},'\x4f\x73\x44\x74\x4f':function(_0x589601,_0x2b8352){return _0x589601===_0x2b8352;},'\x6d\x63\x49\x75\x6f':_0x42cf33(0x15d,'\x4b\x29\x64\x36'),'\x6b\x43\x67\x46\x50':function(_0x38833,_0x2a1236,_0x15efc7){return _0x38833(_0x2a1236,_0x15efc7);},'\x7a\x70\x57\x59\x65':function(_0x5251fe,_0x579031,_0x497cb6){return _0x5251fe(_0x579031,_0x497cb6);},'\x71\x68\x4f\x75\x4e':function(_0x54dc50,_0x3a2ac5){return _0x54dc50(_0x3a2ac5);},'\x73\x43\x6f\x67\x62':function(_0x102c08,_0x22ed64){return _0x102c08===_0x22ed64;},'\x70\x68\x42\x58\x74':function(_0x1a40a9,_0x2db33c){return _0x1a40a9===_0x2db33c;},'\x44\x6f\x46\x70\x49':function(_0x1433c2,_0x2e936c,_0x5e4538){return _0x1433c2(_0x2e936c,_0x5e4538);},'\x52\x58\x79\x6f\x77':'\x61\x72\x65\x61\x3a\x6f\x72\x63'+_0x42cf33(0x138,'\x64\x43\x26\x31')+'\x6f\x6e','\x6f\x6b\x4e\x58\x6f':function(_0x8d3105,_0x314495){return _0x8d3105<_0x314495;},'\x6e\x79\x6b\x56\x47':function(_0x25a01b,_0x5b6cb9){return _0x25a01b===_0x5b6cb9;},'\x6e\x48\x75\x70\x42':'\x74\x46\x48\x5a\x61','\x63\x55\x66\x73\x78':_0x42cf33(0xd5,'\x78\x33\x53\x55'),'\x43\x51\x67\x46\x57':function(_0x144b35,_0x2d9420){return _0x144b35!==_0x2d9420;},'\x65\x48\x68\x45\x52':function(_0x8303dc,_0x9f3217){return _0x8303dc+_0x9f3217;},'\x64\x6c\x55\x54\x71':function(_0x46b429,_0x16e25f){return _0x46b429||_0x16e25f;},'\x61\x6c\x70\x45\x71':_0x42cf33(0x15b,'\x55\x45\x33\x28')+_0x42cf33(0x108,'\x74\x70\x32\x4a'),'\x6e\x47\x77\x6b\x74':_0x42cf33(0x16f,'\x49\x65\x6d\x23'),'\x48\x55\x76\x58\x6e':function(_0x5c4e19,_0x55b6ef,_0x287a9e){return _0x5c4e19(_0x55b6ef,_0x287a9e);},'\x6a\x4d\x75\x4b\x6f':_0x42cf33(0x148,'\x66\x47\x7a\x67')+_0x42cf33(0x12e,'\x26\x43\x26\x31'),'\x50\x4e\x68\x4a\x78':_0x42cf33(0x14e,'\x74\x70\x32\x4a')+_0x42cf33(0x12d,'\x58\x78\x6a\x6c'),'\x4a\x46\x69\x4c\x75':'\x48\x4b\x52\x71\x6b','\x6f\x45\x54\x6c\x52':_0x42cf33(0x146,'\x56\x69\x6f\x68')+_0x42cf33(0x17d,'\x71\x4d\x46\x78'),'\x77\x74\x57\x57\x42':_0x42cf33(0x197,'\x73\x51\x48\x33')+_0x42cf33(0xd3,'\x4d\x34\x36\x6d')+'\x6f\x6e','\x48\x4c\x6a\x74\x74':function(_0x5a8371,_0x2a57b9,_0x2cbb9e){return _0x5a8371(_0x2a57b9,_0x2cbb9e);},'\x54\x55\x43\x4c\x45':function(_0xfba05,_0x1c214f){return _0xfba05!==_0x1c214f;},'\x74\x6c\x4c\x4d\x56':_0x42cf33(0x141,'\x65\x61\x67\x42'),'\x6f\x5a\x41\x46\x51':_0x42cf33(0x10b,'\x64\x43\x26\x31'),'\x6d\x66\x43\x72\x53':_0x42cf33(0xfc,'\x37\x57\x75\x5e')+_0x42cf33(0x17c,'\x58\x78\x6a\x6c'),'\x62\x4d\x58\x67\x67':function(_0x591d21,_0xc54f6a,_0x78b584){return _0x591d21(_0xc54f6a,_0x78b584);},'\x4c\x42\x64\x54\x54':function(_0x1103b5,_0x113ae5){return _0x1103b5(_0x113ae5);}},_0x99323d=Array[_0x42cf33(0xf7,'\x53\x5d\x21\x79')](_0xa4970c)?_0xa4970c[_0x42cf33(0x110,'\x64\x43\x26\x31')](function(_0x2b45d4){return String(_0x2b45d4);}):[],_0x491d6b=[];for(let _0x1ff893=-0x2*-0x35c+-0x1fdc+0x1924;_0x34639d['\x6f\x6b\x4e\x58\x6f'](_0x1ff893,_0x99323d[_0x42cf33(0x164,'\x26\x43\x26\x31')]);_0x1ff893++){if(_0x34639d[_0x42cf33(0x18e,'\x55\x45\x33\x28')](_0x34639d[_0x42cf33(0x189,'\x58\x78\x6a\x6c')],_0x34639d['\x63\x55\x66\x73\x78'])){if(!_0x17c387||_0x34639d['\x6d\x79\x45\x41\x73'](typeof _0x3c3db5,_0x34639d[_0x42cf33(0x185,'\x71\x4d\x46\x78')]))return[];let _0x57cf12=[];if(_0x386108['\x63\x61\x74\x65\x67\x6f\x72\x79'])_0x57cf12[_0x42cf33(0xe2,'\x66\x21\x5d\x6d')](_0x34639d[_0x42cf33(0x16a,'\x71\x4d\x46\x78')]+_0x34639d[_0x42cf33(0x193,'\x73\x51\x48\x33')](_0x30c21b,_0x3908ee['\x63\x61\x74\x65\x67\x6f\x72\x79'])[_0x42cf33(0xd1,'\x58\x78\x5b\x55')+_0x42cf33(0xd2,'\x6c\x6b\x6d\x56')]());if(_0x4d5b27[_0x42cf33(0x106,'\x55\x6c\x5d\x78')](_0x32ba66[_0x42cf33(0x11c,'\x45\x5b\x33\x47')+_0x42cf33(0x10c,'\x4e\x6b\x53\x75')]))_0x57cf12=_0x57cf12[_0x42cf33(0xf4,'\x55\x45\x33\x28')](_0x178816[_0x42cf33(0x10e,'\x63\x6d\x52\x55')+_0x42cf33(0x173,'\x58\x78\x6a\x6c')]);if(typeof _0xf3f17['\x69\x64']===_0x42cf33(0x186,'\x45\x5b\x33\x47'))_0x57cf12[_0x42cf33(0x113,'\x74\x70\x32\x4a')](_0x573bc4['\x69\x64']);if(_0x34639d[_0x42cf33(0x151,'\x4b\x29\x64\x36')](typeof _0x1bfc18['\x73\x75\x6d\x6d\x61\x72\x79'],_0x34639d[_0x42cf33(0xe4,'\x71\x4d\x46\x78')]))_0x57cf12[_0x42cf33(0x181,'\x4b\x29\x64\x36')](_0x138253[_0x42cf33(0x14b,'\x34\x33\x51\x5b')]);return _0x34639d['\x6b\x43\x67\x46\x50'](_0x1db59d,_0x57cf12,'');}else{const _0x20f59b=_0x99323d[_0x1ff893];_0x34639d[_0x42cf33(0x128,'\x72\x70\x26\x59')](_0x4859d7,_0x491d6b,_0x20f59b);const _0x51b526=_0x20f59b[_0x42cf33(0x180,'\x65\x61\x67\x42')]('\x3a')[-0x1*0x874+-0x221f+-0x1*-0x2a93];if(_0x51b526&&_0x34639d[_0x42cf33(0x135,'\x45\x5b\x33\x47')](_0x51b526,_0x20f59b))_0x34639d[_0x42cf33(0x176,'\x56\x69\x6f\x68')](_0x4859d7,_0x491d6b,_0x51b526);}}const _0x34a23b=_0x34639d[_0x42cf33(0xd9,'\x64\x43\x26\x31')](_0x34639d[_0x42cf33(0x159,'\x4e\x49\x55\x73')](_0x99323d[_0x42cf33(0x162,'\x40\x49\x55\x6f')]('\x20'),'\x20'),_0x34639d[_0x42cf33(0xcd,'\x47\x24\x35\x6c')](String,_0x34639d[_0x42cf33(0x12b,'\x79\x77\x4d\x61')](_0x4204fc,'')))[_0x42cf33(0x17f,'\x6c\x6b\x6d\x56')+'\x61\x73\x65']();if(/(error|exception|failed|unstable|log_error|runtime|429)/[_0x42cf33(0xef,'\x25\x4b\x29\x56')](_0x34a23b)){if(_0x34639d[_0x42cf33(0xfe,'\x58\x78\x5b\x55')](_0x42cf33(0x155,'\x6c\x6b\x6d\x56'),_0x42cf33(0xf9,'\x51\x32\x69\x53'))){const _0x59d22b=_0x34639d['\x7a\x70\x57\x59\x65'](_0x260a5b,_0x40bba8,''),_0x32071a=_0x34639d['\x71\x68\x4f\x75\x4e'](_0x20f50d,_0x3302f1);if(_0x34639d[_0x42cf33(0x142,'\x58\x78\x6a\x6c')](_0x59d22b['\x6c\x65\x6e\x67\x74\x68'],-0x51*-0x4f+0x2355+0x8f*-0x6c)||_0x34639d[_0x42cf33(0x16b,'\x55\x45\x33\x28')](_0x32071a[_0x42cf33(0x153,'\x4e\x49\x55\x73')],-0x925+0x219+0x1c3*0x4))return-0x183b+-0x61f*0x3+-0xaa6*-0x4;const _0x1cf73e=new _0x35ac2c(_0x59d22b);let _0x2eda0b=0x713*0x3+-0x554+-0xfe5;for(let _0x48e21e=0x13e3+-0x1a91+0x6ae;_0x48e21e<_0x32071a['\x6c\x65\x6e\x67\x74\x68'];_0x48e21e++){if(_0x1cf73e[_0x42cf33(0x114,'\x66\x47\x7a\x67')](_0x32071a[_0x48e21e]))_0x2eda0b++;}return _0x2eda0b;}else _0x34639d[_0x42cf33(0xf8,'\x32\x4f\x23\x55')](_0x4859d7,_0x491d6b,_0x42cf33(0x132,'\x58\x78\x5b\x55')+_0x42cf33(0xe9,'\x28\x6a\x35\x66')+'\x69\x74\x79'),_0x34639d[_0x42cf33(0x175,'\x4e\x49\x55\x73')](_0x4859d7,_0x491d6b,_0x34639d[_0x42cf33(0x10a,'\x63\x6d\x52\x55')]);}if(/(protocol|prompt|audit|gep|schema|drift)/[_0x42cf33(0x182,'\x62\x21\x58\x30')](_0x34a23b)){if(_0x34639d[_0x42cf33(0xf2,'\x4e\x6b\x53\x75')](_0x34639d['\x6e\x47\x77\x6b\x74'],_0x34639d[_0x42cf33(0xce,'\x55\x6c\x5d\x78')]))return _0x34639d[_0x42cf33(0xee,'\x6a\x4a\x6c\x4d')](_0x4484aa,_0x294ce4);else _0x34639d[_0x42cf33(0x172,'\x35\x43\x6e\x64')](_0x4859d7,_0x491d6b,_0x42cf33(0x190,'\x74\x70\x32\x4a')+_0x42cf33(0x112,'\x4e\x6b\x53\x75')),_0x34639d[_0x42cf33(0x13f,'\x45\x5b\x33\x47')](_0x4859d7,_0x491d6b,_0x34639d[_0x42cf33(0x194,'\x62\x21\x58\x30')]),_0x4859d7(_0x491d6b,_0x34639d[_0x42cf33(0xf1,'\x55\x6c\x5d\x78')]);}if(/(perf|performance|bottleneck|latency|slow|throughput)/[_0x42cf33(0xdd,'\x37\x57\x75\x5e')](_0x34a23b)){if(_0x34639d[_0x42cf33(0x139,'\x63\x6d\x52\x55')](_0x34639d['\x4a\x46\x69\x4c\x75'],_0x34639d[_0x42cf33(0x18c,'\x74\x70\x32\x4a')]))_0x4859d7(_0x491d6b,_0x42cf33(0x144,'\x4e\x6b\x53\x75')+_0x42cf33(0xe6,'\x4c\x50\x51\x46')+_0x42cf33(0xe0,'\x56\x69\x6f\x68')),_0x34639d[_0x42cf33(0xf6,'\x73\x51\x48\x33')](_0x4859d7,_0x491d6b,_0x34639d[_0x42cf33(0x14f,'\x58\x78\x6a\x6c')]);else{const _0x287fe4=_0x36d314[_0x334366];_0x1314b0(_0x4a0c31,_0x287fe4);const _0x135dc4=_0x287fe4[_0x42cf33(0x160,'\x40\x49\x55\x6f')]('\x3a')[-0x214*0xd+0x22*-0x91+-0x1*-0x2e46];if(_0x135dc4&&_0x34639d['\x6d\x79\x45\x41\x73'](_0x135dc4,_0x287fe4))_0x34639d[_0x42cf33(0xf8,'\x32\x4f\x23\x55')](_0xd8ae29,_0x9285bf,_0x135dc4);}}return/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/[_0x42cf33(0x121,'\x64\x43\x26\x31')](_0x34a23b)&&(_0x34639d[_0x42cf33(0x13a,'\x55\x45\x33\x28')](_0x4859d7,_0x491d6b,_0x42cf33(0xff,'\x40\x49\x55\x6f')+_0x42cf33(0x168,'\x4e\x49\x55\x73')+'\x74\x79'),_0x4859d7(_0x491d6b,_0x34639d['\x6f\x45\x54\x6c\x52'])),/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/[_0x42cf33(0xda,'\x31\x4b\x68\x5e')](_0x34a23b)&&(_0x34639d[_0x42cf33(0x116,'\x66\x78\x32\x62')](_0x4859d7,_0x491d6b,_0x34639d[_0x42cf33(0x143,'\x58\x78\x6a\x6c')]),_0x34639d[_0x42cf33(0x11b,'\x46\x35\x24\x66')](_0x4859d7,_0x491d6b,_0x34639d[_0x42cf33(0x198,'\x4d\x34\x36\x6d')])),/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/[_0x42cf33(0x123,'\x63\x6d\x52\x55')](_0x34a23b)&&_0x34639d['\x6b\x43\x67\x46\x50'](_0x4859d7,_0x491d6b,_0x34639d['\x52\x58\x79\x6f\x77']),/(memory|narrative|reflection)/[_0x42cf33(0x199,'\x66\x78\x32\x62')](_0x34a23b)&&(_0x34639d[_0x42cf33(0xe3,'\x49\x65\x6d\x23')](_0x34639d[_0x42cf33(0x15f,'\x55\x6c\x5d\x78')],_0x34639d[_0x42cf33(0x134,'\x34\x33\x51\x5b')])?_0x4859d7(_0x491d6b,_0x34639d[_0x42cf33(0x137,'\x6c\x6b\x6d\x56')]):_0x34639d[_0x42cf33(0x150,'\x49\x65\x6d\x23')](_0x94b95c,_0x252d72,_0x34639d[_0x42cf33(0x118,'\x47\x24\x35\x6c')])),/(skill|dashboard)/[_0x42cf33(0x188,'\x79\x77\x4d\x61')](_0x34a23b)&&_0x34639d[_0x42cf33(0xdf,'\x66\x78\x32\x62')](_0x4859d7,_0x491d6b,'\x61\x72\x65\x61\x3a\x73\x6b\x69'+_0x42cf33(0x140,'\x49\x65\x6d\x23')),/(validation|canary|rollback|constraint|blast radius|destructive)/[_0x42cf33(0x156,'\x58\x78\x5b\x55')](_0x34a23b)&&_0x34639d[_0x42cf33(0xf5,'\x4c\x50\x51\x46')](_0x4859d7,_0x491d6b,_0x42cf33(0x15e,'\x26\x43\x26\x31')+'\x69\x64\x61\x74\x69\x6f\x6e'),_0x34639d['\x4c\x42\x64\x54\x54'](_0x37fc8a,_0x491d6b);}function _0x3cde(){const _0x504dbd=['\x57\x50\x78\x63\x4c\x77\x65\x6c\x45\x71','\x57\x34\x2f\x63\x4a\x4b\x74\x64\x4d\x71','\x44\x43\x6b\x71\x57\x35\x71\x6b\x57\x37\x6d','\x78\x58\x56\x64\x52\x53\x6f\x76\x57\x50\x47','\x57\x36\x4e\x64\x51\x67\x74\x63\x55\x63\x57','\x57\x36\x61\x61\x63\x6d\x6b\x6f\x6e\x31\x65\x42\x62\x61','\x57\x50\x74\x64\x4b\x48\x5a\x63\x4c\x71','\x57\x37\x6d\x65\x64\x53\x6b\x6e\x70\x30\x57\x65\x68\x61','\x74\x38\x6f\x69\x44\x43\x6b\x57\x57\x34\x46\x64\x47\x43\x6f\x30\x57\x34\x79','\x57\x50\x6c\x63\x55\x31\x2f\x63\x49\x32\x30\x73\x6d\x6d\x6f\x71\x64\x43\x6b\x47','\x6e\x43\x6f\x6f\x67\x53\x6b\x36\x76\x58\x31\x67\x57\x4f\x71','\x44\x48\x2f\x63\x53\x67\x57\x37','\x70\x77\x68\x64\x54\x61\x47\x5a\x69\x53\x6f\x6b','\x62\x38\x6f\x6e\x57\x35\x4b\x42\x57\x35\x69','\x71\x38\x6f\x65\x41\x71\x69','\x57\x37\x4b\x71\x57\x50\x34\x72\x73\x47','\x57\x34\x35\x6b\x77\x4e\x4a\x64\x49\x47','\x57\x52\x72\x6c\x57\x37\x6d\x33\x57\x50\x30','\x57\x36\x70\x64\x4c\x4b\x68\x63\x4f\x57','\x78\x53\x6f\x33\x42\x43\x6b\x39\x44\x59\x30','\x57\x37\x69\x4f\x69\x53\x6b\x70\x70\x57','\x43\x43\x6f\x57\x67\x38\x6f\x49\x73\x57','\x6e\x57\x42\x64\x4e\x4e\x7a\x56\x57\x37\x42\x63\x48\x71','\x57\x50\x30\x34\x57\x52\x78\x63\x49\x48\x71','\x43\x73\x56\x63\x54\x38\x6f\x53\x66\x57','\x57\x50\x46\x63\x50\x75\x79\x47\x71\x53\x6b\x68','\x42\x43\x6f\x6d\x45\x6d\x6b\x6c\x57\x36\x6d','\x57\x50\x37\x63\x56\x57\x61\x79\x41\x48\x74\x63\x50\x62\x47','\x75\x38\x6f\x30\x73\x53\x6b\x2f\x7a\x47','\x57\x35\x31\x37\x57\x36\x2f\x64\x51\x43\x6f\x74','\x71\x4e\x72\x52\x57\x34\x70\x64\x4e\x58\x48\x6d\x57\x35\x61','\x69\x49\x39\x47\x57\x35\x74\x63\x54\x47','\x6e\x48\x74\x64\x52\x61','\x57\x34\x70\x64\x55\x5a\x56\x64\x47\x78\x6d','\x57\x50\x52\x63\x54\x59\x46\x64\x55\x68\x75\x6b\x57\x36\x37\x64\x4a\x32\x74\x63\x4f\x78\x52\x63\x4c\x49\x6d','\x57\x4f\x65\x65\x61\x47\x2f\x64\x51\x61','\x63\x43\x6f\x31\x6d\x38\x6b\x45\x72\x61','\x57\x37\x44\x33\x43\x30\x64\x64\x47\x65\x4a\x63\x4b\x71','\x57\x4f\x69\x36\x57\x50\x33\x64\x50\x6d\x6f\x6c\x45\x43\x6b\x69\x57\x52\x4e\x64\x52\x57','\x57\x36\x4f\x35\x74\x71\x4a\x64\x47\x61','\x57\x50\x42\x64\x4c\x31\x78\x63\x56\x53\x6f\x69\x44\x6d\x6f\x6e\x65\x6d\x6f\x75\x57\x4f\x50\x75\x57\x37\x61\x44','\x6e\x6d\x6f\x35\x61\x31\x5a\x64\x55\x71','\x57\x52\x54\x6a\x57\x52\x37\x63\x4d\x6d\x6b\x6a','\x57\x52\x72\x74\x57\x34\x69\x76\x57\x4f\x79','\x7a\x6d\x6b\x4c\x69\x30\x4e\x64\x4f\x72\x31\x5a\x78\x61','\x6a\x53\x6f\x38\x66\x68\x46\x64\x51\x74\x6a\x6e\x76\x71','\x57\x36\x37\x63\x4f\x6d\x6b\x68\x6d\x38\x6b\x64','\x57\x51\x7a\x62\x57\x52\x47','\x6d\x77\x64\x64\x4d\x43\x6b\x75\x72\x53\x6b\x36\x57\x37\x74\x63\x54\x71','\x57\x51\x4c\x61\x57\x35\x4b\x63\x57\x4f\x68\x64\x56\x4c\x43\x74','\x57\x37\x38\x38\x78\x57\x4b','\x57\x34\x70\x64\x50\x32\x69','\x68\x43\x6f\x64\x61\x4e\x64\x64\x55\x61','\x79\x57\x70\x63\x4c\x53\x6f\x30\x57\x37\x57','\x6d\x58\x46\x63\x4a\x53\x6f\x45\x57\x35\x4c\x4f','\x43\x4e\x43\x4f\x57\x34\x44\x69','\x57\x34\x2f\x64\x52\x32\x78\x63\x56\x53\x6f\x73\x61\x43\x6b\x36','\x77\x6d\x6f\x47\x43\x38\x6b\x58\x7a\x63\x33\x64\x4d\x61','\x57\x36\x47\x4f\x77\x53\x6b\x63\x71\x71','\x57\x37\x7a\x4b\x44\x6d\x6b\x76\x57\x34\x74\x63\x55\x38\x6b\x41\x57\x36\x43','\x57\x35\x74\x63\x55\x43\x6b\x4f\x57\x52\x37\x64\x49\x57','\x57\x4f\x71\x38\x6e\x59\x4a\x64\x49\x59\x65\x6b\x57\x52\x34','\x57\x36\x78\x63\x53\x38\x6b\x43\x70\x71','\x57\x34\x64\x64\x56\x61\x47','\x57\x52\x39\x66\x57\x52\x56\x63\x4a\x57','\x64\x6d\x6f\x4a\x6a\x64\x4f\x56\x57\x35\x58\x48\x72\x53\x6f\x66\x6f\x31\x62\x46','\x69\x43\x6f\x57\x61\x67\x30','\x75\x43\x6f\x39\x42\x43\x6b\x35\x79\x4a\x65','\x43\x75\x70\x64\x4e\x43\x6b\x44\x57\x4f\x53\x32\x66\x43\x6f\x66\x57\x36\x56\x64\x4d\x6d\x6b\x4a\x57\x52\x4b','\x57\x35\x46\x64\x53\x48\x6e\x4c\x67\x6d\x6f\x42\x69\x38\x6b\x41\x57\x4f\x50\x46\x6a\x57\x34\x34\x57\x36\x75','\x57\x36\x61\x71\x63\x43\x6b\x61','\x62\x43\x6f\x6f\x64\x38\x6b\x2b\x42\x61','\x57\x37\x79\x6d\x66\x53\x6b\x43\x70\x76\x65','\x75\x4a\x42\x63\x56\x53\x6f\x74\x57\x36\x61','\x6a\x62\x37\x63\x55\x53\x6f\x34\x57\x34\x53','\x57\x52\x6d\x38\x69\x53\x6f\x6a\x57\x50\x42\x64\x52\x53\x6b\x55\x57\x35\x76\x4d\x57\x37\x38\x36\x65\x47','\x57\x34\x70\x63\x4c\x72\x47','\x78\x59\x4e\x63\x4a\x33\x71\x2b\x57\x37\x50\x69','\x71\x38\x6f\x74\x43\x58\x53','\x57\x36\x56\x64\x4a\x49\x74\x64\x53\x31\x69','\x57\x50\x46\x63\x4f\x30\x47\x47\x72\x6d\x6b\x37\x45\x53\x6f\x66','\x57\x34\x62\x57\x57\x34\x78\x64\x49\x53\x6f\x6d\x44\x43\x6b\x4a\x57\x34\x61','\x57\x51\x38\x31\x62\x61\x46\x63\x48\x62\x4e\x64\x4b\x62\x33\x64\x52\x6d\x6b\x62\x68\x64\x71\x43','\x57\x34\x79\x52\x57\x52\x34\x66\x78\x47','\x57\x34\x7a\x43\x44\x6d\x6b\x39\x57\x37\x69','\x62\x49\x76\x32','\x57\x37\x52\x64\x47\x4d\x56\x63\x56\x68\x4b','\x57\x51\x6e\x66\x57\x52\x56\x63\x4a\x38\x6b\x58\x75\x73\x39\x78','\x6a\x43\x6f\x39\x6d\x75\x68\x64\x56\x61','\x72\x38\x6f\x4f\x76\x6d\x6b\x68\x43\x57','\x57\x4f\x4e\x63\x4f\x76\x43','\x57\x50\x4a\x64\x4c\x66\x33\x63\x56\x53\x6f\x6b\x44\x6d\x6b\x38\x65\x38\x6f\x6d\x57\x52\x58\x51\x57\x34\x6d','\x77\x4c\x61\x52\x57\x4f\x2f\x63\x4a\x57','\x71\x6d\x6b\x4d\x57\x36\x6d\x56\x57\x35\x4e\x64\x4d\x72\x69','\x57\x34\x31\x79\x7a\x43\x6b\x4a\x57\x34\x53','\x74\x43\x6b\x50\x57\x36\x71','\x57\x50\x48\x69\x61\x6d\x6b\x38\x57\x37\x34','\x57\x35\x33\x63\x50\x47\x70\x64\x51\x38\x6b\x42','\x57\x35\x4e\x63\x4b\x74\x56\x64\x4d\x38\x6b\x37','\x57\x51\x4c\x61\x57\x35\x4b\x75\x57\x4f\x6c\x64\x55\x66\x76\x66','\x62\x48\x6a\x43\x57\x36\x64\x63\x4e\x71','\x57\x36\x4b\x32\x57\x51\x52\x64\x4c\x43\x6f\x55\x57\x50\x33\x64\x4a\x77\x43','\x57\x35\x4e\x63\x47\x38\x6b\x4f\x57\x50\x4e\x64\x4c\x4b\x4b\x79\x57\x4f\x79','\x57\x34\x52\x64\x50\x77\x78\x63\x50\x63\x58\x75\x57\x36\x5a\x64\x48\x71','\x57\x34\x33\x63\x48\x62\x4a\x64\x51\x43\x6b\x45\x69\x53\x6b\x6a\x62\x57','\x57\x51\x44\x66\x57\x51\x42\x63\x4e\x6d\x6b\x33\x77\x61','\x57\x35\x4f\x65\x57\x50\x69\x55\x42\x53\x6b\x54\x57\x36\x71','\x57\x34\x64\x64\x4b\x4e\x52\x63\x50\x49\x43','\x57\x36\x35\x58\x71\x76\x4f','\x57\x36\x34\x37\x73\x71\x64\x63\x49\x65\x6d\x67\x41\x57','\x57\x34\x74\x63\x51\x62\x4e\x64\x48\x38\x6b\x77','\x73\x53\x6b\x67\x57\x37\x61\x61\x57\x36\x79','\x57\x37\x78\x63\x4e\x38\x6b\x63\x57\x50\x37\x64\x52\x71','\x57\x36\x4a\x64\x47\x4c\x42\x64\x48\x61\x64\x63\x4a\x4d\x56\x64\x4a\x43\x6b\x34\x68\x47','\x66\x38\x6f\x7a\x57\x51\x78\x63\x48\x38\x6b\x79\x57\x50\x6d','\x57\x37\x70\x64\x52\x67\x33\x63\x4f\x43\x6f\x46\x65\x53\x6b\x5a','\x57\x37\x2f\x64\x48\x32\x37\x63\x4d\x66\x61','\x57\x34\x72\x4e\x57\x35\x4e\x64\x4e\x61','\x57\x51\x50\x67\x57\x34\x71\x46\x57\x4f\x64\x64\x55\x47','\x57\x37\x6a\x53\x57\x35\x2f\x64\x4e\x43\x6f\x70','\x68\x53\x6f\x30\x57\x51\x70\x63\x50\x43\x6b\x2b','\x57\x50\x46\x63\x55\x76\x78\x64\x4a\x4d\x47\x32\x66\x43\x6f\x6c\x64\x61','\x78\x6d\x6f\x37\x44\x38\x6b\x33\x45\x74\x46\x63\x4b\x73\x75','\x74\x48\x2f\x63\x4b\x43\x6f\x32\x57\x34\x44\x48\x73\x57','\x57\x34\x4e\x63\x4d\x6d\x6b\x30\x57\x4f\x70\x64\x4a\x66\x57','\x78\x74\x74\x63\x4c\x78\x6a\x54\x57\x37\x7a\x6d\x57\x36\x43','\x57\x36\x50\x4f\x46\x4e\x2f\x64\x50\x61','\x71\x78\x7a\x4f\x57\x34\x4a\x64\x48\x57','\x57\x37\x6d\x6b\x66\x6d\x6b\x6c\x6f\x76\x43','\x77\x67\x4c\x54\x57\x34\x38','\x57\x34\x52\x64\x55\x4c\x7a\x70\x6e\x47\x5a\x63\x55\x58\x6a\x75\x65\x47','\x71\x5a\x4a\x63\x49\x68\x34\x4a\x57\x36\x47','\x75\x58\x37\x63\x55\x43\x6f\x50','\x57\x51\x62\x67\x57\x51\x68\x63\x56\x6d\x6b\x36','\x73\x6d\x6b\x6f\x57\x37\x2f\x64\x4c\x38\x6f\x76\x57\x34\x2f\x63\x50\x61\x52\x63\x53\x43\x6b\x30\x71\x33\x70\x63\x54\x73\x6d','\x67\x6d\x6f\x44\x57\x52\x56\x63\x47\x43\x6b\x6f\x57\x50\x6c\x64\x53\x66\x53','\x46\x49\x42\x63\x4b\x6d\x6f\x77\x68\x47','\x72\x48\x33\x64\x4f\x43\x6f\x6a\x57\x51\x75','\x74\x43\x6f\x57\x71\x43\x6b\x67\x79\x47','\x6a\x48\x56\x63\x47\x38\x6f\x79\x57\x35\x39\x59','\x73\x4a\x56\x63\x4b\x76\x53\x35','\x57\x50\x4e\x63\x56\x57\x4f\x75','\x44\x43\x6b\x6d\x57\x35\x79\x4b\x57\x37\x71','\x77\x6d\x6f\x76\x68\x43\x6f\x77\x78\x61','\x57\x4f\x52\x63\x52\x64\x64\x63\x50\x53\x6f\x4a\x6a\x38\x6b\x51\x57\x35\x31\x46','\x57\x34\x53\x47\x75\x49\x2f\x63\x53\x61','\x57\x34\x70\x63\x48\x62\x4a\x64\x52\x38\x6b\x72','\x6a\x4a\x52\x63\x4d\x6d\x6f\x4f\x57\x37\x47','\x70\x38\x6f\x74\x57\x4f\x33\x63\x4b\x6d\x6b\x4c','\x57\x34\x57\x36\x57\x50\x4a\x64\x4a\x6d\x6f\x69','\x57\x35\x6d\x6e\x76\x38\x6b\x79\x76\x68\x6c\x63\x4b\x48\x57','\x57\x52\x78\x63\x4f\x57\x52\x63\x4f\x64\x57','\x78\x68\x6d\x57\x57\x52\x78\x64\x4a\x4e\x6d\x61\x57\x34\x65\x6d\x57\x52\x53\x2b','\x43\x4b\x78\x64\x4d\x53\x6b\x45\x57\x4f\x50\x70\x6c\x53\x6f\x6e\x57\x36\x4e\x64\x50\x53\x6b\x4f','\x57\x34\x61\x63\x57\x52\x34\x58\x46\x43\x6b\x2b\x57\x36\x71','\x57\x34\x68\x63\x4c\x58\x75','\x78\x62\x42\x64\x49\x6d\x6f\x77\x57\x50\x79\x63\x71\x61','\x44\x73\x74\x63\x47\x47','\x57\x36\x70\x64\x49\x32\x74\x63\x4f\x76\x30\x2f\x57\x36\x2f\x64\x4d\x47','\x57\x50\x6e\x73\x62\x43\x6b\x68\x57\x37\x38','\x57\x34\x52\x63\x4d\x43\x6b\x31\x57\x4f\x69','\x57\x37\x46\x63\x50\x6d\x6b\x61\x6a\x61','\x57\x35\x30\x32\x57\x51\x74\x64\x53\x38\x6f\x4e','\x57\x35\x6c\x64\x55\x47\x64\x64\x4c\x4c\x4b\x71\x62\x71','\x44\x72\x78\x64\x52\x6d\x6f\x35\x57\x50\x4b','\x57\x37\x7a\x35\x79\x43\x6b\x73\x57\x34\x56\x63\x53\x61','\x57\x4f\x50\x7a\x57\x35\x53\x58\x57\x52\x4b','\x6e\x62\x46\x63\x4e\x6d\x6f\x79','\x57\x34\x64\x63\x52\x72\x4e\x64\x56\x6d\x6b\x37','\x57\x51\x5a\x64\x50\x4b\x4f\x58\x57\x4f\x2f\x63\x50\x43\x6f\x6e\x57\x35\x4f','\x57\x35\x31\x4a\x57\x35\x4f','\x57\x34\x75\x70\x72\x73\x33\x64\x48\x57','\x57\x51\x4e\x63\x4a\x4c\x71\x78\x79\x61','\x75\x38\x6f\x48\x41\x6d\x6b\x69\x75\x71','\x57\x51\x42\x63\x52\x4c\x69\x4e\x74\x47','\x57\x37\x38\x37\x71\x57\x70\x64\x4e\x4c\x79\x7a\x70\x47','\x43\x6d\x6b\x72\x67\x43\x6b\x45\x74\x64\x44\x4c\x57\x52\x75','\x6c\x75\x78\x63\x55\x72\x4e\x63\x51\x32\x42\x63\x49\x47','\x42\x43\x6f\x78\x6b\x53\x6f\x30\x78\x61','\x57\x36\x4e\x63\x4a\x6d\x6b\x67\x67\x38\x6b\x65','\x45\x5a\x6c\x63\x56\x53\x6f\x31\x67\x61','\x57\x52\x74\x64\x52\x67\x47\x35\x57\x4f\x5a\x63\x51\x61','\x73\x43\x6f\x78\x61\x53\x6f\x79\x73\x71\x68\x63\x48\x76\x6d','\x57\x35\x70\x64\x4e\x31\x5a\x63\x56\x38\x6f\x48','\x75\x57\x4e\x63\x4f\x38\x6f\x57','\x75\x57\x70\x63\x47\x38\x6f\x57\x57\x34\x44\x50\x78\x66\x4b','\x65\x78\x70\x64\x54\x48\x4b\x51','\x75\x75\x43\x45\x57\x35\x31\x58','\x57\x37\x62\x64\x72\x76\x4e\x64\x48\x47','\x63\x4b\x52\x63\x4e\x53\x6b\x73\x57\x34\x7a\x70\x65\x38\x6f\x33\x78\x53\x6b\x6d\x43\x4b\x39\x55','\x6d\x65\x64\x64\x4c\x5a\x69\x34','\x57\x34\x72\x54\x57\x36\x42\x64\x48\x38\x6f\x78\x44\x43\x6b\x38\x57\x52\x4b','\x57\x37\x42\x64\x4c\x30\x30','\x57\x34\x2f\x64\x52\x4d\x4e\x63\x54\x6d\x6f\x44\x65\x53\x6b\x33\x57\x35\x43','\x57\x35\x42\x63\x52\x30\x69\x63\x41\x53\x6b\x33\x74\x57','\x57\x36\x5a\x63\x53\x53\x6b\x54\x43\x31\x69','\x78\x47\x4a\x63\x4f\x65\x61\x70','\x57\x51\x4a\x64\x56\x68\x75\x32','\x45\x38\x6f\x5a\x64\x53\x6f\x47\x74\x47','\x57\x51\x35\x4f\x57\x51\x64\x63\x56\x53\x6b\x72','\x6d\x66\x70\x63\x49\x58\x38','\x57\x37\x4e\x64\x56\x71\x37\x64\x4d\x65\x38','\x72\x4b\x79\x39\x57\x35\x58\x41\x57\x35\x30','\x57\x4f\x56\x63\x51\x62\x79\x6e','\x57\x34\x72\x54\x57\x35\x47','\x78\x72\x5a\x63\x48\x38\x6f\x44\x57\x35\x61','\x57\x36\x79\x32\x57\x52\x53'];_0x3cde=function(){return _0x504dbd;};return _0x3cde();}function _0x4a3bd0(_0x47f51a){const _0x40f0eb=_0x39cc,_0x1adec7={'\x62\x74\x56\x7a\x4b':function(_0x55a45a,_0x1ac068){return _0x55a45a!==_0x1ac068;},'\x43\x65\x57\x47\x59':'\x6f\x62\x6a\x65\x63\x74','\x42\x56\x63\x5a\x6b':function(_0x33c75a,_0x294440){return _0x33c75a+_0x294440;},'\x4d\x4e\x73\x45\x41':_0x40f0eb(0xed,'\x43\x47\x70\x4a'),'\x6e\x6c\x49\x61\x70':function(_0x353608,_0x4c3b16){return _0x353608(_0x4c3b16);},'\x4a\x41\x49\x48\x6a':function(_0x2d626e,_0xe8bc02){return _0x2d626e===_0xe8bc02;},'\x50\x61\x61\x52\x45':_0x40f0eb(0x157,'\x4e\x6b\x53\x75'),'\x62\x6c\x55\x78\x7a':function(_0xb7ad92,_0x4136ca,_0x6893fd){return _0xb7ad92(_0x4136ca,_0x6893fd);}};if(!_0x47f51a||_0x1adec7[_0x40f0eb(0x102,'\x26\x5a\x25\x28')](typeof _0x47f51a,_0x1adec7['\x43\x65\x57\x47\x59']))return[];let _0x29f7a7=[];if(_0x47f51a[_0x40f0eb(0x149,'\x58\x78\x6a\x6c')])_0x29f7a7[_0x40f0eb(0x127,'\x4c\x50\x51\x46')](_0x1adec7[_0x40f0eb(0xd8,'\x73\x51\x48\x33')](_0x1adec7[_0x40f0eb(0x18d,'\x77\x38\x6c\x7a')],_0x1adec7[_0x40f0eb(0xfd,'\x55\x45\x33\x28')](String,_0x47f51a[_0x40f0eb(0xe8,'\x4c\x50\x51\x46')])[_0x40f0eb(0x18a,'\x25\x5d\x6a\x51')+_0x40f0eb(0x120,'\x26\x5a\x25\x28')]()));if(Array[_0x40f0eb(0x15c,'\x66\x78\x32\x62')](_0x47f51a[_0x40f0eb(0x11e,'\x51\x62\x5b\x5b')+'\x6d\x61\x74\x63\x68']))_0x29f7a7=_0x29f7a7[_0x40f0eb(0x161,'\x4c\x50\x51\x46')](_0x47f51a[_0x40f0eb(0x177,'\x46\x35\x24\x66')+_0x40f0eb(0x10f,'\x62\x21\x58\x30')]);if(_0x1adec7['\x4a\x41\x49\x48\x6a'](typeof _0x47f51a['\x69\x64'],_0x1adec7[_0x40f0eb(0xfb,'\x28\x6a\x35\x66')]))_0x29f7a7['\x70\x75\x73\x68'](_0x47f51a['\x69\x64']);if(_0x1adec7[_0x40f0eb(0x130,'\x26\x5a\x25\x28')](typeof _0x47f51a[_0x40f0eb(0x184,'\x26\x5a\x25\x28')],_0x1adec7[_0x40f0eb(0xf0,'\x34\x33\x51\x5b')]))_0x29f7a7[_0x40f0eb(0x14d,'\x55\x6c\x5d\x78')](_0x47f51a[_0x40f0eb(0x119,'\x4d\x34\x36\x6d')]);return _0x1adec7[_0x40f0eb(0x13d,'\x6d\x62\x6c\x51')](_0x4742d0,_0x29f7a7,'');}function _0x27900b(_0x44b16b,_0x1e7288){const _0x526104=_0x39cc,_0x49c88e={'\x66\x48\x77\x44\x42':function(_0x23c3a6,_0x4812af){return _0x23c3a6(_0x4812af);},'\x46\x6c\x6e\x63\x45':function(_0x2df60f,_0x4253cc,_0x2a7d48){return _0x2df60f(_0x4253cc,_0x2a7d48);},'\x6c\x42\x57\x53\x64':function(_0x6c8d19,_0x34a8be){return _0x6c8d19===_0x34a8be;},'\x53\x6b\x6d\x47\x57':function(_0x3d9792,_0xb2a1c3){return _0x3d9792===_0xb2a1c3;},'\x6b\x66\x69\x47\x79':function(_0x2ae0f3,_0x2861e0){return _0x2ae0f3<_0x2861e0;},'\x68\x56\x59\x67\x63':function(_0x5494ec,_0x13bdc7){return _0x5494ec!==_0x13bdc7;},'\x4d\x71\x76\x78\x76':_0x526104(0x14c,'\x66\x47\x7a\x67')},_0x2a0dba=_0x49c88e['\x46\x6c\x6e\x63\x45'](_0x4742d0,_0x1e7288,''),_0x168e1a=_0x4a3bd0(_0x44b16b);if(_0x49c88e[_0x526104(0xd0,'\x43\x47\x70\x4a')](_0x2a0dba[_0x526104(0x124,'\x55\x45\x33\x28')],-0x14ea+0xacd*0x1+0xa1d*0x1)||_0x49c88e[_0x526104(0x187,'\x4e\x6b\x53\x75')](_0x168e1a[_0x526104(0x14a,'\x64\x43\x26\x31')],0x3*0xb47+0x1+-0x3d*0x8e))return-0x718+-0x1f6d+-0x207*-0x13;const _0x42ffd7=new Set(_0x2a0dba);let _0x3e9a5c=0x4b*0x11+-0x15*-0x3+-0x53a;for(let _0x11e468=0x6*-0x25f+-0x1*0x1e2f+0x2c69;_0x49c88e[_0x526104(0x166,'\x64\x43\x26\x31')](_0x11e468,_0x168e1a[_0x526104(0x196,'\x25\x5d\x6a\x51')]);_0x11e468++){if(_0x49c88e[_0x526104(0x145,'\x33\x21\x61\x76')](_0x49c88e[_0x526104(0xcc,'\x43\x47\x70\x4a')],_0x49c88e['\x4d\x71\x76\x78\x76']))return eoCQAo[_0x526104(0x174,'\x79\x77\x4d\x61')](_0xc0080f,_0x9996c6)[_0x526104(0x165,'\x66\x78\x32\x62')]();else{if(_0x42ffd7[_0x526104(0x101,'\x53\x5d\x21\x79')](_0x168e1a[_0x11e468]))_0x3e9a5c++;}}return _0x3e9a5c;}const _0x1e84e9={};_0x1e84e9['\x65\x78\x70\x61\x6e\x64\x53\x69'+_0x3029f6(0x169,'\x51\x32\x69\x53')]=_0x4742d0,_0x1e84e9['\x67\x65\x6e\x65\x54\x61\x67\x73']=_0x4a3bd0,_0x1e84e9[_0x3029f6(0x131,'\x77\x38\x6c\x7a')+_0x3029f6(0x154,'\x4d\x34\x36\x6d')]=_0x27900b,module[_0x3029f6(0x11a,'\x55\x45\x33\x28')]=_0x1e84e9;
1
+ // Structured learning signal expansion: raw signals -> categorized tags for gene selection and evolution feedback.
2
+ function unique(items) {
3
+ return Array.from(new Set((Array.isArray(items) ? items : []).filter(Boolean).map(function (x) {
4
+ return String(x).trim();
5
+ }).filter(Boolean)));
6
+ }
7
+
8
+ function add(tags, value) {
9
+ if (!value) return;
10
+ tags.push(String(value).trim());
11
+ }
12
+
13
+ function expandSignals(signals, extraText) {
14
+ const raw = Array.isArray(signals) ? signals.map(function (s) { return String(s); }) : [];
15
+ const tags = [];
16
+
17
+ for (let i = 0; i < raw.length; i++) {
18
+ const signal = raw[i];
19
+ add(tags, signal);
20
+ const base = signal.split(':')[0];
21
+ if (base && base !== signal) add(tags, base);
22
+ }
23
+
24
+ const text = (raw.join(' ') + ' ' + String(extraText || '')).toLowerCase();
25
+
26
+ if (/(error|exception|failed|unstable|log_error|runtime|429)/.test(text)) {
27
+ add(tags, 'problem:reliability');
28
+ add(tags, 'action:repair');
29
+ }
30
+ if (/(protocol|prompt|audit|gep|schema|drift)/.test(text)) {
31
+ add(tags, 'problem:protocol');
32
+ add(tags, 'action:optimize');
33
+ add(tags, 'area:prompt');
34
+ }
35
+ if (/(perf|performance|bottleneck|latency|slow|throughput)/.test(text)) {
36
+ add(tags, 'problem:performance');
37
+ add(tags, 'action:optimize');
38
+ }
39
+ if (/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/.test(text)) {
40
+ add(tags, 'problem:capability');
41
+ add(tags, 'action:innovate');
42
+ }
43
+ if (/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/.test(text)) {
44
+ add(tags, 'problem:stagnation');
45
+ add(tags, 'action:innovate');
46
+ }
47
+ if (/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/.test(text)) {
48
+ add(tags, 'area:orchestration');
49
+ }
50
+ if (/(memory|narrative|reflection)/.test(text)) {
51
+ add(tags, 'area:memory');
52
+ }
53
+ if (/(skill|dashboard)/.test(text)) {
54
+ add(tags, 'area:skills');
55
+ }
56
+ if (/(validation|canary|rollback|constraint|blast radius|destructive)/.test(text)) {
57
+ add(tags, 'risk:validation');
58
+ }
59
+
60
+ return unique(tags);
61
+ }
62
+
63
+ function geneTags(gene) {
64
+ if (!gene || typeof gene !== 'object') return [];
65
+ let inputs = [];
66
+ if (gene.category) inputs.push('action:' + String(gene.category).toLowerCase());
67
+ if (Array.isArray(gene.signals_match)) inputs = inputs.concat(gene.signals_match);
68
+ if (typeof gene.id === 'string') inputs.push(gene.id);
69
+ if (typeof gene.summary === 'string') inputs.push(gene.summary);
70
+ return expandSignals(inputs, '');
71
+ }
72
+
73
+ function scoreTagOverlap(gene, signals) {
74
+ const signalTags = expandSignals(signals, '');
75
+ const geneTagList = geneTags(gene);
76
+ if (signalTags.length === 0 || geneTagList.length === 0) return 0;
77
+ const signalSet = new Set(signalTags);
78
+ let hits = 0;
79
+ for (let i = 0; i < geneTagList.length; i++) {
80
+ if (signalSet.has(geneTagList[i])) hits++;
81
+ }
82
+ return hits;
83
+ }
84
+
85
+ module.exports = {
86
+ expandSignals: expandSignals,
87
+ geneTags: geneTags,
88
+ scoreTagOverlap: scoreTagOverlap,
89
+ };