@evomap/evolver 1.89.11 → 1.89.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1367 -0
  9. package/README.md +90 -537
  10. package/README.public.md +578 -0
  11. package/SECURITY.md +108 -0
  12. package/assets/gep/events.jsonl +3 -0
  13. package/examples/atp-consumer-quickstart.md +100 -0
  14. package/examples/hello-world.md +38 -0
  15. package/package.json +6 -18
  16. package/proxy-package.json +39 -0
  17. package/public.manifest.json +145 -0
  18. package/src/evolve/guards.js +721 -1
  19. package/src/evolve/pipeline/collect.js +1283 -1
  20. package/src/evolve/pipeline/dispatch.js +421 -1
  21. package/src/evolve/pipeline/enrich.js +440 -1
  22. package/src/evolve/pipeline/hub.js +319 -1
  23. package/src/evolve/pipeline/select.js +274 -1
  24. package/src/evolve/pipeline/signals.js +206 -1
  25. package/src/evolve/utils.js +264 -1
  26. package/src/evolve.js +350 -1
  27. package/src/gep/a2aProtocol.js +4463 -1
  28. package/src/gep/antiAbuseTelemetry.js +233 -1
  29. package/src/gep/autoDistillConv.js +205 -1
  30. package/src/gep/autoDistillLlm.js +315 -1
  31. package/src/gep/candidateEval.js +92 -1
  32. package/src/gep/candidates.js +198 -1
  33. package/src/gep/contentHash.js +30 -1
  34. package/src/gep/conversationDistiller.js +270 -0
  35. package/src/gep/conversationSniffer.js +266 -1
  36. package/src/gep/crypto.js +89 -1
  37. package/src/gep/curriculum.js +163 -1
  38. package/src/gep/deviceId.js +218 -1
  39. package/src/gep/envFingerprint.js +118 -1
  40. package/src/gep/epigenetics.js +31 -1
  41. package/src/gep/execBridge.js +712 -1
  42. package/src/gep/explore.js +289 -1
  43. package/src/gep/hash.js +15 -1
  44. package/src/gep/hubFetch.js +608 -1
  45. package/src/gep/hubReview.js +207 -1
  46. package/src/gep/hubSearch.js +526 -1
  47. package/src/gep/hubVerify.js +306 -1
  48. package/src/gep/learningSignals.js +89 -1
  49. package/src/gep/memoryGraph.js +1449 -1
  50. package/src/gep/memoryGraphAdapter.js +203 -1
  51. package/src/gep/mutation.js +203 -1
  52. package/src/gep/narrativeMemory.js +108 -1
  53. package/src/gep/openPRRegistry.js +205 -1
  54. package/src/gep/personality.js +423 -1
  55. package/src/gep/policyCheck.js +599 -1
  56. package/src/gep/prompt.js +836 -1
  57. package/src/gep/questionGenerator.js +103 -0
  58. package/src/gep/recallInject.js +409 -1
  59. package/src/gep/recallVerifier.js +318 -1
  60. package/src/gep/reflection.js +177 -1
  61. package/src/gep/savingsCore.js +112 -1
  62. package/src/gep/selector.js +602 -1
  63. package/src/gep/skillDistiller.js +1294 -1
  64. package/src/gep/solidify.js +1699 -1
  65. package/src/gep/strategy.js +136 -1
  66. package/src/gep/tokenSavings.js +95 -1
  67. package/src/gep/workspaceKeychain.js +174 -1
  68. package/src/proxy/extensions/traceControl.js +109 -1
  69. package/src/proxy/inject.js +52 -1
  70. package/src/proxy/lifecycle/manager.js +108 -7
  71. package/src/proxy/server/routes.js +31 -0
  72. package/src/proxy/server/settings.js +6 -2
  73. package/src/proxy/sync/engine.js +31 -15
  74. package/src/proxy/sync/inbound.js +87 -9
  75. package/src/proxy/sync/outbound.js +57 -4
  76. package/src/proxy/trace/extractor.js +1403 -1
  77. package/src/proxy/trace/usage.js +105 -1
  78. package/CONTRIBUTING.md +0 -19
  79. package/assets/cover.png +0 -0
  80. package/scripts/a2a_export.js +0 -63
  81. package/scripts/a2a_ingest.js +0 -79
  82. package/scripts/a2a_promote.js +0 -118
  83. package/scripts/analyze_by_skill.js +0 -121
  84. package/scripts/build_binaries.js +0 -479
  85. package/scripts/check-changelog.js +0 -166
  86. package/scripts/extract_log.js +0 -85
  87. package/scripts/generate_history.js +0 -75
  88. package/scripts/gep_append_event.js +0 -96
  89. package/scripts/gep_personality_report.js +0 -234
  90. package/scripts/human_report.js +0 -147
  91. package/scripts/recall-verify-report.js +0 -234
  92. package/scripts/recover_loop.js +0 -61
  93. package/scripts/refresh_stars_badge.js +0 -168
  94. package/scripts/seed-merchants.js +0 -91
  95. package/scripts/suggest_version.js +0 -89
  96. package/scripts/validate-modules.js +0 -38
  97. package/scripts/validate-suite.js +0 -78
  98. package/skills/index.json +0 -14
  99. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  100. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,233 @@
