@evomap/evolver 1.89.4 → 1.89.5

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 (105) hide show
  1. package/CONTRIBUTING.md +19 -0
  2. package/README.md +536 -86
  3. package/assets/cover.png +0 -0
  4. package/index.js +87 -7
  5. package/package.json +17 -6
  6. package/scripts/a2a_export.js +63 -0
  7. package/scripts/a2a_ingest.js +79 -0
  8. package/scripts/a2a_promote.js +118 -0
  9. package/scripts/analyze_by_skill.js +121 -0
  10. package/scripts/build_binaries.js +479 -0
  11. package/scripts/check-changelog.js +166 -0
  12. package/scripts/extract_log.js +85 -0
  13. package/scripts/generate_history.js +75 -0
  14. package/scripts/gep_append_event.js +96 -0
  15. package/scripts/gep_personality_report.js +234 -0
  16. package/scripts/human_report.js +147 -0
  17. package/scripts/recall-verify-report.js +234 -0
  18. package/scripts/recover_loop.js +61 -0
  19. package/scripts/refresh_stars_badge.js +168 -0
  20. package/scripts/seed-merchants.js +91 -0
  21. package/scripts/suggest_version.js +89 -0
  22. package/scripts/validate-modules.js +38 -0
  23. package/scripts/validate-suite.js +78 -0
  24. package/skills/index.json +14 -0
  25. package/src/adapters/scripts/_runtimePaths.js +1 -0
  26. package/src/adapters/scripts/evolver-session-end.js +1 -0
  27. package/src/adapters/scripts/evolver-session-start.js +1 -0
  28. package/src/evolve/guards.js +1 -721
  29. package/src/evolve/pipeline/collect.js +1 -1283
  30. package/src/evolve/pipeline/dispatch.js +1 -421
  31. package/src/evolve/pipeline/enrich.js +1 -440
  32. package/src/evolve/pipeline/hub.js +1 -319
  33. package/src/evolve/pipeline/select.js +1 -274
  34. package/src/evolve/pipeline/signals.js +1 -206
  35. package/src/evolve/utils.js +1 -264
  36. package/src/evolve.js +1 -350
  37. package/src/gep/a2aProtocol.js +1 -4455
  38. package/src/gep/antiAbuseTelemetry.js +1 -233
  39. package/src/gep/autoDistillConv.js +1 -205
  40. package/src/gep/autoDistillLlm.js +1 -315
  41. package/src/gep/candidateEval.js +1 -92
  42. package/src/gep/candidates.js +1 -198
  43. package/src/gep/contentHash.js +1 -30
  44. package/src/gep/conversationSniffer.js +1 -266
  45. package/src/gep/crypto.js +1 -89
  46. package/src/gep/curriculum.js +1 -163
  47. package/src/gep/deviceId.js +1 -218
  48. package/src/gep/envFingerprint.js +1 -118
  49. package/src/gep/epigenetics.js +1 -31
  50. package/src/gep/execBridge.js +1 -711
  51. package/src/gep/explore.js +1 -289
  52. package/src/gep/hash.js +1 -15
  53. package/src/gep/hubFetch.js +1 -359
  54. package/src/gep/hubReview.js +1 -207
  55. package/src/gep/hubSearch.js +1 -526
  56. package/src/gep/hubVerify.js +1 -306
  57. package/src/gep/idleScheduler.js +6 -1
  58. package/src/gep/learningSignals.js +1 -89
  59. package/src/gep/memoryGraph.js +1 -1374
  60. package/src/gep/memoryGraphAdapter.js +1 -203
  61. package/src/gep/mutation.js +1 -203
  62. package/src/gep/narrativeMemory.js +1 -108
  63. package/src/gep/openPRRegistry.js +1 -205
  64. package/src/gep/personality.js +1 -423
  65. package/src/gep/policyCheck.js +1 -599
  66. package/src/gep/prompt.js +1 -836
  67. package/src/gep/recallInject.js +1 -409
  68. package/src/gep/recallVerifier.js +1 -318
  69. package/src/gep/reflection.js +1 -177
  70. package/src/gep/selector.js +1 -602
  71. package/src/gep/skillDistiller.js +1 -1294
  72. package/src/gep/solidify.js +1 -1699
  73. package/src/gep/strategy.js +1 -136
  74. package/src/gep/tokenSavings.js +1 -88
  75. package/src/gep/workspaceKeychain.js +1 -174
  76. package/src/ops/lifecycle.js +17 -4
  77. package/src/proxy/extensions/traceControl.js +1 -99
  78. package/src/proxy/index.js +206 -1
  79. package/src/proxy/inject.js +1 -52
  80. package/src/proxy/lifecycle/manager.js +12 -0
  81. package/src/proxy/mailbox/store.js +29 -6
  82. package/src/proxy/router/responses_route.js +157 -0
  83. package/src/proxy/server/http.js +13 -4
  84. package/src/proxy/server/routes.js +11 -1
  85. package/src/proxy/sync/engine.js +7 -1
  86. package/src/proxy/sync/outbound.js +32 -4
  87. package/src/proxy/trace/extractor.js +1 -646
  88. package/src/proxy/trace/usage.js +1 -105
  89. package/.cursor/BUGBOT.md +0 -182
  90. package/.env.example +0 -68
  91. package/.git-commit-guard-token +0 -1
  92. package/.github/CODEOWNERS +0 -63
  93. package/.github/ISSUE_TEMPLATE/good_first_issue.md +0 -23
  94. package/.github/pull_request_template.md +0 -45
  95. package/.github/workflows/test.yml +0 -75
  96. package/CHANGELOG.md +0 -1237
  97. package/README.public.md +0 -569
  98. package/SECURITY.md +0 -108
  99. package/assets/gep/events.jsonl +0 -3
  100. package/examples/atp-consumer-quickstart.md +0 -100
  101. package/examples/hello-world.md +0 -38
  102. package/proxy-package.json +0 -39
  103. package/public.manifest.json +0 -143
  104. /package/assets/gep/{genes.json → genes.seed.json} +0 -0
  105. /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
