@mooncompany/uplink-chat 0.34.1 → 0.37.0

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 (131) hide show
  1. package/bin/uplink.js +1 -1
  2. package/middleware/error-handler.js +1 -1
  3. package/package.json +1 -1
  4. package/public/dist/bundle.5772e248.js +1 -0
  5. package/public/index.html +1 -1
  6. package/public/js/agents-data.js +1 -1
  7. package/public/js/agents-ui.js +1 -1
  8. package/public/js/agents.js +1 -1
  9. package/public/js/app.js +1 -1
  10. package/public/js/appearance-settings.js +1 -1
  11. package/public/js/artifacts.js +1 -1
  12. package/public/js/audio-pcm-processor.js +1 -1
  13. package/public/js/audio-queue.js +1 -1
  14. package/public/js/bootstrap.js +1 -1
  15. package/public/js/chat.js +1 -1
  16. package/public/js/commands.js +1 -1
  17. package/public/js/connection-api.js +1 -1
  18. package/public/js/connection.js +1 -1
  19. package/public/js/context-tracker.js +1 -1
  20. package/public/js/core.js +1 -1
  21. package/public/js/cron-panel.js +1 -1
  22. package/public/js/dashboard.js +1 -1
  23. package/public/js/developer.js +1 -1
  24. package/public/js/encryption.js +1 -1
  25. package/public/js/errors.js +1 -1
  26. package/public/js/event-bus.js +1 -1
  27. package/public/js/fetch-utils.js +1 -1
  28. package/public/js/file-handler.js +1 -1
  29. package/public/js/files.js +1 -1
  30. package/public/js/gateway-chat.js +1 -1
  31. package/public/js/logger.js +1 -1
  32. package/public/js/markdown.js +1 -1
  33. package/public/js/message-actions.js +1 -1
  34. package/public/js/message-renderer.js +1 -1
  35. package/public/js/missed-messages.js +1 -1
  36. package/public/js/mobile-debug.js +1 -1
  37. package/public/js/notifications.js +1 -1
  38. package/public/js/offline-queue.js +1 -1
  39. package/public/js/onboarding.js +1 -1
  40. package/public/js/panels.js +1 -1
  41. package/public/js/premium.js +1 -1
  42. package/public/js/primary-header.js +1 -1
  43. package/public/js/realtime-voice.js +1 -1
  44. package/public/js/satellite-sync.js +1 -1
  45. package/public/js/satellite-ui.js +1 -1
  46. package/public/js/satellites.js +1 -1
  47. package/public/js/settings.js +1 -1
  48. package/public/js/shortcuts.js +1 -1
  49. package/public/js/split-chat.js +1 -1
  50. package/public/js/split-resize.js +1 -1
  51. package/public/js/splitview.js +1 -1
  52. package/public/js/storage.js +1 -1
  53. package/public/js/streaming-handler.js +1 -1
  54. package/public/js/stt-settings.js +1 -1
  55. package/public/js/themes.js +1 -1
  56. package/public/js/timestamps.js +1 -1
  57. package/public/js/tts-settings.js +1 -1
  58. package/public/js/ui.js +1 -1
  59. package/public/js/update-notifier.js +1 -1
  60. package/public/js/utils/constants.js +1 -1
  61. package/public/js/utils/icons.js +1 -1
  62. package/public/js/utils/sanitize.js +1 -1
  63. package/public/js/utils/sse-parser.js +1 -1
  64. package/public/js/vad.js +1 -1
  65. package/public/js/vendor/dompurify.min.js +1 -1
  66. package/public/js/voice-settings-v2.js +1 -1
  67. package/public/js/voice.js +1 -1
  68. package/public/sw.js +1 -1
  69. package/server/channel.js +1 -1
  70. package/server/chat.js +1 -1
  71. package/server/config-store.js +1 -1
  72. package/server/config.js +1 -1
  73. package/server/context.js +1 -1
  74. package/server/gateway-api-proxy.js +1 -1
  75. package/server/gateway-commands.js +1 -1
  76. package/server/gateway-proxy.js +1 -1
  77. package/server/index.js +1 -1
  78. package/server/logger.js +1 -1
  79. package/server/message-store.js +1 -1
  80. package/server/middleware/auth.js +1 -1
  81. package/server/middleware.js +1 -1
  82. package/server/openclaw-discover.js +1 -1
  83. package/server/premium/index.js +1 -1
  84. package/server/premium/license.js +1 -1
  85. package/server/realtime/bridge.js +1 -1
  86. package/server/realtime/index.js +1 -1
  87. package/server/realtime/tts-stream.js +1 -1
  88. package/server/routes/agents.js +1 -1
  89. package/server/routes/artifacts.js +1 -1
  90. package/server/routes/chat.js +1 -1
  91. package/server/routes/config-settings.js +1 -1
  92. package/server/routes/config.js +1 -1
  93. package/server/routes/cron.js +1 -1
  94. package/server/routes/files.js +1 -1
  95. package/server/routes/index.js +1 -1
  96. package/server/routes/media.js +1 -1
  97. package/server/routes/missed-messages.js +1 -1
  98. package/server/routes/premium.js +1 -1
  99. package/server/routes/push.js +1 -1
  100. package/server/routes/satellite.js +1 -1
  101. package/server/routes/status.js +1 -1
  102. package/server/routes/stt.js +1 -1
  103. package/server/routes/voice.js +1 -1
  104. package/server/routes/webhooks.js +1 -1
  105. package/server/routes.js +1 -1
  106. package/server/runtime-config.js +1 -1
  107. package/server/share.js +1 -1
  108. package/server/stt/faster-whisper.js +1 -1
  109. package/server/stt/groq.js +1 -1
  110. package/server/stt/index.js +1 -1
  111. package/server/stt/openai.js +1 -1
  112. package/server/sync.js +1 -1
  113. package/server/tailscale-https.js +1 -1
  114. package/server/tts.js +1 -1
  115. package/server/update-checker.js +1 -1
  116. package/server/utils/filename.js +1 -1
  117. package/server/utils.js +1 -1
  118. package/server/watchdog.js +1 -1
  119. package/server/websocket/broadcast.js +1 -1
  120. package/server/websocket/connections.js +1 -1
  121. package/server/websocket/index.js +1 -1
  122. package/server/websocket/routing.js +1 -1
  123. package/server/websocket/sync.js +1 -1
  124. package/server.js +1 -1
  125. package/utils/detect-tool-usage.js +1 -1
  126. package/utils/errors.js +1 -1
  127. package/utils/html-escape.js +1 -1
  128. package/utils/id-sanitize.js +1 -1
  129. package/utils/response.js +1 -1
  130. package/utils/with-retry.js +1 -1
  131. package/public/dist/bundle.9b202855.js +0 -1
package/bin/uplink.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- (function(_0x1bb15f,_0x2f3ecb){function _0x5d1e05(_0x2f79be,_0x310d5c){return _0x5840(_0x310d5c- -0x19,_0x2f79be);}function _0x521479(_0x37bdd5,_0x45eaaf){return _0x5840(_0x37bdd5- -0x364,_0x45eaaf);}const _0x48dea4=_0x1bb15f();while(!![]){try{const _0x26cada=-parseInt(_0x521479(-0x9b,0x101))/(-0x10a0+0x226d+-0x11cc)+-parseInt(_0x521479(0x6e,0x104))/(-0x9dd+-0x53c+0xf1b)*(-parseInt(_0x5d1e05(0x654,0x4b1))/(-0x1*-0x1b55+-0x143d+-0x31*0x25))+parseInt(_0x5d1e05(0x364,0x4ce))/(0x16ab+-0xb1b+-0x1*0xb8c)*(-parseInt(_0x521479(0x141,0xd3))/(-0x1645+0xe80+0x7ca))+-parseInt(_0x5d1e05(0x58c,0x54f))/(0x1*0x79d+-0x96d+0x5e*0x5)*(-parseInt(_0x5d1e05(0x39e,0x3df))/(0x1156+-0x26e9+0x159a))+-parseInt(_0x521479(-0xf7,-0x273))/(0x21ee+-0xcb*-0xe+0x480*-0xa)*(-parseInt(_0x521479(0x167,0x17b))/(0x1d73+-0xd30+-0x1f*0x86))+parseInt(_0x521479(0x215,0x1e2))/(0x2*-0x72e+0x2ab*-0xa+0x3bc*0xb)+parseInt(_0x5d1e05(0x23c,0x253))/(-0x4*0x95f+0x80*0x7+0x2207*0x1)*(-parseInt(_0x5d1e05(0x23a,0x2cb))/(0xa62+0x1*-0x3d+-0x37*0x2f));if(_0x26cada===_0x2f3ecb)break;else _0x48dea4['push'](_0x48dea4['shift']());}catch(_0x2ab026){_0x48dea4['push'](_0x48dea4['shift']());}}}(_0x116c,-0xd8dd8+0x9fb2f*0x2+0x60a97));import{spawn,execSync}from'child_process';import{fileURLToPath}from'url';import{dirname,join}from'path';import{existsSync,writeFileSync,readFileSync,unlinkSync,statSync,readdirSync,mkdirSync}from'fs';import{createRequire}from'module';import _0x4de775 from'net';function _0x4951e1(_0x2a06da,_0x5b3a4f){return _0x5840(_0x5b3a4f- -0x119,_0x2a06da);}import _0x454e48 from'http';import _0x4143ba from'os';const __filename=fileURLToPath(import.meta.url),__dirname=dirname(__filename),ROOT=join(__dirname,'..');function resolveDataDir(){const _0x59235f={'OXjwN':function(_0x582b31,_0x5eb3db,_0x37fd7b){return _0x582b31(_0x5eb3db,_0x37fd7b);},'yogwT':_0xe2fd12(0x9b,0x176),'bLILL':function(_0x4b71ae,_0x5a9008){return _0x4b71ae!==_0x5a9008;},'XiDdi':'TXSEf','utkni':'PrkFE','glZeP':'(((.+'+_0xe2fd12(0x8a,0x125)+'+$','Oeido':function(_0x4826e9,_0x477d3a,_0x5540d4){return _0x4826e9(_0x477d3a,_0x5540d4);},'FknAb':function(_0x3d7a01){return _0x3d7a01();},'rLDcr':function(_0x3d931c,_0x459f19){return _0x3d931c===_0x459f19;},'xyFbO':function(_0x19c62a,_0x21b073,_0x2044dc,_0x697d12){return _0x19c62a(_0x21b073,_0x2044dc,_0x697d12);},'HlcLv':_0xe2fd12(0x1c1,0x2ea)+'ta','bhSOD':function(_0x4c8c6d,_0x503638,_0x146563){return _0x4c8c6d(_0x503638,_0x146563);},'dPAzY':function(_0x3f706d,_0xc9f480,_0xa6aa5b){return _0x3f706d(_0xc9f480,_0xa6aa5b);}},_0x2fa218=(function(){const _0x277c66={'ARCyH':function(_0x483acc,_0x352ac4,_0x30db53){function _0x16b350(_0x140a15,_0x319180){return _0x5840(_0x140a15- -0x2bb,_0x319180);}return _0x59235f[_0x16b350(-0x7b,0x73)](_0x483acc,_0x352ac4,_0x30db53);},'PweGo':function(_0x5dd053,_0x2e107d){return _0x5dd053===_0x2e107d;},'IIjgB':_0x59235f[_0x477549(0x212,0x3b)],'mvCcI':'jdZzG'};function _0x477549(_0x1d4bae,_0x293d99){return _0x39d64b(_0x293d99,_0x1d4bae-0x21a);}let _0x344d4c=!![];return function(_0x378fcd,_0x4042ef){const _0xb971e8=_0x344d4c?function(){const _0x426714={'bEnON':function(_0x5ee0ec,_0x3d2601,_0x93336b){function _0x3222c4(_0x1a31e1,_0x315576){return _0x5840(_0x315576- -0xe,_0x1a31e1);}return _0x277c66[_0x3222c4(0x4ec,0x535)](_0x5ee0ec,_0x3d2601,_0x93336b);}};function _0x49b101(_0x2be76e,_0x2067b0){return _0x5840(_0x2067b0- -0x3de,_0x2be76e);}function _0x2c1484(_0x40ea42,_0x54d2f2){return _0x5840(_0x40ea42- -0x32c,_0x54d2f2);}if(_0x4042ef){if(_0x277c66['PweGo'](_0x277c66[_0x2c1484(0x106,0xef)],_0x277c66[_0x2c1484(-0x6f,0x135)]))try{const _0xf9acdd={};_0xf9acdd[_0x49b101(-0xbd,-0x18e)+_0x49b101(-0x149,-0x15e)]=!![],_0xf9acdd[_0x49b101(0x2a1,0x11c)]=!![],_0x426714[_0x49b101(0x144,-0x32)](_0x15cc2a,_0x59157a,_0xf9acdd),_0xbaa5d2++,_0x32007f[_0x2c1484(0xf5,0x5b)](_0x49b101(-0x9c,-0xd4)+_0x49b101(0x10a,0xdb)+_0x2c1484(0x1c,0x8)+_0x49b101(-0x10a,-0x1d3)+'/'+_0x595ce9);}catch(_0x23c9b1){_0x5da35e[_0x49b101(-0x15,0x7a)](_0x2c1484(-0x57,0x192)+_0x2c1484(-0x158,0x1a)+_0x2c1484(0x22a,0x9d)+_0x2c1484(0x18d,0x35c)+'\x20DATA'+'_DIR/'+_0x54f795+':\x20'+_0x23c9b1['messa'+'ge']);}else{const _0x5bfb08=_0x4042ef[_0x49b101(0x308,0x17d)](_0x378fcd,arguments);return _0x4042ef=null,_0x5bfb08;}}}:function(){};return _0x344d4c=![],_0xb971e8;};}());function _0xe2fd12(_0x426257,_0x1f8d1a){return _0x5840(_0x1f8d1a- -0x292,_0x426257);}const _0x2ee06d=_0x59235f[_0xe2fd12(-0x2ba,-0xd3)](_0x2fa218,this,function(){function _0xc531fb(_0x2df1dc,_0x2d7ef0){return _0xe2fd12(_0x2df1dc,_0x2d7ef0-0x130);}function _0x179901(_0x4b607b,_0x4deafd){return _0xe2fd12(_0x4b607b,_0x4deafd- -0xed);}if(_0x59235f[_0xc531fb(0x347,0x257)](_0x59235f[_0x179901(0x279,0xec)],_0x59235f['utkni']))return _0x2ee06d[_0x179901(0x318,0x195)+_0x179901(0xcd,0x83)]()[_0xc531fb(0x2ee,0x400)+'h'](_0x59235f['glZeP'])['toStr'+_0x179901(-0xb9,0x83)]()['const'+'ructo'+'r'](_0x2ee06d)[_0xc531fb(0x432,0x400)+'h'](_0x59235f[_0x179901(0x6b,0x1a0)]);else _0x219829(_0x13a58e);});_0x59235f[_0x39d64b(-0x278,-0xcb)](_0x2ee06d);if(process.env.UPLINK_DATA_DIR)return process.env.UPLINK_DATA_DIR;if(_0x59235f[_0xe2fd12(0x1b3,0x3c)](process[_0x39d64b(0x10e,0x1d6)+_0xe2fd12(0x43b,0x2c6)],_0x39d64b(-0x1c4,-0x4e))){const _0xc1fe51=process.env.APPDATA||_0x59235f[_0xe2fd12(0x2,0xdd)](join,_0x4143ba[_0xe2fd12(-0xa,-0x7e)+'ir'](),_0x59235f[_0x39d64b(0x1e1,0x3b)],'Roami'+'ng');return _0x59235f[_0xe2fd12(-0x10e,-0x4e)](join,_0xc1fe51,_0x39d64b(0x298,0x117)+'k');}function _0x39d64b(_0x27c575,_0xf295ad){return _0x5840(_0xf295ad- -0x27b,_0x27c575);}return _0x59235f['dPAzY'](join,_0x4143ba[_0xe2fd12(0x58,-0x7e)+'ir'](),_0x39d64b(0x17c,0x188)+'nk');}function _0x5840(_0x1fd91c,_0xa43e5f){_0x1fd91c=_0x1fd91c-(-0x58*0x6b+-0x20b*0x1+-0x2880*-0x1);const _0xbe79e2=_0x116c();let _0xa02dbf=_0xbe79e2[_0x1fd91c];return _0xa02dbf;}const DATA_DIR=resolveDataDir();function _0x1b96a6(_0x245ce8,_0x1962b3){return _0x5840(_0x1962b3-0x31c,_0x245ce8);}try{const _0x4e5b9c={};_0x4e5b9c['recur'+'sive']=!![],mkdirSync(DATA_DIR,_0x4e5b9c);}catch{}const PID_FILE=join(DATA_DIR,_0x4951e1(0x249,0x2ea)+_0x4951e1(0x2e0,0x1ec)+'d'),WATCHDOG_PID_FILE=join(DATA_DIR,_0x1b96a6(0x8d8,0x71f)+_0x4951e1(0x2b3,0x3bf)+_0x1b96a6(0x90f,0x731)+'g.pid'),WATCHDOG_STATE_FILE=join(DATA_DIR,_0x1b96a6(0x851,0x71f)+_0x4951e1(0x345,0x3bf)+_0x4951e1(0x3bc,0x2fc)+_0x4951e1(0xb7,0xa8)+'n'),args=process['argv']['slice'](0xf1*-0x2+-0x11b*0x1+0x2ff),command=args[0x1294*-0x1+-0x291*-0x7+0x9d]||'start',flags={};for(let i=-0x155d+-0x1d24+0x3281;i<args[_0x4951e1(-0x41,0xd4)+'h'];i++){args[i]===_0x1b96a6(0x4f5,0x6d1)+'t'&&args[i+(0xf*0x28f+0xd*-0x199+-0x119b*0x1)]&&(flags[_0x4951e1(0x369,0x3d4)]=parseInt(args[i+(-0xb7f+0x7bf+0x3c1)],0x12c7+0x1f01+-0x31be),i++),args[i]==='--hos'+'t'&&(flags[_0x1b96a6(0x84c,0x7fd)]=args[i+(-0xe37+0x509+-0x1*-0x92f)]||'0.0.0'+'.0',i++),(args[i]==='--hel'+'p'||args[i]==='-h')&&(flags[_0x1b96a6(0x7dc,0x627)]=!![]),(args[i]===_0x1b96a6(0x542,0x4f8)+_0x1b96a6(0x906,0x799)||args[i]==='-v')&&(flags[_0x1b96a6(0x6d3,0x545)+'on']=!![]),(args[i]===_0x1b96a6(0x5d6,0x5b3)+'ach'||args[i]==='-d')&&(flags[_0x4951e1(0x245,0x392)+'h']=!![]),args[i]===_0x1b96a6(0x903,0x726)+_0x4951e1(-0xd7,0xc5)+_0x1b96a6(0x470,0x658)&&(flags[_0x4951e1(0xf4,0x27b)+'chdog']=!![]),args[i]===_0x4951e1(0x38f,0x2fb)+'es'&&args[i+(-0x5*-0x1b7+-0x3*0xaca+0x2*0xbe6)]&&(flags[_0x1b96a6(0x4b8,0x61f)]=parseInt(args[i+(-0x1*-0xa66+-0x2e*0x71+0x9e9)],-0xd3d+0x7*-0x2a5+-0x1a*-0x139),i++),args[i]==='--edi'+'t'&&(flags['edit']=!![]),args[i]===_0x1b96a6(0x8f1,0x80a)+'h'&&(flags['path']=!![]),(args[i]===_0x1b96a6(0x767,0x75a)+'ce'||args[i]==='-f')&&(flags[_0x1b96a6(0x83a,0x816)]=!![]);}if(flags[_0x4951e1(0x3f,0x110)+'on']){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x4951e1(0x109,0x26a)+_0x1b96a6(0x533,0x4eb)+'on'));console[_0x4951e1(0x26c,0x308)](_0x1b96a6(0x7be,0x6ae)+'k-cha'+_0x1b96a6(0xa21,0x848)+pkg[_0x1b96a6(0x3bb,0x545)+'on']),process[_0x1b96a6(0x6a2,0x6f6)](0x767+0x16ed+0x3*-0xa1c);}flags[_0x4951e1(0xc5,0x1f2)]&&(console[_0x1b96a6(0x747,0x73d)](_0x1b96a6(0x552,0x70a)+'Uplin'+_0x4951e1(0x15d,0x234)+'ocal\x20'+_0x1b96a6(0x5fc,0x579)+'at\x0a\x0a\x20'+_0x4951e1(-0x80,0x157)+_0x1b96a6(0x565,0x54e)+_0x1b96a6(0x67b,0x570)+'ink-c'+'hat\x20['+'comma'+_0x4951e1(0x1ac,0x117)+'optio'+_0x4951e1(0x9f,0x1fe)+'\x20\x20Com'+_0x1b96a6(0x82f,0x6a0)+':\x0a\x20\x20\x20'+_0x1b96a6(0x4a2,0x5ad)+_0x1b96a6(0x770,0x75f)+'\x20\x20\x20St'+'art\x20t'+_0x4951e1(0x461,0x2e0)+'link\x20'+_0x1b96a6(0x5d9,0x5bd)+'r\x20(de'+_0x4951e1(0x12d,0x172)+_0x1b96a6(0x85c,0x67d)+_0x1b96a6(0x90d,0x82d)+_0x4951e1(0x4cf,0x35c)+_0x1b96a6(0x69e,0x862)+_0x1b96a6(0x443,0x53a)+_0x4951e1(0x32b,0x2fd)+_0x1b96a6(0xa01,0x82b)+_0x4951e1(0x4d0,0x3df)+_0x4951e1(0xa1,0x188)+_0x1b96a6(0x5b5,0x599)+_0x1b96a6(0x65f,0x574)+_0x1b96a6(0x894,0x89a)+_0x4951e1(0x1c3,0xc1)+_0x4951e1(0x254,0x266)+_0x4951e1(0x15e,0x1f3)+_0x1b96a6(0x615,0x60a)+_0x1b96a6(0x684,0x55d)+_0x1b96a6(0x6ff,0x5df)+_0x4951e1(0x2a7,0x11e)+'nfo\x20\x20'+_0x1b96a6(0x5d8,0x791)+_0x4951e1(0x239,0x40b)+_0x4951e1(0x190,0x290)+'ent\x20s'+'etup\x20'+_0x1b96a6(0x826,0x83f)+_0x4951e1(0x2ce,0x36b)+_0x4951e1(0x31a,0x45e)+_0x1b96a6(0x7e1,0x66f)+_0x4951e1(0x3f8,0x35c)+_0x1b96a6(0x61e,0x6e7)+_0x1b96a6(0x820,0x656)+'e\x20ser'+_0x1b96a6(0x59d,0x6f5)+_0x4951e1(0x156,0xb5)+_0x1b96a6(0x538,0x4f1)+_0x4951e1(0x531,0x420)+_0x4951e1(0x36a,0x45e)+'\x20conf'+'ig\x20\x20\x20'+_0x4951e1(0x461,0x3b3)+'ow\x20cu'+_0x4951e1(0x348,0x174)+_0x1b96a6(0x5fb,0x652)+_0x1b96a6(0x6bf,0x777)+_0x4951e1(0x445,0x419)+_0x1b96a6(0x5a0,0x593)+_0x4951e1(0x358,0x2ba)+_0x1b96a6(0x66c,0x791)+_0x1b96a6(0x663,0x74b)+'nose\x20'+_0x4951e1(0x2e8,0x450)+_0x4951e1(0x5d5,0x44d)+_0x1b96a6(0x8aa,0x7fa)+'\x20\x20\x20re'+_0x4951e1(0x477,0x31b)+'\x20\x20\x20\x20\x20'+_0x1b96a6(0x7e8,0x610)+'\x20chat'+_0x1b96a6(0x7b6,0x6b1)+_0x4951e1(0x41a,0x289)+'nd\x20lo'+_0x1b96a6(0x519,0x51b)+'ata\x0a\x20'+_0x1b96a6(0x691,0x7ef)+'date\x20'+_0x4951e1(0x501,0x35c)+_0x1b96a6(0x6b3,0x7b0)+_0x4951e1(0x1ac,0x31d)+_0x4951e1(0xa7,0x27a)+_0x4951e1(0x186,0x199)+_0x1b96a6(0x886,0x6fa)+_0x1b96a6(0x8a0,0x81a)+_0x1b96a6(0x55b,0x552)+_0x4951e1(0x291,0x3ed)+_0x1b96a6(0x885,0x813)+_0x1b96a6(0x779,0x866)+_0x1b96a6(0x6b5,0x5bd)+_0x1b96a6(0x970,0x81d)+_0x4951e1(0x463,0x383)+_0x1b96a6(0x61a,0x5d3)+_0x1b96a6(0x44c,0x54a)+_0x1b96a6(0x833,0x70c)+'ata\x0a\x0a'+'\x20\x20Opt'+_0x1b96a6(0x512,0x514)+'\x0a\x20\x20\x20\x20'+'--por'+'t\x20N\x20\x20'+_0x1b96a6(0x708,0x791)+'\x20Port'+_0x4951e1(0x237,0x2f8)+'isten'+_0x1b96a6(0x791,0x5fb)+'defau'+_0x1b96a6(0x648,0x6f1)+_0x1b96a6(0x850,0x76c)+_0x1b96a6(0x6bc,0x4d8)+_0x1b96a6(0x3e9,0x58e)+_0x1b96a6(0x4f3,0x548)+_0x1b96a6(0x953,0x791)+_0x1b96a6(0x698,0x504)+_0x4951e1(0x4f4,0x418)+_0x1b96a6(0x84f,0x672)+_0x4951e1(0x433,0x3ef)+_0x1b96a6(0x877,0x7df)+_0x1b96a6(0x436,0x5ef)+_0x1b96a6(0x720,0x565)+_0x1b96a6(0x51c,0x4d8)+'-deta'+'ch,\x20-'+'d\x20\x20\x20\x20'+_0x4951e1(0x319,0x262)+_0x1b96a6(0x47d,0x4fe)+_0x1b96a6(0x58b,0x56e)+_0x4951e1(0x426,0x386)+_0x1b96a6(0x631,0x6e1)+_0x4951e1(0x422,0x2cd)+_0x1b96a6(0x78e,0x67d)+'\x20--no'+_0x1b96a6(0x71d,0x582)+_0x1b96a6(0x3d9,0x566)+_0x1b96a6(0x625,0x554)+_0x1b96a6(0x875,0x7ce)+_0x1b96a6(0x816,0x72c)+'uto-r'+_0x1b96a6(0x9f4,0x86e)+'t\x20wat'+_0x1b96a6(0x5ba,0x67a)+'\x0a\x20\x20\x20\x20'+_0x1b96a6(0x6d7,0x730)+_0x4951e1(0x427,0x2ec)+_0x1b96a6(0x87d,0x791)+_0x4951e1(0xcc,0xee)+'er\x20of'+_0x1b96a6(0x7b3,0x681)+_0x1b96a6(0x783,0x61f)+_0x4951e1(0x5fd,0x416)+'how\x20('+'logs,'+_0x4951e1(0xfa,0xd3)+_0x1b96a6(0x8dd,0x79f)+_0x1b96a6(0x5d5,0x722)+_0x4951e1(0x65,0x16c)+_0x4951e1(0x244,0x30d)+_0x1b96a6(0x91f,0x791)+_0x1b96a6(0x7e4,0x6e0)+_0x1b96a6(0x5cc,0x517)+_0x1b96a6(0x572,0x67c)+_0x1b96a6(0x66c,0x57f)+'ditor'+_0x1b96a6(0x895,0x75d)+'fig)\x0a'+_0x4951e1(-0xfd,0xa3)+'-path'+'\x20\x20\x20\x20\x20'+_0x1b96a6(0x89c,0x791)+_0x4951e1(0x1a3,0xaf)+'\x20conf'+'ig\x20fi'+_0x4951e1(0x2d2,0x2d1)+_0x1b96a6(0x796,0x829)+_0x1b96a6(0x549,0x67c)+_0x1b96a6(0x7af,0x67d)+_0x4951e1(0x5d6,0x441)+_0x1b96a6(0x780,0x6b6)+_0x1b96a6(0x92e,0x7bc)+'\x20\x20Ski'+_0x1b96a6(0x64d,0x66b)+_0x1b96a6(0x7cd,0x7ae)+_0x1b96a6(0x6b1,0x7ff)+_0x1b96a6(0x8d7,0x84a)+_0x4951e1(0x42c,0x3ec)+(_0x1b96a6(0x9a5,0x817)+'\x0a\x20\x20\x20\x20'+_0x1b96a6(0x5b6,0x650)+_0x1b96a6(0x8d7,0x791)+'\x20\x20\x20\x20\x20'+_0x4951e1(0x448,0x40b)+_0x4951e1(0x31a,0x2c5)+'ion\x0a\x20'+'\x20\x20\x20-h'+_0x1b96a6(0x89e,0x791)+'\x20\x20\x20\x20\x20'+_0x4951e1(0x2d3,0x3e0)+_0x4951e1(0x16e,0x10a)+'his\x20h'+_0x4951e1(0x449,0x260)+_0x4951e1(0x2b0,0x263)+'mples'+_0x4951e1(0x25,0x9c)+_0x1b96a6(0x64b,0x5d8)+_0x1b96a6(0x81e,0x6ae)+_0x4951e1(0x1d8,0x32b)+'t\x20\x20\x20\x20'+'\x20\x20\x20\x20\x20'+_0x1b96a6(0x6a4,0x791)+'\x20\x20\x20\x20#'+_0x4951e1(0x355,0x30e)+'t\x20on\x20'+'defau'+_0x1b96a6(0x76f,0x796)+_0x4951e1(0x51d,0x3c3)+'\x20\x20npx'+_0x1b96a6(0x5c7,0x62a)+_0x1b96a6(0x315,0x4df)+'at\x20--'+_0x1b96a6(0x7d1,0x663)+_0x1b96a6(0x63f,0x776)+'\x20\x20\x20\x20\x20'+_0x1b96a6(0x4b3,0x61a)+_0x1b96a6(0x646,0x4cd)+_0x1b96a6(0x80e,0x87c)+_0x4951e1(-0xd4,0xdb)+_0x1b96a6(0x8ae,0x727)+_0x4951e1(0x47c,0x389)+_0x4951e1(0x274,0x3a6)+_0x4951e1(0x359,0x454)+'\x20stop'+_0x1b96a6(0x67d,0x791)+_0x1b96a6(0x929,0x791)+_0x4951e1(-0x9c,0x10f)+_0x1b96a6(0x8a4,0x866)+_0x1b96a6(0x69e,0x84f)+_0x1b96a6(0x587,0x526)+_0x1b96a6(0x861,0x727)+_0x4951e1(0x524,0x389)+_0x1b96a6(0x7d2,0x7db)+_0x4951e1(0x5dc,0x454)+_0x1b96a6(0x99b,0x832)+'\x20\x20\x20\x20\x20'+_0x1b96a6(0x7cd,0x791)+_0x4951e1(-0x34,0x10f)+_0x1b96a6(0x539,0x5b9)+'setup'+_0x1b96a6(0x6a1,0x832)+_0x1b96a6(0x790,0x727)+_0x1b96a6(0x930,0x7be)+_0x4951e1(0x3b1,0x3a6)+'-chat'+_0x4951e1(0x3b2,0x23a)+_0x4951e1(0x287,0x1d0)+_0x1b96a6(0x973,0x78e)+'00\x20#\x20'+_0x4951e1(0x330,0x1d2)+_0x1b96a6(0x930,0x81e)+_0x1b96a6(0x863,0x74a)+'og\x20li'+_0x1b96a6(0x655,0x79e)+_0x4951e1(0xa2,0x20d)+'x\x20upl'+_0x1b96a6(0x7bc,0x5d5)+'hat\x20c'+_0x4951e1(0x2c8,0x247)+_0x1b96a6(0x9e1,0x887)+_0x4951e1(0x175,0x27f)+_0x1b96a6(0x4d9,0x556)+_0x4951e1(0x537,0x3f9)+_0x1b96a6(0x8be,0x6d6)+_0x1b96a6(0x4b5,0x540)+_0x4951e1(0x29d,0x303)+_0x4951e1(0x225,0x1a5)+'\x20\x20npx'+_0x4951e1(0x32,0x1f5)+_0x1b96a6(0x5e2,0x4df)+'at\x20do'+_0x4951e1(0x222,0x25f)+'\x20\x20\x20\x20\x20'+_0x1b96a6(0x64b,0x791)+_0x1b96a6(0x950,0x826)+'\x20diag'+_0x4951e1(0x527,0x3c7)+_0x1b96a6(0x84c,0x871)+_0x1b96a6(0x7b5,0x82a)+_0x4951e1(0x3d7,0x1f5)+_0x1b96a6(0x50a,0x4df)+_0x4951e1(0x432,0x3ff)+'set\x20-'+_0x4951e1(0x3d0,0x421)+_0x1b96a6(0x78f,0x6b5)+_0x4951e1(0x17e,0x1c9)+_0x4951e1(-0xe7,0xc4)+_0x1b96a6(0x48f,0x5fc)+_0x4951e1(0x8d,0x168)+'\x20prom'+_0x4951e1(0x2c3,0x26e))),process[_0x4951e1(0x3e6,0x2c1)](0x29*0xb+0x1*0x85a+0x1*-0xa1d));function isRunning(_0x5a130d){function _0x917fbf(_0x203ed3,_0x2bb5bd){return _0x1b96a6(_0x203ed3,_0x2bb5bd- -0x51a);}function _0x97cd9b(_0x139201,_0x843d70){return _0x1b96a6(_0x139201,_0x843d70- -0x1ea);}const _0x325946={'wuqJs':function(_0x6258,_0x10666c){return _0x6258/_0x10666c;},'jGBXO':function(_0x16775d,_0x791bd7){return _0x16775d*_0x791bd7;},'pNRjV':function(_0x1e786b,_0x52fa03){return _0x1e786b>=_0x52fa03;},'uGzJz':function(_0xfaf9ff,_0x496350,_0x2f26f4){return _0xfaf9ff(_0x496350,_0x2f26f4);},'jvkXe':_0x97cd9b(0x4ff,0x45f)+_0x97cd9b(0x4b4,0x37d),'OLtuh':function(_0x598f29,_0x4c8bc8,_0x2b9395){return _0x598f29(_0x4c8bc8,_0x2b9395);},'LRkbi':function(_0x2cfa1f,_0x51abbe){return _0x2cfa1f!==_0x51abbe;},'SxVxK':_0x917fbf(-0x98,-0x1)};try{return process[_0x97cd9b(0x76e,0x5d3)](_0x5a130d,-0xd5a+-0x1*-0x1973+0xc19*-0x1),!![];}catch{if(_0x325946[_0x97cd9b(0x767,0x6aa)](_0x97cd9b(0x224,0x32f),_0x325946[_0x917fbf(0x20a,0x312)])){const _0x15978d=_0x1ddcf3[_0x97cd9b(0x32c,0x380)](_0x325946['wuqJs'](_0x160edb,_0x325946[_0x917fbf(-0xe2,0x6d)](0x239b*0x1+-0x2f9*0x1+-0x1ca2,-0x48*0x57+0x1a46+0x232)));_0x325946['pNRjV'](_0x15978d,-0x1e5*0x10+-0x10f7+-0x3*-0x1069)?_0x325946['uGzJz'](_0x5e45f8,_0x325946[_0x917fbf(0x31c,0x1b5)],_0x15978d+(_0x97cd9b(0x325,0x431)+'ree')):_0x325946['OLtuh'](_0x5284fe,_0x325946[_0x97cd9b(0x63f,0x4e5)],_0x15978d+(_0x97cd9b(0x582,0x431)+_0x917fbf(0x244,0x102)+_0x97cd9b(0x353,0x361)+_0x97cd9b(0x5c9,0x3f9)+_0x917fbf(0xec,0x132)+'MB'));}else return![];}}function getPid(){function _0x53046b(_0x16bb61,_0x1af504){return _0x1b96a6(_0x16bb61,_0x1af504- -0x134);}const _0x4350b4={'nXscV':function(_0x13f77d,_0x104b44){return _0x13f77d(_0x104b44);},'XjCOU':function(_0xfe3ecd,_0x2219d7,_0x4e8bd5){return _0xfe3ecd(_0x2219d7,_0x4e8bd5);},'tIJWU':function(_0x1dc330,_0x197631){return _0x1dc330(_0x197631);}};if(!_0x4350b4['nXscV'](existsSync,PID_FILE))return null;const _0x25ced9=parseInt(_0x4350b4[_0x2e02da(0x64d,0x544)](readFileSync,PID_FILE,_0x2e02da(0x2ed,0x392))[_0x2e02da(0x52d,0x35a)](),-0x7f9*0x3+-0x7fd*-0x2+-0x9*-0xe3);if(isNaN(_0x25ced9)||!_0x4350b4[_0x2e02da(0x465,0x31b)](isRunning,_0x25ced9)){try{_0x4350b4[_0x2e02da(0x39b,0x249)](unlinkSync,PID_FILE);}catch{}return null;}function _0x2e02da(_0x40c937,_0x5c9e73){return _0x1b96a6(_0x40c937,_0x5c9e73- -0x2f4);}return _0x25ced9;}function getWatchdogPid(){const _0x583742={'wuGNu':function(_0x510a54,_0x469bce){return _0x510a54(_0x469bce);},'YgTCp':function(_0x19e2d4,_0x551f48,_0x301a26){return _0x19e2d4(_0x551f48,_0x301a26);},'ZtSCT':_0xb09f6d(-0x15a,-0x66),'fHpFi':function(_0x47a864,_0x70577){return _0x47a864(_0x70577);}};function _0x149343(_0x2faae6,_0x1d96b9){return _0x1b96a6(_0x1d96b9,_0x2faae6- -0x30);}function _0xb09f6d(_0x22a354,_0x81fbd0){return _0x1b96a6(_0x22a354,_0x81fbd0- -0x6ec);}if(!_0x583742['wuGNu'](existsSync,WATCHDOG_PID_FILE))return null;const _0x4ec8a2=parseInt(_0x583742['YgTCp'](readFileSync,WATCHDOG_PID_FILE,_0x583742[_0x149343(0x7d7,0x764)])[_0xb09f6d(0x12a,-0x9e)](),0xd7*-0xa+-0x19*-0x10d+-0x37*0x53);if(_0x583742['fHpFi'](isNaN,_0x4ec8a2)||!_0x583742[_0xb09f6d(-0xdf,-0xfe)](isRunning,_0x4ec8a2)){try{_0x583742['fHpFi'](unlinkSync,WATCHDOG_PID_FILE);}catch{}return null;}return _0x4ec8a2;}function getWatchdogState(){const _0x3d0573={'YQmMF':function(_0x284632,_0x84498,_0x381bbe){return _0x284632(_0x84498,_0x381bbe);},'cwwLW':_0xd4663f(0x81,0x1cc)+'ninst'+_0xd4663f(0x55,0x10e)+_0x267ffa(0x73f,0x6ab)+'oncom'+_0x267ffa(0x69f,0x65d)+'uplin'+_0x267ffa(0x419,0x579)+'t','ZkSoO':_0x267ffa(0x3c8,0x35a)+_0x267ffa(0x379,0x39e)+_0x267ffa(0x62e,0x675)+_0xd4663f(0x1b3,0x36)+_0xd4663f(0x24f,0x42b)+'.\x20👋\x0a','EhgFM':_0xd4663f(0x18b,0x204)+_0x267ffa(0x609,0x5fe)+_0xd4663f(0x99,0x23b),'jbalm':function(_0x47d7af,_0x36accb){return _0x47d7af(_0x36accb);},'iGerV':_0xd4663f(0x2aa,0x2ae),'nLUMo':'utf8','EymMo':function(_0x3eb5fb,_0x311118){return _0x3eb5fb===_0x311118;}};function _0x267ffa(_0x2a0861,_0x3f2de8){return _0x4951e1(_0x2a0861,_0x3f2de8-0x24e);}if(!_0x3d0573[_0xd4663f(0x40,-0x2a)](existsSync,WATCHDOG_STATE_FILE))return null;function _0xd4663f(_0x25b138,_0x3b63cc){return _0x4951e1(_0x3b63cc,_0x25b138- -0x157);}try{if(_0x3d0573[_0x267ffa(0x33d,0x4c2)]===_0x3d0573[_0x267ffa(0x46a,0x4c2)])return JSON[_0xd4663f(0x2e9,0x1e3)](readFileSync(WATCHDOG_STATE_FILE,_0x3d0573[_0xd4663f(0x112,0x137)]));else{const _0x40a7a7={};_0x40a7a7[_0xd4663f(0x26a,0x315)]=_0xd4663f(0x23d,0x417)+'it',_0x3d0573['YQmMF'](_0x4bcd69,_0x3d0573[_0x267ffa(0x485,0x46c)],_0x40a7a7),_0x5ac4a1[_0xd4663f(0x1b1,0x2f8)](_0xd4663f(0x17e,0x1ec)+_0xd4663f(0x219,0x321)+'k\x20has'+_0xd4663f(0x17f,0x225)+_0x267ffa(0x840,0x67a)+_0xd4663f(-0x8f,-0xbf)+_0xd4663f(0x24a,0x31d)+_0x267ffa(0x4ec,0x412)+_0x267ffa(0x3cd,0x470)),_0x111e67[_0x267ffa(0x623,0x556)](_0x3d0573[_0xd4663f(-0x74,0xa2)]);}}catch{if(_0x3d0573[_0xd4663f(-0x64,0x60)](_0xd4663f(-0x14,-0x74),'Bqlnz'))_0x3d0573[_0x267ffa(0x266,0x3db)](_0x306956,_0x3d0573[_0xd4663f(0x5f,0x216)],'v'+_0x5269fe+(_0x267ffa(0x4dc,0x619)+_0x267ffa(0x587,0x55f)+_0x267ffa(0x3f2,0x555)+_0x267ffa(0x496,0x479)+'requi'+_0xd4663f(0x6b,0x215)));else return null;}}function formatUptime(_0x512098){const _0x4f4506={};_0x4f4506[_0x1ccae0(0x711,0x5c6)]=function(_0x422937,_0x4abe00){return _0x422937/_0x4abe00;},_0x4f4506['tVvIN']=function(_0x6f0d28,_0x2dc69a){return _0x6f0d28>_0x2dc69a;},_0x4f4506['lJwpD']=function(_0x198d5d,_0x212a36){return _0x198d5d%_0x212a36;},_0x4f4506[_0x1ccae0(0x3f5,0x494)]=function(_0x8283e7,_0x551251){return _0x8283e7%_0x551251;};const _0x5e6434=_0x4f4506;function _0x1ccae0(_0x568185,_0x22be6f){return _0x4951e1(_0x568185,_0x22be6f-0x36e);}const _0x2994c9=Math[_0x257a88(0x28e,0x260)](_0x5e6434['MEocJ'](_0x512098,0x78*0x11+-0x1e4a*-0x1+-0x112d*0x2)),_0x3f7bc5=Math[_0x257a88(0x14a,0x260)](_0x5e6434[_0x257a88(0x192,0xf2)](_0x2994c9,0x3*-0xc41+-0x4d*0x73+0x2*0x23cb)),_0x57a2e8=Math[_0x257a88(0x426,0x260)](_0x5e6434[_0x257a88(0x2d4,0xf2)](_0x3f7bc5,-0xe4a+-0x219a+0x3020)),_0x1f9c1e=Math['floor'](_0x5e6434[_0x1ccae0(0x75b,0x5c6)](_0x57a2e8,0x187a+-0x3b*-0x93+-0x9d*0x5f));if(_0x5e6434[_0x257a88(0x137,0x1cf)](_0x1f9c1e,-0x2223*0x1+-0x1*0xbf3+0x2*0x170b))return _0x1f9c1e+'d\x20'+_0x5e6434[_0x257a88(0xe0,-0x44)](_0x57a2e8,0x1*0x2f9+0x1367*-0x1+0x1086)+'h\x20'+_0x5e6434[_0x1ccae0(0x612,0x494)](_0x3f7bc5,-0x3*0x3ee+0x1*-0x13f1+0x1ff7)+'m';if(_0x5e6434['tVvIN'](_0x57a2e8,0x1*0x2f5+-0x252*0x7+0x1*0xd49))return _0x57a2e8+'h\x20'+_0x5e6434[_0x1ccae0(0x3ae,0x494)](_0x3f7bc5,-0xfa+-0x45*0x24+0x7f*0x16)+'m\x20'+_0x2994c9%(0x20*0x4d+0x26b6*-0x1+0x1a1*0x12)+'s';if(_0x3f7bc5>-0x222+-0x1d*-0x1f+-0x161)return _0x3f7bc5+'m\x20'+_0x2994c9%(0x1d*0xb5+0x1d8b+-0x31d0)+'s';function _0x257a88(_0x4bdc1b,_0x418161){return _0x4951e1(_0x4bdc1b,_0x418161- -0x166);}return _0x2994c9+'s';}if(command===_0x1b96a6(0x6c3,0x6f8)){const watchdogPid=getWatchdogPid();if(watchdogPid){try{process[_0x1b96a6(0x646,0x7bd)](watchdogPid,_0x1b96a6(0x70b,0x80b)+'RM'),console[_0x1b96a6(0x55b,0x73d)]('⬡\x20Upl'+_0x4951e1(0x310,0x393)+_0x1b96a6(0x8a5,0x86a)+_0x1b96a6(0x915,0x85a)+'opped'+_0x4951e1(0x2b1,0x2f9)+'\x20'+watchdogPid+').');try{unlinkSync(WATCHDOG_PID_FILE);}catch{}try{unlinkSync(PID_FILE);}catch{}}catch(_0x24f37b){console['error'](_0x1b96a6(0x6b5,0x51a)+'led\x20t'+_0x1b96a6(0x8ad,0x7ed)+_0x1b96a6(0x6f6,0x5e9)+_0x1b96a6(0x73c,0x7c8)+_0x1b96a6(0x907,0x86a)+_0x4951e1(0x1f6,0x2a4)+_0x4951e1(0x3ed,0x2a3)+watchdogPid+'):',_0x24f37b[_0x4951e1(0xc7,0x2a8)+'ge']),process[_0x1b96a6(0x7f2,0x6f6)](-0x493*-0x3+0x3ec+0x8d2*-0x2);}process[_0x4951e1(0x171,0x2c1)](0x2060+0x5d8+0x1*-0x2638);}const pid=getPid();!pid&&(console['log'](_0x4951e1(0x141,0x1ca)+_0x4951e1(0x1d9,0x1d5)+_0x4951e1(0x19d,0x310)+_0x4951e1(0x251,0x3fe)+_0x1b96a6(0x888,0x7e1)),process[_0x4951e1(0x2b4,0x2c1)](0x725*0x2+0x5f*0x1d+-0x190d));try{process[_0x1b96a6(0x8cc,0x7bd)](pid,_0x1b96a6(0x791,0x80b)+'RM'),console[_0x1b96a6(0x571,0x73d)]('⬡\x20Upl'+'ink\x20s'+'toppe'+'d\x20(PI'+'D\x20'+pid+').');try{unlinkSync(PID_FILE);}catch{}}catch(_0x3bd1e1){console[_0x4951e1(0x4e3,0x33f)](_0x4951e1(0x26c,0xe5)+_0x4951e1(0x37e,0x3b4)+'o\x20sto'+_0x1b96a6(0x7b3,0x5e9)+'ink\x20('+_0x4951e1(0x42c,0x2b4)+pid+'):',_0x3bd1e1[_0x1b96a6(0x890,0x6dd)+'ge']),process['exit'](0x6*0x3d3+-0x1*-0x38d+0x1*-0x1a7e);}process[_0x4951e1(0x178,0x2c1)](0xf5d+-0x1db0+0xe53);}if(command===_0x4951e1(0x3f3,0x39c)+'e'){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x1b96a6(0x640,0x69f)+_0x1b96a6(0x473,0x4eb)+'on')),currentVersion=pkg[_0x1b96a6(0x497,0x545)+'on'];console[_0x1b96a6(0x730,0x73d)](_0x1b96a6(0x7e3,0x79d)+'rent\x20'+_0x4951e1(0x234,0x110)+_0x1b96a6(0x56f,0x50e)+currentVersion),console[_0x4951e1(0x1af,0x308)](_0x1b96a6(0x7db,0x72f)+_0x4951e1(0x6d,0x1af)+_0x1b96a6(0x9b0,0x860)+'updat'+_0x1b96a6(0x5e3,0x620)+'\x0a');const wasRunning=!!(getWatchdogPid()||getPid());if(wasRunning){console['log']('⬡\x20Sto'+_0x4951e1(0x394,0x2dd)+_0x1b96a6(0x855,0x6aa)+_0x1b96a6(0x5d1,0x6c1)+_0x4951e1(0x302,0x294)+_0x4951e1(0x363,0x39c)+_0x4951e1(-0x89,0xb0));const watchdogPid=getWatchdogPid(),serverPid=getPid(),pidToKill=watchdogPid||serverPid;try{process[_0x1b96a6(0x801,0x7bd)](pidToKill,_0x1b96a6(0x873,0x80b)+'RM');try{unlinkSync(WATCHDOG_PID_FILE);}catch{}try{unlinkSync(PID_FILE);}catch{}const _0x331ec9={};_0x331ec9[_0x4951e1(0x322,0x3c1)]=_0x4951e1(0x17a,0x2b1)+'e',execSync(_0x1b96a6(0x62c,0x609)+_0x4951e1(0x3f7,0x2d8)+_0x4951e1(0x1ac,0x1df)+_0x4951e1(0x4a,0x206)+_0x4951e1(0x216,0x28e)+_0x1b96a6(0x82b,0x785)+_0x4951e1(0x292,0x1ff)+'\x20/nob'+'reak\x20'+_0x4951e1(0x4bd,0x3a8)+_0x1b96a6(0x4e2,0x5c3),_0x331ec9);}catch{}}try{console[_0x1b96a6(0x8cc,0x73d)](_0x1b96a6(0x81f,0x718)+_0x1b96a6(0x5ce,0x5d7)+_0x4951e1(-0x10,0x181)+_0x4951e1(-0x40,0x107)+_0x1b96a6(0x50e,0x665)+_0x4951e1(0x515,0x3a6)+'-chat'+_0x1b96a6(0x7c3,0x7aa));const _0x2f1abe={};_0x2f1abe[_0x1b96a6(0x88e,0x7f6)]=_0x4951e1(0x39e,0x394)+'it',execSync('npm\x20u'+_0x1b96a6(0x728,0x754)+_0x1b96a6(0x70c,0x7c6)+_0x4951e1(0x32b,0x32c)+_0x4951e1(0x3a9,0x3bd)+_0x1b96a6(0x62c,0x75e)+_0x1b96a6(0x4eb,0x5d5)+'hat',_0x2f1abe);}catch(_0x106979){console[_0x1b96a6(0x818,0x774)]('\x0a⬡\x20Up'+_0x1b96a6(0x728,0x674)+'faile'+'d:',_0x106979[_0x4951e1(0x325,0x2a8)+'ge']),console[_0x1b96a6(0x6c9,0x774)](_0x1b96a6(0x4fc,0x5e0)+_0x1b96a6(0x752,0x833)+_0x4951e1(0x336,0x1a8)+_0x1b96a6(0x693,0x5b1)+'ly:\x20n'+_0x1b96a6(0x3a0,0x57a)+_0x1b96a6(0x5e9,0x674)+_0x4951e1(0x50,0xac)+_0x4951e1(0x51e,0x3bc)+_0x1b96a6(0x633,0x55f)+_0x1b96a6(0x3ff,0x4ec)+'nk-ch'+'at');if(wasRunning){console[_0x1b96a6(0x834,0x73d)](_0x1b96a6(0x998,0x818)+_0x1b96a6(0x45b,0x4e7)+'ing\x20U'+_0x4951e1(0x438,0x3a6)+_0x4951e1(0x38f,0x2c8));const _0x3f5867={};_0x3f5867[_0x4951e1(0x51a,0x3c1)]=_0x4951e1(0x3e2,0x394)+'it',execSync(_0x4951e1(0x21e,0x279)+_0x4951e1(0x219,0x32b)+_0x1b96a6(0x7f4,0x802)+_0x1b96a6(0x8bd,0x786)+_0x4951e1(0x46c,0x392)+'h',_0x3f5867);}process[_0x1b96a6(0x57b,0x6f6)](-0x8a+-0xb1+0x13c);}try{delete require[_0x4951e1(0x122,0x2c4)][join(ROOT,_0x4951e1(0x375,0x26a)+_0x1b96a6(0x5ff,0x4eb)+'on')];const newPkg=require(join(ROOT,_0x4951e1(0x2b2,0x26a)+_0x4951e1(0x281,0xb6)+'on')),newVersion=newPkg[_0x4951e1(0x1ad,0x110)+'on'];newVersion!==currentVersion?console[_0x1b96a6(0x60d,0x73d)]('\x0a⬡\x20Up'+_0x1b96a6(0x517,0x52b)+':\x20v'+currentVersion+'\x20→\x20v'+newVersion):console[_0x4951e1(0x4b0,0x308)](_0x1b96a6(0x64e,0x67b)+_0x1b96a6(0x47f,0x50c)+'\x20on\x20t'+_0x4951e1(0x511,0x453)+_0x4951e1(0x295,0x2af)+_0x1b96a6(0x3f3,0x545)+_0x1b96a6(0x50c,0x524)+currentVersion+').');}catch{console[_0x4951e1(0x344,0x308)]('\x0a⬡\x20Up'+_0x1b96a6(0x58f,0x674)+'compl'+_0x1b96a6(0x778,0x6d7));}if(wasRunning){console[_0x4951e1(0x3cc,0x308)](_0x1b96a6(0x776,0x6db)+'tarti'+_0x1b96a6(0x84b,0x82b)+_0x1b96a6(0x597,0x596)+'..');try{const _0x56c148={};_0x56c148[_0x1b96a6(0x750,0x7f6)]=_0x4951e1(0x366,0x394)+'it',execSync('uplin'+_0x4951e1(0x2f4,0x32b)+'t\x20sta'+'rt\x20--'+'detac'+'h',_0x56c148);}catch{console['log'](_0x4951e1(0x17,0x15b)+_0x1b96a6(0x7e5,0x6ce)+_0x4951e1(-0x4f,0xa9)+_0x4951e1(-0x10b,0xb1)+'d.\x20St'+_0x1b96a6(0x6aa,0x853)+_0x1b96a6(0x62d,0x5b1)+_0x4951e1(0x1c8,0x33b)+_0x1b96a6(0x5d1,0x5a2)+_0x4951e1(0x2f8,0x3a6)+'-chat'+_0x4951e1(0x1eb,0x178)+'t');}}process[_0x1b96a6(0x663,0x6f6)](-0x2158*0x1+0x1b17+0x641);}if(command===_0x4951e1(0x146,0x9d)+'s'){const watchdogPid=getWatchdogPid(),state=getWatchdogState();if(watchdogPid&&state){const uptime=formatUptime(Date[_0x4951e1(0x230,0xde)]()-state[_0x4951e1(-0x55,0xb2)+'edAt']);console['log'](_0x4951e1(0x36e,0x1ca)+_0x4951e1(0x209,0x1d5)+_0x4951e1(0xae,0x128)+'ning\x20'+_0x4951e1(0x1cf,0x2b6)+'hdog\x20'+_0x1b96a6(0x4b9,0x51e)),console[_0x1b96a6(0x896,0x73d)](_0x4951e1(0x157,0x205)+_0x4951e1(0xbc,0x245)+_0x1b96a6(0x721,0x65f)+'\x20'+watchdogPid);if(state['serve'+_0x1b96a6(0x82d,0x768)])console[_0x4951e1(0x3ac,0x308)](_0x4951e1(0x33d,0x156)+_0x4951e1(0x57c,0x3f2)+_0x4951e1(0x2ee,0x286)+'\x20'+state[_0x4951e1(0xe8,0x188)+_0x1b96a6(0x76b,0x768)]);console[_0x1b96a6(0x85c,0x73d)](_0x4951e1(0x1cc,0x3ad)+_0x4951e1(0x1a8,0x2b8)+_0x1b96a6(0x92f,0x791)+'\x20'+uptime),console['log']('\x20\x20Res'+_0x1b96a6(0x7e6,0x723)+':\x20\x20\x20\x20'+'\x20'+(state[_0x1b96a6(0x5dd,0x654)+_0x1b96a6(0x607,0x529)+'nt']||0x269b+-0x945+-0x1d56));if(state[_0x1b96a6(0x592,0x615)+'ffMs']>-0x40b*-0x1+-0x872+0x84f)console[_0x1b96a6(0x86f,0x73d)](_0x4951e1(0xac,0x1ef)+'koff:'+_0x4951e1(0x26b,0x35c)+'\x20'+state[_0x1b96a6(0x618,0x615)+'ffMs']+'ms');}else{const pid=getPid();pid?console[_0x4951e1(0x26c,0x308)](_0x1b96a6(0x650,0x5ff)+_0x4951e1(0x300,0x1d5)+_0x4951e1(0x252,0x128)+_0x1b96a6(0x599,0x4d0)+_0x1b96a6(0x62d,0x673)+pid+').'):console['log']('⬡\x20Upl'+'ink\x20i'+'s\x20not'+_0x1b96a6(0x800,0x833)+_0x4951e1(0x556,0x3ac));}process[_0x1b96a6(0x530,0x6f6)](-0xbb1+0x2*0x13b+0x93b);}if(command===_0x4951e1(0x101,0x2b7)+'tall'){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x4951e1(0x11b,0x26a)+_0x1b96a6(0x3df,0x4eb)+'on')),readline=await import(_0x1b96a6(0x6f1,0x782)+_0x1b96a6(0x64d,0x6ab)),{rmSync}=await import('fs');console['log'](_0x1b96a6(0x617,0x70a)+'Uplin'+'k\x20Uni'+_0x1b96a6(0x622,0x5f9)+_0x1b96a6(0x9dc,0x85b)+pkg[_0x1b96a6(0x6ee,0x545)+'on']+'\x0a'),console['log'](_0x1b96a6(0x8b5,0x7ab)+_0x1b96a6(0x42d,0x4d5)+'l:'),console[_0x1b96a6(0x59d,0x73d)]('\x20\x20\x20\x20•'+_0x4951e1(0x38a,0x382)+_0x4951e1(0x358,0x38e)+_0x4951e1(0x3d5,0x370)+_0x1b96a6(0x8cf,0x811)+_0x1b96a6(0x639,0x532)+_0x4951e1(0x113,0x11a)+_0x4951e1(0x49a,0x2fc)+'g'),console[_0x4951e1(0x190,0x308)](_0x1b96a6(0x7ec,0x637)+_0x1b96a6(0x440,0x4d6)+'ve\x20al'+_0x4951e1(0x38c,0x3e6)+_0x4951e1(0x4d6,0x44c)+_0x4951e1(0x396,0x265)+_0x1b96a6(0x7c0,0x7cb)+_0x1b96a6(0x733,0x64d)+'nfig\x20'+_0x4951e1(0x1dd,0x11b)+')'),console[_0x1b96a6(0x600,0x73d)](_0x4951e1(0x230,0x202)+_0x1b96a6(0x646,0x4d6)+_0x1b96a6(0x745,0x5d3)+_0x1b96a6(0x3a5,0x575)+'oads\x20'+_0x4951e1(0x2ff,0x2c6)+_0x1b96a6(0x3da,0x56f)+_0x4951e1(0x430,0x32f)),console[_0x4951e1(0x416,0x308)](_0x4951e1(0x233,0x202)+_0x4951e1(0x78,0xa1)+_0x1b96a6(0x465,0x5d3)+_0x4951e1(0x150,0x198)+_0x1b96a6(0x8eb,0x759)+_0x1b96a6(0x568,0x5d6)+'files'),console[_0x4951e1(0x259,0x308)](_0x4951e1(0xf4,0x202)+_0x1b96a6(0x313,0x4d6)+_0x4951e1(0x490,0x443)+_0x4951e1(0xe7,0x292)+_0x4951e1(0x9c,0xba)+_0x4951e1(0x140,0x324)+'\x20audi'+_0x1b96a6(0x965,0x868)+'es'),console[_0x1b96a6(0x704,0x73d)](_0x4951e1(0x32c,0x202)+_0x4951e1(0x210,0x2f6)+_0x4951e1(0x5df,0x445)+'\x20the\x20'+_0x1b96a6(0x86a,0x83c)+'ackag'+_0x4951e1(0x339,0x395)+'bally'+'\x0a'),console[_0x4951e1(0x165,0x308)]('\x20\x20⚠️\x20\x20'+_0x4951e1(0x182,0x186)+_0x4951e1(0x151,0xbd)+_0x4951e1(0x267,0x312)+_0x4951e1(0x1ed,0x3af)+'e\x20und'+_0x1b96a6(0x6b0,0x79b));const _0x574dc2={};_0x574dc2[_0x1b96a6(0x722,0x65c)]=process[_0x1b96a6(0x772,0x7ad)],_0x574dc2['outpu'+'t']=process[_0x1b96a6(0x6f7,0x810)+'t'];const rl=readline[_0x4951e1(0x159,0x25d)+'eInte'+_0x4951e1(0x20a,0x9e)](_0x574dc2),answer=await new Promise(_0x404aea=>{const _0x295af2={};function _0x1978e9(_0x840b40,_0xd0a9a9){return _0x1b96a6(_0x840b40,_0xd0a9a9- -0x700);}_0x295af2[_0x1978e9(0x22,0xd2)]=_0x4a16b4(0x2e2,0x45e)+_0x4a16b4(0x290,0x3fe)+_0x4a16b4(0x2a4,0x400)+_0x4a16b4(0x2b9,0x345)+_0x4a16b4(0x45b,0x3e3)+_0x4a16b4(-0x113,0xc1)+'\x20';function _0x4a16b4(_0x50bc82,_0x5427c3){return _0x1b96a6(_0x50bc82,_0x5427c3- -0x422);}const _0x5a17ac=_0x295af2;rl[_0x1978e9(-0x13d,-0x1fd)+'ion'](_0x5a17ac[_0x1978e9(0x12b,0xd2)],_0x404aea);});rl['close']();answer[_0x4951e1(0x400,0x219)]()[_0x4951e1(0x3bb,0x33e)+_0x4951e1(0x10a,0xe8)+'e']()!==_0x4951e1(0x1ac,0x2b7)+'tall'&&(console[_0x1b96a6(0x571,0x73d)](_0x1b96a6(0x43d,0x5cf)+_0x1b96a6(0x7ae,0x704)+_0x1b96a6(0x4fe,0x594)+_0x4951e1(0x132,0x1bf)+_0x1b96a6(0x502,0x5c4)+'\x20remo'+_0x4951e1(0xc3,0x26d)),process[_0x1b96a6(0x891,0x6f6)](0x819+0xb2*-0x17+-0x2f*-0x2b));console[_0x1b96a6(0x6f5,0x73d)]('');const watchdogPid=getWatchdogPid(),serverPid=getPid();if(watchdogPid)try{process[_0x4951e1(0x464,0x388)](watchdogPid,_0x4951e1(0x457,0x3d6)+'RM'),console[_0x1b96a6(0x6e0,0x73d)]('\x20\x20✓\x20S'+_0x1b96a6(0x564,0x63e)+_0x1b96a6(0x9ca,0x80e)+_0x4951e1(0x3cf,0x245)+'\x20(PID'+'\x20'+watchdogPid+')');}catch{}if(serverPid)try{process[_0x4951e1(0x2ed,0x388)](serverPid,'SIGTE'+'RM'),console[_0x1b96a6(0x5e3,0x73d)](_0x1b96a6(0x813,0x772)+_0x1b96a6(0x759,0x63e)+_0x4951e1(0x480,0x37c)+_0x1b96a6(0x41f,0x515)+_0x4951e1(0x1fb,0x2b4)+serverPid+')');}catch{}!watchdogPid&&!serverPid&&console[_0x1b96a6(0x91f,0x73d)]('\x20\x20✓\x20S'+_0x1b96a6(0x61c,0x526)+'\x20not\x20'+_0x4951e1(0x11b,0x2fd)+'ng');const legacyToRemove=['.env',_0x4951e1(0x492,0x45c)+_0x1b96a6(0x467,0x4dd)+'n','.upli'+_0x1b96a6(0x7db,0x621)+'d',_0x4951e1(0x40d,0x2ea)+'nk-wa'+'tchdo'+_0x4951e1(0x1a7,0x225),_0x4951e1(0x10b,0x2ea)+_0x1b96a6(0x89a,0x7f4)+_0x4951e1(0x35c,0x2fc)+_0x1b96a6(0x5d4,0x4dd)+'n','.upli'+_0x1b96a6(0x630,0x7f4)+_0x4951e1(0x3b9,0x2fc)+_0x4951e1(0x2b1,0x1c0),'.upli'+'nk-se'+_0x4951e1(0x5ff,0x423)+'log',_0x4951e1(0x252,0xa4)+_0x1b96a6(0x6dd,0x784)+_0x1b96a6(0x745,0x5dc),_0x4951e1(0x3c7,0x2a8)+'ges-s'+_0x1b96a6(0x71e,0x76e)+_0x1b96a6(0x64b,0x5dc),_0x4951e1(0x266,0x304)+'subsc'+'ripti'+_0x4951e1(0x1ed,0x340)+_0x4951e1(0xe4,0x1a7),'misse'+_0x4951e1(0x12c,0xab)+_0x1b96a6(0x8b4,0x709)+_0x1b96a6(0x8e2,0x82f),'uploa'+'ds',_0x4951e1(0x223,0x28f)+'data','publi'+_0x1b96a6(0x4dd,0x5fa)+'io',_0x4951e1(0x24c,0x2a9)+_0x4951e1(0x14d,0x12c)+_0x4951e1(0x3cc,0x2ce)+'ts'];let removed=-0x115*-0x1c+0x92b+0x2777*-0x1;for(const item of legacyToRemove){const fullPath=join(ROOT,item);if(existsSync(fullPath))try{const _0x84d880={};_0x84d880[_0x4951e1(0x28,0x137)+_0x1b96a6(0x615,0x59c)]=!![],_0x84d880[_0x4951e1(0x466,0x3e1)]=!![],rmSync(fullPath,_0x84d880),removed++;}catch{}}if(existsSync(DATA_DIR))try{const _0x1c017c={};_0x1c017c['recur'+_0x4951e1(0x10f,0x167)]=!![],_0x1c017c['force']=!![],rmSync(DATA_DIR,_0x1c017c),removed++,console[_0x4951e1(0x38d,0x308)]('\x20\x20✓\x20R'+_0x1b96a6(0x85f,0x7d5)+_0x4951e1(0x1e2,0x1a6)+_0x4951e1(0x2a2,0x133)+_0x4951e1(-0xc7,0x11c)+_0x4951e1(0x275,0x456)+DATA_DIR);}catch{}console['log']('\x20\x20✓\x20R'+'emove'+'d\x20'+removed+(_0x1b96a6(0x8e7,0x764)+_0x4951e1(0x3da,0x3a4)+'s/dir'+_0x1b96a6(0x44b,0x551)+_0x1b96a6(0x7b7,0x6dc))),console[_0x1b96a6(0x6c2,0x73d)](_0x1b96a6(0x682,0x626)+_0x4951e1(0x4b3,0x3d8)+_0x1b96a6(0x725,0x7d4)+'m\x20pac'+_0x4951e1(0x550,0x3f0)+'..\x0a');try{const _0x16bbb3={};_0x16bbb3[_0x1b96a6(0x7bd,0x7f6)]=_0x1b96a6(0x7c1,0x7c9)+'it',execSync(_0x1b96a6(0x62c,0x60d)+_0x4951e1(0x266,0x120)+_0x1b96a6(0x6e1,0x5e1)+_0x1b96a6(0x8c9,0x892)+_0x4951e1(0x2bb,0x295)+_0x4951e1(0x401,0x40f)+_0x4951e1(0x391,0x279)+_0x4951e1(0x426,0x32b)+'t',_0x16bbb3),console[_0x1b96a6(0x7c4,0x73d)]('\x0a\x20\x20⬡\x20'+'Uplin'+_0x1b96a6(0x7c9,0x63c)+'\x20been'+'\x20comp'+_0x4951e1(0x6d,0xc8)+_0x4951e1(0x3d4,0x3a1)+_0x4951e1(0x101,0x1c4)+_0x1b96a6(0x479,0x657)),console['log'](_0x1b96a6(0x62c,0x541)+_0x4951e1(0x15a,0x150)+'or\x20us'+'ing\x20U'+_0x4951e1(0x475,0x3a6)+_0x4951e1(0x137,0xcc));}catch(_0x549fb0){console['error'](_0x1b96a6(0x5e9,0x5be)+_0x1b96a6(0x9e5,0x85e)+_0x1b96a6(0x57e,0x534)+_0x1b96a6(0x7d6,0x708)+_0x4951e1(0x4cf,0x445)+_0x4951e1(0x8b,0x1ce)+_0x1b96a6(0x68b,0x69f)+_0x1b96a6(0x57b,0x5d0)),console[_0x1b96a6(0x6cd,0x774)](_0x4951e1(0x270,0x11f)+_0x4951e1(0x221,0x2cc)+_0x4951e1(0x186,0x112)+_0x4951e1(0x125,0x1ce)+_0x1b96a6(0x786,0x6ec)+_0x1b96a6(0x728,0x86b)+_0x1b96a6(0x59a,0x4e1)+_0x1b96a6(0x8c2,0x7f1)+_0x4951e1(0x1c4,0x12a)+_0x1b96a6(0x6b6,0x4ec)+_0x4951e1(-0xca,0xaa)+_0x1b96a6(0x612,0x563)),process[_0x4951e1(0x351,0x2c1)](-0x1*0x14fd+0x1eca+-0x9cc);}process[_0x1b96a6(0x807,0x6f6)](0x1*-0x1971+0x2688+-0x3*0x45d);}if(command===_0x4951e1(0x30b,0x2ca)){const LOG_FILE=join(ROOT,_0x1b96a6(0x798,0x5bd)+_0x1b96a6(0x8b9,0x88f)),ALT_LOG_FILE=join(ROOT,_0x1b96a6(0x72e,0x71f)+'nk-se'+_0x4951e1(0x51d,0x423)+'log'),DATA_LOG_FILE=join(DATA_DIR,_0x4951e1(0x3d7,0x2ea)+_0x1b96a6(0x634,0x67f)+_0x1b96a6(0x7a3,0x858)+_0x1b96a6(0x643,0x73d)),logFile=existsSync(DATA_LOG_FILE)?DATA_LOG_FILE:existsSync(LOG_FILE)?LOG_FILE:existsSync(ALT_LOG_FILE)?ALT_LOG_FILE:null;!logFile&&(console['log'](_0x1b96a6(0x736,0x72a)+_0x4951e1(0x443,0x444)+_0x4951e1(0x27b,0x193)+_0x1b96a6(0x549,0x55a)),console[_0x1b96a6(0x5ab,0x73d)]('\x20\x20Exp'+_0x1b96a6(0x6de,0x683)+_0x4951e1(-0x9d,0x147)+_0x1b96a6(0x4b2,0x4fc)+':'),console['log']('\x20\x20\x20\x20'+LOG_FILE),console[_0x1b96a6(0x86f,0x73d)](_0x4951e1(0x44a,0x35f)+ALT_LOG_FILE),console[_0x1b96a6(0x6ee,0x73d)](''),console['log'](_0x4951e1(0x122,0x267)+_0x1b96a6(0x475,0x5a3)+'\x20crea'+_0x4951e1(0x398,0x384)+_0x1b96a6(0x451,0x52e)+'he\x20se'+'rver\x20'+_0x1b96a6(0x5aa,0x66c)),console[_0x1b96a6(0x667,0x73d)](_0x1b96a6(0x64f,0x4f5)+_0x4951e1(0x279,0x240)+_0x4951e1(0x34c,0x38f)+_0x4951e1(0x43,0x215)+_0x4951e1(0x46d,0x2da)+_0x4951e1(0x298,0x1f5)+_0x4951e1(0x25e,0xaa)+'at\x20st'+_0x1b96a6(0x959,0x783)),process[_0x4951e1(0x2fa,0x2c1)](0x12e8+0x6fd*0x1+-0x19e4));const lines=flags[_0x4951e1(0x39b,0x1ea)]||-0x2243*0x1+-0x7*0x278+0x33bd;try{const content=readFileSync(logFile,_0x1b96a6(0x629,0x686)),allLines=content[_0x4951e1(0xc5,0x1d7)]('\x0a'),tail=allLines[_0x4951e1(0x246,0x344)](-lines)[_0x1b96a6(0x686,0x584)]('\x0a');console[_0x4951e1(0x2cc,0x308)](_0x1b96a6(0x637,0x6cb)+_0x1b96a6(0x82b,0x804)+_0x1b96a6(0x802,0x81e)+lines+(_0x4951e1(0x1db,0x354)+'s\x20fro'+'m\x20')+logFile+'\x0a'),console[_0x1b96a6(0x73c,0x73d)](tail);}catch(_0x2140e6){console[_0x1b96a6(0x765,0x774)]('⬡\x20Fai'+_0x4951e1(0x3b5,0x3b4)+'o\x20rea'+'d\x20log'+_0x1b96a6(0x80b,0x7d9)+':\x20'+_0x2140e6[_0x1b96a6(0x818,0x6dd)+'ge']),process[_0x1b96a6(0x71e,0x6f6)](-0x9a0+0x449+0x558);}console[_0x4951e1(0x49e,0x308)](_0x4951e1(0x170,0x33a)+'tchin'+_0x1b96a6(0x666,0x7ee)+_0x4951e1(0x340,0x424)+'log\x20e'+_0x1b96a6(0x6c5,0x5b5)+'s...\x20'+'(Ctrl'+_0x1b96a6(0x82b,0x7d0)+_0x4951e1(0x3d8,0x3f8)+')\x0a');const fsModule=await import('fs');let position=statSync(logFile)['size'];const watcher=fsModule[_0x4951e1(-0x6c,0xc5)](logFile,()=>{const _0x129317={};_0x129317[_0x1502db(0x34c,0x4b8)]=function(_0x350313,_0x32a6d1){return _0x350313>_0x32a6d1;},_0x129317[_0x4b352e(0x65,0x147)]=function(_0x48c18f,_0x3e7328){return _0x48c18f<_0x3e7328;};function _0x4b352e(_0x541dfb,_0x980d7e){return _0x1b96a6(_0x980d7e,_0x541dfb- -0x624);}_0x129317[_0x4b352e(0x6f,-0x155)]=function(_0x339adc,_0x4d926f){return _0x339adc===_0x4d926f;};function _0x1502db(_0x254c1c,_0x51995e){return _0x1b96a6(_0x254c1c,_0x51995e- -0x16b);}_0x129317['JKQEL']=_0x4b352e(0xec,0x16c);const _0x3051e7=_0x129317;try{const _0x15c54c=fsModule[_0x1502db(0x3c5,0x52e)+'ync'](logFile,'r'),_0x234518=fsModule[_0x4b352e(-0xcb,-0xc)+'Sync'](_0x15c54c)[_0x4b352e(0x6d,0x15e)];if(_0x3051e7['udStU'](_0x234518,position)){const _0x4c69be=Buffer['alloc'](_0x234518-position);fsModule[_0x1502db(0x322,0x451)+_0x1502db(0x4ff,0x6e5)](_0x15c54c,_0x4c69be,-0x1db2+-0x22c+0xfef*0x2,_0x4c69be[_0x1502db(0x44b,0x39e)+'h'],position),process['stdou'+'t'][_0x4b352e(-0x97,0xad)](_0x4c69be['toStr'+_0x4b352e(0xfa,0x4b)](_0x4b352e(0x62,0x1))),position=_0x234518;}else _0x3051e7[_0x4b352e(0x65,-0xc8)](_0x234518,position)&&(_0x3051e7['ifqme'](_0x1502db(0x5e5,0x5b0),_0x3051e7['JKQEL'])?(_0x15796[_0x4b352e(0x119,0x18f)]('⬡\x20Upl'+'ink\x20i'+_0x1502db(0x462,0x5da)+_0x1502db(0x53c,0x6c8)+_0x4b352e(0x1bd,0x209)),_0xc65c[_0x4b352e(0xd2,0x122)](-0x144e+0x1*0x1222+-0x22c*-0x1)):position=-0x67*0x2+-0x2*0x43f+0x94c);fsModule['close'+_0x1502db(0x6aa,0x616)](_0x15c54c);}catch{}});process['on'](_0x4951e1(0x276,0xb8)+'T',()=>{watcher[_0x44eb23(0x2c5,0x138)]();function _0x1e2b28(_0x1d0c6a,_0x719b20){return _0x4951e1(_0x719b20,_0x1d0c6a- -0x27c);}function _0x44eb23(_0x2992e5,_0x27ce1a){return _0x4951e1(_0x27ce1a,_0x2992e5- -0x23);}process[_0x44eb23(0x29e,0x443)](-0xa7c*0x2+0xa18*-0x1+0x1f10);}),process['on']('SIGTE'+'RM',()=>{watcher[_0x436c47(0x2bc,0xe9)]();function _0x436c47(_0x4e3913,_0x228f6d){return _0x4951e1(_0x4e3913,_0x228f6d- -0x1ff);}function _0x3f6e8d(_0x37c910,_0x58f3da){return _0x4951e1(_0x37c910,_0x58f3da- -0x131);}process[_0x3f6e8d(-0x14,0x190)](0xee0+0x5*0x75d+0x4b3*-0xb);});}if(command===_0x4951e1(0x62e,0x45c)+'g'){const ENV_FILE=existsSync(join(DATA_DIR,'.env'))?join(DATA_DIR,_0x1b96a6(0x719,0x74f)):join(ROOT,_0x1b96a6(0x721,0x74f));flags[_0x4951e1(0x19f,0x367)]&&(console[_0x1b96a6(0x623,0x73d)](ENV_FILE),process[_0x4951e1(0x1f8,0x2c1)](0x14e4+-0x2268+0xd84));if(flags['edit']){if(!existsSync(ENV_FILE)){const exampleFile=join(ROOT,'.env.'+'examp'+'le');existsSync(exampleFile)?(writeFileSync(ENV_FILE,readFileSync(exampleFile,_0x1b96a6(0x65d,0x686))),console[_0x1b96a6(0x7d9,0x73d)](_0x1b96a6(0x67f,0x591)+_0x4951e1(0x241,0x36c)+_0x1b96a6(0x681,0x505)+_0x4951e1(0x48d,0x2e5)+_0x1b96a6(0x79c,0x7fe)+_0x1b96a6(0x7ec,0x81c)+'le')):(writeFileSync(ENV_FILE,_0x4951e1(0x26e,0x17d)+_0x4951e1(0x12a,0x2bd)+_0x4951e1(0x178,0x247)+_0x4951e1(0x133,0x255)+'on\x0a'),console[_0x4951e1(0x3d0,0x308)]('⬡\x20Cre'+_0x1b96a6(0x761,0x7a1)+_0x4951e1(0x48c,0x345)+_0x4951e1(0x1d1,0x36e)+_0x1b96a6(0x662,0x7d9)));}const editor=process.env.EDITOR||(process[_0x1b96a6(0x88c,0x76d)+_0x1b96a6(0x818,0x874)]==='win32'?_0x4951e1(0x2a3,0x30b)+'ad':_0x4951e1(0x445,0x374));console[_0x1b96a6(0x7a5,0x73d)]('⬡\x20Ope'+_0x1b96a6(0x383,0x4d0)+ENV_FILE+_0x4951e1(-0x49,0x10d)+editor+'...');try{const _0xf2f05b={};_0xf2f05b['stdio']=_0x1b96a6(0x989,0x7c9)+'it',execSync(editor+'\x20\x22'+ENV_FILE+'\x22',_0xf2f05b);}catch(_0x36c283){console[_0x4951e1(0x188,0x33f)]('⬡\x20Fai'+'led\x20t'+_0x4951e1(0x338,0x363)+_0x4951e1(0x1da,0x151)+'tor:\x20'+_0x36c283['messa'+'ge']),console['error'](_0x1b96a6(0x440,0x5c5)+_0x4951e1(0x296,0x183)+'OR\x20en'+_0x1b96a6(0x7a4,0x648)+'\x20or\x20e'+_0x1b96a6(0x768,0x5f3)+_0x1b96a6(0x522,0x5b1)+_0x1b96a6(0x59c,0x758)+ENV_FILE),process[_0x1b96a6(0x8d8,0x6f6)](-0x5*-0x3+-0x263a+-0x574*-0x7);}process['exit'](-0x3*-0x10f+-0x2593+0x2266);}!existsSync(ENV_FILE)&&(console['log'](_0x4951e1(0x2ed,0x2f5)+_0x1b96a6(0x38e,0x505)+_0x1b96a6(0x6bc,0x80f)+_0x1b96a6(0x6ee,0x7da)+'.'),console['log'](_0x1b96a6(0x7f2,0x66a)+_0x4951e1(0x39b,0x42f)+_0x4951e1(0x187,0x35e)+_0x4951e1(0x8e,0x16d)+_0x1b96a6(0x7c0,0x7db)+_0x1b96a6(0x893,0x889)+_0x1b96a6(0x67e,0x652)+'ig\x20--'+_0x4951e1(0x5e4,0x434)),console[_0x1b96a6(0x5a8,0x73d)](_0x1b96a6(0x77c,0x883)+_0x4951e1(-0xa3,0x129)+_0x4951e1(0x377,0x405)+_0x1b96a6(0x769,0x84c)+_0x4951e1(0x10d,0x163)+_0x4951e1(0x387,0x36e)+_0x4951e1(0xe1,0xc6)+_0x1b96a6(0x70a,0x846)+'env'),process[_0x4951e1(0x10f,0x2c1)](0x56+-0xd7c+0xd27));const SENSITIVE_KEYS=[_0x1b96a6(0x751,0x62e),_0x1b96a6(0x651,0x636),_0x4951e1(-0xb,0xdc)+'T','PASSW'+_0x4951e1(0x510,0x35d),_0x4951e1(0x59f,0x3ee)+'NTIAL'];function maskValue(_0xa5bc71,_0x4194d2){const _0x2f36b5={};function _0x584bd7(_0x381b67,_0x3debbe){return _0x1b96a6(_0x3debbe,_0x381b67- -0x126);}_0x2f36b5[_0x23eab9(0x1aa,0xa3)]=function(_0x145c5f,_0x153eef){return _0x145c5f||_0x153eef;},_0x2f36b5['PQPkV']=function(_0x77ce05,_0xe5c6ce){return _0x77ce05<=_0xe5c6ce;};function _0x23eab9(_0x289533,_0x41b09e){return _0x1b96a6(_0x41b09e,_0x289533- -0x5fc);}_0x2f36b5[_0x23eab9(-0x31,0xa9)]=_0x23eab9(0x18f,0x241);const _0x32f34c=_0x2f36b5,_0x45d23d=SENSITIVE_KEYS[_0x23eab9(-0x3b,0x1a9)](_0x327c78=>_0xa5bc71[_0x584bd7(0x46c,0x34e)+'erCas'+'e']()['inclu'+'des'](_0x327c78));if(_0x32f34c['WatcE'](!_0x45d23d,!_0x4194d2)||_0x32f34c[_0x584bd7(0x770,0x660)](_0x4194d2[_0x584bd7(0x3e3,0x302)+'h'],-0x1*-0x20eb+0x26b4+-0x479b*0x1))return _0x4194d2;return _0x4194d2[_0x584bd7(0x653,0x4c3)](0x6e5+-0x1f*-0x137+-0x2c8e,-0x22a2+-0xe47+0x3*0x104f)+_0x32f34c[_0x23eab9(-0x31,0x1a8)];}try{const content=readFileSync(ENV_FILE,_0x4951e1(0x211,0x251)),entries=[];for(const line of content['split']('\x0a')){const trimmed=line[_0x4951e1(0x58,0x219)]();if(!trimmed||trimmed[_0x4951e1(0x1f0,0xb2)+_0x1b96a6(0x8bb,0x873)]('#'))continue;const eqIdx=trimmed[_0x1b96a6(0x6a7,0x63d)+'Of']('=');if(eqIdx===-(-0x1d2b+0x22*0x1d+0x1952))continue;const key=trimmed[_0x4951e1(0x4a2,0x344)](0x13e3+-0x505+0x2*-0x76f,eqIdx)[_0x1b96a6(0x7d8,0x64e)](),val=trimmed[_0x4951e1(0x15d,0x344)](eqIdx+(0x3*-0x200+-0x14*-0x41+0xed))[_0x4951e1(0x35d,0x219)]();entries['push']([key,val]);}entries[_0x4951e1(0x29c,0xd4)+'h']===0x15ac+0x1560+0x14*-0x227&&(console[_0x1b96a6(0x6d6,0x73d)](_0x4951e1(0x4f0,0x409)+_0x4951e1(0x9a,0x1d9)+_0x1b96a6(0x516,0x4ee)+_0x4951e1(0x4dd,0x345)+_0x4951e1(0x407,0x360)+_0x1b96a6(0x864,0x78d)+'ink-c'+_0x1b96a6(0x754,0x5e2)+_0x1b96a6(0x639,0x67c)+_0x4951e1(0x301,0x452)+'it'),process[_0x4951e1(0x489,0x2c1)](-0x1ff*-0x8+-0xd5*-0x5+-0x1421));const maxKeyLen=Math[_0x1b96a6(0x73b,0x617)](...entries[_0x4951e1(0x66,0x228)](([_0x386677])=>_0x386677[_0x1b96a6(0x421,0x509)+'h']));console[_0x4951e1(0x2ec,0x308)]('\x0a\x20\x20⬡\x20'+_0x1b96a6(0x5fe,0x7a5)+_0x1b96a6(0x608,0x733)+'figur'+_0x1b96a6(0x731,0x69a)+'\x0a'),console[_0x1b96a6(0x632,0x73d)]('\x20\x20'+_0x1b96a6(0x93a,0x839)['padEn'+'d'](maxKeyLen+(0x2474+-0x15f7+-0xe7b))+_0x4951e1(0x9,0x1dd)),console[_0x1b96a6(0x721,0x73d)]('\x20\x20'+'─'[_0x4951e1(0x31e,0x2f4)+'t'](maxKeyLen+(0x1d0c+0xffe+-0x2d08))+'─'['repea'+'t'](0x1*-0x1f42+-0x21da+-0x20a2*-0x2));for(const [key,val]of entries){const display=val?maskValue(key,val):_0x1b96a6(0x553,0x52f)+_0x4951e1(0x277,0x239)+_0x1b96a6(0x8e2,0x7f3)+'m';console['log']('\x20\x20'+key[_0x1b96a6(0x569,0x64b)+'d'](maxKeyLen+(0x320+-0x21cb+-0x1*-0x1ead))+display);}console[_0x4951e1(0x318,0x308)](_0x4951e1(0x11c,0x2d0)+_0x4951e1(0xd3,0x195)+ENV_FILE+'\x0a');}catch(_0x3ce693){console[_0x1b96a6(0x5ec,0x774)](_0x1b96a6(0x3e7,0x51a)+'led\x20t'+_0x4951e1(0xee,0x2b5)+_0x4951e1(0x259,0x297)+'v:\x20'+_0x3ce693['messa'+'ge']),process[_0x4951e1(0x11d,0x2c1)](-0xc71+0xd7b+0x5*-0x35);}process['exit'](0xc*0x22a+-0x47b+0x1*-0x157d);}if(command===_0x4951e1(0x458,0x291)+'r'){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x1b96a6(0x658,0x69f)+_0x4951e1(0x71,0xb6)+'on'));console[_0x1b96a6(0x6dd,0x73d)](_0x1b96a6(0x76c,0x70a)+_0x4951e1(0x240,0x370)+'k\x20Doc'+_0x4951e1(0x1dc,0x14e)+'\x20v'+pkg[_0x4951e1(0x289,0x110)+'on']+'\x0a');const results=[];function pass(_0x26bf5a,_0x4a0615){const _0x4640ff={};_0x4640ff['ouWQZ']='pass';const _0x2790e8=_0x4640ff;function _0x52a461(_0x15cd98,_0x4c7f25){return _0x4951e1(_0x15cd98,_0x4c7f25-0x3a3);}const _0x5b0d81={};function _0x43b4bd(_0x537fdf,_0x358f5a){return _0x4951e1(_0x358f5a,_0x537fdf-0x74);}_0x5b0d81[_0x43b4bd(0x111,-0xb3)+'s']=_0x2790e8['ouWQZ'],_0x5b0d81['label']=_0x26bf5a,_0x5b0d81[_0x43b4bd(0x3be,0x2db)+'l']=_0x4a0615,results[_0x43b4bd(0x175,0x22f)](_0x5b0d81);}function fail(_0x712997,_0x3d7ab8){const _0x38a99c={};_0x38a99c[_0x27b064(0xf1,0x287)]=_0x4d13a0(0x545,0x381);const _0x2d76be=_0x38a99c;function _0x4d13a0(_0x50e0e5,_0x4d0f68){return _0x1b96a6(_0x4d0f68,_0x50e0e5- -0x11c);}const _0x31069a={};_0x31069a[_0x27b064(-0x193,-0xda)+'s']=_0x2d76be[_0x27b064(0xf1,0xb7)];function _0x27b064(_0x595cf8,_0xd6c08c){return _0x1b96a6(_0xd6c08c,_0x595cf8- -0x665);}_0x31069a[_0x27b064(-0x17d,-0x106)]=_0x712997,_0x31069a['detai'+'l']=_0x3d7ab8,results['push'](_0x31069a);}function warn(_0x5708c9,_0x10c24e){const _0xceea13={};_0xceea13[_0x2d1413(0x625,0x4c2)]=_0x58b90f(0x65,-0x19);function _0x2d1413(_0xcd63a8,_0x52ab13){return _0x1b96a6(_0xcd63a8,_0x52ab13- -0x15b);}const _0x237aaf=_0xceea13,_0x1bc45b={};function _0x58b90f(_0x4af94b,_0x22e278){return _0x1b96a6(_0x22e278,_0x4af94b- -0x519);}_0x1bc45b[_0x58b90f(-0x47,-0x164)+'s']=_0x237aaf[_0x2d1413(0x330,0x4c2)],_0x1bc45b[_0x2d1413(0x351,0x38d)]=_0x5708c9,_0x1bc45b[_0x58b90f(0x266,0x3a5)+'l']=_0x10c24e,results[_0x2d1413(0x25f,0x3db)](_0x1bc45b);}const nodeVer=process[_0x4951e1(-0x4e,0x110)+'ons'][_0x1b96a6(0x8ac,0x719)],nodeMajor=parseInt(nodeVer[_0x1b96a6(0x706,0x60c)]('.')[-0x1890+-0x12*-0x10d+0x6*0xf1],0x725*-0x1+0x455*-0x1+0x2*0x5c2);nodeMajor>=-0x88*-0x40+0x1cdc+0xa77*-0x6?pass('Node.'+_0x1b96a6(0x8cb,0x7e5)+_0x4951e1(0x29a,0x1f0),'v'+nodeVer+('\x20(>=\x20'+'18\x20re'+_0x1b96a6(0x57b,0x5ec)+'d)')):fail(_0x4951e1(0x272,0x2e2)+_0x4951e1(0x202,0x3b0)+_0x4951e1(0x319,0x1f0),'v'+nodeVer+(_0x4951e1(0x40d,0x3cb)+_0x4951e1(0x12e,0x311)+_0x4951e1(0x2ec,0x307)+_0x4951e1(0x381,0x22b)+_0x4951e1(-0x15,0x1b2)+'red'));const ENV_FILE=existsSync(join(DATA_DIR,_0x4951e1(0x310,0x31a)))?join(DATA_DIR,_0x4951e1(0x38e,0x31a)):join(ROOT,_0x4951e1(0x298,0x31a));let envPort=-0x4*0x1f9+0xda*0x1d+-0x34e,envGatewayUrl=_0x1b96a6(0x52b,0x539)+_0x1b96a6(0x530,0x68f)+_0x4951e1(0x504,0x437)+_0x1b96a6(0x699,0x577)+'89',envGatewayToken='',envOpenAIKey='',envElevenLabsKey='';if(existsSync(ENV_FILE))try{const content=readFileSync(ENV_FILE,_0x4951e1(0x3fa,0x251));for(const line of content[_0x4951e1(0x13e,0x1d7)]('\x0a')){const t=line[_0x1b96a6(0x61a,0x64e)]();if(!t||t['start'+_0x1b96a6(0x96b,0x873)]('#'))continue;const eqIdx=t[_0x1b96a6(0x5f6,0x63d)+'Of']('=');if(eqIdx===-(0x548+-0x54a*0x1+0x3))continue;const k=t['slice'](0x17de*0x1+0x11*-0x167+-0x7,eqIdx)[_0x4951e1(0x1c2,0x219)](),v=t[_0x4951e1(0x255,0x344)](eqIdx+(-0x6d3+0x1264+-0x28*0x4a))['trim']();if(k==='PORT')envPort=parseInt(v,0x1deb+-0x2*-0x899+-0x2f13)||0xbc5+0x5ce+-0x1*0x413;if(k===_0x4951e1(0x405,0x336)+_0x1b96a6(0x565,0x676)+'L')envGatewayUrl=v;if(k===_0x4951e1(0x3d9,0x336)+_0x4951e1(0xac,0x17a)+'KEN')envGatewayToken=v;if(k==='OPENA'+_0x4951e1(0x12,0x166)+_0x1b96a6(0x611,0x6a5))envOpenAIKey=v;if(k===_0x4951e1(0x130,0x13d)+_0x4951e1(0x5e,0x1b1)+_0x4951e1(0x41d,0x35a)+_0x1b96a6(0x7bd,0x636))envElevenLabsKey=v;}}catch{}const portAvailable=await new Promise(_0x16e40d=>{function _0x39d03f(_0x578b0a,_0x5cfdc4){return _0x4951e1(_0x5cfdc4,_0x578b0a-0xe7);}function _0x38fd24(_0x267c73,_0x7d8286){return _0x4951e1(_0x7d8286,_0x267c73- -0x29b);}const _0x1e94f5={'KMxnl':function(_0x22817a,_0x4be8bd){return _0x22817a===_0x4be8bd;},'zRSmY':_0x38fd24(-0xa7,0x99),'CjZea':function(_0x1b5193,_0x5495ab){return _0x1b5193===_0x5495ab;},'GGnfd':'EADDR'+_0x39d03f(0x2b3,0x154),'nFUNx':function(_0x3db6aa,_0x188a72){return _0x3db6aa(_0x188a72);},'KxdZG':function(_0x31029b,_0x36b1e7){return _0x31029b(_0x36b1e7);},'ULRIy':function(_0x35ae0e,_0x22ba61){return _0x35ae0e(_0x22ba61);},'hneUl':_0x38fd24(0xa4,0xf4),'bzbec':_0x38fd24(0x64,-0x83)+_0x39d03f(0x43e,0x5f2),'TMsQe':'127.0'+_0x39d03f(0x2ba,0x1c9)},_0x9e2f83=_0x4de775[_0x39d03f(0x344,0x366)+_0x39d03f(0x348,0x3a3)+'er']();_0x9e2f83[_0x38fd24(-0xfc,-0x1e6)](_0x1e94f5[_0x39d03f(0x301,0x14a)],_0x14545a=>{function _0x2d9296(_0x1d7759,_0x3afca8){return _0x39d03f(_0x1d7759-0x338,_0x3afca8);}function _0x5d2047(_0x2c609c,_0x5af394){return _0x39d03f(_0x2c609c-0x120,_0x5af394);}if(_0x1e94f5[_0x2d9296(0x63f,0x652)](_0x1e94f5['zRSmY'],_0x1e94f5[_0x2d9296(0x697,0x638)])){if(_0x1e94f5[_0x5d2047(0x2dc,0x1d9)](_0x14545a[_0x5d2047(0x2f1,0x213)],_0x1e94f5[_0x5d2047(0x2d2,0x248)]))_0x1e94f5[_0x5d2047(0x4f2,0x3c4)](_0x16e40d,![]);else _0x1e94f5['KxdZG'](_0x16e40d,!![]);}else _0x24701b[_0x5d2047(0x63b,0x5ab)]=!![];}),_0x9e2f83[_0x38fd24(-0xfc,-0x9)](_0x1e94f5['bzbec'],()=>{function _0xf3dba1(_0x48931e,_0x491344){return _0x38fd24(_0x491344-0x3f1,_0x48931e);}_0x9e2f83[_0xf3dba1(0x3e5,0x43e)]();function _0x39302f(_0xfa7ddf,_0x1ec108){return _0x38fd24(_0xfa7ddf-0x378,_0x1ec108);}_0x1e94f5[_0x39302f(0x390,0x50d)](_0x16e40d,!![]);}),_0x9e2f83['liste'+'n'](envPort,_0x1e94f5[_0x38fd24(0x37,-0xcf)]);}),serverRunning=!!(getWatchdogPid()||getPid());portAvailable?serverRunning?pass(_0x4951e1(0xbc,0x179)+envPort,_0x4951e1(0x343,0x176)+_0x1b96a6(0x551,0x6a4)+_0x4951e1(0x2d6,0x398)+'er\x20ru'+_0x4951e1(0x2be,0x365)+_0x1b96a6(0x3d2,0x52c)+'PID\x20f'+_0x1b96a6(0x566,0x5c7)):pass(_0x1b96a6(0x662,0x5ae)+envPort,_0x4951e1(0x305,0x176)+_0x4951e1(0x268,0x353)):serverRunning?pass(_0x1b96a6(0x719,0x5ae)+envPort,_0x4951e1(0x25a,0x136)+_0x1b96a6(0x9a9,0x842)+_0x1b96a6(0x675,0x7a5)+'k'):fail('Port\x20'+envPort,_0x4951e1(0x125,0x136)+_0x1b96a6(0x96a,0x842)+_0x1b96a6(0x74b,0x7c5)+_0x4951e1(0x1f,0x1c3)+_0x4951e1(-0xe7,0xad));const gatewayReachable=await new Promise(_0x390400=>{const _0x127983={'dddiS':_0xb76e26(0x574,0x424)+_0xb76e26(0x6c3,0x5be)+_0x2b8183(0x5f7,0x5f6)+_0xb76e26(0x3a4,0x424),'gTFRR':_0xb76e26(0x360,0x33c)+_0x2b8183(0x4dc,0x6b1)+_0x2b8183(0x3fa,0x5aa)+_0xb76e26(0x346,0x314)+':','LmPhT':function(_0x431c7f,_0x1bb2ee){return _0x431c7f||_0x1bb2ee;},'SVgOl':function(_0x46bae1,_0x1bb1e7){return _0x46bae1<=_0x1bb1e7;},'erVND':function(_0x3626c1,_0x36fdaf){return _0x3626c1+_0x36fdaf;},'ZjBgJ':'****','jmLEj':function(_0x505292,_0x21f473){return _0x505292!==_0x21f473;},'eEkdD':'DzpEl','Lqmtu':'rCQdE','bATbb':_0xb76e26(0x4ba,0x439),'kKwJo':_0x2b8183(0x592,0x571),'bRbef':_0x2b8183(0x5fe,0x7a2),'tMFYV':_0x2b8183(0xa8f,0x8c7)+'ut','fYiYC':function(_0x9a3167,_0x44e5ae){return _0x9a3167===_0x44e5ae;},'kEkal':_0x2b8183(0x8b8,0x84d),'TiFDU':function(_0x566d6b,_0x5c79eb){return _0x566d6b(_0x5c79eb);}};function _0x2b8183(_0xe8dced,_0x3bd303){return _0x4951e1(_0xe8dced,_0x3bd303-0x463);}function _0xb76e26(_0x5d125a,_0x5464cb){return _0x4951e1(_0x5464cb,_0x5d125a-0x27f);}try{if(_0x127983[_0xb76e26(0x326,0x269)](_0x127983[_0x2b8183(0x6c1,0x66e)],_0x127983[_0x2b8183(0x66c,0x66e)]))_0x8927fa[_0xb76e26(0x587,0x3f7)](PjXbYJ['dddiS']),_0x14c1f5['log'](PjXbYJ[_0xb76e26(0x5f9,0x500)]),_0x33a55c[_0xb76e26(0x587,0x5de)](_0x2b8183(0x8e5,0x7c2)+_0xa03b42),_0x2163b5['log']('\x20\x20\x20\x20'+_0x1987ee),_0x1a8c73['log'](''),_0x5d199e['log'](_0x2b8183(0x813,0x6ca)+_0x2b8183(0x697,0x5d1)+_0x2b8183(0x677,0x6b5)+_0xb76e26(0x603,0x4cb)+_0x2b8183(0x5b6,0x55c)+_0xb76e26(0x68b,0x6ac)+_0x2b8183(0xa59,0x877)+_0x2b8183(0x813,0x69a)),_0x1ec503[_0x2b8183(0x736,0x76b)](_0xb76e26(0x33f,0x300)+_0xb76e26(0x4bf,0x60a)+_0x2b8183(0x7c6,0x7f2)+_0xb76e26(0x494,0x4ee)+'irst:'+'\x20upli'+_0x2b8183(0x626,0x50d)+'at\x20st'+_0x2b8183(0x6eb,0x7b1)),_0x488889[_0x2b8183(0x72b,0x724)](0x11*-0x205+0x87d+0x19d9);else{const _0x493d96=new URL(envGatewayUrl),_0x1372af={};_0x1372af[_0x2b8183(0x4aa,0x65f)+'ame']=_0x493d96[_0x2b8183(0x64a,0x65f)+_0xb76e26(0x581,0x602)],_0x1372af['port']=_0x493d96[_0x2b8183(0x8ba,0x837)]||0x2b*0x1b+-0x172f+-0x1*-0x12f6,_0x1372af[_0x2b8183(0x83a,0x7ca)]='/',_0x1372af[_0x2b8183(0x6af,0x61e)+'d']=_0x127983[_0xb76e26(0x506,0x49a)],_0x1372af[_0xb76e26(0x6e3,0x6b0)+'ut']=0x1388;const _0x1ed9a1=_0x454e48[_0xb76e26(0x5ad,0x672)+'st'](_0x1372af,_0x493524=>{function _0xcbd379(_0x4e935b,_0x2b99ea){return _0x2b8183(_0x2b99ea,_0x4e935b- -0x3cc);}function _0x254c58(_0xc81a59,_0x2e4b5d){return _0x2b8183(_0xc81a59,_0x2e4b5d- -0x6f2);}if(_0x127983[_0xcbd379(0x13e,0x2c4)](_0x127983[_0x254c58(0xe1,-0x40)],_0x127983[_0x254c58(0x153,0x16d)]))_0x493524[_0xcbd379(0x212,0x212)+'e'](),_0x390400(!![]);else{const _0x358f3f=_0x277790[_0x254c58(0x52,-0x103)](_0xabc332=>_0x2d0dbd[_0xcbd379(0x1f4,0x17b)+_0x254c58(-0x277,-0x1a7)+'e']()[_0xcbd379(0x233,0x261)+'des'](_0xabc332));if(PjXbYJ[_0x254c58(-0x22b,-0xa6)](!_0x358f3f,!_0x1a5c76)||PjXbYJ[_0x254c58(0x27d,0x183)](_0x372118[_0x254c58(-0x15a,-0x1bb)+'h'],-0x13a8+-0x1*-0x187e+0x2*-0x269))return _0x33119b;return PjXbYJ[_0x254c58(0x1a4,-0x44)](_0x29aaa5[_0x254c58(0x1f4,0xb5)](-0x5*-0x727+-0xc29+-0x179a,-0x6*-0x185+-0xc37*-0x3+-0x2dbf),PjXbYJ[_0xcbd379(0x398,0x239)]);}});_0x1ed9a1['on'](_0x127983[_0xb76e26(0x36b,0x44a)],()=>_0x390400(![])),_0x1ed9a1['on'](_0x127983[_0x2b8183(0x662,0x5c3)],()=>{function _0x109f25(_0x4a26ef,_0x4fef22){return _0x2b8183(_0x4a26ef,_0x4fef22- -0x533);}_0x1ed9a1[_0x109f25(0x2ef,0x13f)+'oy'](),_0x390400(![]);}),_0x1ed9a1[_0x2b8183(0x86a,0x77a)]();}}catch{_0x127983[_0x2b8183(0x49a,0x5d4)](_0x127983[_0xb76e26(0x374,0x3e1)],_0xb76e26(0x440,0x37a))?_0x50b837['force']=!![]:_0x127983[_0xb76e26(0x51c,0x39b)](_0x390400,![]);}});gatewayReachable?pass('Gatew'+_0x4951e1(0x2d0,0x31c)+'achab'+'le',envGatewayUrl):fail('Gatew'+'ay\x20re'+'achab'+'le',_0x4951e1(0x1ad,0x2dc)+_0x4951e1(0x3df,0x30f)+_0x4951e1(0x306,0x1dc)+envGatewayUrl);existsSync(join(ROOT,_0x1b96a6(0x71b,0x790)+_0x1b96a6(0x8f1,0x80c)+'es'))?pass(_0x4951e1(0x8e,0x99)+_0x1b96a6(0x4a4,0x558)+_0x1b96a6(0x766,0x6da)+_0x1b96a6(0x818,0x87a)+'ed',_0x1b96a6(0x770,0x790)+_0x4951e1(0x518,0x3d7)+_0x4951e1(0x29b,0x306)+_0x1b96a6(0x855,0x77e)):fail(_0x1b96a6(0x526,0x4ce)+_0x1b96a6(0x636,0x558)+_0x1b96a6(0x789,0x6da)+_0x1b96a6(0x9cf,0x87a)+'ed','node_'+_0x4951e1(0x53d,0x3d7)+_0x4951e1(0x35f,0x41c)+_0x1b96a6(0x78c,0x749)+_0x4951e1(0x20f,0x347)+'n\x20npm'+_0x1b96a6(0x9ee,0x87f)+_0x1b96a6(0x6da,0x666));if(existsSync(ENV_FILE))try{readFileSync(ENV_FILE,_0x4951e1(0x167,0x251)),pass(_0x1b96a6(0x4b9,0x505)+_0x4951e1(0x28e,0xfc),_0x4951e1(0x281,0x271)+_0x4951e1(0x1e7,0x324)+'\x20read'+'able');}catch{fail(_0x1b96a6(0x42f,0x505)+_0x4951e1(0x1f,0xfc),_0x4951e1(0x3d0,0x271)+_0x4951e1(0x2d1,0x346)+_0x4951e1(0x156,0x191)+'reada'+_0x4951e1(0x31e,0x410));}else fail(_0x4951e1(-0xb5,0xd0)+_0x1b96a6(0x718,0x531),_0x4951e1(0x278,0x13e)+_0x4951e1(0x199,0x32d)+_0x1b96a6(0x6ce,0x86f)+_0x1b96a6(0x78c,0x78d)+_0x1b96a6(0x48b,0x5d5)+_0x1b96a6(0x739,0x5e2)+_0x4951e1(0x36a,0x247)+'\x20--ed'+'it');envGatewayToken&&envGatewayToken!=='your_'+_0x1b96a6(0x6e2,0x638)+'_here'?pass(_0x4951e1(0x37d,0x3bb)+'ay\x20to'+_0x4951e1(0x1ff,0x2e1),_0x4951e1(0x2bb,0x45c)+_0x4951e1(0x274,0x3ae)):fail(_0x1b96a6(0x81f,0x7f0)+_0x4951e1(0x1a3,0x257)+_0x1b96a6(0x61d,0x716),_0x4951e1(0x1c0,0x146)+_0x1b96a6(0x51a,0x4c9)+_0x1b96a6(0x924,0x7a3));if(envOpenAIKey||envElevenLabsKey){const providers=[];if(envOpenAIKey)providers[_0x1b96a6(0x475,0x536)](_0x4951e1(0x1bb,0xf8)+'I');if(envElevenLabsKey)providers[_0x4951e1(0x1a0,0x101)](_0x1b96a6(0x8c8,0x7ac)+_0x1b96a6(0x625,0x59f));pass(_0x4951e1(0x30f,0x3f3)+'PI\x20ke'+'ys',providers['join'](',\x20')+(_0x1b96a6(0x5bb,0x652)+_0x4951e1(0x25b,0x185)+'d'));}else warn(_0x4951e1(0x4b6,0x3f3)+_0x4951e1(0x379,0x2bf)+'ys',_0x1b96a6(0x779,0x7ec)+_0x4951e1(0x2ba,0xd2)+_0x4951e1(0x4d2,0x37f)+_0x1b96a6(0x665,0x65e)+_0x1b96a6(0x68b,0x6cd)+_0x1b96a6(0x818,0x7f7)+_0x4951e1(0x352,0x428)+'ay\x20be'+_0x4951e1(-0xc8,0xe7)+_0x4951e1(0x1f1,0x397)+_0x4951e1(0x34a,0x41d)+_0x1b96a6(0x796,0x806));try{const freeBytes=((()=>{function _0x1e398c(_0xe817f9,_0x596f6d){return _0x1b96a6(_0x596f6d,_0xe817f9- -0xa0);}const _0x5988ac={'xAbrn':function(_0x48aa66,_0x128149,_0x5bf064){return _0x48aa66(_0x128149,_0x5bf064);},'lYNgj':'utf8','gvKcX':function(_0x54abc9,_0x191878){return _0x54abc9*_0x191878;},'VqPwV':'win32','nKUll':function(_0x82bd23,_0x3c07f7){return _0x82bd23===_0x3c07f7;},'APcnY':_0x15ead7(0x1f8,0x37e),'CQhuS':'OEaNn','uObIR':function(_0x220c10,_0x4b3cd5){return _0x220c10+_0x4b3cd5;},'ZDGIF':function(_0x547728,_0x20d23a){return _0x547728+_0x20d23a;},'DAFfC':_0x1e398c(0x607,0x54d)+'logic'+_0x15ead7(0xa3,0x1e3)+_0x15ead7(0x7d,0x9f)+_0x15ead7(0x19d,0x36d)+'evice'+_0x15ead7(0x114,0x223),'IUknZ':':\x27\x22\x20g'+_0x15ead7(-0xb1,0xf6)+_0x15ead7(0x443,0x30e)+_0x1e398c(0x6ad,0x633)+'alue','jdmlV':function(_0x5c73ef,_0x3f4340,_0x3d8f7a){return _0x5c73ef(_0x3f4340,_0x3d8f7a);},'rFhkB':_0x1e398c(0x5c8,0x4a5)};function _0x15ead7(_0x3bee9e,_0x2d3300){return _0x1b96a6(_0x3bee9e,_0x2d3300- -0x494);}if(process['platf'+_0x1e398c(0x7d4,0x6b0)]===_0x5988ac['VqPwV']){if(_0x5988ac['nKUll'](_0x5988ac['APcnY'],_0x5988ac[_0x15ead7(0x2e6,0x24b)])){const _0x286af0={};_0x286af0['recur'+_0x15ead7(0xa0,0x108)]=!![],_0x286af0['force']=!![],OTpAHu[_0x15ead7(0x10d,0xed)](_0x43357d,_0x4b005c,_0x286af0),_0x2ba8ba++;}else{const _0x52fc57={};_0x52fc57['encod'+'ing']='utf8';const _0x556148=_0x5988ac[_0x1e398c(0x4e1,0x51b)](execSync,_0x5988ac['uObIR'](_0x5988ac[_0x1e398c(0x6b7,0x6e0)](_0x5988ac[_0x15ead7(0x2b6,0x313)],ROOT['charA'+'t'](0x23dd+-0x148b*0x1+-0xf52)),_0x5988ac[_0x1e398c(0x622,0x739)]),_0x52fc57),_0x6460f9=_0x556148['match'](/FreeSpace=(\d+)/);return _0x6460f9?_0x5988ac[_0x15ead7(0x1ae,0x22b)](parseInt,_0x6460f9[0x78c*-0x2+0x2f6+0xd*0xef],0x2142+0x1dd9+-0x3f11):null;}}else{if(_0x5988ac[_0x1e398c(0x7dd,0x8ac)]('tWOhV',_0x5988ac['rFhkB'])){const _0x25b22e={};_0x25b22e[_0x15ead7(0x31a,0x198)+_0x1e398c(0x67e,0x7f5)]=_0x5988ac[_0x1e398c(0x688,0x779)];const _0x48c041=execSync('df\x20-k'+'\x20\x22'+ROOT+('\x22\x20|\x20t'+'ail\x20-'+'1'),_0x25b22e),_0xb602b9=_0x48c041['trim']()[_0x1e398c(0x56c,0x4b7)](/\s+/);return _0x5988ac[_0x15ead7(0x140,0x263)](_0x5988ac['jdmlV'](parseInt,_0xb602b9[-0x3*-0xc43+-0x1*0x1cc5+0x801*-0x1],0xe*-0x6a+-0x1*-0x9e5+0x40f*-0x1),0x1c6f+0x1921+-0x3190);}else{const _0x16bf60=_0x5988ac[_0x1e398c(0x4e1,0x32a)](_0x21afef,_0x1e398c(0x50a,0x4ef)+'\x20\x22'+_0x264daa+(_0x1e398c(0x740,0x81a)+_0x1e398c(0x643,0x57e)+'1'),{'encoding':_0x5988ac[_0x15ead7(0x1ba,0x294)]}),_0x346c12=_0x16bf60[_0x15ead7(0x2a0,0x1ba)]()[_0x1e398c(0x56c,0x472)](/\s+/);return _0x5988ac[_0x15ead7(0x3e9,0x263)](_0x5988ac[_0x1e398c(0x4e1,0x3bf)](_0x479548,_0x346c12[-0x1*0x1d2d+0x181*-0x11+0x36c1],0x1*-0x25fa+-0x1*-0x2026+-0x2*-0x2ef),-0x1ba2+-0x1cea+0x1*0x3c8c);}}})());if(freeBytes!==null){const freeMB=Math[_0x1b96a6(0x4b2,0x56a)](freeBytes/((0xafb+0x14e8+0x1be3*-0x1)*(0x37d+-0x21d6+0x9*0x3d1)));freeMB>=-0x477+0x3a8+0x2c3?pass(_0x4951e1(0x360,0x214)+_0x4951e1(0x11d,0x132),freeMB+(_0x1b96a6(0x711,0x61b)+_0x1b96a6(0x7ad,0x5fd))):warn(_0x1b96a6(0x7e5,0x649)+_0x4951e1(0x1a0,0x132),freeMB+(_0x1b96a6(0x5ce,0x61b)+'ree\x20—'+_0x1b96a6(0x711,0x54b)+_0x1b96a6(0x448,0x5e3)+_0x1b96a6(0x60b,0x64c)+'MB'));}}catch{warn(_0x4951e1(0x49,0x214)+_0x1b96a6(0x451,0x567),_0x4951e1(0x390,0x1fd)+_0x1b96a6(0x7ad,0x5c6)+'deter'+_0x4951e1(0x2ac,0x244)+_0x1b96a6(0x5e0,0x604)+'disk\x20'+'space');}const _0x43fbae={};_0x43fbae[_0x4951e1(0x282,0x134)]=_0x4951e1(0x3fd,0x381)+'✓\x1b[0m',_0x43fbae[_0x1b96a6(0x4ce,0x661)]=_0x1b96a6(0x66d,0x7c0)+_0x4951e1(0x29c,0x111),_0x43fbae[_0x4951e1(0xee,0x149)]=_0x1b96a6(0x459,0x54d)+_0x4951e1(0x214,0x3b5);const icons=_0x43fbae;for(const r of results){console[_0x1b96a6(0x864,0x73d)]('\x20\x20'+icons[r[_0x4951e1(0xd3,0x9d)+'s']]+'\x20'+r['label']+':\x20'+r[_0x4951e1(0x17e,0x34a)+'l']);}const passes=results['filte'+'r'](_0x3b30dc=>_0x3b30dc['statu'+'s']===_0x1b96a6(0x5e5,0x569))['lengt'+'h'],fails=results[_0x4951e1(0x71,0xed)+'r'](_0x42af21=>_0x42af21[_0x4951e1(0x20b,0x9d)+'s']===_0x1b96a6(0x548,0x661))[_0x1b96a6(0x537,0x509)+'h'],warns=results[_0x1b96a6(0x480,0x522)+'r'](_0x1cac01=>_0x1cac01[_0x1b96a6(0x4f9,0x4d2)+'s']===_0x1b96a6(0x50e,0x57e))[_0x4951e1(0x3d,0xd4)+'h'];console[_0x4951e1(0x1cb,0x308)](''),fails===0x1*-0xf29+-0x22ea+0x3213?console[_0x1b96a6(0x8cd,0x73d)](_0x1b96a6(0x468,0x4d4)+'ll\x20'+passes+(_0x4951e1(0x2da,0x20e)+_0x1b96a6(0x77b,0x5a8)+'ssed')+(warns?'\x20('+warns+(_0x4951e1(0x2d1,0x284)+_0x1b96a6(0x66a,0x71e))+(warns>0x2f*0x10+-0x164b*0x1+0x135c?'s':'')+')':'')+'.'):console[_0x1b96a6(0x67c,0x73d)]('\x20\x20⬡\x20'+passes+(_0x4951e1(0x1ab,0x96)+_0x4951e1(0x4fb,0x39a))+fails+('\x20fail'+'ed')+(warns?',\x20'+warns+(_0x4951e1(0x3b1,0x284)+'ing')+(warns>0x156+-0x1a6+-0x1b*-0x3?'s':''):'')+'.'),console[_0x1b96a6(0x7e6,0x73d)](''),process['exit'](fails>-0x431+-0x1*-0x1dff+0x2de*-0x9?0x1d43*0x1+0x13a7+-0x13*0x293:-0x127+0x1eea*0x1+0x1dc3*-0x1);}function _0x116c(){const _0x5050ba=['ning',':\x20upl','nes\x201','_API_','node_','\x20\x20\x20\x20\x20','ORD','ne\x20wi','\x20\x20\x20\x20','.\x20Run','lt\x20po',',\x20PID','o\x20ope','sion','nning','one.\x0a','path','⬡\x20Cur','nes\x0a\x20','ult:\x20','glanc','ated\x20','eeSpa','\x20.env','env','Uplin','WatcE','DAFfC','not\x20d','nano','...\x0a','\x20\x20Thi','Eleve','stdin','firma','gTFRR','Updat','d\x20ser','tall','VaMjv','or\x20El','\x0a\x20\x20In','\x1b[32m','\x20Stop','\x20remo','ted\x20w','premi','nd\x20(d','-f\x20\x20\x20','kill','npx\x20u','\x0a\x20\x20Pr','\x1b[31m','14900YRsTqJ','rash.','\x20the\x20','e\x20ser','anoth','\x20-g\x20@','detac','ink\x20w','inher','e\x20glo','\x20(.en','ted\x20t','(serv','\x20with','ed,\x20','+C\x20to','updat','ODTJL','EWdjp','ng\x20np','emove','y\x20uni','ed\x20','PID\x20f','\x20file','found','plink','dog.j','>nul\x20','ssage','ault:','\x22\x20|\x20t','ing.','\x20\x20Upt','gured','not\x20b','js\x20ve','726UAhrJs','1033461zblppR','\x20\x20\x20Sh','led\x20t','!\x1b[0m','Tcskj','no\x20Op','o\x20sto','g\x20for','\x20\x20\x20up','Gatew','oonco','ompan','y)\x1b[0','nk-wa','elf\x0a','stdio','ey\x20—\x20','rt\x0a\x20\x20','eady\x20','ues\x0a\x20','floor','nosti','host','.env.','tion\x20','\x20—\x20No','re\x20\x22D','t\x20sta','1076MKIKvz','wing\x20','o\x20con','e\x20TTS','ZtSCT','share','port','--pat','SIGTE','modul','emovi','d\x20wat','file\x20','stdou','k\x20ser','dVjcR','ll\x20\x20\x20','link\x20','\x20\x20\x20\x20S','force','eset)','\x0a⬡\x20Re','set\x22\x20','ion\x0a\x20','l\x20con','examp','r\x20and','last\x20','KIdZa','e\x20\x22un','ts\x20(r','insta','CREDE','\x20(def','kage.','#\x20Run','ver\x20P','TTS\x20A','th\x20(c','\x20\x20npx','ng\x20Up','SxVxK','\x20stop','it\x20.e','.json','toStr','Lqmtu','\x20info','\x20runn','at\x20re','cwd','aqkvJ','mode','XjCOU','Key','the\x20e','glZeP','npm\x20p','l\x20NOT','⬡\x20.en','at\x20a\x20','\x20Show','he\x20se','e\x20by\x20','ng\x20wi','pany/','ble','ple\x20.','SVgOl','t\x20v','rver\x20','promp','\x20to\x20s','xampl','to\x20bi','tion\x0a','the\x20s','ync','es\x20mi','o\x20Edg','art\x20m','ed\x20me','l\x20tim','-forc','ar:','rver.','\x20new\x20','og\x20st','l\x20—\x20v','or\x20us','TTS\x20m','\x20Fail','ARCyH','\x20for\x20','\x20comp','\x20\x20\x20St','aded\x20','ate\x20o','\x0a\x20\x20Lo','Stop\x20','NxDwh','o\x20fil','edit','atchd','tall\x20','.0.0.','\x0a\x20\x20Ho','estar','—\x20run','k\x20Inf','cs\x0a\x20\x20','\x20to\x20r','sWith','orm','parse','\x20--fo','apply','ve\x20ag','log\x20f','stall','ble)\x1b','\x20port','nKUll','searc','\x20inst','\x20\x20Typ','figur','n\x20iss','\x20\x20Or\x20','288BZubxL','commo','r.js','\x20--ed','he\x20la','-chat','KEN','y:\x20','art!','NvBNS','\x20on\x20c','r.log','audio','confi','g\x20@mo','e\x0a\x20\x20\x20','LRkbi','12011020cUslZV','PQPkV','\x20sets','AppDa','timeo','us\x20\x20\x20','et\x20in','ctivi','\x20pass','FknAb','rt\x20on','Depen','reset','ning\x20',':\x0a\x20\x20\x20','statu','rface','\x20\x20⬡\x20A','s\x20wil','\x20Remo','gify','\x20\x20\x20\x20-','activ','to-re','Oeido','jmLEj','g.jso','tart\x20','nk-ch','d-mes','-g\x20@m','ocess','firm:','Print','e...','faile','start','label','th\x20wa','ogs\x20i','ge.js','/upli','SIGIN','e\x20is\x20','vatar','ailed','n\x20rea','actio','.\x20Fre','k\x20Res','\x20\x20Sta','\x20\x20\x20Ch','backg','--ver','ar\x20da','watch','.exam','tions','letel','n\x20bac','0.0.0','GGnfd','.\x20👋\x0a','st:\x20\x20','quest','Host\x20','.env\x20','media','enAI\x20','\x20defa','lengt','CjZea','_DIR/','ready','K_HOS','on:\x20v','hat\x20s','\x208080','SECRE','ink\x20s','now','ions:','ver\x20(','\x20\x20Exp','pen\x20c','ZkSoO','IrwdM','⬡\x20Fai','cal\x20d','\x20limi','erCas','mode)','code','to\x20co','bRbef','filte','\x20Numb','on\x20(v','\x0a\x20\x20','erver','A_DIR','EymMo','rtCou','kEkal','dated','\x20via\x20','OpenA','hen\x20t','\x1b[90m','homed','file','ver\x20a','k\x20whe','ed\x20to','tarti','push','ed\x1b[0','misse','http:','op\x20a\x20','nfirm','ncomp','nXscV','jpqoK','how\x20t','\x20your','\x20\x20Tha','\x20in\x20','GET','\x20\x20\x20#\x20','versi','✗\x1b[0m','ally:','\x20H\x20\x20\x20','win32','l\x20Upl','\x20less','nd]\x20[','\x1b[33m','e:\x0a\x20\x20','nd\x20wa','files','ector','\x20\x20\x20un','\x20\x20\x20\x20i','\x20\x20Run','ninst','\x20#\x20Ed','lJwpD','denci','fstat','ound.','ugXqg','OXjwN','s\x20run','copy\x20','mpany','bhSOD','c/img','data','at\x0a','direc','0.0)\x0a','hdog\x20','space','a\x20dir','pass','round','in\x20us','recur','\x20\x20Not','kgrou','ached','\x20\x20upl','s\x20que','ELEVE','not\x20f','\x20stat','l\x20upl','Versi','1:187','RGAKC','AI\x20Ch','pm\x20up','not\x20s','\x20loca','ions\x20','warn','\x20in\x20e','HVrnM','xAbrn','-watc','tor\x20—','join','nks\x20f','n\x20edi','jGBXO','11rHvsWd','32SfalgP','et\x20Fr','\x20\x20Ser','\x20Usag','write','-host','yogwT','⬡\x20Aut','⬡\x20Cre','toUpp','\x20\x20\x20\x20d','ed.\x20N','tMFYV','link.','_modu','e:\x20cp','r\x0a\x20\x20\x20','strin','I_API','sive','thout','ath','nLabs','emium','\x20\x20\x20--','th:\x20u','s\x20are','m(con','[0m','fYiYC','fault','ks\x20pa','rrent','df\x20-k','avail','d\x20in\x20','\x20star','Port\x20','AY_TO','resum','anual','#\x20Upl','--det','\x0a\x20\x20Se','ntrie','\x20@moo','o\x0a\x0a\x20\x20','\x20EDIT','Show\x20','igure','This\x20','readS','serve','\x0a\x20\x20⚠️\x20','pid','\x20node','some','YQmMF','2>&1','g\x20was','\x20\x20Set','\x20not\x20','ile)','ile\x20f','s\x20alr','th:\x20','lUBec','jbalm','l\x20log','atest','\x0a\x20\x20Ca','ge.','inclu','HlcLv','ve\x20al','once','ink-c','\x20PID\x20','ating','\x20npx\x20','mvCcI','or\x0a\x20\x20','d\x20dat','son','ing\x20m','top','ning\x0a','\x20\x20Try','all\x20-','hat\x20c','\x20than','cking','824308TJvLQu','NLABS','requi','zwxgx','p\x20Upl','rLDcr','EhgFM','quire','lhost','fHpFi','\x200.0.','metho','\x20\x20✗\x20F','tarte','dit\x20m','othin','g.log','mPUAb','red','er\x20pr','nstal','c/aud','\x20on\x20(','ta\x20wi','ree','#\x20Cle','⬡\x20Upl','6456444YRnmeZ','INUSE','ons','\x20npm\x20','free\x20','\x20--li','BCFzn','Tail\x20','.0.1','sleep','ink\x20i','e\x20\x22re','split','npm\x20u','v\x20fil','tIJWU','Clear','ch\x20','Value','\x20watc','/dev/','backo','/loca','max','\x20\x20Aut','HOST','#\x20Sta','\x20MB\x20f','ree\x20—','FmSQA','LmPhT','lines','es...','nk.pi','for\x20r','udStU','\x20\x20Bac','rsion','\x20\x20✓\x20R','help','f\x20Upl','EUNRY','\x20upli','\x20\x1b[31','encod','er\x20ru','TOKEN','\x20\x20v','m(unr','hostn','could','ns]\x0a\x0a','\x20/t\x201','linux','KEY','\x20\x20\x20\x20•','token','CmCIz','\x20\x20Wat','null\x20','k\x20has','index','toppe','ear\x20—','bATbb','e:\x20\x20\x20','\x20\x20\x20np','\x20chec','destr','\x20Uplo','\x20alre','(none','v\x20var','Disk\x20','ver\x20f','padEn','\x20500\x20','v,\x20co','trim','hneUl','-v\x20\x20\x20','m\x20(PI','\x20conf','cwwLW','resta','KMxnl','il\x20th','led.','dog','\x20Push','g.pid','ated','input','map','evenL','\x20PID:','8\x20is\x20','fail','ta\x20di','port\x20','d\x20DAT','any/u','all','JOhrq','tWOhV','k\x20—\x20L','\x20\x20Cre','p\x20con','runs.','sh\x20st','(empt','\x20logs','ygHjm','IQZHn','nd\x20to','(PID\x20','date\x20','rt\x20th','AY_UR','aldis','first','mine\x20','chdog','\x0a⬡\x20Al','onfig',')\x0a\x20\x20\x20','eacha','nk-se','erVND','\x20log\x20','aw\x20se','ected','eEkdD','\x0a\x20\x20Ga','utf8','\x20crea','ng\x1b[0','ItcLI','urati','xyFbO','ay\x20to','MEocJ','ady\x20c','//127','PORT','size','creat','ifqme','ctor\x20','elp\x0a\x0a','eServ','Run\x20i','\x20\x20Exa','openS','ation','eck\x20i','\x20\x20Log','\x20subs','nLUMo','packa','mands','dYmNo','ved.\x0a','pt\x0a\x20\x20','able\x20','_KEY','exist','wmic\x20','\x20and\x20','iGerV','\x20Upli','ine','stopp','zRSmY','uplin','the\x20l','noWat','\x20hist','hed','rver:','it\x20\x20\x20','e\x20\x20\x20\x20','rce,\x20','ID=\x27','\x20The\x20','\x20warn','IXoEm','ID:\x20\x20','kKwJo','necte','ory\x20a','jdmlV','d-con','nk\x20be','IUknZ','||\x20ti','sync-','\x20curr','docto','ent\x20a','bEnON','fore\x20','oncom','⬡\x20Sho','d\x20.en','abs\x20k','o-res','jvkXe','ges-s','--por','TiFDU',')+)+)','UPLIN','bLILL','nv\x20in','ete.','ID\x20','og\x20(P','es\x20in','⬡\x20Res','ies','messa','publi','CQhuS','\x20\x20\x20\x20O','aemon','versa','ail\x20-','test\x20','setsi','ignor','\x20\x20\x20Ta','ULRIy','PID\x20','o\x20rea','(watc','unins','ime:\x20','1800WbFvdh','octor','\x20sync','lt:\x203','ink\x20C','info','PI\x20ke','ver\x20l','exit','gvKcX','stop','cache','\x20vers','and\x20c','execP','...','les','logs','teway','\x20manu','\x20mode','/agen','ncell','\x0a\x20\x20Pa','le\x20pa','TMsQe','\x20unin','sages','\x0a\x20\x20⬡\x20','\x20been','ink\x20d','\x201\x202>','\x20item','irst:','pkGIR','canno','pping','\x20--no','160657EtapNV','he\x20Up','ken','Node.','⬡\x20Upd','node','from\x20','WPzUp','\x20Miss','close','ing','.upli','nFUNx','es\x20N\x20','50)\x0a\x20','tarts','uztES','\x0a\x20\x20Da','--no-','\x0a\x20\x20\x20\x20','lYNgj','repea','⬡\x20No\x20','\x20Unin','out\x20a','\x20to\x20l','\x20(PID','⬡\x20Che','--lin','tchdo','runni','k\x20Con','liste','\x20\x20\x20\x20v','ZjBgJ','ame','\x20edit','push-','et\x0a','es\x20ex','\x20>=\x201','log','eInte','ing\x20U','notep','zObtC','edit\x20','\x20Star','t\x20rea','s\x20not','de.js','n\x20can','umKey','ssing','100\x20l','\x20Diag','end','ce\x20/v','IIjgB','.env','set\x20\x20','ay\x20re','e\x20to\x20','ion','pdate','BcuhH','QJHRq','ZDGIF','ly:\x20','s\x20and','--for','and\x20a','MuarC','\x20(con','y/upl','t\x20\x20\x20\x20','k-cha','moonc','ound\x20','reque','\x20data','\x20clea','3456','ll\x22\x20t','rPid','tion','tVvIN','GATEW','456)\x0a','platf','ync.j','\x0a⬡\x20Wa','ly\x20wi','\x20\x20→\x20h','\x20\x20✓\x20S','toLow','error','ons.j','8080\x20','igura','\x20\x20Use','slice','empty','s\x20but','\x20—\x20ru','rt:\x20\x20','ists','detai',':\x20\x20\x20\x20','Sync','readl','art','ity.j','meout','rt\x20--','XiDdi','able','\x20line','dYqOO','****'];_0x116c=function(){return _0x5050ba;};return _0x116c();}if(command===_0x4951e1(-0xb9,0x9a)){const {rmSync}=await import('fs');console[_0x4951e1(0x462,0x308)](_0x1b96a6(0x674,0x70a)+_0x4951e1(0x4a3,0x370)+_0x4951e1(0x85,0xbf)+_0x1b96a6(0x5bf,0x73a)),console[_0x4951e1(0x349,0x308)](_0x1b96a6(0x71d,0x7ab)+_0x4951e1(0x66,0xa0)+'l\x20cle'+_0x4951e1(0x55f,0x422)),console[_0x4951e1(0x25d,0x308)](_0x1b96a6(0x555,0x637)+'\x20Chat'+'\x20hist'+_0x1b96a6(0x66b,0x6be)+'nd\x20me'+_0x4951e1(0x1fb,0x3a9)+_0x4951e1(0x3aa,0x2bb)+'\x20data'),console[_0x1b96a6(0x687,0x73d)](_0x1b96a6(0x49c,0x637)+_0x1b96a6(0x542,0x645)+_0x4951e1(0x268,0x42e)+'files'+_0x4951e1(0x1be,0x273)+_0x1b96a6(0x588,0x506)+'\x20cach'+'e'),console[_0x1b96a6(0x723,0x73d)]('\x20\x20\x20\x20•'+_0x4951e1(0x36a,0x2e7)+_0x1b96a6(0x6fb,0x854)+_0x4951e1(0x347,0x3a9)+_0x1b96a6(0x6c9,0x571)+'ue'),console['log']('\x20\x20\x20\x20•'+_0x4951e1(0x1db,0x224)+_0x1b96a6(0x530,0x69d)+'cript'+_0x1b96a6(0x643,0x57d)+_0x1b96a6(0x6ae,0x75b)+_0x1b96a6(0x626,0x4ca)+'ty\x20da'+'ta'),console['log'](''),console['log']('\x20\x20Thi'+_0x4951e1(0x212,0xa0)+_0x1b96a6(0x7a2,0x83d)+_0x1b96a6(0x8fa,0x765)+'r:'),console['log'](_0x4951e1(0x337,0x202)+_0x4951e1(0x3f0,0x36e)+_0x4951e1(0x40,0x21d)+'igura'+_0x1b96a6(0x90b,0x769)),console['log'](_0x4951e1(0x248,0x202)+_0x1b96a6(0x6f4,0x5c0)+_0x1b96a6(0x4e9,0x597)+_0x4951e1(0x2d0,0x2c9)),console['log']('\x20\x20\x20\x20•'+_0x1b96a6(0x6a1,0x6b8)+'serve'+'r\x20its'+_0x4951e1(0x468,0x3c0));if(!flags[_0x1b96a6(0x720,0x816)]){const readline=await import('readl'+_0x4951e1(0x457,0x276)),_0x5a90b9={};_0x5a90b9[_0x1b96a6(0x673,0x65c)]=process[_0x1b96a6(0x8b6,0x7ad)],_0x5a90b9['outpu'+'t']=process[_0x1b96a6(0x7f3,0x810)+'t'];const rl=readline[_0x1b96a6(0x74b,0x692)+_0x4951e1(0x3ec,0x309)+_0x1b96a6(0x450,0x4d3)](_0x5a90b9),answer=await new Promise(_0x3a378e=>{function _0x542a64(_0x4418fd,_0x116e9c){return _0x1b96a6(_0x4418fd,_0x116e9c- -0x5ac);}function _0x5ae775(_0xbb054e,_0x4fd012){return _0x1b96a6(_0x4fd012,_0xbb054e- -0x320);}rl['quest'+_0x5ae775(0x433,0x4f1)](_0x5ae775(0x560,0x695)+_0x542a64(0xa,0x5f)+_0x5ae775(0x4f9,0x44b)+_0x5ae775(0x200,0x110)+_0x5ae775(0x21b,0x3dd)+':\x20',_0x3a378e);});rl[_0x1b96a6(0x88e,0x71d)](),answer[_0x1b96a6(0x62b,0x64e)]()[_0x4951e1(0x2ea,0x33e)+_0x4951e1(-0x6c,0xe8)+'e']()!=='reset'&&(console[_0x1b96a6(0x6a3,0x73d)](_0x4951e1(0xc7,0x19a)+'ncell'+'ed.\x20N'+_0x1b96a6(0x419,0x5f4)+'g\x20was'+_0x1b96a6(0x66f,0x7b8)+'ved.\x0a'),process[_0x4951e1(0x288,0x2c1)](-0x6fb+-0x1d3d+-0x26*-0xf4)),console['log']('');}const dataResets=['messa'+_0x1b96a6(0x879,0x6d0)+'ync.j'+_0x4951e1(-0x2f,0x1a7),'activ'+'ity.j'+_0x1b96a6(0x509,0x5dc),_0x4951e1(0x3de,0x28f)+_0x1b96a6(0x5ad,0x562),'share'+_0x4951e1(0x150,0x28b)+'versa'+_0x1b96a6(0x6a5,0x4fc),'uploa'+'ds',_0x4951e1(0x460,0x45b),'.migr'+_0x4951e1(0x343,0x226)],rootResets=[_0x4951e1(0x377,0x2a8)+_0x1b96a6(0x625,0x6d0)+_0x1b96a6(0x75a,0x76e)+'son',_0x1b96a6(0x542,0x4d9)+_0x1b96a6(0x681,0x784)+_0x1b96a6(0x632,0x5dc),'sync-'+_0x4951e1(0x108,0x12d),_0x4951e1(0x420,0x3d3)+_0x1b96a6(0x870,0x6c0)+_0x1b96a6(0x6fc,0x6e2)+_0x4951e1(0x143,0xc7),'uploa'+'ds',_0x1b96a6(0x63e,0x6de)+_0x4951e1(0x97,0x1c5)+'io',_0x1b96a6(0x71a,0x538)+_0x1b96a6(0x421,0x4e0)+_0x1b96a6(0x76c,0x709)+_0x1b96a6(0x9bf,0x82f),_0x1b96a6(0x6ba,0x739)+'subsc'+'ripti'+_0x4951e1(0x4e9,0x340)+_0x1b96a6(0x5d0,0x5dc),_0x4951e1(0x2c5,0x188)+_0x4951e1(0x5ac,0x45a),_0x4951e1(0x24f,0x2ea)+'nk-se'+_0x1b96a6(0x95a,0x858)+'log',_0x1b96a6(0x6a8,0x71f)+_0x1b96a6(0x724,0x7f4)+_0x1b96a6(0x7b6,0x731)+_0x4951e1(0x10f,0x1c0)];let cleared=0x23b7+0x1a23*0x1+-0x3dda;for(const item of dataResets){const fullPath=join(DATA_DIR,item);if(existsSync(fullPath))try{const _0x26a067={};_0x26a067[_0x4951e1(-0x5b,0x137)+_0x1b96a6(0x4b3,0x59c)]=!![],_0x26a067[_0x4951e1(0x56b,0x3e1)]=!![],rmSync(fullPath,_0x26a067),cleared++,console[_0x1b96a6(0x5c5,0x73d)](_0x1b96a6(0x786,0x626)+_0x1b96a6(0x601,0x7d5)+_0x4951e1(0x181,0x22f)+_0x4951e1(-0xdd,0xf2)+'/'+item);}catch(_0x6fb224){console['error']('\x20\x20✗\x20F'+_0x4951e1(0x28b,0xbb)+_0x1b96a6(0x77c,0x872)+'emove'+'\x20DATA'+_0x1b96a6(0x666,0x50b)+item+':\x20'+_0x6fb224['messa'+'ge']);}}for(const item of rootResets){const fullPath=join(ROOT,item);if(existsSync(fullPath))try{const _0x17de29={};_0x17de29[_0x4951e1(0x300,0x137)+_0x1b96a6(0x4d3,0x59c)]=!![],_0x17de29[_0x1b96a6(0x707,0x816)]=!![],rmSync(fullPath,_0x17de29),cleared++,console[_0x1b96a6(0x90a,0x73d)](_0x4951e1(0x2a3,0x1f1)+_0x4951e1(0x236,0x3a0)+'d\x20'+item);}catch(_0x26bf02){console[_0x4951e1(0x2df,0x33f)](_0x4951e1(0x1bd,0x1bc)+_0x4951e1(-0x1b,0xbb)+_0x1b96a6(0x6d4,0x872)+_0x4951e1(0x448,0x3a0)+'\x20'+item+':\x20'+_0x26bf02[_0x1b96a6(0x79a,0x6dd)+'ge']);}}cleared===-0x2*0xe53+-0x797+0x243d?console[_0x1b96a6(0x85e,0x73d)](_0x4951e1(0x62,0x138)+'hing\x20'+'to\x20cl'+_0x4951e1(0x337,0x20a)+_0x4951e1(0x3d3,0x211)+_0x1b96a6(0x69c,0x68e)+'lean.'):console['log'](_0x1b96a6(0x79b,0x70a)+_0x1b96a6(0x66b,0x610)+_0x4951e1(0x4d6,0x3a2)+cleared+_0x1b96a6(0x8d8,0x70e)+(cleared>-0x77+-0x18b6+0x192e?'s':'')+(_0x1b96a6(0x518,0x4f3)+_0x4951e1(0x39e,0x238)+_0x1b96a6(0x95b,0x88c))),console[_0x1b96a6(0x611,0x73d)](''),process[_0x1b96a6(0x591,0x6f6)](0x1*0x132b+-0x7*-0x567+-0x1c7e*0x2);}if(command==='info'){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x1b96a6(0x6e2,0x69f)+_0x4951e1(-0x32,0xb6)+'on')),ENV_FILE=existsSync(join(DATA_DIR,_0x4951e1(0x2cb,0x31a)))?join(DATA_DIR,_0x4951e1(0x3f5,0x31a)):join(ROOT,'.env');let envPort=_0x4951e1(0x341,0x331),envHost='0.0.0'+'.0',envGatewayUrl=_0x1b96a6(0x5db,0x539)+_0x4951e1(0x323,0x25a)+_0x4951e1(0x491,0x437)+_0x4951e1(0x2ae,0x142)+'89',envGatewayToken='';if(existsSync(ENV_FILE))try{const content=readFileSync(ENV_FILE,'utf8');for(const line of content['split']('\x0a')){const t=line['trim']();if(!t||t[_0x4951e1(0x193,0xb2)+_0x1b96a6(0x76f,0x873)]('#'))continue;const eqIdx=t[_0x4951e1(0x137,0x208)+'Of']('=');if(eqIdx===-(-0x1b47*-0x1+-0x185a*0x1+-0x176*0x2))continue;const k=t[_0x1b96a6(0x925,0x779)](-0x18*0x10b+-0x1ba7+0x1*0x34af,eqIdx)[_0x4951e1(0x346,0x219)](),v=t[_0x4951e1(0x1a8,0x344)](eqIdx+(-0x1*-0x20f2+-0x7*0x35f+-0x958))[_0x4951e1(0x9f,0x219)]();if(k===_0x1b96a6(0x7d8,0x690))envPort=v||'3456';if(k==='UPLIN'+_0x4951e1(0xd3,0xd8)+'T'||k===_0x1b96a6(0x45c,0x619))envHost=v||_0x1b96a6(0x464,0x4ff)+'.0';if(k===_0x1b96a6(0x8ce,0x76b)+'AY_UR'+'L')envGatewayUrl=v;if(k===_0x1b96a6(0x8ee,0x76b)+'AY_TO'+_0x1b96a6(0x6a8,0x88a))envGatewayToken=v;}}catch{}const watchdogPid=getWatchdogPid(),serverPid=getPid(),isServerRunning=!!(watchdogPid||serverPid),serverStatus=isServerRunning?'\x1b[32m'+'runni'+_0x1b96a6(0x73f,0x688)+_0x4951e1(0x2ff,0x21c)+'D\x20'+(watchdogPid||serverPid)+')':_0x4951e1(0x54f,0x38b)+_0x1b96a6(0x820,0x6ac)+_0x1b96a6(0x3ee,0x537)+'m',gwReachable=await new Promise(_0x470763=>{function _0x3ad984(_0x6eb3c9,_0x2835c0){return _0x1b96a6(_0x6eb3c9,_0x2835c0- -0x14e);}const _0x1a227b={'EWdjp':function(_0x1b747a,_0x340d69,_0x1f1ed6){return _0x1b747a(_0x340d69,_0x1f1ed6);},'BcuhH':function(_0x1b2e9d,_0x1eec37){return _0x1b2e9d+_0x1eec37;},'dYmNo':_0x5ecab1(0x59d,0x51e),'cuFYp':_0x3ad984(0x2d4,0x45d)+_0x5ecab1(0x7d4,0x614)+_0x5ecab1(0x819,0x73d)+_0x3ad984(0x591,0x4df)+'nning'+'\x20via\x20'+_0x5ecab1(0x5ff,0x748)+_0x3ad984(0x37c,0x479),'CmCIz':function(_0x46b3a1,_0x862020,_0x3b595a){return _0x46b3a1(_0x862020,_0x3b595a);},'zwxgx':function(_0x58a3ac,_0x6cccd0){return _0x58a3ac+_0x6cccd0;},'HVrnM':_0x5ecab1(0x3b5,0x51b)+_0x5ecab1(0x581,0x6f8),'IQZHn':function(_0x45ba82,_0x41a1eb){return _0x45ba82!==_0x41a1eb;},'NxDwh':_0x5ecab1(0x6de,0x576),'zObtC':_0x5ecab1(0x599,0x5d7),'IXoEm':function(_0x19fe96,_0x159e98){return _0x19fe96(_0x159e98);},'OrUdM':function(_0xa0718b,_0xb9e161){return _0xa0718b===_0xb9e161;},'dYqOO':_0x5ecab1(0x556,0x723),'MuarC':function(_0x2dd7cc,_0x5ed5ab){return _0x2dd7cc(_0x5ed5ab);}};function _0x5ecab1(_0x4fe8af,_0x49e377){return _0x1b96a6(_0x4fe8af,_0x49e377- -0x90);}try{const _0x2e1265=new URL(envGatewayUrl),_0x41fb0c={};_0x41fb0c[_0x5ecab1(0x524,0x5a1)+_0x3ad984(0x577,0x5e9)]=_0x2e1265[_0x5ecab1(0x3ee,0x5a1)+_0x3ad984(0x6da,0x5e9)],_0x41fb0c[_0x3ad984(0x611,0x6bb)]=_0x2e1265[_0x5ecab1(0x91e,0x779)]||-0x10b5+-0x3d*0x26+-0x8b1*-0x3,_0x41fb0c[_0x5ecab1(0x6bf,0x70c)]='/',_0x41fb0c[_0x3ad984(0x449,0x4a2)+'d']=_0x5ecab1(0x699,0x4b3),_0x41fb0c['timeo'+'ut']=0xbb8;const _0x487351=_0x454e48[_0x5ecab1(0x6c3,0x6d3)+'st'](_0x41fb0c,_0x20dbec=>{function _0x4e0a9f(_0x276e87,_0x57b131){return _0x5ecab1(_0x57b131,_0x276e87-0x152);}function _0x13829a(_0x59589f,_0x6a580){return _0x5ecab1(_0x6a580,_0x59589f- -0x146);}_0x1a227b[_0x4e0a9f(0x733,0x793)](_0x1a227b[_0x4e0a9f(0x929,0xa53)],_0x1a227b[_0x13829a(0x56b,0x382)])?(_0x20dbec[_0x4e0a9f(0x672,0x528)+'e'](),_0x1a227b[_0x13829a(0x4e4,0x688)](_0x470763,!![])):_0x14d007?DUhNgb[_0x13829a(0x5fd,0x60a)](_0x331969,DUhNgb[_0x13829a(0x57f,0x462)](DUhNgb[_0x13829a(0x4cb,0x3ee)],_0x4afcfb),DUhNgb['cuFYp']):DUhNgb[_0x13829a(0x463,0x4e7)](_0x476848,DUhNgb[_0x4e0a9f(0x6aa,0x5bc)](DUhNgb[_0x4e0a9f(0x763,0x90c)],_0x5f3a07),DUhNgb[_0x13829a(0x3aa,0x325)]);});_0x487351['on'](_0x5ecab1(0x6b2,0x6e4),()=>_0x470763(![])),_0x487351['on'](_0x3ad984(0x829,0x74b)+'ut',()=>{function _0x5b7abb(_0x892bae,_0x445c3a){return _0x3ad984(_0x892bae,_0x445c3a- -0x4ea);}_0x487351[_0x5b7abb(0x1e2,0xc)+'oy'](),_0x470763(![]);}),_0x487351['end']();}catch{_0x1a227b['OrUdM'](_0x1a227b[_0x5ecab1(0x567,0x6fa)],_0x1a227b[_0x3ad984(0x4ba,0x63c)])?_0x1a227b[_0x3ad984(0x6b2,0x60e)](_0x470763,![]):(_0x59a201['kill'](_0x4a331a,_0x3ad984(0x5cf,0x6bd)+'RM'),_0x4ed6de[_0x5ecab1(0x505,0x6ad)](_0x5ecab1(0x6e5,0x6e2)+'toppe'+'d\x20wat'+_0x5ecab1(0x74d,0x5ea)+_0x3ad984(0x790,0x5e0)+'\x20'+_0x5817ce+')'));}}),gwStatus=gwReachable?envGatewayUrl+('\x20\x1b[32'+_0x4951e1(0x25c,0x16f)+_0x4951e1(0x36d,0x288)+'d)\x1b[0'+'m'):envGatewayUrl+(_0x4951e1(0x12a,0x1f6)+_0x4951e1(0x324,0x1fb)+_0x4951e1(0x221,0x249)+_0x4951e1(0x276,0x446)+_0x1b96a6(0x592,0x5a5)),LOG_FILE=join(ROOT,_0x4951e1(0x1c9,0x188)+_0x1b96a6(0x966,0x88f)),ALT_LOG_FILE=join(ROOT,'.upli'+_0x4951e1(0x3a3,0x24a)+_0x4951e1(0x499,0x423)+_0x1b96a6(0x604,0x73d)),logFile=existsSync(LOG_FILE)?LOG_FILE:existsSync(ALT_LOG_FILE)?ALT_LOG_FILE:_0x1b96a6(0x7c0,0x647)+')',premiumFile=join(ROOT,_0x4951e1(0x343,0x188)+'r',_0x4951e1(0x4d0,0x385)+'um');let premiumStatus=_0x1b96a6(0x733,0x7a8)+'etect'+'ed';existsSync(premiumFile)&&(premiumStatus='insta'+'lled');const configFile=join(ROOT,'confi'+_0x1b96a6(0x670,0x4dd)+'n');if(existsSync(configFile))try{const cfg=JSON['parse'](readFileSync(configFile,_0x4951e1(0x1a9,0x251)));if(cfg[_0x4951e1(0x29d,0x385)+'um']||cfg['premi'+_0x4951e1(0x404,0x313)])premiumStatus='activ'+'e';}catch{}console['log'](_0x1b96a6(0x713,0x70a)+_0x1b96a6(0x68a,0x7a5)+_0x1b96a6(0x6e3,0x870)+_0x1b96a6(0x623,0x5b7)+_0x4951e1(0x1c5,0x141)+'on:\x20\x20'+_0x1b96a6(0x760,0x735)+pkg[_0x1b96a6(0x51e,0x545)+'on']+('\x0a\x20\x20No'+_0x4951e1(0x25c,0x311)+_0x4951e1(0x44d,0x34b)+_0x4951e1(0x141,0x1fa))+process['versi'+_0x1b96a6(0x695,0x602)][_0x1b96a6(0x53c,0x719)]+('\x0a\x20\x20Po'+_0x4951e1(0x28a,0x348)+'\x20\x20\x20\x20\x20'+'\x20\x20')+envPort+(_0x4951e1(0x2c7,0x438)+_0x1b96a6(0x5be,0x502)+_0x4951e1(0x348,0x35c)+'\x20\x20')+envHost+(_0x4951e1(0x1ce,0x17f)+_0x1b96a6(0x6f5,0x6b3)+_0x4951e1(0x44c,0x35c)+'\x20\x20')+serverStatus+(_0x1b96a6(0x869,0x685)+_0x1b96a6(0x598,0x700)+_0x1b96a6(0x8b7,0x780)+'\x20\x20')+gwStatus+(_0x1b96a6(0x748,0x725)+_0x1b96a6(0x83f,0x662)+'r:\x20\x20\x20'+'\x20\x20')+DATA_DIR+(_0x1b96a6(0x936,0x865)+'g\x20fil'+_0x1b96a6(0x5a6,0x641)+'\x20\x20')+logFile+(_0x4951e1(0x277,0x38a)+_0x4951e1(0x141,0x16b)+_0x4951e1(0x448,0x34b)+'\x20\x20')+premiumStatus+(_0x4951e1(0x1eb,0x380)+_0x1b96a6(0x943,0x87a)+'ed:\x20\x20'+'\x20\x20')+ROOT+_0x4951e1(0x10c,0xf0)),process[_0x4951e1(0x24e,0x2c1)](0x3*-0xba5+0x22*0xd4+-0x1*-0x6c7);}const ALL_COMMANDS=['stop',_0x4951e1(-0xdb,0x9d)+'s',_0x4951e1(0x41f,0x39c)+'e',_0x1b96a6(0x504,0x6ec)+_0x1b96a6(0x7de,0x7b2),_0x1b96a6(0x708,0x6ff),_0x1b96a6(0x86e,0x891)+'g','docto'+'r',_0x1b96a6(0x51f,0x4cf),_0x4951e1(0x124,0x2be)];if(command===_0x4951e1(0x94,0xb2)||!ALL_COMMANDS[_0x4951e1(0x1e8,0x19c)+'des'](command)){const existingWatchdog=getWatchdogPid(),existingPid=getPid();if(existingWatchdog||existingPid){const pid=existingWatchdog||existingPid,mode=existingWatchdog?_0x4951e1(0x125,0xc5)+_0x1b96a6(0x76e,0x658):_0x4951e1(0x2b0,0x12f)+'t';console['log'](_0x1b96a6(0x6ba,0x5ff)+_0x1b96a6(0x6c6,0x60a)+_0x1b96a6(0x5d0,0x5c9)+_0x1b96a6(0x733,0x7f9)+_0x4951e1(0x1d2,0x2fd)+'ng\x20('+mode+(_0x1b96a6(0x685,0x797)+'\x20')+pid+').'),console[_0x4951e1(0x15d,0x308)]('\x20\x20Sto'+'p\x20it\x20'+_0x1b96a6(0x593,0x678)+_0x4951e1(0x19e,0x358)+_0x1b96a6(0x79c,0x5d5)+_0x4951e1(-0xf7,0xda)+_0x4951e1(0x34c,0x1a9)),process[_0x1b96a6(0x84a,0x6f6)](-0xb90+-0x1739+-0x92*-0x3d);}const env={...process.env};if(flags[_0x4951e1(0x45d,0x3d4)])env[_0x4951e1(0xb1,0x25b)]=String(flags[_0x1b96a6(0x770,0x809)]);if(flags['host'])env['UPLIN'+_0x4951e1(0x2a6,0xd8)+'T']=flags[_0x4951e1(0x4de,0x3c8)];const serverPath=join(ROOT,_0x4951e1(0x323,0x188)+_0x4951e1(0x47e,0x451));if(flags[_0x4951e1(0x2d2,0x392)+'h']){const watchdogPath=join(ROOT,_0x1b96a6(0x61b,0x5bd)+'r',_0x4951e1(0x155,0xc5)+_0x4951e1(0x1c1,0x3a7)+'s'),extraEnv={};if(flags[_0x4951e1(0x4a1,0x3d4)])extraEnv[_0x1b96a6(0x535,0x690)]=String(flags[_0x1b96a6(0x640,0x809)]);if(flags['host'])extraEnv[_0x4951e1(0x21a,0x29f)+_0x4951e1(0x182,0xd8)+'T']=flags[_0x4951e1(0x308,0x3c8)];const isLinux=process[_0x4951e1(0x246,0x338)+_0x4951e1(0x36e,0x43f)]===_0x1b96a6(0x6e3,0x635);let child;if(isLinux)try{const _0x381cfa={};_0x381cfa['stdio']=_0x4951e1(0x255,0x2b1)+'e',execSync('which'+_0x1b96a6(0x967,0x897)+'id',_0x381cfa);const _0xaaa5f0={};_0xaaa5f0[_0x1b96a6(0x660,0x835)]=ROOT,_0xaaa5f0[_0x1b96a6(0x96f,0x7a4)]=env,_0xaaa5f0[_0x1b96a6(0x6a6,0x7c7)+_0x4951e1(0x30f,0x27d)]=!![],_0xaaa5f0[_0x4951e1(0x508,0x3c1)]=_0x4951e1(0x18a,0x2b1)+'e',child=spawn(_0x4951e1(0x410,0x2b0)+'d',[_0x1b96a6(0x7a8,0x75a)+'k',process[_0x4951e1(0x140,0x2c7)+_0x4951e1(0x39,0x169)],watchdogPath,JSON[_0x1b96a6(0x736,0x59a)+_0x4951e1(0x261,0xa2)](extraEnv)],_0xaaa5f0);}catch{const _0x246e6a={};_0x246e6a[_0x1b96a6(0x7ff,0x835)]=ROOT,_0x246e6a[_0x4951e1(0x495,0x36f)]=env,_0x246e6a[_0x4951e1(0x461,0x392)+'hed']=!![],_0x246e6a['stdio']=_0x4951e1(0xd3,0x2b1)+'e',child=spawn(process[_0x4951e1(0x40c,0x2c7)+'ath'],[watchdogPath,JSON['strin'+'gify'](extraEnv)],_0x246e6a);}else{const _0x5b2bca={};_0x5b2bca[_0x1b96a6(0xa02,0x835)]=ROOT,_0x5b2bca['env']=env,_0x5b2bca['detac'+_0x4951e1(0x147,0x27d)]=!![],_0x5b2bca[_0x4951e1(0x2ab,0x3c1)]=_0x1b96a6(0x6c4,0x6e6)+'e',child=spawn(process[_0x4951e1(0x453,0x2c7)+_0x1b96a6(0x4bf,0x59e)],[watchdogPath,JSON[_0x4951e1(0x313,0x165)+_0x4951e1(-0xc0,0xa2)](extraEnv)],_0x5b2bca);}child['unref']();const port=flags[_0x4951e1(0x553,0x3d4)]||env[_0x1b96a6(0x4e8,0x690)]||0x567+-0x2e8*-0x5+-0x66f;console['log']('⬡\x20Upl'+_0x1b96a6(0x575,0x512)+_0x1b96a6(0x55a,0x5f2)+_0x1b96a6(0x750,0x5ac)+_0x4951e1(-0x20,0xc2)+_0x4951e1(-0x13,0x135)+_0x1b96a6(0x963,0x7ce)+_0x1b96a6(0x754,0x613)+_0x1b96a6(0x603,0x566)+_0x4951e1(0x3b5,0x23e)+child[_0x4951e1(0x2c4,0x18a)]+').'),console[_0x4951e1(0x45d,0x308)](_0x1b96a6(0x5a6,0x771)+'ttp:/'+_0x1b96a6(0x755,0x616)+_0x1b96a6(0x669,0x5ed)+':'+port),console['log'](_0x1b96a6(0x668,0x618)+_0x1b96a6(0x5d0,0x6ce)+'tarts'+_0x4951e1(0x366,0x459)+_0x4951e1(0x2d9,0x38d)+_0x4951e1(0x40b,0x382)+'\x20with'+_0x4951e1(0x2e3,0x358)+_0x1b96a6(0x4ae,0x5d5)+'hat\x20s'+'top'),process['exit'](0x15eb+-0xf9*0x9+-0x151*0xa);}else{if(flags[_0x1b96a6(0x81f,0x6b0)+_0x4951e1(0x28d,0x245)]){const _0x457106={};_0x457106[_0x4951e1(0x46d,0x400)]=ROOT,_0x457106['env']=env,_0x457106[_0x1b96a6(0x98f,0x7f6)]=_0x4951e1(0x510,0x394)+'it';const child=spawn(process[_0x4951e1(0x1fa,0x2c7)+'ath'],[serverPath],_0x457106);writeFileSync(PID_FILE,String(child[_0x1b96a6(0x49b,0x5bf)]));const cleanup=()=>{const _0x5df410={'GvfzB':function(_0x5e6bbc,_0x1ae9ef){return _0x5e6bbc(_0x1ae9ef);}};try{_0x5df410['GvfzB'](unlinkSync,PID_FILE);}catch{}};process['on'](_0x4951e1(-0x8c,0xb8)+'T',()=>{cleanup();function _0x1a5ea9(_0xbe84c3,_0x408bcc){return _0x4951e1(_0x408bcc,_0xbe84c3- -0x2b2);}process[_0x1a5ea9(0xf,0x18b)](-0x3*0xadd+0x25e0+-0x549);}),process['on'](_0x4951e1(0x2b4,0x3d6)+'RM',()=>{const _0xc913b9={'eYhLu':function(_0x24251a){return _0x24251a();}};function _0x25b715(_0x22bc1a,_0x5909ae){return _0x1b96a6(_0x5909ae,_0x22bc1a- -0x27b);}_0xc913b9['eYhLu'](cleanup),process[_0x25b715(0x47b,0x534)](0x1*-0xaa9+0x115a+-0x6b1);}),child['on'](_0x4951e1(0x1df,0x2c1),_0xa12b1d=>{const _0x5cc441={'HauPZ':function(_0x10fdc8){return _0x10fdc8();}};_0x5cc441['HauPZ'](cleanup);function _0x34c1ee(_0x3c3986,_0x36be81){return _0x4951e1(_0x3c3986,_0x36be81-0xe4);}process[_0x34c1ee(0x2a1,0x3a5)](_0xa12b1d||0x1*0xfb+0x2c5+-0xf0*0x4);});}else{const watchdogPath=join(ROOT,_0x4951e1(0x156,0x188)+'r',_0x1b96a6(0x4d9,0x4fa)+_0x1b96a6(0x67d,0x7dc)+'s'),extraEnv={};if(flags['port'])extraEnv[_0x1b96a6(0x536,0x690)]=String(flags[_0x4951e1(0x48e,0x3d4)]);if(flags['host'])extraEnv[_0x1b96a6(0x539,0x6d4)+_0x1b96a6(0x566,0x50d)+'T']=flags[_0x4951e1(0x2e3,0x3c8)];const _0x54cfd3={};_0x54cfd3[_0x4951e1(0x3c7,0x400)]=ROOT,_0x54cfd3[_0x4951e1(0x1aa,0x36f)]=env,_0x54cfd3[_0x4951e1(0x2c8,0x3c1)]=_0x4951e1(0x509,0x394)+'it';const child=spawn(process[_0x4951e1(0x3a1,0x2c7)+'ath'],[watchdogPath,JSON[_0x4951e1(-0x58,0x165)+'gify'](extraEnv)],_0x54cfd3),port=flags[_0x4951e1(0x596,0x3d4)]||env['PORT']||-0x133c+0x1f76+-0x1*-0x146;console[_0x1b96a6(0x6e1,0x73d)](_0x1b96a6(0x430,0x5ff)+_0x1b96a6(0x646,0x512)+_0x4951e1(0x2e7,0x100)+_0x4951e1(0x26f,0x40e)+_0x4951e1(0x133,0xb4)+_0x4951e1(0x2ec,0x2fc)+'g\x20(au'+_0x4951e1(0x184,0xa5)+'start'+'\x20enab'+'led)'),console[_0x4951e1(0x3eb,0x308)](_0x4951e1(0x1eb,0x33c)+'ttp:/'+_0x1b96a6(0x51f,0x616)+_0x1b96a6(0x617,0x5ed)+':'+port),console[_0x4951e1(0x3a2,0x308)](_0x4951e1(0x1a7,0x343)+_0x1b96a6(0x626,0x713)+_0x1b96a6(0x44d,0x582)+_0x4951e1(0x2b0,0x131)+_0x4951e1(0x1ea,0x1ed)+_0x1b96a6(0x689,0x682)+_0x1b96a6(0x675,0x849)+_0x4951e1(0x337,0x402)),process['on']('SIGIN'+'T',()=>{const _0x41bee6={};function _0x4accda(_0x3d07f9,_0x531947){return _0x1b96a6(_0x531947,_0x3d07f9- -0x6df);}_0x41bee6[_0x18f3c4(0x506,0x53e)]=_0x18f3c4(0x484,0x3db)+'RM';const _0x5aef85=_0x41bee6;function _0x18f3c4(_0x3feda1,_0x106a8c){return _0x1b96a6(_0x106a8c,_0x3feda1- -0x387);}child[_0x18f3c4(0x436,0x340)](_0x5aef85[_0x4accda(0x1ae,0x284)]);}),process['on'](_0x1b96a6(0x90e,0x80b)+'RM',()=>{function _0x2b58d9(_0x387c87,_0x4a5198){return _0x1b96a6(_0x4a5198,_0x387c87- -0x587);}const _0xadf1bc={};_0xadf1bc[_0x2b58d9(-0x49,-0x205)]='SIGTE'+'RM';const _0x21c28c=_0xadf1bc;child['kill'](_0x21c28c['jpqoK']);}),child['on']('exit',_0x47c76a=>{const _0x1b8ff8={};function _0x49bb6d(_0x36e3d3,_0x46212f){return _0x1b96a6(_0x46212f,_0x36e3d3- -0x80);}_0x1b8ff8['Tcskj']=function(_0x43193d,_0x2e9a3e){return _0x43193d||_0x2e9a3e;};function _0x41b261(_0x47a4da,_0x50262c){return _0x1b96a6(_0x47a4da,_0x50262c- -0x27a);}const _0x5ce8ef=_0x1b8ff8;process[_0x41b261(0x2af,0x47c)](_0x5ce8ef[_0x41b261(0x67e,0x571)](_0x47c76a,0x10b8+-0x352+0x157*-0xa));});}}}
3
+ (function(_0x4800e8,_0x5e698c){function _0x25b115(_0x416a6a,_0x3de291){return _0x1d2a(_0x416a6a-0x2f2,_0x3de291);}function _0x3ad870(_0x323db5,_0x51c58e){return _0x1d2a(_0x323db5-0x390,_0x51c58e);}const _0x3d80a6=_0x4800e8();while(!![]){try{const _0x16b018=-parseInt(_0x3ad870(0x627,0x660))/(-0x1279+0x1*-0x223+0x149d)*(-parseInt(_0x3ad870(0x452,0x613))/(0xfba+-0xe28+-0x190))+parseInt(_0x25b115(0x461,0x647))/(-0x16f*0x19+-0x21e5+-0xdf3*-0x5)*(parseInt(_0x3ad870(0x4cb,0x392))/(-0x502+-0x10b6+-0x2*-0xade))+parseInt(_0x3ad870(0x640,0x70b))/(-0x3e+-0x14df+0x1522)+parseInt(_0x3ad870(0x762,0x738))/(-0x8d9+0xcfe*-0x2+0x22db*0x1)+-parseInt(_0x3ad870(0x49f,0x5bd))/(-0x7ed*0x4+-0x255e+0x4519)*(parseInt(_0x25b115(0x3d5,0x23f))/(-0x12e+-0xf87+0x1*0x10bd))+-parseInt(_0x3ad870(0x76f,0x914))/(-0x23f1+0x1f5+0x2205)+parseInt(_0x3ad870(0x46e,0x544))/(0x13*0x1c3+-0x35*0xa3+0x50)*(parseInt(_0x25b115(0x4a1,0x4c0))/(0x1*-0x1136+-0x1fb0+-0x30f1*-0x1));if(_0x16b018===_0x5e698c)break;else _0x3d80a6['push'](_0x3d80a6['shift']());}catch(_0x39cdbf){_0x3d80a6['push'](_0x3d80a6['shift']());}}}(_0x83cf,0x1945*-0xe+0x476a9+-0x5*-0x41bb));import{spawn,execSync}from'child_process';import{fileURLToPath}from'url';import{dirname,join}from'path';import{existsSync,writeFileSync,readFileSync,unlinkSync,statSync,readdirSync,mkdirSync}from'fs';import{createRequire}from'module';import _0x3fdfe2 from'net';import _0x497eb7 from'http';import _0x2d64a3 from'os';function _0x1d2a(_0x5c35b8,_0x5cf5bb){_0x5c35b8=_0x5c35b8-(-0x13c*-0x5+-0x1b0e*0x1+0x156b);const _0x51cee3=_0x83cf();let _0x19968b=_0x51cee3[_0x5c35b8];return _0x19968b;}const __filename=fileURLToPath(import.meta.url),__dirname=dirname(__filename),ROOT=join(__dirname,'..');function resolveDataDir(){const _0x1e10e6={'pSLwB':function(_0x514b55,_0x401d74,_0x2b5ccd){return _0x514b55(_0x401d74,_0x2b5ccd);},'XsgtB':function(_0x7f6248,_0xa7285c){return _0x7f6248+_0xa7285c;},'MDdeF':_0x2d18b2(0x122,0x14b),'YdVsT':'avail'+_0x33a33b(0x3f7,0x4e4),'LdMyg':function(_0x159299,_0x1896e1){return _0x159299(_0x1896e1);},'vAiiR':function(_0x3a41c6,_0x35f97e){return _0x3a41c6!==_0x35f97e;},'UMHHG':_0x2d18b2(0x109,0x17f)+_0x2d18b2(0xcc,0x11)+_0x33a33b(0x37f,0x3ec)+'v\x20var'+_0x2d18b2(-0x4f,-0x63)+_0x33a33b(0x3af,0x4a1)+_0x2d18b2(-0x19b,-0x232)+'ly:\x20','btgvu':_0x2d18b2(-0xe4,-0x203),'oUprH':function(_0x4dbad1,_0x2b3605,_0x243034){return _0x4dbad1(_0x2b3605,_0x243034);},'csrVd':'Gatew'+'ay\x20to'+_0x33a33b(0x6f8,0x6f4),'PvRun':function(_0x572f2c,_0x3321ab){return _0x572f2c!==_0x3321ab;},'uVvEF':_0x2d18b2(-0x206,-0x15b),'BEZRJ':_0x2d18b2(-0x1fa,-0x1da),'HbBiw':_0x2d18b2(-0x21,0x5e)+_0x2d18b2(-0x34c,-0x195)+'+$','gYveF':function(_0x1fef40,_0x4bfa4e,_0x37501b){return _0x1fef40(_0x4bfa4e,_0x37501b);},'Lgfiy':function(_0x30689f){return _0x30689f();},'rJGSk':function(_0x55b6a3,_0x3f5a6f){return _0x55b6a3===_0x3f5a6f;},'HkymI':'win32','APiyc':_0x2d18b2(-0x104,-0x1c2)+'ta','jVWOd':'Roami'+'ng','UkXJq':function(_0x205379,_0x317482,_0x533812){return _0x205379(_0x317482,_0x533812);},'GVHDF':_0x2d18b2(-0x2a5,-0x1cc)+'k','QUKrq':function(_0x46903f,_0x21fec,_0x4148f6){return _0x46903f(_0x21fec,_0x4148f6);}};function _0x2d18b2(_0x1870f9,_0x37cb67){return _0x1d2a(_0x37cb67- -0x2fc,_0x1870f9);}const _0xf7a0f5=(function(){function _0x5d66d9(_0x435819,_0x26a9cd){return _0x33a33b(_0x26a9cd,_0x435819- -0x2f7);}const _0x4f7aab={'iwrls':function(_0xf36349,_0x5a6940){function _0x4eced4(_0x2179d7,_0x18a69f){return _0x1d2a(_0x18a69f-0x3e6,_0x2179d7);}return _0x1e10e6[_0x4eced4(0x5db,0x57e)](_0xf36349,_0x5a6940);},'vINlb':function(_0x314af4,_0x4cd627){function _0x1cce3f(_0x32fb20,_0x1e889a){return _0x1d2a(_0x1e889a-0x399,_0x32fb20);}return _0x1e10e6[_0x1cce3f(0x4b9,0x460)](_0x314af4,_0x4cd627);},'jfSmX':function(_0x41d834,_0xb26063){return _0x41d834+_0xb26063;},'ddCNZ':_0x1e10e6[_0x5d66d9(0x17b,0x202)],'jjBkH':function(_0xc047bc,_0xdcc327){function _0x492699(_0x43a596,_0x28b1b9){return _0x5d66d9(_0x43a596-0x3fb,_0x28b1b9);}return _0x1e10e6[_0x492699(0x4a1,0x562)](_0xc047bc,_0xdcc327);},'yrUIM':_0x5d66d9(0x2e6,0x46f)};function _0x2e14fa(_0x2a8c44,_0x1598a2){return _0x33a33b(_0x2a8c44,_0x1598a2- -0x3a3);}if('JkNwU'!==_0x1e10e6['btgvu'])_0x1e10e6[_0x5d66d9(0x1dd,0x2c0)](_0xcf61b,_0x1e10e6['XsgtB'](_0x1e10e6[_0x5d66d9(0x1a6,0x373)],_0x58881d),_0x1e10e6[_0x2e14fa(0xf3,0x1be)]);else{let _0x3173d9=!![];return function(_0x1195fd,_0x213215){function _0x45582d(_0xa49ee9,_0x38b640){return _0x2e14fa(_0xa49ee9,_0x38b640-0x45a);}function _0x39c984(_0x239aba,_0x4e2277){return _0x2e14fa(_0x4e2277,_0x239aba-0x13d);}if(_0x4f7aab[_0x39c984(0x448,0x50f)](_0x45582d(0x85f,0x79c),_0x4f7aab[_0x45582d(0x777,0x7df)])){const _0x5c9dd1=_0x3173d9?function(){function _0x1955e4(_0x14d9b1,_0x27156b){return _0x39c984(_0x14d9b1- -0x18e,_0x27156b);}function _0x26da50(_0x31b8c1,_0x4b1a13){return _0x39c984(_0x4b1a13- -0x68,_0x31b8c1);}const _0x15d5ce={'uTbDf':function(_0x5af951,_0x1fcb29){function _0x314d65(_0x3e9cd1,_0x301044){return _0x1d2a(_0x301044-0x365,_0x3e9cd1);}return _0x4f7aab[_0x314d65(0x8c4,0x7d2)](_0x5af951,_0x1fcb29);}};if(_0x213215){if(_0x4f7aab[_0x26da50(0x370,0x21f)](_0x26da50(0x70,0x166),_0x1955e4(0x40,0x121)))_0x12af8d[_0x1955e4(0x2b7,0x199)](),_0x15d5ce[_0x26da50(0x5d,0xfc)](_0x58cc3e,!![]);else{const _0x310c80=_0x213215[_0x26da50(-0x2c,0x189)](_0x1195fd,arguments);return _0x213215=null,_0x310c80;}}}:function(){};return _0x3173d9=![],_0x5c9dd1;}else _0x1e4eb0[_0x45582d(0x522,0x6b1)]('⬡\x20Fai'+_0x45582d(0x56a,0x429)+'o\x20ope'+_0x39c984(0x23d,0x417)+_0x39c984(0x3ba,0x53b)+_0x2996ce[_0x45582d(0x786,0x60c)+'ge']),_0x24b606[_0x45582d(0x74b,0x6b1)](_0x4f7aab[_0x39c984(0x39b,0x1ea)](_0x4f7aab[_0x45582d(0x496,0x582)],_0x4033b7)),_0x4bb685['exit'](0x1f*0xc5+0x3e3+-0x1bbd);};}}());function _0x33a33b(_0x43fdff,_0x353c32){return _0x1d2a(_0x353c32-0x2d6,_0x43fdff);}const _0x7cd715=_0x1e10e6[_0x2d18b2(-0x56,0xbc)](_0xf7a0f5,this,function(){function _0x39464e(_0xa5065b,_0x474144){return _0x2d18b2(_0x474144,_0xa5065b-0x24a);}function _0x5665ae(_0x5e122e,_0x564a59){return _0x2d18b2(_0x564a59,_0x5e122e-0x47d);}if(_0x1e10e6[_0x39464e(0x98,0x3e)](_0x1e10e6[_0x5665ae(0x5d5,0x475)],_0x1e10e6[_0x39464e(0x22e,0x2c7)]))return _0x7cd715[_0x5665ae(0x3cf,0x23b)+'ing']()[_0x5665ae(0x3bd,0x384)+'h'](_0x5665ae(0x4db,0x627)+')+)+)'+'+$')[_0x5665ae(0x3cf,0x231)+_0x5665ae(0x4b0,0x5b3)]()[_0x39464e(0x54,0x11)+'ructo'+'r'](_0x7cd715)[_0x5665ae(0x3bd,0x464)+'h'](_0x1e10e6[_0x39464e(0x36e,0x3c4)]);else _0x1e10e6[_0x39464e(0x310,0x38f)](_0x22cc10,_0x1e10e6[_0x5665ae(0x3e3,0x348)],_0x39464e(0x2bb,0x3c1)+'gured');});_0x1e10e6[_0x33a33b(0x63b,0x4fd)](_0x7cd715);if(process.env.UPLINK_DATA_DIR)return process.env.UPLINK_DATA_DIR;if(_0x1e10e6[_0x33a33b(0x322,0x3bb)](process[_0x33a33b(0x6a0,0x532)+_0x2d18b2(-0x4a,-0x90)],_0x1e10e6[_0x2d18b2(-0x5,0x123)])){const _0xb68707=process.env.APPDATA||join(_0x2d64a3['homed'+'ir'](),_0x1e10e6[_0x2d18b2(-0x90,-0x11)],_0x1e10e6[_0x33a33b(0x79f,0x5be)]);return _0x1e10e6[_0x2d18b2(-0x111,0x36)](join,_0xb68707,_0x1e10e6['GVHDF']);}return _0x1e10e6[_0x33a33b(0x81a,0x649)](join,_0x2d64a3[_0x2d18b2(-0x158,-0x53)+'ir'](),_0x2d18b2(-0x1cc,-0x106)+'nk');}const DATA_DIR=resolveDataDir();try{const _0x3f579f={};_0x3f579f[_0x54d736(0x151,0x1ea)+_0x8643f1(0x27,0x5)]=!![],mkdirSync(DATA_DIR,_0x3f579f);}catch{}const PID_FILE=join(DATA_DIR,_0x54d736(0x1e6,0x192)+_0x54d736(0x454,0x3f5)+'d'),WATCHDOG_PID_FILE=join(DATA_DIR,_0x54d736(0x1e6,0x4d)+_0x54d736(0x203,0x90)+'tchdo'+_0x8643f1(-0x17a,-0x8)),WATCHDOG_STATE_FILE=join(DATA_DIR,'.upli'+_0x54d736(0x203,0x275)+'tchdo'+_0x54d736(0x80,-0x135)+'n'),args=process[_0x54d736(0x44b,0x612)][_0x54d736(0x3ab,0x22f)](-0x1561+-0x1*-0x8a5+0xcbe),command=args[-0x20+0x124f+-0x5*0x3a3]||_0x54d736(0x427,0x379),flags={};for(let i=-0xa5f*-0x2+-0x2*0xe7d+0x83c;i<args[_0x8643f1(-0x1f,0x130)+'h'];i++){args[i]===_0x54d736(0x35a,0x236)+'t'&&args[i+(0xb90+-0x1a2+0x4d*-0x21)]&&(flags[_0x54d736(0x143,0x211)]=parseInt(args[i+(-0x121e+0x3*0x4d2+0x3a9)],-0x1*0x2386+-0x12*0xa2+0x2ef4),i++),args[i]===_0x8643f1(-0x45,-0x80)+'t'&&(flags['host']=args[i+(-0xbad+-0x1*-0x1acd+-0xf1f)]||_0x8643f1(0x17b,0x1a4)+'.0',i++),(args[i]==='--hel'+'p'||args[i]==='-h')&&(flags[_0x54d736(0x236,0x2a2)]=!![]),(args[i]===_0x54d736(0xdf,-0x16)+_0x54d736(0x1a5,0x38e)||args[i]==='-v')&&(flags[_0x54d736(0x18f,0x33c)+'on']=!![]),(args[i]===_0x54d736(0x319,0x34a)+_0x8643f1(-0x8f,0x64)||args[i]==='-d')&&(flags[_0x8643f1(-0x15c,-0x14)+'h']=!![]),args[i]==='--no-'+'watch'+_0x8643f1(-0x31,-0xb2)&&(flags['noWat'+_0x54d736(0x95,0x16e)]=!![]),args[i]==='--lin'+'es'&&args[i+(0x5e*0x65+0x777*-0x2+-0x1627)]&&(flags[_0x8643f1(-0x129,-0x197)]=parseInt(args[i+(-0x2425*-0x1+0x138d+-0x37b1)],-0x1788+0x9c7*0x1+0x1*0xdcb),i++),args[i]===_0x8643f1(0xd9,0x45)+'t'&&(flags[_0x54d736(0x1a2,0x8e)]=!![]),args[i]===_0x54d736(0xe2,0xbb)+'h'&&(flags[_0x8643f1(-0xb1,-0x5b)]=!![]),(args[i]===_0x54d736(0xbc,-0x46)+'ce'||args[i]==='-f')&&(flags[_0x8643f1(-0xd9,-0x23b)]=!![]);}if(flags[_0x8643f1(0xc6,-0x130)+'on']){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x8643f1(-0x22,-0x8b)+_0x8643f1(0x1b2,0xb3)+'on'));console[_0x54d736(0x178,0x297)](_0x54d736(0x120,0x263)+'k-cha'+_0x54d736(0x3b7,0x5b0)+pkg[_0x8643f1(-0x251,-0x130)+'on']),process[_0x8643f1(0x5b,0x170)](0x2360+0x1224+-0x14*0x2ad);}flags['help']&&(console['log'](_0x54d736(0xea,-0xb7)+_0x8643f1(-0x1fb,-0xb1)+_0x8643f1(0x26a,0xaf)+_0x54d736(0x453,0x318)+_0x8643f1(-0x1ea,-0x4a)+_0x54d736(0x1ca,0x313)+'\x20Usag'+_0x8643f1(-0x139,0xb2)+'\x20\x20upl'+_0x8643f1(-0xb6,0x50)+_0x8643f1(-0x81,0xb9)+_0x8643f1(0x1ce,0x9a)+_0x54d736(0x1b3,0x41)+_0x8643f1(0x1a2,0x126)+_0x54d736(0x39f,0x3ee)+_0x54d736(0xa6,-0x131)+'mands'+':\x0a\x20\x20\x20'+_0x54d736(0x433,0x566)+_0x54d736(0x1da,0xb7)+'\x20\x20\x20St'+'art\x20t'+_0x8643f1(-0x131,0x3a)+_0x8643f1(0x240,0x112)+'serve'+_0x8643f1(-0x19a,0x13)+_0x8643f1(0x16,0x20)+')\x0a\x20\x20\x20'+'\x20stop'+_0x54d736(0x1c3,0x205)+'\x20\x20\x20St'+_0x54d736(0xc7,0x227)+_0x54d736(0x124,0x186)+_0x54d736(0x302,0x195)+_0x54d736(0x3d1,0x599)+'serve'+'r\x0a\x20\x20\x20'+_0x8643f1(-0xce,-0x182)+_0x8643f1(0xf1,-0xac)+_0x54d736(0x3b3,0x2c0)+_0x8643f1(-0x244,-0x215)+'f\x20Upl'+'ink\x20i'+_0x54d736(0xcb,-0x34)+_0x54d736(0x19c,-0x18)+_0x8643f1(-0x36a,-0x1ce)+_0x8643f1(0xab,0x15d)+_0x8643f1(-0x14e,-0xfc)+_0x54d736(0x28c,0xd4)+_0x54d736(0x182,0x2ef)+'ent\x20s'+'etup\x20'+'at\x20a\x20'+_0x54d736(0x3f5,0x3cb)+_0x54d736(0x1d2,0x2ec)+_0x8643f1(0xbe,-0x56)+_0x54d736(0x1c3,-0xf)+'\x20\x20\x20Ta'+_0x8643f1(-0x1f8,-0x145)+_0x8643f1(-0x135,-0x1a7)+_0x8643f1(0x1,-0x45)+_0x54d736(0xfe,0x290)+_0x54d736(0x156,0x18b)+_0x8643f1(0x1ab,0x8c)+_0x54d736(0x1d2,0x2d9)+'\x20conf'+_0x8643f1(0x266,0xf1)+_0x54d736(0x2d4,0x29a)+_0x8643f1(0x23d,0xeb)+_0x8643f1(0x4a,-0x3)+'\x20conf'+_0x54d736(0x389,0x472)+_0x8643f1(-0x212,-0x3d)+_0x8643f1(-0x3ef,-0x246)+_0x54d736(0x148,0x261)+_0x54d736(0x1c3,0x337)+_0x54d736(0x15b,0xf2)+_0x8643f1(-0x3bd,-0x20e)+'commo'+'n\x20iss'+_0x8643f1(-0x296,-0x167)+'\x20\x20\x20re'+_0x54d736(0x43a,0x632)+_0x8643f1(0xdb,-0xfc)+_0x8643f1(-0x1fa,-0x4e)+'\x20chat'+'\x20hist'+'ory\x20a'+_0x54d736(0x449,0x414)+_0x8643f1(0x170,0x57)+_0x8643f1(-0x128,-0x37)+_0x54d736(0x11d,-0x96)+_0x8643f1(0x8c,0x120)+'\x20\x20\x20\x20\x20'+'Updat'+'e\x20to\x20'+_0x54d736(0x309,0x158)+_0x8643f1(-0x24,-0xd3)+_0x8643f1(0x229,0x12e)+'ion\x0a\x20'+_0x8643f1(-0x44,-0x154)+_0x8643f1(0xb8,0x4b)+_0x54d736(0xb3,0x14e)+_0x54d736(0x32a,0x25c)+_0x54d736(0x1f0,0x131)+'r\x20and'+'\x20remo'+'ve\x20al'+_0x54d736(0x3a0,0x27a)+_0x54d736(0x116,0x15b)+_0x54d736(0x352,0x1cb)+'\x20\x20Opt'+'ions:'+'\x0a\x20\x20\x20\x20'+_0x54d736(0x35a,0x2f0)+_0x54d736(0x2e8,0x31c)+_0x8643f1(-0x2a2,-0xfc)+_0x8643f1(0xf,0x179)+_0x8643f1(-0x262,-0x8c)+_0x8643f1(-0x54,0x163)+_0x54d736(0x370,0x399)+_0x8643f1(-0x121,-0x1c5)+_0x54d736(0x3e8,0x242)+_0x8643f1(-0x23e,-0x1f6)+_0x54d736(0x2ed,0x212)+_0x54d736(0x25f,0x376)+'\x20H\x20\x20\x20'+_0x54d736(0x1c3,0x24e)+_0x8643f1(0x7c,0xd6)+_0x54d736(0x34d,0x442)+_0x54d736(0x464,0x3b3)+'\x20(def'+_0x54d736(0x36d,0x4a0)+'\x200.0.'+_0x8643f1(-0x392,-0x23e)+_0x8643f1(0xdb,0x2e)+_0x54d736(0x418,0x426)+_0x54d736(0x3ec,0x39d)+_0x54d736(0x2b9,0x3b0)+'Run\x20i'+'n\x20bac'+'kgrou'+_0x54d736(0x3b1,0x2e5)+'aemon'+_0x54d736(0x267,0x2e3)+_0x8643f1(-0x159,-0x17e)+_0x54d736(0xc6,-0xa6)+_0x8643f1(-0x28,-0x59)+'hdog\x20'+_0x54d736(0x2cf,0x2bb)+_0x8643f1(0xe4,0x176)+'out\x20a'+'uto-r'+_0x54d736(0x9f,0x14c)+_0x8643f1(-0x2f3,-0x138)+'chdog'+'\x0a\x20\x20\x20\x20'+_0x8643f1(-0x38e,-0x1e6)+_0x8643f1(0x38,-0x5)+'\x20\x20\x20\x20\x20'+_0x54d736(0x115,0x1c3)+_0x54d736(0x168,0x230)+_0x8643f1(0x2f6,0x10e)+_0x54d736(0x128,0x23)+'\x20to\x20s'+_0x54d736(0x333,0x2dd)+_0x8643f1(0x127,0x149)+_0x8643f1(-0xea,-0x19e)+_0x54d736(0x24a,0x437)+'50)\x0a\x20'+_0x8643f1(-0x1e0,0x8)+_0x54d736(0x3f7,0x391)+'\x20\x20\x20\x20\x20'+'\x20\x20\x20\x20O'+'pen\x20c'+'onfig'+_0x54d736(0x3b6,0x2a3)+_0x8643f1(0x59,-0x27)+'\x20(con'+_0x8643f1(0x14f,0x78)+_0x8643f1(0x52,0x2e)+'-path'+_0x8643f1(-0xf,-0xfc)+_0x54d736(0x1c3,0x30f)+'Print'+'\x20conf'+'ig\x20fi'+_0x8643f1(0xd5,0x30)+_0x8643f1(-0x64,-0x78)+_0x8643f1(-0x273,-0x22f)+')\x0a\x20\x20\x20'+_0x54d736(0x1cc,0x2c3)+'rce,\x20'+'-f\x20\x20\x20'+_0x8643f1(-0xb7,-0xc8)+_0x54d736(0x24b,0x18e)+_0x54d736(0x2e4,0x36e)+_0x54d736(0x368,0x3b3)+_0x54d736(0x159,0x318)+_0x54d736(0x2bd,0x404)+(_0x8643f1(-0x2d3,-0x230)+_0x8643f1(0x2b1,0xdf)+_0x54d736(0xdc,-0x4e)+_0x8643f1(0x56,-0xfc)+_0x54d736(0x1c3,0x37c)+'\x20Show'+_0x54d736(0x3ed,0x2c8)+'ion\x0a\x20'+_0x54d736(0x301,0x41f)+'\x20\x20\x20\x20\x20'+_0x54d736(0x1c3,0x2c2)+_0x8643f1(-0x25b,-0xf6)+_0x54d736(0xef,0x273)+_0x54d736(0x3ae,0x2cc)+_0x54d736(0x276,0x192)+'\x20\x20Exa'+_0x54d736(0x318,0x2d2)+':\x0a\x20\x20\x20'+_0x8643f1(-0x6,0x66)+_0x54d736(0x120,0x115)+'k-cha'+_0x54d736(0x1da,0x305)+_0x8643f1(0xd4,-0xfc)+_0x54d736(0x1c3,0x1f0)+_0x8643f1(-0x9f,-0x2e)+'\x20Star'+_0x8643f1(-0x1bc,-0xf9)+'defau'+_0x54d736(0x3eb,0x366)+_0x54d736(0xfb,-0x7a)+_0x54d736(0x94,-0x140)+_0x54d736(0x3c0,0x5b9)+_0x54d736(0x2eb,0x1a7)+_0x8643f1(-0x5b,-0x18f)+_0x8643f1(0x37a,0x18b)+'8080\x20'+_0x54d736(0x1c3,0x347)+_0x8643f1(0x38,0x148)+_0x8643f1(0xcf,0x117)+_0x8643f1(-0x11a,-0x134)+'\x208080'+'\x0a\x20\x20\x20\x20'+'npx\x20u'+_0x8643f1(-0x60,0x11f)+_0x8643f1(-0x1d4,-0x202)+'\x20stop'+_0x54d736(0x1c3,0xf9)+_0x8643f1(-0x2d9,-0xfc)+'\x20\x20\x20#\x20'+'Stop\x20'+_0x54d736(0x1de,0x7d)+_0x8643f1(-0x36,-0x21c)+'\x0a\x20\x20\x20\x20'+_0x54d736(0x147,0x19d)+_0x54d736(0x3de,0x5cc)+_0x54d736(0xbd,0x228)+_0x8643f1(0x72,-0xea)+_0x54d736(0x1c3,0x64)+_0x54d736(0x1c3,0x36b)+'\x20\x20\x20#\x20'+_0x8643f1(0x12f,0x3d)+'setup'+_0x8643f1(0xe1,-0xea)+'\x0a\x20\x20\x20\x20'+_0x54d736(0x147,0x230)+_0x8643f1(0x14f,0x11f)+_0x54d736(0xbd,0x12c)+_0x8643f1(-0x94,-0x56)+_0x8643f1(0x53,0x6)+_0x54d736(0xcf,0xb)+_0x8643f1(-0x6d,0x124)+'Tail\x20'+'last\x20'+_0x8643f1(0xf,0x119)+_0x54d736(0x146,0x196)+'nes\x0a\x20'+_0x54d736(0x169,-0x89)+_0x54d736(0x1b2,0x35f)+_0x54d736(0x30f,0x3f3)+_0x8643f1(0x1f8,0x11e)+_0x8643f1(-0x336,-0x22f)+_0x8643f1(-0x20a,-0x1f5)+_0x8643f1(0x77,-0x128)+_0x8643f1(-0x28,-0x15f)+'it\x20.e'+_0x54d736(0x1db,0x25f)+_0x54d736(0x43d,0x4f8)+'\x20edit'+'or\x0a\x20\x20'+_0x54d736(0x94,0x161)+_0x54d736(0x3c0,0x44f)+_0x54d736(0x2eb,0x2ba)+_0x8643f1(-0xb0,-0x206)+_0x54d736(0xd0,-0xf5)+'\x20\x20\x20\x20\x20'+'\x20\x20\x20\x20\x20'+_0x8643f1(0x314,0x1aa)+_0x8643f1(0x321,0x141)+'nosti'+_0x8643f1(-0x12d,-0x183)+_0x8643f1(-0x3e2,-0x22b)+_0x8643f1(0x1a5,0x101)+_0x54d736(0x2eb,0x26e)+_0x8643f1(0x53,-0x150)+_0x8643f1(-0x271,-0x1b5)+_0x54d736(0x1ae,0x206)+'e\x20\x20\x20\x20'+_0x54d736(0x284,0x125)+_0x8643f1(-0x1da,-0x1a8)+'ta\x20wi'+_0x54d736(0xd2,0x29a)+_0x8643f1(-0x7a,0x127)+_0x54d736(0x377,0x1d0))),process['exit'](-0x22ae+0x441*0x2+-0xa*-0x29e));function isRunning(_0x234ec8){const _0x1bd183={};_0x1bd183[_0x51fc81(0x3a2,0x4cc)]=_0x51fc81(0x34a,0x3af)+_0x1f1aa9(0x4f8,0x4ed)+'on',_0x1bd183[_0x1f1aa9(0x1fb,0x30e)]=function(_0x5171fe,_0x2de45b){return _0x5171fe!==_0x2de45b;};function _0x51fc81(_0x54eb85,_0x67dd9b){return _0x54d736(_0x67dd9b-0x17b,_0x54eb85);}function _0x1f1aa9(_0xadf685,_0x61a8a){return _0x54d736(_0x61a8a-0x17b,_0xadf685);}_0x1bd183['jHIyR']=function(_0x34e9cd,_0x3c0ab6){return _0x34e9cd===_0x3c0ab6;},_0x1bd183[_0x1f1aa9(0x387,0x471)]=_0x1f1aa9(0x485,0x54b),_0x1bd183[_0x51fc81(0x18e,0x2a8)]='PYbno',_0x1bd183[_0x51fc81(0x341,0x323)]=_0x1f1aa9(0x3c5,0x253);const _0x174bdc=_0x1bd183;try{if(_0x174bdc[_0x51fc81(0x4e5,0x4d6)](_0x174bdc[_0x51fc81(0x2d9,0x471)],_0x174bdc[_0x51fc81(0x240,0x2a8)])){delete _0x5e5fdf['cache'][_0x3d4149(_0x5113da,_0x174bdc[_0x1f1aa9(0x648,0x4cc)])];const _0x12bd63=_0x41b635(_0x811146(_0x10b7c8,_0x174bdc[_0x1f1aa9(0x42a,0x4cc)])),_0x26909d=_0x12bd63[_0x51fc81(0x3f2,0x30a)+'on'];_0x174bdc['MxEPc'](_0x26909d,_0x5be7e7)?_0xa42e07[_0x1f1aa9(0x383,0x2f3)](_0x51fc81(0x3b8,0x44c)+_0x51fc81(0x4f9,0x490)+_0x1f1aa9(0x620,0x45d)+_0x5a3447+'\x20→\x20v'+_0x26909d):_0x39df62[_0x51fc81(0x215,0x2f3)](_0x1f1aa9(0x6a,0x228)+_0x1f1aa9(0x14a,0x200)+_0x51fc81(0x4ed,0x5b9)+'he\x20la'+_0x51fc81(0x231,0x34e)+'versi'+_0x1f1aa9(0x5a1,0x495)+_0x5b2801+').');}else return process[_0x51fc81(0x5da,0x4f6)](_0x234ec8,-0x1*-0x21a4+0x7d2+-0xb7*0x3a),!![];}catch{if(_0x51fc81(0x1d4,0x253)!==_0x174bdc[_0x51fc81(0x302,0x323)])try{return _0x507a1a[_0x1f1aa9(0x408,0x4f6)](_0x3c2a73,0x1f98+-0x1*0x1009+-0xf8f*0x1),!![];}catch{return![];}else return![];}}function getPid(){const _0x3e49e2={'eSwym':function(_0x2052c2,_0x478905,_0x36df9b){return _0x2052c2(_0x478905,_0x36df9b);},'ouxoh':_0xc87fcd(0x59c,0x75e)+'ay\x20re'+_0xc87fcd(0x442,0x27d)+'le','oqupA':function(_0x490180,_0x515608){return _0x490180(_0x515608);},'fJoaq':function(_0x1160ff,_0x57ec5c,_0x4782ec){return _0x1160ff(_0x57ec5c,_0x4782ec);},'ZWizZ':function(_0x1c6dde,_0x2515eb){return _0x1c6dde(_0x2515eb);},'xeccf':function(_0x225eb3,_0x4c5ecb){return _0x225eb3===_0x4c5ecb;},'cQKuy':_0xc87fcd(0x62f,0x78f),'fioYg':_0xc87fcd(0x512,0x6aa)};if(!_0x3e49e2['oqupA'](existsSync,PID_FILE))return null;function _0x5b2d43(_0x491c5d,_0x2be935){return _0x54d736(_0x491c5d-0x22c,_0x2be935);}const _0x5b7017=_0x3e49e2['fJoaq'](parseInt,readFileSync(PID_FILE,_0xc87fcd(0x530,0x3ca))[_0x5b2d43(0x469,0x285)](),-0x17c8+-0x3db*0x2+0x1f88);if(_0x3e49e2['oqupA'](isNaN,_0x5b7017)||!_0x3e49e2[_0xc87fcd(0x50e,0x6b4)](isRunning,_0x5b7017)){try{_0x3e49e2[_0xc87fcd(0x78e,0x831)](_0x3e49e2[_0x5b2d43(0x4a3,0x377)],_0x3e49e2[_0x5b2d43(0x353,0x4f8)])?_0x3e49e2[_0x5b2d43(0x408,0x3dd)](_0x40bea2,_0x3e49e2[_0xc87fcd(0x65c,0x680)],_0x4bc967):_0x3e49e2['oqupA'](unlinkSync,PID_FILE);}catch{}return null;}function _0xc87fcd(_0x30741b,_0x9912f9){return _0x54d736(_0x30741b-0x39b,_0x9912f9);}return _0x5b7017;}function getWatchdogPid(){const _0x2ee237={'OAhwf':function(_0x426bd0,_0x22ac30){return _0x426bd0/_0x22ac30;},'KhQZH':function(_0x8f1202,_0x5ff0d){return _0x8f1202/_0x5ff0d;},'VmMdT':function(_0x3a4d33,_0x1fdefc){return _0x3a4d33%_0x1fdefc;},'uiuXg':function(_0x2ac972,_0x412a81){return _0x2ac972>_0x412a81;},'sobVj':function(_0x178a3a,_0x2312ff){return _0x178a3a%_0x2312ff;},'KxDIq':'Node.'+_0x321347(0x454,0x364)+'rsion','DobAt':function(_0x1e668c,_0x407111){return _0x1e668c(_0x407111);},'mtAwq':function(_0x1f2ac2,_0x38049e,_0x24b69a){return _0x1f2ac2(_0x38049e,_0x24b69a);},'Bjktq':_0x321347(0x161,0x25a),'axSUs':function(_0x4551b0,_0x41b466){return _0x4551b0(_0x41b466);},'KUXyw':function(_0x25dbc5,_0x725813){return _0x25dbc5(_0x725813);},'lwGUV':function(_0x2cdc87,_0x77049f){return _0x2cdc87!==_0x77049f;},'pMxvz':_0x321347(0x418,0x2ea),'uhxeY':function(_0x14e72e,_0x5b6e46){return _0x14e72e!==_0x5b6e46;},'XWmAz':_0x321347(0x12,0x1f8),'dbsVd':function(_0xb833d2,_0x598aa7){return _0xb833d2(_0x598aa7);}};if(!_0x2ee237[_0x321347(0x30b,0x391)](existsSync,WATCHDOG_PID_FILE))return null;function _0x3ff9ef(_0x366124,_0xce5537){return _0x8643f1(_0x366124,_0xce5537-0x44);}const _0x28586c=_0x2ee237[_0x3ff9ef(0x5d,0x40)](parseInt,readFileSync(WATCHDOG_PID_FILE,_0x2ee237[_0x3ff9ef(0x127,-0x4e)])['trim'](),0x186c+0x23f5+-0x10f*0x39);if(_0x2ee237[_0x321347(0x2cf,0x1d9)](isNaN,_0x28586c)||!_0x2ee237[_0x321347(0x509,0x387)](isRunning,_0x28586c)){if(_0x2ee237['lwGUV']('HzXck',_0x2ee237['pMxvz'])){try{if(_0x2ee237[_0x321347(0x464,0x44a)](_0x2ee237['XWmAz'],'EGvjA'))_0x2ee237[_0x321347(0x1f7,0x162)](unlinkSync,WATCHDOG_PID_FILE);else{const _0x2f24e6=_0x209679['floor'](_0x2ee237[_0x3ff9ef(-0x228,-0x60)](_0x5f4d8d,0x152f+0x2b*0xbf+0x41d*-0xc)),_0x4c7803=_0xb8660a['floor'](_0x2ee237[_0x3ff9ef(0x25,-0x60)](_0x2f24e6,-0x23d0+-0xf09+-0x5ad*-0x9)),_0x1543ae=_0x143373[_0x3ff9ef(-0x2e1,-0xe9)](_0x2ee237['KhQZH'](_0x4c7803,-0x61*0x3b+0x66*-0x59+-0x1*-0x3a0d)),_0x15b83e=_0x171d67[_0x3ff9ef(0x10b,-0xe9)](_0x2ee237[_0x321347(0x247,0x2e0)](_0x1543ae,0x1*-0x2149+0x1*-0x176+0x22d7));if(_0x15b83e>-0x4f*-0x65+0x2104+-0x402f*0x1)return _0x15b83e+'d\x20'+_0x1543ae%(0x2*-0xf91+-0x1738+0x3672)+'h\x20'+_0x4c7803%(0x417+-0x1b22+-0x1*-0x1747)+'m';if(_0x1543ae>-0xae3+-0x81c+-0x12ff*-0x1)return _0x1543ae+'h\x20'+_0x4c7803%(0x44c+-0xbf2*-0x1+-0x1002)+'m\x20'+_0x2ee237['VmMdT'](_0x2f24e6,-0x2197+-0x1*0x18dc+0x1*0x3aaf)+'s';if(_0x2ee237[_0x3ff9ef(-0x10d,-0x127)](_0x4c7803,-0xfb1+-0x18ab+0x285c))return _0x4c7803+'m\x20'+_0x2ee237[_0x3ff9ef(0x48,-0x16)](_0x2f24e6,0x395+-0x34f*-0x8+0x11*-0x1c1)+'s';return _0x2f24e6+'s';}}catch{}return null;}else _0x5a2f7d(_0x2ee237[_0x321347(0x374,0x3a6)],'v'+_0x50211d+(_0x3ff9ef(-0x25f,-0xc7)+_0x321347(0x20e,0x28c)+_0x3ff9ef(-0x3a6,-0x1e4)+'d)'));}function _0x321347(_0x1cd7bf,_0x34721f){return _0x8643f1(_0x1cd7bf,_0x34721f-0x384);}return _0x28586c;}function _0x83cf(){const _0x38cf1a=['tor\x20—','nYpmn','hat\x20c','plink','date\x20','ks\x20pa','ompan','\x0a\x20\x20Se','00\x20#\x20','l\x20cle','optio','\x20prom','l\x20NOT','lt:\x203','des','ble','lt\x20po','ch,\x20-','\x20vers','o\x20sto','lengt','\x20\x1b[32','tart\x20','k\x20Con','xeccf','reada','glanc','eDVbX','edit\x20','l\x20—\x20v','not\x20s','—\x20run','creat','dykna','toppe','AWeFI','ncHIf','\x20diag','ed:\x20\x20','file\x20','ssed','EisIB','ly:\x20','\x20for\x20','#\x20Sta','logs,','ailed','d\x20ser','ed.\x20N','AWVew','sync-','ken','HkymI','HbBiw','data','watch','unins','tbbFx','round','rzuQc','\x20\x20→\x20h','-deta','share','rver\x20','sages','nfo\x20\x20','k\x20ser','\x0a\x20\x20Ca','timeo','\x20to\x20r','⬡\x20Upl','isten','inclu','ation','found','opped','start','bGjbN','y\x20uni','⬡\x20Sto','cache','padEn','ZjvtW','//127','exit','necte','\x0a⬡\x20Wa','\x20\x20Thi','\x20star','\x20stop','\x20with','ime:\x20','Port\x20','\x20Port','\x20than','set\x20\x20','ID\x20','file','\x20your','\x20on\x20t','l\x20log','or\x20us','PI\x20ke','yrUIM','and\x20a','uVvEF','ning\x20','ver\x20f','logic','g.log','nd\x20lo','port\x20','argv','yjGWR','\x20data','denci','nQhxE','XHzka','\x20>=\x201','vLrmN','ocal\x20','nk.pi','pDZbB','\x20audi','\x20on\x20c','faile','stop','ynBOq','ovBKP','tCEXR','iwrls','toUpp','.\x20Run','stall','s\x20but','e:\x20\x20\x20','0.0.0','nd\x20to','NTIAL','ve\x20al','\x20\x20Typ','k\x20has','#\x20Run','info','\x20\x20Set','ch\x20','\x20\x20\x20\x20d','ROKdj','ver\x20P','strin','⬡\x20No\x20','\x20\x20✓\x20R','execP','g.jso','0.0)\x0a','..\x0a','mENMo','force','ready','ed\x20','\x0a\x20\x20Lo','\x20The\x20','node_','nning','\x1b[33m','led\x20t','mode)','kage.','eset)','onfig','push-','ated\x20','mine\x20','\x20\x20npx','chdog','in\x20us','quire','ed\x1b[0','destr','.json','once','anoth','dbsVd','\x20crea','estar','etect','iWfQG',':\x20\x20\x20\x20','erver','write','v,\x20co','\x20\x20Com','achab','\x20new\x20','re\x20\x22D','eck\x20i','nLabs','son','\x0a⬡\x20Al','subsc','\x20\x20Ser','\x0a\x20\x20Pr','nose\x20','4CwxoRm','ll\x20\x20\x20','Key','tall\x20','ttp:/','vAiiR','****','at\x20do','anual','premi','--for','-chat','m(con','pass','\x20@moo','\x20not\x20','.env','de.js','\x201\x202>','OFoHP','\x20--no','op\x20a\x20','e\x20by\x20','456)\x0a','\x20--ed','s\x20run','ge.','ffMs','10GVguyV','nes\x201','ctor\x20',':\x20upl','thout','40HaJmjX','updat','rJGSk','⬡\x20Cur','avail','Qfxzl','--lin','able\x20','MCsec','-v\x20\x20\x20','hdog\x20','tchdo','--ver','warn','GFJRj','--pat','resta','uTbDf','\x0a\x20\x20Da','fsphV','s/dir','rface','JkNwU','\x0a\x20\x20⬡\x20','(PID\x20','oSGYk','ocess','rtCou','how\x20t','\x20hist','\x20\x20\x20\x20i','audio','noWat','\x20and\x20','\x20warn','const','Sync','mode','et\x20in','defau','rt\x0a\x20\x20','abs\x20k','AY_TO','ogs\x20i','645323bqscjL','rPid','ig\x20--','ssage','ile)','now','join','OR\x20en','wiIWZ','size','\x0a\x20\x20Pa','set\x20-','\x20less','ing\x20U','ons','d\x20wat','INUSE','TTS\x20m','null\x20','woZHF','misse','axSUs','\x20Numb','ink\x20d','ar\x20da','e\x20ser','\x20pass','URtAq','ce\x20/v','er\x20pr','\x20\x20\x20up','\x0a\x20\x20','\x20\x20Not','uplin','\x20defa','enAI\x20','igure','runni','e...','rvRRc','fioYg','lines','ady\x20c','AppDa','561568OMLQtx','\x20/nob','THZHP','evenL','k\x20Uni','at\x20--','index','tBbOH','cLZXl','backg','ity.j','UnmJT','split','InxRt','not\x20d','PvRun','emove','cs\x0a\x20\x20','\x20stat','t\x20rea','eJXtU','alue',')\x0a\x20\x20\x20','\x20\x20Use','port','ignor','ink\x20(','og\x20li','npx\x20u','octor','compl','v\x20var','XNYIw','tions','host','lVVsW','ssing','space','recur','ink\x20w','GdbXd','uiuXg','ear\x20—','n\x20rea',')+)+)','ues\x0a\x20','promp','irst:','\x20Diag','cwd','\x20remo','\x20the\x20','3sdkhbP','\x20#\x20Ed','one.\x0a','⬡\x20Cre','ty\x20da','from\x20','ll\x20','ble)\x1b','TwUbC','er\x20of','\x20\x20\x20np','dSUgE','\x20\x20\x20un','\x20sync','actio','v\x20fil','at\x20re','reak\x20','apply','ll\x22\x20t','ZWizZ','gjxSX','eInte','c/img','IYCjo','log','for\x20r','il\x20th','.env.','/loca','any/u','d\x20dat','eServ','ng\x20(','r.js','\x20curr','p\x20Upl','d\x20log','s...\x20','d\x20in\x20','t\x20wat','LdMyg','\x0a\x20\x20No','KEsuz','\x20port','UMHHG','inher','logs','versi','activ','iYYzZ','floor','MxEPc','urati','utf8','map','it\x20\x20\x20','th:\x20u','\x20\x20Bac','\x20in\x20','\x20Stop','ning\x0a','Depen','2>&1','6274763qKOKHw','filte','zSFLV','edit','og\x20(P','d-mes','sion','gify','first','UWxiZ','bJaiP','elf\x0a','top','tarti','fuBYy','-forc','ath','max','xampl','x\x20upl','nd]\x20[','\x20(>=\x20','\x20cach','\x20\x20Aut','MDdeF','xaVfj','\x20DATA','and\x20c','dit\x20m','\x20Unin','n\x20edi','\x20\x20Wat','oonco','aldis','\x20inst','SIGTE','\x20\x20\x20\x20\x20','\x20watc','ion','t\x20on\x20','18\x20re','ists','\x20\x20\x20\x20S','at\x0a\x0a\x20','AY_UR','\x20--fo','ound.','sWith','ver\x20(','could','⬡\x20Upd','e\x0a\x20\x20\x20','test\x20','ree\x20—','\x20info','bbyfb','1:187','\x20\x20Cre','df\x20-k','t\x20\x20\x20\x20','nv\x20in','eSwym','not\x20b','the\x20s','hostn','\x20.env','tchin','⬡\x20Res','127.0','EADDR','ddCNZ','.upli','_DIR/','k\x20Doc','eeSpa','st:\x20\x20','ions\x20','atest','TSWaQ','pSLwB','\x20\x20\x20\x20','serve','PID\x20','k\x20whe','\x20chec','zuzSf','rver.','openS','\x20\x20Ski','ple\x20.','⬡\x20Aut','8\x20is\x20','\x20Remo','ink\x20s','erCas','able','n\x20npm','detai','Gatew','eacha','nk-wa','toLow','_API_','PASSW','vINlb','esSiz','red','d-con','I_API','ound\x20','dog','Uplin','to-re',',\x20PID','stdin','ve\x20ag','us\x20\x20\x20','UPLIN','l\x20con','rver:','Lgfiy','Yhziq','ncell','o\x20con','OAhwf','some','ey\x20—\x20','y/upl','epgWB','+C\x20to','ly\x20wi','GATEW','nks\x20f','yveeM','YVuZn','empty','.\x20Fre','rAaEe','_here','\x1b[32m','oMivG','searc','Bjktq','ne\x20wi','nd\x20me','\x0a\x20\x20⚠️\x20','on\x0a','at\x0a','\x20to\x20l','packa','ector','help','hing\x20','_modu','\x20\x20v','examp','r.log','ly:\x20n','trim','toStr','--hos','\x20Miss','\x20\x20Res','HOST','no\x20Op','QQdKX','\x20—\x20No','bally','th\x20(c','s\x20alr','t\x20sta','ult:\x20','p\x20con','platf','ing.','ete.','deter','s\x20are','(none','csrVd','duxxy','WxvET','push','TTS\x20A','xUCZr','pping','m\x20(PI','on:\x20\x20','\x20manu','orm','ay\x20re','QMMWY','-host','og\x20st','es\x20in','oncom','versa','path','sobVj','-watc','\x20mode','⬡\x20Ope','\x20logs','eNqnA','PID\x20f','emovi','lhost','meout','messa','hat\x20s','Clear','p\x20it\x20','art!','⬡\x20Fai','AI\x20Ch','elp\x0a\x0a','cQKuy','ripti','emGiW','ver\x20l','YdVsT','xZYPM','d)\x1b[0','ink\x20i','g\x20was','node','fstat','tion\x0a','liste','#\x20Cle','ons.j','stdou','102709DSVBMx','ata\x0a\x20','\x20or\x20e','log\x20e','.0.0.','\x20Show','y)\x1b[0','figur','\x1b[31m','PORT','\x20\x20\x20\x20#','\x20Chat','letel','WjIZf','link.','ile\x20f','\x20\x20✓\x20S','ditor','homed','s\x20and','docto','readl','parse','RfqZd','js\x20ve','659045trERIL','\x20\x20⬡\x20A','Node.','/upli','FqXVD','\x20been','sleep','d.\x20St','y:\x20','ync.j','code','detac','(Ctrl','th\x20wa','eady\x20','nstal','ine','||\x20ti','\x20comp','gSnyY','ame','ORD','runs.','g.pid','publi','d\x20\x20\x20\x20','es\x20N\x20','mtAwq','rrent','ts\x20(r','ay\x20to','rt\x20th','\x20Push','ouxoh','KUXyw','ved.\x0a','sive','\x20--li','⬡\x20.en','\x20\x20\x20--','tKwYC','DEYXa','\x20line','mzoMz','DobAt','er\x20ru','mpany','\x20\x20Run','BEZRJ','\x0a⬡\x20Up','r\x20(de','\x20npm\x20','\x20\x20\x20Sh','ng\x20np','\x20/t\x201','xLVWv','jVWOd','\x20\x20Sto','GET','APiyc','setsi','evice','(serv','fault','K_HOS','KxDIq',':\x20v','\x20unin','firma','reset','\x20-g\x20@','env','t\x20N\x20\x20','ted\x20w','\x20runn','nk-ch','hed','\x20\x20\x20\x20-','media','le\x20pa','ent\x20a','\x20PID:','\x20\x20\x20\x20•','OPENA','ta\x20di','k-cha','MthjC','XjURM','(empt','he\x20Up','Value','backo','Show\x20','\x20EDIT','ies','SIGIN','OEdPK','\x20\x20\x20-h','ng\x20Up','Disk\x20','--edi','ted\x20t','ID=\x27','ync','dPPbZ','the\x20l','insta','GxtPZ','firm:','hwFDb','g\x20for','ink-c','dog.j','fcDIL','et\x20Fr','\x20MB\x20f','error','dated','cal\x20d','reque','mples','--det','on\x20(v','jfSmX','KEN','d\x20.en','led)','ing','disk\x20','nfig\x20','UkXJq','ach','\x20\x20✗\x20F','\x20npx\x20','es\x20mi','art','s\x20not','WxRWe','Stop\x20','charA','pAxem','uploa','RROvm','nk-se','\x20sets','s\x20fro','\x20(.en','how\x20(','rt\x20--','✗\x1b[0m','sh\x20st','fig)\x0a','koff:','o\x20rea','tor:\x20','LzvHv','s\x20wil','ZNBbY','GJkcx','l\x20upl','outpu','oWhsq','TOKEN','\x0a⬡\x20Re','notep','win32','k\x20Res','to\x20cl','nd\x20wa','which','(((.+','l\x20tim','.env\x20','to\x20bi','xvBln','stdio','.\x20👋\x0a','hneSm','ata\x0a\x0a','pid','he\x20la','teway','KEY','es\x20ex','A_DIR','comma','--por','jHIyR','e\x20und','confi','\x20(PID','\x20\x20Tha','mzQfM','stopp','\x20alre','QUKrq','g\x20@mo','label','repea','ally:','tion\x20','o\x20ope','e\x20glo','atchd','\x20\x20⚠️\x20\x20','ault:','k\x20—\x20L','ing\x20m','\x20on\x20(','e:\x0a\x20\x20','ge.js','nano','quest','set\x22\x20','he\x20se','pt\x0a\x20\x20','hat\x20[','e\x20is\x20','#\x20Upl','kill','cking','WLrDT',':\x27\x22\x20g','\x20\x20\x20\x20v','wing\x20','qpDTh','o\x20fil','tarts','[0m','uhxeY','exist','.0.1','⬡\x20Sho','igura','\x22\x20|\x20t','\x20\x20Upt','\x20limi','o-res','...\x0a','ELEVE','ning','files','\x20node','eJiwM','npm\x20u','Host\x20','WkGau','nuBVZ','\x20enab','modul','copy\x20','This\x20','obvjE','ges-s','\x0a\x20\x20\x20\x20','ns]\x0a\x0a','l\x20Upl','/dev/','c/aud','art\x20m','on:\x20v','k\x20Inf','KFYDn','\x20\x20Log','gYveF','statu','ow\x20cu','slice','end','the\x20e','his\x20h','ay\x20be','ig\x20\x20\x20','nd\x20(d','oUprH','\x20\x20\x20Ch','ng\x1b[0','\x20—\x20ru','\x20in\x20e','t\x20v','\x20Fail','UqZGM','\x20item','moonc','tall','ntrie','metho','gured','\x20upli','BugDC','1505844aTBeio','fail','DHqjw','close','othin','\x20\x20Sta','jjBkH','JqrYU','last\x20','3456','direc','\x20log\x20','Versi','4967919udZDPj','Ipizv','link\x20','\x20conf','rent\x20','...','ctivi','rt\x20on','POMPE','100\x20l','\x20clea','ed,\x20'];_0x83cf=function(){return _0x38cf1a;};return _0x83cf();}function getWatchdogState(){function _0x46e6f1(_0x3452cc,_0x1d84e7){return _0x8643f1(_0x3452cc,_0x1d84e7-0x28d);}const _0x1fd156={'hwFDb':function(_0x364598,_0x4ab8a6){return _0x364598(_0x4ab8a6);},'rzuQc':function(_0x5f0747,_0x97fe8f){return _0x5f0747===_0x97fe8f;},'SIusd':_0x59c379(0x100,0x116),'IHNpx':function(_0x1199fc,_0x59d67b,_0x4cf3f9){return _0x1199fc(_0x59d67b,_0x4cf3f9);},'ROKdj':_0x59c379(-0x71,0xd),'bYQfs':'zvjAV','zuzSf':_0x46e6f1(0x317,0x158)};if(!_0x1fd156[_0x46e6f1(0x362,0x2db)](existsSync,WATCHDOG_STATE_FILE))return null;function _0x59c379(_0x1168f9,_0x418a6b){return _0x8643f1(_0x1168f9,_0x418a6b-0x137);}try{if(_0x1fd156[_0x46e6f1(0x23c,0x3e4)](_0x1fd156['SIusd'],_0x59c379(0x2bb,0x116)))return JSON['parse'](_0x1fd156['IHNpx'](readFileSync,WATCHDOG_STATE_FILE,_0x1fd156[_0x59c379(-0x223,-0x10e)]));else try{const _0xd4629={};_0xd4629['recur'+_0x46e6f1(0x166,0x292)]=!![],_0xd4629[_0x46e6f1(0x19e,0x52)]=!![],_0x1a0916(_0x14959d,_0xd4629),_0x436ff0++,_0x55fa65[_0x46e6f1(0x1dd,0x146)](_0x59c379(0x19,-0x10a)+_0x59c379(-0xff,-0x4d)+'d\x20'+_0x1b88e2);}catch(_0x34cdbd){_0x480c3d[_0x59c379(0x13b,0x18c)]('\x20\x20✗\x20F'+_0x59c379(0x222,0x281)+_0x59c379(0x1e4,0x298)+_0x59c379(0x3d,-0x4d)+'\x20'+_0x258257+':\x20'+_0x34cdbd[_0x59c379(0x171,0xe7)+'ge']);}}catch{if(_0x1fd156[_0x46e6f1(0x34a,0x3e4)](_0x1fd156['bYQfs'],_0x1fd156[_0x46e6f1(0x2e8,0x1c2)]))_0x91acaa[_0x46e6f1(0x29d,0x393)](),_0x4b7404[_0x59c379(0x2db,0x2a7)](-0x1a95*0x1+0x1bf*0x1+0x18d6);else return null;}}function formatUptime(_0x381f1f){const _0x4e7678={};_0x4e7678[_0x33a32e(-0xe2,-0xc7)]=function(_0x3b55d5,_0x3ed90f){return _0x3b55d5/_0x3ed90f;};function _0x4c70ce(_0x26705d,_0x153ebc){return _0x54d736(_0x153ebc- -0x2cc,_0x26705d);}_0x4e7678['xaVfj']=function(_0x49a344,_0x34f421){return _0x49a344/_0x34f421;},_0x4e7678['ZjvtW']=function(_0x45885c,_0x3c5a2b){return _0x45885c/_0x3c5a2b;},_0x4e7678[_0x33a32e(-0x1a,-0xd0)]=function(_0x52e348,_0x5edb2b){return _0x52e348>_0x5edb2b;},_0x4e7678[_0x4c70ce(0x20,-0x6e)]=function(_0x4fe304,_0x2bfda1){return _0x4fe304%_0x2bfda1;},_0x4e7678[_0x4c70ce(-0x358,-0x179)]=function(_0x31ea00,_0x4bf0a7){return _0x31ea00%_0x4bf0a7;},_0x4e7678[_0x4c70ce(-0xa7,-0x19)]=function(_0x354dbd,_0x4fbf43){return _0x354dbd%_0x4fbf43;};const _0x3d6821=_0x4e7678,_0x580653=Math['floor'](_0x3d6821[_0x4c70ce(0x22e,0x45)](_0x381f1f,-0x1*-0x2531+-0x1*-0x125e+-0x33a7)),_0x10a3cd=Math['floor'](_0x580653/(-0x231a*0x1+0x14f0+0x733*0x2)),_0x27dcd3=Math[_0x33a32e(-0x246,-0x246)](_0x3d6821[_0x33a32e(-0xf1,-0x220)](_0x10a3cd,-0x411*0x4+-0x6da+0x175a)),_0x3a89ad=Math['floor'](_0x3d6821[_0x4c70ce(0x19f,0x161)](_0x27dcd3,-0xf4*0x8+-0x263d*-0x1+-0x1*0x1e85));function _0x33a32e(_0x378af8,_0x149020){return _0x54d736(_0x149020- -0x3d8,_0x378af8);}if(_0x3d6821[_0x4c70ce(-0xb8,0x3c)](_0x3a89ad,-0x969*-0x2+0x143e+0x8*-0x4e2))return _0x3a89ad+'d\x20'+_0x3d6821[_0x4c70ce(-0xde,-0x6e)](_0x27dcd3,0x2465+0x441+-0x288e)+'h\x20'+_0x3d6821['GdbXd'](_0x10a3cd,0x589+-0x15bf+0x1072)+'m';if(_0x3d6821[_0x4c70ce(-0xea,0x3c)](_0x27dcd3,0x1*-0x8f3+-0x224+0xb17))return _0x27dcd3+'h\x20'+_0x3d6821[_0x33a32e(-0x1f,-0x125)](_0x10a3cd,0x849*0x1+-0x1e4f+-0xb*-0x206)+'m\x20'+_0x3d6821[_0x33a32e(-0x9e,-0x17a)](_0x580653,0x142+-0x2561+0x245b*0x1)+'s';if(_0x10a3cd>-0x65b+0xb*-0x284+-0x1*-0x2207)return _0x10a3cd+'m\x20'+_0x580653%(-0x2*0x139+0x1ff7+-0x1d49)+'s';return _0x580653+'s';}if(command===_0x8643f1(0x2b,0x19a)){const watchdogPid=getWatchdogPid();if(watchdogPid){try{process['kill'](watchdogPid,_0x8643f1(-0x110,-0xfd)+'RM'),console[_0x54d736(0x178,0x85)](_0x54d736(0x421,0x3b7)+_0x54d736(0x152,0x1df)+'atchd'+_0x54d736(0x260,0x21c)+_0x54d736(0x426,0x251)+'\x20(PID'+'\x20'+watchdogPid+').');try{unlinkSync(WATCHDOG_PID_FILE);}catch{}try{unlinkSync(PID_FILE);}catch{}}catch(_0x1c28c5){console[_0x8643f1(-0x74,0x55)]('⬡\x20Fai'+_0x8643f1(-0x31e,-0x233)+_0x54d736(0x3ee,0x431)+_0x54d736(0x183,0x35)+_0x54d736(0x152,0x54)+_0x8643f1(-0x68,0xac)+_0x8643f1(0xa2,-0x11c)+_0x8643f1(0x75,0x17c)+watchdogPid+'):',_0x1c28c5[_0x54d736(0x26f,0x188)+'ge']),process[_0x8643f1(0x4d,0x170)](0x2*-0xaf9+-0x1c38+0x322b);}process[_0x54d736(0x42f,0x34e)](0xca6+-0x15*-0xbe+-0x8b*0x34);}const pid=getPid();!pid&&(console[_0x8643f1(-0x2c,-0x147)](_0x54d736(0x421,0x4ea)+_0x8643f1(0x84,-0x41)+_0x54d736(0x328,0x251)+'\x20runn'+_0x54d736(0x24d,0x231)),process[_0x8643f1(0x14b,0x170)](0x134d*-0x2+-0x1920+-0x6*-0xa9f));try{process['kill'](pid,'SIGTE'+'RM'),console[_0x8643f1(-0x56,-0x147)](_0x8643f1(-0x6d,0x162)+_0x54d736(0x1fc,0x12e)+_0x54d736(0x3fd,0x4c4)+'d\x20(PI'+'D\x20'+pid+').');try{unlinkSync(PID_FILE);}catch{}}catch(_0x2a5e70){console[_0x8643f1(-0x39,0x55)](_0x54d736(0x274,0x2d6)+_0x54d736(0x8c,0x1ae)+_0x54d736(0x3ee,0x4bf)+_0x8643f1(-0xc2,-0x13c)+_0x8643f1(-0x12b,-0x17a)+_0x54d736(0x1f1,0x4f)+pid+'):',_0x2a5e70[_0x54d736(0x26f,0x35b)+'ge']),process['exit'](0x81*-0x4a+-0x7*0x589+0x4c0a*0x1);}process['exit'](0x2bd*0x2+0x2*-0xdf1+-0x18*-0xef);}if(command===_0x54d736(0xd4,0x1d5)+'e'){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x54d736(0x234,0x32a)+_0x8643f1(-0x88,0xb3)+'on')),currentVersion=pkg['versi'+'on'];console[_0x8643f1(-0x1d0,-0x147)](_0x8643f1(-0x134,-0x1e9)+_0x8643f1(0x29b,0x114)+'versi'+_0x8643f1(0x1f4,0xe5)+currentVersion),console[_0x54d736(0x178,-0xc)]('⬡\x20Che'+_0x54d736(0x37c,0x3d5)+_0x54d736(0x406,0x412)+'updat'+'es...'+'\x0a');const wasRunning=!!(getWatchdogPid()||getPid());if(wasRunning){console[_0x8643f1(-0x258,-0x147)](_0x54d736(0x42a,0x55c)+_0x8643f1(0x31,-0x67)+'\x20Upli'+'nk\x20be'+'fore\x20'+_0x8643f1(-0x35,-0x1eb)+_0x54d736(0x125,0x11));const watchdogPid=getWatchdogPid(),serverPid=getPid(),pidToKill=watchdogPid||serverPid;try{process[_0x54d736(0x37b,0x456)](pidToKill,'SIGTE'+'RM');try{unlinkSync(WATCHDOG_PID_FILE);}catch{}try{unlinkSync(PID_FILE);}catch{}const _0x16570f={};_0x16570f[_0x8643f1(0xf2,0x90)]=_0x8643f1(0x78,-0x17b)+'e',execSync(_0x8643f1(-0x1dd,-0x19)+_0x54d736(0xc4,-0xcd)+_0x54d736(0x3a1,0x2c2)+_0x8643f1(-0x170,-0x1ae)+_0x8643f1(-0x1b5,-0xe)+_0x54d736(0x26e,0x182)+_0x54d736(0x2d6,0xde)+_0x8643f1(-0x14,-0x193)+_0x8643f1(-0x224,-0x14f)+'>nul\x20'+_0x54d736(0x19e,0x136),_0x16570f);}catch{}}try{console[_0x54d736(0x178,0xec)](_0x8643f1(-0xa8,-0xee)+'ating'+_0x54d736(0xc0,0x100)+'ncomp'+_0x8643f1(-0x11e,-0x142)+_0x54d736(0x3de,0x323)+_0x54d736(0xbd,0x25d)+_0x8643f1(0x1,0xcf));const _0x2beda3={};_0x2beda3['stdio']=_0x54d736(0x18d,0x281)+'it',execSync('npm\x20u'+'pdate'+_0x54d736(0x2e6,0x3f7)+_0x8643f1(0x221,0xfc)+_0x54d736(0x3e1,0x21e)+_0x54d736(0x21e,0xa5)+_0x8643f1(0x12a,0x50)+'hat',_0x2beda3);}catch(_0x4971c6){console[_0x8643f1(0x236,0x55)](_0x54d736(0x2d1,0x341)+_0x8643f1(-0x14,0x120)+'faile'+'d:',_0x4971c6[_0x54d736(0x26f,0x16b)+'ge']),console[_0x8643f1(-0x79,0x55)]('\x20\x20Try'+_0x54d736(0x2ea,0x317)+_0x8643f1(0x45,0xb0)+_0x8643f1(-0x9c,-0x205)+_0x54d736(0x23c,0x199)+'pm\x20up'+_0x54d736(0x3df,0x3bd)+'-g\x20@m'+_0x54d736(0x1bf,0x171)+_0x54d736(0x2ce,0x10f)+_0x54d736(0x2a3,0x17f)+_0x8643f1(-0x54,0x2c)+'at');if(wasRunning){console[_0x8643f1(-0x14f,-0x147)](_0x8643f1(0x266,0x84)+_0x8643f1(0xbf,0x168)+_0x54d736(0x10c,-0xdb)+_0x54d736(0x3de,0x1fd)+_0x8643f1(0xd,0x115));const _0x2da06c={};_0x2da06c[_0x54d736(0x34f,0x4d3)]=_0x54d736(0x18d,0x5b)+'it',execSync(_0x8643f1(-0x172,-0x19f)+_0x54d736(0x2f5,0x3a1)+_0x8643f1(0x1b,-0x76)+_0x8643f1(-0x4c,0x75)+_0x8643f1(0xca,-0x14)+'h',_0x2da06c);}process[_0x54d736(0x42f,0x3ea)](-0x93a*0x3+-0xe8f*0x1+-0x2*-0x151f);}try{delete require[_0x8643f1(0x252,0x16c)][join(ROOT,_0x8643f1(0x137,-0x8b)+'ge.js'+'on')];const newPkg=require(join(ROOT,_0x8643f1(-0x75,-0x8b)+'ge.js'+'on')),newVersion=newPkg[_0x8643f1(-0xd3,-0x130)+'on'];newVersion!==currentVersion?console[_0x54d736(0x178,0x170)]('\x0a⬡\x20Up'+_0x8643f1(0x31,0x56)+_0x54d736(0x2e2,0x1db)+currentVersion+'\x20→\x20v'+newVersion):console[_0x54d736(0x178,0x301)](_0x54d736(0xad,-0x28)+'ready'+_0x8643f1(0x3a,0x17f)+_0x54d736(0x354,0x3a6)+_0x8643f1(0xf5,-0xec)+_0x54d736(0x18f,0x108)+'on\x20(v'+currentVersion+').');}catch{console[_0x8643f1(-0x16f,-0x147)](_0x54d736(0x2d1,0x28b)+'date\x20'+_0x54d736(0x149,0x1dd)+_0x54d736(0x24e,0x37d));}if(wasRunning){console[_0x54d736(0x178,0x35c)]('⬡\x20Res'+_0x8643f1(-0x88,-0x113)+_0x54d736(0x302,0x481)+_0x54d736(0x295,0x2f2)+'..');try{const _0x25a117={};_0x25a117[_0x8643f1(0x23c,0x90)]=_0x54d736(0x18d,-0x44)+'it',execSync(_0x54d736(0x120,0x186)+_0x54d736(0x2f5,0x1de)+_0x54d736(0x249,0x198)+'rt\x20--'+_0x8643f1(-0x20b,-0x14)+'h',_0x25a117);}catch{console['log'](_0x8643f1(0x8,-0xc6)+_0x54d736(0x38d,0x205)+_0x54d736(0x3f1,0x444)+_0x54d736(0x458,0x4c8)+'d.\x20St'+_0x8643f1(0xdb,0xe4)+'anual'+_0x8643f1(-0x17d,-0x9e)+_0x8643f1(-0x21c,-0x127)+_0x8643f1(0x260,0x11f)+'-chat'+_0x54d736(0x433,0x5b0)+'t');}}process[_0x8643f1(0x68,0x170)](-0x1d50+-0x8b6+-0x1f*-0x13a);}if(command===_0x54d736(0x3a9,0x421)+'s'){const watchdogPid=getWatchdogPid(),state=getWatchdogState();if(watchdogPid&&state){const uptime=formatUptime(Date[_0x54d736(0x104,0x2e6)]()-state['start'+'edAt']);console[_0x54d736(0x178,-0x4f)](_0x54d736(0x421,0x3d3)+'ink\x20i'+_0x54d736(0xcb,-0xb9)+_0x54d736(0x445,0x4be)+'(watc'+'hdog\x20'+_0x54d736(0x8d,-0x93)),console[_0x8643f1(-0x1b5,-0x147)](_0x54d736(0x1be,0x2e6)+'chdog'+_0x54d736(0x2f1,0x1d0)+'\x20'+watchdogPid);if(state[_0x54d736(0x1f0,0x23c)+_0x8643f1(-0x49,-0x1bf)])console['log'](_0x54d736(0xaf,-0x22)+_0x8643f1(-0x22c,-0x244)+'ID:\x20\x20'+'\x20'+state['serve'+'rPid']);console[_0x8643f1(0x30,-0x147)](_0x8643f1(0x1dd,0xcc)+_0x54d736(0x436,0x261)+_0x8643f1(-0x258,-0xfc)+'\x20'+uptime),console['log'](_0x8643f1(0x34,-0x7e)+'tarts'+_0x8643f1(-0x2e9,-0x21d)+'\x20'+(state[_0x8643f1(-0x39c,-0x1dc)+_0x8643f1(-0xba,-0x1d1)+'nt']||0x689+0x6c1+-0xd4a));if(state['backo'+'ffMs']>0x207f+0x1*-0x1f81+0x2ea)console[_0x54d736(0x178,0x5d)](_0x54d736(0x199,0x1cf)+_0x54d736(0x338,0x42b)+'\x20\x20\x20\x20\x20'+'\x20'+state[_0x54d736(0x2fb,0x23f)+_0x8643f1(-0x37,-0x1f2)]+'ms');}else{const pid=getPid();pid?console[_0x8643f1(-0xc7,-0x147)]('⬡\x20Upl'+'ink\x20i'+_0x8643f1(-0x3,-0x1f4)+_0x8643f1(0x12d,0x186)+'(PID\x20'+pid+').'):console[_0x8643f1(-0x103,-0x147)](_0x8643f1(0x256,0x162)+'ink\x20i'+_0x8643f1(-0xbb,0x69)+'\x20runn'+_0x8643f1(-0x147,-0x72));}process[_0x8643f1(0x14b,0x170)](0x150a+0x25f0+0x2*-0x1d7d);}if(command===_0x54d736(0x413,0x558)+_0x8643f1(0x1fc,0xfd)){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x54d736(0x234,0x90)+'ge.js'+'on')),readline=await import('readl'+_0x54d736(0x2b0,0x2ec)),{rmSync}=await import('fs');console[_0x54d736(0x178,0x2ba)](_0x8643f1(-0x41,-0x1d5)+'Uplin'+_0x8643f1(-0x166,-0x190)+_0x54d736(0x2af,0xc0)+_0x8643f1(-0xa3,0x139)+pkg[_0x8643f1(0x49,-0x130)+'on']+'\x0a'),console[_0x54d736(0x178,0x13f)](_0x8643f1(0x16c,0x173)+_0x54d736(0x33c,0x188)+'l:'),console['log'](_0x54d736(0x2f2,0x372)+_0x8643f1(-0xdd,-0x124)+_0x54d736(0x15e,0x2ae)+_0x8643f1(-0x6c,-0xb1)+_0x8643f1(0x162,0x15e)+'ver\x20a'+_0x54d736(0x348,0x386)+_0x8643f1(-0x285,-0x1e1)+'g'),console[_0x54d736(0x178,0x348)](_0x54d736(0x2f2,0x329)+_0x8643f1(-0x278,-0xc4)+_0x54d736(0x466,0x392)+_0x54d736(0x215,0x8b)+_0x54d736(0x28e,0x449)+_0x8643f1(0x1a1,0x165)+_0x8643f1(0x14c,0x73)+_0x54d736(0xa5,-0x3d)+_0x8643f1(0xa5,0x62)+_0x54d736(0x391,0x3b6)+')'),console[_0x8643f1(-0x169,-0x147)](_0x8643f1(0x155,0x33)+_0x54d736(0x1fb,0x2e2)+_0x8643f1(0x2aa,0x1a7)+_0x8643f1(0x20c,0x80)+'oads\x20'+_0x8643f1(-0xe7,-0x105)+'ached'+'\x20data'),console[_0x8643f1(-0x12f,-0x147)]('\x20\x20\x20\x20•'+_0x8643f1(0x59,-0xc4)+_0x54d736(0x466,0x462)+_0x54d736(0x43f,0x36d)+_0x8643f1(0x8b,-0x25)+'\x20PID\x20'+_0x54d736(0x391,0x465)),console[_0x54d736(0x178,-0x9)](_0x8643f1(0x83,0x33)+_0x8643f1(0x4d,-0xc4)+_0x8643f1(0x22,-0xad)+_0x54d736(0x2f0,0x472)+'vatar'+_0x8643f1(0x125,-0x25)+_0x8643f1(0x6d,0x197)+_0x54d736(0x382,0x342)+'es'),console[_0x8643f1(0x5a,-0x147)](_0x54d736(0x2f2,0x29a)+_0x8643f1(-0x85,-0x103)+_0x8643f1(0x1a5,0x1a1)+_0x54d736(0x15e,0x27c)+'npm\x20p'+'ackag'+_0x8643f1(0x158,0xab)+_0x8643f1(0xa6,-0x79)+'\x0a'),console[_0x8643f1(-0x1f1,-0x147)](_0x8643f1(-0x4,0xad)+_0x8643f1(0x64,0xdc)+_0x54d736(0x16d,0x28e)+'n\x20can'+_0x8643f1(-0x289,-0xe2)+_0x8643f1(0x25,0x9d)+_0x8643f1(-0x203,-0x15e));const _0x16dd8e={};_0x16dd8e['input']=process['stdin'],_0x16dd8e[_0x8643f1(0x11f,0x81)+'t']=process[_0x54d736(0x286,0x284)+'t'];const rl=readline[_0x54d736(0x3fb,0x26a)+'eInte'+_0x8643f1(-0x6c,-0x1d7)](_0x16dd8e),answer=await new Promise(_0x47b65a=>{function _0x4ec6ef(_0x4a98ca,_0x3dfa20){return _0x8643f1(_0x4a98ca,_0x3dfa20-0x16a);}function _0x4f6d30(_0x35dc76,_0x66a70e){return _0x8643f1(_0x66a70e,_0x35dc76-0x61d);}const _0x78731b={};_0x78731b[_0x4ec6ef(0x214,0x23e)]=_0x4ec6ef(0x2dd,0x312)+'e\x20\x22un'+_0x4f6d30(0x668,0x524)+_0x4f6d30(0x4d0,0x4e6)+_0x4ec6ef(0x231,0xc5)+_0x4ec6ef(0x32a,0x1b7)+'\x20';const _0x5924b2=_0x78731b;rl[_0x4ec6ef(0x404,0x21f)+_0x4f6d30(0x523,0x3a9)](_0x5924b2['eJiwM'],_0x47b65a);});rl[_0x8643f1(0x2dc,0x106)]();answer['trim']()['toLow'+'erCas'+'e']()!==_0x8643f1(0x2d9,0x154)+_0x54d736(0x3bc,0x23c)&&(console[_0x8643f1(-0x232,-0x147)](_0x8643f1(0x2ff,0x15f)+'ncell'+_0x8643f1(0xe8,0x14c)+_0x8643f1(0x2b6,0x107)+_0x8643f1(-0x219,-0x40)+'\x20remo'+_0x54d736(0x2c3,0x451)),process['exit'](0x2504+-0x1*-0x847+-0x2d4b));console['log']('');const watchdogPid=getWatchdogPid(),serverPid=getPid();if(watchdogPid)try{process[_0x54d736(0x37b,0x1d6)](watchdogPid,'SIGTE'+'RM'),console[_0x54d736(0x178,-0x58)]('\x20\x20✓\x20S'+'toppe'+_0x8643f1(0x2c,-0x1b1)+_0x8643f1(-0x39e,-0x22a)+_0x8643f1(-0x5,0x9f)+'\x20'+watchdogPid+')');}catch{}if(serverPid)try{process[_0x8643f1(0x216,0xbc)](serverPid,_0x8643f1(-0x1e4,-0xfd)+'RM'),console['log'](_0x54d736(0x297,0x405)+'toppe'+_0x54d736(0x40a,0x56b)+_0x8643f1(-0x72,-0xf0)+_0x54d736(0x1f1,0x2cb)+serverPid+')');}catch{}!watchdogPid&&!serverPid&&console['log'](_0x8643f1(-0xa4,-0x28)+_0x54d736(0xa3,0x20)+_0x8643f1(-0x3af,-0x1fe)+_0x54d736(0x124,0x51)+'ng');const legacyToRemove=[_0x54d736(0xc2,0x80),_0x8643f1(0xb4,0x9e)+'g.jso'+'n',_0x54d736(0x1e6,0x321)+'nk.pi'+'d',_0x8643f1(-0x289,-0xd9)+'nk-wa'+'tchdo'+_0x8643f1(0x10a,-0x8),_0x8643f1(-0x206,-0xd9)+_0x54d736(0x203,0x97)+'tchdo'+_0x8643f1(-0x41e,-0x23f)+'n',_0x8643f1(0xf7,-0xd9)+'nk-wa'+_0x8643f1(-0x220,-0x1e1)+_0x8643f1(0x309,0x189),_0x54d736(0x1e6,0x36d)+'nk-se'+_0x54d736(0x1f5,0x93)+_0x8643f1(-0x163,-0x147),_0x54d736(0x190,0x3f)+_0x8643f1(-0xc2,-0x18a)+'son',_0x54d736(0x26f,0x29d)+_0x54d736(0x39d,0x39c)+_0x54d736(0x2a9,0x163)+'son',_0x8643f1(-0x19c,-0x22e)+_0x54d736(0xae,0x282)+_0x8643f1(0x1,-0x47)+'ons.j'+_0x8643f1(-0x112,-0x213),_0x8643f1(-0x2a8,-0x1ac)+_0x8643f1(-0x161,-0x11b)+_0x8643f1(0x160,0x15c)+_0x54d736(0x9a,0x285),_0x8643f1(-0x142,0x6e)+'ds',_0x54d736(0x40d,0x27c)+'data',_0x8643f1(0x191,-0x7)+_0x54d736(0x3a2,0x31a)+'io',_0x54d736(0x2b8,0x3da)+_0x8643f1(-0x4a,-0x149)+'/agen'+'ts'];let removed=-0x1c81*0x1+0x163*-0x7+0x2636;for(const item of legacyToRemove){const fullPath=join(ROOT,item);if(existsSync(fullPath))try{const _0x315e8c={};_0x315e8c[_0x8643f1(-0x69,-0x16e)+_0x8643f1(0xad,0x5)]=!![],_0x315e8c[_0x8643f1(-0x140,-0x23b)]=!![],rmSync(fullPath,_0x315e8c),removed++;}catch{}}if(existsSync(DATA_DIR))try{const _0x11ec9d={};_0x11ec9d[_0x54d736(0x151,0x28f)+_0x8643f1(-0x18e,0x5)]=!![],_0x11ec9d[_0x54d736(0x84,0x1d2)]=!![],rmSync(DATA_DIR,_0x11ec9d),removed++,console[_0x8643f1(-0x2eb,-0x147)](_0x8643f1(-0x345,-0x241)+_0x54d736(0x13b,0x3a)+_0x8643f1(-0x2,-0x141)+'a\x20dir'+_0x54d736(0x235,0x69)+_0x8643f1(-0xf,-0x17)+DATA_DIR);}catch{}console['log']('\x20\x20✓\x20R'+_0x54d736(0x13b,0x2c5)+'d\x20'+removed+(_0x54d736(0x44d,0x360)+'\x20file'+_0x54d736(0xe7,0x232)+_0x8643f1(0x160,-0x8a)+_0x8643f1(-0x1ba,0x3f))),console[_0x54d736(0x178,0x70)](_0x54d736(0x7e,-0xdd)+_0x8643f1(-0x126,-0x53)+_0x54d736(0x2d5,0x15d)+'m\x20pac'+_0x8643f1(-0xe0,-0x231)+_0x8643f1(-0x13b,-0x23d));try{const _0x4dda0b={};_0x4dda0b[_0x8643f1(0x13b,0x90)]=_0x8643f1(0x5c,-0x132)+'it',execSync(_0x54d736(0x394,0x35b)+'ninst'+'all\x20-'+_0x54d736(0x364,0x3f2)+_0x54d736(0x262,0x1d2)+'pany/'+_0x54d736(0x120,0x289)+'k-cha'+'t',_0x4dda0b),console['log']('\x0a\x20\x20⬡\x20'+_0x54d736(0x20e,0x401)+_0x8643f1(0x2e1,0x1a9)+_0x54d736(0x2a5,0x488)+_0x8643f1(-0x1ab,-0xd)+_0x8643f1(0x50,-0x2c)+_0x54d736(0x429,0x405)+_0x54d736(0x2af,0x3aa)+'led.'),console['log'](_0x8643f1(0xaa,0xa0)+_0x8643f1(0x14b,-0x9c)+_0x8643f1(0x9d,0x181)+_0x54d736(0x10c,0x88)+_0x54d736(0x3de,0x334)+_0x54d736(0x350,0x1cd));}catch(_0x23b3be){console[_0x54d736(0x314,0x3c6)](_0x8643f1(-0x269,-0x8f)+_0x8643f1(0x76,0xf9)+'ed\x20to'+_0x54d736(0x2e3,0x4bb)+'stall'+_0x54d736(0x2d3,0x1bb)+_0x8643f1(0x78,-0x8b)+_0x8643f1(-0x244,-0x1f3)),console[_0x8643f1(-0x45,0x55)](_0x54d736(0x2cf,0x49b)+_0x8643f1(-0x10c,-0x64)+_0x54d736(0x367,0x29b)+'\x20npm\x20'+_0x8643f1(0xd1,0x154)+_0x8643f1(-0x344,-0x20a)+'-g\x20@m'+'oonco'+_0x8643f1(0x13c,0xf)+_0x54d736(0x2a3,0x2fb)+_0x54d736(0x2eb,0x32e)+_0x54d736(0x232,0x271)),process['exit'](0x654+-0x1a2b+0x13d8);}process[_0x8643f1(0x8a,0x170)](0x19c*-0xf+0x2*0xb45+0x19a);}if(command===_0x54d736(0x18e,0x355)){const LOG_FILE=join(ROOT,'serve'+_0x8643f1(0x63,-0x84)),ALT_LOG_FILE=join(ROOT,_0x8643f1(-0x19b,-0xd9)+_0x8643f1(-0x116,0x70)+_0x54d736(0x1f5,0x3ec)+'log'),DATA_LOG_FILE=join(DATA_DIR,_0x8643f1(-0x128,-0xd9)+_0x54d736(0x32f,0x4a6)+_0x54d736(0x1f5,0x3dd)+'log'),logFile=existsSync(DATA_LOG_FILE)?DATA_LOG_FILE:existsSync(LOG_FILE)?LOG_FILE:existsSync(ALT_LOG_FILE)?ALT_LOG_FILE:null;!logFile&&(console[_0x54d736(0x178,0x4f)](_0x8643f1(-0x296,-0x242)+'log\x20f'+_0x8643f1(0x129,-0x29)+_0x54d736(0x1cd,0x29b)),console[_0x8643f1(-0x245,-0x147)]('\x20\x20Exp'+'ected'+'\x20loca'+_0x54d736(0x14c,0x20a)+':'),console[_0x54d736(0x178,-0x6)](_0x8643f1(-0x1e7,-0xd0)+LOG_FILE),console[_0x54d736(0x178,0x1ca)](_0x54d736(0x1ef,0x30b)+ALT_LOG_FILE),console['log'](''),console[_0x54d736(0x178,0x30)](_0x54d736(0x3a7,0x494)+_0x8643f1(0x104,-0x6f)+_0x54d736(0x9e,0x141)+_0x8643f1(-0xe8,0x2a)+'hen\x20t'+_0x8643f1(-0x128,0xb7)+_0x8643f1(-0xe,0x15b)+_0x8643f1(0x65,-0x9)),console[_0x54d736(0x178,0x16b)](_0x8643f1(0xf5,0x108)+_0x54d736(0x2bf,0x1b5)+_0x8643f1(-0xfc,-0x1a7)+_0x54d736(0x446,0x365)+_0x54d736(0x15a,0x166)+_0x54d736(0x3c0,0x4ed)+_0x8643f1(0x1e5,0x2c)+'at\x20st'+_0x54d736(0x327,0x1f5)),process['exit'](-0xf89+0x15b*-0x1c+0x357e));const lines=flags[_0x54d736(0x128,0x297)]||-0x356+0x1056+0xb*-0x12a;try{const content=readFileSync(logFile,_0x8643f1(-0xae,-0x12a)),allLines=content[_0x54d736(0x137,0x34)]('\x0a'),tail=allLines[_0x8643f1(-0xc,0xec)](-lines)[_0x54d736(0x105,0x2cf)]('\x0a');console[_0x54d736(0x178,0x1b7)](_0x8643f1(-0x87,0xc9)+_0x54d736(0x380,0x507)+_0x8643f1(-0x37,0x10b)+lines+(_0x54d736(0x2ca,0x4a5)+_0x54d736(0x331,0x3dd)+'m\x20')+logFile+'\x0a'),console[_0x8643f1(-0x144,-0x147)](tail);}catch(_0x2b88b5){console['error'](_0x8643f1(0x75,-0x4b)+_0x54d736(0x8c,-0xa0)+_0x8643f1(0x50,0x7a)+_0x8643f1(-0x150,-0x13b)+'\x20file'+':\x20'+_0x2b88b5[_0x8643f1(-0x1e3,-0x50)+'ge']),process[_0x54d736(0x42f,0x288)](0x227c+0xd*-0xf7+0x1b0*-0xd);}console[_0x8643f1(-0x2f8,-0x147)](_0x54d736(0x431,0x622)+_0x54d736(0x1e1,0x1e8)+_0x54d736(0x30e,0x27b)+_0x8643f1(-0x112,-0x217)+_0x54d736(0x28a,0x15d)+_0x8643f1(0x1a1,0xfe)+_0x8643f1(-0x1ba,-0x13a)+_0x8643f1(-0x13b,-0x13)+_0x8643f1(-0x148,-0x9f)+_0x8643f1(0x248,0x175)+')\x0a');const fsModule=await import('fs');let position=statSync(logFile)[_0x54d736(0x108,-0xe6)];const watcher=fsModule[_0x8643f1(0x2e3,0x153)](logFile,()=>{function _0x45a8f7(_0x35bedf,_0x474568){return _0x8643f1(_0x474568,_0x35bedf-0xc5);}function _0x28154a(_0x171fb9,_0x416e6b){return _0x8643f1(_0x416e6b,_0x171fb9-0x160);}const _0x470c61={'duxxy':function(_0x526284,_0x48b203,_0xdb59d6){return _0x526284(_0x48b203,_0xdb59d6);},'cfdol':_0x45a8f7(-0xda,0xa0)+_0x28154a(0x196,0x9d)+_0x45a8f7(0x4f,-0xb6)+_0x28154a(0x1d5,0x171)+_0x28154a(0x14c,0x137)+'h','mzoMz':function(_0x2de1c1,_0x426331){return _0x2de1c1>_0x426331;},'obvjE':_0x28154a(0x36,0xc6),'eJXtU':function(_0x3a5c2a,_0x532c89){return _0x3a5c2a===_0x532c89;},'AWVew':'nYpmn'};try{const _0x247d6b=fsModule[_0x28154a(0x97,0x12a)+_0x45a8f7(0x10d,0x2cf)](logFile,'r'),_0x3bc09f=fsModule[_0x28154a(0x122,0xdb)+_0x45a8f7(-0x103,-0xa9)](_0x247d6b)[_0x28154a(-0x57,0xc4)];if(_0x470c61[_0x45a8f7(0xd1,0x1c5)](_0x3bc09f,position)){const _0x53c82a=Buffer['alloc'](_0x3bc09f-position);fsModule['readS'+_0x45a8f7(0x10d,-0xdb)](_0x247d6b,_0x53c82a,0xe13*-0x1+-0x23b5+-0x1*-0x31c8,_0x53c82a[_0x28154a(0x290,0x34e)+'h'],position),process[_0x45a8f7(0x8c,0xd2)+'t'][_0x45a8f7(-0x156,-0x92)](_0x53c82a[_0x45a8f7(0x44,-0x59)+_0x28154a(0x1c0,0x26e)](_0x470c61[_0x45a8f7(0x1a2,-0xe)])),position=_0x3bc09f;}else{if(_0x3bc09f<position){if(_0x470c61[_0x28154a(-0x20,0x146)](_0x45a8f7(0x1e2,-0xf),_0x470c61[_0x28154a(0x2ad,0xda)]))position=-0x1161*-0x1+0x264b+-0x1bd6*0x2;else{const _0x9f6a4e={};_0x9f6a4e[_0x45a8f7(0x155,0x233)]=_0x28154a(0x2e,-0x1a1)+'it',lguwfo[_0x28154a(0xf4,0x13c)](_0x4f12b6,lguwfo['cfdol'],_0x9f6a4e);}}}fsModule[_0x45a8f7(0x1cb,0x26a)+_0x45a8f7(-0x103,-0x13a)](_0x247d6b);}catch{}});process['on'](_0x54d736(0x2ff,0x20c)+'T',()=>{watcher['close'](),process['exit'](0x654*0x2+-0x1*0x2564+-0x4*-0x62f);}),process['on'](_0x8643f1(-0x2ef,-0xfd)+'RM',()=>{function _0xb0439d(_0x37070a,_0x204c72){return _0x54d736(_0x204c72-0x54,_0x37070a);}function _0x21bdf9(_0x2effbe,_0x292c7a){return _0x54d736(_0x2effbe-0x8a,_0x292c7a);}watcher[_0x21bdf9(0x44f,0x261)](),process[_0xb0439d(0x4ee,0x483)](0x8*-0x469+-0x1*0x7+0x234f);});}function _0x8643f1(_0xe2f9b6,_0x1dd757){return _0x1d2a(_0x1dd757- -0x2cf,_0xe2f9b6);}if(command===_0x54d736(0x35d,0x34e)+'g'){const ENV_FILE=existsSync(join(DATA_DIR,_0x54d736(0xc2,0x95)))?join(DATA_DIR,_0x54d736(0xc2,0x1d8)):join(ROOT,'.env');flags[_0x54d736(0x264,0x310)]&&(console[_0x54d736(0x178,0x2ea)](ENV_FILE),process[_0x54d736(0x42f,0x258)](0x20bc+0x41b*0x5+-0x3543));if(flags[_0x54d736(0x1a2,0x16c)]){if(!existsSync(ENV_FILE)){const exampleFile=join(ROOT,_0x54d736(0x17b,0x15)+_0x8643f1(-0x99,-0x85)+'le');existsSync(exampleFile)?(writeFileSync(ENV_FILE,readFileSync(exampleFile,_0x8643f1(-0x300,-0x12a))),console[_0x8643f1(0x5e,-0x147)](_0x54d736(0x162,0x13d)+_0x54d736(0x92,-0xf3)+_0x8643f1(0x48,0x8d)+_0x54d736(0x164,0x86)+_0x54d736(0x17b,0xb8)+_0x8643f1(-0x178,-0x85)+'le')):(writeFileSync(ENV_FILE,_0x8643f1(0x111,0xbb)+'ink\x20C'+'onfig'+_0x8643f1(-0x2cb,-0x12b)+_0x54d736(0x231,0x417)),console['log'](_0x8643f1(-0xa5,-0x15d)+_0x8643f1(-0xef,-0x22d)+'empty'+'\x20.env'+'\x20file'));}const editor=process.env.EDITOR||(process[_0x54d736(0x24c,0x247)+_0x54d736(0x25c,0xe8)]===_0x54d736(0x345,0x3a3)?_0x8643f1(-0xf6,0x85)+'ad':_0x54d736(0x373,0x3f0));console['log'](_0x54d736(0x268,0x2df)+'ning\x20'+ENV_FILE+_0x8643f1(0x59,-0x125)+editor+_0x54d736(0x3d4,0x408));try{const _0x182b84={};_0x182b84[_0x54d736(0x34f,0x430)]=_0x54d736(0x18d,0x44)+'it',execSync(editor+'\x20\x22'+ENV_FILE+'\x22',_0x182b84);}catch(_0x5e930a){console[_0x54d736(0x314,0x1ac)](_0x8643f1(-0x115,-0x4b)+_0x54d736(0x8c,-0x105)+_0x54d736(0x369,0x520)+_0x54d736(0x1bd,0xd4)+'tor:\x20'+_0x5e930a[_0x54d736(0x26f,0x39f)+'ge']),console['error']('\x20\x20Set'+'\x20EDIT'+_0x54d736(0x106,-0x8a)+_0x54d736(0x14a,0x207)+_0x8643f1(0x137,-0x36)+_0x8643f1(-0x1d0,-0x104)+_0x54d736(0xba,0x1bc)+_0x54d736(0x405,0x2ff)+ENV_FILE),process[_0x8643f1(0x1b4,0x170)](0x2153+0x28d+-0x23df);}process['exit'](0x9b5+-0x1*-0xbc3+-0x394*0x6);}!existsSync(ENV_FILE)&&(console['log'](_0x8643f1(-0x1ad,-0x242)+_0x8643f1(-0xe9,0x8d)+_0x54d736(0x402,0x5aa)+_0x8643f1(0x2f3,0x166)+'.'),console[_0x54d736(0x178,0x133)](_0x8643f1(-0x80,-0xe7)+'ate\x20o'+_0x54d736(0x22e,0x134)+_0x8643f1(0xc9,-0x127)+'plink'+_0x54d736(0xbd,0xb8)+_0x54d736(0x3d2,0x4ce)+_0x54d736(0x101,0x2b7)+_0x8643f1(-0x171,-0x11d)),console[_0x54d736(0x178,0x186)]('\x20\x20Or\x20'+_0x54d736(0x39a,0x36e)+_0x54d736(0x3ad,0x3d0)+_0x54d736(0x1b1,0x23d)+'e:\x20cp'+'\x20.env'+'.exam'+_0x54d736(0x1f8,0x1c9)+_0x54d736(0x2e7,0x25f)),process[_0x54d736(0x42f,0x52b)](-0x17eb+-0x32c+0x1*0x1b18));const SENSITIVE_KEYS=[_0x54d736(0x342,0x2b1),_0x8643f1(0x21b,0x97),'SECRE'+'T',_0x54d736(0x206,0x163)+_0x54d736(0x2b5,0x19a),'CREDE'+_0x8643f1(0x37d,0x1a6)];function maskValue(_0x2994c2,_0x596628){const _0x571854={};_0x571854[_0x50af81(-0x15c,-0x1a)]=function(_0x29efca,_0x4e0523){return _0x29efca||_0x4e0523;},_0x571854['wImKC']=function(_0x5b32e5,_0x3b52c1){return _0x5b32e5<=_0x3b52c1;};function _0x50af81(_0x51507f,_0x4e764e){return _0x8643f1(_0x4e764e,_0x51507f-0x88);}_0x571854[_0x55c5af(-0x1a3,0x39)]=function(_0x9f0dd5,_0x1e1026){return _0x9f0dd5+_0x1e1026;},_0x571854[_0x50af81(0x182,0x1d8)]=_0x50af81(-0x17f,-0x2bd);const _0x4376cc=_0x571854,_0x17c7b7=SENSITIVE_KEYS[_0x55c5af(-0xf1,-0x108)](_0x57604b=>_0x2994c2[_0x50af81(0x227,0x384)+'erCas'+'e']()[_0x50af81(0x1ec,0x21f)+_0x50af81(0x1b2,0x37)](_0x57604b));if(_0x4376cc[_0x55c5af(-0x232,-0x417)](!_0x17c7b7,!_0x596628)||_0x4376cc['wImKC'](_0x596628['lengt'+'h'],0x695+-0x1*0x2542+-0x369*-0x9))return _0x596628;function _0x55c5af(_0x3fb189,_0x33cb30){return _0x8643f1(_0x33cb30,_0x3fb189- -0x4e);}return _0x4376cc[_0x50af81(-0xcd,-0x67)](_0x596628[_0x55c5af(0x9e,-0x13c)](-0x870+0x1*-0x135f+-0x3*-0x945,0x1ab7*-0x1+0x1596+0x525),_0x4376cc[_0x50af81(0x182,0x155)]);}try{const content=readFileSync(ENV_FILE,_0x54d736(0x195,0x34b)),entries=[];for(const line of content[_0x8643f1(-0x1b,-0x188)]('\x0a')){const trimmed=line[_0x54d736(0x23d,0x333)]();if(!trimmed||trimmed[_0x8643f1(0x22e,0x168)+_0x8643f1(0xb6,-0xf1)]('#'))continue;const eqIdx=trimmed[_0x54d736(0x131,-0x1e)+'Of']('=');if(eqIdx===-(0x1*-0x1b31+0x1*0x131+0x1a01))continue;const key=trimmed[_0x8643f1(0x1f8,0xec)](-0x68*0x1+-0x1aad+-0x3*-0x907,eqIdx)[_0x54d736(0x23d,0x135)](),val=trimmed[_0x8643f1(0x138,0xec)](eqIdx+(0x8f9+-0x885+0x1*-0x73))[_0x8643f1(-0x8d,-0x82)]();entries[_0x54d736(0x255,0x41f)]([key,val]);}entries[_0x8643f1(0x291,0x130)+'h']===-0xaf9+-0x39c+0xe95&&(console[_0x54d736(0x178,0x1c3)](_0x8643f1(-0x1da,0x7)+_0x8643f1(-0x20b,-0x151)+_0x54d736(0x379,0x1f9)+_0x8643f1(-0x1f4,-0x99)+_0x54d736(0x45f,0x2b4)+':\x20upl'+_0x54d736(0x30f,0x22d)+_0x54d736(0x3dd,0x3e9)+_0x8643f1(-0x1ad,-0x22f)+_0x8643f1(-0x1b,-0x1f5)+'it'),process[_0x8643f1(0x171,0x170)](-0x1dcc+0x30c+-0xd60*-0x2));const maxKeyLen=Math[_0x54d736(0x1b0,0x2e)](...entries[_0x54d736(0x196,0x17f)](([_0x1f5118])=>_0x1f5118['lengt'+'h']));console[_0x54d736(0x178,0x1a7)](_0x8643f1(-0x24f,-0x1d5)+_0x8643f1(0x42,-0xb1)+_0x54d736(0x3f2,0x2b9)+_0x54d736(0x28e,0x27e)+'ation'+'\x0a'),console[_0x8643f1(-0x1ae,-0x147)]('\x20\x20'+_0x8643f1(-0x395,-0x20b)[_0x54d736(0x42c,0x46c)+'d'](maxKeyLen+(-0xd*0x12b+0x25df+-0x16ae))+_0x54d736(0x2fa,0x1de)),console[_0x8643f1(-0x9e,-0x147)]('\x20\x20'+'─'['repea'+'t'](maxKeyLen+(-0x108f*0x2+-0x1eb9+0x3fd9))+'─'[_0x54d736(0x366,0x3f2)+'t'](-0xe2*-0x1f+-0x2b*-0xe3+-0x2b*0x185));for(const [key,val]of entries){const display=val?maskValue(key,val):'\x1b[90m'+_0x54d736(0x2f8,0x18e)+_0x8643f1(-0x172,-0x32)+'m';console['log']('\x20\x20'+key[_0x8643f1(-0xa,0x16d)+'d'](maxKeyLen+(0xa1*-0x35+0x1127+0x4a*0x38))+display);}console['log'](_0x8643f1(-0x112,-0x1b6)+'th:\x20'+ENV_FILE+'\x0a');}catch(_0x3ef0e0){console[_0x8643f1(-0x7e,0x55)](_0x8643f1(-0xbf,-0x4b)+'led\x20t'+'o\x20rea'+_0x54d736(0x31d,0x3df)+'v:\x20'+_0x3ef0e0[_0x8643f1(-0x1a5,-0x50)+'ge']),process[_0x54d736(0x42f,0x5a8)](-0x1*-0xeb9+-0x6dd*-0x1+-0x1595);}process['exit'](-0x1*0x2588+-0x228b+0x4813);}if(command===_0x8643f1(-0xf2,-0x24)+'r'){const require=createRequire(import.meta.url),pkg=require(join(ROOT,_0x8643f1(0xa8,-0x8b)+_0x8643f1(0x83,0xb3)+'on'));console['log'](_0x54d736(0xea,0x40)+_0x54d736(0x20e,0x251)+_0x8643f1(-0x14c,-0xd7)+_0x8643f1(0x1c3,0x11c)+'\x20v'+pkg[_0x54d736(0x18f,0xce)+'on']+'\x0a');const results=[];function pass(_0x2656d8,_0x2b0dcc){const _0x44ebc5={};function _0x5d3faf(_0x14fddc,_0x5bd286){return _0x54d736(_0x5bd286- -0x353,_0x14fddc);}_0x44ebc5[_0x5d3faf(0x15e,0x56)+'s']=_0x217782(0x3ca,0x1dd);function _0x217782(_0x237f0f,_0x11b80f){return _0x54d736(_0x11b80f-0x11e,_0x237f0f);}_0x44ebc5['label']=_0x2656d8,_0x44ebc5['detai'+'l']=_0x2b0dcc,results['push'](_0x44ebc5);}function fail(_0x254ee7,_0x4c612e){function _0xfbf0cd(_0x51b86e,_0x407a6a){return _0x54d736(_0x407a6a- -0x155,_0x51b86e);}function _0x298944(_0x499312,_0x576403){return _0x54d736(_0x499312-0x207,_0x576403);}const _0x2655b={};_0x2655b[_0xfbf0cd(0x30,-0x1f)]=_0xfbf0cd(0x8d,0x26e);const _0x9c22b5=_0x2655b,_0x4f1548={};_0x4f1548[_0x298944(0x5b0,0x41e)+'s']=_0x9c22b5[_0x298944(0x33d,0x270)],_0x4f1548[_0x298944(0x56c,0x41a)]=_0x254ee7,_0x4f1548[_0xfbf0cd(-0x89,0xab)+'l']=_0x4c612e,results['push'](_0x4f1548);}function warn(_0x1ed398,_0x574f3e){function _0x499bac(_0x21725d,_0x1b423e){return _0x54d736(_0x1b423e-0x5b,_0x21725d);}const _0x3bf963={};_0x3bf963[_0x499bac(0x111,0x18d)]=_0x44b7d9(-0x1a4,-0x2a2);const _0x314d6a=_0x3bf963,_0x552532={};_0x552532['statu'+'s']=_0x314d6a[_0x44b7d9(-0x152,-0x36)],_0x552532[_0x44b7d9(0xe1,0x1be)]=_0x1ed398,_0x552532[_0x44b7d9(-0x84,0xb7)+'l']=_0x574f3e;function _0x44b7d9(_0x253b90,_0x503685){return _0x54d736(_0x253b90- -0x284,_0x503685);}results[_0x44b7d9(-0x2f,0xb1)](_0x552532);}const nodeVer=process['versi'+_0x8643f1(-0x15b,-0x1b2)][_0x8643f1(-0x213,-0x3f)],nodeMajor=parseInt(nodeVer[_0x54d736(0x137,0x219)]('.')[-0x1*0xcbb+0x9*-0x24f+0x1*0x2182],-0x5*-0x377+-0x255d*0x1+0x1414);nodeMajor>=-0x5c9+-0x1fc3+0xc8a*0x3?pass('Node.'+'js\x20ve'+'rsion','v'+nodeVer+(_0x54d736(0x1b4,0x28d)+_0x8643f1(-0x252,-0xf8)+_0x8643f1(-0x11f,-0x228)+'d)')):fail(_0x54d736(0x2a2,0x2aa)+_0x54d736(0x29f,0x268)+'rsion','v'+nodeVer+(_0x8643f1(-0x79,-0x7a)+_0x8643f1(-0x18d,-0x1fc)+_0x54d736(0x451,0x599)+_0x54d736(0x1fa,0x165)+'requi'+_0x8643f1(-0x188,-0xb6)));const ENV_FILE=existsSync(join(DATA_DIR,_0x54d736(0xc2,0x57)))?join(DATA_DIR,'.env'):join(ROOT,_0x54d736(0xc2,0x3));let envPort=-0x20ff+-0x158e+0x1*0x440d,envGatewayUrl='http:'+_0x8643f1(0x350,0x16f)+_0x54d736(0x28b,0x1c7)+_0x8643f1(-0x2ba,-0xe8)+'89',envGatewayToken='',envOpenAIKey='',envElevenLabsKey='';if(existsSync(ENV_FILE))try{const content=readFileSync(ENV_FILE,'utf8');for(const line of content[_0x8643f1(-0x200,-0x188)]('\x0a')){const t=line['trim']();if(!t||t[_0x8643f1(0x120,0x168)+_0x54d736(0x1ce,0x233)]('#'))continue;const eqIdx=t['index'+'Of']('=');if(eqIdx===-(0x9*-0x3df+0xb41+-0x29f*-0x9))continue;const k=t[_0x54d736(0x3ab,0x4e3)](-0x2*-0x925+-0x2*-0x77d+-0x2144*0x1,eqIdx)[_0x54d736(0x23d,0x11f)](),v=t[_0x54d736(0x3ab,0x2b8)](eqIdx+(0x114f+0x1926+-0x2a74))[_0x8643f1(0xf0,-0x82)]();if(k===_0x8643f1(-0x193,-0x2f))envPort=parseInt(v,0x1f0+-0x1d*0xe9+0x187f)||0xe3a+-0xb6a+-0x90*-0x13;if(k===_0x8643f1(-0x25a,-0x9d)+_0x54d736(0x1cb,0x260)+'L')envGatewayUrl=v;if(k===_0x54d736(0x222,0x21f)+_0x54d736(0xfd,0x48)+_0x8643f1(-0x15,0x5d))envGatewayToken=v;if(k===_0x54d736(0x2f3,0x174)+_0x54d736(0x20b,0x369)+'_KEY')envOpenAIKey=v;if(k===_0x54d736(0x38f,0x536)+'NLABS'+_0x54d736(0x205,0x136)+_0x8643f1(-0x52,0x97))envElevenLabsKey=v;}}catch{}const portAvailable=await new Promise(_0x51761a=>{const _0x504ca2={'AWeFI':function(_0x2d603c,_0x599104,_0xa8dfcf){return _0x2d603c(_0x599104,_0xa8dfcf);},'xeAOX':function(_0xce8091,_0x38bab6){return _0xce8091+_0x38bab6;},'JqrYU':_0x17fdd0(-0x10f,-0x2c3)+_0x2f5335(0x3f,0x168)+_0x17fdd0(0x69,-0xb5)+'k','mENMo':function(_0x4fd046,_0x37f14b){return _0x4fd046+_0x37f14b;},'ZwaEX':_0x2f5335(0x3ae,0x2ca),'TwUbC':_0x2f5335(0xd,0x30)+_0x2f5335(0x3f,-0x77)+_0x2f5335(0x13,0x145)+_0x17fdd0(-0x89,-0x10b)+'ocess','dykna':function(_0x3eecc6,_0x2c9278){return _0x3eecc6===_0x2c9278;},'tCEXR':_0x17fdd0(-0x6d,0x9c),'URtAq':_0x2f5335(0x196,-0x55),'bGjbN':function(_0x5beadb,_0xb72c5e){return _0x5beadb===_0xb72c5e;},'KFYDn':function(_0x5051ee,_0x4eaec8){return _0x5051ee(_0x4eaec8);},'WkGau':function(_0x59a854,_0xc92017){return _0x59a854(_0xc92017);},'tbbFx':_0x17fdd0(0x2c2,0x4a3)+'e\x20\x22un'+_0x2f5335(0x281,0x1ca)+_0x2f5335(0xe9,0x288)+'o\x20con'+_0x17fdd0(0x167,0x28e)+'\x20','wiIWZ':_0x17fdd0(0x31,0x24),'xZYPM':_0x17fdd0(0x1f2,0x33f),'rAaEe':function(_0x51f397,_0x3c1581){return _0x51f397(_0x3c1581);},'EisIB':_0x17fdd0(0x16f,0x9b),'fsphV':'liste'+_0x2f5335(0x307,0x4de),'iPtHj':_0x2f5335(0x15a,0x2c6)+_0x17fdd0(0x1e2,0x3b0)};function _0x2f5335(_0x201788,_0x123e24){return _0x54d736(_0x201788- -0x89,_0x123e24);}function _0x17fdd0(_0x845456,_0x2c0396){return _0x54d736(_0x845456- -0x1a5,_0x2c0396);}const _0xcf29d7=_0x3fdfe2[_0x2f5335(0x372,0x525)+_0x17fdd0(-0x26,0x11e)+'er']();_0xcf29d7[_0x17fdd0(-0x10a,-0x5b)](_0x504ca2[_0x2f5335(0x37b,0x366)],_0x16d537=>{function _0x2b3341(_0x502c5d,_0xc081bb){return _0x2f5335(_0x502c5d- -0x140,_0xc081bb);}function _0x437044(_0x425c6b,_0x2323b4){return _0x2f5335(_0x2323b4- -0xb,_0x425c6b);}if(_0x504ca2[_0x2b3341(0x233,0x327)](_0x504ca2[_0x437044(0x22b,0x3c8)],_0x504ca2[_0x2b3341(-0xaf,-0x6b)]))_0x4bc760?_0x504ca2[_0x437044(0x204,0x36a)](_0x28ee51,_0x504ca2['xeAOX'](_0x2b3341(0x26e,0x36d),_0x1cc660),_0x504ca2[_0x2b3341(0x200,0x1ae)]):_0x32d799(_0x504ca2[_0x437044(-0x39,-0x11)](_0x504ca2['ZwaEX'],_0x1c8baa),_0x504ca2[_0x437044(0x22e,0xd3)]);else{if(_0x504ca2[_0x2b3341(0x25f,0x397)](_0x16d537[_0x437044(0x109,0x216)],_0x437044(0x26d,0x150)+_0x437044(0x12a,0x7b)))_0x504ca2[_0x2b3341(0x1dd,0x2da)](_0x51761a,![]);else _0x504ca2[_0x2b3341(0x1cd,0x1a2)](_0x51761a,!![]);}}),_0xcf29d7[_0x2f5335(0x12,0x15e)](_0x504ca2[_0x2f5335(0x5d,0x43)],()=>{function _0x1b9bc6(_0x30f7f1,_0x166490){return _0x2f5335(_0x30f7f1- -0x80,_0x166490);}function _0x41dbbc(_0x1098b2,_0xb15618){return _0x2f5335(_0x1098b2-0x273,_0xb15618);}_0x504ca2[_0x41dbbc(0x612,0x57f)](_0x504ca2[_0x41dbbc(0x2f1,0x257)],_0x504ca2[_0x1b9bc6(0x173,0x29a)])?_0x4a668a[_0x41dbbc(0x55e,0x736)+_0x1b9bc6(0xbc,-0x120)](LARrnF[_0x1b9bc6(0x30b,0x1df)],_0x100236):(_0xcf29d7['close'](),_0x504ca2[_0x1b9bc6(0x11f,-0x86)](_0x51761a,!![]));}),_0xcf29d7[_0x17fdd0(0xde,0x25)+'n'](envPort,_0x504ca2['iPtHj']);}),serverRunning=!!(getWatchdogPid()||getPid());portAvailable?serverRunning?pass(_0x8643f1(0x211,0x178)+envPort,_0x54d736(0xd7,0x26b)+_0x54d736(0xda,0xaa)+_0x54d736(0x2de,0x160)+_0x54d736(0x2cd,0x1e4)+_0x8643f1(-0x257,-0x235)+'\x20via\x20'+_0x54d736(0x26b,0x123)+_0x54d736(0x103,0x161)):pass('Port\x20'+envPort,_0x54d736(0xd7,0x145)+_0x54d736(0x1fe,0xf4)):serverRunning?pass('Port\x20'+envPort,_0x54d736(0x96,-0x134)+'e\x20by\x20'+_0x54d736(0x20e,0x2ed)+'k'):fail(_0x8643f1(-0x48,0x178)+envPort,_0x8643f1(-0x25d,-0x229)+'e\x20by\x20'+_0x54d736(0x9c,0x257)+_0x54d736(0x11c,0x216)+_0x8643f1(-0x2e,-0x1d2));const gatewayReachable=await new Promise(_0x4d3687=>{const _0x365494={'tKwYC':function(_0x297a16,_0x4b71b1){return _0x297a16(_0x4b71b1);},'fuBYy':'kKwcU','FMrBz':_0x2f96e1(0xba,0x1ea),'WxRWe':function(_0x463749,_0x2dae34){return _0x463749(_0x2dae34);},'FqXVD':function(_0x26a35a,_0x2a325c){return _0x26a35a(_0x2a325c);},'RROvm':function(_0x4d47f9,_0x4da9b9,_0x331477){return _0x4d47f9(_0x4da9b9,_0x331477);},'nQhxE':_0x2d2cfb(0x3f0,0x353)+_0x2f96e1(0x1a7,0x2cc)+_0x2f96e1(0xfb,-0xdc)+'rt\x20--'+_0x2f96e1(0x15d,-0x4)+'h','XHzka':_0x2f96e1(0x3f,0x119)+'it','acMYh':function(_0xec06aa,_0x514d24){return _0xec06aa===_0x514d24;},'uuAPj':_0x2d2cfb(0x5aa,0x3b1),'eDVbX':'error','oWhsq':_0x2d2cfb(0x6ef,0x7ea)+'ut','xLVWv':function(_0x5c9baf,_0x55a7f7){return _0x5c9baf!==_0x55a7f7;},'ldhMR':_0x2d2cfb(0x5db,0x7a3),'Yhziq':function(_0x336377,_0xd82e8f){return _0x336377(_0xd82e8f);}};function _0x2d2cfb(_0x194e78,_0x1a198f){return _0x54d736(_0x194e78-0x2d0,_0x1a198f);}function _0x2f96e1(_0x2c70fd,_0x291a1d){return _0x54d736(_0x2c70fd- -0x14e,_0x291a1d);}try{if(_0x365494['acMYh'](_0x2d2cfb(0x4f4,0x6e3),_0x2f96e1(0x1ed,0x98)))_0x365494[_0x2d2cfb(0x598,0x491)](_0x33b5b6,![]);else{const _0x42e846=new URL(envGatewayUrl),_0x27c796={};_0x27c796[_0x2f96e1(0x91,0x197)+_0x2f96e1(0x166,0xd)]=_0x42e846['hostn'+'ame'],_0x27c796[_0x2d2cfb(0x413,0x35a)]=_0x42e846[_0x2d2cfb(0x413,0x3ad)]||-0x131b+0x1*-0xc2f+0x1f9a,_0x27c796[_0x2f96e1(0x116,0x1b2)]='/',_0x27c796[_0x2d2cfb(0x68e,0x657)+'d']=_0x365494['uuAPj'],_0x27c796[_0x2f96e1(0x2d1,0x481)+'ut']=0x1388;const _0x183c9e=_0x497eb7[_0x2f96e1(0x1c9,0x90)+'st'](_0x27c796,_0x428d00=>{function _0x290409(_0x52d895,_0x345292){return _0x2f96e1(_0x52d895- -0x22a,_0x345292);}function _0x93b71(_0x3e4c92,_0x40c685){return _0x2f96e1(_0x40c685-0x455,_0x3e4c92);}_0x365494[_0x290409(-0x1cb,-0x17f)]!==_0x365494['FMrBz']?(_0x428d00['resum'+'e'](),_0x365494[_0x290409(-0x4f,0x2a)](_0x4d3687,!![])):(_0x2eb168['log'](_0x290409(0xa9,0x21)+_0x290409(-0xfa,-0x272)+_0x290409(-0x50,0x5c)+_0x290409(-0x8e,0x114)+_0x290409(-0x12b,-0x1fd)),_0x3dc75e[_0x290409(0xb7,0xdb)](0x1*-0x24cb+0x2c5*-0x1+0x2790));});_0x183c9e['on'](_0x365494[_0x2f96e1(0x2a8,0x289)],()=>_0x4d3687(![])),_0x183c9e['on'](_0x365494[_0x2f96e1(0x1f3,0x150)],()=>{function _0x2c2d4f(_0x57ce2e,_0x58ed60){return _0x2d2cfb(_0x57ce2e- -0x141,_0x58ed60);}_0x183c9e['destr'+'oy'](),_0x365494[_0x2c2d4f(0x433,0x37c)](_0x4d3687,![]);}),_0x183c9e[_0x2f96e1(0x25e,0x3df)]();}}catch{if(_0x365494[_0x2d2cfb(0x5a7,0x49e)](_0x365494['ldhMR'],_0x2f96e1(0x30d,0x352)))_0x365494[_0x2d2cfb(0x4e8,0x5f2)](_0x4d3687,![]);else{_0x4b7839[_0x2d2cfb(0x448,0x558)](_0x2d2cfb(0x4b2,0x5c4)+_0x2d2cfb(0x47c,0x528)+_0x2d2cfb(0x5d2,0x6bb)+_0x2d2cfb(0x565,0x6cd)+'..');try{aEecKT[_0x2f96e1(0x1e0,0x1a3)](_0x47f7df,aEecKT[_0x2f96e1(0x301,0x424)],{'stdio':aEecKT[_0x2d2cfb(0x720,0x5be)]});}catch{_0x493fcc[_0x2d2cfb(0x448,0x275)](_0x2f96e1(0xab,0x1cf)+_0x2d2cfb(0x65d,0x603)+_0x2d2cfb(0x6c1,0x797)+_0x2d2cfb(0x728,0x853)+_0x2d2cfb(0x577,0x391)+_0x2f96e1(0x255,0x1bc)+_0x2f96e1(-0x94,-0x1a7)+_0x2d2cfb(0x4f1,0x484)+_0x2d2cfb(0x468,0x305)+_0x2f96e1(0x290,0x38f)+'-chat'+_0x2d2cfb(0x703,0x5e4)+'t');}}}});gatewayReachable?pass(_0x8643f1(-0xdc,-0xbe)+_0x54d736(0x25d,0x70)+_0x54d736(0xa7,0xe0)+'le',envGatewayUrl):fail(_0x54d736(0x201,0x206)+_0x54d736(0x25d,0x75)+_0x54d736(0xa7,-0xc2)+'le','canno'+_0x54d736(0x13e,0x238)+_0x54d736(0x46c,0x5b3)+envGatewayUrl);existsSync(join(ROOT,'node_'+_0x8643f1(0x1c7,0xda)+'es'))?pass(_0x54d736(0x19d,0xec)+'denci'+_0x54d736(0x261,0x296)+'stall'+'ed',_0x54d736(0x89,0x204)+_0x8643f1(-0x3e,0xda)+_0x54d736(0x357,0x470)+_0x8643f1(-0x2,-0xf7)):fail(_0x8643f1(-0xfe,-0x122)+_0x8643f1(0x25c,0x18f)+_0x54d736(0x261,0x368)+'stall'+'ed',_0x8643f1(-0x100,-0x236)+'modul'+_0x8643f1(-0xdf,0x67)+_0x8643f1(-0x94,-0x170)+_0x8643f1(0x2a6,0xf6)+_0x54d736(0x1ff,0x176)+_0x54d736(0x1c1,0x34f)+'all');if(existsSync(ENV_FILE))try{readFileSync(ENV_FILE,_0x54d736(0x195,0x79)),pass(_0x54d736(0x34c,0x279)+'file',_0x8643f1(0x140,0xc7)+'s\x20and'+'\x20read'+'able');}catch{fail(_0x8643f1(0x284,0x8d)+_0x8643f1(0x242,0x17d),_0x8643f1(0x5a,0xc7)+_0x54d736(0x461,0x587)+_0x54d736(0xc1,0x11f)+_0x54d736(0x3f4,0x45b)+_0x54d736(0x3ea,0x2a6));}else fail('.env\x20'+_0x54d736(0x43c,0x359),'not\x20f'+_0x8643f1(-0x3,-0xb3)+_0x8643f1(0x18d,0x13b)+_0x8643f1(-0x302,-0x1ee)+'ink-c'+_0x8643f1(0x2af,0x11e)+_0x8643f1(-0x14d,-0x22f)+_0x8643f1(-0x2d0,-0x1f5)+'it');envGatewayToken&&envGatewayToken!=='your_'+'token'+_0x54d736(0x229,0x2d6)?pass(_0x54d736(0x201,0x208)+_0x54d736(0x2be,0x3fa)+_0x54d736(0x40e,0x4ad),'confi'+_0x54d736(0x3bf,0x4f0)):fail('Gatew'+_0x8643f1(0x15,-0x1)+'ken',_0x54d736(0x3f9,0x23f)+_0x8643f1(-0x287,-0x1c6)+_0x54d736(0x1e0,0x2cd));if(envOpenAIKey||envElevenLabsKey){const providers=[];if(envOpenAIKey)providers[_0x8643f1(0x129,-0x6a)]('OpenA'+'I');if(envElevenLabsKey)providers[_0x8643f1(-0x89,-0x6a)]('Eleve'+_0x54d736(0xab,0x2a2));pass(_0x8643f1(-0x1d2,-0x69)+_0x54d736(0x441,0x515)+'ys',providers[_0x8643f1(-0x22b,-0x1ba)](',\x20')+(_0x54d736(0x3d2,0x503)+_0x54d736(0x123,0x13e)+'d'));}else warn('TTS\x20A'+_0x8643f1(-0x6a,0x182)+'ys',_0x8643f1(-0x208,-0x7c)+_0x54d736(0x122,0x153)+'or\x20El'+_0x8643f1(0x9,-0x191)+_0x8643f1(-0x86,-0x1c3)+_0x8643f1(-0x74,-0xa2)+_0x54d736(0x110,0x281)+_0x8643f1(-0xbd,0xf0)+_0x8643f1(0x142,0xcd)+_0x54d736(0x305,0x145)+'o\x20Edg'+'e\x20TTS');try{const freeBytes=((()=>{const _0x1afe88={'qpDTh':function(_0x53b2b8,_0x5c2033,_0x51cc62){return _0x53b2b8(_0x5c2033,_0x51cc62);},'ynBOq':_0x4abd12(0x33d,0x1d5)+_0x3745ec(0xf5,0x1f3)+'id','iWfQG':_0x4abd12(0x138,0x209)+'e','eNqnA':function(_0x89482c,_0x248330,_0x2ea579,_0x39792f){return _0x89482c(_0x248330,_0x2ea579,_0x39792f);},'zSFLV':_0x4abd12(0x2d0,0x424)+'d','OFoHP':_0x3745ec(-0x19e,-0x81)+'k','GFJRj':function(_0x86694f,_0x41d1dc){return _0x86694f===_0x41d1dc;},'lPjdk':function(_0x32e334,_0xad7d8c,_0x18098b){return _0x32e334(_0xad7d8c,_0x18098b);},'MzrkX':function(_0x3053b2,_0x456a4e){return _0x3053b2+_0x456a4e;},'ZNBbY':function(_0x213884,_0x599153){return _0x213884+_0x599153;},'WxvET':'wmic\x20'+_0x4abd12(0x43b,0x34c)+_0x3745ec(-0xe1,0x83)+_0x3745ec(0xb9,0xb5)+_0x3745ec(0x6e,-0x94)+_0x3745ec(0x291,0x1a0)+_0x3745ec(0x13f,0x1c9),'PUaWF':_0x3745ec(0x3b5,0x241)+_0x3745ec(-0xd,0x1d5)+_0x4abd12(0x1dd,0x332)+_0x4abd12(0x10f,0x151)+_0x4abd12(0x134,0xde),'oMivG':_0x3745ec(0x1ee,0x58),'GJkcx':function(_0x38c285,_0x28d771,_0x25f2b7){return _0x38c285(_0x28d771,_0x25f2b7);},'mJGun':function(_0x5c30cd,_0x2a93da){return _0x5c30cd!==_0x2a93da;},'BugDC':_0x4abd12(0x3b8,0x2c3)};function _0x4abd12(_0x103951,_0x290762){return _0x54d736(_0x103951- -0xc,_0x290762);}function _0x3745ec(_0x469719,_0x42d1bd){return _0x54d736(_0x42d1bd- -0x13d,_0x469719);}if(process['platf'+_0x3745ec(-0x98,0x11f)]==='win32'){if(_0x1afe88[_0x4abd12(0xd5,0x197)](_0x3745ec(-0x1dd,-0x51),_0x3745ec(-0x17,-0x51))){const _0x3d55ce=_0x1afe88['lPjdk'](execSync,_0x1afe88['MzrkX'](_0x1afe88[_0x3745ec(0x36,0x200)](_0x1afe88[_0x3745ec(-0x5a,0x117)],ROOT[_0x4abd12(0x31f,0x4f6)+'t'](0x868+0x13d9+-0x1c41)),_0x1afe88['PUaWF']),{'encoding':_0x1afe88[_0x3745ec(-0xaf,0xee)]}),_0x23faba=_0x3d55ce['match'](/FreeSpace=(\d+)/);return _0x23faba?_0x1afe88[_0x4abd12(0x332,0x307)](parseInt,_0x23faba[-0x687+-0x189e+-0x6*-0x531],-0x12d1+0x380+0xf5b*0x1):null;}else _0x1b17a3['log'](_0x4abd12(0xde,-0xe7)+_0x3745ec(-0x8c,0x134)+_0x3745ec(-0x186,-0xb7)+_0x4f5f96+_0x4abd12(0x3ae,0x28d)+(_0x31b1a7>0x8f*0x3d+0x4dc+-0x26ee?'s':'')+(_0x3745ec(0x13b,0xea)+'sh\x20st'+'art!'));}else{if(_0x1afe88['mJGun'](_0x1afe88[_0x3745ec(0x20b,0x284)],_0x4abd12(0x449,0x473))){const _0xfd811b=_0x1afe88[_0x3745ec(0xd8,0x201)](execSync,_0x4abd12(0x1cd,0x3c2)+'\x20\x22'+ROOT+(_0x4abd12(0x37e,0x4cf)+'ail\x20-'+'1'),{'encoding':_0x1afe88['oMivG']}),_0x4c89fb=_0xfd811b[_0x3745ec(-0x68,0x100)]()[_0x3745ec(-0xe2,-0x6)](/\s+/);return _0x1afe88[_0x4abd12(0x375,0x29f)](parseInt,_0x4c89fb[0xaff*0x2+0xa*-0x13+-0x153d],-0x619+0x414+0x20f)*(0x2*-0x1353+-0x191*-0xe+0x14b8);}else{_0x1afe88[_0x4abd12(0x375,0x20f)](_0x30744a,_0x1afe88[_0x3745ec(0x2f1,0x31d)],{'stdio':_0x1afe88[_0x3745ec(-0xee,-0x9c)]});const _0x25bd2c={};_0x25bd2c[_0x3745ec(0x8,0x1f)]=_0xe70be1,_0x25bd2c[_0x3745ec(-0x7,0x1aa)]=_0x4db9e4,_0x25bd2c['detac'+'hed']=!![],_0x25bd2c[_0x4abd12(0x343,0x162)]=_0x4abd12(0x138,0x307)+'e',_0x455ae8=_0x1afe88[_0x4abd12(0x25e,0x23e)](_0x18a83c,_0x1afe88[_0x3745ec(-0x13c,0x64)],[_0x1afe88[_0x4abd12(0xb9,0x13e)],_0x5db3c7['execP'+_0x3745ec(0x15d,0x72)],_0x35334b,_0x33db8f[_0x3745ec(-0x159,-0xc1)+_0x3745ec(0x22b,0x69)](_0x3de710)],_0x25bd2c);}}})());if(freeBytes!==null){const freeMB=Math[_0x54d736(0x415,0x5d5)](freeBytes/((0x5ac+0x34e*-0xa+0x10*0x1f6)*(0x1*-0x1338+0x2f*0x6b+0x5*0xb7)));freeMB>=-0x895*-0x2+-0x6c5*0x1+0x1*-0x871?pass(_0x54d736(0x303,0x127)+_0x54d736(0x150,0x19e),freeMB+('\x20MB\x20f'+'ree')):warn(_0x8643f1(-0x9c,0x44)+_0x8643f1(-0x19a,-0x16f),freeMB+(_0x54d736(0x313,0x226)+_0x8643f1(-0xcd,-0xeb)+_0x8643f1(-0x20a,-0x1b4)+_0x54d736(0x439,0x460)+'\x20500\x20'+'MB'));}}catch{warn(_0x8643f1(0x1ef,0x44)+_0x54d736(0x150,-0x1e),_0x8643f1(0xc,-0xef)+_0x8643f1(-0xab,-0x1fe)+_0x8643f1(-0xaf,-0x70)+_0x8643f1(-0x394,-0x22c)+'free\x20'+_0x54d736(0x320,0x23c)+_0x8643f1(-0x210,-0x16f));}const _0x136c9a={};_0x136c9a['pass']=_0x8643f1(0x138,-0x95)+'✓\x1b[0m',_0x136c9a[_0x54d736(0x3c3,0x251)]=_0x54d736(0x28f,0x418)+_0x8643f1(0xcd,0x76),_0x136c9a[_0x8643f1(-0xdb,-0x1df)]=_0x54d736(0x8b,-0x95)+'!\x1b[0m';const icons=_0x136c9a;for(const r of results){console[_0x8643f1(-0x15e,-0x147)]('\x20\x20'+icons[r[_0x8643f1(0x11c,0xea)+'s']]+'\x20'+r['label']+':\x20'+r[_0x54d736(0x200,0x75)+'l']);}const passes=results[_0x54d736(0x1a0,0x37d)+'r'](_0x2b74b7=>_0x2b74b7[_0x8643f1(0x1e4,0xea)+'s']===_0x54d736(0xbf,0x96))['lengt'+'h'],fails=results['filte'+'r'](_0x2c8e9a=>_0x2c8e9a[_0x54d736(0x3a9,0x40c)+'s']===_0x8643f1(-0xc8,0x104))['lengt'+'h'],warns=results[_0x8643f1(-0x9b,-0x11f)+'r'](_0x153173=>_0x153173[_0x8643f1(0x2a9,0xea)+'s']===_0x8643f1(-0x114,-0x1df))[_0x8643f1(0x13,0x130)+'h'];console['log'](''),fails===-0x255a+-0x1d64+-0x2*-0x215f?console[_0x54d736(0x178,0x1f5)](_0x8643f1(0x69,-0x1e)+_0x54d736(0x165,0x2cc)+passes+(_0x8643f1(-0x140,-0xcc)+_0x8643f1(-0x76,0x121)+_0x54d736(0x403,0x5a1))+(warns?'\x20('+warns+(_0x54d736(0xf5,-0x74)+_0x54d736(0x31f,0x329))+(warns>0xc4d+-0x13b8*-0x1+-0x4*0x801?'s':'')+')':'')+'.'):console[_0x8643f1(0x6c,-0x147)]('\x20\x20⬡\x20'+passes+(_0x54d736(0x119,-0xa6)+_0x54d736(0x3da,0x3ba))+fails+('\x20fail'+'ed')+(warns?',\x20'+warns+(_0x8643f1(-0xc7,-0x1ca)+'ing')+(warns>-0x2ea*0x4+0x113c+-0x1*0x593?'s':''):'')+'.'),console[_0x8643f1(-0x27a,-0x147)](''),process['exit'](fails>0x1ff7+0xb*0x312+-0x1*0x41bd?-0x2561*0x1+0x164*0x8+-0x1a42*-0x1:0xff0+0x17ca+-0x1e*0x153);}function _0x54d736(_0x115b86,_0x36e0d4){return _0x1d2a(_0x115b86- -0x10,_0x36e0d4);}if(command===_0x54d736(0x2e5,0x1a2)){const {rmSync}=await import('fs');console[_0x8643f1(0x5f,-0x147)]('\x0a\x20\x20⬡\x20'+_0x8643f1(-0x132,-0xb1)+_0x8643f1(0x203,0x87)+'et\x0a'),console[_0x54d736(0x178,0x2bc)](_0x54d736(0x432,0x398)+_0x8643f1(-0x159,0x7d)+_0x8643f1(0x305,0x125)+'ar:'),console[_0x8643f1(-0x223,-0x147)](_0x8643f1(-0x9d,0x33)+_0x8643f1(-0xd3,-0x2d)+_0x54d736(0xf0,-0x46)+'ory\x20a'+_0x54d736(0x22f,0x1a9)+_0x8643f1(-0x36a,-0x1bd)+_0x54d736(0x16c,0x281)+_0x54d736(0x44d,0x444)),console['log']('\x20\x20\x20\x20•'+'\x20Uplo'+'aded\x20'+_0x8643f1(-0x8e,0xd2)+_0x8643f1(-0xf2,-0x1cb)+_0x54d736(0x2ee,0x113)+_0x8643f1(-0x5a,-0x10a)+'e'),console[_0x8643f1(-0x17a,-0x147)]('\x20\x20\x20\x20•'+_0x8643f1(-0xc6,-0x7f)+'ed\x20me'+'ssage'+'s\x20que'+'ue'),console[_0x54d736(0x178,0x2fe)](_0x8643f1(0x1c9,0x33)+_0x8643f1(-0x5f,0x1)+'\x20subs'+'cript'+_0x8643f1(-0x191,-0xd4)+_0x8643f1(-0x6e,0x184)+_0x8643f1(0x149,0x116)+_0x8643f1(-0x27b,-0x15c)+'ta'),console[_0x8643f1(-0x157,-0x147)](''),console['log'](_0x8643f1(0x35a,0x173)+'s\x20wil'+_0x8643f1(0x115,0x128)+_0x8643f1(0x107,0x11a)+'r:'),console[_0x8643f1(-0x72,-0x147)](_0x8643f1(-0x83,0x33)+_0x54d736(0x1e0,0x268)+_0x54d736(0x3d2,0x5ae)+_0x8643f1(-0x56,0xca)+'tion'),console['log'](_0x54d736(0x2f2,0xfd)+_0x54d736(0x392,0x280)+_0x54d736(0x238,0x3c4)+'les'),console[_0x8643f1(0x92,-0x147)](_0x8643f1(0x7b,0x33)+_0x8643f1(-0xfe,-0x237)+'serve'+'r\x20its'+_0x8643f1(-0xfc,-0x115));if(!flags['force']){const readline=await import(_0x8643f1(0x16e,-0x23)+'ine'),_0x46d967={};_0x46d967['input']=process[_0x8643f1(-0x232,-0xae)],_0x46d967[_0x8643f1(-0x141,0x81)+'t']=process[_0x8643f1(0x4d,-0x39)+'t'];const rl=readline[_0x8643f1(0x1c2,0x13c)+_0x8643f1(-0x49,-0x14a)+_0x8643f1(-0x39f,-0x1d7)](_0x46d967),answer=await new Promise(_0x910ada=>{const _0x4d8e9d={};function _0x28d3d7(_0xb6d7c4,_0x420e72){return _0x54d736(_0x420e72-0x276,_0xb6d7c4);}_0x4d8e9d[_0x1acf10(0x63d,0x458)]=_0x28d3d7(0x6a5,0x6dd)+'e\x20\x22re'+_0x28d3d7(0x62e,0x5eb)+'to\x20co'+'nfirm'+':\x20';const _0xd10c61=_0x4d8e9d;function _0x1acf10(_0x23b0ed,_0x532362){return _0x54d736(_0x532362-0x26b,_0x23b0ed);}rl[_0x1acf10(0x596,0x5df)+_0x28d3d7(0x3d2,0x43b)](_0xd10c61[_0x1acf10(0x648,0x458)],_0x910ada);});rl[_0x54d736(0x3c5,0x3fc)](),answer[_0x54d736(0x23d,0xc6)]()[_0x8643f1(-0x15d,-0xbb)+_0x8643f1(-0x2bc,-0xc2)+'e']()!=='reset'&&(console[_0x54d736(0x178,0x2eb)]('\x0a\x20\x20Ca'+_0x54d736(0x219,0x3e8)+'ed.\x20N'+_0x54d736(0x3c6,0x2e4)+_0x8643f1(0x117,-0x40)+_0x54d736(0x15d,0x345)+'ved.\x0a'),process[_0x54d736(0x42f,0x463)](0x2656+-0x3*0xf7+-0x2371)),console[_0x54d736(0x178,0x21e)]('');}const dataResets=[_0x54d736(0x26f,0x2c7)+_0x54d736(0x39d,0x1e8)+_0x54d736(0x2a9,0x145)+_0x8643f1(-0x241,-0x213),_0x8643f1(-0x261,-0x12f)+'ity.j'+_0x8643f1(-0x286,-0x213),'sync-'+_0x54d736(0x411,0x34b),_0x8643f1(0x303,0x15a)+_0x54d736(0x20a,0x3db)+'versa'+_0x8643f1(-0x2d0,-0x173),_0x54d736(0x32d,0x43e)+'ds',_0x54d736(0xf2,0x1ee),'.migr'+'ated'],rootResets=[_0x54d736(0x26f,0xab)+'ges-s'+'ync.j'+'son',_0x54d736(0x190,0x293)+'ity.j'+_0x54d736(0xac,0x1fc),_0x54d736(0x40d,0x238)+_0x54d736(0x411,0x349),_0x8643f1(0x196,0x15a)+'d-con'+_0x8643f1(-0xaa,-0x5c)+_0x54d736(0x14c,0x12a),_0x8643f1(0x14e,0x6e)+'ds',_0x8643f1(-0x115,-0x7)+'c/aud'+'io',_0x8643f1(-0x381,-0x1ac)+'d-mes'+_0x54d736(0x41b,0x4be)+_0x8643f1(-0x413,-0x225),_0x54d736(0x91,-0x140)+'subsc'+'ripti'+_0x54d736(0x285,0x15a)+_0x54d736(0xac,0x11b),_0x54d736(0x1f0,0x1d3)+_0x54d736(0x23b,0xcd),_0x8643f1(-0x2a9,-0xd9)+_0x8643f1(-0x1c,0x70)+'rver.'+_0x8643f1(-0x206,-0x147),_0x8643f1(-0x102,-0xd9)+'nk-wa'+'tchdo'+_0x8643f1(0x28a,0x189)];let cleared=-0x1bff+0x2*-0x1333+0x4265;for(const item of dataResets){const fullPath=join(DATA_DIR,item);if(existsSync(fullPath))try{const _0x1cf93a={};_0x1cf93a['recur'+_0x8643f1(0xe0,0x5)]=!![],_0x1cf93a[_0x54d736(0x84,0xee)]=!![],rmSync(fullPath,_0x1cf93a),cleared++,console['log'](_0x54d736(0x7e,0x175)+_0x54d736(0x13b,0x9f)+'d\x20DAT'+_0x54d736(0x358,0x4d3)+'/'+item);}catch(_0x795f08){console[_0x8643f1(-0xf0,0x55)](_0x54d736(0x324,0x342)+_0x54d736(0x409,0x369)+_0x8643f1(0x59,0x161)+_0x8643f1(-0x2c3,-0x184)+_0x8643f1(-0x1da,-0x106)+_0x8643f1(0x7f,-0xd8)+item+':\x20'+_0x795f08[_0x8643f1(0x176,-0x50)+'ge']);}}for(const item of rootResets){const fullPath=join(ROOT,item);if(existsSync(fullPath))try{const _0x5a010e={};_0x5a010e[_0x8643f1(-0x1a3,-0x16e)+_0x8643f1(-0x16,0x5)]=!![],_0x5a010e[_0x8643f1(-0x17d,-0x23b)]=!![],rmSync(fullPath,_0x5a010e),cleared++,console[_0x8643f1(0x3c,-0x147)]('\x20\x20✓\x20R'+_0x54d736(0x13b,0x315)+'d\x20'+item);}catch(_0xa41b7c){console[_0x54d736(0x314,0x3c0)](_0x54d736(0x324,0x14d)+_0x54d736(0x409,0x303)+_0x54d736(0x420,0x560)+'emove'+'\x20'+item+':\x20'+_0xa41b7c['messa'+'ge']);}}cleared===-0x180c+0xa82+0x2*0x6c5?console['log'](_0x54d736(0x11f,-0x67)+_0x54d736(0x237,0x1ba)+_0x54d736(0x347,0x255)+_0x54d736(0x155,0x281)+_0x8643f1(-0xe1,0xa3)+_0x8643f1(-0x33a,-0x196)+'lean.'):console[_0x54d736(0x178,0x1e1)](_0x8643f1(0x8,-0x1d5)+'Clear'+_0x8643f1(-0xe3,-0x239)+cleared+_0x8643f1(0xd7,0xfb)+(cleared>-0x5*-0x436+-0x17fa+0x7*0x6b?'s':'')+(_0x54d736(0x227,0x1db)+_0x54d736(0x336,0x42b)+_0x8643f1(0x147,-0x4c))),console[_0x54d736(0x178,-0x1d)](''),process[_0x8643f1(0x2f1,0x170)](-0x2187*-0x1+0x2495+-0x461c);}if(command===_0x8643f1(0x5e,0x1ab)){const require=createRequire(import.meta.url),pkg=require(join(ROOT,'packa'+_0x8643f1(0x47,0xb3)+'on')),ENV_FILE=existsSync(join(DATA_DIR,'.env'))?join(DATA_DIR,'.env'):join(ROOT,_0x54d736(0xc2,0x5f));let envPort=_0x8643f1(0x15b,0x10c),envHost=_0x54d736(0x463,0x39b)+'.0',envGatewayUrl='http:'+_0x8643f1(0x84,0x16f)+_0x54d736(0x28b,0x33a)+_0x8643f1(-0x214,-0xe8)+'89',envGatewayToken='';if(existsSync(ENV_FILE))try{const content=readFileSync(ENV_FILE,_0x54d736(0x195,0x340));for(const line of content[_0x54d736(0x137,0x5)]('\x0a')){const t=line[_0x8643f1(0x94,-0x82)]();if(!t||t[_0x8643f1(0x224,0x168)+_0x54d736(0x1ce,-0x1b)]('#'))continue;const eqIdx=t['index'+'Of']('=');if(eqIdx===-(-0x5e4+-0xdf*-0x4+0x1*0x269))continue;const k=t[_0x8643f1(0x18e,0xec)](-0x1902+0x8*-0x283+0x2d1a,eqIdx)['trim'](),v=t[_0x54d736(0x3ab,0x543)](eqIdx+(-0x106+-0x18c2+-0x11f*-0x17))[_0x8643f1(-0x62,-0x82)]();if(k==='PORT')envPort=v||_0x54d736(0x3cb,0x3a0);if(k===_0x54d736(0x214,0x393)+_0x8643f1(-0x137,0x21)+'T'||k===_0x8643f1(-0x6a,-0x7d))envHost=v||'0.0.0'+'.0';if(k===_0x8643f1(0x3,-0x9d)+_0x8643f1(-0x184,-0xf4)+'L')envGatewayUrl=v;if(k==='GATEW'+_0x8643f1(-0x1eb,-0x1c2)+_0x8643f1(0x21f,0x5d))envGatewayToken=v;}}catch{}const watchdogPid=getWatchdogPid(),serverPid=getPid(),isServerRunning=!!(watchdogPid||serverPid),serverStatus=isServerRunning?_0x8643f1(-0x1d7,-0x95)+'runni'+_0x54d736(0x3b4,0x579)+_0x54d736(0x259,0x1bd)+'D\x20'+(watchdogPid||serverPid)+')':_0x8643f1(0x10b,-0x30)+_0x54d736(0x361,0x245)+_0x54d736(0x98,-0x102)+'m',gwReachable=await new Promise(_0x3167f7=>{function _0x5e2f36(_0x1eb6cb,_0x382e38){return _0x8643f1(_0x1eb6cb,_0x382e38-0x56);}const _0x1c4cb7={'hqZOi':function(_0x38ba9c,_0x236331,_0x16597a){return _0x38ba9c(_0x236331,_0x16597a);},'UuHjZ':function(_0x1ebd32,_0x2e007e){return _0x1ebd32===_0x2e007e;},'CmttC':_0x5e2f36(-0x14f,-0xc0),'shIhQ':function(_0x30ab97,_0x41305b){return _0x30ab97(_0x41305b);},'DEYXa':'GET'};function _0xc35ddc(_0x34f4f7,_0x4e1f93){return _0x8643f1(_0x4e1f93,_0x34f4f7-0x31a);}try{const _0x14c057=new URL(envGatewayUrl),_0x133d19={};_0x133d19[_0x5e2f36(0xd3,-0x8a)+'ame']=_0x14c057[_0x5e2f36(0xe0,-0x8a)+'ame'],_0x133d19[_0xc35ddc(0x19e,0x2bd)]=_0x14c057[_0x5e2f36(-0xc7,-0x126)]||0x5*-0x527+-0x12ea+0x2cfd,_0x133d19['path']='/',_0x133d19['metho'+'d']=_0x1c4cb7[_0xc35ddc(0x324,0x28c)],_0x133d19['timeo'+'ut']=0xbb8;const _0x15c6ad=_0x497eb7[_0xc35ddc(0x372,0x27b)+'st'](_0x133d19,_0x3d92df=>{function _0x12c109(_0x3e7971,_0x4cdfce){return _0x5e2f36(_0x4cdfce,_0x3e7971- -0xf7);}function _0x134f74(_0x18a5fe,_0x320031){return _0x5e2f36(_0x18a5fe,_0x320031-0x567);}const _0x201f55={'pAxem':function(_0x19e38e,_0x23e58b,_0x141a3f){return _0x1c4cb7['hqZOi'](_0x19e38e,_0x23e58b,_0x141a3f);}};if(_0x1c4cb7['UuHjZ'](_0x1c4cb7['CmttC'],_0x134f74(0x527,0x4a7)))_0x3d92df['resum'+'e'](),_0x3167f7(!![]);else{const _0x1fbe50={};_0x1fbe50[_0x134f74(0x349,0x44f)+_0x12c109(-0x9c,-0x39)]=!![],_0x1fbe50[_0x134f74(0x353,0x382)]=!![],qrKlOU[_0x134f74(0x49f,0x62a)](_0x4bdd46,_0x50afe6,_0x1fbe50),_0x516c24++,_0x117581[_0x12c109(-0x1e8,-0x2e)]('\x20\x20✓\x20R'+_0x12c109(-0x225,-0x99)+'d\x20'+_0x51fd5f);}});_0x15c6ad['on'](_0xc35ddc(0x36f,0x1ae),()=>_0x3167f7(![])),_0x15c6ad['on'](_0x5e2f36(0xfa,0x1b6)+'ut',()=>{function _0x130336(_0x342615,_0x46ae37){return _0x5e2f36(_0x46ae37,_0x342615-0x23c);}_0x15c6ad[_0x130336(0x6c,-0x8d)+'oy'](),_0x1c4cb7['shIhQ'](_0x3167f7,![]);}),_0x15c6ad[_0x5e2f36(0x158,0x143)]();}catch{_0x3167f7(![]);}}),gwStatus=gwReachable?envGatewayUrl+(_0x54d736(0x3f0,0x2e8)+_0x8643f1(-0x191,-0x201)+_0x8643f1(0x2ba,0x171)+_0x8643f1(-0x7e,-0x42)+'m'):envGatewayUrl+('\x20\x1b[31'+'m(unr'+_0x8643f1(-0x29f,-0xbd)+_0x8643f1(-0x2db,-0x159)+_0x54d736(0x384,0x39d)),LOG_FILE=join(ROOT,_0x54d736(0x1f0,0x3b6)+_0x8643f1(0x10a,-0x84)),ALT_LOG_FILE=join(ROOT,'.upli'+_0x54d736(0x32f,0x4c8)+_0x54d736(0x1f5,0x158)+_0x54d736(0x178,0x2a5)),logFile=existsSync(LOG_FILE)?LOG_FILE:existsSync(ALT_LOG_FILE)?ALT_LOG_FILE:_0x54d736(0x251,0xbf)+')',premiumFile=join(ROOT,_0x54d736(0x1f0,0x1ab)+'r',_0x54d736(0xbb,0xcd)+'um');let premiumStatus=_0x54d736(0x139,0x198)+_0x54d736(0xa0,-0xd8)+'ed';existsSync(premiumFile)&&(premiumStatus='insta'+'lled');const configFile=join(ROOT,_0x8643f1(-0xe2,0x9e)+_0x8643f1(-0x184,-0x23f)+'n');if(existsSync(configFile))try{const cfg=JSON[_0x8643f1(-0x4a,-0x22)](readFileSync(configFile,_0x8643f1(-0x1e2,-0x12a)));if(cfg[_0x8643f1(-0x1f7,-0x204)+'um']||cfg[_0x54d736(0xbb,-0x123)+'umKey'])premiumStatus=_0x54d736(0x190,0x125)+'e';}catch{}console[_0x54d736(0x178,0x11d)]('\x0a\x20\x20⬡\x20'+_0x54d736(0x20e,0x2d1)+_0x54d736(0x3a5,0x1dd)+'o\x0a\x0a\x20\x20'+_0x8643f1(-0x1b,0x10f)+_0x54d736(0x25a,0x30b)+_0x54d736(0x37f,0x536)+pkg['versi'+'on']+(_0x54d736(0x189,0x303)+_0x8643f1(-0x148,-0x1fc)+_0x54d736(0xa2,0x18c)+_0x8643f1(-0x21c,-0x86))+process[_0x8643f1(-0x98,-0x130)+_0x8643f1(-0xe5,-0x1b2)][_0x8643f1(0x16f,-0x3f)]+('\x0a\x20\x20Po'+'rt:\x20\x20'+'\x20\x20\x20\x20\x20'+'\x20\x20')+envPort+('\x0a\x20\x20Ho'+_0x54d736(0x1ea,0x1e7)+_0x54d736(0x1c3,-0x1e)+'\x20\x20')+envHost+(_0x54d736(0x3e2,0x5a3)+_0x8643f1(0x28,-0xa9)+_0x8643f1(-0x123,-0xfc)+'\x20\x20')+serverStatus+('\x0a\x20\x20Ga'+_0x8643f1(0xac,0x96)+_0x54d736(0xa2,0x147)+'\x20\x20')+gwStatus+(_0x54d736(0xe5,0x2b7)+_0x54d736(0x2f4,0x1a1)+'r:\x20\x20\x20'+'\x20\x20')+DATA_DIR+(_0x8643f1(-0x81,-0x238)+'g\x20fil'+_0x54d736(0x462,0x640)+'\x20\x20')+logFile+(_0x8643f1(-0x39e,-0x20f)+'emium'+_0x54d736(0xa2,0x124)+'\x20\x20')+premiumStatus+('\x0a\x20\x20In'+_0x54d736(0x460,0x2f4)+_0x54d736(0x401,0x477)+'\x20\x20')+ROOT+_0x8643f1(-0x59,-0x1a1)),process['exit'](-0x2106*0x1+0x1595*-0x1+-0x7cd*-0x7);}const ALL_COMMANDS=[_0x54d736(0x459,0x391),_0x54d736(0x3a9,0x3d7)+'s','updat'+'e',_0x8643f1(0x210,0x154)+_0x8643f1(0x6e,0xfd),_0x8643f1(-0x145,-0x131),_0x8643f1(0x283,0x9e)+'g','docto'+'r','reset',_0x8643f1(0x2b9,0x1ab)];if(command===_0x8643f1(-0x81,0x168)||!ALL_COMMANDS['inclu'+'des'](command)){const existingWatchdog=getWatchdogPid(),existingPid=getPid();if(existingWatchdog||existingPid){const pid=existingWatchdog||existingPid,mode=existingWatchdog?_0x8643f1(0x9b,0x153)+_0x54d736(0x20d,0x1e):_0x8643f1(-0xb6,0x10d)+'t';console[_0x8643f1(-0x157,-0x147)]('⬡\x20Upl'+_0x8643f1(-0x6a,-0x41)+_0x54d736(0x248,0x110)+_0x54d736(0x2ae,0x400)+_0x54d736(0x124,0x3)+_0x8643f1(-0x2c0,-0x13f)+mode+(_0x8643f1(0xec,-0xaf)+'\x20')+pid+').'),console['log'](_0x54d736(0x2d9,0x2fa)+_0x54d736(0x272,0x412)+_0x54d736(0x1a7,0x1e7)+':\x20upl'+_0x54d736(0x30f,0x1e6)+_0x8643f1(0x16f,-0x4f)+_0x8643f1(-0x1d3,-0x114)),process[_0x8643f1(0x2d4,0x170)](0x1*-0xdd9+-0x229d+0x3077);}const env={...process.env};if(flags[_0x54d736(0x143,0x317)])env['PORT']=String(flags[_0x54d736(0x143,0xa7)]);if(flags['host'])env[_0x54d736(0x214,0x3b)+_0x8643f1(0xce,0x21)+'T']=flags[_0x54d736(0x14d,-0x19)];const serverPath=join(ROOT,_0x54d736(0x1f0,0x2ee)+_0x54d736(0x181,0x290));if(flags[_0x8643f1(-0x64,-0x14)+'h']){const watchdogPath=join(ROOT,_0x8643f1(-0x2c8,-0xcf)+'r',_0x54d736(0x412,0x432)+'dog.j'+'s'),extraEnv={};if(flags[_0x54d736(0x143,-0x43)])extraEnv[_0x54d736(0x290,0x151)]=String(flags['port']);if(flags[_0x8643f1(0x50,-0x172)])extraEnv[_0x8643f1(-0xae,-0xab)+_0x8643f1(0x93,0x21)+'T']=flags[_0x8643f1(0x54,-0x172)];const isLinux=process[_0x54d736(0x24c,0x153)+_0x54d736(0x25c,0x1cb)]==='linux';let child;if(isLinux)try{const _0x5e2b04={};_0x5e2b04[_0x54d736(0x34f,0x482)]=_0x54d736(0x144,-0x95)+'e',execSync(_0x8643f1(-0xb1,0x8a)+_0x54d736(0x330,0x47e)+'id',_0x5e2b04);const _0x40a72b={};_0x40a72b[_0x8643f1(-0x19,-0x163)]=ROOT,_0x40a72b['env']=env,_0x40a72b[_0x8643f1(0x5c,-0x14)+_0x54d736(0x2ec,0x3fd)]=!![],_0x40a72b[_0x8643f1(0x282,0x90)]=_0x8643f1(-0x368,-0x17b)+'e',child=spawn(_0x54d736(0x2dc,0x347)+'d',[_0x54d736(0xbc,-0x10f)+'k',process[_0x54d736(0x7f,0x277)+'ath'],watchdogPath,JSON[_0x8643f1(-0x18f,-0x243)+_0x54d736(0x1a6,0x29e)](extraEnv)],_0x40a72b);}catch{const _0x3d4eab={};_0x3d4eab[_0x54d736(0x15c,0x2f8)]=ROOT,_0x3d4eab['env']=env,_0x3d4eab['detac'+_0x54d736(0x2ec,0x3e9)]=!![],_0x3d4eab[_0x54d736(0x34f,0x3d3)]=_0x54d736(0x144,0xa2)+'e',child=spawn(process[_0x54d736(0x7f,-0x16e)+_0x8643f1(-0x306,-0x110)],[watchdogPath,JSON['strin'+_0x54d736(0x1a6,0x3e)](extraEnv)],_0x3d4eab);}else{const _0x8f39af={};_0x8f39af[_0x54d736(0x15c,0x109)]=ROOT,_0x8f39af[_0x54d736(0x2e7,0x26a)]=env,_0x8f39af[_0x8643f1(0x29,-0x14)+_0x54d736(0x2ec,0x2ca)]=!![],_0x8f39af[_0x8643f1(0x202,0x90)]='ignor'+'e',child=spawn(process['execP'+'ath'],[watchdogPath,JSON['strin'+_0x8643f1(0xc2,-0x119)](extraEnv)],_0x8f39af);}child['unref']();const port=flags[_0x8643f1(-0x191,-0x17c)]||env[_0x8643f1(-0x4a,-0x2f)]||0x3*0x1e2+-0xf4*-0x10+-0x766;console['log']('⬡\x20Upl'+_0x8643f1(-0x6,-0xc3)+'tarte'+_0x54d736(0x186,0x11c)+_0x8643f1(-0xc7,-0x18b)+'round'+_0x54d736(0x435,0x399)+_0x54d736(0x1c4,0x154)+_0x8643f1(-0x3e,-0x1e2)+_0x8643f1(-0x2a2,-0x1d4)+child[_0x54d736(0x353,0x1b4)]+').'),console[_0x8643f1(-0x2c0,-0x147)]('\x20\x20→\x20h'+_0x8643f1(-0x3c9,-0x209)+'/loca'+_0x54d736(0x26d,0x3f4)+':'+port),console[_0x54d736(0x178,0x2c5)](_0x8643f1(-0x14d,-0x109)+_0x8643f1(-0x17,0xce)+_0x54d736(0x383,0x21c)+_0x54d736(0x457,0x5f8)+'rash.'+_0x8643f1(-0xcc,-0x124)+_0x8643f1(0xe5,0x176)+_0x54d736(0xd1,0x293)+'ink-c'+_0x54d736(0x270,0x35e)+_0x54d736(0x1ab,0x2ec)),process[_0x8643f1(0x1f9,0x170)](-0x3*-0x68f+-0x269*-0x1+-0x1616);}else{if(flags[_0x8643f1(-0xee,-0x1cc)+_0x54d736(0x95,0x210)]){const _0x4351e8={};_0x4351e8['cwd']=ROOT,_0x4351e8['env']=env,_0x4351e8[_0x54d736(0x34f,0x434)]=_0x8643f1(-0x55,-0x132)+'it';const child=spawn(process['execP'+_0x54d736(0x1af,-0x36)],[serverPath],_0x4351e8);writeFileSync(PID_FILE,String(child[_0x54d736(0x353,0x304)]));const cleanup=()=>{function _0x190be(_0x334e18,_0x59bae9){return _0x8643f1(_0x59bae9,_0x334e18-0x385);}function _0x52391f(_0x150a04,_0x13d152){return _0x8643f1(_0x13d152,_0x150a04- -0x59);}const _0x3ffc52={'mzQfM':function(_0x467e35,_0x2aac2c,_0x4f1555){return _0x467e35(_0x2aac2c,_0x4f1555);},'rvRRc':_0x190be(0x3c9,0x428)+'space','gNyZF':_0x190be(0x296,0x277)+_0x52391f(-0x257,-0x30e)+'deter'+_0x52391f(-0x285,-0x39a)+'free\x20'+_0x52391f(0x8,0xa8)+'space','gjxSX':_0x52391f(-0x1cd,-0x1c4),'yjGWR':function(_0x1f4ebf,_0x1c2d67){return _0x1f4ebf(_0x1c2d67);}};try{_0x190be(0x443,0x442)===_0x3ffc52[_0x52391f(-0x1a4,-0x173)]?TVoBFD[_0x52391f(0x48,0x152)](_0x1bbe42,TVoBFD[_0x52391f(-0x1f2,-0x2)],TVoBFD['gNyZF']):_0x3ffc52[_0x52391f(0x134,0x3e)](unlinkSync,PID_FILE);}catch{}};process['on']('SIGIN'+'T',()=>{function _0x39b6ba(_0x27caca,_0x497654){return _0x54d736(_0x497654-0x1b6,_0x27caca);}const _0x1c41f7={'OEdPK':function(_0x43aad1){return _0x43aad1();}};_0x1c41f7[_0x39b6ba(0x611,0x4b6)](cleanup),process['exit'](-0x51*-0x10+-0x11*-0x26+-0x3cb*0x2);}),process['on'](_0x8643f1(-0x182,-0xfd)+'RM',()=>{function _0x5c1407(_0x5f4519,_0x5dbaba){return _0x54d736(_0x5f4519- -0x3c2,_0x5dbaba);}const _0xa59e60={'xUCZr':function(_0x429769){return _0x429769();}};function _0x4ef69b(_0x89f493,_0x579852){return _0x54d736(_0x89f493-0x28e,_0x579852);}_0xa59e60[_0x4ef69b(0x4e5,0x648)](cleanup),process[_0x4ef69b(0x6bd,0x841)](0x21a2+-0x1088+-0x111a);}),child['on'](_0x54d736(0x42f,0x3e0),_0x93d130=>{function _0x10cc76(_0x5a546e,_0x43a420){return _0x8643f1(_0x5a546e,_0x43a420-0x364);}const _0x21d011={'POMPE':function(_0x38c257){return _0x38c257();},'QQdKX':function(_0x26d044,_0x461b7f){return _0x26d044||_0x461b7f;}};function _0x2ef71b(_0xc8365,_0x81733){return _0x8643f1(_0xc8365,_0x81733-0x55e);}_0x21d011[_0x2ef71b(0x6be,0x676)](cleanup),process[_0x2ef71b(0x8bc,0x6ce)](_0x21d011[_0x2ef71b(0x5b1,0x4e3)](_0x93d130,-0x22f3*-0x1+0x234b+0xa2*-0x6f));});}else{const watchdogPath=join(ROOT,_0x54d736(0x1f0,0x20b)+'r',_0x54d736(0x412,0x4c5)+_0x8643f1(-0x21,0x51)+'s'),extraEnv={};if(flags['port'])extraEnv[_0x54d736(0x290,0x459)]=String(flags[_0x54d736(0x143,-0x86)]);if(flags[_0x8643f1(0x18,-0x172)])extraEnv[_0x54d736(0x214,0x19a)+'K_HOS'+'T']=flags[_0x8643f1(0x7d,-0x172)];const _0x1d4f37={};_0x1d4f37[_0x8643f1(-0x300,-0x163)]=ROOT,_0x1d4f37['env']=env,_0x1d4f37[_0x54d736(0x34f,0x1f6)]=_0x54d736(0x18d,0x300)+'it';const child=spawn(process['execP'+'ath'],[watchdogPath,JSON['strin'+_0x54d736(0x1a6,0x5f)](extraEnv)],_0x1d4f37),port=flags[_0x8643f1(-0xeb,-0x17c)]||env['PORT']||0x234d*0x1+0x1608+0x7*-0x643;console[_0x54d736(0x178,0x32e)]('⬡\x20Upl'+_0x54d736(0x1fc,0xea)+_0x54d736(0x1ac,0x2cc)+'ng\x20wi'+_0x54d736(0x2ad,0xf5)+'tchdo'+'g\x20(au'+_0x54d736(0x20f,0xda)+_0x8643f1(-0x92,0x168)+_0x54d736(0x398,0x55a)+_0x54d736(0x31e,0x364)),console[_0x8643f1(0x12,-0x147)](_0x8643f1(0xb9,0x158)+_0x54d736(0xb6,-0x11c)+_0x8643f1(-0x223,-0x143)+'lhost'+':'+port),console[_0x8643f1(-0x2b6,-0x147)](_0x8643f1(-0x2df,-0x17d)+'\x20--no'+_0x54d736(0x266,0x10a)+_0x8643f1(-0x184,-0x1e2)+_0x54d736(0x179,0x194)+'aw\x20se'+'rver\x20'+_0x54d736(0xf8,0x16c)),process['on']('SIGIN'+'T',()=>{const _0x4f45b5={};function _0x393b30(_0x5eb76e,_0x44f707){return _0x54d736(_0x44f707- -0x3bc,_0x5eb76e);}_0x4f45b5[_0x393b30(0x30,0x96)]='SIGTE'+'RM';const _0xda85ec=_0x4f45b5;function _0x436018(_0x59603d,_0x182340){return _0x54d736(_0x182340-0x37b,_0x59603d);}child[_0x393b30(0x186,-0x41)](_0xda85ec[_0x436018(0x702,0x7cd)]);}),process['on']('SIGTE'+'RM',()=>{const _0xfc0968={};_0xfc0968[_0x31fe4d(-0x28e,-0x9c)]=_0x31fe4d(-0xd0,-0x153)+'RM';const _0x276072=_0xfc0968;function _0x31fe4d(_0x2b32db,_0x587ddf){return _0x54d736(_0x587ddf- -0x315,_0x2b32db);}function _0x2b48a8(_0x3cfc10,_0x2f335e){return _0x54d736(_0x3cfc10- -0x181,_0x2f335e);}child[_0x31fe4d(-0x11a,0x66)](_0x276072[_0x31fe4d(0x128,-0x9c)]);}),child['on']('exit',_0xaff8c3=>{const _0x254bc7={};_0x254bc7[_0x31f757(0x16f,0x101)]=function(_0x539a54,_0x27ef9e){return _0x539a54||_0x27ef9e;};function _0x31f757(_0xdeb025,_0x4c9a78){return _0x8643f1(_0x4c9a78,_0xdeb025-0xe0);}const _0x352e9d=_0x254bc7;function _0x209c7b(_0x2bcac6,_0x2027b7){return _0x8643f1(_0x2bcac6,_0x2027b7-0x83);}process[_0x31f757(0x250,0x3fd)](_0x352e9d[_0x209c7b(-0x52,0x112)](_0xaff8c3,0x23*0x39+-0x1501+0xd36));});}}}
@@ -1 +1 @@
1
- (function(_0x3c1a1c,_0x2fd244){function _0x35e184(_0x25654d,_0x39523d){return _0x1d8e(_0x39523d- -0x259,_0x25654d);}function _0x36eecb(_0x3d3d9b,_0x5a8bcb){return _0x1d8e(_0x3d3d9b-0x1f8,_0x5a8bcb);}const _0x8b4095=_0x3c1a1c();while(!![]){try{const _0x5f562a=-parseInt(_0x35e184(-0x16e,-0x180))/(0x1169+-0x589*0x2+-0x32b*0x2)*(parseInt(_0x35e184(-0x1cd,-0x1ca))/(-0x1513+-0x116c+0x2681))+-parseInt(_0x35e184(-0x1b7,-0x1c2))/(0x1bf0+-0x4c7+-0x1726*0x1)+parseInt(_0x36eecb(0x29a,0x292))/(0x2560+-0x17f5*-0x1+0x3d51*-0x1)+-parseInt(_0x35e184(-0x19b,-0x1c4))/(-0x12bc+0x2*0xfe+0x9*0x1dd)*(-parseInt(_0x35e184(-0x1f7,-0x1d3))/(-0xf6b*0x1+0x14df+0x2*-0x2b7))+-parseInt(_0x36eecb(0x2be,0x2ca))/(0x35*-0x25+-0xff6+0x3f1*0x6)*(-parseInt(_0x36eecb(0x290,0x2ac))/(0x2513+-0x20d8+-0x433))+parseInt(_0x36eecb(0x294,0x291))/(-0x2504+-0xfec+0x34f9)*(-parseInt(_0x35e184(-0x1b0,-0x18c))/(-0xe*-0x241+-0x4*-0x37b+-0x2d70*0x1))+parseInt(_0x35e184(-0x1b4,-0x1c0))/(-0x2bc+0xe88+-0xbc1);if(_0x5f562a===_0x2fd244)break;else _0x8b4095['push'](_0x8b4095['shift']());}catch(_0x58a4b4){_0x8b4095['push'](_0x8b4095['shift']());}}}(_0x3d82,0x82997+0x1*0xcce50+-0xaf153));const _0x5ba000=(function(){const _0xe39481={};_0xe39481[_0x5ee215(0x37e,0x387)]=_0x5ee215(0x3b0,0x388)+'WN',_0xe39481['EruYO']=_0x50e90c(-0x187,-0x15d)+_0x5ee215(0x39a,0x3bd),_0xe39481[_0x5ee215(0x3b1,0x3b9)]=function(_0x4ab871,_0x2e484b){return _0x4ab871!==_0x2e484b;},_0xe39481[_0x5ee215(0x35a,0x384)]=_0x5ee215(0x3e5,0x3c3),_0xe39481[_0x50e90c(-0x1a7,-0x1c6)]=_0x5ee215(0x3a0,0x3ae),_0xe39481['jgNXX']=function(_0x1e2fb6,_0x5b70fb){return _0x1e2fb6===_0x5b70fb;},_0xe39481['Zbesg']=_0x5ee215(0x3b9,0x3c1);function _0x5ee215(_0x2923a3,_0x343e1f){return _0x1d8e(_0x343e1f-0x2e9,_0x2923a3);}const _0x4e3456=_0xe39481;function _0x50e90c(_0xad9751,_0x584d9c){return _0x1d8e(_0xad9751- -0x238,_0x584d9c);}let _0x3a79ee=!![];return function(_0x49695b,_0x3c821a){function _0x1b5342(_0x41b302,_0xae7991){return _0x50e90c(_0xae7991-0x29b,_0x41b302);}function _0x17092d(_0x5c4ed4,_0x765c66){return _0x50e90c(_0x5c4ed4- -0x129,_0x765c66);}const _0x2b480b={'nNZmO':_0x17092d(-0x2d3,-0x2fb)+_0x1b5342(0x10a,0xed)+'+$','qmYVX':_0x4e3456[_0x1b5342(0x116,0x101)],'FwnDH':_0x4e3456[_0x17092d(-0x2b8,-0x2a4)],'bGiiD':function(_0x52021a,_0x501d39){function _0x1604ac(_0x4a5f2c,_0x327dbc){return _0x17092d(_0x4a5f2c-0x3d7,_0x327dbc);}return _0x4e3456[_0x1604ac(0x146,0x13f)](_0x52021a,_0x501d39);},'RetSN':_0x4e3456[_0x17092d(-0x2c6,-0x29b)],'dJUsy':_0x4e3456[_0x1b5342(0xf7,0xf4)]};if(_0x4e3456[_0x17092d(-0x2af,-0x2d0)](_0x4e3456[_0x1b5342(0x13b,0x123)],_0x4e3456[_0x1b5342(0x144,0x123)])){const _0xe7580e=_0x3a79ee?function(){const _0xba0681={};_0xba0681['EELfi']='Error';function _0x12dcf8(_0x2f3f4e,_0x7b9713){return _0x1b5342(_0x2f3f4e,_0x7b9713- -0x41d);}_0xba0681[_0x513cdf(0x6a,0x4f)]=_0x2b480b['qmYVX'],_0xba0681[_0x12dcf8(-0x343,-0x328)]=_0x2b480b[_0x513cdf(0x36,0x13)];function _0x513cdf(_0x36ecd1,_0x414a4e){return _0x1b5342(_0x414a4e,_0x36ecd1- -0xbd);}const _0xdb67bf=_0xba0681;if(_0x2b480b[_0x513cdf(0x62,0x54)](_0x2b480b[_0x12dcf8(-0x317,-0x314)],_0x2b480b[_0x513cdf(0x4c,0x35)]))return _0x3608a5[_0x513cdf(0x2e,0x3e)+_0x12dcf8(-0x30d,-0x2fc)]()[_0x12dcf8(-0x2ee,-0x302)+'h'](_0x2b480b['nNZmO'])[_0x12dcf8(-0x31a,-0x332)+_0x12dcf8(-0x2d3,-0x2fc)]()['const'+_0x513cdf(0x60,0x53)+'r'](_0x406980)[_0x12dcf8(-0x32b,-0x302)+'h'](_0x2b480b[_0x513cdf(0x75,0x57)]);else{if(_0x3c821a){if(_0x2b480b[_0x513cdf(0x62,0x3e)](_0x12dcf8(-0x2d2,-0x2f5),_0x2b480b[_0x12dcf8(-0x315,-0x301)])){const _0x107f74=new _0x489d80()[_0x513cdf(0x40,0x30)+_0x12dcf8(-0x30f,-0x312)+'g'](),_0x15e3cb=_0x9b59ca[_0x513cdf(0x7d,0xa4)+_0x513cdf(0x60,0x66)+'r']?.[_0x12dcf8(-0x2fb,-0x2ee)]||_0x181633[_0x513cdf(0x72,0x90)]||_0xdb67bf[_0x12dcf8(-0x309,-0x317)],_0x4be708={};_0x4be708[_0x12dcf8(-0x2fd,-0x2f8)+_0x12dcf8(-0x319,-0x2ef)]=_0x107f74,_0x4be708[_0x513cdf(0x69,0x77)+_0x513cdf(0x50,0x75)]=_0x110c7c,_0x4be708[_0x12dcf8(-0x2e3,-0x2fb)+'Type']=_0x15e3cb,_0x4be708[_0x513cdf(0x2f,0x24)+'ge']=_0x19dc67['messa'+'ge'],_0x4be708[_0x12dcf8(-0x2e6,-0x304)]=_0x5274f7[_0x513cdf(0x5c,0x7c)]||_0xdb67bf['dzroh'],_0x4be708[_0x513cdf(0x6d,0x6d)+_0x12dcf8(-0x2fc,-0x303)]=_0x24026d[_0x12dcf8(-0x311,-0x2f3)+_0x513cdf(0x5d,0x6e)]||0x5*-0x6d5+-0xedb+0x32f8,_0x4be708[_0x12dcf8(-0x31a,-0x31d)+'ratio'+'nal']=_0x4d1ea9['isOpe'+_0x513cdf(0x2d,0x25)+'nal']||![],_0x4be708[_0x12dcf8(-0x2c4,-0x2e8)]=_0x4c58b3[_0x513cdf(0x78,0x4f)],_0x4be708[_0x12dcf8(-0x2fc,-0x2e7)]=_0x41480f?.[_0x513cdf(0x79,0x65)],_0x4be708[_0x513cdf(0x4d,0x33)+'d']=_0x79b8f4?.['metho'+'d'],_0x4be708[_0x12dcf8(-0x2d9,-0x2ec)+'gent']=_0x534d86?.[_0x12dcf8(-0x30c,-0x32f)+'rs']?.[_0xdb67bf[_0x12dcf8(-0x301,-0x328)]],_0x4be708['ip']=_0x29868c?.['ip']||_0x1f82c7?.[_0x12dcf8(-0x31a,-0x30a)+'t']?.[_0x513cdf(0x3c,0x4a)+_0x12dcf8(-0x326,-0x319)+_0x12dcf8(-0x2f4,-0x306)];const _0x16977f=_0x4be708;_0x5407d0[_0x12dcf8(-0x303,-0x2fb)](_0x837ead['strin'+_0x12dcf8(-0x323,-0x31a)](_0x16977f));}else{const _0x279958=_0x3c821a['apply'](_0x49695b,arguments);return _0x3c821a=null,_0x279958;}}}}:function(){};return _0x3a79ee=![],_0xe7580e;}else{const _0x1de8c0={};return _0x1de8c0[_0x17092d(-0x2a2,-0x2ba)]=!![],_0x1de8c0[_0x1b5342(0xe8,0xec)+'ge']=_0x1480b8[_0x17092d(-0x2d8,-0x2df)+'ge'],_0x1de8c0[_0x17092d(-0x2ab,-0x296)]=_0x599a3b[_0x1b5342(0x13e,0x119)],_0x1de8c0;}};}()),_0x5ef7fc=_0x5ba000(this,function(){function _0x44cac9(_0x2ff3c3,_0x2586d6){return _0x1d8e(_0x2586d6- -0x114,_0x2ff3c3);}const _0x16bb96={};_0x16bb96[_0x44cac9(-0x42,-0x59)]='(((.+'+_0x44cac9(-0x66,-0x8a)+'+$';function _0x1596dd(_0x3a6714,_0x479afd){return _0x1d8e(_0x3a6714-0x10,_0x479afd);}const _0x1b5a09=_0x16bb96;return _0x5ef7fc[_0x44cac9(-0xa9,-0x8c)+'ing']()['searc'+'h'](_0x1b5a09[_0x1596dd(0xcb,0xe7)])[_0x1596dd(0x98,0x74)+'ing']()[_0x44cac9(-0x59,-0x3d)+_0x44cac9(-0x85,-0x5a)+'r'](_0x5ef7fc)['searc'+'h'](_0x44cac9(-0x96,-0x86)+_0x1596dd(0x9a,0x7c)+'+$');});_0x5ef7fc();function logError(_0x92261d,_0x3b037d,_0x1ea846){const _0x1cb1ac={};_0x1cb1ac[_0x167a52(0x182,0x189)]=_0x1407e7(0x36f,0x35b),_0x1cb1ac[_0x1407e7(0x38d,0x372)]=_0x167a52(0x18f,0x173)+'WN',_0x1cb1ac[_0x1407e7(0x395,0x388)]='user-'+_0x1407e7(0x398,0x3b4);const _0xc4c2db=_0x1cb1ac;function _0x167a52(_0x45c6bc,_0x105414){return _0x1d8e(_0x105414-0xd4,_0x45c6bc);}const _0x5e379b=new Date()[_0x167a52(0x198,0x16e)+_0x1407e7(0x36c,0x350)+'g'](),_0x5a2c3f=_0x92261d['const'+'ructo'+'r']?.[_0x1407e7(0x390,0x386)]||_0x92261d[_0x1407e7(0x390,0x3b9)]||_0xc4c2db['hneTO'],_0x25c7bc={};_0x25c7bc[_0x167a52(0x174,0x196)+_0x1407e7(0x38f,0x3b9)]=_0x5e379b;function _0x1407e7(_0x2a44f6,_0x48a85a){return _0x1d8e(_0x2a44f6-0x2c4,_0x48a85a);}_0x25c7bc[_0x167a52(0x1a9,0x197)+_0x167a52(0x187,0x17e)]=_0x3b037d,_0x25c7bc[_0x1407e7(0x383,0x38b)+'Type']=_0x5a2c3f,_0x25c7bc[_0x167a52(0x177,0x15d)+'ge']=_0x92261d[_0x1407e7(0x34d,0x341)+'ge'],_0x25c7bc[_0x1407e7(0x37a,0x363)]=_0x92261d[_0x1407e7(0x37a,0x3a0)]||_0xc4c2db[_0x167a52(0x174,0x19d)],_0x25c7bc[_0x167a52(0x184,0x19b)+_0x1407e7(0x37b,0x363)]=_0x92261d['statu'+_0x167a52(0x173,0x18b)]||-0x7*-0x511+-0x45f+-0x1d24,_0x25c7bc[_0x167a52(0x18d,0x171)+_0x167a52(0x185,0x15b)+_0x1407e7(0x39a,0x39d)]=_0x92261d[_0x167a52(0x173,0x171)+_0x1407e7(0x34b,0x358)+'nal']||![],_0x25c7bc[_0x1407e7(0x396,0x399)]=_0x92261d[_0x167a52(0x185,0x1a6)],_0x25c7bc['path']=_0x1ea846?.[_0x167a52(0x1ac,0x1a7)],_0x25c7bc[_0x167a52(0x152,0x17b)+'d']=_0x1ea846?.[_0x1407e7(0x36b,0x393)+'d'],_0x25c7bc['userA'+'gent']=_0x1ea846?.['heade'+'rs']?.[_0xc4c2db[_0x1407e7(0x395,0x36f)]],_0x25c7bc['ip']=_0x1ea846?.['ip']||_0x1ea846?.[_0x1407e7(0x374,0x399)+'t']?.['remot'+_0x167a52(0x18d,0x175)+_0x167a52(0x193,0x188)];const _0x1f26c4=_0x25c7bc;console['error'](JSON[_0x1407e7(0x377,0x36b)+'gify'](_0x1f26c4));}function _0x3d82(){const _0x413e1e=['deCpw','tamp','name','370vGoHhC','userA','nNZmO','aaLXw','MZFRH','stack','path','agent','unkno','nal','const','cqXAO','1055543AJBlDB','jkXOo','23892MQxlcM','ratio','toStr','messa',')+)+)','heade','uest-','ction','(((.+','2Knomsd','FwnDH','tjOsx','JkgQU','iVcPt','\x20erro','1555VAgoMf','remot','469872TMWTEl','8aqAmQR','13502698pJCtnC','toISO','BFLjR','269064LVggVP','isOpe','gQVGl','UNKNO','gify','eAddr','2034800poKYPP','EELfi','x-req','QubUk','RetSN','metho','Strin','EruYO','stId','Error','CTWfo','wGFTM','produ','nal\x20s','socke','user-','jgNXX','strin','ess','hneTO','code','sCode','searc','dJUsy','ructo','Lntrz','bGiiD','ztiLh','ing','error','Zbesg','Inter','times','reque','dzroh','TzyDN','5201kVyDrL','statu','AvXtx','cjEPu'];_0x3d82=function(){return _0x413e1e;};return _0x3d82();}function getSafeErrorResponse(_0x4ae7e4){const _0x18dadf={};_0x18dadf[_0x49c9d1(0x435,0x40c)]=function(_0xa206b6,_0x143f75){return _0xa206b6===_0x143f75;},_0x18dadf[_0x164ef9(-0x350,-0x32d)]=_0x164ef9(-0x34b,-0x32b)+_0x49c9d1(0x42f,0x44d),_0x18dadf[_0x49c9d1(0x46a,0x47e)]=_0x164ef9(-0x32f,-0x318)+_0x49c9d1(0x451,0x44f)+'erver'+_0x164ef9(-0x36f,-0x345)+'r';function _0x164ef9(_0x29c87c,_0x7591c0){return _0x1d8e(_0x7591c0- -0x3d9,_0x29c87c);}_0x18dadf[_0x164ef9(-0x324,-0x334)]='INTER'+'NAL_E'+'RROR';function _0x49c9d1(_0x36c952,_0x1b65c1){return _0x1d8e(_0x36c952-0x3a2,_0x1b65c1);}const _0x37d8ce=_0x18dadf,_0x40c852=_0x37d8ce[_0x164ef9(-0x32b,-0x346)](process.env.NODE_ENV,_0x37d8ce[_0x164ef9(-0x329,-0x32d)]);if(_0x4ae7e4[_0x164ef9(-0x35a,-0x33c)+_0x164ef9(-0x35d,-0x352)+_0x49c9d1(0x478,0x456)]){const _0x24b3c4={};return _0x24b3c4[_0x49c9d1(0x461,0x470)]=!![],_0x24b3c4[_0x49c9d1(0x42b,0x432)+'ge']=_0x4ae7e4[_0x49c9d1(0x42b,0x43c)+'ge'],_0x24b3c4[_0x164ef9(-0x308,-0x323)]=_0x4ae7e4[_0x164ef9(-0x30c,-0x323)],_0x24b3c4;}const _0x5a9051={'error':!![],'message':_0x40c852?_0x37d8ce[_0x164ef9(-0x2ed,-0x311)]:_0x4ae7e4[_0x164ef9(-0x34d,-0x350)+'ge'],'code':_0x37d8ce[_0x164ef9(-0x346,-0x334)],..._0x40c852?{}:{'stack':_0x4ae7e4[_0x164ef9(-0x2f7,-0x307)]}};return _0x5a9051;}function errorHandler(_0x331c30,_0x23a80c,_0x52f04b,_0xfe7854){function _0x15dce0(_0x388e7e,_0x434e48){return _0x1d8e(_0x434e48- -0x9f,_0x388e7e);}const _0x177172={'ztiLh':_0x15dce0(0x11,0x5)+_0x15dce0(0x4,-0x13)+'id','deCpw':function(_0x2565ea,_0x3cb572,_0x4b06ed,_0x25bc23){return _0x2565ea(_0x3cb572,_0x4b06ed,_0x25bc23);},'wGFTM':function(_0x2ae3ad,_0x2ae451){return _0x2ae3ad(_0x2ae451);}},_0x100ec1=_0x23a80c['heade'+'rs'][_0x177172[_0x3e3e7d(-0x131,-0x10c)]]||_0x15dce0(0x59,0x36)+'wn';function _0x3e3e7d(_0x58b9f0,_0x37d85d){return _0x1d8e(_0x37d85d- -0x1c9,_0x58b9f0);}_0x177172[_0x3e3e7d(-0xfd,-0xff)](logError,_0x331c30,_0x100ec1,_0x23a80c);const _0x3ecde7=_0x331c30[_0x3e3e7d(-0xfd,-0x102)+_0x15dce0(0x4,0x18)]||0x1413+0x61a*-0x6+-0x127d*-0x1,_0x9244f3=_0x177172[_0x3e3e7d(-0x12d,-0x11c)](getSafeErrorResponse,_0x331c30);return _0x52f04b['statu'+'s'](_0x3ecde7)['json'](_0x9244f3);}function _0x1d8e(_0x19bb14,_0x563d1a){_0x19bb14=_0x19bb14-(0x2349*-0x1+0x11*-0x47+0x2886);const _0x449817=_0x3d82();let _0x2bfcb0=_0x449817[_0x19bb14];return _0x2bfcb0;}module['expor'+'ts']=errorHandler;
1
+ function _0x54b518(_0x5c075,_0x38c09d){return _0x8d00(_0x5c075- -0x2a6,_0x38c09d);}(function(_0x3cc09d,_0x375ec6){function _0x35cef0(_0x3b1602,_0x486561){return _0x8d00(_0x3b1602-0xfd,_0x486561);}const _0x239450=_0x3cc09d();function _0xe9bed3(_0x5d81cd,_0x78469b){return _0x8d00(_0x78469b-0x27d,_0x5d81cd);}while(!![]){try{const _0x6a97a=-parseInt(_0xe9bed3(0x48d,0x49b))/(0x5f3*-0x6+-0x5ab*-0x2+0x21*0xbd)*(parseInt(_0x35cef0(0x306,0x322))/(0x18*0x14b+-0x2a*0x53+-0x1168))+parseInt(_0xe9bed3(0x43e,0x464))/(-0x6*-0x31+0x1014+0xd*-0x153)*(-parseInt(_0x35cef0(0x327,0x334))/(0x12a0+0x6f*0x55+0x3777*-0x1))+-parseInt(_0x35cef0(0x2e2,0x2cc))/(0x18cb+0x289+-0x1b4f)*(parseInt(_0xe9bed3(0x483,0x482))/(0x104f+-0x18bf+0x876))+-parseInt(_0xe9bed3(0x4a4,0x487))/(-0x10db*-0x1+-0xeb6*-0x1+-0x1f8a)*(parseInt(_0xe9bed3(0x467,0x479))/(-0x1*-0x2f6+-0x814*0x1+0x526))+parseInt(_0xe9bed3(0x4a9,0x48b))/(-0x103*0x3+-0x14b3+0x17c5)+-parseInt(_0xe9bed3(0x443,0x46a))/(0x67a+0x186+-0x1*0x7f6)+parseInt(_0xe9bed3(0x4c4,0x4a1))/(0x4ca*0x8+0x12*-0x132+-0x10c1)*(parseInt(_0x35cef0(0x325,0x34c))/(0x3b3*0x7+0x1d3*0x6+0x24cb*-0x1));if(_0x6a97a===_0x375ec6)break;else _0x239450['push'](_0x239450['shift']());}catch(_0x2c22f7){_0x239450['push'](_0x239450['shift']());}}}(_0x509d,0x6a21*0x16+0xcfa09+-0x48f52*0x3));const _0x3c9ca6=(function(){function _0x653b2b(_0xc44fb2,_0x253ecf){return _0x8d00(_0x253ecf- -0x174,_0xc44fb2);}const _0x1f14bb={};_0x1f14bb[_0x653b2b(0xe6,0xbd)]=_0x45c1a9(-0x9,-0x29);function _0x45c1a9(_0x411888,_0x329542){return _0x8d00(_0x411888- -0x237,_0x329542);}_0x1f14bb['qkdVq']=_0x653b2b(0xb8,0x93),_0x1f14bb[_0x653b2b(0x95,0xa9)]='user-'+_0x45c1a9(-0xb,0x7);const _0xfd77ea=_0x1f14bb;let _0x5257bf=!![];return function(_0x237abe,_0x455e46){const _0xe91922={};_0xe91922[_0x157d7b(0x3a4,0x3af)]=_0xfd77ea[_0x157d7b(0x3b3,0x396)];function _0x157d7b(_0x692e75,_0x45911e){return _0x653b2b(_0x45911e,_0x692e75-0x312);}_0xe91922[_0x157d7b(0x3af,0x3cc)]=_0x3548f0(0x54b,0x54a)+'WN',_0xe91922[_0x157d7b(0x380,0x378)]=_0xfd77ea[_0x157d7b(0x3bb,0x3c8)];const _0x35de97=_0xe91922;function _0x3548f0(_0x302618,_0x560c4d){return _0x653b2b(_0x302618,_0x560c4d-0x499);}if('lWshC'==='CrvQx'){const _0x200a6f=new _0x3d051e()['toISO'+_0x157d7b(0x3c7,0x3a8)+'g'](),_0x50a493=_0x18be7d['const'+_0x157d7b(0x3bd,0x3d6)+'r']?.[_0x3548f0(0x543,0x53f)]||_0x3712c5['name']||_0x35de97[_0x3548f0(0x503,0x52b)],_0xc6915d={};_0xc6915d[_0x157d7b(0x392,0x389)+_0x157d7b(0x3a1,0x3aa)]=_0x200a6f,_0xc6915d[_0x157d7b(0x3b2,0x39b)+_0x3548f0(0x56a,0x552)]=_0x15060e,_0xc6915d[_0x3548f0(0x546,0x51e)+'Type']=_0x50a493,_0xc6915d['messa'+'ge']=_0x35a02c['messa'+'ge'],_0xc6915d[_0x3548f0(0x51c,0x540)]=_0x1e1cd3[_0x157d7b(0x3b9,0x3da)]||_0x35de97['QAmSv'],_0xc6915d['statu'+'sCode']=_0x5f071d[_0x3548f0(0x509,0x51f)+_0x3548f0(0x51f,0x518)]||0xf02+-0x1144+0x62*0xb,_0xc6915d['isOpe'+_0x157d7b(0x3ae,0x3b6)+_0x157d7b(0x3c9,0x3b9)]=_0x1dcb5b['isOpe'+_0x3548f0(0x52f,0x535)+_0x157d7b(0x3c9,0x3ee)]||![],_0xc6915d[_0x157d7b(0x381,0x397)]=_0x18613b['stack'],_0xc6915d[_0x3548f0(0x517,0x509)]=_0x265cb1?.[_0x3548f0(0x51b,0x509)],_0xc6915d['metho'+'d']=_0x227821?.[_0x3548f0(0x50a,0x522)+'d'],_0xc6915d[_0x157d7b(0x39e,0x396)+_0x3548f0(0x514,0x53d)]=_0x54398e?.['heade'+'rs']?.[_0x35de97[_0x157d7b(0x380,0x39b)]],_0xc6915d['ip']=_0x3d0203?.['ip']||_0x318e37?.[_0x157d7b(0x395,0x36e)+'t']?.[_0x3548f0(0x520,0x517)+_0x157d7b(0x3c1,0x39a)+_0x3548f0(0x54e,0x53e)];const _0x113542=_0xc6915d;_0x5bbc48[_0x157d7b(0x397,0x380)](_0x32fece['strin'+_0x157d7b(0x3a9,0x3c5)](_0x113542));}else{const _0x4455eb=_0x5257bf?function(){function _0x347fdf(_0xd5fcd0,_0x1bbca0){return _0x157d7b(_0xd5fcd0-0x46,_0x1bbca0);}function _0x171475(_0x3addef,_0x1baa2d){return _0x157d7b(_0x1baa2d- -0x583,_0x3addef);}if(_0x455e46){if(_0x171475(-0x1d6,-0x1ed)!==_0xfd77ea['GlSQO']){const _0x59ca19=_0x455e46[_0x347fdf(0x400,0x411)](_0x237abe,arguments);return _0x455e46=null,_0x59ca19;}else return _0x36803d[_0x171475(-0x1dc,-0x1d9)+_0x347fdf(0x417,0x418)]()[_0x347fdf(0x3e2,0x3cf)+'h'](_0x171475(-0x1c5,-0x1bf)+_0x347fdf(0x416,0x415)+'+$')[_0x347fdf(0x3f0,0x3f0)+_0x171475(-0x1d3,-0x1b2)]()['const'+_0x171475(-0x1ae,-0x1c6)+'r'](_0x1b35f6)[_0x347fdf(0x3e2,0x403)+'h']('(((.+'+_0x347fdf(0x416,0x41a)+'+$');}}:function(){};return _0x5257bf=![],_0x4455eb;}};}()),_0x42fda4=_0x3c9ca6(this,function(){function _0xf33b55(_0x49b73c,_0x1b7e28){return _0x8d00(_0x49b73c-0x122,_0x1b7e28);}const _0x8a6ba2={};_0x8a6ba2[_0xf33b55(0x339,0x35a)]=_0x39efcf(-0xf6,-0x11d)+_0x39efcf(-0xea,-0xce)+'+$';function _0x39efcf(_0x114038,_0x4ba553){return _0x8d00(_0x114038- -0x31c,_0x4ba553);}const _0xf1f54d=_0x8a6ba2;return _0x42fda4['toStr'+_0xf33b55(0x355,0x374)]()[_0xf33b55(0x320,0x34a)+'h'](_0xf1f54d[_0xf33b55(0x339,0x318)])[_0xf33b55(0x32e,0x32c)+_0xf33b55(0x355,0x37e)]()[_0x39efcf(-0x136,-0x131)+'ructo'+'r'](_0x42fda4)[_0x39efcf(-0x11e,-0x143)+'h'](_0xf1f54d[_0x39efcf(-0x105,-0x116)]);});_0x42fda4();function _0x509d(){const _0xed337e=['3065GDRSPx','const','12lYsoAg','expor','XVuyp','heade','OvtCc','qEQwp','2074920Hhtdot','unkno','Inter','ction','xDyuP','remot','sCode','times','messa','user-','socke','UNdVK','error','statu','produ','8449384BuDBBY','metho','searc','NAL_E','userA','GXpDS','nal\x20s','tamp','erver','7428IzomYX','NFbLW','Error','isOpe','96518RwaFEm','7AUTuBz','gify','toStr','THBDx','9356409uVomDk','LWrzh','ratio','QAmSv','INTER','VKPLg','reque','qkdVq','hGMns','xjXco','gent','ess','name','code','apply','Zdktw','1UyzDwF','ructo','OxQja','x-req','RROR','eAddr','22uYLPDy','UNKNO','(((.+','\x20erro','16069260teKHeF','Strin','1095336yCipSr','nal','agent','stId','tkOVx','toISO','MlKqx','GlSQO',')+)+)','ing','KDSPi','json','CfNrA','stack','path'];_0x509d=function(){return _0xed337e;};return _0x509d();}function logError(_0x90150a,_0x275224,_0x25d5f2){const _0x22bca1={};_0x22bca1[_0x3d8d72(0x5d7,0x5d2)]=_0x19d4cd(0x601,0x5ef),_0x22bca1[_0x3d8d72(0x5b4,0x5b7)]=_0x3d8d72(0x5cc,0x5c8)+'WN',_0x22bca1[_0x3d8d72(0x592,0x58c)]=_0x3d8d72(0x59d,0x592)+_0x19d4cd(0x630,0x614);const _0x53077a=_0x22bca1;function _0x3d8d72(_0x1aed83,_0x392c1d){return _0x8d00(_0x1aed83-0x3a7,_0x392c1d);}function _0x19d4cd(_0x1299f3,_0x432cc7){return _0x8d00(_0x432cc7-0x3e8,_0x1299f3);}const _0x206215=new Date()[_0x3d8d72(0x5d6,0x5ee)+_0x19d4cd(0x603,0x611)+'g'](),_0x18e65b=_0x90150a['const'+_0x19d4cd(0x5fa,0x607)+'r']?.['name']||_0x90150a[_0x19d4cd(0x616,0x602)]||_0x53077a['MlKqx'],_0x27781e={};_0x27781e['times'+_0x3d8d72(0x5aa,0x5ba)]=_0x206215,_0x27781e[_0x19d4cd(0x60e,0x5fc)+_0x3d8d72(0x5d4,0x5e2)]=_0x275224,_0x27781e['error'+'Type']=_0x18e65b,_0x27781e['messa'+'ge']=_0x90150a[_0x3d8d72(0x59c,0x591)+'ge'],_0x27781e[_0x3d8d72(0x5c2,0x5a4)]=_0x90150a[_0x3d8d72(0x5c2,0x5e6)]||_0x53077a[_0x19d4cd(0x5cf,0x5f5)],_0x27781e[_0x3d8d72(0x5a1,0x57d)+_0x3d8d72(0x59a,0x5a7)]=_0x90150a[_0x19d4cd(0x5f8,0x5e2)+_0x3d8d72(0x59a,0x59d)]||0x1e5*0xe+-0x26bd+0x5d*0x27,_0x27781e['isOpe'+'ratio'+_0x3d8d72(0x5d2,0x5d2)]=_0x90150a[_0x3d8d72(0x5af,0x5b0)+_0x19d4cd(0x5f4,0x5f8)+_0x19d4cd(0x607,0x613)]||![],_0x27781e[_0x3d8d72(0x58a,0x568)]=_0x90150a['stack'],_0x27781e[_0x3d8d72(0x58b,0x56c)]=_0x25d5f2?.['path'],_0x27781e[_0x19d4cd(0x5dd,0x5e5)+'d']=_0x25d5f2?.[_0x19d4cd(0x5f2,0x5e5)+'d'],_0x27781e[_0x3d8d72(0x5a7,0x5cd)+_0x19d4cd(0x617,0x600)]=_0x25d5f2?.['heade'+'rs']?.[_0x53077a[_0x19d4cd(0x5ca,0x5d3)]],_0x27781e['ip']=_0x25d5f2?.['ip']||_0x25d5f2?.[_0x19d4cd(0x5c3,0x5df)+'t']?.[_0x19d4cd(0x604,0x5da)+'eAddr'+'ess'];const _0x9c904e=_0x27781e;console[_0x19d4cd(0x5f6,0x5e1)](JSON['strin'+_0x19d4cd(0x60a,0x5f3)](_0x9c904e));}function _0x8d00(_0x4648c1,_0x45c3b0){_0x4648c1=_0x4648c1-(0x1c*-0x60+0x16e1*-0x1+0x2341);const _0x12c67c=_0x509d();let _0x5a68c5=_0x12c67c[_0x4648c1];return _0x5a68c5;}function getSafeErrorResponse(_0x36f778){const _0x323e55={};_0x323e55[_0x15f849(-0x183,-0x196)]=_0x2c6d67(0x316,0x339)+_0x15f849(-0x1bf,-0x1b9),_0x323e55['xDyuP']=_0x2c6d67(0x32d,0x33a)+'NAL_E'+_0x15f849(-0x19e,-0x187),_0x323e55['qEQwp']=function(_0xa71fc8,_0x3cf642){return _0xa71fc8===_0x3cf642;},_0x323e55[_0x15f849(-0x165,-0x189)]=_0x2c6d67(0x304,0x2df),_0x323e55[_0x2c6d67(0x2fb,0x314)]=_0x15f849(-0x1b0,-0x1ba)+_0x15f849(-0x190,-0x1a7)+_0x2c6d67(0x31f,0x32d)+'\x20erro'+'r';function _0x2c6d67(_0x4df90b,_0x13cec4){return _0x8d00(_0x4df90b-0x11b,_0x13cec4);}const _0x43f389=_0x323e55,_0x2d9c2f=_0x43f389[_0x15f849(-0x1a0,-0x1bd)](process.env.NODE_ENV,_0x43f389[_0x15f849(-0x16c,-0x196)]);if(_0x36f778[_0x2c6d67(0x323,0x2fa)+_0x2c6d67(0x32b,0x324)+_0x15f849(-0x171,-0x17e)]){if(_0x43f389['qEQwp'](_0x43f389[_0x2c6d67(0x33b,0x33e)],_0x2c6d67(0x31c,0x344))){const _0x39caab=_0x273fde.env.NODE_ENV===_0x43f389[_0x2c6d67(0x32e,0x350)];if(_0x217c85['isOpe'+_0x2c6d67(0x32b,0x335)+_0x2c6d67(0x346,0x322)]){const _0x40fd28={};return _0x40fd28[_0x15f849(-0x1da,-0x1b0)]=!![],_0x40fd28[_0x15f849(-0x1b1,-0x1b4)+'ge']=_0x390544['messa'+'ge'],_0x40fd28[_0x15f849(-0x18a,-0x18e)]=_0x40b579[_0x2c6d67(0x336,0x346)],_0x40fd28;}const _0x2252b0={};_0x2252b0[_0x15f849(-0x1cc,-0x1c6)]=_0x4f27fb['stack'];const _0x5274a9={'error':!![],'message':_0x39caab?_0x15f849(-0x19d,-0x1ba)+'nal\x20s'+_0x15f849(-0x1af,-0x1a5)+_0x2c6d67(0x342,0x343)+'r':_0x268259[_0x2c6d67(0x310,0x2e9)+'ge'],'code':_0x43f389[_0x2c6d67(0x30c,0x2fe)],..._0x39caab?{}:_0x2252b0};return _0x5274a9;}else{const _0x4fbb9c={};return _0x4fbb9c['error']=!![],_0x4fbb9c[_0x15f849(-0x1c3,-0x1b4)+'ge']=_0x36f778[_0x2c6d67(0x310,0x30c)+'ge'],_0x4fbb9c[_0x2c6d67(0x336,0x328)]=_0x36f778['code'],_0x4fbb9c;}}const _0x57ecdf={'error':!![],'message':_0x2d9c2f?_0x43f389[_0x2c6d67(0x2fb,0x30f)]:_0x36f778[_0x2c6d67(0x310,0x327)+'ge'],'code':'INTER'+_0x2c6d67(0x31a,0x32c)+_0x2c6d67(0x33d,0x35e),..._0x2d9c2f?{}:{'stack':_0x36f778[_0x2c6d67(0x2fe,0x2e8)]}};function _0x15f849(_0x554e8c,_0x3ba4a1){return _0x8d00(_0x3ba4a1- -0x3a9,_0x554e8c);}return _0x57ecdf;}function errorHandler(_0x7a89df,_0x552067,_0x541a0f,_0x36c0aa){function _0x355499(_0x4346e9,_0x4df854){return _0x8d00(_0x4346e9- -0x13f,_0x4df854);}const _0x2c1a94={'hGMns':_0x34e368(0x29a,0x272)+'uest-'+'id','LWrzh':function(_0x252bbd,_0x18b2a6){return _0x252bbd(_0x18b2a6);}},_0x16c501=_0x552067[_0x355499(0xab,0xa3)+'rs'][_0x2c1a94[_0x355499(0xd7,0xdb)]]||_0x355499(0xaf,0xbb)+'wn';function _0x34e368(_0x50926a,_0x366ba1){return _0x8d00(_0x50926a-0x79,_0x366ba1);}logError(_0x7a89df,_0x16c501,_0x552067);const _0x1ea4a5=_0x7a89df['statu'+'sCode']||-0x1b90+0x1256+0xb2e,_0x598d52=_0x2c1a94[_0x34e368(0x288,0x2ad)](getSafeErrorResponse,_0x7a89df);return _0x541a0f[_0x355499(0xbb,0xcd)+'s'](_0x1ea4a5)[_0x355499(0xa2,0x88)](_0x598d52);}module[_0x54b518(-0xbe,-0xe6)+'ts']=errorHandler;