1
- const _0x1a6091=_0x40bb;(function(_0x441177,_0x5b0532){const _0x2a6f55=_0x40bb,_0x3dd424=_0x441177();while(!![]){try{const _0x4f0bde=parseInt(_0x2a6f55(0x234,'\x6b\x7a\x73\x23'))/(-0x252c+-0x2088+0x45b5)*(-parseInt(_0x2a6f55(0x290,'\x24\x4e\x78\x67'))/(-0x261a+-0x231+0x284d))+-parseInt(_0x2a6f55(0x2fc,'\x52\x58\x44\x31'))/(-0x6cb+0x9cc+-0x2fe)*(parseInt(_0x2a6f55(0x2fa,'\x28\x42\x4a\x56'))/(0x94e+0x38a+-0xcd4))+parseInt(_0x2a6f55(0x245,'\x24\x4e\x78\x67'))/(0xb32+0x827+-0x1354)+-parseInt(_0x2a6f55(0x3a1,'\x61\x4f\x28\x43'))/(0x17d2*-0x1+0x57+0x1781)*(parseInt(_0x2a6f55(0x267,'\x6b\x7a\x73\x23'))/(-0x19*0x187+-0x128c*0x2+0x4b4e))+parseInt(_0x2a6f55(0x2b2,'\x24\x36\x6b\x4b'))/(-0x35f+-0x135b+0x16c2)+parseInt(_0x2a6f55(0x1c0,'\x57\x61\x76\x45'))/(0x7af*-0x1+-0x1567*0x1+0x1d1f)*(parseInt(_0x2a6f55(0x28e,'\x61\x4f\x28\x43'))/(0x8*0xb8+-0x1bd2+-0x46c*-0x5))+parseInt(_0x2a6f55(0x39b,'\x25\x31\x4d\x57'))/(-0x14f*-0xb+-0x3b7+0x1*-0xaa3)*(parseInt(_0x2a6f55(0x31c,'\x23\x62\x37\x43'))/(-0x172d*-0x1+0x377*-0x3+-0x1*0xcbc));if(_0x4f0bde===_0x5b0532)break;else _0x3dd424['push'](_0x3dd424['shift']());}catch(_0x5472ec){_0x3dd424['push'](_0x3dd424['shift']());}}}(_0x3e1f,-0x520e7+0x3581c+0xbdb*0x7f));const _0x2c3622=(function(){const _0x4631a2=_0x40bb,_0x3d603c={};_0x3d603c['\x65\x44\x4a\x62\x4d']=function(_0x3b15af,_0x43b429){return _0x3b15af instanceof _0x43b429;},_0x3d603c[_0x4631a2(0x2c9,'\x33\x45\x32\x49')]=function(_0xf3a7a,_0x1cd9ca){return _0xf3a7a===_0x1cd9ca;},_0x3d603c[_0x4631a2(0x1dd,'\x52\x57\x2a\x77')]=function(_0x393a38,_0x251892){return _0x393a38!==_0x251892;},_0x3d603c[_0x4631a2(0x257,'\x71\x4e\x49\x56')]=_0x4631a2(0x31e,'\x6b\x58\x47\x78');const _0xccc601=_0x3d603c;let _0x166447=!![];return function(_0x36d12d,_0x501690){const _0x3f2d7c=_0x166447?function(){const _0x399279=_0x40bb,_0x416480={'\x46\x71\x73\x43\x4b':function(_0x58ae61,_0x4e2631){const _0x5f453a=_0x40bb;return _0xccc601[_0x5f453a(0x244,'\x53\x33\x7a\x5e')](_0x58ae61,_0x4e2631);},'\x47\x53\x6c\x59\x62':function(_0x2bdc96,_0x14741b){const _0x19dbd8=_0x40bb;return _0xccc601[_0x19dbd8(0x214,'\x59\x36\x48\x53')](_0x2bdc96,_0x14741b);}};if(_0x501690){if(_0xccc601[_0x399279(0x38e,'\x58\x5e\x6b\x65')](_0xccc601[_0x399279(0x2c2,'\x4a\x5b\x6a\x61')],_0x399279(0x250,'\x46\x75\x70\x66'))){if(_0x416480[_0x399279(0x26f,'\x39\x5d\x68\x56')](_0xea7c0,_0x6353c))return _0x5ad567[_0x399279(0x385,'\x42\x35\x36\x67')+_0x399279(0x210,'\x64\x6e\x6c\x4b')]();if(_0x416480['\x47\x53\x6c\x59\x62'](typeof _0x5ccf25,'\x73\x74\x72\x69\x6e\x67')&&_0x285742)return _0x5d054e;return new _0x4ad74c()[_0x399279(0x392,'\x4a\x63\x44\x6d')+_0x399279(0x375,'\x48\x26\x29\x4f')]();}else{const _0x41977a=_0x501690[_0x399279(0x279,'\x42\x35\x36\x67')](_0x36d12d,arguments);return _0x501690=null,_0x41977a;}}}:function(){};return _0x166447=![],_0x3f2d7c;};}()),_0x25af6e=_0x2c3622(this,function(){const _0x1851e8=_0x40bb,_0x3957cd={};_0x3957cd[_0x1851e8(0x2c6,'\x64\x6e\x6c\x4b')]=_0x1851e8(0x313,'\x77\x6d\x6c\x2a')+_0x1851e8(0x2d9,'\x45\x42\x41\x54');const _0x43cfcb=_0x3957cd;return _0x25af6e[_0x1851e8(0x359,'\x35\x5d\x56\x64')]()[_0x1851e8(0x271,'\x25\x31\x4d\x57')](_0x43cfcb[_0x1851e8(0x27a,'\x63\x69\x44\x66')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x1851e8(0x383,'\x28\x42\x4a\x56')+_0x1851e8(0x207,'\x50\x70\x5d\x33')](_0x25af6e)[_0x1851e8(0x1f5,'\x41\x65\x26\x79')](_0x43cfcb[_0x1851e8(0x354,'\x77\x52\x79\x5a')]);});_0x25af6e();'use strict';const _0x5a548b=require(_0x1a6091(0x25b,'\x61\x74\x53\x69')),_0x30a822=require('\x66\x73'),_0x4efe83=require('\x6f\x73'),_0x17314e=require(_0x1a6091(0x263,'\x52\x57\x2a\x77')),{captureEnvFingerprint:_0x904743,envFingerprintKey:_0x37ff35}=require(_0x1a6091(0x1bd,'\x54\x74\x44\x68')+_0x1a6091(0x3ae,'\x42\x35\x36\x67')),_0x1580ef=_0x1a6091(0x2da,'\x54\x74\x44\x68')+'\x73\x65\x2e\x76\x31',_0x353246=_0x1a6091(0x213,'\x52\x58\x44\x31')+_0x1a6091(0x236,'\x63\x69\x44\x66')+'\x74\x69\x6f\x6e\x2e\x76\x31',_0x574ac2=-0xe*-0x6b+0x209c+-0x261c,_0xa4fbbf=(-0x25a9+-0xf76+0x1*0x3529)*(-0x1*0x1c8d+0xb*-0x1ba+0x338b)*(0x19eb*-0x1+0xc8c+-0x1*-0x115f);function _0x3af56d(_0x260783){const _0x3ce1dd=_0x1a6091,_0xdb8dc4={};_0xdb8dc4[_0x3ce1dd(0x2c8,'\x50\x70\x5d\x33')]=function(_0x2f9b23,_0x40acd3){return _0x2f9b23 instanceof _0x40acd3;},_0xdb8dc4[_0x3ce1dd(0x218,'\x4a\x5b\x6a\x61')]=function(_0x2c0437,_0x534a5d){return _0x2c0437===_0x534a5d;},_0xdb8dc4[_0x3ce1dd(0x1e1,'\x58\x5e\x6b\x65')]=_0x3ce1dd(0x2c1,'\x61\x4f\x28\x43');const _0x466000=_0xdb8dc4;if(_0x466000[_0x3ce1dd(0x333,'\x4a\x63\x44\x6d')](_0x260783,Date))return _0x260783[_0x3ce1dd(0x2df,'\x50\x70\x5d\x33')+_0x3ce1dd(0x216,'\x46\x75\x70\x66')]();if(_0x466000[_0x3ce1dd(0x379,'\x6b\x58\x47\x78')](typeof _0x260783,_0x466000[_0x3ce1dd(0x2a0,'\x63\x69\x44\x66')])&&_0x260783)return _0x260783;return new Date()[_0x3ce1dd(0x28b,'\x21\x46\x23\x6a')+_0x3ce1dd(0x304,'\x51\x49\x4e\x55')]();}function _0x109c47(_0x54cced){const _0x5142c0=_0x1a6091,_0x2131e7={};_0x2131e7[_0x5142c0(0x2a4,'\x45\x42\x41\x54')]=function(_0x54bc20,_0x5dbb54){return _0x54bc20===_0x5dbb54;},_0x2131e7['\x55\x6e\x72\x6e\x49']=_0x5142c0(0x273,'\x4e\x26\x43\x68'),_0x2131e7[_0x5142c0(0x332,'\x63\x69\x44\x66')]=function(_0x7babe4,_0x2492f7){return _0x7babe4===_0x2492f7;},_0x2131e7[_0x5142c0(0x345,'\x71\x4e\x49\x56')]=function(_0x16cf6b,_0x300cb5){return _0x16cf6b===_0x300cb5;};const _0x4c2cee=_0x2131e7,_0x148909=String(_0x54cced||'')[_0x5142c0(0x1cc,'\x4a\x5b\x6a\x61')]()[_0x5142c0(0x22b,'\x70\x45\x4a\x6e')+_0x5142c0(0x3a6,'\x6b\x7a\x73\x23')]();return _0x4c2cee[_0x5142c0(0x338,'\x77\x6d\x6c\x2a')](_0x148909,'\x31')||_0x148909===_0x4c2cee[_0x5142c0(0x34f,'\x54\x74\x44\x68')]||_0x4c2cee[_0x5142c0(0x1fb,'\x4d\x46\x76\x67')](_0x148909,_0x5142c0(0x36d,'\x24\x36\x6b\x4b'))||_0x4c2cee[_0x5142c0(0x1bf,'\x34\x76\x50\x4d')](_0x148909,'\x6f\x6e');}function _0x41650b(_0x2a9559,_0x3719a8){const _0x1602c8=_0x1a6091,_0x434fd9={'\x6c\x63\x6b\x6f\x54':function(_0x982b41,_0x61eb03){return _0x982b41(_0x61eb03);},'\x67\x65\x75\x58\x62':'\x73\x68\x61\x32\x35\x36','\x6f\x68\x61\x79\x47':_0x1602c8(0x34b,'\x46\x75\x70\x66')},_0x16a85f=_0x2a9559==null?'':String(_0x2a9559),_0x32b143=_0x3719a8&&_0x3719a8[_0x1602c8(0x30f,'\x6b\x23\x69\x69')]?String(_0x3719a8[_0x1602c8(0x1de,'\x25\x31\x4d\x57')]):'',_0x33d610=_0x3719a8&&_0x3719a8[_0x1602c8(0x29d,'\x53\x33\x7a\x5e')]?_0x434fd9[_0x1602c8(0x2b8,'\x51\x49\x4e\x55')](String,_0x3719a8[_0x1602c8(0x20c,'\x61\x74\x53\x69')]):_0x1602c8(0x3a8,'\x4a\x63\x44\x6d')+'\x73\x65';if(!_0x16a85f||!_0x32b143)return null;return _0x5a548b[_0x1602c8(0x397,'\x61\x4f\x28\x43')+'\x61\x63'](_0x434fd9[_0x1602c8(0x248,'\x57\x61\x76\x45')],_0x32b143)['\x75\x70\x64\x61\x74\x65'](_0x33d610)[_0x1602c8(0x1c7,'\x53\x33\x7a\x5e')]('\x00')[_0x1602c8(0x32c,'\x5e\x6c\x58\x44')](_0x16a85f)[_0x1602c8(0x211,'\x4e\x26\x43\x68')](_0x434fd9['\x6f\x68\x61\x79\x47'])[_0x1602c8(0x317,'\x24\x4e\x78\x67')](0x10f*-0xa+0x267c+0x1be6*-0x1,0xb*-0x31+0x4c2+-0x287);}function _0x245b51(_0x1e1902){const _0x5b990d=_0x1a6091,_0x41d949={'\x77\x45\x6e\x5a\x73':function(_0x17786f){return _0x17786f();},'\x4b\x70\x6c\x62\x48':function(_0x2e641b,_0x1d5fbe){return _0x2e641b!=_0x1d5fbe;},'\x5a\x79\x77\x4b\x51':_0x5b990d(0x399,'\x47\x44\x4b\x43'),'\x6b\x42\x4e\x58\x4a':function(_0x27f24c){return _0x27f24c();},'\x4e\x76\x5a\x69\x6d':function(_0x24ac91,_0x1c2d0f,_0x49f577){return _0x24ac91(_0x1c2d0f,_0x49f577);},'\x4d\x52\x4f\x49\x53':_0x5b990d(0x200,'\x24\x4e\x78\x67'),'\x42\x53\x68\x68\x73':_0x5b990d(0x3af,'\x46\x75\x70\x66')+'\x65','\x53\x4f\x43\x61\x47':_0x5b990d(0x225,'\x48\x26\x29\x4f')+_0x5b990d(0x391,'\x2a\x33\x59\x68'),'\x4c\x50\x73\x76\x54':_0x5b990d(0x311,'\x50\x70\x5d\x33')+_0x5b990d(0x246,'\x48\x26\x29\x4f')+_0x5b990d(0x22d,'\x25\x31\x4d\x57'),'\x57\x49\x4b\x45\x4b':_0x5b990d(0x220,'\x52\x58\x44\x31')+_0x5b990d(0x34a,'\x23\x62\x37\x43')+_0x5b990d(0x2d8,'\x24\x36\x6b\x4b'),'\x56\x42\x76\x4a\x44':_0x5b990d(0x2cd,'\x64\x6e\x6c\x4b')+'\x6f\x6c\x69\x63\x79\x5f\x6f\x72'+_0x5b990d(0x264,'\x35\x5d\x56\x64'),'\x79\x71\x69\x47\x5a':function(_0x1f507a,_0x43ffad,_0x444176,_0x249ed6){return _0x1f507a(_0x43ffad,_0x444176,_0x249ed6);},'\x71\x55\x77\x6a\x6b':_0x5b990d(0x303,'\x61\x4f\x28\x43')+'\x70','\x5a\x79\x4e\x54\x78':_0x5b990d(0x2d4,'\x4a\x63\x44\x6d')+'\x62\x73\x65\x72\x76\x65\x64\x5f'+_0x5b990d(0x1ff,'\x4e\x26\x43\x68'),'\x71\x63\x42\x69\x4d':_0x5b990d(0x31d,'\x48\x26\x29\x4f'),'\x59\x45\x52\x47\x58':_0x5b990d(0x1c4,'\x59\x36\x48\x53')+_0x5b990d(0x39e,'\x71\x4e\x49\x56')+_0x5b990d(0x28f,'\x41\x65\x26\x79')+_0x5b990d(0x2f0,'\x54\x74\x44\x68'),'\x42\x72\x68\x61\x4f':_0x5b990d(0x227,'\x47\x44\x4b\x43')+_0x5b990d(0x265,'\x77\x52\x79\x5a'),'\x78\x62\x4a\x61\x41':_0x5b990d(0x209,'\x4d\x4d\x7a\x4c')+'\x73\x65\x72\x76\x69\x63\x65\x5f'+_0x5b990d(0x344,'\x4d\x4d\x7a\x4c'),'\x47\x6b\x6b\x47\x44':function(_0x553ff7,_0x5eee0d,_0x5d08ac,_0x37e9fd){return _0x553ff7(_0x5eee0d,_0x5d08ac,_0x37e9fd);},'\x4f\x76\x77\x66\x47':_0x5b990d(0x33f,'\x59\x36\x48\x53')+_0x5b990d(0x1d9,'\x23\x62\x37\x43')+_0x5b990d(0x335,'\x6d\x4f\x59\x4f'),'\x41\x63\x50\x50\x6d':_0x5b990d(0x275,'\x70\x45\x4a\x6e')+_0x5b990d(0x21f,'\x5b\x21\x23\x30'),'\x74\x69\x77\x72\x66':_0x5b990d(0x1d6,'\x54\x74\x44\x68')+_0x5b990d(0x331,'\x4a\x63\x44\x6d')+_0x5b990d(0x20e,'\x24\x4e\x78\x67'),'\x4e\x74\x61\x76\x52':_0x5b990d(0x39d,'\x33\x45\x32\x49'),'\x77\x56\x5a\x41\x70':_0x5b990d(0x2ac,'\x6b\x23\x69\x69')+_0x5b990d(0x251,'\x4a\x5b\x6a\x61'),'\x74\x54\x68\x67\x4d':'\x64\x65\x66\x61\x75\x6c\x74','\x67\x62\x62\x4f\x70':_0x5b990d(0x1c6,'\x41\x65\x26\x79')+_0x5b990d(0x2b9,'\x64\x6e\x6c\x4b'),'\x77\x4a\x57\x53\x56':_0x5b990d(0x2d2,'\x4e\x26\x43\x68')+_0x5b990d(0x2b7,'\x6b\x58\x47\x78'),'\x67\x48\x4e\x46\x6e':function(_0x143e79,_0xbca1f8){return _0x143e79(_0xbca1f8);},'\x6b\x4f\x52\x46\x67':'\x63\x6c\x69\x65\x6e\x74\x5f\x61'+_0x5b990d(0x341,'\x77\x6d\x6c\x2a'),'\x47\x68\x6e\x4c\x73':function(_0x28dd83,_0x190b3e){return _0x28dd83(_0x190b3e);},'\x4a\x6c\x64\x77\x53':function(_0x11cafb,_0x4bac1e){return _0x11cafb(_0x4bac1e);},'\x78\x54\x63\x52\x62':_0x5b990d(0x2a6,'\x4e\x26\x43\x68'),'\x6a\x41\x44\x64\x69':function(_0x303998,_0x207957){return _0x303998!=_0x207957;},'\x41\x4d\x68\x55\x46':function(_0x2e53d2,_0x2d6562){return _0x2e53d2(_0x2d6562);},'\x69\x54\x6b\x50\x64':_0x5b990d(0x2f2,'\x21\x46\x23\x6a'),'\x75\x6e\x52\x6b\x71':function(_0x497a08,_0x25d67c){return _0x497a08>_0x25d67c;}};let _0x4022ea;try{_0x4022ea=_0x30a822[_0x5b990d(0x1df,'\x4a\x63\x44\x6d')](_0x1e1902);}catch(_0x53effc){if(_0x5b990d(0x1c1,'\x4a\x5b\x6a\x61')!==_0x41d949[_0x5b990d(0x27d,'\x4a\x5b\x6a\x61')])return null;else{const _0x4053a6=_0x1e292f||{},_0x539b43=_0x4053a6[_0x5b990d(0x2cc,'\x54\x50\x6f\x32')]||_0x5176ec.env,_0x4d7796=_0x4053a6[_0x5b990d(0x2eb,'\x21\x46\x23\x6a')+_0x5b990d(0x37a,'\x41\x65\x26\x79')]||_0x41d949['\x77\x45\x6e\x5a\x73'](_0x5e0787),_0x180567=_0x41d949[_0x5b990d(0x319,'\x28\x42\x4a\x56')](_0x4053a6[_0x5b990d(0x1e5,'\x64\x6e\x6c\x4b')],null)?_0x4053a6[_0x5b990d(0x242,'\x57\x50\x38\x6a')]:_0x539b43[_0x5b990d(0x1e4,'\x71\x5b\x78\x36')+_0x5b990d(0x31f,'\x54\x50\x6f\x32')+_0x5b990d(0x25d,'\x59\x36\x48\x53')],_0x31dfce=_0x4053a6['\x73\x61\x6c\x74\x49\x64']||_0x539b43[_0x5b990d(0x1c3,'\x46\x75\x70\x66')+_0x5b990d(0x3a2,'\x21\x46\x23\x6a')+'\x53\x45\x5f\x53\x41\x4c\x54\x5f'+'\x49\x44']||(_0x180567?_0x41d949[_0x5b990d(0x22f,'\x33\x44\x4e\x6d')]:null),_0x51d6bb=_0x4053a6['\x70\x61\x63\x6b\x61\x67\x65\x52'+_0x5b990d(0x343,'\x52\x58\x44\x31')]||_0x41d949[_0x5b990d(0x300,'\x71\x5b\x78\x36')](_0x3c8a94),_0x30be0c=_0x41d949['\x4e\x76\x5a\x69\x6d'](_0x3ea2e5,_0x4d7796&&_0x4d7796[_0x5b990d(0x292,'\x6d\x4f\x59\x4f')+'\x64'],{'\x73\x61\x6c\x74':_0x180567,'\x70\x75\x72\x70\x6f\x73\x65':_0x41d949[_0x5b990d(0x253,'\x35\x5d\x56\x64')]}),_0x180dc8={};_0x180dc8[_0x5b990d(0x266,'\x58\x5e\x6b\x65')]=_0x180567,_0x180dc8[_0x5b990d(0x34d,'\x33\x45\x32\x49')]=_0x41d949[_0x5b990d(0x2b0,'\x58\x5e\x6b\x65')];const _0x1583a1=_0x2813d7(_0x3f3d72[_0x5b990d(0x1e8,'\x25\x31\x4d\x57')](),_0x180dc8),_0x11795b=[];if(!_0x30be0c)_0x11795b[_0x5b990d(0x35b,'\x4a\x63\x44\x6d')](_0xd02d28(_0x41d949[_0x5b990d(0x2ee,'\x52\x58\x44\x31')],_0x41d949[_0x5b990d(0x26e,'\x42\x35\x36\x67')],_0x5b990d(0x25f,'\x41\x65\x26\x79')+_0x5b990d(0x23b,'\x52\x58\x44\x31')+'\x5f\x65\x6e\x76'));if(!_0x1583a1)_0x11795b[_0x5b990d(0x2ea,'\x4e\x26\x43\x68')](_0x5120ef(_0x41d949[_0x5b990d(0x276,'\x77\x6d\x6c\x2a')],_0x5b990d(0x3a4,'\x46\x75\x70\x66')+_0x5b990d(0x2c4,'\x6b\x23\x69\x69')+_0x5b990d(0x1eb,'\x21\x46\x23\x6a'),_0x41d949[_0x5b990d(0x230,'\x52\x58\x44\x31')]));return _0x11795b[_0x5b990d(0x35e,'\x39\x5d\x68\x56')](_0x41d949[_0x5b990d(0x204,'\x47\x44\x4b\x43')](_0x19b7d6,_0x41d949[_0x5b990d(0x260,'\x77\x52\x79\x5a')],_0x41d949[_0x5b990d(0x339,'\x4d\x4d\x7a\x4c')],_0x5b990d(0x1c9,'\x53\x33\x7a\x5e')),_0x41d949[_0x5b990d(0x239,'\x24\x36\x6b\x4b')](_0x3ba3c2,_0x5b990d(0x2c5,'\x2a\x33\x59\x68'),_0x41d949[_0x5b990d(0x23d,'\x4a\x63\x44\x6d')],_0x41d949[_0x5b990d(0x364,'\x71\x4e\x49\x56')]),_0x4b5733(_0x41d949[_0x5b990d(0x1e6,'\x35\x5d\x56\x64')],_0x41d949[_0x5b990d(0x21d,'\x5d\x79\x71\x51')],_0x5b990d(0x24f,'\x5d\x79\x71\x51')),_0x2ea2da(_0x41d949['\x42\x72\x68\x61\x4f'],_0x41d949[_0x5b990d(0x241,'\x34\x76\x50\x4d')],_0x5b990d(0x2dc,'\x24\x4e\x78\x67')+_0x5b990d(0x20f,'\x53\x33\x7a\x5e')),_0x41d949['\x47\x6b\x6b\x47\x44'](_0x31ae78,_0x41d949[_0x5b990d(0x310,'\x4d\x4d\x7a\x4c')],_0x5b990d(0x1fd,'\x54\x74\x44\x68')+_0x5b990d(0x2e1,'\x71\x4e\x49\x56')+'\x5f\x72\x65\x71\x75\x69\x72\x65'+'\x64',_0x41d949['\x41\x63\x50\x50\x6d']),_0x41d949[_0x5b990d(0x2a9,'\x24\x4e\x78\x67')](_0x53ca6b,_0x5b990d(0x2b4,'\x42\x35\x36\x67')+_0x5b990d(0x2a3,'\x70\x45\x4a\x6e'),_0x41d949[_0x5b990d(0x2c0,'\x4a\x5b\x6a\x61')],_0x41d949[_0x5b990d(0x374,'\x6d\x4f\x59\x4f')])),{'\x73\x63\x68\x65\x6d\x61\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x5b93a5,'\x65\x76\x65\x6e\x74\x5f\x74\x79\x70\x65':_0x41d949['\x77\x56\x5a\x41\x70'],'\x70\x75\x72\x70\x6f\x73\x65':_0x5b990d(0x2d1,'\x34\x76\x50\x4d')+'\x73\x65','\x70\x69\x69\x5f\x63\x6c\x61\x73\x73':'\x6d\x65\x64\x69\x75\x6d','\x63\x6f\x6e\x73\x65\x6e\x74\x5f\x6c\x65\x76\x65\x6c':_0x41d949[_0x5b990d(0x26d,'\x6b\x7a\x73\x23')],'\x72\x65\x74\x65\x6e\x74\x69\x6f\x6e\x5f\x74\x74\x6c\x5f\x64\x61\x79\x73':_0x5e883c(_0x539b43),'\x70\x6f\x6c\x69\x63\x79\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x539b43[_0x5b990d(0x1e4,'\x71\x5b\x78\x36')+_0x5b990d(0x33c,'\x71\x5b\x78\x36')+_0x5b990d(0x322,'\x58\x5e\x6b\x65')+'\x59\x5f\x56\x45\x52\x53\x49\x4f'+'\x4e']||_0x41d949['\x67\x62\x62\x4f\x70'],'\x72\x65\x64\x61\x63\x74\x69\x6f\x6e\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x22e187,'\x73\x6f\x75\x72\x63\x65':_0x4053a6[_0x5b990d(0x296,'\x46\x75\x70\x66')]||_0x41d949[_0x5b990d(0x2a5,'\x34\x76\x50\x4d')],'\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x5f\x61\x74':_0x41d949[_0x5b990d(0x330,'\x71\x5b\x78\x36')](_0x127271,_0x4053a6[_0x5b990d(0x27c,'\x4e\x26\x43\x68')]),'\x73\x6f\x75\x72\x63\x65\x5f\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':{'\x6e\x6f\x64\x65\x5f\x69\x64\x65\x6e\x74\x69\x74\x79':_0x41d949[_0x5b990d(0x29f,'\x45\x42\x41\x54')],'\x64\x65\x76\x69\x63\x65\x5f\x69\x6e\x74\x65\x67\x72\x69\x74\x79':_0x5b990d(0x205,'\x25\x31\x4d\x57')+_0x5b990d(0x221,'\x59\x36\x48\x53'),'\x74\x61\x73\x6b\x5f\x6d\x65\x74\x72\x69\x63\x73':_0x41d949[_0x5b990d(0x281,'\x4d\x4d\x7a\x4c')],'\x6e\x65\x74\x77\x6f\x72\x6b\x5f\x73\x6f\x75\x72\x63\x65':_0x41d949[_0x5b990d(0x38c,'\x35\x5d\x56\x64')],'\x61\x63\x63\x6f\x75\x6e\x74\x5f\x73\x65\x63\x75\x72\x69\x74\x79':_0x5b990d(0x1cf,'\x5e\x6c\x58\x44')+_0x5b990d(0x28d,'\x5e\x6c\x58\x44')+_0x5b990d(0x22e,'\x23\x62\x37\x43'),'\x70\x61\x79\x6f\x75\x74':_0x5b990d(0x2cb,'\x5b\x21\x23\x30')+'\x62\x73\x65\x72\x76\x65\x64\x5f'+_0x5b990d(0x386,'\x6b\x7a\x73\x23'),'\x72\x69\x73\x6b\x5f\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x41d949[_0x5b990d(0x1f1,'\x24\x4e\x78\x67')]},'\x69\x64\x65\x6e\x74\x69\x74\x79':{'\x6e\x6f\x64\x65\x5f\x69\x64':_0x4053a6[_0x5b990d(0x259,'\x6b\x23\x69\x69')]||null,'\x61\x63\x63\x6f\x75\x6e\x74\x5f\x69\x64':null,'\x6f\x72\x67\x5f\x69\x64':null},'\x64\x65\x76\x69\x63\x65':{'\x64\x65\x76\x69\x63\x65\x5f\x70\x73\x65\x75\x64\x6f\x6e\x79\x6d':_0x30be0c,'\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x5f\x70\x73\x65\x75\x64\x6f\x6e\x79\x6d':_0x1583a1,'\x70\x73\x65\x75\x64\x6f\x6e\x79\x6d\x5f\x73\x61\x6c\x74\x5f\x69\x64':_0x31dfce,'\x65\x6e\x76\x5f\x66\x69\x6e\x67\x65\x72\x70\x72\x69\x6e\x74\x5f\x6b\x65\x79':_0x41d949[_0x5b990d(0x219,'\x25\x31\x4d\x57')](_0x1af50e,_0x4d7796),'\x70\x6c\x61\x74\x66\x6f\x72\x6d':_0x4d7796[_0x5b990d(0x24c,'\x4e\x26\x43\x68')]||null,'\x61\x72\x63\x68':_0x4d7796[_0x5b990d(0x23e,'\x24\x36\x6b\x4b')]||null,'\x6f\x73\x5f\x72\x65\x6c\x65\x61\x73\x65':_0x4d7796['\x6f\x73\x5f\x72\x65\x6c\x65\x61'+'\x73\x65']||null,'\x6e\x6f\x64\x65\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x4d7796['\x6e\x6f\x64\x65\x5f\x76\x65\x72'+_0x5b990d(0x284,'\x6d\x4f\x59\x4f')]||null,'\x65\x76\x6f\x6c\x76\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x4d7796['\x65\x76\x6f\x6c\x76\x65\x72\x5f'+_0x5b990d(0x202,'\x48\x26\x29\x4f')]||null,'\x63\x6c\x69\x65\x6e\x74':_0x4d7796[_0x5b990d(0x33b,'\x51\x49\x4e\x55')]||null,'\x63\x6c\x69\x65\x6e\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x4d7796[_0x5b990d(0x1f8,'\x6d\x4f\x59\x4f')+'\x65\x72\x73\x69\x6f\x6e']||null,'\x6d\x6f\x64\x65\x6c':_0x4d7796[_0x5b990d(0x369,'\x33\x44\x4e\x6d')]||null,'\x72\x65\x67\x69\x6f\x6e':_0x4d7796[_0x5b990d(0x2a1,'\x63\x69\x44\x66')]||null,'\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72':!!_0x4d7796[_0x5b990d(0x323,'\x61\x4f\x28\x43')+'\x72']},'\x69\x6e\x74\x65\x67\x72\x69\x74\x79':_0x41d949[_0x5b990d(0x32d,'\x6d\x4f\x59\x4f')](_0x130b7c,_0x51d6bb),'\x6c\x6f\x63\x61\x6c\x5f\x73\x65\x63\x75\x72\x69\x74\x79\x5f\x62\x6f\x75\x6e\x64\x61\x72\x79':{'\x70\x72\x6f\x78\x79\x5f\x62\x69\x6e\x64\x5f\x61\x64\x64\x72\x65\x73\x73\x5f\x63\x6c\x61\x73\x73':_0x41d949[_0x5b990d(0x21a,'\x23\x62\x37\x43')],'\x70\x72\x6f\x78\x79\x5f\x70\x6f\x72\x74\x5f\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x64':_0x41d949[_0x5b990d(0x2bf,'\x57\x50\x38\x6a')](_0x4053a6['\x70\x72\x6f\x78\x79\x50\x6f\x72'+_0x5b990d(0x2ec,'\x77\x6d\x6c\x2a')+'\x72\x65\x64'],null)?!!_0x4053a6[_0x5b990d(0x320,'\x6b\x58\x47\x78')+'\x74\x43\x6f\x6e\x66\x69\x67\x75'+'\x72\x65\x64']:_0x41d949[_0x5b990d(0x226,'\x54\x74\x44\x68')](_0x2a975e,_0x539b43[_0x5b990d(0x1e0,'\x4e\x26\x43\x68')+_0x5b990d(0x2d5,'\x58\x5e\x6b\x65')])||!!_0x539b43[_0x5b990d(0x1fe,'\x21\x46\x23\x6a')+_0x5b990d(0x352,'\x5e\x6c\x58\x44')+'\x54'],'\x73\x65\x74\x74\x69\x6e\x67\x73\x5f\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x5f\x63\x6c\x61\x73\x73':_0x41d949[_0x5b990d(0x1ea,'\x70\x45\x4a\x6e')](_0x4f954c,_0x539b43)},'\x74\x61\x73\x6b\x5f\x74\x69\x6d\x69\x6e\x67':_0x3a07bb(_0x4053a6[_0x5b990d(0x28a,'\x34\x76\x50\x4d')]),'\x75\x6e\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x5f\x66\x69\x65\x6c\x64\x73':_0x11795b};}}if(!_0x4022ea[_0x5b990d(0x301,'\x28\x42\x4a\x56')]()||_0x41d949[_0x5b990d(0x37b,'\x61\x4f\x28\x43')](_0x4022ea[_0x5b990d(0x262,'\x48\x26\x29\x4f')],_0xa4fbbf))return null;const _0x9bae1b=_0x5a548b[_0x5b990d(0x201,'\x41\x65\x26\x79')+'\x73\x68'](_0x5b990d(0x2f4,'\x64\x6e\x6c\x4b'));return _0x9bae1b[_0x5b990d(0x2f8,'\x77\x52\x79\x5a')](_0x30a822[_0x5b990d(0x291,'\x59\x36\x48\x53')+_0x5b990d(0x355,'\x54\x50\x6f\x32')](_0x1e1902)),_0x9bae1b[_0x5b990d(0x340,'\x33\x44\x4e\x6d')](_0x5b990d(0x2f5,'\x39\x5d\x68\x56'));}function _0x521d30(_0x26f9bf){const _0x137b0e=_0x1a6091,_0xda7f27={};_0xda7f27[_0x137b0e(0x382,'\x71\x5b\x78\x36')]=function(_0x1f0431,_0x4b0d67){return _0x1f0431===_0x4b0d67;},_0xda7f27[_0x137b0e(0x35f,'\x5d\x79\x71\x51')]=_0x137b0e(0x2ad,'\x58\x5e\x6b\x65'),_0xda7f27[_0x137b0e(0x228,'\x54\x50\x6f\x32')]=_0x137b0e(0x3ad,'\x2a\x33\x59\x68');const _0x5a21e8=_0xda7f27;try{return _0x5a21e8['\x4a\x78\x75\x72\x66'](_0x5a21e8['\x41\x68\x6f\x72\x4a'],_0x137b0e(0x1ee,'\x45\x42\x41\x54'))?null:JSON['\x70\x61\x72\x73\x65'](_0x30a822[_0x137b0e(0x326,'\x77\x52\x79\x5a')+_0x137b0e(0x388,'\x61\x74\x53\x69')](_0x26f9bf,_0x5a21e8['\x4d\x6b\x4a\x56\x48']));}catch(_0x578c5d){return null;}}function _0x492d75(_0x4729e2){const _0x27020c=_0x1a6091,_0xb96be3={'\x63\x62\x7a\x4e\x6b':function(_0x5b2e26,_0x506a9a){return _0x5b2e26(_0x506a9a);},'\x70\x41\x4c\x78\x64':_0x27020c(0x394,'\x28\x42\x4a\x56')+'\x2e\x6a\x73\x6f\x6e','\x4e\x49\x61\x75\x70':function(_0x13fd4e,_0x568d0d){return _0x13fd4e!==_0x568d0d;},'\x6e\x76\x6e\x5a\x72':_0x27020c(0x1cd,'\x28\x42\x4a\x56'),'\x70\x56\x79\x46\x68':'\x6d\x69\x73\x73\x69\x6e\x67','\x45\x48\x65\x6a\x52':_0x27020c(0x360,'\x4e\x26\x43\x68'),'\x72\x57\x6b\x58\x66':function(_0x48b02a,_0x5869f6){return _0x48b02a&_0x5869f6;},'\x46\x52\x5a\x6d\x73':function(_0x112caa,_0x1821ea){return _0x112caa===_0x1821ea;},'\x62\x48\x4f\x75\x7a':function(_0x5e6654,_0x280396){return _0x5e6654&_0x280396;},'\x5a\x55\x73\x75\x6b':_0x27020c(0x318,'\x59\x36\x48\x53')+'\x6c\x79','\x55\x51\x47\x59\x51':'\x77\x6f\x72\x6c\x64\x5f\x61\x63'+_0x27020c(0x358,'\x52\x58\x44\x31'),'\x62\x69\x74\x42\x6f':'\x67\x72\x6f\x75\x70\x5f\x61\x63'+_0x27020c(0x3ab,'\x25\x31\x4d\x57')};let _0x1bb9bf;try{_0x1bb9bf=_0x30a822[_0x27020c(0x393,'\x28\x42\x4a\x56')](_0x4729e2);}catch(_0x202e72){if(_0xb96be3['\x4e\x49\x61\x75\x70'](_0xb96be3[_0x27020c(0x25c,'\x4d\x4d\x7a\x4c')],_0x27020c(0x327,'\x77\x6d\x6c\x2a'))){const _0x2327b6=_0x28fd95||_0x3a9b5e.env,_0x4eea02=_0x2327b6[_0x27020c(0x1d1,'\x6b\x58\x47\x78')+_0x27020c(0x35c,'\x23\x62\x37\x43')+_0x27020c(0x3a7,'\x33\x45\x32\x49')]||_0x5021c5[_0x27020c(0x238,'\x42\x35\x36\x67')](_0x38b74f[_0x27020c(0x274,'\x33\x44\x4e\x6d')](),_0x27020c(0x29e,'\x58\x5e\x6b\x65'));return _0xb96be3[_0x27020c(0x32a,'\x41\x65\x26\x79')](_0x328811,_0x323a32[_0x27020c(0x2a7,'\x48\x26\x29\x4f')](_0x4eea02,_0xb96be3[_0x27020c(0x3a0,'\x61\x74\x53\x69')]));}else return _0xb96be3[_0x27020c(0x1e3,'\x4e\x26\x43\x68')];}if(!_0x1bb9bf[_0x27020c(0x2be,'\x6b\x7a\x73\x23')]())return _0xb96be3[_0x27020c(0x272,'\x2a\x33\x59\x68')];const _0x5ad3e5=_0xb96be3[_0x27020c(0x39c,'\x48\x26\x29\x4f')](_0x1bb9bf['\x6d\x6f\x64\x65'],0x1165+0x202d+-0x2f93);if(_0xb96be3['\x46\x52\x5a\x6d\x73'](_0xb96be3['\x62\x48\x4f\x75\x7a'](_0x5ad3e5,0x529+0xaf*-0x4+-0x22e),-0x13e*0x16+-0x425*-0x5+0x69b))return _0xb96be3[_0x27020c(0x334,'\x64\x6e\x6c\x4b')];if(_0xb96be3[_0x27020c(0x357,'\x5e\x6c\x58\x44')](_0xb96be3[_0x27020c(0x270,'\x46\x75\x70\x66')](_0x5ad3e5,0x1*-0xa1+-0x65f+0x707),0x1e8d+-0x13d3+-0xaba*0x1))return _0xb96be3[_0x27020c(0x349,'\x47\x44\x4b\x43')];return _0xb96be3[_0x27020c(0x235,'\x24\x4e\x78\x67')];}function _0x310b5a(){return _0x17314e['\x72\x65\x73\x6f\x6c\x76\x65'](__dirname,'\x2e\x2e','\x2e\x2e');}function _0x3c6c95(_0x5b9213,_0x5cc5f0){const _0x52b586=_0x1a6091,_0x1d20a4={};_0x1d20a4[_0x52b586(0x1bc,'\x52\x57\x2a\x77')]=function(_0x20fca0,_0x14fac3){return _0x20fca0+_0x14fac3;};const _0x34c242=_0x1d20a4;try{const _0x307284=_0x30a822[_0x52b586(0x351,'\x5b\x21\x23\x30')+_0x52b586(0x373,'\x58\x5e\x6b\x65')](_0x5b9213),_0x137736=_0x30a822[_0x52b586(0x29a,'\x4e\x26\x43\x68')+_0x52b586(0x365,'\x33\x44\x4e\x6d')](_0x5cc5f0);return _0x137736[_0x52b586(0x277,'\x28\x42\x4a\x56')+'\x74\x68'](_0x34c242[_0x52b586(0x2f1,'\x33\x44\x4e\x6d')](_0x307284,_0x17314e[_0x52b586(0x21b,'\x4d\x4d\x7a\x4c')]))?_0x137736:null;}catch(_0x4a5bb3){return null;}}function _0x3e1f(){const _0x1c15c0=['\x44\x77\x70\x64\x49\x6d\x6b\x65\x66\x33\x70\x63\x47\x61','\x57\x35\x64\x64\x4f\x43\x6b\x75\x57\x35\x69\x4f','\x67\x31\x5a\x63\x52\x4e\x34\x46','\x57\x35\x4a\x63\x52\x53\x6f\x66\x57\x37\x4a\x63\x4b\x61','\x57\x36\x66\x64\x57\x4f\x65\x56\x6d\x57','\x44\x67\x70\x64\x4d\x53\x6b\x7a\x67\x67\x30','\x57\x50\x6a\x44\x57\x50\x78\x64\x4f\x59\x61','\x75\x6d\x6b\x62\x73\x53\x6f\x6e','\x63\x58\x46\x64\x56\x4e\x48\x67\x6b\x63\x57','\x44\x38\x6f\x61\x57\x50\x33\x63\x4a\x38\x6b\x6f\x57\x36\x46\x64\x54\x48\x43','\x46\x61\x43\x45\x57\x4f\x76\x51','\x57\x36\x4f\x30\x57\x50\x71\x76\x77\x38\x6b\x2f\x73\x4e\x53','\x6e\x5a\x6e\x75\x42\x66\x4f\x67\x6e\x68\x65','\x6e\x4e\x5a\x63\x52\x77\x71\x59','\x57\x51\x6c\x63\x54\x5a\x39\x69\x68\x47','\x77\x59\x44\x48\x74\x61\x42\x64\x4d\x61','\x73\x53\x6b\x43\x73\x61','\x57\x50\x68\x63\x53\x43\x6f\x76\x57\x50\x70\x63\x55\x61','\x62\x43\x6f\x56\x6c\x76\x35\x31\x57\x34\x30\x6b\x57\x51\x30','\x78\x68\x54\x32','\x41\x31\x37\x63\x48\x38\x6b\x67\x6b\x64\x42\x64\x56\x6d\x6b\x49','\x6a\x43\x6f\x41\x66\x6d\x6b\x49\x57\x4f\x38','\x57\x52\x42\x64\x52\x43\x6f\x6c\x57\x52\x76\x66\x74\x61','\x57\x52\x37\x63\x49\x73\x31\x50\x6b\x71','\x57\x37\x78\x64\x4c\x43\x6b\x6b\x57\x36\x6d','\x45\x43\x6b\x77\x61\x4e\x68\x63\x51\x61','\x6a\x38\x6f\x4d\x61\x6d\x6b\x6e\x57\x4f\x42\x63\x55\x64\x58\x73','\x57\x37\x68\x63\x56\x43\x6f\x43\x57\x35\x37\x63\x55\x63\x34','\x6f\x43\x6f\x58\x6b\x6d\x6b\x62\x57\x51\x38','\x66\x6d\x6b\x50\x62\x4a\x52\x64\x4f\x6d\x6f\x44','\x57\x50\x54\x6d\x57\x37\x72\x77\x57\x52\x68\x63\x55\x59\x4a\x63\x53\x47','\x73\x4e\x31\x72\x65\x4c\x52\x63\x53\x74\x79\x5a','\x6b\x53\x6f\x38\x6b\x30\x72\x48\x57\x34\x6d\x44\x57\x50\x4f','\x57\x35\x52\x64\x53\x62\x79\x57\x57\x4f\x42\x64\x49\x38\x6f\x36\x6b\x71','\x43\x75\x68\x63\x52\x53\x6f\x65\x57\x50\x2f\x64\x47\x38\x6f\x38\x57\x36\x38\x6e\x57\x34\x6c\x64\x4e\x61','\x57\x34\x66\x4b\x41\x38\x6b\x61\x57\x34\x37\x63\x51\x53\x6b\x55\x66\x71','\x72\x6d\x6f\x38\x77\x67\x2f\x63\x55\x6d\x6b\x46\x57\x50\x66\x63\x78\x58\x70\x63\x51\x67\x65','\x6a\x75\x4b\x44\x43\x53\x6f\x75\x57\x37\x4f\x51\x66\x47','\x57\x36\x6c\x64\x4d\x43\x6b\x74\x57\x36\x74\x63\x47\x4d\x2f\x63\x53\x4e\x79','\x62\x74\x56\x64\x50\x4d\x76\x71\x57\x35\x48\x57\x57\x37\x75','\x6e\x58\x64\x64\x4a\x76\x39\x6f\x57\x37\x76\x67\x57\x35\x38','\x6e\x67\x64\x63\x54\x67\x30\x4c\x57\x34\x76\x63\x57\x37\x38','\x57\x36\x62\x37\x57\x50\x38\x66\x6e\x4c\x61','\x77\x5a\x53\x4e\x57\x52\x62\x6f\x57\x4f\x58\x6f','\x57\x51\x56\x64\x49\x53\x6f\x76\x57\x51\x58\x56','\x57\x51\x52\x63\x55\x5a\x4c\x73\x6f\x63\x66\x41\x61\x47','\x76\x53\x6b\x77\x78\x53\x6f\x65\x78\x38\x6f\x73\x57\x4f\x6d\x72','\x43\x43\x6f\x41\x57\x50\x56\x63\x54\x43\x6f\x71\x57\x36\x37\x64\x51\x48\x53','\x79\x4d\x4a\x64\x4a\x38\x6b\x79','\x57\x34\x2f\x64\x54\x61\x5a\x64\x49\x43\x6b\x65\x63\x43\x6f\x46','\x57\x50\x2f\x64\x52\x76\x34\x56\x57\x35\x5a\x64\x52\x32\x69\x30','\x64\x5a\x39\x6f\x42\x33\x61','\x57\x51\x37\x63\x4b\x63\x6a\x72\x6f\x47','\x57\x51\x4a\x63\x56\x5a\x31\x71\x6e\x49\x47','\x57\x36\x6a\x6d\x7a\x6d\x6b\x64\x57\x35\x75','\x44\x53\x6f\x41\x57\x50\x68\x63\x4a\x38\x6b\x44\x57\x36\x46\x64\x56\x62\x38','\x61\x48\x6e\x53\x75\x67\x65','\x57\x50\x48\x4e\x57\x35\x62\x55\x57\x51\x4f','\x73\x6d\x6b\x43\x75\x6d\x6f\x79\x74\x43\x6f\x73\x57\x50\x71\x73','\x6e\x71\x34\x51\x6f\x61','\x64\x4e\x34\x6a\x57\x37\x52\x64\x51\x65\x33\x63\x49\x38\x6f\x4d','\x64\x53\x6b\x30\x62\x48\x4a\x64\x4c\x61','\x75\x6d\x6f\x31\x57\x36\x57\x51\x78\x47','\x61\x62\x31\x30\x57\x35\x50\x72\x67\x43\x6f\x2b\x62\x47','\x64\x61\x66\x31\x57\x34\x30\x6a\x66\x6d\x6f\x2f\x6f\x61','\x57\x35\x78\x64\x53\x4d\x57\x59\x57\x37\x53','\x65\x31\x61\x4b\x44\x62\x2f\x63\x53\x6d\x6b\x72\x57\x35\x6d','\x61\x43\x6f\x36\x6b\x30\x7a\x47\x57\x34\x38\x6c','\x57\x37\x70\x64\x4d\x30\x61\x4f\x57\x34\x6d','\x41\x38\x6f\x75\x57\x4f\x5a\x63\x55\x38\x6b\x48\x57\x36\x56\x64\x51\x47\x34','\x57\x52\x37\x63\x48\x57\x6d\x45\x57\x51\x37\x63\x54\x6d\x6f\x77\x57\x35\x56\x63\x47\x48\x4a\x64\x4e\x58\x38\x36','\x76\x62\x35\x77\x71\x48\x65\x47\x57\x51\x38','\x6a\x77\x78\x63\x52\x4d\x6d\x75\x57\x35\x62\x2b\x57\x36\x69','\x57\x35\x62\x44\x57\x4f\x71\x35\x68\x47','\x44\x33\x74\x64\x4c\x6d\x6b\x74\x61\x4c\x78\x63\x49\x53\x6b\x72','\x66\x75\x4f\x49\x46\x71\x46\x63\x4f\x71','\x57\x50\x33\x63\x55\x62\x7a\x4a\x6f\x61','\x57\x34\x65\x75\x57\x34\x54\x69\x70\x61','\x76\x53\x6b\x62\x46\x71','\x72\x49\x31\x4d\x78\x64\x33\x64\x4c\x77\x6a\x30','\x66\x49\x78\x64\x4f\x67\x76\x48\x57\x34\x30','\x57\x50\x70\x63\x51\x72\x6e\x55\x63\x61','\x57\x34\x33\x64\x48\x53\x6b\x36\x57\x35\x57\x6a\x71\x61','\x66\x75\x35\x72\x63\x66\x6d','\x57\x4f\x5a\x63\x4a\x6d\x6f\x6a\x57\x52\x68\x63\x55\x47','\x6e\x57\x33\x64\x52\x38\x6b\x43\x57\x34\x68\x64\x54\x61','\x57\x52\x52\x63\x47\x6d\x6f\x31\x57\x50\x64\x63\x49\x71','\x44\x77\x70\x64\x4e\x57','\x65\x71\x54\x6f\x57\x35\x54\x67\x65\x6d\x6f\x55\x62\x47','\x57\x52\x7a\x4d\x57\x50\x34','\x57\x35\x38\x79\x57\x35\x54\x76\x64\x57','\x57\x52\x74\x63\x4a\x53\x6f\x73\x57\x52\x78\x64\x4b\x74\x56\x63\x4f\x75\x46\x63\x4c\x6d\x6f\x34\x61\x38\x6b\x53','\x57\x35\x56\x64\x54\x75\x50\x66\x57\x37\x57','\x44\x43\x6b\x38\x63\x75\x68\x63\x4c\x71','\x63\x47\x72\x35\x74\x4d\x75\x55\x68\x31\x34','\x71\x58\x35\x63\x76\x71\x65\x2b\x57\x4f\x74\x64\x56\x61','\x41\x53\x6b\x50\x6a\x71','\x57\x35\x71\x43\x57\x35\x4c\x6b\x6c\x71\x7a\x59\x78\x57','\x77\x63\x31\x48\x71\x64\x52\x64\x4b\x71','\x79\x76\x7a\x72\x65\x57','\x57\x36\x79\x53\x57\x36\x30','\x57\x4f\x35\x64\x57\x37\x6e\x75\x57\x51\x70\x63\x56\x5a\x37\x63\x50\x47','\x71\x43\x6b\x66\x75\x6d\x6f\x65\x77\x43\x6f\x77\x57\x4f\x76\x75','\x63\x72\x78\x64\x53\x43\x6b\x41\x57\x37\x53','\x57\x34\x39\x57\x79\x73\x6c\x64\x50\x38\x6b\x34\x6d\x48\x69','\x57\x36\x70\x64\x48\x33\x61\x7a','\x57\x36\x69\x4a\x57\x37\x66\x4f\x68\x49\x44\x2f\x43\x61','\x57\x36\x4a\x63\x55\x53\x6f\x65\x57\x34\x4a\x63\x53\x4a\x78\x64\x54\x71','\x57\x36\x6c\x64\x49\x4c\x38','\x74\x31\x4b\x33\x64\x71','\x77\x43\x6b\x61\x46\x53\x6b\x6d\x64\x73\x64\x64\x50\x5a\x30','\x6a\x53\x6f\x53\x69\x68\x4c\x2b','\x68\x38\x6b\x57\x64\x71\x64\x64\x52\x38\x6f\x6b\x57\x52\x4c\x50','\x6c\x38\x6b\x57\x69\x47\x2f\x64\x51\x57','\x65\x53\x6b\x52\x67\x71','\x57\x36\x42\x64\x53\x78\x6a\x2f\x57\x36\x4e\x63\x4c\x49\x30\x65','\x77\x59\x38\x32\x57\x51\x54\x61\x57\x50\x48\x6f\x57\x50\x61','\x6f\x68\x34\x51\x57\x36\x68\x64\x53\x65\x33\x63\x4e\x6d\x6f\x4d','\x57\x50\x56\x63\x4c\x61\x35\x57\x62\x47\x44\x39\x45\x71','\x57\x35\x74\x64\x50\x4c\x34','\x57\x36\x2f\x64\x4e\x31\x54\x6f\x57\x37\x4a\x64\x54\x6d\x6b\x35\x57\x37\x53','\x64\x63\x6d\x32\x57\x37\x6c\x64\x51\x30\x47','\x74\x6d\x6b\x67\x78\x43\x6f\x33\x73\x53\x6f\x78\x57\x50\x61\x43','\x76\x38\x6b\x77\x74\x43\x6f\x45\x73\x53\x6f\x62\x57\x51\x47\x77','\x45\x58\x44\x74\x42\x62\x33\x64\x52\x31\x39\x63','\x6d\x65\x4f\x49\x43\x63\x47','\x76\x6d\x6b\x67\x74\x6d\x6f\x61','\x77\x33\x58\x55\x62\x33\x5a\x63\x4a\x63\x75\x4b','\x78\x57\x30\x36\x57\x51\x35\x68\x57\x50\x7a\x6d\x57\x34\x47','\x57\x35\x72\x47\x43\x71\x56\x64\x53\x53\x6b\x52\x66\x62\x61','\x44\x53\x6f\x42\x46\x4c\x42\x64\x4c\x57','\x43\x53\x6b\x73\x64\x4e\x6c\x63\x54\x47','\x7a\x38\x6b\x6e\x7a\x53\x6b\x65\x69\x74\x69','\x62\x48\x37\x64\x4d\x4d\x58\x4c','\x7a\x4e\x7a\x43\x62\x31\x30','\x64\x65\x64\x63\x4e\x65\x62\x4f\x78\x33\x57\x2f','\x57\x35\x71\x44\x57\x35\x38\x77\x46\x76\x71','\x57\x37\x42\x63\x55\x53\x6f\x6f','\x57\x36\x4e\x64\x48\x76\x31\x68\x57\x36\x64\x64\x50\x43\x6b\x75','\x68\x53\x6b\x51\x61\x71\x64\x64\x52\x43\x6f\x69\x57\x51\x4c\x4a','\x57\x4f\x42\x64\x4a\x38\x6f\x38\x57\x50\x31\x2b\x7a\x57','\x57\x51\x4a\x63\x4c\x59\x4c\x6d\x63\x61','\x57\x51\x48\x33\x57\x34\x31\x46\x41\x53\x6b\x35\x45\x4d\x70\x64\x4e\x72\x57','\x65\x62\x4e\x64\x56\x32\x4c\x52\x6a\x71','\x66\x6d\x6b\x53\x64\x47\x68\x64\x47\x38\x6f\x75\x57\x51\x64\x63\x4a\x78\x58\x56','\x57\x36\x70\x64\x4b\x6d\x6b\x61\x57\x36\x64\x63\x48\x68\x37\x63\x4e\x32\x79','\x44\x65\x46\x63\x4e\x43\x6b\x6e','\x66\x6d\x6b\x31\x57\x51\x35\x44\x72\x4d\x6a\x39\x6d\x4a\x34\x61','\x64\x58\x46\x64\x4e\x66\x72\x66','\x57\x37\x61\x5a\x57\x52\x6d\x6f\x71\x38\x6b\x50','\x65\x71\x76\x50\x42\x65\x79','\x6a\x58\x78\x64\x54\x6d\x6b\x71\x57\x34\x68\x64\x50\x38\x6f\x74\x57\x36\x4b','\x57\x50\x4a\x63\x54\x72\x4f','\x57\x37\x31\x42\x72\x58\x33\x64\x4e\x43\x6b\x6c\x6c\x59\x47','\x75\x43\x6f\x39\x46\x66\x78\x64\x50\x43\x6f\x30\x57\x50\x6c\x63\x4e\x57','\x57\x51\x4a\x64\x4c\x53\x6b\x77\x57\x36\x6c\x63\x4a\x57','\x64\x47\x66\x59\x57\x34\x6d\x6a\x66\x53\x6f\x50\x6e\x47','\x57\x35\x42\x64\x4e\x61\x43\x54\x57\x4f\x6c\x64\x53\x43\x6f\x36\x66\x57','\x57\x51\x76\x47\x57\x50\x56\x64\x49\x63\x47','\x57\x35\x39\x51\x79\x43\x6b\x6c','\x73\x6d\x6b\x77\x73\x38\x6f\x62\x71\x6d\x6f\x44\x57\x51\x47\x75','\x66\x58\x4c\x37\x72\x33\x69\x4a\x6e\x66\x43','\x57\x37\x42\x63\x53\x6d\x6f\x42\x57\x35\x37\x63\x56\x5a\x70\x64\x51\x71','\x65\x71\x39\x39\x57\x35\x57','\x61\x43\x6f\x4a\x6d\x43\x6b\x63\x57\x51\x38','\x57\x37\x70\x64\x53\x65\x39\x66\x57\x37\x4e\x63\x50\x64\x53\x64','\x44\x66\x2f\x64\x54\x43\x6b\x53\x66\x47','\x61\x32\x7a\x39\x57\x36\x34\x6b\x57\x35\x79\x61\x57\x50\x71','\x57\x50\x4c\x6f\x57\x52\x52\x64\x48\x61','\x70\x6d\x6f\x38\x6e\x43\x6b\x70\x57\x52\x46\x63\x54\x63\x7a\x71','\x57\x4f\x4e\x63\x4e\x57\x76\x54\x64\x71\x50\x47\x41\x61','\x62\x6d\x6b\x50\x62\x4a\x5a\x64\x51\x57','\x6f\x66\x53\x73\x43\x38\x6f\x47\x57\x34\x57\x50\x68\x71','\x57\x35\x69\x57\x57\x50\x4b\x66\x7a\x57','\x57\x36\x78\x64\x48\x76\x62\x67\x57\x37\x4f','\x57\x36\x2f\x64\x4e\x31\x54\x6f\x57\x37\x4a\x64\x54\x61','\x45\x63\x70\x64\x50\x64\x39\x47\x74\x67\x30\x53\x57\x51\x70\x64\x47\x71','\x6e\x58\x71\x48\x63\x77\x35\x54\x57\x52\x42\x64\x50\x71','\x6f\x30\x38\x65\x43\x71\x47','\x74\x53\x6b\x6a\x62\x57\x58\x4a\x41\x53\x6b\x39\x57\x4f\x4f','\x62\x4c\x71\x4b\x79\x62\x64\x63\x48\x43\x6b\x6d\x57\x37\x34','\x57\x35\x46\x64\x49\x68\x72\x47\x57\x37\x64\x63\x47\x61\x53\x50','\x57\x36\x6c\x64\x4a\x78\x43\x71\x57\x37\x2f\x64\x4c\x75\x34\x66','\x6a\x58\x42\x64\x53\x38\x6b\x62\x57\x34\x37\x64\x55\x53\x6f\x49\x57\x36\x75','\x41\x76\x33\x63\x49\x53\x6b\x61\x70\x71','\x57\x34\x5a\x64\x51\x62\x4e\x64\x4c\x38\x6b\x6f\x68\x53\x6f\x4c\x75\x57','\x57\x4f\x68\x64\x4d\x53\x6f\x35\x57\x50\x48\x6d\x41\x33\x68\x63\x4a\x61','\x78\x47\x65\x39\x57\x52\x48\x69','\x57\x4f\x58\x6f\x57\x52\x2f\x64\x4e\x61\x47\x55','\x57\x4f\x6c\x63\x53\x72\x39\x57\x57\x4f\x42\x63\x52\x30\x57\x63\x57\x50\x61\x70\x63\x71\x71','\x57\x35\x7a\x4e\x43\x53\x6b\x52\x57\x34\x53','\x57\x37\x70\x64\x56\x76\x48\x64\x57\x35\x70\x63\x51\x59\x30\x50','\x57\x34\x33\x64\x53\x58\x43\x4a\x57\x4f\x74\x64\x49\x57','\x57\x34\x5a\x64\x4b\x6d\x6b\x62\x57\x37\x52\x63\x53\x47','\x76\x53\x6f\x58\x74\x30\x68\x64\x55\x43\x6f\x4b\x57\x50\x6c\x63\x4c\x61','\x57\x34\x69\x64\x57\x35\x66\x69\x70\x47\x44\x46\x61\x47','\x61\x58\x33\x64\x4e\x65\x50\x48','\x57\x35\x76\x37\x44\x47\x56\x64\x53\x6d\x6b\x56\x68\x61\x47','\x57\x4f\x6c\x63\x56\x49\x35\x6e\x6c\x71','\x57\x37\x76\x2b\x79\x4a\x33\x64\x4d\x61','\x57\x37\x30\x47\x57\x34\x31\x72\x69\x57','\x57\x36\x33\x64\x4d\x43\x6b\x6c','\x57\x4f\x7a\x45\x57\x34\x66\x75\x57\x50\x6c\x63\x54\x59\x4a\x63\x54\x47','\x64\x78\x50\x2b\x6c\x77\x61','\x74\x73\x30\x4c\x57\x52\x4c\x78','\x66\x6d\x6f\x53\x63\x6d\x6b\x57\x57\x50\x61','\x7a\x67\x4e\x64\x4c\x38\x6b\x68\x68\x4d\x42\x63\x4b\x43\x6b\x51','\x57\x50\x6c\x63\x54\x58\x72\x50\x61\x53\x6f\x41','\x6a\x72\x56\x64\x48\x4b\x76\x71\x57\x37\x48\x71\x57\x35\x75','\x64\x77\x7a\x32\x68\x57','\x6f\x77\x6e\x38\x62\x68\x53','\x6a\x30\x30\x66\x45\x43\x6f\x4e\x57\x36\x43\x7a\x68\x47','\x62\x58\x68\x64\x54\x68\x48\x72\x6e\x71','\x78\x5a\x4f\x57\x57\x52\x6e\x76\x57\x50\x50\x70','\x6b\x38\x6f\x4a\x6b\x43\x6b\x69\x57\x50\x37\x63\x54\x64\x4f','\x73\x53\x6f\x37\x73\x71','\x70\x6d\x6f\x57\x6e\x38\x6b\x72\x57\x4f\x68\x63\x4f\x59\x31\x74','\x6d\x32\x69\x46\x57\x35\x37\x64\x4c\x61','\x67\x38\x6b\x51\x61\x63\x2f\x64\x52\x6d\x6f\x69\x57\x52\x4c\x54','\x65\x62\x4e\x64\x56\x32\x4b','\x57\x34\x68\x64\x55\x4b\x43\x34\x57\x34\x4e\x64\x48\x4e\x65\x32','\x69\x6d\x6f\x46\x63\x77\x58\x66','\x6c\x65\x4e\x63\x4f\x33\x35\x6d\x45\x4b\x43\x61','\x57\x37\x54\x58\x57\x50\x69','\x57\x35\x4e\x64\x54\x74\x70\x64\x4b\x43\x6b\x79','\x42\x6d\x6b\x4b\x65\x33\x42\x63\x4b\x65\x4e\x64\x55\x71','\x66\x71\x66\x4a\x57\x34\x6e\x75\x64\x6d\x6f\x37\x6f\x47','\x42\x43\x6b\x61\x45\x6d\x6b\x6c\x67\x57','\x67\x32\x50\x4a\x62\x76\x4e\x64\x49\x71','\x71\x48\x35\x72\x74\x58\x71\x54\x57\x51\x2f\x64\x55\x57','\x57\x36\x52\x64\x4a\x63\x53\x42\x57\x51\x2f\x64\x56\x53\x6f\x72\x6a\x61','\x68\x6d\x6f\x47\x6b\x32\x50\x4d\x57\x34\x38\x45\x57\x4f\x4f','\x57\x4f\x56\x64\x4b\x53\x6f\x39\x57\x4f\x31\x6e','\x78\x6d\x6b\x2b\x70\x73\x79','\x57\x50\x2f\x64\x56\x43\x6f\x33\x57\x51\x50\x64','\x57\x37\x42\x64\x49\x48\x69\x33\x57\x4f\x61','\x72\x53\x6f\x58\x74\x4b\x74\x64\x55\x43\x6f\x4c\x57\x50\x56\x63\x52\x47','\x57\x50\x35\x61\x57\x4f\x78\x64\x48\x62\x38\x4a\x6e\x68\x65','\x57\x36\x33\x64\x53\x62\x75\x79\x57\x51\x79','\x57\x34\x58\x47\x79\x64\x57','\x67\x4c\x70\x63\x48\x31\x4c\x47\x71\x77\x71\x38','\x64\x77\x7a\x4d\x62\x32\x78\x64\x4a\x74\x4f\x46','\x57\x36\x37\x63\x51\x53\x6f\x66\x57\x35\x6d','\x72\x76\x52\x63\x47\x43\x6b\x78\x67\x57','\x73\x53\x6b\x43\x73\x38\x6f\x33\x73\x43\x6f\x41\x57\x50\x53\x43','\x57\x36\x66\x58\x57\x50\x53\x63\x70\x65\x44\x56\x66\x61','\x78\x32\x66\x32','\x65\x62\x66\x2f\x74\x68\x4b\x5a\x64\x4c\x75','\x66\x4d\x34\x6e\x57\x37\x52\x64\x49\x57','\x6d\x61\x68\x64\x56\x78\x34','\x74\x67\x62\x4e\x57\x37\x78\x63\x51\x53\x6f\x2f\x61\x4b\x71','\x77\x4e\x44\x55\x6b\x68\x42\x63\x48\x58\x30\x58','\x65\x62\x50\x5a\x57\x34\x31\x67\x63\x61','\x64\x48\x46\x64\x54\x33\x48\x6f','\x57\x51\x4c\x4d\x57\x51\x64\x64\x4b\x58\x4b','\x76\x53\x6f\x58\x74\x30\x68\x64\x54\x43\x6f\x31\x57\x51\x4a\x63\x50\x61','\x57\x50\x64\x63\x54\x71\x4c\x4c\x6d\x38\x6f\x70\x57\x37\x64\x64\x48\x57','\x57\x37\x78\x64\x4c\x4b\x65','\x76\x53\x6f\x31\x75\x75\x6d','\x57\x50\x5a\x63\x54\x4a\x6e\x72\x67\x61','\x62\x5a\x4e\x64\x53\x32\x76\x49\x57\x35\x58\x32','\x62\x53\x6b\x68\x6b\x74\x70\x64\x51\x47','\x63\x38\x6f\x58\x73\x31\x4a\x64\x56\x6d\x6f\x58\x57\x50\x6c\x63\x55\x71','\x57\x36\x6c\x64\x53\x75\x79\x4a','\x57\x34\x4a\x64\x49\x6d\x6b\x65\x57\x37\x56\x63\x53\x57','\x6e\x47\x38\x4b','\x57\x51\x61\x54\x57\x35\x31\x64\x7a\x4b\x6a\x42\x6d\x43\x6f\x63\x57\x34\x46\x64\x55\x71','\x62\x66\x69\x50\x46\x71\x4a\x63\x4f\x43\x6b\x49\x57\x36\x69','\x57\x52\x68\x63\x56\x5a\x71','\x61\x77\x34\x72\x44\x49\x43','\x57\x34\x44\x31\x45\x53\x6b\x6d\x57\x34\x37\x63\x51\x47','\x6d\x72\x46\x64\x4a\x38\x6b\x45\x57\x35\x34','\x57\x36\x6e\x57\x46\x73\x69','\x61\x43\x6b\x53\x77\x53\x6b\x51\x66\x48\x4e\x64\x56\x57','\x75\x38\x6b\x65\x42\x53\x6f\x42\x79\x57','\x69\x6d\x6f\x77\x6b\x43\x6b\x71\x57\x51\x65','\x57\x35\x39\x32\x7a\x38\x6b\x6c','\x57\x52\x54\x2f\x57\x37\x72\x2f\x57\x51\x38','\x6c\x49\x33\x64\x50\x33\x35\x50','\x57\x37\x4f\x56\x57\x50\x53\x75\x77\x38\x6b\x2b\x41\x68\x65','\x57\x35\x4f\x76\x57\x52\x71\x6d\x57\x34\x5a\x63\x4a\x49\x5a\x63\x56\x6d\x6f\x64\x71\x43\x6b\x35','\x69\x32\x70\x63\x4c\x66\x53\x65\x57\x36\x6a\x50\x57\x36\x71','\x57\x35\x42\x64\x4b\x6d\x6b\x6e\x57\x34\x61\x6d\x76\x38\x6b\x67\x57\x4f\x47','\x57\x51\x4e\x63\x56\x59\x48\x70\x70\x64\x72\x47\x71\x57','\x57\x36\x70\x63\x4d\x59\x61\x59','\x6d\x6d\x6f\x79\x61\x78\x4c\x63\x57\x36\x38\x39\x57\x51\x61','\x72\x53\x6f\x37\x75\x30\x70\x64\x53\x43\x6f\x55\x57\x50\x4e\x63\x52\x47','\x57\x51\x35\x7a\x57\x37\x35\x34\x57\x50\x4f','\x57\x52\x62\x77\x57\x50\x4a\x64\x50\x62\x75','\x71\x43\x6f\x37\x75\x30\x37\x64\x56\x71','\x57\x37\x56\x64\x4e\x33\x4b\x6a\x57\x35\x4b','\x57\x35\x6c\x64\x52\x62\x4f\x53','\x62\x53\x6f\x4e\x69\x76\x53','\x57\x51\x72\x57\x57\x4f\x78\x64\x52\x72\x30\x66\x65\x63\x57','\x57\x34\x48\x36\x77\x47\x46\x64\x4a\x43\x6b\x7a\x67\x71\x38','\x57\x36\x4f\x30\x57\x50\x71\x74\x46\x6d\x6b\x31\x43\x33\x65','\x57\x36\x4f\x4c\x57\x4f\x65\x74\x72\x53\x6b\x49\x45\x4d\x65','\x6a\x43\x6b\x61\x6b\x58\x37\x64\x4a\x43\x6f\x39\x57\x50\x6e\x6a','\x6d\x63\x6a\x56\x41\x30\x71','\x6a\x57\x56\x64\x55\x6d\x6b\x75\x57\x35\x56\x64\x54\x53\x6f\x65\x57\x36\x30','\x57\x37\x50\x4e\x57\x51\x57\x45\x6f\x31\x58\x2b\x66\x71','\x65\x6d\x6f\x47\x6f\x61','\x57\x35\x66\x47\x46\x53\x6b\x6d\x57\x34\x70\x63\x55\x38\x6b\x75\x64\x47','\x6e\x64\x2f\x63\x4a\x6d\x6f\x46\x73\x68\x6c\x63\x54\x6d\x6b\x49\x78\x38\x6f\x44\x6b\x57','\x6c\x74\x79\x4f\x64\x4d\x30','\x44\x6d\x6b\x4b\x61\x31\x4e\x63\x4a\x76\x70\x64\x52\x30\x57','\x63\x76\x69\x37\x57\x37\x5a\x64\x54\x68\x56\x63\x4d\x38\x6f\x49','\x57\x35\x7a\x63\x57\x51\x75\x36\x66\x67\x76\x76\x69\x61','\x57\x34\x64\x63\x4f\x57\x69\x50\x75\x71','\x44\x30\x2f\x64\x4d\x38\x6b\x75\x57\x36\x33\x64\x4e\x6d\x6f\x67\x57\x34\x75','\x46\x31\x58\x6d\x63\x65\x52\x63\x4f\x57\x61\x75','\x57\x52\x37\x64\x48\x30\x66\x55\x57\x37\x78\x64\x4f\x38\x6b\x2f','\x57\x37\x6a\x36\x57\x50\x34\x45\x63\x4c\x72\x4f\x62\x71','\x57\x36\x6e\x4d\x57\x4f\x75\x70\x6c\x67\x76\x4c\x61\x47','\x57\x34\x78\x64\x48\x53\x6b\x7a','\x71\x38\x6b\x76\x6b\x66\x71','\x57\x35\x31\x37\x7a\x5a\x33\x64\x4e\x43\x6b\x52\x64\x57\x47','\x75\x6d\x6b\x42\x41\x6d\x6b\x36\x6d\x59\x6c\x64\x50\x49\x43','\x57\x36\x52\x64\x48\x47\x4f\x75\x57\x52\x65','\x7a\x67\x70\x64\x49\x6d\x6b\x79\x65\x4d\x46\x63\x49\x43\x6b\x67','\x6c\x38\x6f\x4a\x69\x43\x6b\x37\x57\x4f\x56\x63\x56\x49\x76\x68','\x57\x51\x6a\x48\x57\x50\x42\x63\x53\x71','\x6d\x67\x4e\x63\x52\x33\x47\x35\x57\x35\x48\x5a\x57\x36\x69','\x57\x36\x72\x37\x57\x50\x47\x43\x6a\x4b\x76\x52\x65\x57','\x57\x51\x64\x64\x55\x53\x6f\x68\x57\x51\x58\x66\x74\x4c\x74\x63\x51\x47','\x57\x37\x47\x59\x57\x50\x79\x70','\x6c\x4d\x33\x63\x52\x32\x7a\x4c\x57\x35\x31\x59\x57\x37\x75','\x75\x63\x35\x6d\x77\x61\x47','\x66\x53\x6f\x62\x42\x38\x6b\x6c\x6a\x61\x46\x64\x52\x63\x79','\x57\x37\x64\x63\x4e\x6d\x6f\x7a\x57\x34\x2f\x63\x4b\x47','\x57\x52\x54\x63\x57\x35\x44\x57\x57\x51\x34','\x68\x6d\x6f\x63\x57\x34\x4b\x47\x73\x33\x4c\x6a','\x57\x52\x42\x63\x53\x6d\x6f\x44\x57\x52\x68\x63\x49\x61','\x66\x57\x72\x55\x71\x68\x4b\x47','\x57\x35\x7a\x63\x57\x51\x75\x37\x61\x33\x62\x79\x6c\x57','\x6a\x31\x34\x74\x42\x53\x6f\x52\x57\x34\x57\x57\x61\x57','\x71\x53\x6f\x4c\x78\x30\x2f\x64\x56\x57','\x57\x35\x4c\x51\x41\x38\x6b\x65\x57\x34\x5a\x64\x53\x38\x6b\x56\x61\x47','\x57\x34\x52\x64\x53\x72\x52\x64\x4d\x6d\x6b\x46\x68\x57','\x57\x35\x78\x63\x52\x43\x6f\x74\x57\x36\x70\x63\x52\x47','\x57\x35\x46\x64\x54\x62\x5a\x64\x50\x53\x6b\x6f\x68\x53\x6f\x44\x72\x47','\x6e\x47\x5a\x64\x54\x53\x6b\x30\x57\x37\x75','\x74\x43\x6b\x61\x46\x47','\x57\x4f\x5a\x63\x4c\x38\x6f\x78\x57\x51\x34','\x57\x36\x57\x70\x57\x50\x30\x46\x72\x47','\x74\x38\x6b\x75\x6e\x76\x6c\x63\x54\x4e\x74\x64\x4d\x33\x71','\x57\x34\x56\x64\x50\x47\x65\x30\x57\x50\x78\x64\x4e\x6d\x6f\x62\x67\x71','\x76\x4b\x58\x53\x57\x37\x37\x63\x4b\x38\x6f\x47\x61\x65\x6d','\x6d\x33\x61\x65\x76\x64\x2f\x63\x4b\x6d\x6b\x58\x57\x35\x6d','\x57\x35\x58\x32\x74\x53\x6b\x6d\x57\x34\x37\x63\x54\x38\x6b\x2f\x61\x47','\x64\x49\x64\x64\x47\x4d\x35\x77','\x57\x36\x4f\x4c\x57\x4f\x61\x64\x71\x6d\x6b\x49\x7a\x68\x38','\x6d\x73\x69\x53\x69\x4b\x69','\x73\x53\x6b\x68\x45\x43\x6b\x6f\x64\x73\x74\x64\x51\x59\x38','\x57\x34\x70\x64\x52\x76\x4b\x31\x57\x35\x4e\x64\x51\x32\x69\x49','\x44\x61\x7a\x72\x79\x62\x64\x64\x56\x76\x72\x79','\x6c\x67\x6c\x63\x55\x32\x6a\x6e\x75\x66\x43\x61','\x66\x6d\x6b\x59\x63\x57','\x61\x38\x6f\x35\x6b\x53\x6b\x6c\x57\x52\x57','\x76\x32\x66\x45\x6b\x68\x56\x63\x49\x5a\x79\x4b','\x46\x58\x39\x75\x79\x63\x79','\x44\x67\x46\x64\x4c\x38\x6b\x46','\x57\x34\x39\x48\x43\x49\x64\x64\x4b\x43\x6b\x5a\x61\x58\x34','\x79\x43\x6b\x4c\x43\x6d\x6f\x4c\x42\x53\x6f\x4a\x57\x51\x47\x50','\x57\x34\x78\x64\x47\x4c\x61\x4f\x57\x35\x6d','\x57\x35\x4a\x63\x4c\x59\x57\x6f\x72\x4e\x62\x74\x64\x47','\x76\x6d\x6b\x4c\x72\x53\x6f\x55\x72\x57','\x69\x71\x70\x64\x4e\x75\x62\x7a\x57\x37\x58\x61\x57\x35\x38','\x57\x35\x71\x75\x57\x35\x6a\x71','\x57\x52\x6e\x51\x57\x4f\x74\x64\x54\x5a\x75','\x6f\x67\x64\x63\x54\x67\x53\x59\x57\x36\x35\x59\x57\x36\x71','\x7a\x68\x68\x64\x4e\x57','\x6a\x4e\x4e\x63\x50\x57','\x78\x53\x6f\x34\x57\x50\x46\x63\x48\x43\x6b\x34','\x75\x33\x54\x52\x6d\x4e\x5a\x63\x4a\x63\x75','\x62\x61\x6a\x2b\x57\x34\x44\x76','\x6b\x53\x6f\x39\x6b\x30\x44\x49\x57\x34\x6d\x6d\x57\x50\x4f','\x63\x74\x66\x6b\x73\x68\x53','\x57\x51\x76\x38\x57\x50\x70\x64\x55\x47','\x69\x38\x6f\x49\x63\x53\x6b\x6d\x57\x4f\x69','\x6c\x43\x6b\x38\x69\x71\x56\x64\x54\x47','\x57\x34\x4f\x66\x57\x51\x4f\x30\x42\x53\x6b\x61\x73\x71','\x57\x37\x4c\x64\x78\x62\x4a\x64\x4c\x6d\x6b\x70\x70\x59\x69','\x42\x4c\x7a\x37\x42\x4b\x35\x38\x57\x52\x42\x64\x53\x43\x6b\x37\x43\x57','\x57\x34\x7a\x47\x41\x43\x6b\x78\x57\x34\x70\x63\x54\x47','\x78\x67\x66\x39\x6d\x32\x70\x63\x48\x59\x79\x45','\x70\x6d\x6f\x56\x65\x53\x6b\x5a\x57\x4f\x30','\x57\x36\x78\x64\x4b\x6d\x6b\x6d\x57\x36\x4a\x63\x4a\x33\x37\x63\x53\x4d\x4b','\x75\x6d\x6b\x42\x41\x6d\x6b\x36\x6e\x59\x78\x64\x4f\x49\x30','\x45\x53\x6f\x4c\x57\x37\x43\x7a','\x79\x65\x44\x38\x57\x36\x2f\x63\x55\x61','\x57\x36\x2f\x64\x49\x47\x43\x67\x57\x50\x4b','\x73\x6d\x6b\x70\x43\x38\x6b\x69\x6e\x59\x2f\x64\x53\x74\x53','\x45\x30\x72\x78\x64\x66\x74\x63\x53\x48\x30\x72','\x76\x53\x6b\x77\x74\x53\x6f\x44\x72\x53\x6f\x62\x57\x50\x69\x44','\x65\x38\x6b\x47\x67\x74\x42\x64\x52\x43\x6f\x6d','\x57\x35\x7a\x33\x42\x43\x6b\x65\x57\x35\x74\x63\x55\x38\x6b\x64\x62\x47','\x6b\x71\x71\x58\x6a\x77\x6a\x4d\x57\x52\x38','\x57\x4f\x70\x64\x49\x53\x6f\x52\x57\x50\x71','\x64\x6d\x6f\x2f\x6a\x33\x6a\x6f','\x7a\x67\x52\x64\x4b\x53\x6b\x6f\x66\x78\x68\x63\x55\x53\x6b\x63','\x70\x4b\x43\x34\x43\x61\x5a\x63\x50\x47','\x57\x36\x42\x64\x53\x75\x4b','\x57\x35\x78\x64\x52\x48\x46\x64\x4c\x57','\x6c\x38\x6f\x32\x6a\x43\x6b\x6c\x57\x50\x33\x63\x56\x5a\x58\x4f','\x57\x34\x5a\x63\x4b\x6d\x6f\x55\x57\x36\x6c\x63\x48\x61\x52\x64\x4c\x6d\x6f\x47','\x57\x37\x37\x64\x4c\x4c\x79','\x57\x34\x64\x63\x4c\x5a\x57\x48\x77\x4d\x7a\x65','\x57\x37\x66\x39\x57\x4f\x71','\x68\x53\x6b\x33\x63\x4a\x53','\x57\x34\x52\x64\x52\x57\x4f','\x57\x34\x34\x42\x57\x35\x4b','\x71\x6d\x6b\x41\x77\x6d\x6f\x6e\x78\x6d\x6f\x68','\x71\x53\x6b\x72\x44\x38\x6f\x61\x71\x61','\x72\x6d\x6f\x36\x73\x76\x37\x64\x4a\x38\x6f\x4d\x57\x50\x78\x63\x56\x47','\x70\x4b\x65\x75\x75\x43\x6f\x34','\x69\x73\x7a\x74\x7a\x75\x65\x63\x6f\x78\x47','\x57\x37\x50\x36\x57\x4f\x30','\x44\x76\x58\x58\x62\x32\x43','\x57\x4f\x2f\x63\x52\x43\x6f\x4b\x57\x51\x33\x63\x4b\x47','\x71\x67\x37\x64\x4c\x43\x6b\x4e\x63\x61','\x6d\x75\x6c\x63\x53\x66\x39\x6c','\x70\x43\x6f\x57\x6e\x47','\x41\x6d\x6b\x57\x65\x4d\x33\x63\x4f\x66\x46\x64\x55\x76\x6d','\x78\x4b\x56\x63\x4f\x6d\x6b\x58\x6b\x71','\x57\x51\x66\x65\x57\x52\x33\x64\x48\x4a\x53','\x76\x72\x76\x65\x75\x61','\x75\x53\x6f\x37\x74\x31\x5a\x64\x4f\x38\x6f\x33\x57\x50\x42\x63\x51\x61','\x69\x31\x47\x7a\x7a\x43\x6f\x4d\x57\x37\x79\x49','\x57\x35\x71\x35\x57\x36\x7a\x6d\x62\x71','\x64\x32\x50\x37\x63\x66\x70\x64\x47\x4a\x34','\x57\x36\x37\x64\x49\x43\x6b\x68\x57\x35\x6c\x63\x48\x67\x37\x63\x49\x4e\x4f','\x6f\x57\x71\x31\x70\x32\x48\x53\x57\x4f\x37\x64\x53\x61','\x43\x53\x6b\x63\x42\x53\x6b\x73\x61\x71','\x66\x6d\x6f\x54\x6c\x76\x50\x48\x57\x34\x71\x42\x57\x51\x61','\x71\x53\x6b\x53\x67\x72\x6e\x30','\x74\x68\x44\x50\x6e\x68\x5a\x63\x4b\x63\x43\x4c','\x57\x52\x37\x63\x47\x71\x58\x68\x66\x61','\x41\x38\x6f\x41\x57\x52\x70\x63\x56\x38\x6b\x6a\x57\x36\x70\x64\x56\x74\x4b','\x57\x37\x71\x50\x57\x4f\x79\x75\x72\x53\x6b\x49\x45\x47','\x41\x4d\x2f\x64\x49\x6d\x6b\x79\x65\x4d\x56\x63\x47\x47','\x6f\x33\x70\x63\x4f\x4e\x48\x61\x46\x75\x79\x6c','\x6f\x71\x68\x64\x50\x66\x7a\x5a','\x43\x38\x6f\x77\x73\x33\x33\x64\x4c\x61','\x76\x43\x6f\x36\x74\x76\x52\x63\x56\x43\x6f\x52\x57\x50\x4a\x63\x51\x61','\x67\x71\x30\x51\x70\x4b\x4f','\x57\x51\x58\x64\x57\x52\x2f\x64\x4d\x63\x57','\x57\x50\x42\x64\x47\x43\x6b\x70\x57\x37\x61\x67\x72\x53\x6b\x36','\x66\x43\x6b\x53\x67\x58\x33\x64\x4f\x71','\x57\x51\x4e\x63\x56\x57\x76\x6c\x70\x63\x6a\x45\x74\x57','\x6e\x4e\x76\x5a\x66\x68\x6d','\x70\x77\x70\x63\x54\x67\x79','\x57\x37\x78\x64\x47\x4c\x54\x53\x57\x34\x57','\x6b\x43\x6f\x49\x69\x6d\x6b\x49\x57\x52\x38','\x73\x53\x6f\x34\x76\x66\x74\x64\x51\x43\x6f\x79\x57\x50\x4a\x63\x55\x71','\x57\x35\x37\x64\x55\x33\x43\x59\x57\x35\x78\x64\x54\x77\x69\x4e','\x57\x36\x7a\x53\x78\x71\x64\x64\x55\x47','\x57\x36\x33\x64\x47\x76\x66\x64','\x66\x53\x6b\x31\x66\x71\x56\x64\x4d\x47','\x63\x59\x64\x64\x47\x31\x44\x66','\x57\x50\x44\x70\x57\x34\x31\x43\x57\x52\x30','\x64\x67\x35\x35\x67\x61','\x45\x53\x6b\x57\x63\x67\x52\x63\x4d\x4c\x34','\x57\x35\x52\x64\x48\x74\x74\x64\x4d\x38\x6b\x4d','\x72\x53\x6f\x59\x77\x77\x4e\x63\x55\x53\x6b\x7a\x57\x36\x50\x4a\x44\x64\x52\x63\x48\x31\x74\x63\x51\x71','\x6c\x61\x71\x43\x6a\x77\x50\x4c\x57\x51\x78\x64\x4e\x57','\x57\x35\x35\x47\x46\x78\x52\x64\x52\x53\x6b\x4c\x64\x48\x79','\x71\x53\x6f\x4c\x57\x36\x57\x33\x42\x71','\x57\x36\x4e\x64\x52\x62\x58\x79\x67\x57\x4c\x31\x41\x71','\x66\x62\x76\x59\x74\x78\x34\x50\x64\x61','\x57\x4f\x30\x54\x69\x67\x6c\x64\x4b\x43\x6b\x7a\x6f\x4a\x53\x34\x67\x71','\x76\x6d\x6b\x46\x78\x53\x6f\x43\x73\x43\x6f\x43\x57\x4f\x75\x75','\x6d\x30\x62\x56\x64\x4d\x53','\x75\x53\x6b\x62\x79\x38\x6b\x6c','\x42\x65\x46\x63\x4a\x6d\x6b\x36\x6e\x61\x33\x64\x54\x6d\x6b\x31','\x57\x35\x35\x39\x57\x51\x75\x45\x6e\x61','\x57\x4f\x52\x63\x4b\x43\x6f\x43\x57\x51\x42\x63\x56\x76\x71','\x62\x43\x6f\x56\x6e\x31\x48\x58\x57\x34\x71\x42\x57\x4f\x57','\x57\x51\x44\x39\x57\x50\x4e\x64\x55\x74\x34','\x69\x67\x58\x35\x64\x75\x4e\x64\x4e\x57','\x57\x35\x70\x63\x4a\x73\x6d\x48\x77\x78\x62\x76\x68\x71','\x74\x43\x6f\x66\x76\x65\x2f\x64\x54\x71','\x6a\x77\x47\x65\x57\x34\x64\x64\x4b\x57','\x61\x48\x66\x50\x72\x77\x6d','\x64\x61\x66\x31\x57\x34\x31\x55\x67\x61','\x62\x4a\x5a\x64\x56\x61','\x57\x35\x70\x63\x4b\x64\x43\x48\x71\x78\x4f','\x69\x6d\x6f\x4a\x6b\x6d\x6b\x2b\x57\x50\x4f','\x62\x67\x4b\x4a\x72\x43\x6f\x74\x57\x35\x38\x73','\x66\x77\x47\x4f\x57\x37\x52\x64\x51\x75\x4f','\x57\x34\x7a\x53\x42\x38\x6b\x6c\x57\x34\x78\x63\x55\x53\x6b\x75\x66\x57','\x57\x4f\x6c\x64\x51\x53\x6f\x56\x57\x50\x7a\x48','\x68\x6d\x6f\x38\x6b\x31\x65','\x6c\x61\x47\x35\x6d\x57','\x72\x73\x4c\x58\x71\x71','\x57\x52\x76\x6b\x57\x52\x4a\x64\x48\x47','\x57\x4f\x64\x64\x4d\x53\x6f\x37\x57\x4f\x4c\x34\x41\x32\x4e\x63\x4b\x61','\x57\x34\x6c\x64\x51\x75\x71\x30','\x57\x50\x42\x63\x48\x38\x6f\x6c\x57\x4f\x31\x76\x66\x6d\x6b\x56\x57\x52\x74\x64\x4b\x78\x30\x68\x74\x71','\x46\x53\x6b\x49\x62\x68\x74\x63\x49\x76\x2f\x64\x55\x68\x47','\x62\x61\x58\x37\x57\x34\x7a\x2b','\x57\x37\x5a\x64\x4b\x4b\x54\x65\x57\x36\x70\x64\x54\x6d\x6b\x35\x57\x37\x43','\x57\x51\x56\x63\x4e\x43\x6f\x70\x57\x52\x74\x63\x53\x61'];_0x3e1f=function(){return _0x1c15c0;};return _0x3e1f();}function _0x5b74d6(_0x199404){const _0x1a4747=_0x1a6091,_0x6a6e1a={'\x4a\x4b\x71\x49\x48':function(_0x54fb20){return _0x54fb20();},'\x65\x47\x63\x77\x57':function(_0x4b4c95,_0x26834a,_0x22645d){return _0x4b4c95(_0x26834a,_0x22645d);},'\x41\x74\x79\x45\x66':_0x1a4747(0x299,'\x63\x69\x44\x66')+_0x1a4747(0x380,'\x41\x65\x26\x79'),'\x72\x75\x6b\x41\x5a':function(_0x42ca66,_0x31d3df){return _0x42ca66(_0x31d3df);},'\x4b\x6b\x6b\x76\x56':function(_0x218b19,_0x4e69dc){return _0x218b19===_0x4e69dc;},'\x69\x76\x62\x6d\x6c':_0x1a4747(0x1c2,'\x45\x42\x41\x54'),'\x4f\x52\x50\x65\x45':_0x1a4747(0x2e0,'\x77\x6d\x6c\x2a')+_0x1a4747(0x308,'\x6b\x23\x69\x69')+'\x6e','\x49\x7a\x66\x78\x49':_0x1a4747(0x231,'\x52\x58\x44\x31')+_0x1a4747(0x2e5,'\x71\x4e\x49\x56'),'\x67\x77\x66\x46\x57':_0x1a4747(0x1bb,'\x42\x35\x36\x67')+'\x6b','\x6c\x42\x6f\x56\x49':_0x1a4747(0x247,'\x4a\x63\x44\x6d')+'\x62','\x66\x62\x48\x68\x6f':function(_0x4e9a65,_0x2faa44){return _0x4e9a65(_0x2faa44);}},_0x55611e=_0x199404||_0x6a6e1a['\x4a\x4b\x71\x49\x48'](_0x310b5a),_0x5b0a22=_0x6a6e1a['\x65\x47\x63\x77\x57'](_0x3c6c95,_0x55611e,_0x17314e[_0x1a4747(0x208,'\x53\x33\x7a\x5e')](_0x55611e,_0x6a6e1a[_0x1a4747(0x38b,'\x34\x76\x50\x4d')])),_0x9feefc=_0x5b0a22&&_0x6a6e1a[_0x1a4747(0x337,'\x57\x50\x38\x6a')](_0x521d30,_0x5b0a22)||{},_0x37f1f3=_0x9feefc&&_0x9feefc[_0x1a4747(0x20d,'\x46\x75\x70\x66')]&&_0x6a6e1a[_0x1a4747(0x21e,'\x35\x5d\x56\x64')](typeof _0x9feefc[_0x1a4747(0x27f,'\x21\x46\x23\x6a')][_0x1a4747(0x342,'\x4d\x4d\x7a\x4c')],_0x6a6e1a[_0x1a4747(0x31a,'\x24\x36\x6b\x4b')])?_0x9feefc[_0x1a4747(0x25a,'\x71\x5b\x78\x36')][_0x1a4747(0x2f6,'\x24\x36\x6b\x4b')]:null,_0xea4233=_0x37f1f3?_0x6a6e1a[_0x1a4747(0x285,'\x33\x45\x32\x49')](_0x3c6c95,_0x55611e,_0x17314e[_0x1a4747(0x26c,'\x25\x31\x4d\x57')](_0x55611e,_0x37f1f3)):null,_0x48cdbd=[_0x6a6e1a[_0x1a4747(0x283,'\x51\x49\x4e\x55')],_0x6a6e1a[_0x1a4747(0x237,'\x57\x50\x38\x6a')],_0x6a6e1a[_0x1a4747(0x23a,'\x4d\x4d\x7a\x4c')],_0x6a6e1a[_0x1a4747(0x356,'\x77\x52\x79\x5a')]],_0x242898={};for(const _0x3734f1 of _0x48cdbd){const _0x1467d0=_0x3c6c95(_0x55611e,_0x17314e[_0x1a4747(0x30b,'\x41\x65\x26\x79')](_0x55611e,_0x3734f1)),_0x3df42c=_0x1467d0?_0x6a6e1a[_0x1a4747(0x30a,'\x2a\x33\x59\x68')](_0x245b51,_0x1467d0):null;if(_0x3df42c)_0x242898[_0x3734f1]=_0x3df42c;}return{'\x70\x61\x63\x6b\x61\x67\x65\x5f\x6a\x73\x6f\x6e\x5f\x68\x61\x73\x68':_0x5b0a22?_0x6a6e1a[_0x1a4747(0x1ca,'\x61\x4f\x28\x43')](_0x245b51,_0x5b0a22):null,'\x63\x6c\x69\x5f\x65\x6e\x74\x72\x79\x5f\x68\x61\x73\x68':_0xea4233?_0x6a6e1a[_0x1a4747(0x212,'\x4e\x26\x43\x68')](_0x245b51,_0xea4233):null,'\x6c\x6f\x63\x6b\x66\x69\x6c\x65\x5f\x68\x61\x73\x68\x65\x73':_0x242898};}function _0x500e9e(_0xa7eb07){const _0x308863=_0x1a6091,_0xe26575={};_0xe26575[_0x308863(0x396,'\x45\x42\x41\x54')]=_0x308863(0x372,'\x52\x58\x44\x31'),_0xe26575['\x6b\x55\x6c\x42\x56']='\x73\x65\x74\x74\x69\x6e\x67\x73'+_0x308863(0x307,'\x6d\x4f\x59\x4f');const _0x1c7921=_0xe26575,_0x3bb95d=_0xa7eb07||process.env,_0x54169b=_0x3bb95d[_0x308863(0x215,'\x45\x42\x41\x54')+_0x308863(0x1ce,'\x33\x45\x32\x49')+_0x308863(0x2cf,'\x21\x46\x23\x6a')]||_0x17314e[_0x308863(0x24e,'\x54\x74\x44\x68')](_0x4efe83[_0x308863(0x30e,'\x39\x5d\x68\x56')](),_0x1c7921[_0x308863(0x381,'\x34\x76\x50\x4d')]);return _0x492d75(_0x17314e[_0x308863(0x38f,'\x5e\x6c\x58\x44')](_0x54169b,_0x1c7921['\x6b\x55\x6c\x42\x56']));}function _0x349b57(_0x403d9f){const _0x13970a=_0x1a6091,_0x10b214={'\x76\x4f\x70\x4d\x6d':function(_0x416650,_0x584907){return _0x416650===_0x584907;},'\x68\x58\x50\x4a\x67':_0x13970a(0x287,'\x39\x5d\x68\x56'),'\x42\x43\x71\x74\x4e':function(_0x5dca2d,_0x1f9d5e){return _0x5dca2d===_0x1f9d5e;},'\x49\x73\x49\x57\x51':function(_0x56cac1,_0x50f2e5){return _0x56cac1(_0x50f2e5);},'\x4c\x4f\x7a\x62\x51':function(_0x3e21ae,_0x5cf036){return _0x3e21ae(_0x5cf036);},'\x75\x75\x75\x45\x51':function(_0x2ccd80,_0x378abf){return _0x2ccd80(_0x378abf);},'\x72\x7a\x54\x57\x65':function(_0x5716ec,_0x350d85){return _0x5716ec(_0x350d85);},'\x57\x49\x6c\x66\x75':function(_0x58a621,_0x56fc12){return _0x58a621(_0x56fc12);}},_0x53376f=_0x403d9f&&_0x10b214['\x76\x4f\x70\x4d\x6d'](typeof _0x403d9f,_0x10b214[_0x13970a(0x240,'\x33\x44\x4e\x6d')])?_0x403d9f:{},_0x2740ea=_0x53376f[_0x13970a(0x21c,'\x33\x45\x32\x49')+'\x72\x69\x63\x73']&&_0x10b214['\x42\x43\x71\x74\x4e'](typeof _0x53376f['\x74\x61\x73\x6b\x5f\x6d\x65\x74'+_0x13970a(0x1ef,'\x2a\x33\x59\x68')],'\x6f\x62\x6a\x65\x63\x74')?_0x53376f[_0x13970a(0x2b1,'\x70\x45\x4a\x6e')+_0x13970a(0x33d,'\x57\x50\x38\x6a')]:null;if(!_0x2740ea)return null;return{'\x70\x65\x6e\x64\x69\x6e\x67':Number[_0x13970a(0x336,'\x34\x76\x50\x4d')](_0x10b214[_0x13970a(0x2bd,'\x63\x69\x44\x66')](Number,_0x2740ea[_0x13970a(0x24a,'\x45\x42\x41\x54')]))?_0x10b214[_0x13970a(0x24d,'\x57\x50\x38\x6a')](Number,_0x2740ea[_0x13970a(0x223,'\x57\x50\x38\x6a')]):null,'\x63\x6c\x61\x69\x6d\x65\x64':Number[_0x13970a(0x1dc,'\x21\x46\x23\x6a')](_0x10b214[_0x13970a(0x2aa,'\x57\x61\x76\x45')](Number,_0x2740ea[_0x13970a(0x370,'\x71\x5b\x78\x36')]))?_0x10b214[_0x13970a(0x1f7,'\x4d\x4d\x7a\x4c')](Number,_0x2740ea[_0x13970a(0x370,'\x71\x5b\x78\x36')]):null,'\x63\x6f\x6d\x70\x6c\x65\x74\x65\x64':Number[_0x13970a(0x2a8,'\x71\x4e\x49\x56')](Number(_0x2740ea['\x63\x6f\x6d\x70\x6c\x65\x74\x65'+'\x64']))?Number(_0x2740ea[_0x13970a(0x255,'\x61\x74\x53\x69')+'\x64']):null,'\x66\x61\x69\x6c\x65\x64':Number[_0x13970a(0x1d2,'\x41\x65\x26\x79')](_0x10b214[_0x13970a(0x2a2,'\x41\x65\x26\x79')](Number,_0x2740ea[_0x13970a(0x243,'\x33\x45\x32\x49')]))?Number(_0x2740ea[_0x13970a(0x328,'\x35\x5d\x56\x64')]):null,'\x61\x76\x67\x5f\x63\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x5f\x6d\x73':Number[_0x13970a(0x398,'\x46\x75\x70\x66')](_0x10b214[_0x13970a(0x302,'\x45\x42\x41\x54')](Number,_0x2740ea['\x61\x76\x67\x5f\x63\x6f\x6d\x70'+_0x13970a(0x30c,'\x4e\x26\x43\x68')+'\x73']))?Number(_0x2740ea[_0x13970a(0x3ac,'\x4d\x4d\x7a\x4c')+'\x6c\x65\x74\x69\x6f\x6e\x5f\x6d'+'\x73']):null};}function _0x40bb(_0x12f657,_0x16ddb5){_0x12f657=_0x12f657-(0x1*-0x1cfe+0x10f3+0x4*0x371);const _0x278ddd=_0x3e1f();let _0x14f175=_0x278ddd[_0x12f657];if(_0x40bb['\x73\x78\x57\x78\x57\x56']===undefined){var _0x2911c0=function(_0x5cf26c){const _0xb9520a='\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 _0x1e34a2='',_0x87989c='',_0x477839=_0x1e34a2+_0x2911c0,_0x1a318f=(''+function(){return 0x174d+-0x1*-0x44a+-0x1*0x1b97;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1*-0x1d2f+-0xd7+-0x1e07*-0x1);for(let _0x2a27b0=-0xc02*0x1+-0x19e4+0x12f3*0x2,_0xa02bbf,_0xc09619,_0x5011fc=-0x1*0x605+0x2524*0x1+-0x1f1f*0x1;_0xc09619=_0x5cf26c['\x63\x68\x61\x72\x41\x74'](_0x5011fc++);~_0xc09619&&(_0xa02bbf=_0x2a27b0%(-0x10db*-0x2+-0x1fe8+-0x1ca)?_0xa02bbf*(-0xdd+-0x18a7*0x1+0x19c4)+_0xc09619:_0xc09619,_0x2a27b0++%(0x11*0x236+-0x3*-0xaf1+-0x4665))?_0x1e34a2+=_0x1a318f||_0x477839['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5011fc+(0x92*0x35+-0xc2a+0x2*-0x903))-(0xa8a*0x1+0x5*-0x72d+0x1961)!==-0x273*0x4+0x7*-0x4f4+0x2c78?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1141+-0x860+0x1aa0&_0xa02bbf>>(-(0x1e20+-0x4cc+-0xe*0x1cf)*_0x2a27b0&-0x81f+-0x1bc3*-0x1+-0x139e)):_0x2a27b0:-0x19f7+-0x45*-0x4f+0x4ac){_0xc09619=_0xb9520a['\x69\x6e\x64\x65\x78\x4f\x66'](_0xc09619);}for(let _0xdbce77=0xb47+-0x3e*-0x1c+-0x120f*0x1,_0x30e78d=_0x1e34a2['\x6c\x65\x6e\x67\x74\x68'];_0xdbce77<_0x30e78d;_0xdbce77++){_0x87989c+='\x25'+('\x30\x30'+_0x1e34a2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xdbce77)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x5*0x22d+0x1477*0x1+0x2c*-0xb6))['\x73\x6c\x69\x63\x65'](-(-0x1*0x1601+-0x1*0x615+-0x3a*-0x7c));}return decodeURIComponent(_0x87989c);};const _0x42a130=function(_0x955bd0,_0x842094){let _0x5010ec=[],_0x4191cf=0x12c8+-0x696+-0xc32,_0x1cb231,_0x27d02d='';_0x955bd0=_0x2911c0(_0x955bd0);let _0xfd6874;for(_0xfd6874=0xdaa+-0x25b+-0xb4f;_0xfd6874<-0xaa*-0x21+-0x6*-0x3e3+0x2c3c*-0x1;_0xfd6874++){_0x5010ec[_0xfd6874]=_0xfd6874;}for(_0xfd6874=0x38e+-0x1*0x1fff+-0x3*-0x97b;_0xfd6874<-0x1590+0x1847+0x1b7*-0x1;_0xfd6874++){_0x4191cf=(_0x4191cf+_0x5010ec[_0xfd6874]+_0x842094['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xfd6874%_0x842094['\x6c\x65\x6e\x67\x74\x68']))%(-0x47*0x3a+-0x3*0x621+0x2379),_0x1cb231=_0x5010ec[_0xfd6874],_0x5010ec[_0xfd6874]=_0x5010ec[_0x4191cf],_0x5010ec[_0x4191cf]=_0x1cb231;}_0xfd6874=-0x5d1*-0x1+-0x1b83*-0x1+-0x2154,_0x4191cf=0x241a+-0x1*0x182d+-0x1*0xbed;for(let _0x34f0cf=0xf*-0x1c1+-0x56c+-0x1*-0x1fbb;_0x34f0cf<_0x955bd0['\x6c\x65\x6e\x67\x74\x68'];_0x34f0cf++){_0xfd6874=(_0xfd6874+(0xdf3*-0x2+0xdec+-0x4a9*-0x3))%(0x10f0+0xd*0x6b+0x155f*-0x1),_0x4191cf=(_0x4191cf+_0x5010ec[_0xfd6874])%(-0x260b*-0x1+0x16d*0x1b+-0x4b8a),_0x1cb231=_0x5010ec[_0xfd6874],_0x5010ec[_0xfd6874]=_0x5010ec[_0x4191cf],_0x5010ec[_0x4191cf]=_0x1cb231,_0x27d02d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x955bd0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x34f0cf)^_0x5010ec[(_0x5010ec[_0xfd6874]+_0x5010ec[_0x4191cf])%(-0x166*0x11+-0x819+-0x9*-0x3a7)]);}return _0x27d02d;};_0x40bb['\x70\x56\x62\x62\x42\x48']=_0x42a130,_0x40bb['\x61\x65\x50\x76\x52\x6e']={},_0x40bb['\x73\x78\x57\x78\x57\x56']=!![];}const _0x5eee71=_0x278ddd[-0x15b3+0x2*-0xc4c+-0x1*-0x2e4b],_0x330e96=_0x12f657+_0x5eee71,_0x4dd2af=_0x40bb['\x61\x65\x50\x76\x52\x6e'][_0x330e96];if(!_0x4dd2af){if(_0x40bb['\x77\x51\x6f\x5a\x64\x62']===undefined){const _0x1e292f=function(_0x5176ec){this['\x4d\x52\x6f\x49\x58\x73']=_0x5176ec,this['\x54\x79\x4d\x63\x4e\x57']=[0x1*0x8f2+-0x1a95*-0x1+-0x2386,0xa09+0x3*-0x599+0x6c2,-0x1356+-0x357+-0x5*-0x489],this['\x4a\x61\x77\x5a\x70\x76']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4e\x73\x6b\x45\x4d\x6e']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x77\x70\x6e\x6c\x6e\x51']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x1e292f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x62\x78\x62\x70\x4a\x67']=function(){const _0x5e0787=new RegExp(this['\x4e\x73\x6b\x45\x4d\x6e']+this['\x77\x70\x6e\x6c\x6e\x51']),_0x3c8a94=_0x5e0787['\x74\x65\x73\x74'](this['\x4a\x61\x77\x5a\x70\x76']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x54\x79\x4d\x63\x4e\x57'][-0x5*-0x17b+-0x12e4+0x1*0xb7e]:--this['\x54\x79\x4d\x63\x4e\x57'][-0x1*0xd25+-0x4*0x50b+-0x2151*-0x1];return this['\x6a\x43\x53\x68\x50\x68'](_0x3c8a94);},_0x1e292f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6a\x43\x53\x68\x50\x68']=function(_0x3ea2e5){if(!Boolean(~_0x3ea2e5))return _0x3ea2e5;return this['\x59\x70\x74\x46\x76\x71'](this['\x4d\x52\x6f\x49\x58\x73']);},_0x1e292f['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x59\x70\x74\x46\x76\x71']=function(_0x2813d7){for(let _0x3f3d72=-0x16*0x12c+0xb6d+0xe5b*0x1,_0xd02d28=this['\x54\x79\x4d\x63\x4e\x57']['\x6c\x65\x6e\x67\x74\x68'];_0x3f3d72<_0xd02d28;_0x3f3d72++){this['\x54\x79\x4d\x63\x4e\x57']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0xd02d28=this['\x54\x79\x4d\x63\x4e\x57']['\x6c\x65\x6e\x67\x74\x68'];}return _0x2813d7(this['\x54\x79\x4d\x63\x4e\x57'][-0x250c+-0x136d*0x1+0x3879]);},(''+function(){return 0x49a+0x18*0x11+-0x632;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0xd3e+-0x18e6+-0x7a1*-0x5)&&new _0x1e292f(_0x40bb)['\x62\x78\x62\x70\x4a\x67'](),_0x40bb['\x77\x51\x6f\x5a\x64\x62']=!![];}_0x14f175=_0x40bb['\x70\x56\x62\x62\x42\x48'](_0x14f175,_0x16ddb5),_0x40bb['\x61\x65\x50\x76\x52\x6e'][_0x330e96]=_0x14f175;}else _0x14f175=_0x4dd2af;return _0x14f175;}function _0x372735(_0x3741eb){const _0x59adfa=_0x1a6091,_0x1c6eac={'\x73\x4c\x58\x68\x4d':function(_0x5a319c,_0x35de29){return _0x5a319c(_0x35de29);},'\x68\x51\x69\x78\x65':function(_0x24af47,_0x142f48){return _0x24af47>_0x142f48;}},_0x1ded53=_0x1c6eac[_0x59adfa(0x222,'\x64\x6e\x6c\x4b')](Number,_0x3741eb&&_0x3741eb[_0x59adfa(0x1f3,'\x4a\x63\x44\x6d')+_0x59adfa(0x2e2,'\x63\x69\x44\x66')+_0x59adfa(0x316,'\x63\x69\x44\x66')+_0x59adfa(0x2d0,'\x64\x6e\x6c\x4b')]);return Number[_0x59adfa(0x286,'\x4d\x4d\x7a\x4c')](_0x1ded53)&&_0x1c6eac[_0x59adfa(0x256,'\x52\x58\x44\x31')](_0x1ded53,-0x2f*-0x65+-0x1d3*-0x15+0x2fe*-0x13)?Math[_0x59adfa(0x1ec,'\x6b\x23\x69\x69')](_0x1ded53):_0x574ac2;}function _0x203da8(_0x10c559,_0x4b17b2,_0x756d7){const _0x479900=_0x1a6091,_0x5869b9={};_0x5869b9[_0x479900(0x288,'\x4d\x4d\x7a\x4c')]=function(_0x2f4141,_0x117301){return _0x2f4141||_0x117301;},_0x5869b9[_0x479900(0x1db,'\x4d\x4d\x7a\x4c')]=_0x479900(0x1e2,'\x61\x74\x53\x69')+'\x65\x72';const _0x26ff34=_0x5869b9;return{'\x66\x69\x65\x6c\x64':_0x10c559,'\x72\x65\x61\x73\x6f\x6e':_0x4b17b2,'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x73\x6f\x75\x72\x63\x65':_0x26ff34['\x77\x64\x6e\x65\x47'](_0x756d7,_0x26ff34[_0x479900(0x2d3,'\x61\x4f\x28\x43')])};}function _0x563530(_0x444ba0){const _0x50d8ef=_0x1a6091,_0xec0ae7={'\x4b\x72\x65\x58\x75':function(_0x38c4a5,_0x4f25b8){return _0x38c4a5||_0x4f25b8;},'\x67\x71\x62\x78\x6f':_0x50d8ef(0x2de,'\x24\x4e\x78\x67'),'\x71\x42\x46\x6c\x64':function(_0x2aa428){return _0x2aa428();},'\x43\x49\x6e\x4e\x4b':function(_0x4b7a67,_0x46ae63,_0x4b3e11){return _0x4b7a67(_0x46ae63,_0x4b3e11);},'\x66\x74\x4d\x68\x73':_0x50d8ef(0x367,'\x21\x46\x23\x6a')+_0x50d8ef(0x1d4,'\x28\x42\x4a\x56'),'\x43\x49\x76\x63\x74':_0x50d8ef(0x293,'\x71\x5b\x78\x36')+'\x73\x65\x5f\x73\x61\x6c\x74\x5f'+_0x50d8ef(0x22c,'\x28\x42\x4a\x56'),'\x73\x64\x68\x49\x54':_0x50d8ef(0x30d,'\x45\x42\x41\x54')+_0x50d8ef(0x1e7,'\x42\x35\x36\x67')+_0x50d8ef(0x1fa,'\x57\x61\x76\x45'),'\x43\x61\x6a\x4b\x63':function(_0x42c6b3,_0x2172a5,_0x487f35,_0x2e928c){return _0x42c6b3(_0x2172a5,_0x487f35,_0x2e928c);},'\x77\x77\x51\x73\x4c':function(_0xa30922,_0x9670b,_0x4fdccb,_0x2a8966){return _0xa30922(_0x9670b,_0x4fdccb,_0x2a8966);},'\x6e\x43\x6f\x74\x49':_0x50d8ef(0x387,'\x63\x69\x44\x66')+_0x50d8ef(0x1f6,'\x21\x46\x23\x6a')+'\x72\x65\x71\x75\x69\x72\x65\x64','\x76\x56\x4a\x42\x6d':function(_0x28637f,_0x193d5c,_0x208c00,_0x5b9c52){return _0x28637f(_0x193d5c,_0x208c00,_0x5b9c52);},'\x72\x4d\x73\x75\x51':_0x50d8ef(0x362,'\x21\x46\x23\x6a'),'\x4f\x5a\x71\x4b\x78':_0x50d8ef(0x1f9,'\x54\x74\x44\x68'),'\x6d\x77\x4c\x68\x6a':'\x61\x63\x63\x6f\x75\x6e\x74\x5f'+_0x50d8ef(0x2bb,'\x52\x57\x2a\x77'),'\x69\x67\x42\x6a\x4a':_0x50d8ef(0x32b,'\x50\x70\x5d\x33')+_0x50d8ef(0x32e,'\x52\x58\x44\x31')+_0x50d8ef(0x361,'\x46\x75\x70\x66'),'\x54\x73\x66\x66\x41':_0x50d8ef(0x3a9,'\x54\x74\x44\x68')+_0x50d8ef(0x1cb,'\x54\x74\x44\x68'),'\x53\x78\x71\x77\x6c':_0x50d8ef(0x26a,'\x24\x36\x6b\x4b')+'\x65\x74\x68\x6f\x64\x5f\x74\x6f'+_0x50d8ef(0x378,'\x63\x69\x44\x66'),'\x57\x49\x74\x44\x69':_0x50d8ef(0x35d,'\x57\x50\x38\x6a')+_0x50d8ef(0x2f7,'\x24\x4e\x78\x67'),'\x73\x59\x4e\x47\x6d':_0x50d8ef(0x315,'\x4d\x4d\x7a\x4c')+_0x50d8ef(0x353,'\x47\x44\x4b\x43')+_0x50d8ef(0x261,'\x47\x44\x4b\x43'),'\x66\x62\x6a\x6e\x59':'\x68\x75\x62\x5f\x72\x69\x73\x6b','\x53\x62\x6e\x4c\x6a':_0x50d8ef(0x2ce,'\x52\x57\x2a\x77'),'\x4b\x4e\x69\x46\x72':_0x50d8ef(0x2b3,'\x5b\x21\x23\x30'),'\x46\x6c\x69\x68\x41':function(_0x3b725e,_0x3c49e1){return _0x3b725e(_0x3c49e1);},'\x6d\x58\x51\x73\x74':'\x6c\x6f\x63\x61\x6c\x2d\x64\x65'+_0x50d8ef(0x258,'\x45\x42\x41\x54'),'\x61\x70\x7a\x54\x54':_0x50d8ef(0x32f,'\x64\x6e\x6c\x4b')+_0x50d8ef(0x31b,'\x24\x36\x6b\x4b'),'\x58\x75\x4d\x50\x65':_0x50d8ef(0x2e4,'\x24\x36\x6b\x4b')+_0x50d8ef(0x2af,'\x47\x44\x4b\x43'),'\x55\x73\x66\x5a\x56':_0x50d8ef(0x346,'\x24\x4e\x78\x67'),'\x52\x45\x79\x56\x41':function(_0x280008,_0x2418b8){return _0x280008!=_0x2418b8;}},_0x8c18a6=_0xec0ae7[_0x50d8ef(0x1c8,'\x39\x5d\x68\x56')](_0x444ba0,{}),_0x51c987=_0x8c18a6[_0x50d8ef(0x2e3,'\x58\x5e\x6b\x65')]||process.env,_0x1b0cb8=_0x8c18a6[_0x50d8ef(0x2eb,'\x21\x46\x23\x6a')+_0x50d8ef(0x2bc,'\x71\x5b\x78\x36')]||_0x904743(),_0x4a2ecb=_0x8c18a6[_0x50d8ef(0x36e,'\x52\x58\x44\x31')]!=null?_0x8c18a6[_0x50d8ef(0x314,'\x35\x5d\x56\x64')]:_0x51c987[_0x50d8ef(0x2d6,'\x64\x6e\x6c\x4b')+_0x50d8ef(0x305,'\x4a\x63\x44\x6d')+_0x50d8ef(0x1f2,'\x28\x42\x4a\x56')],_0x2883be=_0x8c18a6[_0x50d8ef(0x2fb,'\x33\x44\x4e\x6d')]||_0x51c987[_0x50d8ef(0x389,'\x47\x44\x4b\x43')+'\x41\x4e\x54\x49\x5f\x41\x42\x55'+_0x50d8ef(0x294,'\x71\x5b\x78\x36')+'\x49\x44']||(_0x4a2ecb?_0xec0ae7[_0x50d8ef(0x1c5,'\x52\x58\x44\x31')]:null),_0x59b9a3=_0x8c18a6[_0x50d8ef(0x27e,'\x47\x44\x4b\x43')+_0x50d8ef(0x1e9,'\x23\x62\x37\x43')]||_0xec0ae7[_0x50d8ef(0x371,'\x24\x4e\x78\x67')](_0x310b5a),_0x5a687a={};_0x5a687a['\x73\x61\x6c\x74']=_0x4a2ecb,_0x5a687a[_0x50d8ef(0x297,'\x77\x6d\x6c\x2a')]=_0x50d8ef(0x350,'\x57\x50\x38\x6a');const _0x36f43d=_0x41650b(_0x1b0cb8&&_0x1b0cb8[_0x50d8ef(0x39a,'\x41\x65\x26\x79')+'\x64'],_0x5a687a),_0x30c83d={};_0x30c83d[_0x50d8ef(0x347,'\x33\x44\x4e\x6d')]=_0x4a2ecb,_0x30c83d['\x70\x75\x72\x70\x6f\x73\x65']=_0x50d8ef(0x220,'\x52\x58\x44\x31')+'\x65';const _0x38221c=_0xec0ae7[_0x50d8ef(0x2b5,'\x46\x75\x70\x66')](_0x41650b,process[_0x50d8ef(0x1da,'\x24\x4e\x78\x67')](),_0x30c83d),_0x4c2fae=[];if(!_0x36f43d)_0x4c2fae['\x70\x75\x73\x68'](_0x203da8(_0xec0ae7[_0x50d8ef(0x34c,'\x53\x33\x7a\x5e')],_0xec0ae7['\x43\x49\x76\x63\x74'],_0xec0ae7['\x73\x64\x68\x49\x54']));if(!_0x38221c)_0x4c2fae[_0x50d8ef(0x203,'\x77\x52\x79\x5a')](_0xec0ae7['\x43\x61\x6a\x4b\x63'](_0x203da8,_0x50d8ef(0x34e,'\x6b\x23\x69\x69')+_0x50d8ef(0x34a,'\x23\x62\x37\x43')+'\x6e\x79\x6d',_0xec0ae7[_0x50d8ef(0x36a,'\x35\x5d\x56\x64')],_0x50d8ef(0x325,'\x53\x33\x7a\x5e')+_0x50d8ef(0x280,'\x5d\x79\x71\x51')+_0x50d8ef(0x37c,'\x4a\x63\x44\x6d')));return _0x4c2fae[_0x50d8ef(0x2fe,'\x5d\x79\x71\x51')](_0xec0ae7['\x77\x77\x51\x73\x4c'](_0x203da8,_0x50d8ef(0x295,'\x42\x35\x36\x67')+'\x70',_0xec0ae7[_0x50d8ef(0x37f,'\x4d\x4d\x7a\x4c')],_0x50d8ef(0x2e6,'\x4e\x26\x43\x68')),_0xec0ae7['\x76\x56\x4a\x42\x6d'](_0x203da8,_0xec0ae7[_0x50d8ef(0x2f9,'\x63\x69\x44\x66')],_0x50d8ef(0x2e7,'\x4e\x26\x43\x68')+_0x50d8ef(0x268,'\x33\x45\x32\x49')+_0x50d8ef(0x229,'\x21\x46\x23\x6a'),_0xec0ae7[_0x50d8ef(0x22a,'\x51\x49\x4e\x55')]),_0xec0ae7[_0x50d8ef(0x37e,'\x4e\x26\x43\x68')](_0x203da8,_0x50d8ef(0x348,'\x58\x5e\x6b\x65')+_0x50d8ef(0x309,'\x5e\x6c\x58\x44')+_0x50d8ef(0x363,'\x45\x42\x41\x54')+_0x50d8ef(0x254,'\x57\x50\x38\x6a'),_0xec0ae7['\x6e\x43\x6f\x74\x49'],_0x50d8ef(0x224,'\x6d\x4f\x59\x4f')),_0xec0ae7['\x77\x77\x51\x73\x4c'](_0x203da8,_0xec0ae7[_0x50d8ef(0x1f0,'\x4d\x4d\x7a\x4c')],_0xec0ae7['\x69\x67\x42\x6a\x4a'],_0xec0ae7['\x54\x73\x66\x66\x41']),_0x203da8(_0xec0ae7[_0x50d8ef(0x26b,'\x4a\x5b\x6a\x61')],_0x50d8ef(0x252,'\x47\x44\x4b\x43')+_0x50d8ef(0x1ed,'\x47\x44\x4b\x43')+_0x50d8ef(0x28c,'\x47\x44\x4b\x43')+'\x64',_0x50d8ef(0x2ed,'\x4a\x63\x44\x6d')+_0x50d8ef(0x29c,'\x25\x31\x4d\x57')),_0x203da8(_0xec0ae7[_0x50d8ef(0x1fc,'\x5e\x6c\x58\x44')],_0xec0ae7[_0x50d8ef(0x312,'\x25\x31\x4d\x57')],_0xec0ae7[_0x50d8ef(0x269,'\x6b\x23\x69\x69')])),{'\x73\x63\x68\x65\x6d\x61\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x1580ef,'\x65\x76\x65\x6e\x74\x5f\x74\x79\x70\x65':_0x50d8ef(0x29b,'\x70\x45\x4a\x6e')+_0x50d8ef(0x368,'\x6b\x23\x69\x69'),'\x70\x75\x72\x70\x6f\x73\x65':_0x50d8ef(0x36c,'\x51\x49\x4e\x55')+'\x73\x65','\x70\x69\x69\x5f\x63\x6c\x61\x73\x73':_0xec0ae7[_0x50d8ef(0x2db,'\x47\x44\x4b\x43')],'\x63\x6f\x6e\x73\x65\x6e\x74\x5f\x6c\x65\x76\x65\x6c':_0xec0ae7[_0x50d8ef(0x217,'\x21\x46\x23\x6a')],'\x72\x65\x74\x65\x6e\x74\x69\x6f\x6e\x5f\x74\x74\x6c\x5f\x64\x61\x79\x73':_0xec0ae7[_0x50d8ef(0x233,'\x35\x5d\x56\x64')](_0x372735,_0x51c987),'\x70\x6f\x6c\x69\x63\x79\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x51c987[_0x50d8ef(0x321,'\x50\x70\x5d\x33')+_0x50d8ef(0x1d8,'\x52\x57\x2a\x77')+_0x50d8ef(0x1b9,'\x77\x52\x79\x5a')+'\x59\x5f\x56\x45\x52\x53\x49\x4f'+'\x4e']||_0xec0ae7[_0x50d8ef(0x1d3,'\x33\x44\x4e\x6d')],'\x72\x65\x64\x61\x63\x74\x69\x6f\x6e\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x353246,'\x73\x6f\x75\x72\x63\x65':_0x8c18a6['\x73\x6f\x75\x72\x63\x65']||_0xec0ae7[_0x50d8ef(0x23f,'\x24\x4e\x78\x67')],'\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x5f\x61\x74':_0xec0ae7[_0x50d8ef(0x232,'\x48\x26\x29\x4f')](_0x3af56d,_0x8c18a6[_0x50d8ef(0x2ba,'\x54\x74\x44\x68')]),'\x73\x6f\x75\x72\x63\x65\x5f\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':{'\x6e\x6f\x64\x65\x5f\x69\x64\x65\x6e\x74\x69\x74\x79':_0xec0ae7['\x58\x75\x4d\x50\x65'],'\x64\x65\x76\x69\x63\x65\x5f\x69\x6e\x74\x65\x67\x72\x69\x74\x79':_0xec0ae7[_0x50d8ef(0x298,'\x77\x52\x79\x5a')],'\x74\x61\x73\x6b\x5f\x6d\x65\x74\x72\x69\x63\x73':_0xec0ae7[_0x50d8ef(0x2dd,'\x24\x4e\x78\x67')],'\x6e\x65\x74\x77\x6f\x72\x6b\x5f\x73\x6f\x75\x72\x63\x65':_0xec0ae7[_0x50d8ef(0x1d5,'\x48\x26\x29\x4f')],'\x61\x63\x63\x6f\x75\x6e\x74\x5f\x73\x65\x63\x75\x72\x69\x74\x79':_0xec0ae7[_0x50d8ef(0x2ef,'\x33\x45\x32\x49')],'\x70\x61\x79\x6f\x75\x74':_0xec0ae7[_0x50d8ef(0x1be,'\x39\x5d\x68\x56')],'\x72\x69\x73\x6b\x5f\x64\x65\x63\x69\x73\x69\x6f\x6e':_0x50d8ef(0x36b,'\x52\x58\x44\x31')+_0x50d8ef(0x2ab,'\x6b\x23\x69\x69')+_0x50d8ef(0x1d7,'\x58\x5e\x6b\x65')},'\x69\x64\x65\x6e\x74\x69\x74\x79':{'\x6e\x6f\x64\x65\x5f\x69\x64':_0x8c18a6[_0x50d8ef(0x27b,'\x52\x57\x2a\x77')]||null,'\x61\x63\x63\x6f\x75\x6e\x74\x5f\x69\x64':null,'\x6f\x72\x67\x5f\x69\x64':null},'\x64\x65\x76\x69\x63\x65':{'\x64\x65\x76\x69\x63\x65\x5f\x70\x73\x65\x75\x64\x6f\x6e\x79\x6d':_0x36f43d,'\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x5f\x70\x73\x65\x75\x64\x6f\x6e\x79\x6d':_0x38221c,'\x70\x73\x65\x75\x64\x6f\x6e\x79\x6d\x5f\x73\x61\x6c\x74\x5f\x69\x64':_0x2883be,'\x65\x6e\x76\x5f\x66\x69\x6e\x67\x65\x72\x70\x72\x69\x6e\x74\x5f\x6b\x65\x79':_0xec0ae7[_0x50d8ef(0x36f,'\x63\x69\x44\x66')](_0x37ff35,_0x1b0cb8),'\x70\x6c\x61\x74\x66\x6f\x72\x6d':_0x1b0cb8['\x70\x6c\x61\x74\x66\x6f\x72\x6d']||null,'\x61\x72\x63\x68':_0x1b0cb8[_0x50d8ef(0x1ba,'\x28\x42\x4a\x56')]||null,'\x6f\x73\x5f\x72\x65\x6c\x65\x61\x73\x65':_0x1b0cb8[_0x50d8ef(0x23c,'\x58\x5e\x6b\x65')+'\x73\x65']||null,'\x6e\x6f\x64\x65\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x1b0cb8[_0x50d8ef(0x1d0,'\x4d\x46\x76\x67')+_0x50d8ef(0x390,'\x47\x44\x4b\x43')]||null,'\x65\x76\x6f\x6c\x76\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x1b0cb8[_0x50d8ef(0x2ae,'\x6b\x58\x47\x78')+_0x50d8ef(0x2d7,'\x39\x5d\x68\x56')]||null,'\x63\x6c\x69\x65\x6e\x74':_0x1b0cb8[_0x50d8ef(0x289,'\x24\x4e\x78\x67')]||null,'\x63\x6c\x69\x65\x6e\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x1b0cb8['\x63\x6c\x69\x65\x6e\x74\x5f\x76'+'\x65\x72\x73\x69\x6f\x6e']||null,'\x6d\x6f\x64\x65\x6c':_0x1b0cb8[_0x50d8ef(0x324,'\x5d\x79\x71\x51')]||null,'\x72\x65\x67\x69\x6f\x6e':_0x1b0cb8[_0x50d8ef(0x25e,'\x71\x4e\x49\x56')]||null,'\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72':!!_0x1b0cb8[_0x50d8ef(0x38a,'\x52\x58\x44\x31')+'\x72']},'\x69\x6e\x74\x65\x67\x72\x69\x74\x79':_0xec0ae7[_0x50d8ef(0x33e,'\x57\x50\x38\x6a')](_0x5b74d6,_0x59b9a3),'\x6c\x6f\x63\x61\x6c\x5f\x73\x65\x63\x75\x72\x69\x74\x79\x5f\x62\x6f\x75\x6e\x64\x61\x72\x79':{'\x70\x72\x6f\x78\x79\x5f\x62\x69\x6e\x64\x5f\x61\x64\x64\x72\x65\x73\x73\x5f\x63\x6c\x61\x73\x73':_0xec0ae7[_0x50d8ef(0x35a,'\x5e\x6c\x58\x44')],'\x70\x72\x6f\x78\x79\x5f\x70\x6f\x72\x74\x5f\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x64':_0xec0ae7[_0x50d8ef(0x3aa,'\x5e\x6c\x58\x44')](_0x8c18a6[_0x50d8ef(0x2b6,'\x25\x31\x4d\x57')+'\x74\x43\x6f\x6e\x66\x69\x67\x75'+_0x50d8ef(0x20b,'\x24\x36\x6b\x4b')],null)?!!_0x8c18a6[_0x50d8ef(0x3a5,'\x46\x75\x70\x66')+_0x50d8ef(0x366,'\x4d\x46\x76\x67')+_0x50d8ef(0x2c3,'\x25\x31\x4d\x57')]:_0x109c47(_0x51c987[_0x50d8ef(0x2f3,'\x23\x62\x37\x43')+'\x52\x4f\x58\x59'])||!!_0x51c987[_0x50d8ef(0x39f,'\x46\x75\x70\x66')+_0x50d8ef(0x20a,'\x39\x5d\x68\x56')+'\x54'],'\x73\x65\x74\x74\x69\x6e\x67\x73\x5f\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x5f\x63\x6c\x61\x73\x73':_0x500e9e(_0x51c987)},'\x74\x61\x73\x6b\x5f\x74\x69\x6d\x69\x6e\x67':_0xec0ae7[_0x50d8ef(0x2e9,'\x6b\x58\x47\x78')](_0x349b57,_0x8c18a6['\x74\x61\x73\x6b\x4d\x65\x74\x61']),'\x75\x6e\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x5f\x66\x69\x65\x6c\x64\x73':_0x4c2fae};}const _0x45d641={};_0x45d641[_0x1a6091(0x278,'\x45\x42\x41\x54')+_0x1a6091(0x282,'\x77\x52\x79\x5a')]=_0x1580ef,_0x45d641[_0x1a6091(0x395,'\x24\x4e\x78\x67')+_0x1a6091(0x2e8,'\x52\x57\x2a\x77')+'\x4e']=_0x353246,_0x45d641['\x62\x75\x69\x6c\x64\x48\x65\x61'+_0x1a6091(0x377,'\x6b\x58\x47\x78')+_0x1a6091(0x306,'\x52\x58\x44\x31')+_0x1a6091(0x2fd,'\x6d\x4f\x59\x4f')]=_0x563530,_0x45d641[_0x1a6091(0x33a,'\x25\x31\x4d\x57')+_0x1a6091(0x2ca,'\x45\x42\x41\x54')+_0x1a6091(0x206,'\x6b\x58\x47\x78')]=_0x5b74d6,_0x45d641['\x68\x6d\x61\x63\x50\x73\x65\x75'+_0x1a6091(0x38d,'\x52\x58\x44\x31')]=_0x41650b,module['\x65\x78\x70\x6f\x72\x74\x73']=_0x45d641;
1
+ 'use strict';
2
+
3
+ const crypto = require('crypto');
4
+ const fs = require('fs');
5
+ const os = require('os');
6
+ const path = require('path');
7
+
8
+ const { captureEnvFingerprint, envFingerprintKey } = require('./envFingerprint');
9
+
10
+ const SCHEMA_VERSION = 'anti_abuse.v1';
11
+ const REDACTION_VERSION = 'anti_abuse_redaction.v1';
12
+ const DEFAULT_TTL_DAYS = 90;
13
+ const MAX_HASH_FILE_BYTES = 10 * 1024 * 1024;
14
+
15
+ function nowIso(now) {
16
+ if (now instanceof Date) return now.toISOString();
17
+ if (typeof now === 'string' && now) return now;
18
+ return new Date().toISOString();
19
+ }
20
+
21
+ function boolFromEnv(value) {
22
+ const v = String(value || '').trim().toLowerCase();
23
+ return v === '1' || v === 'true' || v === 'yes' || v === 'on';
24
+ }
25
+
26
+ function hmacPseudonym(value, opts) {
27
+ const raw = value == null ? '' : String(value);
28
+ const salt = opts && opts.salt ? String(opts.salt) : '';
29
+ const purpose = opts && opts.purpose ? String(opts.purpose) : 'anti_abuse';
30
+ if (!raw || !salt) return null;
31
+ return crypto.createHmac('sha256', salt).update(purpose).update('\0').update(raw).digest('hex').slice(0, 32);
32
+ }
33
+
34
+ function sha256File(filePath) {
35
+ let stat;
36
+ try {
37
+ stat = fs.statSync(filePath);
38
+ } catch (_) {
39
+ return null;
40
+ }
41
+ if (!stat.isFile() || stat.size > MAX_HASH_FILE_BYTES) return null;
42
+ const hash = crypto.createHash('sha256');
43
+ hash.update(fs.readFileSync(filePath));
44
+ return hash.digest('hex');
45
+ }
46
+
47
+ function safeJsonFile(filePath) {
48
+ try {
49
+ return JSON.parse(fs.readFileSync(filePath, 'utf8'));
50
+ } catch (_) {
51
+ return null;
52
+ }
53
+ }
54
+
55
+ function filePermissionClass(filePath) {
56
+ let stat;
57
+ try {
58
+ stat = fs.statSync(filePath);
59
+ } catch (_) {
60
+ return 'missing';
61
+ }
62
+ if (!stat.isFile()) return 'not_file';
63
+ const mode = stat.mode & 0o777;
64
+ if ((mode & 0o077) === 0) return 'owner_only';
65
+ if ((mode & 0o007) !== 0) return 'world_accessible';
66
+ return 'group_accessible';
67
+ }
68
+
69
+ // The integrity envelope fingerprints the INSTALLED @evomap/evolver package
70
+ // — its package.json, CLI entry, and lockfiles — not the user's project.
71
+ // __dirname tracks this file inside the install (<pkg>/src/gep/), so two
72
+ // levels up is the package root in every install mode (dev clone, npm
73
+ // global, npx cache). Hashing getRepoRoot() (the user's project) here would
74
+ // make hub-side integrity checks compare workspace files against
75
+ // evolver_version, mismatching on every npm/global install.
76
+ function getEvolverPackageRoot() {
77
+ return path.resolve(__dirname, '..', '..');
78
+ }
79
+
80
+ // Containment gate for EVERY file the integrity envelope reads: resolve the
81
+ // candidate through symlinks and require it to stay inside the package root.
82
+ // Default-on heartbeat collection must not grow an out-of-tree file-read
83
+ // side effect — not via a tampered bin.evolver, and not via a symlinked
84
+ // package.json / lockfile either (each read is up to MAX_HASH_FILE_BYTES).
85
+ // Returns the real path when contained, else null (missing files land here
86
+ // too, matching sha256File's old null-on-ENOENT behavior).
87
+ function containedRealPath(root, candidate) {
88
+ try {
89
+ const realRoot = fs.realpathSync(root);
90
+ const real = fs.realpathSync(candidate);
91
+ return real.startsWith(realRoot + path.sep) ? real : null;
92
+ } catch (_) {
93
+ return null;
94
+ }
95
+ }
96
+
97
+ function collectIntegrityHashes(packageRoot) {
98
+ const root = packageRoot || getEvolverPackageRoot();
99
+ const pkgPath = containedRealPath(root, path.join(root, 'package.json'));
100
+ const pkg = (pkgPath && safeJsonFile(pkgPath)) || {};
101
+ const bin = pkg && pkg.bin && typeof pkg.bin.evolver === 'string' ? pkg.bin.evolver : null;
102
+ const binPath = bin ? containedRealPath(root, path.resolve(root, bin)) : null;
103
+ const lockfiles = ['package-lock.json', 'pnpm-lock.yaml', 'yarn.lock', 'bun.lockb'];
104
+ const lockfile_hashes = {};
105
+ for (const name of lockfiles) {
106
+ const p = containedRealPath(root, path.join(root, name));
107
+ const digest = p ? sha256File(p) : null;
108
+ if (digest) lockfile_hashes[name] = digest;
109
+ }
110
+ return {
111
+ package_json_hash: pkgPath ? sha256File(pkgPath) : null,
112
+ cli_entry_hash: binPath ? sha256File(binPath) : null,
113
+ lockfile_hashes,
114
+ };
115
+ }
116
+
117
+ function settingsPermissionClass(env) {
118
+ const e = env || process.env;
119
+ const settingsDir = e.EVOLVER_SETTINGS_DIR || path.join(os.homedir(), '.evolver');
120
+ return filePermissionClass(path.join(settingsDir, 'settings.json'));
121
+ }
122
+
123
+ function normalizeTaskMetrics(taskMeta) {
124
+ const meta = taskMeta && typeof taskMeta === 'object' ? taskMeta : {};
125
+ const metrics = meta.task_metrics && typeof meta.task_metrics === 'object' ? meta.task_metrics : null;
126
+ if (!metrics) return null;
127
+ return {
128
+ pending: Number.isFinite(Number(metrics.pending)) ? Number(metrics.pending) : null,
129
+ claimed: Number.isFinite(Number(metrics.claimed)) ? Number(metrics.claimed) : null,
130
+ completed: Number.isFinite(Number(metrics.completed)) ? Number(metrics.completed) : null,
131
+ failed: Number.isFinite(Number(metrics.failed)) ? Number(metrics.failed) : null,
132
+ avg_completion_ms: Number.isFinite(Number(metrics.avg_completion_ms)) ? Number(metrics.avg_completion_ms) : null,
133
+ };
134
+ }
135
+
136
+ function ttlDays(env) {
137
+ const raw = Number(env && env.EVOLVER_ANTI_ABUSE_TTL_DAYS);
138
+ return Number.isFinite(raw) && raw > 0 ? Math.floor(raw) : DEFAULT_TTL_DAYS;
139
+ }
140
+
141
+ function unavailable(field, reason, expectedSource) {
142
+ return {
143
+ field,
144
+ reason,
145
+ expected_source: expectedSource || 'hub_server',
146
+ };
147
+ }
148
+
149
+ function buildHeartbeatAntiAbuseTelemetry(opts) {
150
+ const options = opts || {};
151
+ const env = options.env || process.env;
152
+ const fp = options.envFingerprint || captureEnvFingerprint();
153
+ const salt = options.salt != null ? options.salt : env.EVOLVER_ANTI_ABUSE_SALT;
154
+ const saltId = options.saltId || env.EVOLVER_ANTI_ABUSE_SALT_ID || (salt ? 'env' : null);
155
+ const packageRoot = options.packageRoot || getEvolverPackageRoot();
156
+ const devicePseudonym = hmacPseudonym(fp && fp.device_id, { salt, purpose: 'device' });
157
+ const workspacePseudonym = hmacPseudonym(process.cwd(), { salt, purpose: 'workspace' });
158
+ const missing = [];
159
+ if (!devicePseudonym) missing.push(unavailable('device_pseudonym', 'anti_abuse_salt_missing', 'signed_policy_or_env'));
160
+ if (!workspacePseudonym) missing.push(unavailable('workspace_pseudonym', 'anti_abuse_salt_missing', 'signed_policy_or_env'));
161
+ missing.push(
162
+ unavailable('client_ip', 'server_observed_required', 'hub_edge'),
163
+ unavailable('asn', 'server_observed_required', 'hub_edge'),
164
+ unavailable('proxy_vpn_tor_datacenter_class', 'server_observed_required', 'hub_edge'),
165
+ unavailable('account_security', 'account_service_required', 'hub_account'),
166
+ unavailable('payout_method_token', 'payments_service_required', 'hub_payments'),
167
+ unavailable('risk_action_case', 'risk_engine_required', 'hub_risk')
168
+ );
169
+
170
+ return {
171
+ schema_version: SCHEMA_VERSION,
172
+ event_type: 'node.heartbeat',
173
+ purpose: 'anti_abuse',
174
+ pii_class: 'medium',
175
+ consent_level: 'default',
176
+ retention_ttl_days: ttlDays(env),
177
+ policy_version: env.EVOLVER_ANTI_ABUSE_POLICY_VERSION || 'local-default',
178
+ redaction_version: REDACTION_VERSION,
179
+ source: options.source || 'evolver-client',
180
+ generated_at: nowIso(options.now),
181
+ source_confidence: {
182
+ node_identity: 'client_attested',
183
+ device_integrity: 'client_attested',
184
+ task_metrics: 'client_attested',
185
+ network_source: 'server_observed_required',
186
+ account_security: 'server_observed_required',
187
+ payout: 'server_observed_required',
188
+ risk_decision: 'server_observed_required',
189
+ },
190
+ identity: {
191
+ node_id: options.nodeId || null,
192
+ account_id: null,
193
+ org_id: null,
194
+ },
195
+ device: {
196
+ device_pseudonym: devicePseudonym,
197
+ workspace_pseudonym: workspacePseudonym,
198
+ pseudonym_salt_id: saltId,
199
+ env_fingerprint_key: envFingerprintKey(fp),
200
+ platform: fp.platform || null,
201
+ arch: fp.arch || null,
202
+ os_release: fp.os_release || null,
203
+ node_version: fp.node_version || null,
204
+ evolver_version: fp.evolver_version || null,
205
+ client: fp.client || null,
206
+ client_version: fp.client_version || null,
207
+ model: fp.model || null,
208
+ region: fp.region || null,
209
+ container: !!fp.container,
210
+ },
211
+ integrity: collectIntegrityHashes(packageRoot),
212
+ local_security_boundary: {
213
+ proxy_bind_address_class: 'loopback',
214
+ // Env sniffing is only a fallback for the client heartbeat: the proxy
215
+ // lifecycle heartbeat runs INSIDE the proxy process (which usually has
216
+ // neither env var set) and passes its ground truth explicitly.
217
+ proxy_port_configured: options.proxyPortConfigured != null
218
+ ? !!options.proxyPortConfigured
219
+ : (boolFromEnv(env.EVOMAP_PROXY) || !!env.EVOMAP_PROXY_PORT),
220
+ settings_permission_class: settingsPermissionClass(env),
221
+ },
222
+ task_timing: normalizeTaskMetrics(options.taskMeta),
223
+ unavailable_fields: missing,
224
+ };
225
+ }
226
+
227
+ module.exports = {
228
+ SCHEMA_VERSION,
229
+ REDACTION_VERSION,
230
+ buildHeartbeatAntiAbuseTelemetry,
231
+ collectIntegrityHashes,
232
+ hmacPseudonym,
233
+ };