@@ -1,30 +1 @@
1
- // Content-addressable hashing for GEP assets.
2
- //
3
- // As of v1.84.0 the protocol primitives (SCHEMA_VERSION, canonicalize,
4
- // computeAssetId, verifyAssetId) live in @evomap/gep-sdk. This module
5
- // is a thin CommonJS facade so the ~13 internal callsites that
6
- // `require('./contentHash')` keep working unchanged.
7
- //
8
- // Why move them out: every implementation that participates in GEP
9
- // (this engine, gep-mcp-server, evox-Rust, the Hub backend) needs an
10
- // authoritative copy of the canonicalize / computeAssetId algorithm.
11
- // Hand-maintaining four copies caused the v1.80.8 "explore" enum
12
- // drift incident; consolidating into the SDK makes that class of bug
13
- // structurally impossible. If you find yourself wanting to inline the
14
- // algorithm here again, stop -- bump @evomap/gep-sdk instead.
15
- //
16
- // Implementation note: @evomap/gep-sdk is published as ESM
17
- // (`"type": "module"`). Node 22 supports `require()` of synchronous
18
- // ESM packages, but only on 22.12.0 and later (the
19
- // `--experimental-require-module` flag was unflagged in that
20
- // release). `package.json#engines.node` is therefore pinned to
21
- // `>=22.12` so the call below works in every supported runtime.
22
-
23
- const { SCHEMA_VERSION, canonicalize, computeAssetId, verifyAssetId } = require('@evomap/gep-sdk');
24
-
25
- module.exports = {
26
- SCHEMA_VERSION,
27
- canonicalize,
28
- computeAssetId,
29
- verifyAssetId,
30
- };
1
+ const _0x51beb0=_0x1b00;function _0x1b00(_0x544e7a,_0x4baae5){_0x544e7a=_0x544e7a-(0x26dd+-0x2*-0x106a+-0x4d*0xed);const _0x129d08=_0x4589();let _0x37f626=_0x129d08[_0x544e7a];if(_0x1b00['\x62\x72\x56\x65\x66\x59']===undefined){var _0x22cf52=function(_0x1f7e12){const _0x60ddf3='\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 _0x401cdd='',_0x5c70f0='',_0x122e31=_0x401cdd+_0x22cf52,_0x480572=(''+function(){return-0x1f4c+-0x2464+-0x30*-0x169;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x331*-0x7+-0x248*0x4+-0xd36*0x1);for(let _0x35fd40=-0x2*0x1ed+0x1fe1+-0x1c07,_0x2528dd,_0xfc0181,_0x57f132=0x3fd*-0x1+0x5b4+-0x1b7;_0xfc0181=_0x1f7e12['\x63\x68\x61\x72\x41\x74'](_0x57f132++);~_0xfc0181&&(_0x2528dd=_0x35fd40%(0x212c+0x2f*-0x9a+-0x4e2)?_0x2528dd*(-0x1423+-0x1*-0x1fab+0x169*-0x8)+_0xfc0181:_0xfc0181,_0x35fd40++%(0x162f*0x1+0x125*0x11+0xc*-0x378))?_0x401cdd+=_0x480572||_0x122e31['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x57f132+(-0x179a+-0xd2b+0x9*0x417))-(0x65d+-0x24dd+0x1e8a)!==-0x1*0xd96+-0x91d+0x16b3?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x24f6+-0x1*0x18be+-0x7*-0x8f5&_0x2528dd>>(-(-0x1b4f+-0xf2+0x1c43)*_0x35fd40&-0x1583+-0x14cb+0x2a54)):_0x35fd40:-0x26a2+-0x2030+-0x1ea*-0x25){_0xfc0181=_0x60ddf3['\x69\x6e\x64\x65\x78\x4f\x66'](_0xfc0181);}for(let _0x2a9e73=-0x2338+0x2*0x1307+-0x2d6,_0x2d31a3=_0x401cdd['\x6c\x65\x6e\x67\x74\x68'];_0x2a9e73<_0x2d31a3;_0x2a9e73++){_0x5c70f0+='\x25'+('\x30\x30'+_0x401cdd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2a9e73)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1929+-0x331*0x5+-0x924))['\x73\x6c\x69\x63\x65'](-(-0x6*0x4ca+0x18a*0x3+-0x2*-0xc10));}return decodeURIComponent(_0x5c70f0);};const _0x12caac=function(_0x2065bb,_0x3c91a9){let _0x1d34d8=[],_0x184396=-0x25*-0x62+-0x2595*0x1+-0x6d*-0x37,_0x599d13,_0x5a70b1='';_0x2065bb=_0x22cf52(_0x2065bb);let _0x3529e6;for(_0x3529e6=0x1327+-0x1*-0xbc3+-0x1eea;_0x3529e6<0x120d+0x21f6+-0x3303;_0x3529e6++){_0x1d34d8[_0x3529e6]=_0x3529e6;}for(_0x3529e6=0x47*0xa+-0x42d*-0x8+-0x242e;_0x3529e6<-0x13*0x111+0xa04+0xb3f;_0x3529e6++){_0x184396=(_0x184396+_0x1d34d8[_0x3529e6]+_0x3c91a9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3529e6%_0x3c91a9['\x6c\x65\x6e\x67\x74\x68']))%(0x24d*-0xe+0x1*0x119f+0xf97),_0x599d13=_0x1d34d8[_0x3529e6],_0x1d34d8[_0x3529e6]=_0x1d34d8[_0x184396],_0x1d34d8[_0x184396]=_0x599d13;}_0x3529e6=-0x30f*0x3+0xb9d+-0x270,_0x184396=0x3aa+0x2*0xec+0x2*-0x2c1;for(let _0x4b9f35=0x7f*-0x17+-0x1011+0x1b7a;_0x4b9f35<_0x2065bb['\x6c\x65\x6e\x67\x74\x68'];_0x4b9f35++){_0x3529e6=(_0x3529e6+(-0x10ca+-0x1d*0x151+0x36f8))%(0x15e8+0x37*0x16+-0x19a2),_0x184396=(_0x184396+_0x1d34d8[_0x3529e6])%(-0xfb*-0x1+-0x1*-0x1d09+-0x1d04),_0x599d13=_0x1d34d8[_0x3529e6],_0x1d34d8[_0x3529e6]=_0x1d34d8[_0x184396],_0x1d34d8[_0x184396]=_0x599d13,_0x5a70b1+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2065bb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4b9f35)^_0x1d34d8[(_0x1d34d8[_0x3529e6]+_0x1d34d8[_0x184396])%(-0x18bc+-0x2*-0xe91+-0x366)]);}return _0x5a70b1;};_0x1b00['\x56\x55\x78\x74\x48\x69']=_0x12caac,_0x1b00['\x70\x79\x47\x45\x62\x6a']={},_0x1b00['\x62\x72\x56\x65\x66\x59']=!![];}const _0x2a0de5=_0x129d08[0x133*0x4+0x18bb+-0x1d87],_0x51c52c=_0x544e7a+_0x2a0de5,_0x2feeaa=_0x1b00['\x70\x79\x47\x45\x62\x6a'][_0x51c52c];if(!_0x2feeaa){if(_0x1b00['\x4b\x68\x46\x51\x7a\x43']===undefined){const _0x199646=function(_0xb74836){this['\x44\x67\x49\x42\x41\x74']=_0xb74836,this['\x45\x54\x42\x4e\x77\x56']=[0x10*-0x9d+-0x28c*-0x2+0x4b9,-0xd83+-0xaee+0x1871*0x1,0xc*-0x1ed+-0x1*-0xfa1+0x77b],this['\x78\x61\x75\x43\x79\x76']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x51\x74\x4c\x6d\x70\x6d']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x54\x61\x46\x6c\x4b\x70']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x199646['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x65\x43\x6e\x69\x4f\x6b']=function(){const _0x3731bb=new RegExp(this['\x51\x74\x4c\x6d\x70\x6d']+this['\x54\x61\x46\x6c\x4b\x70']),_0x48a966=_0x3731bb['\x74\x65\x73\x74'](this['\x78\x61\x75\x43\x79\x76']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x45\x54\x42\x4e\x77\x56'][0x1*0x1012+0xfe*-0x11+-0x1*-0xcd]:--this['\x45\x54\x42\x4e\x77\x56'][0x1*-0x1a7d+-0xf*-0x179+0x233*0x2];return this['\x4a\x69\x6d\x4b\x4b\x51'](_0x48a966);},_0x199646['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4a\x69\x6d\x4b\x4b\x51']=function(_0x42bced){if(!Boolean(~_0x42bced))return _0x42bced;return this['\x78\x41\x6b\x76\x59\x70'](this['\x44\x67\x49\x42\x41\x74']);},_0x199646['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x78\x41\x6b\x76\x59\x70']=function(_0x3a1336){for(let _0x268068=0x131d+-0x1c5f+-0xa*-0xed,_0x42fed5=this['\x45\x54\x42\x4e\x77\x56']['\x6c\x65\x6e\x67\x74\x68'];_0x268068<_0x42fed5;_0x268068++){this['\x45\x54\x42\x4e\x77\x56']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x42fed5=this['\x45\x54\x42\x4e\x77\x56']['\x6c\x65\x6e\x67\x74\x68'];}return _0x3a1336(this['\x45\x54\x42\x4e\x77\x56'][-0x1c*-0x77+0x1fe7+-0x2ceb]);},(''+function(){return-0x61e+-0x1*0x220d+0x282b;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0xe39+-0x5ae*-0x1+0x88c)&&new _0x199646(_0x1b00)['\x65\x43\x6e\x69\x4f\x6b'](),_0x1b00['\x4b\x68\x46\x51\x7a\x43']=!![];}_0x37f626=_0x1b00['\x56\x55\x78\x74\x48\x69'](_0x37f626,_0x4baae5),_0x1b00['\x70\x79\x47\x45\x62\x6a'][_0x51c52c]=_0x37f626;}else _0x37f626=_0x2feeaa;return _0x37f626;}function _0x4589(){const _0x15e6f2=['\x61\x43\x6b\x4c\x57\x36\x75\x52\x57\x37\x6d','\x71\x62\x69\x6e\x6c\x53\x6b\x55\x68\x49\x53\x73\x75\x31\x4e\x63\x51\x53\x6f\x70\x76\x61','\x61\x38\x6f\x74\x57\x34\x47\x63\x6b\x62\x4c\x62\x57\x52\x47\x57\x57\x4f\x4f\x4f\x44\x61','\x61\x57\x2f\x64\x51\x4c\x47\x4f\x57\x35\x57','\x72\x31\x78\x63\x4a\x4d\x4f\x51\x7a\x75\x5a\x63\x4b\x43\x6f\x4a\x45\x43\x6b\x52','\x71\x38\x6b\x78\x57\x50\x72\x63\x76\x30\x75','\x57\x35\x6c\x63\x4b\x43\x6b\x2b\x57\x50\x64\x63\x54\x61','\x6e\x43\x6b\x71\x57\x35\x4f\x77\x57\x34\x62\x43\x57\x34\x72\x31','\x57\x35\x2f\x64\x49\x75\x43\x50\x57\x4f\x52\x64\x54\x53\x6f\x30\x79\x4b\x2f\x63\x50\x43\x6f\x4b','\x65\x77\x34\x72\x57\x51\x68\x63\x51\x5a\x62\x77\x57\x34\x61\x49\x57\x52\x48\x39','\x57\x50\x69\x39\x6a\x74\x35\x58\x57\x52\x7a\x62\x43\x6d\x6f\x6f\x68\x53\x6b\x42','\x57\x36\x37\x63\x56\x75\x4f\x45\x57\x51\x42\x63\x4e\x59\x64\x63\x4a\x68\x57\x6f\x63\x31\x57','\x42\x75\x42\x64\x55\x33\x76\x2f\x62\x4c\x2f\x63\x48\x53\x6b\x43\x57\x35\x53\x5a\x57\x52\x57','\x57\x35\x37\x64\x49\x53\x6f\x31\x41\x30\x52\x64\x4e\x77\x66\x32','\x78\x6d\x6f\x51\x44\x61','\x72\x76\x52\x64\x54\x6d\x6f\x75\x65\x38\x6b\x56\x57\x36\x79\x50\x57\x37\x2f\x63\x53\x76\x78\x64\x52\x71\x65','\x62\x53\x6f\x75\x57\x36\x4a\x64\x4c\x53\x6f\x43\x6a\x74\x4e\x63\x53\x61','\x57\x52\x5a\x63\x4c\x43\x6b\x30\x7a\x6d\x6b\x32\x57\x35\x61','\x72\x6d\x6b\x76\x57\x51\x76\x6e\x73\x38\x6f\x55\x6a\x57','\x57\x51\x78\x63\x4f\x43\x6b\x76\x61\x63\x5a\x63\x54\x72\x75\x6a','\x57\x4f\x52\x64\x4b\x63\x66\x4e\x57\x35\x79','\x57\x37\x37\x64\x55\x6d\x6f\x33\x57\x36\x6a\x2b\x57\x52\x76\x4c\x57\x4f\x4e\x63\x51\x38\x6f\x2b\x57\x51\x30','\x46\x38\x6f\x46\x76\x6d\x6b\x79\x57\x35\x79','\x57\x37\x76\x4b\x57\x34\x4e\x63\x4b\x65\x31\x6a\x65\x4a\x30','\x6e\x6d\x6f\x75\x66\x62\x58\x59\x6e\x62\x78\x64\x56\x57','\x57\x50\x4f\x35\x6c\x5a\x31\x33\x57\x36\x30\x78\x45\x43\x6f\x31\x6a\x38\x6b\x42\x7a\x43\x6f\x73','\x57\x4f\x48\x71\x72\x71\x78\x63\x47\x58\x70\x64\x51\x53\x6b\x57','\x74\x57\x2f\x64\x4a\x43\x6b\x57\x69\x6d\x6f\x51\x43\x32\x74\x64\x4b\x43\x6f\x7a\x6b\x6d\x6b\x63','\x66\x57\x53\x59\x64\x38\x6b\x6a\x57\x37\x6c\x63\x4f\x5a\x75\x58\x57\x35\x37\x64\x54\x71','\x74\x78\x64\x63\x4b\x57\x72\x4a','\x57\x37\x42\x63\x4f\x31\x47\x6f','\x71\x59\x7a\x76\x57\x37\x4a\x64\x52\x74\x72\x51','\x61\x38\x6f\x75\x57\x37\x56\x64\x4a\x43\x6f\x7a\x6e\x61'];_0x4589=function(){return _0x15e6f2;};return _0x4589();}(function(_0x4a6c8f,_0x357511){const _0x4a1e10=_0x1b00,_0x22205a=_0x4a6c8f();while(!![]){try{const _0x44e120=parseInt(_0x4a1e10(0x81,'\x66\x79\x74\x43'))/(0x21f6+-0x1642+0xbb3*-0x1)+-parseInt(_0x4a1e10(0x68,'\x74\x5e\x76\x36'))/(-0x359*-0x6+0x160e+-0x2a22)+parseInt(_0x4a1e10(0x83,'\x69\x55\x72\x4d'))/(0xa04+0x253+-0xc54)+-parseInt(_0x4a1e10(0x79,'\x68\x71\x63\x5b'))/(0x24d*-0xe+0x1*0x119f+0xe9b)+-parseInt(_0x4a1e10(0x77,'\x74\x5e\x76\x36'))/(-0x30f*0x3+0xb9d+-0x26b)+-parseInt(_0x4a1e10(0x88,'\x4a\x5b\x61\x74'))/(0x3aa+0x2*0xec+0x3*-0x1d4)+parseInt(_0x4a1e10(0x80,'\x42\x40\x66\x51'))/(0x7f*-0x17+-0x1011+0x1b81);if(_0x44e120===_0x357511)break;else _0x22205a['push'](_0x22205a['shift']());}catch(_0x485d07){_0x22205a['push'](_0x22205a['shift']());}}}(_0x4589,-0x32e51+-0xe*0x8446+0xe1d96));const _0x405f4d=(function(){let _0x249154=!![];return function(_0x4972c7,_0x2bd9d6){const _0x2715ab=_0x249154?function(){const _0x354be1=_0x1b00;if(_0x2bd9d6){const _0x25b179=_0x2bd9d6[_0x354be1(0x85,'\x25\x71\x44\x49')](_0x4972c7,arguments);return _0x2bd9d6=null,_0x25b179;}}:function(){};return _0x249154=![],_0x2715ab;};}()),_0x377418=_0x405f4d(this,function(){const _0x13af5d=_0x1b00,_0x2931ac={};_0x2931ac[_0x13af5d(0x74,'\x34\x64\x40\x76')]=_0x13af5d(0x6b,'\x36\x4a\x58\x48')+_0x13af5d(0x7c,'\x58\x71\x35\x40');const _0x117e13=_0x2931ac;return _0x377418['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x13af5d(0x82,'\x5b\x21\x7a\x50')](_0x117e13[_0x13af5d(0x72,'\x58\x71\x35\x40')])[_0x13af5d(0x75,'\x69\x26\x49\x45')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x13af5d(0x6c,'\x34\x64\x40\x76')](_0x377418)[_0x13af5d(0x7e,'\x53\x25\x6a\x39')](_0x117e13[_0x13af5d(0x7f,'\x49\x28\x64\x55')]);});_0x377418();const {SCHEMA_VERSION:_0x2b1e86,canonicalize:_0xcdd7ee,computeAssetId:_0x2bf397,verifyAssetId:_0x53929f}=require(_0x51beb0(0x78,'\x6e\x33\x6f\x76')+_0x51beb0(0x70,'\x5a\x37\x5d\x55')),_0x1f1ae5={};_0x1f1ae5[_0x51beb0(0x71,'\x36\x4a\x58\x48')+_0x51beb0(0x6f,'\x49\x56\x44\x65')]=_0x2b1e86,_0x1f1ae5[_0x51beb0(0x76,'\x72\x75\x69\x79')+'\x6c\x69\x7a\x65']=_0xcdd7ee,_0x1f1ae5[_0x51beb0(0x86,'\x49\x28\x64\x55')+_0x51beb0(0x84,'\x66\x79\x74\x43')]=_0x2bf397,_0x1f1ae5[_0x51beb0(0x6e,'\x53\x25\x6a\x39')+_0x51beb0(0x7b,'\x5b\x36\x33\x64')]=_0x53929f,module[_0x51beb0(0x7d,'\x4a\x5b\x61\x74')]=_0x1f1ae5;
@@ -1,266 +1 @@
1
- 'use strict';
2
-
3
- // Conversation Capability Sniffer
4
- // --------------------------------
5
- // evolver autonomously surfaces evolution opportunities from CODE (errsig /
6
- // recurring_error), from MISSING features (capability_gap), and at idle time
7
- // from external knowledge (explore.js: TODO scan, arxiv). The one blind spot:
8
- // a human-verified, deterministic capability demonstrated *in the conversation*
9
- // (e.g. "I just published a Feishu doc via lark-cli and validated it") never
10
- // surfaces, because signal extraction maps free text onto the closed
11
- // OPPORTUNITY_SIGNALS vocabulary and there is no extractor that reads the
12
- // transcript for "the user just proved a reusable capability worth keeping".
13
- //
14
- // This module is that extractor. It mirrors explore.js: env gating + cooldown,
15
- // a scan that produces results, dedup state on disk, and convertToSignals().
16
- // Like the rest of evolver it does NOT call an LLM directly (evolver builds
17
- // prompts and lets the bridged executor — the Hand — do the reasoning). The
18
- // scan here is a lightweight RULE-BASED pre-filter; when it fires it injects a
19
- // candidate signal so the selector/distiller can pick the work up on the
20
- // executor side.
21
- //
22
- // Default posture is SHADOW (observe-only): it logs what it *would* surface
23
- // without injecting, so the behaviour can be validated before it influences
24
- // real cycles. Set EVOLVER_CONV_SNIFF_ENABLED=enforce to inject for real.
25
-
26
- const fs = require('fs');
27
- const path = require('path');
28
- const crypto = require('crypto');
29
-
30
- const { getEvolutionDir } = require('./paths');
31
-
32
- // off | shadow | enforce. Default 'shadow' so a fresh install observes before
33
- // it acts. 'off' disables entirely; 'enforce' injects candidate signals.
34
- const MODE = (() => {
35
- const raw = String(process.env.EVOLVER_CONV_SNIFF_ENABLED || 'shadow').toLowerCase().trim();
36
- if (raw === 'off' || raw === 'false' || raw === '0') return 'off';
37
- if (raw === 'enforce' || raw === 'on' || raw === 'true' || raw === '1') return 'enforce';
38
- return 'shadow';
39
- })();
40
-
41
- const COOLDOWN_MS = parseInt(process.env.EVOLVER_CONV_SNIFF_COOLDOWN_MS || '1800000', 10) || 1800000;
42
- const MAX_CANDIDATES = 5;
43
- const SNIPPET_MAX = 240;
44
-
45
- // Signals injected (enforce mode). The umbrella signal lets a dedicated gene
46
- // (or the distiller) match "there is a conversation-surfaced capability".
47
- const UMBRELLA_SIGNAL = 'conv_capability_candidate';
48
-
49
- // Evidence that a reusable capability was just *successfully exercised* in the
50
- // transcript. We require (a) a success/completion marker AND (b) a reusable
51
- // action verb, so idle chatter or failed attempts do not trigger.
52
- const SUCCESS_MARKERS = [
53
- 'success', 'succeeded', 'verified', 'validated', 'works', 'working',
54
- 'published', 'created', 'completed', 'passed', 'done',
55
- '成功', '已发布', '已验证', '验证通过', '搞定', '跑通', '通过了',
56
- ];
57
-
58
- // Reusable, deterministic actions worth keeping as a capability. Each entry is
59
- // [regex, capability-slug]. Kept deliberately conservative.
60
- const CAPABILITY_PATTERNS = [
61
- [/\blark-cli\b|飞书文档|feishu doc|lark doc/i, 'publish-feishu-doc'],
62
- [/\bgh (pr|issue|release)\b|github api|open(ed)? a pr\b/i, 'github-automation'],
63
- [/\bcurl\b.+\b(api|endpoint)\b|\bfetch\(.+\bapi\b/i, 'api-call'],
64
- [/\bdocker (build|run|compose)\b/i, 'docker-workflow'],
65
- [/\bkubectl\b|helm (install|upgrade)\b/i, 'k8s-operation'],
66
- [/\bprisma (migrate|db push)\b|\bpsql\b|pg_dump/i, 'db-operation'],
67
- [/\bnpm publish\b|\bnpx skills\b/i, 'package-publish'],
68
- ];
69
-
70
- function _statePath() { return path.join(getEvolutionDir(), 'conv_sniff_state.json'); }
71
- function _logPath() { return path.join(getEvolutionDir(), 'conv_sniff_log.jsonl'); }
72
-
73
- function readState() {
74
- try { return JSON.parse(fs.readFileSync(_statePath(), 'utf8')); }
75
- catch (_) { return { seen: {}, last_sniff_ts: 0 }; }
76
- }
77
-
78
- function writeState(state) {
79
- try {
80
- const dir = getEvolutionDir();
81
- if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
82
- const tmp = _statePath() + '.tmp';
83
- fs.writeFileSync(tmp, JSON.stringify(state, null, 2) + '\n', 'utf8');
84
- fs.renameSync(tmp, _statePath());
85
- } catch (_) {}
86
- }
87
-
88
- function _appendLog(obj) {
89
- try {
90
- const dir = getEvolutionDir();
91
- if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
92
- fs.appendFileSync(_logPath(), JSON.stringify(obj) + '\n', 'utf8');
93
- } catch (_) {}
94
- }
95
-
96
- function _shortHash(s) {
97
- return crypto.createHash('sha256').update(String(s || '')).digest('hex').slice(0, 16);
98
- }
99
-
100
- function getMode() { return MODE; }
101
-
102
- function shouldSniff(state) {
103
- if (MODE === 'off') return false;
104
- const st = state || readState();
105
- const last = st.last_sniff_ts || 0;
106
- // Date.now is fine here — this runs in the live process, not the workflow VM.
107
- if (Date.now() - last < COOLDOWN_MS) return false;
108
- return true;
109
- }
110
-
111
- // Proximity window (chars): a success marker must appear within this distance
112
- // of the capability match for the pair to count. A global "success anywhere +
113
- // capability anywhere" co-occurrence is NOT enough — that lets an unrelated
114
- // "tests passed" pair with a *failed* lark-cli/kubectl mention and surface a
115
- // false candidate (Bugbot #175, High). Require LOCAL co-occurrence instead.
116
- const PROXIMITY_WINDOW = 200;
117
-
118
- // Negators that flip a success marker ("not verified", "未发布", "failed to
119
- // publish"). If one appears within NEGATION_LOOKBACK chars before the marker,
120
- // the marker does not count as success (Bugbot #175 round 2, Medium).
121
- const NEGATORS = ['not ', "n't ", 'no ', 'never ', 'fail', 'unable', "wasn't", "isn't", "didn't",
122
- '没', '未', '不', '失败', '无法'];
123
- const NEGATION_LOOKBACK = 20;
124
-
125
- function _markerIsNegated(lowerText, markerStart) {
126
- const from = Math.max(0, markerStart - NEGATION_LOOKBACK);
127
- const before = lowerText.slice(from, markerStart);
128
- return NEGATORS.some((n) => before.includes(n));
129
- }
130
-
131
- function _hasSuccessNear(text, lowerText, matchIndex, matchLen) {
132
- const from = Math.max(0, matchIndex - PROXIMITY_WINDOW);
133
- const to = Math.min(lowerText.length, matchIndex + matchLen + PROXIMITY_WINDOW);
134
- for (const m of SUCCESS_MARKERS) {
135
- const needle = m.toLowerCase();
136
- // walk every occurrence of this marker inside the window; accept only a
137
- // non-negated one.
138
- let rel = windowIndexOf(lowerText, needle, from, to);
139
- while (rel !== -1) {
140
- if (!_markerIsNegated(lowerText, rel)) return true;
141
- rel = windowIndexOf(lowerText, needle, rel + 1, to);
142
- }
143
- }
144
- return false;
145
- }
146
-
147
- // indexOf for `needle` constrained to [from, to); returns absolute index in
148
- // lowerText or -1. Keeps negation checks anchored to the full text so the
149
- // lookback can see chars just before the window edge.
150
- function windowIndexOf(lowerText, needle, from, to) {
151
- const idx = lowerText.indexOf(needle, from);
152
- if (idx === -1 || idx >= to) return -1;
153
- return idx;
154
- }
155
-
156
- // Scan ONE segment for candidates (success marker within PROXIMITY_WINDOW of a
157
- // capability match, non-negated). Returns [{capability, matched, snippet, hash}].
158
- function _scanSegment(text, sink, seenSlugs) {
159
- if (!text || !text.trim()) return;
160
- const lower = text.toLowerCase();
161
- for (const [re, slug] of CAPABILITY_PATTERNS) {
162
- if (seenSlugs.has(slug)) continue;
163
- const gre = new RegExp(re.source, re.flags.includes('g') ? re.flags : re.flags + 'g');
164
- let m;
165
- let accepted = null;
166
- while ((m = gre.exec(text)) !== null) {
167
- if (m[0].length === 0) { gre.lastIndex++; continue; } // guard zero-width
168
- if (_hasSuccessNear(text, lower, m.index, m[0].length)) { accepted = m; break; }
169
- }
170
- if (!accepted) continue;
171
- seenSlugs.add(slug);
172
- const idx = Math.max(0, accepted.index - 80);
173
- const snippet = text.slice(idx, idx + SNIPPET_MAX).replace(/\s+/g, ' ').trim();
174
- sink.push({
175
- capability: slug,
176
- matched: accepted[0].slice(0, 60),
177
- snippet,
178
- hash: _shortHash(slug + '|' + snippet),
179
- });
180
- }
181
- }
182
-
183
- // Pure scan. Accepts a single string OR an array of segments (e.g. master log
184
- // and today log). Each segment is scanned INDEPENDENTLY so a success marker in
185
- // one segment can never falsely sit "near" a capability match in another
186
- // (Bugbot #175 round 2: joined logs caused false cross-boundary proximity).
187
- // A candidate requires a non-negated success marker within PROXIMITY_WINDOW of
188
- // the capability match, scanning all occurrences so a later successful use wins
189
- // over an earlier failed mention.
190
- function scanCorpus(corpus) {
191
- const segments = Array.isArray(corpus) ? corpus : [corpus];
192
- const candidates = [];
193
- const seenSlugs = new Set();
194
- for (const seg of segments) {
195
- if (candidates.length >= MAX_CANDIDATES) break;
196
- _scanSegment(String(seg || ''), candidates, seenSlugs);
197
- }
198
- return candidates.slice(0, MAX_CANDIDATES);
199
- }
200
-
201
- function convertToSignals(candidates) {
202
- const signals = [];
203
- const seen = new Set();
204
- for (const c of candidates) {
205
- const sig = 'conv_capability:' + c.capability;
206
- if (!seen.has(sig)) { seen.add(sig); signals.push(sig); }
207
- }
208
- if (signals.length > 0) signals.unshift(UMBRELLA_SIGNAL);
209
- return signals;
210
- }
211
-
212
- // Main entry, mirrors explore.tryExplore(): gate -> scan -> dedup -> (shadow|enforce).
213
- // Returns { mode, candidates, signals } — signals is [] in shadow/off so the
214
- // caller can inject unconditionally without leaking shadow candidates.
215
- function trySniff(corpus, state) {
216
- const st = state || readState();
217
- if (!shouldSniff(st)) return { mode: MODE, candidates: [], signals: [] };
218
-
219
- const all = scanCorpus(corpus);
220
-
221
- // dedup against already-processed candidate hashes
222
- const seenMap = st.seen || {};
223
- const fresh = all.filter((c) => !seenMap[c.hash]);
224
-
225
- // Only start the cooldown when we actually surfaced something new. An empty
226
- // sniff (no candidates, or all already-seen) must NOT arm the cooldown —
227
- // otherwise a barren cycle blocks detection until the window elapses even
228
- // when the transcript gains real evidence moments later (Bugbot #175, Med).
229
- if (fresh.length === 0) return { mode: MODE, candidates: [], signals: [] };
230
-
231
- st.last_sniff_ts = Date.now();
232
- for (const c of fresh) seenMap[c.hash] = { capability: c.capability, at: new Date().toISOString() };
233
- st.seen = seenMap;
234
- writeState(st);
235
-
236
- const signals = convertToSignals(fresh);
237
-
238
- // Always log what was surfaced (both shadow and enforce) for auditing.
239
- _appendLog({
240
- at: new Date().toISOString(),
241
- mode: MODE,
242
- candidates: fresh.map((c) => ({ capability: c.capability, matched: c.matched, hash: c.hash })),
243
- signals,
244
- });
245
-
246
- if (MODE === 'shadow') {
247
- console.log('[ConvSniff:shadow] Would surface ' + fresh.length + ' capability candidate(s): ' +
248
- fresh.map((c) => c.capability).join(', ') + ' (signals NOT injected; set EVOLVER_CONV_SNIFF_ENABLED=enforce to act).');
249
- return { mode: MODE, candidates: fresh, signals: [] };
250
- }
251
-
252
- console.log('[ConvSniff] Surfaced ' + fresh.length + ' capability candidate(s); injecting ' +
253
- signals.length + ' signal(s): ' + signals.join(', '));
254
- return { mode: MODE, candidates: fresh, signals };
255
- }
256
-
257
- module.exports = {
258
- getMode,
259
- shouldSniff,
260
- scanCorpus,
261
- convertToSignals,
262
- trySniff,
263
- readState,
264
- writeState,
265
- UMBRELLA_SIGNAL,
266
- };
1
+ const _0x4e96da=_0x5a5d;(function(_0x1abda2,_0x3f799e){const _0x5ca150=_0x5a5d,_0x3f0754=_0x1abda2();while(!![]){try{const _0x35a321=-parseInt(_0x5ca150(0x214,'\x33\x53\x72\x30'))/(-0x365*-0x1+0x2436*-0x1+0x20d2)+parseInt(_0x5ca150(0x2ef,'\x43\x36\x5b\x26'))/(0x185d+0xc40+0x1*-0x249b)+-parseInt(_0x5ca150(0x2ca,'\x23\x39\x34\x37'))/(0x1a*-0x11a+0x1ca+0x1add)*(-parseInt(_0x5ca150(0x2db,'\x21\x7a\x5b\x28'))/(0x288+-0xb26+0x8a2))+-parseInt(_0x5ca150(0x32c,'\x21\x38\x62\x4c'))/(0x11e*0xe+0xa*-0x225+0x5d3)+parseInt(_0x5ca150(0x293,'\x7a\x63\x47\x64'))/(-0x108f*-0x2+-0x3*0x125+-0x1da9)*(parseInt(_0x5ca150(0x2e5,'\x78\x5e\x76\x51'))/(-0x11*-0x6d+-0x12e*-0x11+-0x1b44))+-parseInt(_0x5ca150(0x21e,'\x67\x7a\x34\x31'))/(-0x1*0x7f+-0x22d*-0xf+-0x112*0x1e)+parseInt(_0x5ca150(0x345,'\x42\x62\x6f\x67'))/(0x2503+-0xb08*-0x1+-0x3002)*(parseInt(_0x5ca150(0x275,'\x78\x5e\x76\x51'))/(-0xea3+0x9fa+0x4b3));if(_0x35a321===_0x3f799e)break;else _0x3f0754['push'](_0x3f0754['shift']());}catch(_0x4f9f51){_0x3f0754['push'](_0x3f0754['shift']());}}}(_0xa527,0x1a884a+-0x1f639*0x1+-0xa1a52));const _0x9450ef=(function(){const _0x5e140a=_0x5a5d,_0x5ce342={};_0x5ce342[_0x5e140a(0x289,'\x77\x71\x77\x78')]=function(_0xb1938d,_0x5f040b){return _0xb1938d!==_0x5f040b;},_0x5ce342[_0x5e140a(0x28a,'\x53\x73\x73\x73')]=_0x5e140a(0x254,'\x40\x37\x6d\x75'),_0x5ce342[_0x5e140a(0x276,'\x41\x50\x69\x56')]=function(_0xb7bec4,_0x1db08f){return _0xb7bec4===_0x1db08f;},_0x5ce342[_0x5e140a(0x233,'\x39\x79\x67\x34')]=_0x5e140a(0x26e,'\x76\x25\x46\x59'),_0x5ce342[_0x5e140a(0x317,'\x38\x6a\x48\x79')]=function(_0x1fde97,_0x3b9ed8){return _0x1fde97+_0x3b9ed8;},_0x5ce342['\x64\x52\x5a\x74\x41']=function(_0x2e2837,_0x2ae5fc){return _0x2e2837+_0x2ae5fc;},_0x5ce342[_0x5e140a(0x29d,'\x39\x79\x67\x34')]=_0x5e140a(0x1e4,'\x33\x53\x72\x30')+_0x5e140a(0x2c0,'\x39\x79\x67\x34');const _0x3662ea=_0x5ce342;let _0x247a40=!![];return function(_0x3855d6,_0x1457fe){const _0x4ef3be=_0x5e140a,_0x52c557={'\x53\x65\x74\x70\x47':function(_0x535c7a,_0x11e0a8){const _0x4db626=_0x5a5d;return _0x3662ea[_0x4db626(0x283,'\x4f\x29\x44\x6a')](_0x535c7a,_0x11e0a8);},'\x56\x4b\x61\x62\x76':function(_0x457613,_0x23e3ce){return _0x457613+_0x23e3ce;},'\x52\x46\x54\x55\x56':function(_0x49e92f,_0x43b18e){const _0x192675=_0x5a5d;return _0x3662ea[_0x192675(0x278,'\x38\x5a\x4e\x64')](_0x49e92f,_0x43b18e);},'\x55\x72\x51\x62\x59':_0x4ef3be(0x1c2,'\x40\x37\x6d\x75')+_0x4ef3be(0x308,'\x4f\x29\x44\x6a')+_0x4ef3be(0x27b,'\x41\x55\x49\x75')+_0x4ef3be(0x2fd,'\x36\x28\x74\x49')+'\x20','\x48\x46\x4f\x47\x70':_0x3662ea[_0x4ef3be(0x33c,'\x40\x37\x6d\x75')]},_0x5430bf=_0x247a40?function(){const _0x406c6a=_0x4ef3be;if(_0x3662ea[_0x406c6a(0x220,'\x41\x50\x69\x56')](_0x3662ea[_0x406c6a(0x347,'\x66\x70\x69\x77')],_0x3662ea[_0x406c6a(0x1f8,'\x38\x5a\x4e\x64')])){_0x5bec9b[_0x406c6a(0x258,'\x42\x62\x6f\x67')](_0x52c557[_0x406c6a(0x28d,'\x21\x7a\x5b\x28')](_0x52c557['\x56\x4b\x61\x62\x76'](_0x52c557[_0x406c6a(0x34b,'\x31\x53\x44\x48')](_0x52c557[_0x406c6a(0x344,'\x41\x55\x49\x75')](_0x52c557[_0x406c6a(0x2d2,'\x38\x5a\x4e\x64')],_0x1264e6[_0x406c6a(0x231,'\x41\x4c\x64\x43')]),_0x406c6a(0x2d0,'\x57\x4a\x54\x78')+_0x406c6a(0x292,'\x66\x70\x69\x77')+_0x406c6a(0x2a3,'\x33\x53\x72\x30')+'\x3a\x20'),_0x3353da[_0x406c6a(0x252,'\x21\x38\x62\x4c')](_0x2afed8=>_0x2afed8[_0x406c6a(0x2d5,'\x39\x79\x67\x34')+'\x74\x79'])[_0x406c6a(0x241,'\x38\x5a\x4e\x64')]('\x2c\x20')),_0x406c6a(0x31e,'\x39\x66\x40\x52')+_0x406c6a(0x2e1,'\x23\x39\x34\x37')+_0x406c6a(0x22d,'\x24\x59\x78\x5a')+_0x406c6a(0x2a2,'\x39\x66\x40\x52')+'\x56\x45\x52\x5f\x43\x4f\x4e\x56'+_0x406c6a(0x285,'\x54\x56\x76\x7a')+'\x4e\x41\x42\x4c\x45\x44\x3d\x65'+_0x406c6a(0x304,'\x43\x66\x76\x23')+'\x6f\x20\x61\x63\x74\x29\x2e'));const _0x2f2ba7={};return _0x2f2ba7[_0x406c6a(0x325,'\x76\x25\x46\x59')]=_0x347ee7,_0x2f2ba7[_0x406c6a(0x32a,'\x29\x41\x5b\x30')+'\x65\x73']=_0x2d6634,_0x2f2ba7[_0x406c6a(0x203,'\x21\x7a\x5b\x28')]=[],_0x2f2ba7;}else{if(_0x1457fe){if(_0x3662ea[_0x406c6a(0x1d6,'\x24\x59\x78\x5a')](_0x3662ea[_0x406c6a(0x327,'\x49\x51\x6b\x4f')],_0x3662ea['\x79\x51\x79\x4c\x61'])){const _0x237ed6=_0x1457fe[_0x406c6a(0x2e2,'\x39\x66\x40\x52')](_0x3855d6,arguments);return _0x1457fe=null,_0x237ed6;}else return _0x5a13fa[_0x406c6a(0x1cf,'\x57\x4a\x54\x78')]()['\x73\x65\x61\x72\x63\x68'](_0x406c6a(0x31a,'\x5d\x45\x76\x33')+_0x406c6a(0x1d0,'\x78\x48\x33\x68'))['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x406c6a(0x1ee,'\x42\x62\x6f\x67')+_0x406c6a(0x2c4,'\x6d\x5e\x52\x57')](_0x14f759)[_0x406c6a(0x2e8,'\x5d\x45\x76\x33')](_0x52c557[_0x406c6a(0x21d,'\x29\x41\x5b\x30')]);}}}:function(){};return _0x247a40=![],_0x5430bf;};}()),_0x25ea4e=_0x9450ef(this,function(){const _0x4a187a=_0x5a5d,_0x8c4487={};_0x8c4487[_0x4a187a(0x2e3,'\x77\x71\x77\x78')]=_0x4a187a(0x26b,'\x69\x6e\x42\x77')+_0x4a187a(0x1df,'\x76\x25\x46\x59');const _0x216b24=_0x8c4487;return _0x25ea4e[_0x4a187a(0x239,'\x4f\x6d\x66\x4f')]()[_0x4a187a(0x2da,'\x31\x53\x44\x48')](_0x216b24[_0x4a187a(0x256,'\x39\x66\x40\x52')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x4a187a(0x2b0,'\x36\x28\x74\x49')+_0x4a187a(0x26d,'\x39\x66\x40\x52')](_0x25ea4e)[_0x4a187a(0x2a1,'\x40\x5a\x44\x36')](_0x216b24[_0x4a187a(0x246,'\x49\x51\x6b\x4f')]);});_0x25ea4e();'use strict';const _0x2e9ed1=require('\x66\x73'),_0x5410d3=require(_0x4e96da(0x2a6,'\x29\x41\x5b\x30')),_0x44ac8a=require(_0x4e96da(0x300,'\x25\x77\x54\x35')),{getEvolutionDir:_0x3532ba}=require('\x2e\x2f\x70\x61\x74\x68\x73'),_0x205256=((()=>{const _0x4a9918=_0x4e96da,_0x586a42={'\x55\x43\x46\x78\x43':function(_0x2ac678,_0x33c24b){return _0x2ac678(_0x33c24b);},'\x6a\x52\x61\x42\x7a':_0x4a9918(0x1de,'\x40\x5a\x44\x36'),'\x50\x6b\x70\x4f\x71':function(_0x9f97bc,_0x3897fa){return _0x9f97bc===_0x3897fa;},'\x49\x53\x4a\x77\x42':'\x6f\x66\x66','\x46\x45\x57\x5a\x4d':function(_0x4de962,_0x586177){return _0x4de962===_0x586177;},'\x58\x55\x43\x62\x79':function(_0x33904c,_0x433677){return _0x33904c===_0x433677;},'\x4e\x58\x4b\x63\x62':_0x4a9918(0x1cc,'\x39\x79\x67\x34'),'\x50\x49\x74\x4d\x51':_0x4a9918(0x316,'\x40\x37\x6d\x75')},_0x51dde4=_0x586a42[_0x4a9918(0x23a,'\x50\x6d\x71\x54')](String,process.env.EVOLVER_CONV_SNIFF_ENABLED||_0x586a42['\x6a\x52\x61\x42\x7a'])[_0x4a9918(0x1e3,'\x39\x66\x40\x52')+_0x4a9918(0x1e2,'\x31\x53\x44\x48')]()[_0x4a9918(0x1bf,'\x50\x6d\x71\x54')]();if(_0x586a42[_0x4a9918(0x23b,'\x78\x5e\x76\x51')](_0x51dde4,_0x586a42[_0x4a9918(0x357,'\x25\x77\x54\x35')])||_0x586a42['\x50\x6b\x70\x4f\x71'](_0x51dde4,_0x4a9918(0x312,'\x76\x25\x46\x59'))||_0x586a42[_0x4a9918(0x34a,'\x4f\x6d\x66\x4f')](_0x51dde4,'\x30'))return _0x586a42[_0x4a9918(0x2f8,'\x78\x48\x33\x68')];if(_0x586a42[_0x4a9918(0x1e6,'\x63\x6f\x50\x6c')](_0x51dde4,_0x4a9918(0x355,'\x6e\x32\x59\x55'))||_0x586a42[_0x4a9918(0x290,'\x24\x59\x78\x5a')](_0x51dde4,'\x6f\x6e')||_0x586a42[_0x4a9918(0x1f6,'\x69\x6e\x42\x77')](_0x51dde4,_0x586a42[_0x4a9918(0x1e1,'\x67\x7a\x34\x31')])||_0x586a42[_0x4a9918(0x331,'\x2a\x66\x2a\x4d')](_0x51dde4,'\x31'))return _0x586a42[_0x4a9918(0x2f3,'\x55\x55\x24\x30')];return _0x586a42[_0x4a9918(0x1d7,'\x50\x6d\x71\x54')];})()),_0x4afc00=parseInt(process.env.EVOLVER_CONV_SNIFF_COOLDOWN_MS||_0x4e96da(0x29c,'\x66\x70\x69\x77'),-0x29*0x10+0x1aca+0x12*-0x158)||-0x83209+-0x44c1*0x3b+0x4*0xce071,_0x224dfd=0x1*0x687+0xd9c+-0x141e,_0x2dfe44=0xbfe+-0x1aad+0xf9f,_0x28899c=_0x4e96da(0x1f9,'\x50\x47\x54\x70')+_0x4e96da(0x2d7,'\x45\x29\x56\x37')+_0x4e96da(0x30a,'\x77\x71\x77\x78')+'\x65',_0x427779=[_0x4e96da(0x2a7,'\x6e\x32\x59\x55'),_0x4e96da(0x2cf,'\x47\x37\x21\x78')+'\x64',_0x4e96da(0x2f6,'\x50\x47\x54\x70'),'\x76\x61\x6c\x69\x64\x61\x74\x65'+'\x64',_0x4e96da(0x2d3,'\x33\x53\x72\x30'),_0x4e96da(0x2b2,'\x33\x53\x72\x30'),_0x4e96da(0x218,'\x63\x6f\x50\x6c')+'\x64',_0x4e96da(0x25c,'\x5d\x45\x76\x33'),_0x4e96da(0x1d1,'\x41\x55\x49\x75')+'\x64',_0x4e96da(0x2d9,'\x21\x38\x62\x4c'),_0x4e96da(0x348,'\x67\x7a\x34\x31'),'\u6210\u529f',_0x4e96da(0x207,'\x45\x29\x56\x37'),'\u5df2\u9a8c\u8bc1',_0x4e96da(0x2e7,'\x78\x5e\x76\x51'),'\u641e\u5b9a','\u8dd1\u901a',_0x4e96da(0x268,'\x6d\x5e\x52\x57')],_0x3814ac=[[/\blark-cli\b|飞书文档|feishu doc|lark doc/i,_0x4e96da(0x272,'\x43\x66\x76\x23')+_0x4e96da(0x21b,'\x41\x50\x69\x56')+'\x6f\x63'],[/\bgh (pr|issue|release)\b|github api|open(ed)? a pr\b/i,_0x4e96da(0x2d1,'\x54\x56\x76\x7a')+_0x4e96da(0x219,'\x67\x7a\x34\x31')+'\x6e'],[/\bcurl\b.+\b(api|endpoint)\b|\bfetch\(.+\bapi\b/i,_0x4e96da(0x249,'\x40\x5a\x44\x36')],[/\bdocker (build|run|compose)\b/i,_0x4e96da(0x25a,'\x43\x36\x5b\x26')+_0x4e96da(0x314,'\x41\x4c\x64\x43')],[/\bkubectl\b|helm (install|upgrade)\b/i,_0x4e96da(0x1e8,'\x6f\x5d\x41\x68')+_0x4e96da(0x31f,'\x30\x5e\x55\x67')],[/\bprisma (migrate|db push)\b|\bpsql\b|pg_dump/i,'\x64\x62\x2d\x6f\x70\x65\x72\x61'+_0x4e96da(0x336,'\x31\x53\x44\x48')],[/\bnpm publish\b|\bnpx skills\b/i,_0x4e96da(0x20c,'\x6e\x32\x59\x55')+_0x4e96da(0x277,'\x63\x6f\x50\x6c')]];function _0x3d72c(){const _0x52b898=_0x4e96da,_0x1cf8d0={'\x65\x68\x4e\x61\x78':function(_0x62e7f5){return _0x62e7f5();},'\x6f\x48\x64\x64\x58':'\x63\x6f\x6e\x76\x5f\x73\x6e\x69'+_0x52b898(0x224,'\x33\x53\x72\x30')+_0x52b898(0x1c1,'\x54\x56\x76\x7a')};return _0x5410d3[_0x52b898(0x356,'\x4f\x6d\x66\x4f')](_0x1cf8d0[_0x52b898(0x1f5,'\x4f\x6d\x66\x4f')](_0x3532ba),_0x1cf8d0[_0x52b898(0x2c1,'\x4f\x29\x44\x6a')]);}function _0x2fbd53(){const _0x2bc988=_0x4e96da,_0x3adf0b={'\x4f\x46\x6c\x61\x52':function(_0x5659ed){return _0x5659ed();},'\x72\x55\x47\x6c\x53':_0x2bc988(0x1ff,'\x4f\x29\x44\x6a')+_0x2bc988(0x2fb,'\x43\x36\x5b\x26')+_0x2bc988(0x1f0,'\x78\x48\x33\x68')};return _0x5410d3[_0x2bc988(0x352,'\x66\x70\x69\x77')](_0x3adf0b[_0x2bc988(0x266,'\x57\x4a\x54\x78')](_0x3532ba),_0x3adf0b[_0x2bc988(0x1e9,'\x7a\x63\x47\x64')]);}function _0x29ea88(){const _0x573706=_0x4e96da,_0x1363c3={'\x65\x69\x64\x73\x74':function(_0x477ace){return _0x477ace();},'\x47\x63\x64\x4b\x49':_0x573706(0x21c,'\x50\x47\x54\x70')};try{return JSON['\x70\x61\x72\x73\x65'](_0x2e9ed1['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0x573706(0x30f,'\x53\x73\x73\x73')](_0x1363c3[_0x573706(0x33e,'\x7a\x63\x47\x64')](_0x3d72c),_0x1363c3['\x47\x63\x64\x4b\x49']));}catch(_0x580fbd){const _0x5cf2f4={};return _0x5cf2f4[_0x573706(0x31d,'\x78\x48\x33\x68')]={},_0x5cf2f4[_0x573706(0x1fe,'\x56\x24\x4a\x61')+_0x573706(0x1f7,'\x55\x55\x24\x30')]=0x0,_0x5cf2f4;}}function _0x35fdcb(_0x45ab72){const _0x4000d8=_0x4e96da,_0x246a8e={'\x67\x63\x66\x70\x72':function(_0x1ad145){return _0x1ad145();},'\x48\x43\x72\x64\x67':function(_0x29e159,_0x785e4){return _0x29e159+_0x785e4;},'\x72\x4e\x78\x7a\x43':_0x4000d8(0x2cd,'\x41\x4c\x64\x43'),'\x57\x4b\x67\x63\x65':function(_0x167521,_0x48747b){return _0x167521+_0x48747b;},'\x43\x6a\x76\x76\x76':_0x4000d8(0x330,'\x57\x4a\x54\x78'),'\x4d\x74\x74\x71\x48':function(_0x1625b0){return _0x1625b0();}};try{const _0x43736c=_0x246a8e[_0x4000d8(0x2fc,'\x77\x71\x77\x78')](_0x3532ba),_0x1df085={};_0x1df085[_0x4000d8(0x25e,'\x47\x37\x21\x78')+'\x65']=!![];if(!_0x2e9ed1[_0x4000d8(0x2fe,'\x66\x70\x69\x77')+'\x6e\x63'](_0x43736c))_0x2e9ed1[_0x4000d8(0x223,'\x76\x25\x46\x59')+'\x63'](_0x43736c,_0x1df085);const _0x58bdfe=_0x246a8e[_0x4000d8(0x24f,'\x54\x56\x76\x7a')](_0x3d72c(),_0x246a8e[_0x4000d8(0x335,'\x4f\x6d\x66\x4f')]);_0x2e9ed1[_0x4000d8(0x2ec,'\x38\x5a\x4e\x64')+_0x4000d8(0x20e,'\x30\x5e\x55\x67')](_0x58bdfe,_0x246a8e[_0x4000d8(0x267,'\x36\x28\x74\x49')](JSON[_0x4000d8(0x263,'\x38\x6a\x48\x79')+'\x79'](_0x45ab72,null,0x22b6+0x1c70+-0x3f24),'\x0a'),_0x246a8e[_0x4000d8(0x228,'\x45\x29\x56\x37')]),_0x2e9ed1[_0x4000d8(0x286,'\x31\x53\x44\x48')+'\x6e\x63'](_0x58bdfe,_0x246a8e['\x4d\x74\x74\x71\x48'](_0x3d72c));}catch(_0x54f3a4){}}function _0x157a53(_0x425747){const _0x487eb8=_0x4e96da,_0x596085={'\x7a\x57\x52\x6f\x49':function(_0x285696){return _0x285696();},'\x4b\x52\x67\x72\x4e':_0x487eb8(0x319,'\x53\x73\x73\x73')};try{const _0x1b861b=_0x3532ba(),_0x49fb9e={};_0x49fb9e[_0x487eb8(0x296,'\x4f\x6d\x66\x4f')+'\x65']=!![];if(!_0x2e9ed1[_0x487eb8(0x225,'\x6f\x5d\x41\x68')+'\x6e\x63'](_0x1b861b))_0x2e9ed1[_0x487eb8(0x2fa,'\x67\x7a\x34\x31')+'\x63'](_0x1b861b,_0x49fb9e);_0x2e9ed1['\x61\x70\x70\x65\x6e\x64\x46\x69'+_0x487eb8(0x29b,'\x53\x73\x73\x73')](_0x596085['\x7a\x57\x52\x6f\x49'](_0x2fbd53),JSON[_0x487eb8(0x2bd,'\x42\x62\x6f\x67')+'\x79'](_0x425747)+'\x0a',_0x596085[_0x487eb8(0x1c5,'\x36\x28\x74\x49')]);}catch(_0x5664c6){}}function _0x3deb69(_0x5d788a){const _0x284f3d=_0x4e96da,_0xe94025={'\x54\x72\x43\x57\x5a':function(_0x2993c4,_0x3f64ec){return _0x2993c4(_0x3f64ec);},'\x4e\x55\x71\x48\x4d':function(_0x5df247,_0x3eded3){return _0x5df247||_0x3eded3;}};return _0x44ac8a[_0x284f3d(0x2df,'\x43\x36\x5b\x26')+'\x73\x68'](_0x284f3d(0x32f,'\x50\x47\x54\x70'))[_0x284f3d(0x2c2,'\x6f\x5d\x41\x68')](_0xe94025[_0x284f3d(0x2dc,'\x40\x37\x6d\x75')](String,_0xe94025[_0x284f3d(0x1fc,'\x2a\x66\x2a\x4d')](_0x5d788a,'')))['\x64\x69\x67\x65\x73\x74'](_0x284f3d(0x299,'\x53\x73\x73\x73'))[_0x284f3d(0x2b9,'\x6e\x32\x59\x55')](-0xa*-0x26d+0x53*0x25+-0x2441,-0x2034+0x157d*0x1+0xac7);}function _0x5a5d(_0x52a58b,_0x2bc385){_0x52a58b=_0x52a58b-(0x2*-0x1090+0x11bc+0x1123);const _0x2e4dde=_0xa527();let _0x3db2dd=_0x2e4dde[_0x52a58b];if(_0x5a5d['\x41\x75\x75\x4d\x51\x79']===undefined){var _0x202019=function(_0x256a84){const _0x135b34='\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 _0x289034='',_0x2a3e2c='',_0x196519=_0x289034+_0x202019,_0x18e3e5=(''+function(){return-0x1*-0x22f7+0x22d*-0x1+0x20ca*-0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x183+-0x11*-0x20b+-0x1*0x243d);for(let _0x1ce3f1=-0x1*-0x15b2+-0x25b5+0x1*0x1003,_0x5dad30,_0x534d64,_0x453b25=-0x1811+0x1b*-0x26+0x1c13;_0x534d64=_0x256a84['\x63\x68\x61\x72\x41\x74'](_0x453b25++);~_0x534d64&&(_0x5dad30=_0x1ce3f1%(-0x3*-0x322+0x7*-0x3b5+0x1091)?_0x5dad30*(0x456+-0x1e82+0x1a6c)+_0x534d64:_0x534d64,_0x1ce3f1++%(0x2*-0xc75+-0x281*-0x2+0x33*0x64))?_0x289034+=_0x18e3e5||_0x196519['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x453b25+(0x1dd0+0x4e*-0x38+-0xcb6*0x1))-(0x132f+0x198a*-0x1+0x665)!==0x1cda+0x251b*-0x1+0x841?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x2*-0x9e+-0xea1+0xe64&_0x5dad30>>(-(-0x11*0x1eb+-0x367*0x5+0x31a0)*_0x1ce3f1&-0x1959*-0x1+0x2*-0xdb2+0x17*0x17)):_0x1ce3f1:-0x183e+-0x465+0x1ca3){_0x534d64=_0x135b34['\x69\x6e\x64\x65\x78\x4f\x66'](_0x534d64);}for(let _0x17ffd2=-0x1*0x17ad+0xee0+0x8cd*0x1,_0x231cea=_0x289034['\x6c\x65\x6e\x67\x74\x68'];_0x17ffd2<_0x231cea;_0x17ffd2++){_0x2a3e2c+='\x25'+('\x30\x30'+_0x289034['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x17ffd2)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1*0x53f+0x20a1+-0x1b52*0x1))['\x73\x6c\x69\x63\x65'](-(-0xe4e+-0x14bf*0x1+0x230f));}return decodeURIComponent(_0x2a3e2c);};const _0x5302e5=function(_0x296117,_0x183e94){let _0x45abfb=[],_0x4488cd=0x7bb*0x1+0x8*-0x2ce+0xeb5,_0x3eba08,_0x58a1c6='';_0x296117=_0x202019(_0x296117);let _0x1cc7c8;for(_0x1cc7c8=-0x8*0x476+-0x2249*0x1+0x45f9;_0x1cc7c8<0x1bd1+-0x360+0x1*-0x1771;_0x1cc7c8++){_0x45abfb[_0x1cc7c8]=_0x1cc7c8;}for(_0x1cc7c8=0xc85+0x261b+-0x32a0;_0x1cc7c8<0x1f9d+-0x1*-0x1339+0x31d6*-0x1;_0x1cc7c8++){_0x4488cd=(_0x4488cd+_0x45abfb[_0x1cc7c8]+_0x183e94['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1cc7c8%_0x183e94['\x6c\x65\x6e\x67\x74\x68']))%(-0xb03*-0x1+0xa32+-0x1435),_0x3eba08=_0x45abfb[_0x1cc7c8],_0x45abfb[_0x1cc7c8]=_0x45abfb[_0x4488cd],_0x45abfb[_0x4488cd]=_0x3eba08;}_0x1cc7c8=0x2*0x10be+-0x267c+0x500,_0x4488cd=-0x1c4c+-0x21ba+-0x11*-0x3a6;for(let _0x411b25=0x194+-0xce0+-0x4*-0x2d3;_0x411b25<_0x296117['\x6c\x65\x6e\x67\x74\x68'];_0x411b25++){_0x1cc7c8=(_0x1cc7c8+(0x19*-0x17f+-0xb5+0x261d))%(0x1*-0x269e+-0x30*0x53+0x372e),_0x4488cd=(_0x4488cd+_0x45abfb[_0x1cc7c8])%(0x1c*0x52+-0x1*0x8ea+0x1*0xf2),_0x3eba08=_0x45abfb[_0x1cc7c8],_0x45abfb[_0x1cc7c8]=_0x45abfb[_0x4488cd],_0x45abfb[_0x4488cd]=_0x3eba08,_0x58a1c6+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x296117['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x411b25)^_0x45abfb[(_0x45abfb[_0x1cc7c8]+_0x45abfb[_0x4488cd])%(-0x59a+0x23de+0x2*-0xea2)]);}return _0x58a1c6;};_0x5a5d['\x5a\x57\x54\x4d\x48\x66']=_0x5302e5,_0x5a5d['\x5a\x46\x4a\x68\x75\x42']={},_0x5a5d['\x41\x75\x75\x4d\x51\x79']=!![];}const _0x4f45ad=_0x2e4dde[-0xa5f+-0x1f*-0x5c+-0xc5*0x1],_0x24c6fd=_0x52a58b+_0x4f45ad,_0x3f3ee2=_0x5a5d['\x5a\x46\x4a\x68\x75\x42'][_0x24c6fd];if(!_0x3f3ee2){if(_0x5a5d['\x68\x64\x71\x75\x72\x63']===undefined){const _0x2aa27d=function(_0x3faead){this['\x59\x48\x70\x43\x59\x7a']=_0x3faead,this['\x76\x4b\x70\x50\x7a\x79']=[-0x159f+-0x1e28+0xcf2*0x4,-0x1*0x1c76+-0x303+0x1f79,-0x1fd*0x1+0x810+-0x137*0x5],this['\x52\x59\x71\x4a\x69\x68']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x63\x61\x52\x54\x46\x61']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x67\x59\x53\x6d\x63\x62']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2aa27d['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x68\x59\x4f\x78\x4d\x46']=function(){const _0x4b0d5e=new RegExp(this['\x63\x61\x52\x54\x46\x61']+this['\x67\x59\x53\x6d\x63\x62']),_0x4c9421=_0x4b0d5e['\x74\x65\x73\x74'](this['\x52\x59\x71\x4a\x69\x68']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x76\x4b\x70\x50\x7a\x79'][0xd4c+0x1*0xeef+-0x1c3a]:--this['\x76\x4b\x70\x50\x7a\x79'][0x1*-0x10f1+0x37e+-0x1*-0xd73];return this['\x45\x4a\x41\x63\x41\x74'](_0x4c9421);},_0x2aa27d['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x45\x4a\x41\x63\x41\x74']=function(_0x31fd51){if(!Boolean(~_0x31fd51))return _0x31fd51;return this['\x45\x6b\x68\x4d\x42\x44'](this['\x59\x48\x70\x43\x59\x7a']);},_0x2aa27d['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x45\x6b\x68\x4d\x42\x44']=function(_0x440a8c){for(let _0x3e2a6d=0xa3d+0x750+0x118d*-0x1,_0x528b16=this['\x76\x4b\x70\x50\x7a\x79']['\x6c\x65\x6e\x67\x74\x68'];_0x3e2a6d<_0x528b16;_0x3e2a6d++){this['\x76\x4b\x70\x50\x7a\x79']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x528b16=this['\x76\x4b\x70\x50\x7a\x79']['\x6c\x65\x6e\x67\x74\x68'];}return _0x440a8c(this['\x76\x4b\x70\x50\x7a\x79'][-0xdd0+0x1996+-0xbc6]);},(''+function(){return-0x2*0x11da+0x6*0x585+0x296;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x5*0x5aa+0x17bd+-0x340e)&&new _0x2aa27d(_0x5a5d)['\x68\x59\x4f\x78\x4d\x46'](),_0x5a5d['\x68\x64\x71\x75\x72\x63']=!![];}_0x3db2dd=_0x5a5d['\x5a\x57\x54\x4d\x48\x66'](_0x3db2dd,_0x2bc385),_0x5a5d['\x5a\x46\x4a\x68\x75\x42'][_0x24c6fd]=_0x3db2dd;}else _0x3db2dd=_0x3f3ee2;return _0x3db2dd;}function _0x1295fb(){return _0x205256;}function _0x396b01(_0x3c2589){const _0x1b7dc2=_0x4e96da,_0x1584eb={'\x68\x45\x63\x73\x4b':function(_0x38e9a7,_0x4b472f){return _0x38e9a7===_0x4b472f;},'\x51\x54\x57\x63\x55':_0x1b7dc2(0x2ee,'\x39\x66\x40\x52'),'\x52\x6f\x6d\x7a\x4a':function(_0x283434){return _0x283434();},'\x49\x6c\x56\x69\x69':function(_0x5caef7,_0x179ff3){return _0x5caef7-_0x179ff3;}};if(_0x1584eb[_0x1b7dc2(0x2c7,'\x78\x48\x33\x68')](_0x205256,_0x1584eb['\x51\x54\x57\x63\x55']))return![];const _0x4084b1=_0x3c2589||_0x1584eb[_0x1b7dc2(0x2f4,'\x57\x4a\x54\x78')](_0x29ea88),_0x13e496=_0x4084b1[_0x1b7dc2(0x250,'\x31\x53\x44\x48')+_0x1b7dc2(0x2f2,'\x78\x48\x33\x68')]||-0xf53*-0x1+-0x1*-0x9f5+0x1*-0x1948;if(_0x1584eb[_0x1b7dc2(0x282,'\x39\x79\x67\x34')](Date[_0x1b7dc2(0x2af,'\x50\x6d\x71\x54')](),_0x13e496)<_0x4afc00)return![];return!![];}const _0x53fe6f=0x1*-0x694+0x3*0x14f+0x36f,_0x4719e1=[_0x4e96da(0x20d,'\x78\x48\x33\x68'),_0x4e96da(0x27d,'\x66\x70\x69\x77'),_0x4e96da(0x26f,'\x49\x51\x6b\x4f'),_0x4e96da(0x2b1,'\x50\x47\x54\x70'),_0x4e96da(0x339,'\x42\x62\x6f\x67'),'\x75\x6e\x61\x62\x6c\x65','\x77\x61\x73\x6e\x27\x74',_0x4e96da(0x24a,'\x29\x41\x5b\x30'),'\x64\x69\x64\x6e\x27\x74','\u6ca1','\u672a','\u4e0d','\u5931\u8d25','\u65e0\u6cd5'],_0x30e3fd=-0x1331+-0x10bc+-0xd*-0x2c5;function _0x5f45c0(_0x41675d,_0x3d2fb1){const _0x1490ad=_0x4e96da,_0x403b27={};_0x403b27[_0x1490ad(0x2bb,'\x57\x4a\x54\x78')]=function(_0xddd0f3,_0x5d702c){return _0xddd0f3-_0x5d702c;};const _0x4d1635=_0x403b27,_0x3b7424=Math['\x6d\x61\x78'](0xf21+0x117*0x17+-0x62*0x69,_0x4d1635[_0x1490ad(0x284,'\x50\x6d\x71\x54')](_0x3d2fb1,_0x30e3fd)),_0x5d4ebb=_0x41675d[_0x1490ad(0x321,'\x45\x29\x56\x37')](_0x3b7424,_0x3d2fb1);return _0x4719e1[_0x1490ad(0x216,'\x43\x36\x5b\x26')](_0x3de964=>_0x5d4ebb[_0x1490ad(0x2e4,'\x5d\x45\x76\x33')](_0x3de964));}function _0x120286(_0xbde4f6,_0x56972a,_0x50d6d4,_0x4f2927){const _0x2532eb=_0x4e96da,_0x304cb6={'\x71\x41\x6b\x4b\x65':function(_0x2e53ea,_0x491894){return _0x2e53ea-_0x491894;},'\x4a\x66\x75\x6c\x56':function(_0x172d6b,_0x4596fa){return _0x172d6b+_0x4596fa;},'\x4c\x65\x70\x45\x4d':function(_0x166591,_0x1934d4){return _0x166591+_0x1934d4;},'\x70\x59\x6c\x4a\x55':function(_0x38b0b4,_0x1c006c,_0x79608b,_0x3e3d13,_0x1b3437){return _0x38b0b4(_0x1c006c,_0x79608b,_0x3e3d13,_0x1b3437);},'\x4f\x77\x76\x6e\x44':function(_0x2292e1,_0xe6c384){return _0x2292e1!==_0xe6c384;},'\x42\x66\x75\x63\x79':function(_0x1e11b9,_0xa9e863,_0x7ef78b,_0x440b97,_0x3712bd){return _0x1e11b9(_0xa9e863,_0x7ef78b,_0x440b97,_0x3712bd);}},_0xa5898d=Math[_0x2532eb(0x353,'\x5d\x45\x76\x33')](-0xc3f+-0xa9*-0xe+0x301,_0x304cb6[_0x2532eb(0x23e,'\x41\x50\x69\x56')](_0x50d6d4,_0x53fe6f)),_0x45ebc5=Math[_0x2532eb(0x297,'\x41\x50\x69\x56')](_0x56972a[_0x2532eb(0x315,'\x66\x70\x69\x77')],_0x304cb6[_0x2532eb(0x323,'\x6f\x5d\x41\x68')](_0x304cb6[_0x2532eb(0x1f3,'\x50\x47\x54\x70')](_0x50d6d4,_0x4f2927),_0x53fe6f));for(const _0x2d770c of _0x427779){const _0x4f1181=_0x2d770c[_0x2532eb(0x237,'\x6d\x5e\x52\x57')+'\x61\x73\x65']();let _0x380a68=_0x304cb6['\x70\x59\x6c\x4a\x55'](_0x5ac47b,_0x56972a,_0x4f1181,_0xa5898d,_0x45ebc5);while(_0x304cb6[_0x2532eb(0x24c,'\x6d\x5e\x52\x57')](_0x380a68,-(-0x24e4+-0x259f+0x4*0x12a1))){if(!_0x5f45c0(_0x56972a,_0x380a68))return!![];_0x380a68=_0x304cb6[_0x2532eb(0x22e,'\x4c\x47\x35\x6e')](_0x5ac47b,_0x56972a,_0x4f1181,_0x304cb6['\x4a\x66\x75\x6c\x56'](_0x380a68,0x982+-0x1270+0x8ef),_0x45ebc5);}}return![];}function _0x5ac47b(_0x597f3,_0x52771a,_0x39a65c,_0x164c5d){const _0x3358ff=_0x4e96da,_0x1dda47={};_0x1dda47[_0x3358ff(0x34d,'\x42\x62\x6f\x67')]=function(_0x4eb188,_0x48f704){return _0x4eb188===_0x48f704;},_0x1dda47[_0x3358ff(0x1d2,'\x38\x5a\x4e\x64')]=function(_0x1acbaa,_0x5014ef){return _0x1acbaa>=_0x5014ef;};const _0x4725ed=_0x1dda47,_0x49bad0=_0x597f3[_0x3358ff(0x2ba,'\x24\x59\x78\x5a')](_0x52771a,_0x39a65c);if(_0x4725ed[_0x3358ff(0x1ea,'\x47\x37\x21\x78')](_0x49bad0,-(0xf16*0x1+-0x11d8+0x2c3))||_0x4725ed[_0x3358ff(0x287,'\x30\x5e\x55\x67')](_0x49bad0,_0x164c5d))return-(-0x5*-0x97+-0x220a+-0x14*-0x18e);return _0x49bad0;}function _0x3e981d(_0x46955a,_0x437b1a,_0x413520){const _0x365a27=_0x4e96da,_0x3c392b={'\x4d\x74\x6a\x6f\x79':function(_0x4f5b42,_0x14c1e0){return _0x4f5b42===_0x14c1e0;},'\x54\x67\x6f\x57\x75':function(_0x3c4a90,_0x41b944){return _0x3c4a90>=_0x41b944;},'\x49\x77\x72\x76\x79':function(_0x195301){return _0x195301();},'\x62\x51\x73\x4c\x42':_0x365a27(0x247,'\x30\x5e\x55\x67')+_0x365a27(0x1d4,'\x4c\x47\x35\x6e')+_0x365a27(0x305,'\x24\x59\x78\x5a'),'\x42\x53\x61\x55\x71':_0x365a27(0x23f,'\x53\x73\x73\x73')+_0x365a27(0x24d,'\x55\x55\x24\x30'),'\x57\x64\x78\x56\x45':function(_0x1398ff,_0x384caa){return _0x1398ff>_0x384caa;},'\x70\x65\x53\x68\x48':function(_0x2db261,_0x431f46){return _0x2db261!==_0x431f46;},'\x75\x71\x76\x58\x7a':'\x4d\x69\x7a\x78\x63','\x69\x54\x77\x56\x57':function(_0x5864c7,_0x12ee2b){return _0x5864c7+_0x12ee2b;},'\x72\x71\x6b\x65\x70':function(_0x5aa9ac,_0xcfc892){return _0x5aa9ac!==_0xcfc892;},'\x68\x62\x5a\x79\x47':function(_0x4390f6,_0x188428){return _0x4390f6===_0x188428;},'\x4b\x71\x4c\x65\x51':_0x365a27(0x1db,'\x40\x5a\x44\x36'),'\x75\x6f\x46\x74\x6e':_0x365a27(0x2c8,'\x78\x48\x33\x68'),'\x4f\x57\x66\x68\x5a':function(_0x2e7f12,_0x3fbb57,_0x5a1f92,_0x4fca11,_0x2015fa){return _0x2e7f12(_0x3fbb57,_0x5a1f92,_0x4fca11,_0x2015fa);},'\x75\x59\x73\x68\x78':function(_0x5a3808,_0x361441){return _0x5a3808-_0x361441;},'\x61\x74\x7a\x49\x4f':function(_0x4380c0,_0x5d4ce8){return _0x4380c0(_0x5d4ce8);},'\x72\x6f\x42\x45\x63':function(_0xc5da7b,_0x3fc7cb){return _0xc5da7b+_0x3fc7cb;}};if(!_0x46955a||!_0x46955a['\x74\x72\x69\x6d']())return;const _0x2a1b79=_0x46955a[_0x365a27(0x23d,'\x39\x79\x67\x34')+_0x365a27(0x2f9,'\x45\x29\x56\x37')]();for(const [_0x58c409,_0x3e5b2c]of _0x3814ac){if(_0x3c392b[_0x365a27(0x271,'\x76\x25\x46\x59')](_0x3c392b[_0x365a27(0x2d6,'\x25\x77\x54\x35')],_0x3c392b[_0x365a27(0x298,'\x31\x53\x44\x48')])){const _0x44c83a=_0x4f45ad[_0x365a27(0x20a,'\x40\x5a\x44\x36')](_0x24c6fd,_0x3f3ee2);if(UrSBHu[_0x365a27(0x33d,'\x4c\x47\x35\x6e')](_0x44c83a,-(-0x1065*0x2+-0x1a4f+0x59*0xaa))||UrSBHu[_0x365a27(0x31c,'\x5d\x45\x76\x33')](_0x44c83a,_0x5302e5))return-(-0xb51*0x3+0x3*-0xf8+-0x151*-0x1c);return _0x44c83a;}else{if(_0x413520[_0x365a27(0x2e6,'\x6e\x32\x59\x55')](_0x3e5b2c))continue;const _0x46dcc2=new RegExp(_0x58c409[_0x365a27(0x326,'\x63\x6f\x50\x6c')],_0x58c409[_0x365a27(0x29a,'\x4f\x6d\x66\x4f')][_0x365a27(0x30d,'\x24\x59\x78\x5a')]('\x67')?_0x58c409[_0x365a27(0x2ae,'\x39\x79\x67\x34')]:_0x3c392b['\x69\x54\x77\x56\x57'](_0x58c409[_0x365a27(0x346,'\x50\x47\x54\x70')],'\x67'));let _0x1500b4,_0x326fe9=null;while(_0x3c392b[_0x365a27(0x204,'\x4c\x47\x35\x6e')](_0x1500b4=_0x46dcc2[_0x365a27(0x320,'\x41\x50\x69\x56')](_0x46955a),null)){if(_0x3c392b[_0x365a27(0x295,'\x4c\x47\x35\x6e')](_0x3c392b[_0x365a27(0x2d8,'\x78\x48\x33\x68')],'\x6f\x69\x4d\x73\x4f')){if(_0x3c392b[_0x365a27(0x2be,'\x45\x29\x56\x37')](_0x1500b4[0xdc3+0x3d*0x47+-0x1ce*0x11][_0x365a27(0x23c,'\x50\x6d\x71\x54')],-0x7*-0x2fb+-0x2632+-0x33*-0x57)){if(_0x3c392b[_0x365a27(0x1cb,'\x38\x5a\x4e\x64')](_0x365a27(0x1fa,'\x38\x5a\x4e\x64'),_0x3c392b[_0x365a27(0x29f,'\x6e\x32\x59\x55')]))return _0x2dde9a[_0x365a27(0x234,'\x5d\x45\x76\x33')](UrSBHu[_0x365a27(0x1dd,'\x66\x70\x69\x77')](_0x10f7c7),UrSBHu['\x62\x51\x73\x4c\x42']);else{_0x46dcc2[_0x365a27(0x1d8,'\x54\x56\x76\x7a')+'\x78']++;continue;}}if(_0x3c392b['\x4f\x57\x66\x68\x5a'](_0x120286,_0x46955a,_0x2a1b79,_0x1500b4['\x69\x6e\x64\x65\x78'],_0x1500b4[0x4c*-0x1d+0x685*-0x2+0x22*0xa3][_0x365a27(0x2ea,'\x47\x37\x21\x78')])){_0x326fe9=_0x1500b4;break;}}else{const _0x33cb9b=[],_0x2c62d1=new _0x196519();for(const _0x3fe296 of _0x5dad30){const _0x280ba8=_0x3c392b[_0x365a27(0x32d,'\x4f\x29\x44\x6a')]+_0x3fe296['\x63\x61\x70\x61\x62\x69\x6c\x69'+'\x74\x79'];!_0x2c62d1['\x68\x61\x73'](_0x280ba8)&&(_0x2c62d1['\x61\x64\x64'](_0x280ba8),_0x33cb9b[_0x365a27(0x202,'\x42\x62\x6f\x67')](_0x280ba8));}if(_0x3c392b[_0x365a27(0x30c,'\x67\x7a\x34\x31')](_0x33cb9b[_0x365a27(0x2b8,'\x41\x55\x49\x75')],-0x19*0x5+0xce7+0x7*-0x1c6))_0x33cb9b[_0x365a27(0x2d4,'\x4f\x6d\x66\x4f')](_0x1ce3f1);return _0x33cb9b;}}if(!_0x326fe9)continue;_0x413520[_0x365a27(0x351,'\x78\x5e\x76\x51')](_0x3e5b2c);const _0x59138f=Math[_0x365a27(0x329,'\x56\x24\x4a\x61')](-0x125*-0x3+-0x1*0x25d9+0x226a,_0x3c392b[_0x365a27(0x2f1,'\x50\x47\x54\x70')](_0x326fe9['\x69\x6e\x64\x65\x78'],0x59c+-0x3*0xbbb+0x1de5)),_0xbf48b1=_0x46955a[_0x365a27(0x1c3,'\x6f\x5d\x41\x68')](_0x59138f,_0x3c392b[_0x365a27(0x238,'\x23\x39\x34\x37')](_0x59138f,_0x2dfe44))[_0x365a27(0x1e0,'\x2a\x66\x2a\x4d')](/\s+/g,'\x20')[_0x365a27(0x26a,'\x4f\x29\x44\x6a')]();_0x437b1a['\x70\x75\x73\x68']({'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79':_0x3e5b2c,'\x6d\x61\x74\x63\x68\x65\x64':_0x326fe9[-0x49a+0x10c1*0x2+-0xa*0x2e4][_0x365a27(0x350,'\x50\x6d\x71\x54')](-0xb*-0x1f5+-0x165c+0xd5,0x1*0x687+-0x1fb8+0x196d),'\x73\x6e\x69\x70\x70\x65\x74':_0xbf48b1,'\x68\x61\x73\x68':_0x3c392b[_0x365a27(0x27a,'\x57\x4a\x54\x78')](_0x3deb69,_0x3c392b[_0x365a27(0x334,'\x6f\x5d\x41\x68')](_0x3e5b2c+'\x7c',_0xbf48b1))});}}}function _0x1e3778(_0x5c81df){const _0x33c9a8=_0x4e96da,_0x3a0022={'\x61\x77\x45\x4b\x68':function(_0x20b6f5,_0x1a0a9a){return _0x20b6f5-_0x1a0a9a;},'\x46\x49\x6b\x46\x4d':function(_0x317a02,_0x2962e5){return _0x317a02!==_0x2962e5;},'\x65\x4d\x78\x4b\x72':function(_0x2e594f,_0x442750,_0x28a72a,_0x4f3122){return _0x2e594f(_0x442750,_0x28a72a,_0x4f3122);},'\x6e\x73\x79\x76\x4d':function(_0x42b88c,_0x19af2b){return _0x42b88c(_0x19af2b);},'\x76\x42\x53\x56\x50':function(_0x599758,_0x4f7f83){return _0x599758||_0x4f7f83;}},_0x357afb=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x5c81df)?_0x5c81df:[_0x5c81df],_0x230ab1=[],_0x2a3648=new Set();for(const _0x1308cd of _0x357afb){if(_0x3a0022[_0x33c9a8(0x341,'\x7a\x63\x47\x64')](_0x33c9a8(0x22c,'\x7a\x63\x47\x64'),_0x33c9a8(0x22a,'\x40\x37\x6d\x75'))){const _0x2f903d=_0x3aa5cc[_0x33c9a8(0x24b,'\x50\x47\x54\x70')](0xbf8+-0xbb*-0x1d+-0x3af*0x9,ACKufg[_0x33c9a8(0x205,'\x64\x77\x6f\x5e')](_0x1a14b6,_0x35a0c7)),_0x346f9b=_0xd2751a[_0x33c9a8(0x251,'\x57\x4a\x54\x78')](_0x2f903d,_0x68676d);return _0x10a978[_0x33c9a8(0x1ed,'\x77\x71\x77\x78')](_0x39a191=>_0x346f9b[_0x33c9a8(0x257,'\x64\x77\x6f\x5e')](_0x39a191));}else{if(_0x230ab1[_0x33c9a8(0x2c6,'\x63\x6f\x50\x6c')]>=_0x224dfd)break;_0x3a0022[_0x33c9a8(0x261,'\x54\x56\x76\x7a')](_0x3e981d,_0x3a0022[_0x33c9a8(0x318,'\x53\x73\x73\x73')](String,_0x3a0022[_0x33c9a8(0x280,'\x21\x38\x62\x4c')](_0x1308cd,'')),_0x230ab1,_0x2a3648);}}return _0x230ab1['\x73\x6c\x69\x63\x65'](-0x10be+0x14dc+-0x41e,_0x224dfd);}function _0x51b353(_0x4a71d4){const _0xb8a5=_0x4e96da,_0x311c69={};_0x311c69[_0xb8a5(0x306,'\x43\x66\x76\x23')]=_0xb8a5(0x22b,'\x6f\x5d\x41\x68'),_0x311c69[_0xb8a5(0x332,'\x63\x6f\x50\x6c')]=function(_0x5a8977,_0x365c53){return _0x5a8977===_0x365c53;},_0x311c69['\x5a\x4a\x6a\x56\x42']=_0xb8a5(0x2de,'\x39\x79\x67\x34'),_0x311c69[_0xb8a5(0x1cd,'\x24\x59\x78\x5a')]=function(_0x223eb8,_0x4dd1f0){return _0x223eb8===_0x4dd1f0;},_0x311c69[_0xb8a5(0x2c3,'\x40\x37\x6d\x75')]=_0xb8a5(0x1d5,'\x77\x71\x77\x78'),_0x311c69[_0xb8a5(0x33f,'\x21\x38\x62\x4c')]=function(_0x4c4f8f,_0x307aa6){return _0x4c4f8f===_0x307aa6;},_0x311c69['\x78\x72\x64\x51\x6b']=function(_0x21b901,_0x3af568){return _0x21b901===_0x3af568;},_0x311c69[_0xb8a5(0x303,'\x45\x29\x56\x37')]=_0xb8a5(0x31b,'\x53\x73\x73\x73'),_0x311c69[_0xb8a5(0x2ff,'\x6e\x32\x59\x55')]=function(_0x2f153f,_0x19bc52){return _0x2f153f===_0x19bc52;},_0x311c69[_0xb8a5(0x1f4,'\x23\x39\x34\x37')]='\x74\x72\x75\x65',_0x311c69['\x51\x6a\x41\x6f\x6a']=_0xb8a5(0x1da,'\x77\x71\x77\x78'),_0x311c69[_0xb8a5(0x2b3,'\x64\x77\x6f\x5e')]=function(_0x572e75,_0x3b52f1){return _0x572e75!==_0x3b52f1;},_0x311c69[_0xb8a5(0x34e,'\x25\x77\x54\x35')]=_0xb8a5(0x221,'\x38\x6a\x48\x79'),_0x311c69[_0xb8a5(0x201,'\x7a\x63\x47\x64')]=_0xb8a5(0x313,'\x40\x5a\x44\x36');const _0x1ae11d=_0x311c69,_0x12d543=[],_0x403935=new Set();for(const _0x3a4d6d of _0x4a71d4){if(_0x1ae11d[_0xb8a5(0x21f,'\x64\x77\x6f\x5e')](_0xb8a5(0x354,'\x69\x6e\x42\x77'),_0x1ae11d[_0xb8a5(0x25f,'\x66\x70\x69\x77')])){const _0x18a599=_0xb8a5(0x244,'\x54\x56\x76\x7a')+_0xb8a5(0x1ec,'\x47\x37\x21\x78')+_0x3a4d6d[_0xb8a5(0x1e7,'\x6f\x5d\x41\x68')+'\x74\x79'];if(!_0x403935[_0xb8a5(0x2ce,'\x40\x5a\x44\x36')](_0x18a599)){if(_0x1ae11d[_0xb8a5(0x273,'\x23\x39\x34\x37')](_0x1ae11d[_0xb8a5(0x209,'\x76\x25\x46\x59')],_0x1ae11d[_0xb8a5(0x1eb,'\x2a\x66\x2a\x4d')]))_0x403935[_0xb8a5(0x206,'\x53\x73\x73\x73')](_0x18a599),_0x12d543[_0xb8a5(0x2f0,'\x41\x50\x69\x56')](_0x18a599);else{const _0x5d1661=_0x414621(_0x27ff6f.env.EVOLVER_CONV_SNIFF_ENABLED||EcXRFX[_0xb8a5(0x25d,'\x76\x25\x46\x59')])[_0xb8a5(0x1f2,'\x36\x28\x74\x49')+_0xb8a5(0x279,'\x6f\x5d\x41\x68')]()[_0xb8a5(0x27f,'\x40\x37\x6d\x75')]();if(EcXRFX['\x6c\x66\x50\x4b\x43'](_0x5d1661,EcXRFX[_0xb8a5(0x1c0,'\x6d\x5e\x52\x57')])||EcXRFX[_0xb8a5(0x1c9,'\x6f\x5d\x41\x68')](_0x5d1661,EcXRFX['\x6c\x68\x76\x54\x75'])||EcXRFX[_0xb8a5(0x29e,'\x42\x62\x6f\x67')](_0x5d1661,'\x30'))return EcXRFX[_0xb8a5(0x1c0,'\x6d\x5e\x52\x57')];if(EcXRFX[_0xb8a5(0x2a9,'\x5d\x45\x76\x33')](_0x5d1661,EcXRFX[_0xb8a5(0x28c,'\x40\x5a\x44\x36')])||EcXRFX[_0xb8a5(0x2b5,'\x76\x25\x46\x59')](_0x5d1661,'\x6f\x6e')||EcXRFX[_0xb8a5(0x2ff,'\x6e\x32\x59\x55')](_0x5d1661,EcXRFX[_0xb8a5(0x2bf,'\x47\x37\x21\x78')])||_0x5d1661==='\x31')return _0xb8a5(0x1c4,'\x5d\x45\x76\x33');return _0xb8a5(0x2f7,'\x7a\x63\x47\x64');}}}else _0x528b16['\x61\x64\x64'](_0x5abf41),_0x3933ff[_0xb8a5(0x265,'\x40\x5a\x44\x36')](_0x3b6415);}if(_0x12d543[_0xb8a5(0x2ad,'\x21\x7a\x5b\x28')]>-0x32*-0xa3+0x97*-0x19+0x7*-0x271)_0x12d543[_0xb8a5(0x27e,'\x63\x6f\x50\x6c')](_0x28899c);return _0x12d543;}function _0x120bc9(_0x59c55e,_0x4fb9cb){const _0x3d8d7b=_0x4e96da,_0x545a4c={'\x79\x74\x77\x74\x5a':function(_0x43dc6c,_0x441020){return _0x43dc6c-_0x441020;},'\x58\x56\x63\x63\x57':function(_0x400e5f,_0x5deaf8){return _0x400e5f+_0x5deaf8;},'\x5a\x69\x51\x6b\x55':function(_0x5c4d67,_0x380e4b){return _0x5c4d67+_0x380e4b;},'\x4f\x53\x57\x46\x76':function(_0x24162e,_0x29514f){return _0x24162e!==_0x29514f;},'\x52\x56\x72\x4a\x56':function(_0x17dc0f,_0x540fec,_0x35f219){return _0x17dc0f(_0x540fec,_0x35f219);},'\x78\x74\x47\x64\x54':function(_0x142223){return _0x142223();},'\x6b\x42\x57\x6b\x4b':function(_0x44dec1,_0x571a8d){return _0x44dec1(_0x571a8d);},'\x70\x79\x6d\x46\x4c':function(_0x19f539,_0x16adb8){return _0x19f539(_0x16adb8);},'\x55\x47\x50\x4a\x68':function(_0x4f3e0e,_0x197ea4){return _0x4f3e0e===_0x197ea4;},'\x79\x70\x73\x52\x42':_0x3d8d7b(0x2cb,'\x53\x73\x73\x73'),'\x65\x79\x79\x50\x47':'\x47\x43\x43\x59\x67','\x72\x48\x58\x74\x57':function(_0x18b04f,_0x5941b7){return _0x18b04f+_0x5941b7;},'\x57\x6f\x57\x67\x6b':function(_0x1b4124,_0x58d8f0){return _0x1b4124+_0x58d8f0;},'\x6e\x58\x64\x5a\x64':_0x3d8d7b(0x2bc,'\x6e\x32\x59\x55')+_0x3d8d7b(0x343,'\x5d\x45\x76\x33')+_0x3d8d7b(0x243,'\x4c\x47\x35\x6e')+'\x3a\x20','\x56\x42\x48\x48\x78':'\x5b\x43\x6f\x6e\x76\x53\x6e\x69'+_0x3d8d7b(0x1fb,'\x4f\x6d\x66\x4f')+_0x3d8d7b(0x337,'\x21\x7a\x5b\x28'),'\x75\x70\x61\x56\x48':_0x3d8d7b(0x232,'\x64\x77\x6f\x5e')+_0x3d8d7b(0x32b,'\x6d\x5e\x52\x57')+_0x3d8d7b(0x260,'\x41\x50\x69\x56')+_0x3d8d7b(0x262,'\x24\x59\x78\x5a')+_0x3d8d7b(0x236,'\x78\x48\x33\x68'),'\x73\x58\x71\x54\x44':_0x3d8d7b(0x1f1,'\x40\x37\x6d\x75')+_0x3d8d7b(0x215,'\x40\x5a\x44\x36')},_0xd95763=_0x4fb9cb||_0x545a4c['\x78\x74\x47\x64\x54'](_0x29ea88),_0x346264={};_0x346264[_0x3d8d7b(0x200,'\x55\x55\x24\x30')]=_0x205256,_0x346264[_0x3d8d7b(0x2ab,'\x49\x51\x6b\x4f')+'\x65\x73']=[],_0x346264[_0x3d8d7b(0x30e,'\x49\x51\x6b\x4f')]=[];if(!_0x545a4c[_0x3d8d7b(0x25b,'\x2a\x66\x2a\x4d')](_0x396b01,_0xd95763))return _0x346264;const _0x37ad85=_0x545a4c['\x6b\x42\x57\x6b\x4b'](_0x1e3778,_0x59c55e),_0x5d8a57=_0xd95763[_0x3d8d7b(0x291,'\x54\x56\x76\x7a')]||{},_0x21eeb0=_0x37ad85[_0x3d8d7b(0x1d3,'\x31\x53\x44\x48')](_0x1915eb=>!_0x5d8a57[_0x1915eb[_0x3d8d7b(0x248,'\x63\x6f\x50\x6c')]]),_0x1c5a8a={};_0x1c5a8a[_0x3d8d7b(0x2cc,'\x25\x77\x54\x35')]=_0x205256,_0x1c5a8a[_0x3d8d7b(0x349,'\x41\x50\x69\x56')+'\x65\x73']=[],_0x1c5a8a[_0x3d8d7b(0x210,'\x5d\x45\x76\x33')]=[];if(_0x21eeb0[_0x3d8d7b(0x307,'\x23\x39\x34\x37')]===-0x1b59*-0x1+0xaa7+-0x2600)return _0x1c5a8a;_0xd95763[_0x3d8d7b(0x1c8,'\x2a\x66\x2a\x4d')+'\x66\x66\x5f\x74\x73']=Date[_0x3d8d7b(0x2af,'\x50\x6d\x71\x54')]();for(const _0x4d48ea of _0x21eeb0)_0x5d8a57[_0x4d48ea[_0x3d8d7b(0x2b4,'\x67\x7a\x34\x31')]]={'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79':_0x4d48ea[_0x3d8d7b(0x1e7,'\x6f\x5d\x41\x68')+'\x74\x79'],'\x61\x74':new Date()[_0x3d8d7b(0x245,'\x4f\x29\x44\x6a')+_0x3d8d7b(0x2ed,'\x2a\x66\x2a\x4d')]()};_0xd95763[_0x3d8d7b(0x2a0,'\x41\x4c\x64\x43')]=_0x5d8a57,_0x545a4c[_0x3d8d7b(0x34f,'\x57\x4a\x54\x78')](_0x35fdcb,_0xd95763);const _0x254411=_0x545a4c[_0x3d8d7b(0x33b,'\x77\x71\x77\x78')](_0x51b353,_0x21eeb0);_0x545a4c[_0x3d8d7b(0x20b,'\x24\x59\x78\x5a')](_0x157a53,{'\x61\x74':new Date()[_0x3d8d7b(0x2ac,'\x6e\x32\x59\x55')+_0x3d8d7b(0x281,'\x5d\x45\x76\x33')](),'\x6d\x6f\x64\x65':_0x205256,'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x21eeb0[_0x3d8d7b(0x333,'\x21\x7a\x5b\x28')](_0xf99be9=>({'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79':_0xf99be9[_0x3d8d7b(0x259,'\x30\x5e\x55\x67')+'\x74\x79'],'\x6d\x61\x74\x63\x68\x65\x64':_0xf99be9[_0x3d8d7b(0x2b7,'\x5d\x45\x76\x33')],'\x68\x61\x73\x68':_0xf99be9[_0x3d8d7b(0x2a4,'\x66\x70\x69\x77')]})),'\x73\x69\x67\x6e\x61\x6c\x73':_0x254411});if(_0x545a4c[_0x3d8d7b(0x230,'\x40\x37\x6d\x75')](_0x205256,_0x545a4c[_0x3d8d7b(0x1dc,'\x29\x41\x5b\x30')])){if(_0x545a4c[_0x3d8d7b(0x28b,'\x78\x5e\x76\x51')](_0x3d8d7b(0x270,'\x4c\x47\x35\x6e'),_0x545a4c[_0x3d8d7b(0x20f,'\x36\x28\x74\x49')])){const _0xc98ccd=_0x355c2e[_0x3d8d7b(0x311,'\x36\x28\x74\x49')](0x619+-0x14b1+-0x74c*-0x2,ENKAWc[_0x3d8d7b(0x217,'\x66\x70\x69\x77')](_0x3709ad,_0x195415)),_0x24425b=_0x62480a[_0x3d8d7b(0x26c,'\x7a\x63\x47\x64')](_0x3aa218[_0x3d8d7b(0x309,'\x25\x77\x54\x35')],ENKAWc[_0x3d8d7b(0x2eb,'\x36\x28\x74\x49')](ENKAWc[_0x3d8d7b(0x264,'\x50\x47\x54\x70')](_0x24cee4,_0x4dd3c6),_0x4316ef));for(const _0x54ab94 of _0x24051c){const _0x24ba3f=_0x54ab94['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x3d8d7b(0x240,'\x57\x4a\x54\x78')]();let _0x4fd831=_0x1f46cd(_0x4ba831,_0x24ba3f,_0xc98ccd,_0x24425b);while(ENKAWc[_0x3d8d7b(0x2a8,'\x66\x70\x69\x77')](_0x4fd831,-(-0x12c0+0x12a3+0x3*0xa))){if(!ENKAWc[_0x3d8d7b(0x212,'\x66\x70\x69\x77')](_0x1895d9,_0x39fbdc,_0x4fd831))return!![];_0x4fd831=_0x52c5e1(_0xcf3d37,_0x24ba3f,ENKAWc[_0x3d8d7b(0x27c,'\x39\x79\x67\x34')](_0x4fd831,-0x956+-0x94b*-0x2+-0x93f),_0x24425b);}}return![];}else{console[_0x3d8d7b(0x24e,'\x47\x37\x21\x78')](_0x545a4c[_0x3d8d7b(0x1ef,'\x21\x38\x62\x4c')](_0x545a4c['\x58\x56\x63\x63\x57'](_0x545a4c[_0x3d8d7b(0x328,'\x66\x70\x69\x77')](_0x3d8d7b(0x21a,'\x2a\x66\x2a\x4d')+_0x3d8d7b(0x213,'\x78\x48\x33\x68')+_0x3d8d7b(0x2dd,'\x47\x37\x21\x78')+_0x3d8d7b(0x2c5,'\x50\x47\x54\x70')+'\x20',_0x21eeb0[_0x3d8d7b(0x242,'\x24\x59\x78\x5a')])+_0x545a4c[_0x3d8d7b(0x1e5,'\x56\x24\x4a\x61')],_0x21eeb0[_0x3d8d7b(0x2aa,'\x78\x48\x33\x68')](_0x516e60=>_0x516e60['\x63\x61\x70\x61\x62\x69\x6c\x69'+'\x74\x79'])[_0x3d8d7b(0x255,'\x41\x50\x69\x56')]('\x2c\x20')),_0x3d8d7b(0x2e9,'\x38\x5a\x4e\x64')+_0x3d8d7b(0x2f5,'\x38\x5a\x4e\x64')+_0x3d8d7b(0x28f,'\x5d\x45\x76\x33')+_0x3d8d7b(0x227,'\x64\x77\x6f\x5e')+_0x3d8d7b(0x222,'\x38\x6a\x48\x79')+_0x3d8d7b(0x342,'\x6d\x5e\x52\x57')+_0x3d8d7b(0x226,'\x47\x37\x21\x78')+'\x6e\x66\x6f\x72\x63\x65\x20\x74'+_0x3d8d7b(0x274,'\x55\x55\x24\x30')));const _0x3e1264={};return _0x3e1264['\x6d\x6f\x64\x65']=_0x205256,_0x3e1264[_0x3d8d7b(0x338,'\x69\x6e\x42\x77')+'\x65\x73']=_0x21eeb0,_0x3e1264[_0x3d8d7b(0x210,'\x5d\x45\x76\x33')]=[],_0x3e1264;}}console[_0x3d8d7b(0x22f,'\x6f\x5d\x41\x68')](_0x545a4c[_0x3d8d7b(0x1ca,'\x6f\x5d\x41\x68')](_0x545a4c[_0x3d8d7b(0x2e0,'\x4f\x29\x44\x6a')](_0x545a4c[_0x3d8d7b(0x235,'\x2a\x66\x2a\x4d')](_0x545a4c[_0x3d8d7b(0x269,'\x40\x37\x6d\x75')]+_0x21eeb0[_0x3d8d7b(0x253,'\x41\x50\x69\x56')],_0x545a4c[_0x3d8d7b(0x1ce,'\x69\x6e\x42\x77')])+_0x254411[_0x3d8d7b(0x315,'\x66\x70\x69\x77')],_0x545a4c[_0x3d8d7b(0x32e,'\x5d\x45\x76\x33')]),_0x254411[_0x3d8d7b(0x211,'\x55\x55\x24\x30')]('\x2c\x20')));const _0x2f1b17={};return _0x2f1b17['\x6d\x6f\x64\x65']=_0x205256,_0x2f1b17[_0x3d8d7b(0x2b6,'\x43\x66\x76\x23')+'\x65\x73']=_0x21eeb0,_0x2f1b17[_0x3d8d7b(0x301,'\x24\x59\x78\x5a')]=_0x254411,_0x2f1b17;}const _0x354a2f={};function _0xa527(){const _0x2d3d20=['\x76\x53\x6f\x6e\x7a\x43\x6f\x52\x57\x35\x79','\x57\x50\x56\x64\x4f\x4d\x48\x58\x57\x52\x43\x67','\x6d\x4c\x74\x64\x4f\x53\x6f\x65\x57\x36\x79\x2b\x7a\x53\x6f\x30','\x57\x51\x38\x4e\x70\x6d\x6b\x77\x57\x51\x62\x78','\x6d\x38\x6b\x77\x70\x48\x7a\x79\x57\x51\x66\x56\x64\x57','\x57\x51\x42\x64\x4c\x75\x68\x64\x4a\x43\x6f\x72\x6a\x43\x6b\x54\x57\x51\x57','\x6e\x53\x6b\x34\x64\x65\x5a\x64\x56\x57','\x69\x43\x6b\x44\x63\x61\x38\x39\x75\x75\x68\x63\x56\x47','\x57\x35\x76\x6c\x57\x34\x37\x64\x52\x6d\x6f\x78\x57\x34\x31\x4f','\x57\x37\x48\x62\x57\x52\x35\x6a','\x65\x65\x78\x63\x48\x6d\x6f\x2b\x57\x4f\x4c\x6a\x67\x5a\x56\x64\x55\x6d\x6f\x4c\x7a\x38\x6f\x45','\x57\x52\x78\x64\x4f\x65\x79','\x72\x49\x39\x36\x57\x34\x7a\x73','\x79\x75\x4c\x33\x69\x65\x43','\x57\x52\x6e\x4f\x57\x37\x61\x6e\x57\x36\x35\x58\x57\x36\x57','\x57\x36\x6c\x63\x47\x68\x57\x49\x6b\x64\x65','\x6b\x74\x4a\x64\x4e\x75\x6c\x64\x56\x43\x6f\x79\x57\x52\x65','\x46\x53\x6f\x6a\x57\x4f\x38\x53\x46\x71','\x57\x34\x76\x6c\x57\x51\x4c\x43\x6d\x57','\x57\x35\x35\x6d\x57\x52\x79\x73','\x57\x52\x75\x76\x57\x34\x6c\x63\x4e\x38\x6b\x49\x57\x50\x66\x4e\x77\x71','\x57\x34\x35\x77\x57\x52\x7a\x66\x64\x6d\x6f\x31\x57\x36\x71','\x57\x34\x4c\x41\x57\x4f\x78\x64\x50\x53\x6f\x38','\x57\x36\x68\x63\x51\x53\x6f\x76\x64\x47','\x57\x37\x6d\x6e\x61\x4a\x31\x39\x57\x51\x42\x63\x53\x43\x6f\x30','\x6a\x76\x72\x7a\x57\x36\x34\x33','\x72\x61\x37\x64\x4b\x43\x6b\x55','\x57\x52\x79\x57\x57\x37\x61\x5a\x42\x57','\x57\x52\x31\x78\x79\x53\x6b\x56\x6d\x6d\x6b\x73\x57\x52\x43\x47','\x68\x78\x64\x63\x47\x53\x6f\x77\x57\x51\x6d','\x57\x34\x42\x63\x4e\x43\x6f\x55\x71\x58\x65\x61\x44\x61\x4b','\x74\x73\x66\x59\x57\x35\x61','\x57\x37\x39\x38\x79\x53\x6f\x41\x43\x43\x6b\x51','\x57\x35\x39\x5a\x57\x35\x64\x64\x4a\x53\x6f\x78','\x57\x35\x4e\x63\x49\x4b\x75\x49\x6e\x57','\x42\x4d\x33\x64\x47\x57','\x57\x37\x61\x4c\x65\x57\x43\x78\x57\x51\x46\x64\x4a\x53\x6f\x43','\x57\x36\x5a\x64\x50\x74\x64\x64\x50\x4e\x37\x63\x4c\x77\x6c\x63\x4c\x61','\x6e\x6d\x6b\x39\x57\x35\x4a\x64\x49\x6d\x6f\x48\x62\x4b\x46\x63\x55\x38\x6f\x52\x6f\x53\x6f\x49\x67\x76\x69','\x66\x4d\x68\x63\x55\x43\x6f\x49\x57\x37\x38','\x57\x36\x35\x4c\x57\x50\x56\x64\x50\x43\x6f\x6e','\x57\x52\x35\x6e\x57\x35\x4f\x75\x57\x51\x5a\x63\x4f\x61','\x57\x51\x54\x6d\x41\x53\x6f\x48','\x57\x35\x57\x4d\x42\x5a\x74\x64\x51\x61','\x57\x36\x62\x31\x72\x38\x6f\x4a\x75\x71','\x57\x36\x56\x63\x4f\x62\x57','\x6a\x78\x4e\x63\x54\x43\x6f\x2f\x57\x50\x79','\x57\x34\x42\x63\x54\x53\x6f\x33\x78\x71\x65','\x57\x34\x2f\x64\x48\x78\x6c\x63\x4c\x61','\x57\x36\x46\x63\x4f\x47\x4c\x52\x57\x50\x75','\x57\x51\x66\x45\x7a\x6d\x6b\x4d\x57\x52\x56\x63\x4e\x4d\x33\x64\x54\x61','\x63\x33\x30\x67\x76\x61','\x57\x51\x4b\x6f\x57\x35\x70\x63\x48\x43\x6b\x2f\x57\x4f\x62\x30\x6e\x43\x6f\x48\x57\x51\x6c\x63\x4f\x4c\x65\x31','\x6f\x38\x6b\x31\x62\x58\x4c\x36','\x6c\x58\x6c\x64\x56\x4e\x5a\x64\x56\x57','\x57\x50\x57\x34\x57\x35\x72\x5a\x72\x61','\x61\x6d\x6b\x43\x6a\x38\x6f\x63\x57\x34\x71','\x77\x6d\x6f\x38\x57\x52\x42\x63\x4c\x43\x6b\x34','\x71\x72\x56\x64\x53\x53\x6f\x57\x6a\x38\x6f\x2b\x57\x50\x68\x63\x47\x57','\x69\x38\x6b\x38\x6b\x6d\x6f\x33\x57\x37\x30','\x57\x35\x52\x64\x47\x47\x46\x63\x4a\x31\x56\x63\x53\x4c\x70\x63\x54\x71','\x57\x37\x72\x6a\x57\x50\x70\x63\x4b\x43\x6f\x51\x57\x35\x4b\x49\x66\x61','\x57\x51\x58\x64\x78\x43\x6b\x6f\x64\x61','\x78\x59\x50\x43\x64\x38\x6f\x62\x78\x30\x34\x6e\x6c\x48\x4b\x69','\x57\x51\x54\x6a\x57\x35\x50\x62\x57\x36\x4f','\x57\x36\x74\x63\x4b\x68\x6d\x68\x67\x57','\x62\x43\x6b\x5a\x67\x4e\x38','\x71\x48\x46\x64\x4d\x53\x6b\x50\x57\x35\x69\x79\x68\x49\x65','\x57\x36\x74\x63\x4b\x38\x6f\x2f\x41\x64\x6d','\x57\x36\x33\x64\x50\x33\x5a\x63\x4d\x6d\x6f\x4b','\x57\x4f\x4c\x34\x57\x4f\x6e\x2f\x57\x51\x4c\x4a\x74\x78\x2f\x63\x4d\x38\x6f\x32\x73\x57','\x68\x75\x34\x36\x73\x38\x6b\x37','\x57\x51\x61\x4f\x67\x53\x6b\x37\x57\x52\x69','\x57\x51\x35\x62\x79\x43\x6b\x46\x67\x71','\x57\x34\x6c\x63\x54\x4a\x2f\x63\x52\x49\x71','\x57\x34\x7a\x47\x57\x4f\x34','\x57\x36\x74\x63\x49\x4e\x53\x52','\x57\x37\x62\x43\x57\x50\x69','\x57\x4f\x72\x36\x71\x53\x6b\x47\x57\x50\x53','\x57\x52\x64\x64\x4b\x30\x4a\x64\x4c\x38\x6f\x70\x69\x53\x6b\x42','\x57\x35\x37\x63\x4c\x38\x6f\x4d\x73\x71','\x57\x4f\x4f\x72\x67\x6d\x6b\x67\x57\x50\x79','\x57\x34\x78\x63\x51\x64\x2f\x63\x4f\x61','\x57\x35\x2f\x64\x4d\x59\x70\x63\x4b\x66\x38','\x57\x35\x44\x53\x76\x6d\x6b\x35\x6b\x57','\x66\x58\x78\x64\x4c\x65\x70\x64\x55\x43\x6f\x4f\x57\x52\x52\x64\x4e\x57','\x6a\x68\x52\x63\x4e\x53\x6f\x7a\x57\x50\x61','\x57\x37\x48\x74\x57\x4f\x5a\x64\x4e\x53\x6f\x37\x57\x35\x53\x50','\x57\x50\x70\x64\x4b\x31\x4e\x64\x4c\x53\x6f\x44','\x79\x49\x2f\x64\x48\x53\x6b\x6f\x57\x34\x70\x64\x51\x53\x6f\x36\x57\x4f\x4a\x63\x52\x74\x56\x64\x49\x71\x4b','\x57\x51\x72\x78\x67\x63\x62\x2f\x57\x50\x56\x63\x50\x6d\x6f\x35','\x57\x36\x61\x53\x42\x61\x2f\x64\x48\x53\x6b\x44\x57\x34\x61\x76','\x6f\x75\x5a\x63\x47\x43\x6f\x4f\x57\x50\x38','\x6a\x76\x37\x63\x52\x38\x6f\x6f\x57\x51\x69','\x72\x58\x4a\x64\x4f\x6d\x6f\x67\x6f\x71','\x69\x53\x6b\x42\x57\x35\x52\x64\x55\x57','\x6a\x53\x6b\x50\x68\x74\x65\x49','\x57\x52\x44\x70\x41\x38\x6b\x75\x57\x50\x4f','\x57\x51\x50\x78\x78\x38\x6b\x54\x6a\x38\x6b\x6a\x57\x51\x30\x74','\x57\x52\x4e\x64\x50\x53\x6b\x42\x72\x61','\x57\x50\x31\x51\x7a\x6d\x6b\x52\x6e\x48\x71\x46\x63\x71','\x42\x59\x56\x64\x51\x6d\x6f\x73\x61\x57','\x57\x35\x33\x64\x48\x78\x68\x63\x4a\x53\x6f\x33\x57\x36\x69','\x57\x52\x43\x51\x57\x36\x66\x56\x73\x43\x6f\x6c\x57\x51\x46\x63\x4c\x57','\x6e\x53\x6b\x77\x70\x61\x66\x75','\x68\x38\x6b\x52\x68\x59\x75\x70','\x57\x35\x56\x63\x49\x64\x46\x63\x4a\x5a\x53','\x57\x50\x76\x4e\x76\x6d\x6b\x49\x64\x61\x72\x2f\x57\x34\x4b','\x42\x66\x2f\x64\x4b\x4e\x6d\x79\x61\x53\x6b\x55\x57\x34\x69','\x66\x53\x6b\x59\x67\x62\x62\x34','\x79\x4c\x66\x71\x6e\x77\x69','\x57\x36\x4f\x30\x64\x4a\x65\x38','\x57\x34\x46\x63\x4b\x4d\x61\x5a\x6a\x71','\x46\x4c\x62\x38\x69\x4b\x6c\x63\x4d\x57','\x63\x32\x43\x39\x57\x50\x65','\x57\x37\x34\x4f\x42\x58\x46\x64\x55\x6d\x6b\x6e\x57\x34\x53','\x6c\x38\x6b\x65\x70\x33\x4e\x64\x4d\x61','\x57\x35\x52\x64\x4e\x33\x47','\x57\x51\x44\x6b\x70\x74\x54\x54\x57\x51\x33\x63\x4f\x53\x6f\x42','\x57\x36\x79\x77\x75\x38\x6b\x44\x6e\x38\x6b\x75\x76\x30\x61','\x42\x76\x74\x64\x4e\x30\x34\x73','\x57\x35\x58\x34\x7a\x38\x6f\x4e\x79\x57','\x6e\x68\x46\x63\x48\x38\x6f\x42\x57\x50\x46\x63\x53\x38\x6f\x59\x57\x4f\x43','\x70\x63\x37\x63\x48\x6d\x6b\x78\x57\x50\x52\x63\x51\x53\x6f\x37\x57\x50\x57','\x66\x38\x6b\x47\x62\x6d\x6f\x44\x57\x36\x6d','\x66\x6d\x6f\x55\x57\x35\x42\x64\x48\x57\x4b','\x57\x37\x4b\x36\x43\x64\x4a\x64\x4a\x71','\x62\x43\x6f\x45\x57\x36\x52\x64\x4d\x63\x70\x63\x48\x72\x4c\x32','\x69\x38\x6b\x79\x70\x72\x43','\x64\x4e\x6d\x62\x73\x38\x6b\x6d\x41\x32\x4f\x46','\x46\x53\x6f\x6e\x57\x52\x4e\x63\x49\x43\x6b\x61','\x57\x36\x68\x63\x4f\x6d\x6f\x45\x64\x61','\x42\x63\x78\x64\x4b\x4b\x52\x64\x4f\x43\x6f\x41\x57\x52\x4a\x63\x4e\x47','\x57\x51\x5a\x64\x52\x4e\x6c\x64\x49\x38\x6f\x4b\x73\x6d\x6b\x62\x45\x57','\x57\x4f\x66\x61\x57\x34\x54\x4a\x57\x35\x71','\x57\x51\x37\x64\x4b\x33\x76\x71\x57\x51\x30','\x57\x35\x68\x63\x4b\x6d\x6f\x62\x72\x4a\x4f','\x57\x50\x50\x51\x73\x43\x6b\x47\x57\x51\x53','\x57\x35\x30\x4f\x57\x36\x38\x38\x57\x36\x6d','\x78\x58\x5a\x64\x51\x53\x6f\x48\x64\x47','\x57\x51\x35\x6b\x57\x35\x76\x71\x57\x34\x42\x64\x54\x43\x6b\x30\x57\x51\x4f','\x72\x61\x33\x64\x50\x53\x6f\x4b\x69\x61','\x57\x35\x6c\x63\x4e\x53\x6f\x73\x62\x58\x65\x62\x7a\x58\x53','\x57\x34\x69\x79\x42\x4a\x70\x64\x4c\x61','\x57\x51\x4f\x4b\x6e\x61','\x42\x32\x33\x64\x49\x67\x61\x50\x65\x6d\x6b\x53\x57\x35\x47','\x6e\x31\x33\x63\x54\x53\x6f\x62\x57\x35\x65\x53\x42\x6d\x6f\x59','\x57\x35\x79\x48\x57\x35\x71\x54','\x65\x6d\x6b\x63\x6c\x6d\x6f\x59\x57\x36\x71','\x68\x77\x4b\x43\x75\x61','\x57\x37\x78\x63\x51\x61\x54\x48\x57\x35\x74\x64\x55\x77\x4b','\x57\x51\x6d\x39\x57\x35\x76\x35\x74\x71','\x57\x37\x35\x37\x65\x58\x4e\x63\x56\x71','\x57\x34\x50\x43\x57\x52\x71','\x35\x42\x73\x33\x35\x79\x36\x6e\x35\x42\x51\x41','\x79\x49\x70\x64\x4a\x53\x6b\x6b\x57\x34\x42\x64\x52\x43\x6b\x52\x57\x4f\x68\x63\x4d\x59\x56\x64\x55\x58\x57\x55','\x71\x59\x72\x45\x57\x37\x39\x72','\x7a\x66\x7a\x35\x69\x31\x78\x63\x4f\x59\x61','\x6f\x6d\x6b\x6b\x62\x49\x75\x65','\x57\x51\x78\x64\x4e\x65\x33\x64\x4b\x38\x6f\x43\x6a\x53\x6b\x42\x57\x36\x38','\x57\x37\x5a\x63\x4f\x6d\x6f\x65\x71\x61','\x69\x78\x6e\x6a\x57\x36\x38\x36','\x57\x52\x33\x64\x55\x65\x46\x64\x54\x6d\x6f\x75','\x57\x36\x35\x75\x57\x4f\x33\x64\x4e\x38\x6f\x4f\x57\x35\x71\x2f','\x57\x35\x65\x48\x57\x35\x4b\x4d','\x57\x35\x5a\x63\x53\x32\x61\x70\x63\x47','\x57\x37\x74\x63\x51\x43\x6b\x6b\x65\x30\x43\x4f\x57\x36\x50\x30','\x57\x37\x38\x6e\x73\x38\x6b\x61\x6c\x53\x6b\x69\x67\x61\x46\x63\x48\x30\x2f\x63\x47\x53\x6b\x34','\x46\x48\x65\x4e\x7a\x47','\x65\x4d\x38\x68\x76\x47','\x57\x37\x46\x63\x4b\x77\x75\x58\x62\x47','\x57\x37\x58\x4d\x44\x43\x6f\x65\x45\x38\x6b\x38\x57\x52\x42\x63\x4a\x61','\x66\x6d\x6b\x4f\x67\x33\x46\x64\x4d\x57\x44\x6c\x57\x4f\x53','\x57\x35\x43\x6f\x43\x62\x78\x64\x52\x38\x6b\x39\x57\x34\x61\x76','\x72\x58\x70\x64\x4e\x43\x6b\x2b\x57\x35\x6d\x6a\x75\x4a\x65','\x57\x52\x48\x72\x57\x35\x30\x45','\x57\x35\x53\x63\x6d\x49\x71\x6f','\x76\x43\x6f\x56\x74\x73\x37\x63\x4a\x65\x53\x41\x57\x51\x68\x64\x4a\x71\x64\x64\x4c\x53\x6b\x66\x57\x34\x53','\x57\x37\x6e\x51\x62\x48\x4e\x63\x4c\x47','\x79\x59\x2f\x64\x56\x38\x6b\x35\x57\x37\x38','\x41\x38\x6f\x69\x57\x50\x61\x6d\x75\x71','\x46\x38\x6f\x36\x57\x51\x4b\x42\x77\x43\x6f\x58\x62\x4e\x43','\x74\x73\x76\x59\x57\x35\x58\x66\x77\x43\x6b\x54\x6f\x61','\x57\x51\x48\x79\x6a\x6d\x6f\x61\x41\x6d\x6f\x43\x63\x61\x57','\x6d\x4d\x37\x63\x4e\x53\x6f\x6a\x57\x4f\x68\x63\x51\x43\x6f\x6e\x57\x50\x43','\x6b\x53\x6f\x39\x57\x34\x68\x64\x55\x61\x2f\x63\x54\x76\x30\x50','\x57\x36\x58\x50\x69\x4e\x6c\x63\x4b\x67\x56\x63\x50\x6d\x6f\x74','\x57\x4f\x79\x32\x57\x36\x38\x4d\x46\x61','\x57\x37\x6e\x56\x57\x36\x56\x64\x4b\x6d\x6f\x5a\x57\x36\x31\x78\x78\x47','\x70\x62\x2f\x64\x4e\x78\x4a\x64\x50\x61','\x6a\x68\x37\x63\x4c\x53\x6f\x45\x57\x50\x52\x63\x52\x71','\x66\x43\x6b\x38\x6a\x43\x6f\x4b\x57\x35\x53','\x69\x53\x6b\x77\x63\x62\x43\x54\x75\x72\x2f\x64\x52\x71','\x57\x50\x6d\x51\x57\x34\x54\x2f\x72\x61','\x6f\x33\x4e\x63\x4b\x61','\x67\x72\x68\x64\x51\x32\x46\x64\x50\x57','\x57\x52\x62\x2f\x57\x37\x75\x6d\x57\x37\x7a\x32','\x57\x52\x39\x56\x6e\x59\x6c\x63\x54\x66\x2f\x63\x47\x53\x6f\x5a','\x6c\x38\x6b\x34\x57\x35\x42\x64\x4b\x53\x6f\x39','\x57\x37\x44\x73\x57\x4f\x70\x64\x4e\x57','\x57\x35\x79\x4b\x74\x48\x64\x64\x4a\x61','\x57\x37\x56\x63\x4f\x43\x6f\x78\x71\x61','\x57\x37\x68\x64\x56\x47\x78\x63\x51\x77\x52\x63\x4b\x78\x37\x63\x53\x57','\x57\x50\x37\x64\x4b\x33\x66\x61\x57\x50\x71','\x57\x34\x64\x63\x4c\x38\x6f\x43\x75\x5a\x61\x44\x45\x58\x4f','\x57\x36\x74\x63\x4d\x72\x64\x63\x54\x71\x69','\x57\x37\x44\x56\x57\x50\x50\x33\x57\x34\x79','\x57\x35\x33\x63\x56\x5a\x4a\x63\x51\x4a\x76\x4e','\x69\x53\x6b\x67\x57\x36\x70\x64\x53\x43\x6f\x52\x57\x36\x62\x72\x57\x50\x4b','\x75\x64\x46\x64\x4e\x38\x6b\x67\x57\x35\x34','\x57\x34\x48\x78\x57\x52\x35\x43\x69\x43\x6f\x31\x57\x36\x61\x41','\x57\x52\x39\x6c\x41\x71','\x78\x57\x42\x64\x4f\x53\x6f\x6e','\x6a\x6d\x6b\x77\x62\x71\x71\x38\x78\x71','\x57\x52\x47\x4f\x57\x35\x39\x4f\x77\x6d\x6b\x63\x57\x51\x64\x64\x4d\x57','\x57\x50\x50\x50\x73\x43\x6b\x47\x67\x47\x4c\x36\x57\x35\x57','\x69\x66\x33\x63\x4b\x43\x6f\x4b\x57\x34\x65\x6d\x44\x53\x6f\x50','\x57\x34\x48\x78\x57\x36\x78\x64\x53\x38\x6f\x73','\x6a\x30\x39\x45\x57\x37\x43\x67\x62\x43\x6b\x66\x43\x61','\x57\x36\x72\x59\x7a\x6d\x6f\x61','\x42\x65\x48\x30\x41\x30\x37\x63\x4a\x73\x52\x63\x47\x57','\x57\x37\x4f\x33\x65\x30\x71\x6b','\x57\x51\x62\x65\x57\x34\x6d','\x57\x34\x52\x64\x50\x4a\x2f\x63\x51\x66\x4b','\x57\x35\x4f\x53\x57\x35\x4b\x4b\x57\x37\x4c\x72\x7a\x74\x71','\x63\x6d\x6f\x74\x57\x36\x71','\x57\x52\x66\x66\x76\x43\x6b\x59\x69\x47','\x57\x35\x46\x64\x4a\x77\x37\x63\x4a\x53\x6f\x6e\x57\x36\x6d\x69\x57\x37\x34','\x57\x51\x31\x75\x7a\x43\x6b\x36\x6d\x61','\x79\x43\x6f\x4b\x57\x50\x65','\x74\x72\x70\x64\x4d\x53\x6b\x51\x57\x34\x38\x75','\x70\x58\x4e\x64\x49\x77\x64\x64\x4d\x47','\x73\x58\x4e\x64\x4e\x43\x6b\x4a','\x57\x52\x31\x71\x70\x73\x76\x2b','\x57\x37\x7a\x49\x6e\x74\x37\x63\x4f\x66\x4e\x63\x4a\x53\x6f\x53','\x61\x78\x6d\x69','\x6a\x30\x66\x61\x57\x36\x61\x37\x68\x38\x6b\x68\x43\x61','\x62\x77\x38\x6a\x77\x67\x79\x66\x57\x52\x6d\x65','\x57\x36\x43\x70\x73\x62\x64\x64\x4b\x47','\x57\x37\x35\x70\x57\x4f\x2f\x64\x4b\x6d\x6f\x39\x57\x35\x30\x4f','\x72\x73\x48\x2b\x57\x37\x6e\x73','\x66\x53\x6f\x7a\x57\x36\x64\x64\x47\x74\x4a\x63\x47\x47\x4b\x36','\x57\x35\x2f\x63\x4a\x31\x6d\x51\x6e\x47','\x73\x62\x6c\x64\x4c\x43\x6b\x35\x57\x35\x35\x75\x64\x68\x57','\x57\x50\x58\x6c\x78\x38\x6b\x44\x6e\x57','\x43\x38\x6f\x74\x61\x47\x30\x49\x75\x65\x46\x63\x55\x71','\x77\x53\x6f\x6c\x57\x4f\x4b\x54\x44\x6d\x6f\x7a\x69\x75\x43','\x57\x50\x44\x6d\x57\x36\x50\x6e\x57\x34\x57','\x46\x75\x31\x55\x6c\x47','\x57\x50\x66\x2b\x79\x6d\x6b\x34\x62\x57','\x57\x4f\x2f\x64\x49\x4c\x4e\x64\x48\x38\x6f\x32','\x36\x79\x6b\x46\x36\x6c\x32\x77\x35\x6c\x55\x70','\x67\x48\x74\x64\x53\x32\x78\x64\x54\x57','\x69\x65\x64\x63\x53\x43\x6f\x41','\x57\x36\x4f\x78\x69\x53\x6f\x53\x57\x37\x4e\x64\x4b\x59\x46\x63\x51\x71','\x63\x6d\x6b\x43\x6c\x71','\x57\x51\x44\x6b\x61\x57','\x73\x5a\x31\x35\x57\x35\x6a\x62','\x57\x34\x48\x6e\x57\x4f\x4b','\x57\x51\x69\x50\x57\x35\x66\x54\x41\x47','\x75\x63\x54\x66\x57\x35\x31\x2f','\x71\x38\x6f\x45\x42\x38\x6f\x62\x57\x35\x52\x64\x52\x74\x4e\x64\x49\x71','\x57\x4f\x70\x64\x4f\x33\x66\x4a\x57\x4f\x38','\x57\x35\x72\x55\x57\x35\x65\x52\x57\x36\x71\x6d\x6d\x47','\x57\x50\x79\x32\x57\x35\x30\x69\x57\x35\x76\x44\x57\x35\x6e\x64\x6d\x53\x6f\x44','\x44\x49\x37\x64\x47\x6d\x6b\x6c\x57\x37\x57','\x57\x37\x58\x4d\x44\x43\x6f\x65\x45\x38\x6b\x38\x57\x52\x79','\x75\x74\x56\x64\x4b\x43\x6f\x78\x63\x61','\x6e\x4d\x78\x63\x4b\x47','\x57\x52\x39\x6d\x44\x53\x6b\x71\x67\x47','\x57\x4f\x4c\x79\x6b\x43\x6b\x6d\x6e\x71\x71\x68\x63\x61','\x64\x53\x6b\x2f\x57\x34\x5a\x64\x56\x43\x6f\x6c','\x57\x36\x64\x64\x47\x4d\x7a\x4c','\x57\x37\x4c\x39\x7a\x6d\x6f\x61\x45\x38\x6b\x50\x57\x51\x4f','\x6f\x63\x74\x64\x4b\x4b\x61','\x45\x53\x6f\x68\x57\x52\x6c\x63\x51\x38\x6b\x68','\x57\x37\x72\x74\x57\x4f\x30','\x68\x38\x6b\x66\x57\x37\x4e\x64\x54\x38\x6f\x31','\x61\x30\x74\x63\x52\x6d\x6f\x46\x57\x36\x4b','\x57\x37\x46\x63\x4b\x61\x2f\x63\x56\x47\x47','\x57\x51\x7a\x76\x41\x43\x6b\x46\x61\x59\x58\x65\x57\x36\x4b','\x57\x34\x4e\x64\x49\x78\x70\x63\x4d\x38\x6f\x2f\x57\x37\x75\x31\x57\x36\x34','\x68\x4d\x6a\x74\x57\x37\x61\x74','\x61\x53\x6b\x7a\x6f\x53\x6b\x44\x57\x35\x68\x64\x49\x71\x68\x63\x54\x4d\x56\x64\x4b\x57','\x65\x53\x6b\x55\x67\x57\x7a\x31','\x57\x34\x66\x6e\x57\x52\x66\x4f\x6f\x71','\x57\x37\x6a\x64\x57\x52\x50\x59\x57\x35\x38','\x41\x30\x4c\x6d\x69\x4d\x71','\x57\x35\x78\x63\x50\x62\x48\x2f\x57\x37\x69','\x6e\x71\x61\x4b\x43\x58\x56\x64\x4e\x68\x42\x63\x52\x47\x74\x64\x55\x38\x6f\x66\x79\x43\x6f\x2b','\x57\x37\x44\x79\x57\x4f\x4e\x64\x48\x43\x6f\x53\x57\x35\x58\x33\x75\x61','\x64\x53\x6b\x32\x70\x64\x4b\x66','\x57\x4f\x50\x4a\x71\x53\x6b\x34','\x57\x36\x46\x63\x4b\x77\x54\x4c\x70\x5a\x4a\x64\x4d\x6d\x6f\x6c','\x76\x6d\x6f\x68\x6c\x43\x6f\x42\x57\x36\x46\x64\x4c\x67\x75\x36','\x57\x36\x4e\x63\x47\x67\x79\x69\x6d\x5a\x33\x64\x4b\x57','\x57\x52\x4b\x55\x57\x36\x72\x4c\x45\x47','\x57\x34\x42\x63\x4e\x43\x6f\x53\x75\x4a\x61\x68\x46\x61\x53','\x74\x62\x2f\x64\x4d\x47','\x57\x34\x37\x64\x4e\x77\x56\x63\x4f\x53\x6f\x4f','\x57\x34\x6e\x44\x57\x51\x47','\x57\x35\x6c\x63\x4c\x6d\x6f\x55\x71\x64\x65','\x57\x34\x44\x44\x57\x4f\x6e\x74\x65\x6d\x6f\x31','\x57\x52\x2f\x64\x4e\x73\x6a\x31\x42\x67\x4e\x63\x48\x47','\x6e\x43\x6b\x54\x57\x36\x52\x64\x4a\x38\x6f\x53','\x6f\x77\x75\x34\x75\x6d\x6b\x78','\x57\x51\x64\x64\x4b\x4d\x4a\x64\x4a\x6d\x6f\x74','\x57\x51\x39\x2f\x57\x37\x34\x66','\x46\x4c\x31\x38\x6e\x65\x37\x63\x48\x61','\x57\x51\x62\x61\x62\x78\x72\x46\x57\x50\x37\x63\x4e\x38\x6f\x75','\x57\x51\x44\x41\x67\x53\x6f\x68\x45\x43\x6b\x76\x64\x30\x61','\x57\x36\x42\x63\x48\x67\x65\x54','\x57\x34\x33\x63\x4e\x6d\x6f\x35\x6a\x32\x65\x69\x57\x34\x69','\x57\x36\x6d\x4c\x63\x71\x53','\x57\x51\x42\x64\x49\x65\x33\x64\x4d\x38\x6f\x79\x6d\x53\x6b\x6e','\x57\x34\x68\x63\x54\x4b\x75\x64\x6b\x47','\x57\x36\x76\x70\x57\x4f\x37\x64\x4f\x6d\x6f\x49','\x57\x37\x2f\x63\x52\x53\x6f\x61','\x57\x34\x76\x64\x57\x34\x46\x64\x50\x53\x6f\x46\x57\x34\x76\x36\x41\x57','\x57\x51\x68\x64\x4b\x4d\x46\x64\x51\x38\x6f\x59\x65\x53\x6b\x6b\x57\x52\x61','\x57\x36\x52\x63\x50\x61\x6a\x4f\x57\x34\x68\x64\x56\x71','\x6d\x6d\x6b\x66\x57\x34\x37\x64\x55\x43\x6f\x56','\x57\x35\x2f\x63\x54\x73\x65','\x57\x52\x56\x64\x52\x4c\x64\x64\x4c\x38\x6f\x4e\x78\x38\x6b\x67\x77\x57','\x57\x51\x6e\x61\x57\x34\x31\x64\x57\x36\x56\x63\x54\x47','\x57\x52\x4c\x72\x63\x43\x6f\x79\x44\x43\x6f\x74\x67\x57','\x57\x36\x54\x4f\x69\x73\x46\x63\x4d\x71','\x63\x43\x6b\x39\x62\x33\x69','\x77\x64\x58\x59\x57\x36\x72\x43','\x75\x6d\x6f\x6b\x79\x38\x6f\x6a\x57\x35\x52\x64\x55\x4a\x64\x63\x4b\x61','\x57\x37\x62\x43\x57\x50\x37\x64\x4b\x53\x6f\x48\x57\x35\x30\x4f','\x57\x50\x6a\x47\x7a\x38\x6b\x38\x6c\x48\x4b','\x57\x51\x42\x64\x4b\x75\x46\x64\x4d\x38\x6f\x79','\x69\x43\x6b\x44\x64\x57\x79\x57\x45\x4b\x69','\x57\x50\x48\x59\x76\x43\x6b\x51\x68\x61','\x57\x37\x78\x64\x4e\x4b\x2f\x64\x49\x6d\x6f\x43\x69\x38\x6b\x78\x57\x51\x34','\x68\x4d\x47\x44\x75\x43\x6b\x77\x46\x4e\x79\x41','\x57\x51\x30\x2b\x57\x34\x6d\x50\x74\x71','\x70\x43\x6f\x4f\x57\x37\x64\x64\x53\x49\x71','\x46\x43\x6f\x61\x57\x4f\x74\x63\x55\x47','\x6f\x33\x52\x63\x56\x6d\x6f\x74\x57\x35\x79','\x69\x4d\x42\x63\x4b\x38\x6f\x42\x57\x4f\x68\x63\x56\x57','\x69\x64\x37\x64\x4a\x78\x4e\x64\x55\x47','\x57\x37\x68\x64\x56\x4a\x53','\x57\x36\x31\x77\x57\x34\x35\x75\x57\x37\x2f\x64\x54\x38\x6b\x32\x57\x52\x38','\x57\x36\x62\x32\x45\x43\x6f\x70\x7a\x53\x6b\x4e','\x57\x37\x52\x63\x49\x53\x6f\x74\x65\x32\x71','\x57\x36\x70\x63\x51\x38\x6f\x44\x6a\x30\x79','\x57\x36\x4b\x31\x42\x58\x74\x64\x51\x38\x6b\x41\x57\x35\x30','\x57\x34\x74\x63\x53\x5a\x71\x4a\x57\x37\x6a\x79\x57\x4f\x46\x64\x4e\x71\x71\x77\x6d\x31\x4a\x64\x49\x71','\x57\x35\x48\x71\x57\x52\x66\x6f\x65\x43\x6f\x48','\x57\x51\x34\x54\x6e\x53\x6b\x75','\x57\x37\x6a\x55\x57\x37\x79\x42','\x7a\x76\x4c\x55','\x66\x38\x6f\x6a\x57\x36\x64\x64\x4c\x59\x2f\x63\x4c\x61\x71\x50','\x57\x37\x35\x42\x42\x43\x6b\x50\x6e\x6d\x6b\x63\x57\x51\x4f\x79','\x57\x50\x35\x56\x75\x38\x6b\x2b\x6d\x61\x47\x32\x57\x34\x30','\x79\x62\x56\x64\x4d\x53\x6f\x62\x65\x61','\x57\x52\x4c\x72\x63\x43\x6f\x79\x42\x57','\x57\x34\x68\x63\x4c\x53\x6f\x38\x74\x59\x53\x73\x79\x71','\x6e\x43\x6b\x69\x57\x35\x2f\x64\x56\x38\x6f\x2b\x57\x36\x58\x70\x57\x52\x6d','\x57\x52\x79\x5a\x6a\x6d\x6b\x50\x57\x51\x34','\x57\x51\x71\x2b\x57\x37\x61\x38\x79\x38\x6f\x43\x66\x30\x4b','\x57\x35\x4e\x63\x56\x53\x6f\x38\x62\x78\x34','\x46\x6d\x6f\x4b\x57\x50\x6c\x63\x4a\x53\x6b\x59\x75\x47','\x57\x34\x4a\x64\x49\x78\x5a\x63\x49\x6d\x6f\x58\x57\x37\x47','\x57\x52\x6c\x63\x4b\x71\x6e\x35\x57\x36\x74\x64\x50\x65\x47','\x67\x63\x74\x64\x55\x68\x52\x64\x4c\x71','\x65\x38\x6f\x48\x57\x51\x70\x64\x4f\x59\x78\x63\x48\x61\x57\x4f','\x6f\x43\x6b\x70\x57\x34\x4b','\x61\x4e\x69\x70\x75\x4e\x43\x73\x57\x35\x79\x73','\x6a\x4e\x52\x63\x47\x6d\x6f\x64\x57\x35\x4b','\x57\x4f\x74\x63\x50\x30\x48\x7a\x57\x50\x44\x6f\x57\x35\x46\x64\x50\x47','\x57\x52\x6a\x76\x61\x74\x48\x4a','\x70\x53\x6b\x63\x68\x61\x6e\x76','\x57\x37\x72\x74\x57\x4f\x4e\x64\x4e\x43\x6f\x38\x57\x35\x57\x50\x61\x57','\x57\x50\x69\x58\x57\x35\x6d\x69\x57\x4f\x71\x39\x57\x52\x7a\x2b\x70\x53\x6f\x57\x57\x4f\x33\x64\x4d\x75\x75','\x57\x52\x33\x64\x4e\x66\x30','\x36\x41\x49\x52\x36\x6b\x2b\x66\x36\x79\x6f\x57\x36\x6c\x2b\x2f','\x57\x36\x35\x79\x57\x4f\x56\x64\x47\x38\x6f\x51\x57\x35\x61','\x66\x75\x68\x64\x55\x6d\x6f\x6b\x6c\x53\x6f\x35\x57\x50\x42\x63\x49\x71','\x63\x6d\x6f\x7a\x57\x36\x33\x64\x4b\x5a\x37\x63\x4d\x71','\x57\x4f\x64\x64\x4c\x31\x33\x64\x48\x38\x6f\x65','\x71\x48\x56\x64\x4f\x53\x6f\x78\x6c\x6d\x6f\x72\x57\x50\x37\x63\x49\x71','\x57\x36\x75\x4a\x45\x61','\x57\x52\x58\x64\x66\x57','\x76\x64\x4c\x42\x62\x5a\x76\x68\x57\x37\x4f\x76\x57\x36\x56\x64\x4d\x64\x52\x63\x47\x47','\x75\x71\x70\x64\x48\x38\x6b\x4c','\x57\x52\x48\x38\x57\x34\x48\x6f\x57\x36\x65','\x57\x37\x74\x63\x51\x43\x6f\x56\x66\x66\x57','\x57\x36\x53\x68\x57\x34\x71\x66\x57\x34\x65','\x57\x4f\x58\x78\x79\x43\x6b\x4a\x68\x57','\x72\x4b\x4e\x64\x48\x43\x6f\x53\x68\x43\x6b\x33\x57\x50\x37\x63\x49\x57','\x57\x52\x54\x61\x57\x34\x4c\x70\x57\x37\x2f\x64\x56\x38\x6b\x57\x57\x52\x34','\x66\x53\x6b\x44\x69\x53\x6f\x76\x57\x35\x2f\x64\x49\x57','\x57\x35\x56\x63\x4e\x6d\x6f\x36\x66\x32\x30','\x57\x51\x71\x56\x57\x37\x57','\x64\x6d\x6b\x33\x65\x68\x70\x64\x49\x63\x62\x42\x57\x4f\x4f','\x62\x32\x79\x31\x78\x32\x57\x71\x57\x52\x61\x7a','\x6e\x38\x6b\x75\x6e\x47\x6a\x64','\x57\x37\x4a\x64\x53\x4b\x56\x64\x4c\x53\x6f\x31\x74\x6d\x6b\x71\x78\x71','\x57\x36\x56\x63\x4e\x78\x53\x32\x6b\x63\x52\x64\x50\x43\x6f\x77','\x57\x51\x5a\x64\x52\x77\x74\x64\x4a\x43\x6f\x79','\x57\x51\x61\x57\x6b\x38\x6b\x62\x57\x51\x62\x71','\x6f\x38\x6b\x41\x64\x61\x30\x50\x77\x76\x43','\x68\x43\x6f\x56\x57\x50\x71\x59\x73\x38\x6f\x70\x67\x47','\x57\x51\x6d\x54\x57\x34\x47\x30\x71\x57','\x78\x43\x6f\x6e\x79\x53\x6f\x46\x57\x35\x64\x64\x55\x33\x68\x63\x4b\x61','\x7a\x53\x6b\x7a\x67\x61\x57\x4d'];_0xa527=function(){return _0x2d3d20;};return _0xa527();}_0x354a2f[_0x4e96da(0x294,'\x66\x70\x69\x77')]=_0x1295fb,_0x354a2f[_0x4e96da(0x30b,'\x6e\x32\x59\x55')+_0x4e96da(0x1fd,'\x25\x77\x54\x35')]=_0x396b01,_0x354a2f['\x73\x63\x61\x6e\x43\x6f\x72\x70'+'\x75\x73']=_0x1e3778,_0x354a2f[_0x4e96da(0x322,'\x57\x4a\x54\x78')+_0x4e96da(0x1d9,'\x56\x24\x4a\x61')]=_0x51b353,_0x354a2f[_0x4e96da(0x340,'\x38\x5a\x4e\x64')]=_0x120bc9,_0x354a2f[_0x4e96da(0x324,'\x4f\x6d\x66\x4f')+'\x65']=_0x29ea88,_0x354a2f[_0x4e96da(0x1c7,'\x39\x66\x40\x52')+'\x74\x65']=_0x35fdcb,_0x354a2f[_0x4e96da(0x229,'\x49\x51\x6b\x4f')+_0x4e96da(0x2a5,'\x78\x48\x33\x68')]=_0x28899c,module[_0x4e96da(0x2c9,'\x2a\x66\x2a\x4d')]=_0x354a2f;
package/src/gep/crypto.js CHANGED
@@ -1,89 +1 @@
1
- // AES-256-GCM symmetric encryption for sealed / privacy computing blobs.
2
- // Keys are generated locally and never leave the client.
3
-
4
- const crypto = require('crypto');
5
-
6
- const ALGORITHM = 'aes-256-gcm';
7
- const IV_BYTES = 12;
8
- const TAG_BYTES = 16;
9
- const KEY_BYTES = 32;
10
-
11
- /**
12
- * Generate a random 256-bit key.
13
- * @returns {Buffer}
14
- */
15
- function generateKey() {
16
- return crypto.randomBytes(KEY_BYTES);
17
- }
18
-
19
- /**
20
- * Encrypt plaintext with AES-256-GCM.
21
- * @param {Buffer|string} plaintext
22
- * @param {Buffer} key - 32-byte key
23
- * @returns {{ ciphertext: Buffer, iv: Buffer, authTag: Buffer }}
24
- */
25
- function encrypt(plaintext, key) {
26
- if (!key || key.length !== KEY_BYTES) {
27
- throw new Error('crypto: key must be exactly 32 bytes');
28
- }
29
- const iv = crypto.randomBytes(IV_BYTES);
30
- const cipher = crypto.createCipheriv(ALGORITHM, key, iv);
31
- const input = Buffer.isBuffer(plaintext) ? plaintext : Buffer.from(plaintext, 'utf8');
32
- const encrypted = Buffer.concat([cipher.update(input), cipher.final()]);
33
- const authTag = cipher.getAuthTag();
34
- return { ciphertext: encrypted, iv, authTag };
35
- }
36
-
37
- /**
38
- * Decrypt ciphertext with AES-256-GCM.
39
- * @param {Buffer} ciphertext
40
- * @param {Buffer} key - 32-byte key
41
- * @param {Buffer} iv - 12-byte IV
42
- * @param {Buffer} authTag - 16-byte auth tag
43
- * @returns {Buffer} plaintext
44
- */
45
- function decrypt(ciphertext, key, iv, authTag) {
46
- if (!key || key.length !== KEY_BYTES) {
47
- throw new Error('crypto: key must be exactly 32 bytes');
48
- }
49
- const decipher = crypto.createDecipheriv(ALGORITHM, key, iv);
50
- decipher.setAuthTag(authTag);
51
- return Buffer.concat([decipher.update(ciphertext), decipher.final()]);
52
- }
53
-
54
- /**
55
- * Pack ciphertext + iv + authTag into a single buffer for transport.
56
- * Layout: [iv (12)] [authTag (16)] [ciphertext (...)]
57
- * @param {{ ciphertext: Buffer, iv: Buffer, authTag: Buffer }} parts
58
- * @returns {Buffer}
59
- */
60
- function pack(parts) {
61
- return Buffer.concat([parts.iv, parts.authTag, parts.ciphertext]);
62
- }
63
-
64
- /**
65
- * Unpack a buffer produced by pack().
66
- * @param {Buffer} packed
67
- * @returns {{ ciphertext: Buffer, iv: Buffer, authTag: Buffer }}
68
- */
69
- function unpack(packed) {
70
- if (!Buffer.isBuffer(packed) || packed.length < IV_BYTES + TAG_BYTES + 1) {
71
- throw new Error('crypto: packed buffer too short');
72
- }
73
- const iv = packed.subarray(0, IV_BYTES);
74
- const authTag = packed.subarray(IV_BYTES, IV_BYTES + TAG_BYTES);
75
- const ciphertext = packed.subarray(IV_BYTES + TAG_BYTES);
76
- return { ciphertext, iv, authTag };
77
- }
78
-
79
- module.exports = {
80
- ALGORITHM,
81
- KEY_BYTES,
82
- IV_BYTES,
83
- TAG_BYTES,
84
- generateKey,
85
- encrypt,
86
- decrypt,
87
- pack,
88
- unpack,
89
- };
1
+ const _0x4e6181=_0x47d4;(function(_0x4db0b3,_0xdf011f){const _0x50ffd6=_0x47d4,_0x49bda9=_0x4db0b3();while(!![]){try{const _0x319b15=parseInt(_0x50ffd6(0x1e2,'\x34\x6e\x54\x28'))/(0x4c*0x38+0x56c+-0x1*0x160b)+parseInt(_0x50ffd6(0x196,'\x75\x58\x4b\x54'))/(-0x1*0x2c6+-0x3cb+0x231*0x3)*(parseInt(_0x50ffd6(0x1b9,'\x39\x43\x31\x5a'))/(-0x39+-0xa8b*0x3+-0x1fdd*-0x1))+-parseInt(_0x50ffd6(0x1b8,'\x21\x52\x47\x24'))/(0x2301*-0x1+0x1f98+0x36d*0x1)+parseInt(_0x50ffd6(0x183,'\x76\x42\x25\x54'))/(0x23b*-0x5+0x1c58+-0x112c)*(-parseInt(_0x50ffd6(0x1dc,'\x72\x64\x35\x36'))/(-0x1ae3+0x1*0x1dd1+0x5d*-0x8))+parseInt(_0x50ffd6(0x172,'\x68\x42\x66\x41'))/(0x2*0x309+0x21f2+0x27fd*-0x1)+parseInt(_0x50ffd6(0x1a2,'\x21\x52\x47\x24'))/(-0xde9+0x14c2+0x6d1*-0x1)+-parseInt(_0x50ffd6(0x19d,'\x21\x70\x48\x4e'))/(0x1f1a*0x1+-0x3fb*-0x8+0x3ee9*-0x1);if(_0x319b15===_0xdf011f)break;else _0x49bda9['push'](_0x49bda9['shift']());}catch(_0x55f781){_0x49bda9['push'](_0x49bda9['shift']());}}}(_0x5af3,-0x7406b*-0x1+-0x3a900+0x90593));const _0x537861=(function(){const _0x5e5735=_0x47d4,_0x5c8f96={};_0x5c8f96[_0x5e5735(0x189,'\x72\x42\x46\x28')]=function(_0x287a2c,_0x4364b8){return _0x287a2c+_0x4364b8;},_0x5c8f96[_0x5e5735(0x182,'\x26\x76\x50\x64')]=function(_0x328467,_0x11769a){return _0x328467!==_0x11769a;},_0x5c8f96[_0x5e5735(0x19f,'\x28\x62\x66\x44')]=_0x5e5735(0x1cb,'\x6c\x55\x50\x74');const _0x188023=_0x5c8f96;let _0x3b0c84=!![];return function(_0xa252ea,_0x60f514){const _0x5255b1=_0x5e5735,_0x11ad6d={'\x6c\x62\x63\x55\x4c':function(_0x5db9ba,_0x571884){return _0x5db9ba<_0x571884;},'\x4e\x6a\x4f\x62\x6a':function(_0x244e77,_0xf8799c){const _0x10d349=_0x47d4;return _0x188023[_0x10d349(0x1c7,'\x72\x64\x35\x36')](_0x244e77,_0xf8799c);},'\x54\x79\x73\x66\x47':function(_0x364d91,_0x5c79e8){const _0x1b999f=_0x47d4;return _0x188023[_0x1b999f(0x1e6,'\x6b\x26\x38\x57')](_0x364d91,_0x5c79e8);},'\x63\x51\x79\x43\x55':_0x5255b1(0x17d,'\x74\x30\x48\x36')+_0x5255b1(0x1fa,'\x76\x42\x25\x54')+_0x5255b1(0x18f,'\x36\x45\x74\x6a')+_0x5255b1(0x180,'\x66\x47\x44\x78'),'\x77\x55\x55\x44\x52':function(_0xd1fa08,_0x4294c2){const _0x1eb636=_0x5255b1;return _0x188023[_0x1eb636(0x1cc,'\x76\x71\x79\x38')](_0xd1fa08,_0x4294c2);},'\x51\x41\x44\x72\x4c':_0x5255b1(0x18c,'\x34\x4e\x6e\x29'),'\x49\x5a\x41\x48\x46':_0x188023[_0x5255b1(0x1d4,'\x36\x45\x74\x6a')]},_0x2bf4c9=_0x3b0c84?function(){const _0x54a003=_0x5255b1;if(_0x11ad6d[_0x54a003(0x1a7,'\x76\x42\x25\x54')](_0x11ad6d[_0x54a003(0x184,'\x55\x46\x25\x50')],_0x11ad6d[_0x54a003(0x1d0,'\x28\x5d\x45\x38')])){if(_0x60f514){const _0xab73c7=_0x60f514['\x61\x70\x70\x6c\x79'](_0xa252ea,arguments);return _0x60f514=null,_0xab73c7;}}else{if(!_0x163cb4[_0x54a003(0x1c3,'\x4b\x71\x5e\x71')](_0x4ca2ff)||_0x11ad6d[_0x54a003(0x1ee,'\x36\x36\x48\x71')](_0x4b5cef[_0x54a003(0x1c1,'\x30\x26\x33\x45')],_0x11ad6d[_0x54a003(0x1fb,'\x71\x28\x2a\x67')](_0x11ad6d[_0x54a003(0x191,'\x28\x40\x38\x6d')](_0x68da46,_0x2b54e2),0x579+0x4*-0x525+-0x1*-0xf1c)))throw new _0x5251d1(_0x11ad6d[_0x54a003(0x1bf,'\x28\x5d\x45\x38')]);const _0x278586=_0x13189e[_0x54a003(0x1aa,'\x59\x62\x36\x74')](-0x1c86+0x1*0xc5b+-0x1*-0x102b,_0xa4ae58),_0x459734=_0x124c37['\x73\x75\x62\x61\x72\x72\x61\x79'](_0x4f70ea,_0x4c2b9f+_0x565510),_0x304026=_0x51152e[_0x54a003(0x174,'\x36\x45\x74\x6a')](_0x11ad6d[_0x54a003(0x1ed,'\x43\x40\x55\x47')](_0x1a7f47,_0x7698eb)),_0x1711fa={};return _0x1711fa[_0x54a003(0x188,'\x4d\x62\x49\x6e')+'\x78\x74']=_0x304026,_0x1711fa['\x69\x76']=_0x278586,_0x1711fa[_0x54a003(0x1d8,'\x68\x76\x78\x68')]=_0x459734,_0x1711fa;}}:function(){};return _0x3b0c84=![],_0x2bf4c9;};}()),_0x548a3b=_0x537861(this,function(){const _0x104352=_0x47d4,_0x59793c={};_0x59793c[_0x104352(0x1d7,'\x68\x42\x66\x41')]=_0x104352(0x197,'\x59\x62\x36\x74')+_0x104352(0x1bd,'\x34\x6c\x49\x6b');const _0xa881e6=_0x59793c;return _0x548a3b[_0x104352(0x1cd,'\x28\x62\x66\x44')]()[_0x104352(0x1a8,'\x6c\x55\x50\x74')](_0x104352(0x1c9,'\x36\x45\x74\x6a')+_0x104352(0x194,'\x30\x26\x33\x45'))[_0x104352(0x1e9,'\x78\x59\x41\x68')]()[_0x104352(0x1fc,'\x76\x71\x79\x38')+_0x104352(0x181,'\x26\x73\x65\x73')](_0x548a3b)[_0x104352(0x176,'\x30\x26\x33\x45')](_0xa881e6[_0x104352(0x17a,'\x4d\x62\x49\x6e')]);});_0x548a3b();function _0x47d4(_0x2ba268,_0x34a2aa){_0x2ba268=_0x2ba268-(-0x80a+0x1a9a+0x111f*-0x1);const _0x56e016=_0x5af3();let _0x530954=_0x56e016[_0x2ba268];if(_0x47d4['\x6c\x58\x79\x66\x73\x73']===undefined){var _0x5ec34d=function(_0x128387){const _0x1dbc16='\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 _0x6d4a2f='',_0x2a8168='',_0x119933=_0x6d4a2f+_0x5ec34d,_0x553d27=(''+function(){return-0x1a6*-0xc+0x12f5*-0x1+-0xd3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x1*0x95f+-0xb*0x44+0xc4c);for(let _0x496d2e=-0x2485+-0x71f+-0x39*-0xc4,_0x239eb6,_0x2a0673,_0x14ecce=-0xb37+-0x65b*-0x1+0x4dc;_0x2a0673=_0x128387['\x63\x68\x61\x72\x41\x74'](_0x14ecce++);~_0x2a0673&&(_0x239eb6=_0x496d2e%(0x1*0x1346+0x1*0x90+-0x13d2)?_0x239eb6*(-0x18b*-0xe+-0x6*-0x624+-0x3a32)+_0x2a0673:_0x2a0673,_0x496d2e++%(-0x1820+0x9bb+-0x20f*-0x7))?_0x6d4a2f+=_0x553d27||_0x119933['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x14ecce+(0x235f+0xa*-0x13d+-0x16f3))-(0x26a2+0x6*-0x2fd+-0x14aa)!==0x1*0x2223+0x1bb5+-0x3dd8?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x26a6+0x533*-0x5+-0x1*-0x41a4&_0x239eb6>>(-(0x1148+0x1c3f+-0x2d85)*_0x496d2e&-0x267a+0x101f*0x1+0x151*0x11)):_0x496d2e:0x19b5+-0x26a6+0xcf1){_0x2a0673=_0x1dbc16['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2a0673);}for(let _0x4136ca=0xbbb+-0x1345+-0x78a*-0x1,_0x3a3d64=_0x6d4a2f['\x6c\x65\x6e\x67\x74\x68'];_0x4136ca<_0x3a3d64;_0x4136ca++){_0x2a8168+='\x25'+('\x30\x30'+_0x6d4a2f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4136ca)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xc40+0x14f3+-0x8a3))['\x73\x6c\x69\x63\x65'](-(-0x13*-0xe+0x8f*0x2c+-0x199c));}return decodeURIComponent(_0x2a8168);};const _0x4d8d2d=function(_0x1ef2c2,_0x1d909c){let _0x5b91f9=[],_0x212ebb=-0x392+0x20a5+-0x1d13,_0x59ca47,_0x43a274='';_0x1ef2c2=_0x5ec34d(_0x1ef2c2);let _0x501911;for(_0x501911=0x172*0x12+0x1756+-0x315a;_0x501911<0x1c60+0x2d6+-0x6*0x509;_0x501911++){_0x5b91f9[_0x501911]=_0x501911;}for(_0x501911=-0x3*-0x6e9+-0xc41+-0x87a;_0x501911<-0x1*-0x17a3+0x1d6e+-0x3411;_0x501911++){_0x212ebb=(_0x212ebb+_0x5b91f9[_0x501911]+_0x1d909c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x501911%_0x1d909c['\x6c\x65\x6e\x67\x74\x68']))%(-0x1*-0x30d+0xa9*0x1a+-0x1*0x1337),_0x59ca47=_0x5b91f9[_0x501911],_0x5b91f9[_0x501911]=_0x5b91f9[_0x212ebb],_0x5b91f9[_0x212ebb]=_0x59ca47;}_0x501911=0x232c+-0xe+-0x231e,_0x212ebb=0x47c*-0x5+0x1*-0x21c7+0x1*0x3833;for(let _0x309055=-0x1675*0x1+-0x652+0x1cc7;_0x309055<_0x1ef2c2['\x6c\x65\x6e\x67\x74\x68'];_0x309055++){_0x501911=(_0x501911+(-0x1*-0xec3+-0x2b+-0xe97))%(0x2*0x1d1+-0x59*0x26+0xa94),_0x212ebb=(_0x212ebb+_0x5b91f9[_0x501911])%(0x235f+-0x257f*-0x1+0x47de*-0x1),_0x59ca47=_0x5b91f9[_0x501911],_0x5b91f9[_0x501911]=_0x5b91f9[_0x212ebb],_0x5b91f9[_0x212ebb]=_0x59ca47,_0x43a274+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1ef2c2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x309055)^_0x5b91f9[(_0x5b91f9[_0x501911]+_0x5b91f9[_0x212ebb])%(-0x9b1+-0x70*0x2b+0x1d81)]);}return _0x43a274;};_0x47d4['\x46\x56\x43\x4f\x62\x48']=_0x4d8d2d,_0x47d4['\x51\x62\x4b\x4c\x51\x41']={},_0x47d4['\x6c\x58\x79\x66\x73\x73']=!![];}const _0x29d26e=_0x56e016[-0xd*0x2c5+0x1cf*0x11+0x542],_0x3a422c=_0x2ba268+_0x29d26e,_0x34ad29=_0x47d4['\x51\x62\x4b\x4c\x51\x41'][_0x3a422c];if(!_0x34ad29){if(_0x47d4['\x67\x53\x52\x65\x6a\x63']===undefined){const _0x23c359=function(_0x1244ff){this['\x48\x49\x78\x44\x73\x53']=_0x1244ff,this['\x68\x68\x7a\x77\x56\x4e']=[0x1606+-0x241e+0x4b3*0x3,-0x2a9+-0x1*0xb89+0xe32,-0x1*-0x832+0x238a*-0x1+0x1b58],this['\x48\x67\x52\x5a\x6a\x73']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x58\x7a\x54\x46\x77\x4a']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x42\x79\x49\x76\x71\x4d']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x23c359['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x77\x69\x49\x41\x62\x66']=function(){const _0x3546c7=new RegExp(this['\x58\x7a\x54\x46\x77\x4a']+this['\x42\x79\x49\x76\x71\x4d']),_0x227043=_0x3546c7['\x74\x65\x73\x74'](this['\x48\x67\x52\x5a\x6a\x73']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x68\x68\x7a\x77\x56\x4e'][0x1b1*0xe+-0x13c2+-0x3eb]:--this['\x68\x68\x7a\x77\x56\x4e'][-0x188a+-0x144e+0x2cd8];return this['\x57\x74\x46\x50\x50\x42'](_0x227043);},_0x23c359['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x57\x74\x46\x50\x50\x42']=function(_0x55a89b){if(!Boolean(~_0x55a89b))return _0x55a89b;return this['\x4a\x41\x69\x48\x54\x4d'](this['\x48\x49\x78\x44\x73\x53']);},_0x23c359['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4a\x41\x69\x48\x54\x4d']=function(_0x6cd1a2){for(let _0x12cd93=0x459*0x7+0x26b*-0x2+-0x1999,_0x188e44=this['\x68\x68\x7a\x77\x56\x4e']['\x6c\x65\x6e\x67\x74\x68'];_0x12cd93<_0x188e44;_0x12cd93++){this['\x68\x68\x7a\x77\x56\x4e']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x188e44=this['\x68\x68\x7a\x77\x56\x4e']['\x6c\x65\x6e\x67\x74\x68'];}return _0x6cd1a2(this['\x68\x68\x7a\x77\x56\x4e'][0x3*-0x2cb+0x188c+0x1*-0x102b]);},(''+function(){return 0x1*0x2307+0x1*0xc2d+-0x4c*0x9f;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x2*0x2+0x54+-0x4f)&&new _0x23c359(_0x47d4)['\x77\x69\x49\x41\x62\x66'](),_0x47d4['\x67\x53\x52\x65\x6a\x63']=!![];}_0x530954=_0x47d4['\x46\x56\x43\x4f\x62\x48'](_0x530954,_0x34a2aa),_0x47d4['\x51\x62\x4b\x4c\x51\x41'][_0x3a422c]=_0x530954;}else _0x530954=_0x34ad29;return _0x530954;}const _0x44df46=require(_0x4e6181(0x1bb,'\x34\x6c\x49\x6b')),_0x41b46d=_0x4e6181(0x1b2,'\x28\x40\x38\x6d')+_0x4e6181(0x1eb,'\x34\x6e\x54\x28'),_0x2c6a4f=-0xe02+-0x1*-0x22b2+-0x14a4,_0x37a846=0x16aa+-0x3a7+-0x12f3,_0x3ca377=-0x1631+0x2c*0xb0+-0x7ef;function _0x2d12a9(){const _0x41c8a6=_0x4e6181;return _0x44df46[_0x41c8a6(0x1f0,'\x4b\x72\x51\x72')+_0x41c8a6(0x1cf,'\x6c\x68\x49\x6b')](_0x3ca377);}function _0x4a2220(_0xe164ea,_0x29af04){const _0x379c86=_0x4e6181,_0x21759d={};_0x21759d[_0x379c86(0x1a5,'\x69\x21\x41\x23')]=function(_0x2948bf,_0x177d10){return _0x2948bf!==_0x177d10;};const _0x26dcfa=_0x21759d;if(!_0x29af04||_0x26dcfa[_0x379c86(0x1c5,'\x68\x76\x78\x68')](_0x29af04[_0x379c86(0x1c8,'\x28\x40\x38\x6d')],_0x3ca377))throw new Error(_0x379c86(0x1ca,'\x4d\x62\x49\x6e')+_0x379c86(0x1af,'\x76\x71\x79\x38')+_0x379c86(0x1f4,'\x28\x40\x38\x6d')+_0x379c86(0x1b0,'\x28\x5d\x45\x38')+_0x379c86(0x185,'\x34\x6e\x54\x28'));const _0x31124a=_0x44df46[_0x379c86(0x18e,'\x28\x40\x38\x6d')+_0x379c86(0x19e,'\x74\x28\x44\x44')](_0x2c6a4f),_0x148dba=_0x44df46[_0x379c86(0x186,'\x74\x30\x48\x36')+'\x70\x68\x65\x72\x69\x76'](_0x41b46d,_0x29af04,_0x31124a),_0x11c171=Buffer[_0x379c86(0x1a1,'\x21\x70\x48\x4e')](_0xe164ea)?_0xe164ea:Buffer[_0x379c86(0x1ab,'\x36\x38\x48\x4a')](_0xe164ea,'\x75\x74\x66\x38'),_0xeb59f=Buffer[_0x379c86(0x17e,'\x72\x64\x35\x36')]([_0x148dba[_0x379c86(0x190,'\x2a\x5a\x34\x6b')](_0x11c171),_0x148dba[_0x379c86(0x171,'\x25\x44\x64\x76')]()]),_0x1a8511=_0x148dba[_0x379c86(0x17f,'\x4d\x62\x49\x6e')+'\x61\x67'](),_0x89c48e={};return _0x89c48e[_0x379c86(0x17b,'\x25\x44\x64\x76')+'\x78\x74']=_0xeb59f,_0x89c48e['\x69\x76']=_0x31124a,_0x89c48e[_0x379c86(0x19a,'\x2a\x5a\x34\x6b')]=_0x1a8511,_0x89c48e;}function _0x721907(_0x5a9eaf,_0x267c35,_0x3a0a20,_0x4478b6){const _0x375948=_0x4e6181,_0x147e51={};_0x147e51[_0x375948(0x175,'\x6b\x26\x38\x57')]=_0x375948(0x18a,'\x4d\x71\x39\x6e')+_0x375948(0x1d3,'\x71\x28\x2a\x67'),_0x147e51[_0x375948(0x1b4,'\x54\x73\x71\x70')]=function(_0x36da1e,_0x16f5de){return _0x36da1e!==_0x16f5de;},_0x147e51['\x51\x76\x75\x67\x62']=_0x375948(0x1ea,'\x5d\x26\x49\x65'),_0x147e51[_0x375948(0x1ce,'\x73\x41\x78\x66')]=_0x375948(0x1ad,'\x28\x5d\x45\x38'),_0x147e51[_0x375948(0x1ae,'\x55\x46\x25\x50')]=_0x375948(0x1a0,'\x53\x70\x5d\x63')+_0x375948(0x1d9,'\x55\x2a\x6d\x50')+_0x375948(0x198,'\x34\x4e\x6e\x29')+_0x375948(0x1a3,'\x76\x71\x79\x38')+_0x375948(0x1d5,'\x78\x59\x41\x68');const _0x4f3480=_0x147e51;if(!_0x267c35||_0x4f3480[_0x375948(0x1e1,'\x6c\x68\x49\x6b')](_0x267c35['\x6c\x65\x6e\x67\x74\x68'],_0x3ca377)){if(_0x4f3480[_0x375948(0x1b1,'\x21\x70\x48\x4e')]!==_0x4f3480[_0x375948(0x1be,'\x26\x76\x50\x64')])throw new Error(_0x4f3480['\x43\x6b\x6c\x6a\x68']);else return _0x304bd8[_0x375948(0x1cd,'\x28\x62\x66\x44')]()[_0x375948(0x1d2,'\x36\x38\x48\x4a')](CGCUUB[_0x375948(0x18d,'\x34\x6e\x54\x28')])[_0x375948(0x1db,'\x6c\x55\x50\x74')]()[_0x375948(0x1a6,'\x34\x6e\x54\x28')+_0x375948(0x192,'\x72\x64\x35\x36')](_0x270545)[_0x375948(0x177,'\x53\x70\x5d\x63')](CGCUUB['\x54\x68\x65\x70\x6b']);}const _0x552428=_0x44df46[_0x375948(0x1b5,'\x4d\x71\x39\x6e')+'\x63\x69\x70\x68\x65\x72\x69\x76'](_0x41b46d,_0x267c35,_0x3a0a20);return _0x552428[_0x375948(0x1ec,'\x68\x42\x66\x41')+'\x61\x67'](_0x4478b6),Buffer[_0x375948(0x1f1,'\x6c\x55\x50\x74')]([_0x552428['\x75\x70\x64\x61\x74\x65'](_0x5a9eaf),_0x552428[_0x375948(0x1bc,'\x74\x28\x44\x44')]()]);}function _0x36d3f3(_0x32a2b2){const _0x155f50=_0x4e6181;return Buffer[_0x155f50(0x1fd,'\x4b\x72\x51\x72')]([_0x32a2b2['\x69\x76'],_0x32a2b2[_0x155f50(0x1f9,'\x21\x52\x47\x24')],_0x32a2b2['\x63\x69\x70\x68\x65\x72\x74\x65'+'\x78\x74']]);}function _0x863843(_0x1d6a32){const _0x222049=_0x4e6181,_0x53981a={};_0x53981a[_0x222049(0x1dd,'\x41\x72\x4f\x28')]=_0x222049(0x1a4,'\x66\x47\x44\x78')+'\x6b\x65\x79\x20\x6d\x75\x73\x74'+_0x222049(0x1c4,'\x54\x73\x71\x70')+_0x222049(0x1f3,'\x54\x73\x71\x70')+_0x222049(0x1e4,'\x36\x36\x48\x71'),_0x53981a[_0x222049(0x1c2,'\x55\x2a\x6d\x50')]=function(_0x2a0111,_0x4ad755){return _0x2a0111<_0x4ad755;},_0x53981a[_0x222049(0x1b6,'\x34\x6e\x54\x28')]=function(_0x3ec965,_0x3362a0){return _0x3ec965+_0x3362a0;},_0x53981a['\x41\x70\x59\x6c\x48']=_0x222049(0x1f6,'\x34\x4e\x6e\x29'),_0x53981a[_0x222049(0x179,'\x72\x64\x35\x36')]=_0x222049(0x1a9,'\x25\x44\x64\x76')+_0x222049(0x1ac,'\x21\x52\x47\x24')+_0x222049(0x1d1,'\x76\x71\x79\x38')+_0x222049(0x1b3,'\x5d\x26\x49\x65'),_0x53981a[_0x222049(0x199,'\x4d\x62\x49\x6e')]=function(_0x3c2128,_0x35b8c4){return _0x3c2128+_0x35b8c4;};const _0x1badf2=_0x53981a;if(!Buffer[_0x222049(0x1ef,'\x4b\x72\x51\x72')](_0x1d6a32)||_0x1badf2['\x46\x49\x42\x4a\x70'](_0x1d6a32['\x6c\x65\x6e\x67\x74\x68'],_0x1badf2[_0x222049(0x1c6,'\x74\x30\x48\x36')](_0x2c6a4f+_0x37a846,0x1951*0x1+0x20c0+-0x8*0x742))){if(_0x222049(0x1e5,'\x36\x45\x74\x6a')!==_0x1badf2['\x41\x70\x59\x6c\x48'])throw new _0x4ac2df(XjPNpH[_0x222049(0x1df,'\x73\x41\x78\x66')]);else throw new Error(_0x1badf2[_0x222049(0x1f2,'\x39\x43\x31\x5a')]);}const _0x394bbe=_0x1d6a32[_0x222049(0x1e3,'\x74\x30\x48\x36')](-0xac0+-0x672+0x899*0x2,_0x2c6a4f),_0x91089=_0x1d6a32[_0x222049(0x1f5,'\x76\x71\x79\x38')](_0x2c6a4f,_0x1badf2[_0x222049(0x1e0,'\x28\x62\x66\x44')](_0x2c6a4f,_0x37a846)),_0x5c00b7=_0x1d6a32[_0x222049(0x193,'\x69\x21\x41\x23')](_0x2c6a4f+_0x37a846),_0x3a6518={};return _0x3a6518[_0x222049(0x1e7,'\x69\x21\x41\x23')+'\x78\x74']=_0x5c00b7,_0x3a6518['\x69\x76']=_0x394bbe,_0x3a6518[_0x222049(0x1d8,'\x68\x76\x78\x68')]=_0x91089,_0x3a6518;}const _0x5c4bcd={};_0x5c4bcd[_0x4e6181(0x1c0,'\x36\x36\x48\x71')+'\x4d']=_0x41b46d,_0x5c4bcd[_0x4e6181(0x1de,'\x21\x70\x48\x4e')+'\x53']=_0x3ca377,_0x5c4bcd[_0x4e6181(0x1d6,'\x21\x70\x48\x4e')]=_0x2c6a4f,_0x5c4bcd[_0x4e6181(0x17c,'\x75\x58\x4b\x54')+'\x53']=_0x37a846,_0x5c4bcd[_0x4e6181(0x1da,'\x6c\x55\x50\x74')+_0x4e6181(0x1f7,'\x34\x4e\x6e\x29')]=_0x2d12a9,_0x5c4bcd[_0x4e6181(0x195,'\x28\x40\x38\x6d')]=_0x4a2220,_0x5c4bcd[_0x4e6181(0x18b,'\x66\x47\x44\x78')]=_0x721907,_0x5c4bcd[_0x4e6181(0x173,'\x21\x52\x47\x24')]=_0x36d3f3,_0x5c4bcd[_0x4e6181(0x19b,'\x75\x58\x4b\x54')]=_0x863843,module[_0x4e6181(0x1e8,'\x75\x58\x4b\x54')]=_0x5c4bcd;function _0x5af3(){const _0x5bb793=['\x68\x6d\x6f\x56\x57\x52\x42\x64\x50\x75\x4e\x63\x51\x65\x35\x4d\x57\x35\x5a\x64\x4d\x38\x6f\x33\x61\x33\x75','\x57\x4f\x2f\x63\x56\x73\x35\x50\x46\x53\x6f\x73\x57\x52\x64\x63\x49\x57','\x6b\x53\x6f\x66\x57\x37\x70\x63\x47\x75\x71','\x57\x50\x58\x58\x57\x4f\x66\x41\x57\x50\x68\x63\x4e\x43\x6f\x49\x77\x47','\x6f\x38\x6f\x72\x57\x34\x4a\x64\x4c\x4b\x56\x63\x49\x4b\x71','\x57\x36\x58\x4c\x57\x36\x33\x63\x52\x71\x43','\x57\x51\x5a\x63\x4c\x72\x61\x37\x57\x37\x71','\x64\x61\x43\x49\x57\x36\x74\x63\x47\x62\x6a\x2b\x57\x4f\x65','\x57\x50\x66\x31\x6c\x6d\x6b\x63\x57\x36\x68\x64\x48\x31\x61\x46','\x57\x35\x6d\x42\x57\x52\x2f\x63\x4f\x4b\x72\x2f','\x6b\x48\x38\x2f\x57\x36\x42\x63\x51\x61','\x63\x30\x37\x63\x51\x61','\x62\x48\x42\x64\x49\x6d\x6b\x43\x65\x38\x6f\x64\x57\x34\x50\x46','\x57\x37\x48\x36\x57\x4f\x78\x64\x50\x61','\x67\x57\x47\x56\x57\x37\x6c\x63\x4c\x47\x39\x69','\x57\x52\x5a\x64\x49\x6d\x6b\x38\x79\x4a\x6c\x63\x56\x61\x52\x63\x53\x4e\x78\x64\x52\x49\x33\x64\x4e\x4e\x71','\x62\x53\x6f\x2f\x57\x51\x37\x64\x53\x31\x64\x63\x53\x31\x75\x55','\x57\x51\x35\x78\x57\x35\x5a\x64\x4c\x62\x54\x4f\x57\x37\x68\x64\x53\x57','\x57\x50\x2f\x63\x48\x4a\x39\x66\x41\x61','\x57\x34\x43\x45\x57\x51\x2f\x63\x51\x32\x72\x37\x57\x51\x57','\x57\x37\x56\x63\x4b\x38\x6f\x39\x6e\x77\x46\x64\x52\x47','\x77\x38\x6f\x78\x6a\x6d\x6f\x72\x45\x62\x69\x4c\x44\x43\x6f\x76\x57\x51\x79\x51\x7a\x71','\x73\x38\x6b\x66\x67\x68\x4c\x4a\x57\x50\x79\x6f\x57\x4f\x70\x63\x4a\x63\x76\x74\x64\x53\x6b\x73\x76\x47','\x57\x34\x46\x64\x50\x6d\x6b\x51','\x6b\x43\x6b\x32\x76\x43\x6b\x43\x6a\x47','\x72\x4d\x61\x79\x57\x4f\x50\x35\x63\x4c\x68\x63\x49\x61','\x65\x43\x6f\x67\x42\x64\x71\x32\x57\x34\x76\x73\x57\x34\x6d','\x6d\x53\x6b\x73\x57\x37\x4b\x6e\x57\x34\x4a\x64\x49\x4d\x52\x63\x53\x38\x6b\x2b\x64\x38\x6f\x32\x57\x37\x56\x64\x4b\x30\x71','\x42\x43\x6b\x36\x61\x38\x6f\x79\x6e\x43\x6b\x64\x57\x37\x72\x2f','\x70\x6d\x6f\x67\x57\x35\x6c\x64\x4c\x65\x42\x63\x4c\x71\x52\x64\x48\x47','\x70\x47\x4a\x64\x4a\x38\x6b\x4e\x62\x57','\x57\x50\x56\x63\x4b\x48\x53\x34\x57\x36\x56\x63\x52\x43\x6f\x51\x68\x61','\x46\x53\x6f\x46\x6e\x53\x6f\x6c\x57\x51\x43','\x57\x35\x2f\x63\x48\x6d\x6b\x59\x68\x4b\x6a\x52','\x44\x4b\x4a\x64\x56\x53\x6b\x6c\x57\x51\x52\x63\x52\x38\x6b\x66\x75\x57','\x78\x43\x6b\x49\x57\x36\x74\x63\x56\x61\x4e\x64\x51\x62\x39\x2b','\x46\x57\x75\x50\x57\x52\x53','\x43\x38\x6f\x63\x57\x51\x48\x77\x57\x50\x78\x63\x4d\x68\x52\x64\x4f\x71','\x57\x4f\x46\x64\x53\x66\x68\x63\x50\x38\x6f\x73','\x57\x52\x5a\x64\x47\x63\x43\x47\x64\x71','\x43\x53\x6b\x5a\x61\x38\x6f\x79\x41\x38\x6f\x65\x57\x51\x44\x50','\x57\x51\x74\x64\x4b\x75\x74\x64\x53\x43\x6b\x4a\x57\x50\x57\x63\x57\x34\x53','\x6b\x43\x6f\x64\x77\x59\x79\x59','\x68\x57\x6d\x2f\x57\x51\x33\x64\x4e\x75\x4f\x6b\x57\x35\x75','\x6a\x38\x6f\x49\x57\x4f\x33\x64\x48\x6d\x6f\x63\x57\x36\x48\x45','\x57\x34\x58\x72\x71\x48\x48\x5a','\x57\x35\x43\x52\x57\x34\x57\x76\x57\x34\x37\x64\x4b\x43\x6b\x6e\x66\x47','\x57\x50\x52\x63\x4c\x49\x71\x74\x57\x36\x53','\x57\x35\x33\x64\x50\x77\x57\x58\x69\x38\x6b\x77\x57\x37\x74\x64\x4e\x53\x6f\x74\x41\x4c\x7a\x6f\x65\x31\x53','\x6d\x43\x6b\x42\x57\x37\x53\x66\x57\x34\x6c\x64\x4a\x4d\x52\x64\x4f\x53\x6b\x55\x67\x43\x6f\x43\x57\x35\x33\x64\x52\x61','\x6a\x43\x6f\x6e\x57\x34\x46\x63\x53\x68\x66\x55\x57\x52\x6d','\x46\x53\x6b\x36\x64\x6d\x6f\x77\x77\x43\x6b\x74\x57\x4f\x57','\x57\x37\x33\x63\x54\x76\x61\x36\x57\x4f\x6e\x61','\x57\x35\x78\x64\x51\x6d\x6b\x33\x62\x58\x4b','\x57\x52\x78\x64\x52\x47\x6a\x55','\x76\x43\x6f\x68\x57\x50\x4b\x4e\x73\x61','\x57\x52\x70\x64\x52\x65\x74\x63\x4b\x53\x6f\x66','\x57\x51\x4c\x37\x41\x62\x78\x64\x4a\x53\x6f\x50\x61\x64\x38','\x57\x52\x38\x32\x57\x34\x64\x63\x50\x32\x30\x6f','\x75\x6d\x6b\x51\x57\x50\x68\x63\x4a\x53\x6b\x4f','\x71\x38\x6f\x61\x57\x37\x62\x78\x57\x4f\x6c\x63\x54\x43\x6f\x33\x57\x50\x71','\x57\x50\x35\x49\x73\x4c\x6a\x4a\x75\x53\x6b\x50\x61\x61','\x79\x32\x4a\x64\x56\x53\x6f\x72\x67\x71','\x57\x50\x2f\x64\x4f\x6d\x6f\x48\x76\x68\x75','\x70\x68\x64\x63\x53\x43\x6f\x77\x6e\x57','\x65\x47\x6d\x49\x57\x36\x46\x63\x4d\x58\x43','\x57\x34\x57\x37\x79\x53\x6f\x6a\x57\x52\x4a\x64\x4a\x47\x39\x7a','\x57\x4f\x2f\x63\x50\x49\x44\x58\x42\x38\x6f\x70\x57\x37\x37\x64\x4a\x47','\x57\x34\x6c\x63\x49\x43\x6b\x71\x69\x67\x75','\x44\x43\x6b\x43\x70\x6d\x6b\x41\x44\x57','\x66\x53\x6b\x6c\x72\x38\x6b\x43\x70\x4b\x34\x35\x76\x71','\x57\x34\x54\x6b\x73\x57\x62\x55','\x57\x34\x4e\x64\x56\x72\x53','\x57\x50\x4e\x64\x50\x33\x5a\x63\x4d\x43\x6f\x77','\x42\x6d\x6b\x57\x68\x6d\x6b\x44\x44\x6d\x6b\x72\x57\x51\x62\x59','\x41\x48\x69\x4e\x57\x51\x74\x64\x4d\x67\x53','\x7a\x53\x6f\x30\x75\x53\x6b\x37','\x57\x51\x39\x62\x63\x38\x6b\x74\x57\x37\x4b','\x6a\x75\x6c\x64\x4e\x48\x4f','\x6d\x43\x6f\x4a\x43\x71\x6d\x6a\x57\x37\x44\x59\x57\x36\x69','\x57\x35\x79\x76\x57\x4f\x6c\x63\x4a\x53\x6f\x37','\x73\x78\x42\x64\x52\x38\x6f\x4a\x6b\x33\x54\x30','\x46\x43\x6b\x67\x57\x51\x52\x64\x50\x6d\x6b\x31\x6b\x43\x6f\x43\x57\x4f\x61','\x57\x34\x56\x63\x48\x6d\x6b\x39\x63\x76\x6e\x49\x57\x51\x46\x63\x50\x61','\x57\x35\x4a\x63\x4a\x53\x6b\x61\x67\x66\x6e\x51\x57\x52\x33\x63\x50\x47','\x73\x58\x74\x64\x52\x53\x6b\x74\x7a\x62\x46\x64\x4a\x6d\x6b\x54\x57\x37\x43\x43\x7a\x59\x65','\x64\x4c\x56\x63\x48\x31\x42\x64\x47\x61','\x6d\x38\x6f\x57\x44\x58\x34\x73\x57\x37\x50\x4a\x57\x37\x71','\x57\x35\x44\x4e\x44\x49\x35\x38','\x65\x43\x6b\x32\x44\x43\x6b\x53\x70\x57','\x57\x34\x2f\x64\x49\x71\x76\x51\x57\x51\x30','\x57\x34\x68\x64\x4a\x4b\x76\x59\x57\x51\x56\x64\x51\x53\x6f\x54\x6f\x67\x75\x31\x57\x34\x75\x72','\x57\x4f\x37\x64\x56\x53\x6f\x73\x42\x78\x70\x63\x55\x68\x4f\x4e','\x57\x50\x66\x64\x73\x49\x4b','\x57\x4f\x50\x37\x6a\x43\x6b\x4b\x57\x36\x65','\x57\x4f\x61\x39\x57\x50\x57\x79\x6a\x47','\x66\x47\x52\x64\x4d\x53\x6b\x76\x62\x6d\x6f\x64\x57\x35\x39\x64','\x57\x36\x56\x63\x48\x43\x6f\x39\x6f\x33\x42\x64\x53\x75\x65','\x6b\x66\x4e\x64\x51\x62\x33\x64\x54\x53\x6b\x44\x6f\x38\x6f\x52','\x6c\x6d\x6b\x74\x57\x51\x4a\x64\x56\x43\x6f\x48','\x57\x50\x2f\x63\x4e\x48\x47','\x57\x35\x30\x33\x57\x52\x4e\x63\x4f\x38\x6f\x70\x42\x75\x52\x64\x47\x47','\x6b\x53\x6f\x6b\x57\x35\x44\x67\x57\x37\x79','\x57\x4f\x72\x76\x74\x61\x2f\x64\x4b\x61','\x57\x4f\x48\x6a\x70\x78\x4e\x63\x4c\x58\x46\x63\x47\x64\x69','\x57\x50\x6e\x42\x65\x77\x4a\x63\x4e\x48\x5a\x63\x50\x5a\x4b','\x57\x34\x2f\x63\x4a\x53\x6b\x39\x64\x30\x62\x33','\x7a\x53\x6f\x61\x57\x36\x78\x63\x53\x65\x4b','\x57\x34\x50\x53\x76\x4c\x69\x31\x67\x6d\x6f\x4f\x61\x71','\x78\x47\x71\x50\x57\x51\x64\x63\x49\x47\x44\x44\x57\x50\x53','\x41\x53\x6b\x4a\x67\x6d\x6b\x7a\x44\x6d\x6f\x64\x57\x52\x76\x4b','\x57\x36\x62\x44\x57\x35\x42\x63\x54\x57\x57','\x57\x34\x76\x71\x57\x34\x61','\x76\x38\x6b\x71\x57\x51\x34\x43\x57\x51\x39\x50\x57\x36\x43\x41\x42\x6d\x6f\x59\x57\x36\x5a\x64\x4f\x53\x6b\x68\x57\x51\x47','\x79\x53\x6f\x77\x57\x52\x39\x76\x57\x51\x74\x63\x4e\x74\x30','\x45\x43\x6f\x52\x61\x6d\x6f\x4b\x57\x50\x61\x4b\x6b\x4e\x47','\x61\x38\x6b\x33\x6e\x53\x6f\x39\x72\x57','\x45\x53\x6b\x35\x66\x6d\x6b\x6c\x43\x53\x6f\x64\x57\x51\x66\x2b','\x57\x4f\x6a\x76\x65\x77\x2f\x63\x4b\x61\x75','\x43\x31\x70\x64\x51\x43\x6b\x41\x57\x52\x69','\x57\x50\x44\x52\x57\x37\x56\x64\x4b\x43\x6b\x6a\x69\x72\x78\x64\x4b\x43\x6f\x70\x41\x58\x78\x63\x4a\x4d\x53','\x43\x38\x6f\x63\x57\x51\x48\x77','\x57\x50\x44\x4d\x6b\x6d\x6b\x67\x57\x36\x68\x63\x4c\x75\x75\x6a','\x57\x50\x43\x65\x57\x50\x69\x7a\x6b\x71','\x57\x51\x61\x32\x57\x34\x2f\x63\x53\x4e\x4f\x6f','\x76\x4e\x43\x61\x57\x4f\x48\x55\x64\x71','\x69\x74\x47\x65\x57\x51\x42\x64\x4d\x43\x6b\x37\x79\x53\x6b\x70\x45\x53\x6b\x56\x78\x64\x34','\x64\x30\x56\x63\x4a\x43\x6f\x55\x68\x57','\x57\x50\x74\x63\x4b\x58\x66\x54\x77\x47','\x44\x4c\x70\x64\x54\x38\x6b\x74\x57\x52\x56\x63\x53\x53\x6f\x6c\x66\x47','\x57\x35\x52\x63\x56\x6d\x6f\x6b\x63\x30\x42\x64\x4e\x67\x42\x63\x4c\x71','\x57\x50\x37\x64\x55\x43\x6f\x6a\x46\x68\x78\x63\x50\x73\x66\x2b','\x68\x65\x37\x63\x54\x6d\x6f\x65\x6d\x4c\x6d','\x57\x4f\x56\x63\x53\x73\x50\x61\x42\x53\x6f\x75\x57\x51\x5a\x63\x55\x47','\x6d\x6d\x6b\x75\x57\x35\x4a\x64\x4a\x66\x33\x63\x49\x65\x71','\x79\x77\x6a\x63','\x76\x6d\x6f\x31\x57\x4f\x30\x62\x73\x61','\x70\x6d\x6f\x79\x6a\x53\x6f\x69\x57\x50\x53\x78\x79\x61','\x57\x51\x37\x64\x51\x47\x38\x34\x6b\x71','\x57\x4f\x68\x63\x49\x72\x61\x34','\x57\x50\x37\x64\x55\x43\x6f\x76\x42\x78\x78\x63\x52\x31\x47\x33'];_0x5af3=function(){return _0x5bb793;};return _0x5af3();}