@mooncompany/uplink-chat 0.37.0 → 0.37.2

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.f3621856.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.5772e248.js +0 -1
@@ -1 +1 @@
1
- (function(_0x8675ef,_0x2855a5){function _0x171602(_0x44a52b,_0x426f67){return _0xfdea(_0x44a52b-0x2f1,_0x426f67);}const _0x130b41=_0x8675ef();function _0xabb32c(_0x4af0a9,_0x487691){return _0xfdea(_0x4af0a9- -0xe1,_0x487691);}while(!![]){try{const _0x1eade1=parseInt(_0x171602(0x469,0x42c))/(-0x1a40+-0x12b+0x1b6c)+-parseInt(_0x171602(0x546,0x59b))/(-0x2*0x913+0x3*0xc4b+-0x1*0x12b9)*(-parseInt(_0x171602(0x47a,0x3de))/(-0x5*0x4eb+-0x47*-0x44+0x5be))+-parseInt(_0x171602(0x45a,0x4ba))/(0x731*0x1+-0x5*0x3e5+0x2*0x626)*(parseInt(_0x171602(0x4fa,0x469))/(-0x24ea+-0x2db*-0x3+-0x1c5e*-0x1))+-parseInt(_0x171602(0x53d,0x4ae))/(-0x5*-0x2c5+0x2a0+-0x1073*0x1)+parseInt(_0xabb32c(0xfb,0xbc))/(0x181e+-0x10f2+-0x1*0x725)*(-parseInt(_0x171602(0x4b5,0x538))/(-0x1e37+0x1*-0x232d+0x105b*0x4))+parseInt(_0xabb32c(0xde,0xe8))/(-0x19ff+-0x171c+0x3124)*(parseInt(_0x171602(0x47f,0x421))/(0x10e3+-0xd11+-0x3c8))+parseInt(_0xabb32c(0x11f,0x1ae))/(-0x2*-0xc46+-0x1*0x1bd1+-0x1a8*-0x2)*(-parseInt(_0xabb32c(0xbf,0xda))/(0x82*-0x20+0x1449+0x3fd*-0x1));if(_0x1eade1===_0x2855a5)break;else _0x130b41['push'](_0x130b41['shift']());}catch(_0x41da25){_0x130b41['push'](_0x130b41['shift']());}}}(_0x5e3d,0x7fa1+-0x16345+0xc*0x6285));import _0x174449 from'web-push';import _0x82621f from'fs';import _0x5c2536 from'path';import{createLogger}from'../logger.js';import{loadConfig}from'../runtime-config.js';const log=createLogger(_0x434e1d(-0x195,-0x13d)),BASE64URL_RE=/^[A-Za-z0-9_-]+$/;function _0x481259(_0x6b34cc,_0x25bc4a){return _0xfdea(_0x6b34cc- -0x32b,_0x25bc4a);}const P256DH_MIN_LEN=-0x2159*0x1+0x1*0x10ed+0x10bc,P256DH_MAX_LEN=0x535*0x7+0x260e+-0x6bb*0xb,AUTH_MIN_LEN=0x9a*0x37+-0x1884+-0x882,AUTH_MAX_LEN=-0x2631+0x2f4+0x235d,ENDPOINT_MAX_LEN=-0x4da+0x73*0x12+0x4c4;export function validatePushSubscription(_0x3daffc){const _0x1f1b4f={'LceQm':_0x1eab72(0x5c9,0x597)+'\x20keys'+_0x1eab72(0x653,0x6ac)+'confi'+_0x1eab72(0x58e,0x552)+_0x2f5d29(0x592,0x51a)+_0x1eab72(0x61c,0x67f)+_0x1eab72(0x65c,0x693)+'ill\x20r'+_0x1eab72(0x5ec,0x55f)+_0x2f5d29(0x47a,0x4a1)+_0x1eab72(0x57e,0x5f6)+_0x2f5d29(0x5aa,0x520)+_0x1eab72(0x591,0x5cc)+'t','ffFtj':'Error'+_0x1eab72(0x542,0x4b1)+_0x2f5d29(0x409,0x49d)+_0x2f5d29(0x50a,0x508)+_0x1eab72(0x57f,0x619)+'s:','HDgCb':function(_0x3c1995,_0x4e250f){return _0x3c1995||_0x4e250f;},'iMiUq':_0x1eab72(0x631,0x675)+'lt','YZhnE':function(_0x51bcdf,_0x5645fb){return _0x51bcdf(_0x5645fb);},'NPhmD':_0x2f5d29(0x418,0x48a)+'t','kVdqE':function(_0x1ba2b7,_0x1150b3){return _0x1ba2b7!==_0x1150b3;},'QYJcd':'rZqdb','XokhF':_0x1eab72(0x63d,0x5f4),'zeczb':_0x2f5d29(0x4f0,0x4d4)+_0x2f5d29(0x482,0x4d7)+_0x1eab72(0x60d,0x582)+_0x2f5d29(0x4aa,0x53d)+_0x1eab72(0x562,0x5cd)+'bject','uKAwP':_0x1eab72(0x583,0x518)+'g','RCRPz':function(_0x5ae8d0,_0x155bb2){return _0x5ae8d0===_0x155bb2;},'AXdID':_0x2f5d29(0x433,0x4c6),'tHlii':_0x2f5d29(0x54a,0x522)+'int\x20i'+'s\x20req'+_0x1eab72(0x5bf,0x644)+_0x1eab72(0x617,0x66f)+_0x1eab72(0x539,0x4e7)+_0x1eab72(0x632,0x63d)+'non-e'+'mpty\x20'+'strin'+'g','yolFv':function(_0x570eb4,_0x54d0b6){return _0x570eb4===_0x54d0b6;},'tKowZ':_0x1eab72(0x53f,0x4d6),'FAhhv':_0x2f5d29(0x596,0x54e),'nXQDW':function(_0x4c167d,_0x17d1a8){return _0x4c167d!==_0x17d1a8;},'nOcvQ':'https'+':','rMUTP':_0x1eab72(0x5c6,0x556)+_0x1eab72(0x5ca,0x647)+_0x2f5d29(0x57f,0x559)+'se\x20HT'+_0x2f5d29(0x4ad,0x4dd),'BIwNb':_0x1eab72(0x5c6,0x5f1)+'int\x20i'+_0x2f5d29(0x5e9,0x5b1)+'\x20a\x20va'+_0x1eab72(0x588,0x538)+'RL','lnQdW':_0x1eab72(0x5af,0x5cf),'ZLmbk':_0x1eab72(0x568,0x4e7)+'objec'+_0x2f5d29(0x53d,0x5b4)+_0x2f5d29(0x553,0x57d)+_0x1eab72(0x5cc,0x662),'PZMTw':_0x2f5d29(0x4a7,0x4e9)+_0x2f5d29(0x5c3,0x546)+_0x1eab72(0x599,0x619)+_0x1eab72(0x621,0x64a)+_0x2f5d29(0x4d9,0x528),'vfuLl':function(_0x180203,_0x19365c){return _0x180203<_0x19365c;},'iyymE':function(_0x5355aa,_0x164437){return _0x5355aa>_0x164437;},'sOGeP':function(_0x23db27,_0x5f5051){return _0x23db27!==_0x5f5051;},'toBOP':_0x2f5d29(0x50e,0x577),'jkVjO':_0x2f5d29(0x4a2,0x4e9)+_0x1eab72(0x5ea,0x61f)+_0x2f5d29(0x3fc,0x491)+_0x1eab72(0x614,0x633)+_0x2f5d29(0x49d,0x4d2)+'4url-'+_0x1eab72(0x54c,0x581)+'ed','BkFXJ':function(_0x48135b,_0x52f2a8){return _0x48135b!==_0x52f2a8;},'OLhmB':_0x2f5d29(0x4fa,0x4e9)+_0x1eab72(0x56f,0x550)+_0x2f5d29(0x444,0x4d3)+_0x2f5d29(0x5a9,0x538)+'d','eSndf':_0x2f5d29(0x547,0x4e9)+_0x1eab72(0x56f,0x540)+'must\x20'+_0x1eab72(0x5f5,0x61b)+'se64u'+_0x2f5d29(0x579,0x552)+_0x2f5d29(0x5ac,0x591)};if(!_0x3daffc||typeof _0x3daffc!==_0x1f1b4f[_0x1eab72(0x5ef,0x5e2)]){if(_0x1f1b4f[_0x1eab72(0x549,0x587)](_0x1f1b4f['QYJcd'],_0x1f1b4f['XokhF']))return _0x1f1b4f[_0x1eab72(0x5e2,0x5a2)];else{if(!_0x1d273c)_0x5796c1[_0x1eab72(0x548,0x555)](_0x1f1b4f[_0x2f5d29(0x575,0x4f3)]);}}function _0x2f5d29(_0x3fdd18,_0x55d952){return _0x434e1d(_0x55d952-0x6da,_0x3fdd18);}const {endpoint:_0x867f9b}=_0x3daffc;if(_0x1f1b4f[_0x1eab72(0x549,0x5da)](typeof _0x867f9b,_0x1f1b4f[_0x1eab72(0x574,0x563)])||_0x1f1b4f[_0x2f5d29(0x610,0x5a9)](_0x867f9b[_0x1eab72(0x538,0x5a2)+'h'],-0x1*0x1967+0x756*0x5+-0xb47))return _0x1f1b4f['RCRPz'](_0x1f1b4f['AXdID'],_0x1f1b4f[_0x2f5d29(0x423,0x4b7)])?_0x1f1b4f[_0x1eab72(0x544,0x4ae)]:_0x205a5a['toStr'+_0x1eab72(0x546,0x597)]()[_0x2f5d29(0x56b,0x55a)+'h'](_0x1eab72(0x553,0x5ca)+_0x1eab72(0x65b,0x63d)+'+$')[_0x2f5d29(0x5af,0x536)+_0x1eab72(0x546,0x5e2)]()[_0x1eab72(0x5b4,0x530)+'ructo'+'r'](_0x1cc8cb)[_0x2f5d29(0x5e6,0x55a)+'h'](_0x1eab72(0x553,0x519)+_0x2f5d29(0x5a7,0x5b7)+'+$');if(_0x867f9b[_0x2f5d29(0x451,0x494)+'h']>ENDPOINT_MAX_LEN){if(_0x1f1b4f[_0x2f5d29(0x62b,0x5a9)](_0x1eab72(0x55c,0x5df),'HNooa'))_0x4cd554[_0x1eab72(0x60b,0x5a0)+_0x1eab72(0x5fb,0x605)+_0x1eab72(0x53e,0x5b9)](_0x21c9de,_0x5bef25[_0x1eab72(0x583,0x5a4)+'gify'](_0x29bf8b,null,-0x19a0+-0x2*-0xd35+-0xc8));else return _0x1eab72(0x5c6,0x56a)+_0x1eab72(0x616,0x617)+_0x1eab72(0x63e,0x6a7)+'s\x20max'+_0x2f5d29(0x5fe,0x57e)+'lengt'+_0x1eab72(0x5fa,0x5d9)+ENDPOINT_MAX_LEN;}try{if(_0x1f1b4f[_0x2f5d29(0x587,0x532)](_0x1f1b4f[_0x2f5d29(0x476,0x4c0)],_0x1f1b4f[_0x2f5d29(0x52d,0x5bc)]))_0x4e94e5[_0x1eab72(0x57a,0x5aa)](_0x1f1b4f[_0x1eab72(0x590,0x5b2)],_0x3b85af[_0x1eab72(0x592,0x60a)+'ge']);else{const _0xde4165=new URL(_0x867f9b);if(_0x1f1b4f[_0x2f5d29(0x551,0x52d)](_0xde4165['proto'+'col'],_0x1f1b4f[_0x2f5d29(0x4d8,0x50e)]))return _0x1f1b4f[_0x2f5d29(0x53a,0x575)];}}catch{return _0x1f1b4f['BIwNb'];}const {keys:_0x149e37}=_0x3daffc;if(!_0x149e37||typeof _0x149e37!==_0x1f1b4f[_0x1eab72(0x5ef,0x615)]){if(_0x1f1b4f[_0x2f5d29(0x585,0x51d)]!==_0x2f5d29(0x565,0x50b)){const _0x713846={};return _0x713846['error']=_0x2f5d29(0x42e,0x4aa)+_0x2f5d29(0x57f,0x574)+_0x2f5d29(0x483,0x4fb)+'ured',_0x534e37[_0x1eab72(0x598,0x556)+'s'](0xfd*0x2+0x6*0x147+-0x7ad)['json'](_0x713846);}else return _0x1f1b4f[_0x2f5d29(0x535,0x4ff)];}const {p256dh:_0x31c649,auth:_0x2d802e}=_0x149e37;function _0x1eab72(_0x246111,_0x18076b){return _0x434e1d(_0x246111-0x77e,_0x18076b);}if(_0x1f1b4f[_0x2f5d29(0x4ea,0x52d)](typeof _0x31c649,_0x1eab72(0x583,0x599)+'g')||_0x1f1b4f[_0x1eab72(0x64d,0x68b)](_0x31c649[_0x1eab72(0x538,0x517)+'h'],-0xba4+0x86*-0xe+-0x25f*-0x8)){if(_0x1eab72(0x543,0x580)===_0x1eab72(0x5fc,0x62a))delete _0x42dd30[_0x1f1b4f[_0x1eab72(0x5bd,0x593)](_0x3c0433,_0x1f1b4f[_0x2f5d29(0x4a5,0x492)])],_0x1f1b4f[_0x2f5d29(0x568,0x53c)](_0x474ebd,_0x492484),_0x17749e[_0x1eab72(0x548,0x539)](_0x1eab72(0x55a,0x4c5)+'ed\x20ex'+_0x1eab72(0x62a,0x5ae)+_0x2f5d29(0x598,0x58c)+'cript'+_0x1eab72(0x606,0x69d)+_0x1eab72(0x65f,0x647)+_0x425486);else return _0x1f1b4f[_0x1eab72(0x5e4,0x54b)];}if(_0x1f1b4f[_0x2f5d29(0x55d,0x539)](_0x31c649[_0x2f5d29(0x431,0x494)+'h'],P256DH_MIN_LEN)||_0x1f1b4f[_0x1eab72(0x5a8,0x604)](_0x31c649[_0x2f5d29(0x4f6,0x494)+'h'],P256DH_MAX_LEN))return _0x1f1b4f[_0x1eab72(0x530,0x546)](_0x2f5d29(0x612,0x5b2),_0x1f1b4f[_0x1eab72(0x5e5,0x615)])?_0x1eab72(0x58d,0x53c)+_0x2f5d29(0x5cb,0x546)+_0x2f5d29(0x4de,0x491)+_0x2f5d29(0x573,0x570)+P256DH_MIN_LEN+'-'+P256DH_MAX_LEN+(_0x1eab72(0x5cb,0x637)+_0x2f5d29(0x5ef,0x5ac)+_0x2f5d29(0x560,0x52b)+'t\x20')+_0x31c649['lengt'+'h']+')':_0x2f5d29(0x5bf,0x522)+_0x2f5d29(0x4dd,0x572)+_0x2f5d29(0x500,0x59a)+'s\x20max'+_0x2f5d29(0x574,0x57e)+_0x2f5d29(0x51d,0x494)+_0x2f5d29(0x5c1,0x556)+_0x293a23;if(!BASE64URL_RE[_0x1eab72(0x565,0x589)](_0x31c649))return _0x1f1b4f[_0x1eab72(0x5c7,0x634)];if(_0x1f1b4f[_0x2f5d29(0x5bb,0x5bf)](typeof _0x2d802e,'strin'+'g')||_0x2d802e['lengt'+'h']===-0x4ee*0x1+0x214b+-0x1c5d)return _0x1f1b4f[_0x2f5d29(0x51c,0x4b5)];if(_0x1f1b4f[_0x1eab72(0x5dd,0x55c)](_0x2d802e[_0x2f5d29(0x476,0x494)+'h'],AUTH_MIN_LEN)||_0x1f1b4f[_0x2f5d29(0x538,0x504)](_0x2d802e[_0x2f5d29(0x43a,0x494)+'h'],AUTH_MAX_LEN))return'keys.'+_0x2f5d29(0x449,0x4cb)+'must\x20'+'be\x20'+AUTH_MIN_LEN+'-'+AUTH_MAX_LEN+(_0x2f5d29(0x4c0,0x527)+_0x2f5d29(0x53b,0x5ac)+_0x2f5d29(0x4f1,0x52b)+'t\x20')+_0x2d802e['lengt'+'h']+')';if(!BASE64URL_RE[_0x1eab72(0x565,0x5a4)](_0x2d802e))return _0x1f1b4f[_0x1eab72(0x5eb,0x5ff)];return null;}const SUBSCRIPTIONS_FILE=_0x5c2536[_0x481259(-0x161,-0xec)](process[_0x434e1d(-0x1c6,-0x1f6)](),_0x434e1d(-0x135,-0x16f)+_0x434e1d(-0x206,-0x1cb)+_0x481259(-0x197,-0x12d)+_0x434e1d(-0x127,-0xcb)+'son');let vapidConfigured=![];function _0x5e3d(){const _0x5da0fc=['const','ng\x20to','confi','ng\x20fr','cwd','bqnCW','exMjv','MOfhd','aERbu','HDgCb','\x20at\x20s','uired','zpQgK','lnQdW','\x20for:','7bOiKop','ush\x20r','wOdxr','endpo','jkVjO','icati','VAPID','int\x20m','\x20char','red','BJYVi','essag','s\x20(go','k-mes','nXQDW','uplin','scrip','AtusK','cjhRE','yolFv','YZylr','Vuptv','rPzHu','toStr','\x20keys','quire','vfuLl','ErOzG','pfObL','YZhnE','st\x20be','zeczb','nitia','PZMTw','toBOP','yzVAd','848738GLNuMJ','skipp','Push','p256d','eSndf','etry\x20','iMGsw','debug','NPhmD','36585LQLRNv','RXNML','wfKyh','user:','AYmot','be\x20ba','rl-en','HoerK','id\x20su','UTzEC','h\x20of\x20','FileS','ABnjp','ust\x20u','searc','Send\x20','Error','e@moo','WSPZn','sWClC','xfTaF','Inval','ion\x20f','vapid','ig:','pPUvO','parse','write','Priva','on\x20mu','utf8','tarti','eczwf','TOQpe','e\x20fou','UOSzt','t\x20be\x20',']\x20Rou','int\x20e','\x20and\x20','not\x20c','rMUTP','ed\x20fo','aqxfS','tartu','cKey','d\x20to\x20','HaDgT','EUzww','requi','imum\x20','\x20conf','catio','EQwCt','Iluzq','send\x20','ed\x20ex','VDhRx','pired','ycCep','apply','gify','Mpsyf','NxcwJ','\x20subs','defau','be\x20a\x20','2170632bqjpnj','uycth','coded','HzJtc','se\x20HT','XrzVz','NnSzN','Judjm','TbZun','454262skRPPW','nUHlB','xceed','KSKKm','then','d\x20fro','setVa','r:\x20','readF','UcNIF','load\x20',']\x20Sub','AVljW','push-','...','UQJnY','Loade','RCRPz','mailt','-publ','acter','vfXjc','dgoqZ','\x20not\x20','on\x20to','s\x20not','BTNnO','ons.j','t\x20is\x20','tKqPk','s\x20fil',')+)+)','p\x20-\x20w','send','faile','or\x20','FAhhv','CULOK','ions','BkFXJ','nd,\x20s','get','CtroR','able','objec','scrib','sOGeP','hXmwR','YbsQo','ured','GYGkg','h\x20mus','iMiUq','Sendi','lengt','must\x20','eCIOj','Faile','Jaxdg','No\x20su','ync','EicaB','cAmqF','ng\x20su','\x20savi','KVbMN','tHlii','on\x20fi','ing','tSxvv','info','kVdqE','baFiv','sCode','encod','body','Push\x20','mYtje','176Teftig','lized','Publi','(((.+','yVOBp','Dmnhk','\x20for\x20','SVrXz','Xxlob','OLhmB','Remov','AXdID','hCMvl','o:nat','be\x20','483857iurBLY','New\x20m','BTMIH','\x20an\x20o','json','tKowZ','test','daApk','JshCm','keys\x20','AoDrG','yvXxz','sSync','publi','[Push','push/','auth\x20','3hKckDm','qbYET','YIxgu','lzAhG','uKAwP','960510zRHoKE','base6','is\x20re','subsc','dDsKp','error','ripti','keys','GkuAn','rst\x20p','ption','esh','TPS','SIdJG','strin','m\x20con','/api/','ribe','12bqcxOM','lid\x20U','pidDe','ring','VCuwb','Uplin','keys.','gured','rQYSa','ffFtj','eques','messa','DRikk','post','tails','mNBJe','LceQm','statu','h\x20is\x20','SOZKV','sage','dXEID','QLmQY','sAShW','onfig','zRBHp','tion\x20','se64u','ZLmbk','ileSy','Sent\x20','36vsUiVP','KfBKD','iyymE','cript','FMjRF','719504wXyJos','bscri','fig\x20s','jfjlu','FHOmQ','int','join','nOcvQ','ructo'];_0x5e3d=function(){return _0x5da0fc;};return _0x5e3d();}async function ensureVapidConfigured(){const _0x2dc42f={'CtroR':'endpo'+_0x229702(-0x11b,-0xae)+_0x229702(0x13,-0x7b)+_0x5772af(-0xcf,-0x128)+_0x5772af(-0x185,-0x1d4),'IMxXU':function(_0x5a9e22,_0x5aa273){return _0x5a9e22===_0x5aa273;},'yVOBp':_0x5772af(-0xf3,-0xb7),'CDczQ':_0x229702(-0x9a,-0x47)+'lt','pOjLx':function(_0x4eb3f8,_0x1b11bf,_0x3f5a28){return _0x4eb3f8(_0x1b11bf,_0x3f5a28);},'yzVAd':_0x5772af(-0x1be,-0x13c),'YbsQo':function(_0x4d7a39,_0x2babc6){return _0x4d7a39!==_0x2babc6;},'ErOzG':_0x229702(-0x191,-0xff),'jfjlu':'(((.+'+_0x5772af(-0xab,-0xdf)+'+$','QLmQY':_0x5772af(-0x179,-0x127)+'auth\x20'+_0x229702(-0xff,-0x101)+_0x5772af(-0x12a,-0x19f)+'d','HzJtc':_0x5772af(-0xb8,-0xae)+_0x5772af(-0x1a9,-0x1d6)+_0x229702(-0xe9,-0x77)+'nco.p'+'ro','iMGsw':function(_0x1fd574,_0x85af4f){return _0x1fd574&&_0x85af4f;},'YIxgu':function(_0x58026f,_0x4e5db){return _0x58026f===_0x4e5db;},'VCuwb':_0x5772af(-0x1cc,-0x133),'tVmvq':'VAPID'+_0x5772af(-0x12b,-0x144)+_0x229702(-0x98,-0x25)+'avail'+_0x5772af(-0x1d9,-0x1dd),'exADU':_0x229702(-0x2b,-0x81),'TOQpe':_0x5772af(-0x1cb,-0x162)+_0x5772af(-0xe8,-0x185)+_0x229702(0x65,-0x32)+_0x5772af(-0x13d,-0x118)+_0x5772af(-0xe3,-0x11e)+_0x5772af(-0xfe,-0xae)};function _0x5772af(_0x46113a,_0x8b2b6){return _0x481259(_0x46113a-0xc,_0x8b2b6);}const _0x26effe=(function(){let _0x3b842f=!![];return function(_0x2bed88,_0x1d43d5){const _0x201e97={'cOULk':_0x2dc42f[_0x32c02b(-0x3c,0x15)],'MTLnD':function(_0x2801c7,_0x3339f2){return _0x2dc42f['IMxXU'](_0x2801c7,_0x3339f2);},'rPzHu':_0x2dc42f[_0x445711(-0x2b4,-0x21b)],'qbYET':function(_0x53d2d6,_0x57de4a){return _0x53d2d6||_0x57de4a;},'hXmwR':_0x2dc42f['CDczQ'],'ycCep':function(_0x5b5cdd,_0x5d63dd,_0x47d020){return _0x2dc42f['pOjLx'](_0x5b5cdd,_0x5d63dd,_0x47d020);},'gSbZo':_0x2dc42f[_0x445711(-0x1e1,-0x189)]};function _0x32c02b(_0x1fe6d9,_0xf1ada3){return _0xfdea(_0x1fe6d9- -0x2bb,_0xf1ada3);}function _0x445711(_0x338ed0,_0x217624){return _0xfdea(_0x217624- -0x388,_0x338ed0);}if(_0x2dc42f[_0x445711(-0x284,-0x23d)](_0x445711(-0x1d6,-0x1d9),_0x2dc42f[_0x445711(-0x1b7,-0x191)])){const _0x4c33ee=_0x3b842f?function(){function _0x5581df(_0x4c124f,_0x567be3){return _0x32c02b(_0x567be3-0x46b,_0x4c124f);}function _0x139ff4(_0x4b99fe,_0x1a2208){return _0x32c02b(_0x1a2208-0x3b,_0x4b99fe);}if(_0x201e97['MTLnD'](_0x201e97[_0x139ff4(0x3,-0x8e)],_0x5581df(0x3c4,0x3dc))){if(_0x1d43d5){const _0x3b3ad7=_0x1d43d5[_0x139ff4(-0xb,-0x3b)](_0x2bed88,arguments);return _0x1d43d5=null,_0x3b3ad7;}}else return CJyjfL['cOULk'];}:function(){};return _0x3b842f=![],_0x4c33ee;}else{const {userId:_0x562bdd}=_0x56cb9d[_0x445711(-0x1d1,-0x222)],_0x4b0d48=_0x201e97[_0x445711(-0x23c,-0x1fe)](_0x562bdd,_0x201e97[_0x445711(-0x27f,-0x23e)]);delete _0x11c141[_0x4b0d48],_0x57e528(_0x3f1580),_0x201e97[_0x32c02b(-0x77,-0x9a)](_0x38e8fc,_0x201e97['gSbZo'],'[Push'+_0x32c02b(-0x5b,-0x51)+'scrip'+_0x445711(-0x232,-0x1ce)+'remov'+_0x32c02b(-0x88,-0xc5)+_0x445711(-0x170,-0x12c)+_0x4b0d48);const _0x590a7d={};_0x590a7d['ok']=!![],_0x3d58e2[_0x32c02b(-0x13f,-0x126)](_0x590a7d);}};}());function _0x229702(_0x48836c,_0x4edd1e){return _0x481259(_0x4edd1e-0x9a,_0x48836c);}const _0x448d7e=_0x26effe(this,function(){function _0x178c0a(_0x2de416,_0x2d7027){return _0x229702(_0x2de416,_0x2d7027-0x10c);}function _0x2693d8(_0x56b6e0,_0x54edbf){return _0x229702(_0x56b6e0,_0x54edbf-0x1ae);}return _0x448d7e['toStr'+'ing']()[_0x178c0a(0xc0,0x92)+'h'](_0x2dc42f[_0x2693d8(0x14d,0xe4)])[_0x2693d8(0xbb,0x110)+'ing']()[_0x2693d8(0x163,0xea)+_0x2693d8(0x166,0xe9)+'r'](_0x448d7e)[_0x2693d8(0x12e,0x134)+'h'](_0x2dc42f[_0x178c0a(0xa9,0x42)]);});_0x448d7e();if(vapidConfigured)return!![];try{const _0x56794b=await loadConfig(),_0x54bac1=_0x56794b[_0x5772af(-0xff,-0x120)+_0x5772af(-0x1b4,-0x1eb)+_0x229702(-0x8,-0x5b)]||process.env.VAPID_PUBLIC_KEY,_0x1cdb78=_0x56794b['vapid'+_0x5772af(-0xfa,-0x159)+'teKey']||process.env.VAPID_PRIVATE_KEY,_0x45209d=process.env.VAPID_EMAIL||_0x2dc42f[_0x5772af(-0xd0,-0xcd)];if(_0x2dc42f[_0x229702(-0x89,-0x8b)](_0x54bac1,_0x1cdb78))return _0x2dc42f[_0x229702(-0x152,-0x106)](_0x5772af(-0x1cc,-0x1a8),_0x2dc42f[_0x5772af(-0x17b,-0x144)])?(_0x174449[_0x5772af(-0xc4,-0x30)+_0x5772af(-0x17d,-0x161)+_0x5772af(-0x171,-0x106)](_0x45209d,_0x54bac1,_0x1cdb78),vapidConfigured=!![],log[_0x229702(-0x1a3,-0x130)](_0x229702(-0x93,-0xaf)+'\x20conf'+'igure'+_0x229702(-0x91,-0x37)+_0x5772af(-0x182,-0x1a9)+_0x229702(-0x6d,-0xcb)+'tore'),!![]):dpKNVS[_0x229702(-0x93,-0xdb)];return log[_0x5772af(-0x118,-0x157)](_0x2dc42f['tVmvq']),![];}catch(_0x1e8316){return _0x2dc42f['exADU']==='jXXBb'?_0x229702(-0x107,-0xeb)+_0x5772af(-0x11c,-0xae)+_0x5772af(-0x1d1,-0x1e0)+_0x5772af(-0xf2,-0x109)+_0xf3987a+'-'+_0xf283c2+(_0x5772af(-0x13b,-0x1b5)+'acter'+_0x5772af(-0x137,-0x115)+'t\x20')+_0x58a440[_0x5772af(-0x1ce,-0x1bd)+'h']+')':(log['error'](_0x2dc42f[_0x229702(-0x68,-0x67)],_0x1e8316[_0x229702(-0x13d,-0xe6)+'ge']),![]);}}async function getVapidPublicKey(){const _0x3d7657={'UQJnY':function(_0x54df25){return _0x54df25();},'tdbnq':function(_0x1a59f5,_0xc42533){return _0x1a59f5!==_0xc42533;},'dXEID':_0x36905f(0x4de,0x51e),'NxcwJ':'iPbSe'};function _0x36905f(_0x1e5839,_0x4a8ab8){return _0x434e1d(_0x4a8ab8-0x70d,_0x1e5839);}function _0xec5053(_0x4ef60e,_0x2dcaad){return _0x434e1d(_0x2dcaad-0x307,_0x4ef60e);}try{const _0x1bd9c8=await _0x3d7657[_0xec5053(0x206,0x1d4)](loadConfig);return _0x1bd9c8[_0xec5053(0x1b8,0x190)+_0xec5053(0x75,0xdb)+_0x36905f(0x5be,0x5ac)]||process.env.VAPID_PUBLIC_KEY||null;}catch{if(_0x3d7657['tdbnq'](_0x3d7657[_0xec5053(0xe8,0x125)],_0x3d7657[_0x36905f(0x649,0x5be)]))return process.env.VAPID_PUBLIC_KEY||null;else try{_0x3ae9f1[_0x36905f(0x56b,0x59a)+_0xec5053(0x14e,0x184)+'ync'](_0x23ff96,_0x41bf4a['strin'+'gify'](_0x20418d,null,-0x18a6+-0x23fc+0x2*0x1e52));}catch(_0x120103){_0x1cd95a['error'](_0x36905f(0x529,0x58f)+_0xec5053(0x167,0xcb)+_0xec5053(0x108,0xca)+_0xec5053(0xba,0x135)+_0x36905f(0x49a,0x50e)+'s:',_0x120103[_0xec5053(0xd9,0x11b)+'ge']);}}}ensureVapidConfigured()[_0x434e1d(-0x13e,-0xc1)](_0x327ef0=>{const _0x4caa58={};function _0x69e3cb(_0x1f3d9b,_0x2ddd36){return _0x434e1d(_0x2ddd36-0x593,_0x1f3d9b);}function _0x29b5be(_0x4ea9c3,_0x25732b){return _0x434e1d(_0x4ea9c3-0x28b,_0x25732b);}_0x4caa58[_0x29b5be(0x152,0x132)]=_0x69e3cb(0x3cb,0x3de)+'\x20keys'+_0x69e3cb(0x4ff,0x468)+_0x69e3cb(0x42e,0x3cb)+'gured'+_0x69e3cb(0x366,0x3d3)+_0x69e3cb(0x4ab,0x431)+_0x69e3cb(0x453,0x471)+'ill\x20r'+_0x29b5be(0xf9,0x137)+'on\x20fi'+'rst\x20p'+_0x69e3cb(0x401,0x3d9)+_0x69e3cb(0x436,0x3a6)+'t';const _0x333fb5=_0x4caa58;if(!_0x327ef0)log[_0x69e3cb(0x2f1,0x35d)](_0x333fb5[_0x69e3cb(0x49d,0x45a)]);});function loadSubscriptions(){const _0x16ebd0={};_0x16ebd0[_0x4cf6f7(0x1eb,0x15d)]=_0x4cf6f7(0x17a,0x177)+_0x496961(-0x7f,-0x14)+_0x496961(-0xbe,-0x5e)+'ed\x20-\x20'+_0x496961(-0xdd,-0x126)+'\x20not\x20'+'confi'+_0x496961(-0x118,-0x132),_0x16ebd0['Mpsyf']=_0x496961(-0xdd,-0xcd)+_0x4cf6f7(0x27c,0x27c)+_0x4cf6f7(0x175,0x1df)+_0x4cf6f7(0x184,0x1b7),_0x16ebd0[_0x496961(-0x67,-0xb2)]=_0x4cf6f7(0x207,0x1b6)+_0x496961(-0x137,-0xb6)+_0x496961(-0x16d,-0xde)+_0x496961(-0xb1,-0x33)+_0x4cf6f7(0x162,0x1cb)+'rl-en'+_0x4cf6f7(0x1e2,0x25e),_0x16ebd0[_0x4cf6f7(0x10d,0x165)]=function(_0x3c9126,_0x41b6f9){return _0x3c9126===_0x41b6f9;};function _0x496961(_0x5199d2,_0x525e95){return _0x481259(_0x5199d2-0x6c,_0x525e95);}_0x16ebd0[_0x4cf6f7(0x257,0x248)]=_0x4cf6f7(0x1ce,0x1e3),_0x16ebd0['aERbu']=_0x4cf6f7(0x1de,0x237),_0x16ebd0[_0x4cf6f7(0x28b,0x1fe)]='NUail',_0x16ebd0[_0x4cf6f7(0x26c,0x27b)]=_0x496961(-0xce,-0x107);function _0x4cf6f7(_0x3c058b,_0x4f1cd0){return _0x481259(_0x4f1cd0-0x33b,_0x3c058b);}_0x16ebd0[_0x4cf6f7(0x1a2,0x200)]=_0x4cf6f7(0xef,0x166)+_0x4cf6f7(0x188,0x1d5)+_0x496961(-0x127,-0xc6)+_0x496961(-0x4c,-0xdd)+'e\x20fou'+_0x4cf6f7(0x24d,0x28d)+_0x496961(-0x97,-0xf7)+_0x496961(-0xef,-0xeb)+_0x496961(-0x126,-0x111);const _0x396f14=_0x16ebd0;try{if(_0x396f14['Jaxdg'](_0x396f14[_0x4cf6f7(0x226,0x248)],_0x396f14[_0x4cf6f7(0x1d0,0x248)])){if(_0x82621f['exist'+_0x4cf6f7(0x159,0x194)](SUBSCRIPTIONS_FILE)){const _0x53b233=_0x82621f['readF'+_0x4cf6f7(0x183,0x1cd)+'nc'](SUBSCRIPTIONS_FILE,_0x396f14[_0x496961(-0xea,-0x100)]),_0x4f399e=JSON[_0x4cf6f7(0x1cb,0x233)](_0x53b233);return log[_0x4cf6f7(0xdd,0x171)](_0x496961(-0x5a,-0xe3)+'d\x20'+Object[_0x496961(-0x12a,-0x14b)](_0x4f399e)[_0x4cf6f7(0x171,0x161)+'h']+(_0x4cf6f7(0x2dd,0x259)+_0x4cf6f7(0x149,0x1d2)+_0x496961(-0x44,-0x4b))),_0x4f399e;}}else{_0x54aa1f[_0x4cf6f7(0x219,0x217)](_0x396f14['GYGkg']);const _0x2271ce={};return _0x2271ce['ok']=![],_0x2271ce[_0x496961(-0x12c,-0xff)]=_0x396f14[_0x496961(-0x78,0x2)],_0x2271ce;}}catch(_0x1e81bc){if(_0x396f14[_0x496961(-0xd1,-0x71)]===_0x396f14[_0x4cf6f7(0x2ec,0x27b)])return RxyIio[_0x496961(-0x67,-0x101)];else log[_0x4cf6f7(0x209,0x217)](_0x396f14[_0x4cf6f7(0x21a,0x200)]);}return{};}function saveSubscriptions(_0x2903fe){const _0x1ac04d={};function _0x4676b9(_0x246e10,_0x309dcb){return _0x434e1d(_0x309dcb-0x5a7,_0x246e10);}_0x1ac04d['QnmOP']=_0x4676b9(0x49d,0x429)+_0x3ea89e(0x1bb,0x1a2)+_0x3ea89e(0x1f9,0x1a1)+_0x4676b9(0x3f9,0x3d5)+_0x4676b9(0x323,0x3a8)+'s:';const _0x15ca11=_0x1ac04d;function _0x3ea89e(_0x25d802,_0x666cd6){return _0x434e1d(_0x666cd6-0x3de,_0x25d802);}try{_0x82621f[_0x4676b9(0x494,0x434)+_0x3ea89e(0x1f8,0x25b)+_0x4676b9(0x403,0x367)](SUBSCRIPTIONS_FILE,JSON[_0x4676b9(0x315,0x3ac)+_0x4676b9(0x462,0x456)](_0x2903fe,null,-0x279*0xf+0x19df*-0x1+-0x208*-0x1f));}catch(_0x4f34fd){log['error'](_0x15ca11['QnmOP'],_0x4f34fd[_0x4676b9(0x348,0x3bb)+'ge']);}}let subscriptions=loadSubscriptions();export async function sendPushNotification(_0x50c6f7,_0x22126f){const _0x1d94db={'MOfhd':_0x376ccf(0x3d9,0x426)+'int\x20i'+_0x1fc588(0x4aa,0x4dd)+'\x20a\x20va'+_0x1fc588(0x3dd,0x3ba)+'RL','lzAhG':'utf8','XrzVz':function(_0x3da8ef){return _0x3da8ef();},'Judjm':function(_0x3c3aac,_0x4a4d26){return _0x3c3aac!==_0x4a4d26;},'pfObL':_0x376ccf(0x447,0x490),'SOZKV':_0x376ccf(0x433,0x40f),'zRBHp':_0x376ccf(0x3dc,0x3cf)+'\x20not\x20'+_0x1fc588(0x40b,0x44f)+_0x1fc588(0x3e3,0x413),'sAShW':function(_0x5effd2,_0x53e9d7){return _0x5effd2||_0x53e9d7;},'FMjRF':_0x376ccf(0x439,0x47a),'OjzPN':_0x1fc588(0x392,0x373)+_0x376ccf(0x3bf,0x39b)+_0x1fc588(0x3d4,0x41d),'KfBKD':_0x1fc588(0x454,0x458)+_0x376ccf(0x471,0x418)+'d:','baFiv':_0x376ccf(0x444,0x4c2)+'lt','GkuAn':function(_0x415026,_0x21036a){return _0x415026(_0x21036a);}},_0x1041e1=await _0x1d94db[_0x376ccf(0x44b,0x455)](ensureVapidConfigured);function _0x376ccf(_0x39c0b6,_0x1579c6){return _0x434e1d(_0x39c0b6-0x591,_0x1579c6);}if(!_0x1041e1){if(_0x1d94db[_0x1fc588(0x48f,0x516)](_0x1d94db[_0x376ccf(0x3f2,0x44a)],_0x1d94db[_0x1fc588(0x3ef,0x448)])){log[_0x1fc588(0x443,0x43c)]('Push\x20'+_0x1fc588(0x47c,0x40e)+'skipp'+'ed\x20-\x20'+_0x1fc588(0x41e,0x434)+'\x20not\x20'+'confi'+_0x1fc588(0x3e3,0x465));const _0x7408b0={};return _0x7408b0['ok']=![],_0x7408b0[_0x1fc588(0x3cf,0x33f)]=_0x1d94db[_0x1fc588(0x3f5,0x3c9)],_0x7408b0;}else return VXgbbi[_0x1fc588(0x410,0x419)];}const _0xc78214=subscriptions[_0x1d94db[_0x1fc588(0x3f3,0x426)](_0x50c6f7,_0x1fc588(0x486,0x456)+'lt')];if(!_0xc78214){if(_0x1d94db[_0x1fc588(0x3ff,0x38b)]!==_0x1d94db[_0x376ccf(0x3bd,0x3c4)]){if(_0x9a0308['exist'+'sSync'](_0x231da8)){const _0x37ed29=_0x545315[_0x1fc588(0x499,0x517)+'ileSy'+'nc'](_0x3f3404,VXgbbi[_0x376ccf(0x386,0x3e3)]),_0x5c05f8=_0x404725[_0x376ccf(0x41d,0x424)](_0x37ed29);return _0x369a65[_0x1fc588(0x39d,0x419)]('Loade'+'d\x20'+_0xe9554c['keys'](_0x5c05f8)[_0x1fc588(0x38d,0x313)+'h']+(_0x1fc588(0x485,0x41e)+_0x1fc588(0x3fe,0x457)+'ions')),_0x5c05f8;}}else{log[_0x1fc588(0x443,0x417)]('No\x20su'+_0x376ccf(0x3bf,0x379)+_0x376ccf(0x392,0x37d)+_0x376ccf(0x369,0x3f6)+_0x1fc588(0x448,0x4e4)+'\x20'+_0x50c6f7);const _0x4562f7={};return _0x4562f7['ok']=![],_0x4562f7['error']=_0x1d94db['OjzPN'],_0x4562f7;}}function _0x1fc588(_0x2f01ff,_0x5967b3){return _0x434e1d(_0x2f01ff-0x5d3,_0x5967b3);}try{log['debug'](_0x376ccf(0x34a,0x317)+_0x376ccf(0x3c8,0x45a)+'\x20endp'+'oint:'+'\x20'+_0xc78214[_0x1fc588(0x41b,0x4b7)+_0x1fc588(0x405,0x422)]['subst'+_0x1fc588(0x3df,0x385)](-0xbe*0x9+-0x1ac7+0x23b*0xf,0x24ca*-0x1+0x4*0x959+-0x68)+_0x376ccf(0x45d,0x449));const _0xf36ebd=await _0x174449['sendN'+'otifi'+_0x376ccf(0x437,0x4c7)+'n'](_0xc78214,JSON[_0x376ccf(0x396,0x33d)+_0x1fc588(0x482,0x428)](_0x22126f));log[_0x1fc588(0x443,0x3e5)](_0x376ccf(0x3b8,0x424)+'notif'+_0x376ccf(0x3db,0x416)+_0x376ccf(0x467,0x427)+'\x20'+_0x50c6f7,_0xf36ebd);const _0x348115={};return _0x348115['ok']=!![],_0x348115;}catch(_0x52d2da){log[_0x1fc588(0x3cf,0x426)](_0x1d94db[_0x1fc588(0x3fc,0x48a)],_0x52d2da[_0x1fc588(0x3ed,0x3ba)+_0x376ccf(0x35e,0x38e)],_0x52d2da[_0x1fc588(0x3e7,0x391)+'ge'],_0x52d2da[_0x1fc588(0x3a2,0x42a)]);_0x52d2da[_0x1fc588(0x3ed,0x402)+_0x1fc588(0x3a0,0x428)]===0x18f+-0x65*0x42+0x1a15&&(delete subscriptions[_0x50c6f7||_0x1d94db[_0x376ccf(0x35d,0x2e4)]],_0x1d94db[_0x376ccf(0x390,0x3c5)](saveSubscriptions,subscriptions),log[_0x1fc588(0x39d,0x322)]('Remov'+_0x1fc588(0x47d,0x4d1)+'pired'+'\x20subs'+'cript'+'ion\x20f'+_0x376ccf(0x472,0x3db)+_0x50c6f7));const _0x4c4e5b={};return _0x4c4e5b['ok']=![],_0x4c4e5b['error']=_0x52d2da[_0x1fc588(0x3e7,0x413)+'ge'],_0x4c4e5b;}}function _0xfdea(_0x5e3d4e,_0xfdea3e){_0x5e3d4e=_0x5e3d4e-(-0x2076+0xde6+0x13d6);const _0x1b514b=_0x5e3d();let _0x123138=_0x1b514b[_0x5e3d4e];return _0x123138;}function _0x434e1d(_0xf0d69f,_0x4466f7){return _0xfdea(_0xf0d69f- -0x397,_0x4466f7);}export function setupPushRoutes(_0x1dc180,_0xb3b192){const _0x2c2247={'mYtje':function(_0x3c6d1c,_0x61aa25){return _0x3c6d1c===_0x61aa25;},'TbZun':_0x210b1e(0x148,0x148),'Xxlob':function(_0x51e446){return _0x51e446();},'cAmqF':_0x210b1e(0xe7,0x52),'WSPZn':_0x210b1e(0xa2,0x56)+_0x280c28(0x297,0x2ad)+_0x280c28(0x21e,0x2b9)+_0x210b1e(0x87,0x29),'SIdJG':'utf8','sdEut':function(_0x28c7c1,_0x1cb520){return _0x28c7c1!==_0x1cb520;},'pPUvO':_0x280c28(0x1d4,0x140),'VDhRx':function(_0xac2673,_0x37a04e){return _0xac2673||_0x37a04e;},'AoDrG':_0x210b1e(0x185,0xf5)+'lt','zpQgK':function(_0xd7e163,_0x57eaac,_0x1ccf04){return _0xd7e163(_0x57eaac,_0x1ccf04);},'RXNML':'info','tSxvv':_0x210b1e(0x91,0xcf)+_0x210b1e(0x100,0x13b)+'ption','EcqgI':_0x280c28(0x1e0,0x201),'SVrXz':_0x280c28(0x1e5,0x1f8),'UTzEC':_0x210b1e(0xb4,0xcb)+_0x210b1e(0x122,0x8a)+'e','eczwf':_0x280c28(0x251,0x201)+_0x210b1e(0x124,0x17b)+_0x280c28(0x21a,0x1e0),'bqnCW':function(_0x1f3184,_0x18409f){return _0x1f3184!==_0x18409f;},'JshCm':_0x280c28(0x244,0x214),'vfXjc':function(_0x209b21,_0xd8322a){return _0x209b21(_0xd8322a);},'FCOsa':function(_0x44512a,_0xc51571,_0x48620c){return _0x44512a(_0xc51571,_0x48620c);},'tKqPk':function(_0x2783bb,_0xea5b99){return _0x2783bb!==_0xea5b99;},'dfVfM':_0x280c28(0x24c,0x1c1),'EQwCt':_0x210b1e(0x1b5,0x19e),'AVljW':_0x280c28(0x204,0x201)+'push/'+_0x280c28(0x1f7,0x233)+_0x280c28(0x205,0x24f),'AtusK':_0x210b1e(0xc1,0x36)+_0x280c28(0x294,0x265)+'tes\x20i'+_0x210b1e(0x137,0xeb)+_0x280c28(0x1d0,0x1ba)};function _0x280c28(_0x3046d7,_0x5e9567){return _0x481259(_0x3046d7-0x391,_0x5e9567);}const {log:_0x52441c,strictLimiter:_0x4511d0}=_0xb3b192;function _0x210b1e(_0x4001dd,_0x395206){return _0x481259(_0x4001dd-0x266,_0x395206);}_0x1dc180['get'](_0x210b1e(0xd9,0x83)+'push/'+_0x210b1e(0x15b,0xd2)+_0x280c28(0x2ce,0x354)+'ic',async(_0x2e379f,_0x356298)=>{function _0x3e35e9(_0xbdd274,_0x464484){return _0x210b1e(_0x464484- -0x24e,_0xbdd274);}function _0x47d185(_0x100090,_0x4bd842){return _0x210b1e(_0x4bd842-0x2f2,_0x100090);}if(_0x2c2247[_0x47d185(0x3cd,0x395)](_0x2c2247[_0x3e35e9(-0xfe,-0xbf)],_0x3e35e9(-0x135,-0x106))){const _0xe93530=await _0x2c2247[_0x47d185(0x3df,0x39e)](getVapidPublicKey);if(!_0xe93530){if(_0x2c2247[_0x47d185(0x416,0x386)]===_0x3e35e9(-0x137,-0x167)){const _0x566931={};return _0x566931[_0x47d185(0x430,0x3c0)]=_0x2c2247[_0x47d185(0x4ca,0x448)],_0x356298[_0x47d185(0x3f7,0x3de)+'s'](-0x892*0x4+0x46*0x6d+0x671*0x1)[_0x3e35e9(-0x20f,-0x197)](_0x566931);}else return _0x56068b.env.VAPID_PUBLIC_KEY||null;}const _0x22cc7c={};_0x22cc7c[_0x47d185(0x355,0x3b2)+'cKey']=_0xe93530,_0x356298[_0x47d185(0x339,0x3a9)](_0x22cc7c);}else{const _0xc1f470={};return _0xc1f470[_0x3e35e9(-0x10c,-0x180)]=_0x47d185(0x34f,0x394)+'not\x20c'+'onfig'+'ured',_0x358583['statu'+'s'](-0xe49+0x71e+-0x491*-0x2)[_0x47d185(0x3cb,0x3a9)](_0xc1f470);}}),_0x1dc180[_0x210b1e(0xe8,0x7d)](_0x2c2247[_0x280c28(0x2c7,0x2b0)],_0x4511d0,(_0xfe7d8c,_0x2d3129)=>{const {subscription:_0x28967c,userId:_0x323f83}=_0xfe7d8c['body'],_0x35061a=validatePushSubscription(_0x28967c);if(_0x35061a){if(_0x2c2247['sdEut'](_0x2c2247[_0x4efacc(0x168,0x113)],_0x2c2247[_0x4efacc(0x105,0x113)])){const _0x5461b0=_0x16ca02[_0x4efacc(0x1cd,0x14e)+_0x4efacc(0xa5,0xae)+'nc'](_0x2854e1,iLohmK[_0x4efacc(0xe5,0x8c)]),_0x2c1a6f=_0x46cc19[_0x4efacc(0x15d,0x114)](_0x5461b0);return _0x30be5a[_0x4efacc(0xaf,0x52)](_0x1bab14(0x276,0x2bc)+'d\x20'+_0x22a7f0[_0x4efacc(0x76,0x86)](_0x2c1a6f)[_0x1bab14(0x162,0x123)+'h']+('\x20subs'+_0x1bab14(0x1d3,0x238)+_0x1bab14(0x28c,0x21b))),_0x2c1a6f;}else{const _0x30e5b5={};return _0x30e5b5[_0x1bab14(0x1a4,0x179)]=_0x4efacc(0x198,0x10f)+_0x1bab14(0x222,0x223)+'bscri'+_0x4efacc(0x6b,0x89)+':\x20'+_0x35061a,_0x2d3129[_0x1bab14(0x1c2,0x24a)+'s'](-0xe4e+0xae+-0x2*-0x798)[_0x1bab14(0x18d,0x130)](_0x30e5b5);}}const _0x543ccb=_0x2c2247[_0x4efacc(0xb5,0x133)](_0x323f83,_0x2c2247[_0x4efacc(0x2e,0x73)]);subscriptions[_0x543ccb]=_0x28967c,saveSubscriptions(subscriptions),_0x2c2247['zpQgK'](_0x52441c,_0x2c2247['RXNML'],_0x1bab14(0x197,0x130)+_0x1bab14(0x271,0x1ec)+_0x1bab14(0x1fd,0x164)+_0x4efacc(0x1b,0xab)+'saved'+_0x1bab14(0x1ec,0x1c0)+'\x20'+_0x543ccb);function _0x4efacc(_0xfffe7f,_0x58f3f6){return _0x210b1e(_0x58f3f6- -0x4a,_0xfffe7f);}const _0x1eda50={};function _0x1bab14(_0x42f402,_0x4f1dd8){return _0x210b1e(_0x42f402-0xd6,_0x4f1dd8);}_0x1eda50['ok']=!![],_0x2d3129['json'](_0x1eda50);}),_0x1dc180[_0x280c28(0x213,0x248)](_0x280c28(0x204,0x1e6)+_0x280c28(0x1ed,0x166)+_0x280c28(0x2dc,0x26a),_0x4511d0,async(_0x3e321a,_0x10ede5)=>{const _0x4d8f7a={};_0x4d8f7a[_0x2ab639(0x518,0x533)]=_0x2c2247[_0x2ab639(0x3af,0x441)],_0x4d8f7a[_0x2ab639(0x540,0x4fe)]='No\x20su'+_0x2ab639(0x52d,0x4a6)+_0x24f656(0x318,0x30f)+_0x2ab639(0x585,0x554)+_0x24f656(0x3ab,0x32f)+'nd,\x20s'+'tarti'+_0x2ab639(0x51d,0x4b1)+_0x2ab639(0x451,0x47a);function _0x2ab639(_0x5ce0e2,_0x43ddc0){return _0x280c28(_0x43ddc0-0x27b,_0x5ce0e2);}const _0x382fce=_0x4d8f7a;function _0x24f656(_0x91001c,_0x1259eb){return _0x280c28(_0x91001c-0x11a,_0x1259eb);}if(_0x2c2247['EcqgI']==='Tqfgo'){_0x29f946[_0x2ab639(0x482,0x4e8)](_0x24f656(0x2d6,0x272)+'bscri'+'ption'+'\x20for\x20'+'user:'+'\x20'+_0x5162e5);const _0x50e6a7={};return _0x50e6a7['ok']=![],_0x50e6a7[_0x24f656(0x313,0x37b)]=GnRzMD[_0x2ab639(0x4bb,0x533)],_0x50e6a7;}else{const {userId:_0x3a3b8b,title:_0x4cbeb6,body:_0x363b8e,url:_0x132d9a,satelliteId:_0x31a99a,tag:_0x49b40d}=_0x3e321a['body'],_0x53d8d6=await _0x2c2247[_0x24f656(0x2f1,0x356)](ensureVapidConfigured);if(!_0x53d8d6){if(_0x2c2247[_0x24f656(0x2f0,0x27c)]!==_0x2ab639(0x55f,0x4fd)){const _0x34ac98={};return _0x34ac98[_0x24f656(0x313,0x397)]=_0x2c2247[_0x2ab639(0x511,0x4fc)],_0x10ede5[_0x24f656(0x331,0x306)+'s'](-0x631*0x5+-0xf10+0x2ffc)[_0x2ab639(0x3cd,0x45d)](_0x34ac98);}else return _0x2ab639(0x4a4,0x487)+_0x24f656(0x383,0x2fa)+_0x2ab639(0x480,0x493)+'requi'+_0x2ab639(0x470,0x4c6);}const _0x5b8254=await _0x2c2247[_0x24f656(0x359,0x2e3)](sendPushNotification,_0x3a3b8b||_0x2c2247[_0x24f656(0x302,0x29d)],{'title':_0x4cbeb6||_0x2ab639(0x4ea,0x486)+'k','body':_0x363b8e||_0x2c2247[_0x24f656(0x392,0x30d)],'url':_0x132d9a||'/','satelliteId':_0x31a99a,'tag':_0x49b40d||_0x2c2247[_0x24f656(0x3a9,0x3bb)]});if(_0x5b8254['ok']){const _0x13727c={};_0x13727c['ok']=!![],_0x10ede5[_0x2ab639(0x3ca,0x45d)](_0x13727c);}else _0x2c2247[_0x24f656(0x352,0x3e0)](_0x2c2247[_0x24f656(0x300,0x2d7)],_0x2c2247[_0x2ab639(0x475,0x461)])?_0x3056cd[_0x24f656(0x387,0x2fd)](GnRzMD[_0x24f656(0x39d,0x3c7)]):_0x10ede5[_0x24f656(0x331,0x2ee)+'s'](_0x2c2247[_0x24f656(0x2e8,0x2c9)](_0x5b8254[_0x2ab639(0x49f,0x474)],_0x24f656(0x2d6,0x30b)+'bscri'+_0x2ab639(0x3f6,0x479))?0x15f0+-0x1b99+0x73d:-0xf*0x8f+0x829*0x1+-0x116*-0x2)[_0x24f656(0x2fc,0x32a)](_0x5b8254);}}),_0x1dc180['delet'+'e'](_0x280c28(0x204,0x245)+'push/'+'unsub'+_0x280c28(0x1ae,0x200)+'e',_0x4511d0,(_0x8a80a1,_0x499a9d)=>{const {userId:_0x3b7924}=_0x8a80a1[_0x181052(-0x2f4,-0x275)],_0x12e3af=_0x2c2247['VDhRx'](_0x3b7924,'defau'+'lt');function _0x436ee9(_0x432890,_0x4dcaad){return _0x280c28(_0x4dcaad-0x2cd,_0x432890);}delete subscriptions[_0x12e3af],_0x2c2247[_0x181052(-0x191,-0x171)](saveSubscriptions,subscriptions),_0x2c2247['FCOsa'](_0x52441c,_0x2c2247['RXNML'],_0x436ee9(0x48f,0x4b9)+_0x436ee9(0x516,0x593)+_0x181052(-0x227,-0x1ef)+'tion\x20'+'remov'+'ed\x20fo'+_0x436ee9(0x5f4,0x58f)+_0x12e3af);function _0x181052(_0x3da80d,_0x157267){return _0x280c28(_0x157267- -0x441,_0x3da80d);}const _0x3db4b5={};_0x3db4b5['ok']=!![],_0x499a9d[_0x181052(-0x274,-0x25f)](_0x3db4b5);}),_0x1dc180[_0x210b1e(0x1b9,0x20d)](_0x210b1e(0xd9,0x15e)+_0x210b1e(0xc2,0x28)+_0x210b1e(0xec,0x168)+'s',async(_0x31c877,_0x5aee49)=>{function _0x125c4f(_0x13028e,_0x2c71ec){return _0x210b1e(_0x2c71ec-0x1c9,_0x13028e);}function _0x2455fa(_0x1e3f69,_0x634b3c){return _0x210b1e(_0x634b3c-0x1ab,_0x1e3f69);}if(_0x2c2247[_0x125c4f(0x2ed,0x376)](_0x2c2247['dfVfM'],_0x2c2247[_0x2455fa(0x377,0x324)])){const _0x1b9b04=await getVapidPublicKey();_0x5aee49[_0x2455fa(0x1dc,0x262)]({'configured':vapidConfigured,'subscriptions':Object[_0x125c4f(0x289,0x299)](subscriptions)[_0x2455fa(0x1f3,0x237)+'h'],'publicKey':_0x2c2247[_0x125c4f(0x2d7,0x346)](_0x1b9b04,null)});}else return _0x125c4f(0x2ff,0x2aa)+_0x2455fa(0x2f5,0x26e)+_0x125c4f(0x25f,0x256)+_0x125c4f(0x243,0x27b)+_0x173fda+'-'+_0x57936b+('\x20char'+_0x125c4f(0x30b,0x36d)+_0x2455fa(0x2c7,0x2ce)+'t\x20')+_0x2a6058['lengt'+'h']+')';}),_0x2c2247[_0x210b1e(0x114,0x78)](_0x52441c,_0x2c2247[_0x210b1e(0x145,0x1c8)],_0x2c2247[_0x210b1e(0x128,0x1ae)]);}
1
+ (function(_0x2941b8,_0x57cfcd){function _0x5889da(_0x83c42d,_0xfdc2cb){return _0x2fc5(_0xfdc2cb-0x23a,_0x83c42d);}const _0x39854d=_0x2941b8();function _0x3fdfa7(_0x4fe2ee,_0x4f0d60){return _0x2fc5(_0x4fe2ee-0x358,_0x4f0d60);}while(!![]){try{const _0x1bb399=parseInt(_0x5889da(0x48a,0x477))/(-0x1*-0x647+-0xa61*-0x2+-0x1b08)*(-parseInt(_0x3fdfa7(0x530,0x570))/(-0x391*-0xa+-0x12*0x1b5+0x2*-0x277))+-parseInt(_0x5889da(0x4a9,0x48c))/(-0xa8f*-0x3+-0x2222+0x278)*(parseInt(_0x5889da(0x4f0,0x45e))/(0x237a+0x2*-0xc83+0x14e*-0x8))+parseInt(_0x3fdfa7(0x668,0x5b7))/(-0x106f+0x1*-0x2501+0x3575)*(parseInt(_0x5889da(0x463,0x3e5))/(0x1048*0x2+0x1d23*-0x1+-0x1*0x367))+parseInt(_0x5889da(0x4da,0x4b5))/(0x33*0x3d+0x179d+-0x23bd)*(-parseInt(_0x3fdfa7(0x602,0x679))/(-0x282+0x1ee+0x1a*0x6))+parseInt(_0x3fdfa7(0x525,0x52b))/(0x820+-0x19c5+0x11ae)+parseInt(_0x5889da(0x4b6,0x45c))/(0x2*0x407+-0x1*-0x1a3e+0x36d*-0xa)+parseInt(_0x3fdfa7(0x5fe,0x63e))/(-0x3*0x2d7+-0xd59+0x15e9);if(_0x1bb399===_0x57cfcd)break;else _0x39854d['push'](_0x39854d['shift']());}catch(_0x7b9833){_0x39854d['push'](_0x39854d['shift']());}}}(_0x16bb,-0x711c6+-0xb68a5+0x1a124e));import _0x3b17b7 from'web-push';import _0xadf7e9 from'fs';function _0x2fc5(_0x16bb12,_0x2fc5d8){_0x16bb12=_0x16bb12-(0x21cd+0x15d9+-0x35fc);const _0x39122a=_0x16bb();let _0x903a2c=_0x39122a[_0x16bb12];return _0x903a2c;}import _0x5d70b3 from'path';import{createLogger}from'../logger.js';function _0x5d68bf(_0x3d9c1b,_0x507b38){return _0x2fc5(_0x507b38- -0x12d,_0x3d9c1b);}import{loadConfig}from'../runtime-config.js';const log=createLogger('Push'),BASE64URL_RE=/^[A-Za-z0-9_-]+$/,P256DH_MIN_LEN=0x182a+0x18bd*0x1+0x7*-0x6f1,P256DH_MAX_LEN=0x19ab*-0x1+-0x263e+0x4061,AUTH_MIN_LEN=0x1*-0x1205+0x27*0x21+-0x6*-0x22d,AUTH_MAX_LEN=0x83a+0x337*0x7+0x1e9b*-0x1,ENDPOINT_MAX_LEN=0xc59+-0x8de+0x485;export function validatePushSubscription(_0x45742b){const _0x2ace35={'PMGOx':_0xce3967(0x32f,0x354),'SfsEr':_0x290903(0x674,0x66a)+_0x290903(0x54a,0x5c2)+'t\x20is\x20'+_0xce3967(0x224,0x1ee)+'red','MnuPS':_0xce3967(0x20d,0x1e8)+_0x290903(0x62c,0x590)+_0x290903(0x5f1,0x56f)+_0xce3967(0x334,0x2ba)+'d','yfxaA':_0x290903(0x624,0x649)+'lt','jRIAI':function(_0x3c96d8,_0x3b2889,_0x5eb2f8){return _0x3c96d8(_0x3b2889,_0x5eb2f8);},'wLSsq':_0xce3967(0x27c,0x272),'pklrB':'Push\x20'+_0xce3967(0x254,0x28f)+_0xce3967(0x338,0x36b)+'ured','BOvnf':_0xce3967(0x302,0x2f3)+_0xce3967(0x30b,0x2a1)+_0x290903(0x67b,0x662)+_0xce3967(0x2da,0x2cf)+_0x290903(0x649,0x5cf)+_0xce3967(0x318,0x2d0)+'tarti'+_0xce3967(0x2fd,0x270)+_0xce3967(0x345,0x398),'bPbtv':function(_0xa9c3a6,_0x3e4baa){return _0xa9c3a6||_0x3e4baa;},'BRKSJ':function(_0x43ef49,_0x1f731d){return _0x43ef49(_0x1f731d);},'wUZjA':function(_0x43826d,_0x49544d){return _0x43826d!==_0x49544d;},'hmZTI':_0xce3967(0x1ec,0x139)+'t','HBcle':'DHGUo','BrXvh':'lqpkk','XMXjJ':_0x290903(0x5d0,0x5c7)+_0xce3967(0x2e6,0x243)+_0x290903(0x66e,0x692)+_0xce3967(0x204,0x17a)+'\x20an\x20o'+'bject','RnLBr':_0xce3967(0x26b,0x237)+'g','xzrrW':function(_0x2740db,_0x4c0c0a){return _0x2740db===_0x4c0c0a;},'GwFpi':_0xce3967(0x2b5,0x2a3),'dAkfO':'jRRFh','pEBhS':function(_0x4768d2,_0x258281){return _0x4768d2!==_0x258281;},'nJSzc':'KuvSb','rGHrT':'endpo'+_0xce3967(0x311,0x333)+_0x290903(0x544,0x4df)+'se\x20HT'+_0x290903(0x5db,0x568),'phtik':function(_0x4616aa,_0x4cbd2d){return _0x4616aa===_0x4cbd2d;},'cMMxK':_0xce3967(0x314,0x26d),'YPYFi':'RSCSk','YVJtX':_0xce3967(0x228,0x2bd),'lTIPA':_0xce3967(0x2fb,0x39c),'WPRPE':_0x290903(0x56b,0x5a9)+_0x290903(0x69b,0x722)+_0xce3967(0x2b2,0x28b)+_0xce3967(0x224,0x1cf)+'red','wKTdI':function(_0x41594e,_0x1ad06e){return _0x41594e<_0x1ad06e;},'vxJMM':function(_0x50649d,_0x788b3b){return _0x50649d>_0x788b3b;},'ktqsb':_0xce3967(0x280,0x209),'tccNY':'oVRyX','mgIRU':function(_0x528f63,_0x5f0157){return _0x528f63!==_0x5f0157;},'kVwqX':_0xce3967(0x320,0x2e5),'xnmhM':function(_0x2ae8ed,_0x141447){return _0x2ae8ed!==_0x141447;},'wIwDl':function(_0x5070e5,_0x472e58){return _0x5070e5!==_0x472e58;},'dVZUW':_0x290903(0x5ed,0x5a5),'mPFNS':function(_0x248149,_0x242e75){return _0x248149>_0x242e75;},'OwBEu':function(_0x58ef39,_0x16678e){return _0x58ef39!==_0x16678e;},'lKqgj':_0xce3967(0x221,0x246),'tdrnA':_0x290903(0x677,0x6b2),'oFilt':'keys.'+'auth\x20'+_0xce3967(0x2cd,0x379)+'be\x20ba'+_0x290903(0x596,0x521)+_0xce3967(0x23a,0x1e1)+_0x290903(0x5d7,0x53f)};if(!_0x45742b||_0x2ace35[_0xce3967(0x287,0x336)](typeof _0x45742b,_0x2ace35[_0xce3967(0x2d2,0x2e0)])){if(_0x2ace35[_0x290903(0x663,0x5ef)]!==_0x2ace35['BrXvh'])return _0x2ace35[_0xce3967(0x289,0x214)];else{const _0x5ffd37=_0x537c97[_0x290903(0x5e4,0x576)+'ileSy'+'nc'](_0x2a7dc3,_0x2ace35[_0xce3967(0x215,0x1d8)]),_0x529aa3=_0x553483['parse'](_0x5ffd37);return _0x364a5e['info'](_0xce3967(0x21d,0x1c4)+'d\x20'+_0x421508[_0xce3967(0x297,0x25b)](_0x529aa3)[_0x290903(0x556,0x5f9)+'h']+(_0x290903(0x545,0x4e0)+_0x290903(0x5ea,0x545)+_0x290903(0x6a1,0x731))),_0x529aa3;}}function _0xce3967(_0x2721c8,_0x1d662e){return _0x2fc5(_0x2721c8-0x38,_0x1d662e);}function _0x290903(_0xa6eb64,_0x546c7d){return _0x2fc5(_0xa6eb64-0x396,_0x546c7d);}const {endpoint:_0x2ccf69}=_0x45742b;if(typeof _0x2ccf69!==_0x2ace35[_0x290903(0x555,0x4a3)]||_0x2ace35[_0xce3967(0x2b6,0x366)](_0x2ccf69[_0x290903(0x556,0x581)+'h'],0x2330*-0x1+-0x186f+0x1*0x3b9f))return _0x2ace35[_0xce3967(0x2b6,0x23b)](_0x2ace35[_0xce3967(0x231,0x198)],_0x290903(0x613,0x62f))?_0x290903(0x63f,0x5a3)+_0xce3967(0x26d,0x2cb)+_0xce3967(0x203,0x236)+_0xce3967(0x29b,0x2b3)+'\x20and\x20'+_0x290903(0x62b,0x664)+_0x290903(0x5cc,0x5d8)+_0xce3967(0x296,0x339)+'mpty\x20'+'strin'+'g':_0x2ace35[_0xce3967(0x247,0x1ae)];if(_0x2ccf69['lengt'+'h']>ENDPOINT_MAX_LEN)return _0x2ace35['xzrrW'](_0x2ace35['dAkfO'],_0x2ace35[_0xce3967(0x2f7,0x304)])?_0xce3967(0x2e1,0x280)+_0xce3967(0x21c,0x2bf)+_0xce3967(0x294,0x31b)+_0x290903(0x634,0x5d8)+_0x290903(0x55f,0x5d8)+_0x290903(0x556,0x50b)+_0xce3967(0x2bf,0x22d)+ENDPOINT_MAX_LEN:_0x2ace35[_0xce3967(0x301,0x2a3)];try{const _0x3b9432=new URL(_0x2ccf69);if(_0x2ace35[_0x290903(0x5e5,0x577)](_0x3b9432[_0xce3967(0x21e,0x253)+'col'],_0x290903(0x68f,0x6ea)+':')){if(_0x2ace35[_0x290903(0x602,0x6aa)]('KuvSb',_0x2ace35[_0xce3967(0x2a0,0x2e5)])){const {userId:_0x5b3cab}=_0xe19bdf[_0xce3967(0x2dc,0x324)],_0x1e3568=_0x5b3cab||_0x2ace35[_0xce3967(0x330,0x2d3)];delete _0x372332[_0x1e3568],_0xa5aa14(_0x4120f1),_0x2ace35[_0x290903(0x564,0x5b7)](_0x4bb83c,_0x2ace35['wLSsq'],_0xce3967(0x270,0x2fb)+_0x290903(0x6a7,0x70c)+_0xce3967(0x28d,0x31c)+'tion\x20'+_0x290903(0x5bc,0x66d)+_0x290903(0x5a1,0x4fb)+_0x290903(0x6a5,0x6ac)+_0x1e3568);const _0x1286db={};_0x1286db['ok']=!![],_0x324ad8[_0x290903(0x608,0x65e)](_0x1286db);}else return _0x2ace35[_0xce3967(0x2af,0x347)];}}catch{return _0x2ace35['phtik'](_0x2ace35[_0x290903(0x56a,0x5bd)],_0x2ace35[_0x290903(0x56a,0x4cc)])?_0x290903(0x63f,0x601)+_0x290903(0x5cb,0x597)+_0xce3967(0x2c1,0x21f)+_0xce3967(0x2f2,0x306)+_0xce3967(0x2df,0x34c)+'RL':'endpo'+_0xce3967(0x26d,0x218)+_0xce3967(0x2c1,0x250)+_0x290903(0x650,0x5cc)+_0xce3967(0x2df,0x238)+'RL';}const {keys:_0x550617}=_0x45742b;if(!_0x550617||_0x2ace35[_0xce3967(0x2a4,0x1f0)](typeof _0x550617,'objec'+'t')){if(_0x2ace35['xzrrW']('RSCSk',_0x2ace35['YPYFi']))return _0x2ace35[_0xce3967(0x247,0x1bd)];else{const _0x4dc43e={};return _0x4dc43e[_0xce3967(0x306,0x2b1)]=_0x2ace35['pklrB'],_0x1a5acb[_0xce3967(0x27f,0x2bb)+'s'](0x1185+0xb0a*-0x1+-0x4*0x121)['json'](_0x4dc43e);}}const {p256dh:_0x218674,auth:_0x16d5fb}=_0x550617;if(typeof _0x218674!==_0x2ace35[_0xce3967(0x1f7,0x294)]||_0x218674[_0x290903(0x556,0x4af)+'h']===0x26cb*0x1+-0xfa4+-0x1727*0x1){if(_0x2ace35[_0x290903(0x602,0x5b8)](_0x2ace35[_0x290903(0x5d9,0x535)],_0x2ace35[_0x290903(0x6a4,0x6c9)]))return _0x2ace35['WPRPE'];else{if(_0x55c89b['exist'+_0xce3967(0x214,0x1bd)](_0x13947d)){const _0x51ab8c=_0x4f4344[_0xce3967(0x286,0x292)+_0x290903(0x60c,0x636)+'nc'](_0x400a87,_0x2ace35[_0xce3967(0x215,0x26e)]),_0x27ecb4=_0x1b6d6d['parse'](_0x51ab8c);return _0x4e3f14['info'](_0xce3967(0x21d,0x1eb)+'d\x20'+_0x2c1ef4[_0xce3967(0x297,0x309)](_0x27ecb4)[_0xce3967(0x1f8,0x27a)+'h']+(_0xce3967(0x1e7,0x275)+_0x290903(0x5ea,0x537)+'ions')),_0x27ecb4;}}}if(_0x2ace35[_0xce3967(0x219,0x23c)](_0x218674[_0x290903(0x556,0x551)+'h'],P256DH_MIN_LEN)||_0x2ace35[_0x290903(0x5b7,0x5cf)](_0x218674[_0xce3967(0x1f8,0x213)+'h'],P256DH_MAX_LEN)){if(_0x2ace35[_0x290903(0x602,0x66b)](_0x2ace35[_0x290903(0x667,0x6f9)],_0x2ace35[_0xce3967(0x2ab,0x2ea)]))return _0x290903(0x56b,0x4c8)+_0xce3967(0x33d,0x2a3)+_0x290903(0x57d,0x5fc)+_0xce3967(0x22b,0x1b0)+P256DH_MIN_LEN+'-'+P256DH_MAX_LEN+(_0x290903(0x652,0x5ed)+'acter'+_0xce3967(0x269,0x27a)+'t\x20')+_0x218674['lengt'+'h']+')';else _0x5bcc38[_0xce3967(0x277,0x2a4)]('No\x20su'+_0xce3967(0x30b,0x267)+'ption'+_0x290903(0x638,0x63e)+_0xce3967(0x2eb,0x2dd)+'nd,\x20s'+_0xce3967(0x1f6,0x169)+_0xce3967(0x2fd,0x28b)+_0x290903(0x6a3,0x750));}if(!BASE64URL_RE[_0xce3967(0x26a,0x1e3)](_0x218674)){if(_0x2ace35[_0x290903(0x600,0x55f)](_0x290903(0x5e2,0x5c9),_0x2ace35['kVwqX']))return _0x290903(0x56b,0x5f7)+_0x290903(0x69b,0x5fd)+_0x290903(0x57d,0x596)+_0xce3967(0x22b,0x222)+_0xce3967(0x213,0x294)+_0x290903(0x641,0x5c8)+'encod'+'ed';else{const _0x3bce70={};return _0x3bce70[_0x290903(0x664,0x719)]=_0xce3967(0x2bc,0x2d9)+'id\x20su'+_0xce3967(0x30b,0x382)+_0xce3967(0x31d,0x313)+':\x20'+_0x330579,_0x3956b1[_0x290903(0x5dd,0x5cd)+'s'](0x43c*-0x3+0x113*0x1b+-0xebd)['json'](_0x3bce70);}}if(_0x2ace35[_0xce3967(0x31e,0x395)](typeof _0x16d5fb,_0x2ace35[_0x290903(0x555,0x513)])||_0x2ace35[_0xce3967(0x2b6,0x235)](_0x16d5fb['lengt'+'h'],0x35*-0x9f+0x4*0x5ca+-0x9c3*-0x1)){if(_0x2ace35[_0x290903(0x540,0x4d1)](_0x2ace35[_0xce3967(0x327,0x32b)],_0x2ace35['dVZUW'])){try{if(_0x440063[_0xce3967(0x2f9,0x380)+_0xce3967(0x214,0x2a5)](_0x2b81b5)){const _0x3ae24d=_0x5ea5a8['readF'+_0x290903(0x60c,0x61e)+'nc'](_0x2269c8,_0xce3967(0x32f,0x2cc)),_0x4f695c=_0x361e5d[_0x290903(0x671,0x658)](_0x3ae24d);return _0x5ef47a[_0xce3967(0x27c,0x1e5)](_0x290903(0x57b,0x5fb)+'d\x20'+_0x11bf61[_0x290903(0x5f5,0x650)](_0x4f695c)[_0x290903(0x556,0x5af)+'h']+(_0x290903(0x545,0x54b)+_0xce3967(0x28c,0x1ec)+_0xce3967(0x343,0x3d5))),_0x4f695c;}}catch(_0x49baa3){_0x34a398['debug'](_0x2ace35[_0xce3967(0x32a,0x335)]);}return{};}else return _0x2ace35[_0xce3967(0x301,0x387)];}if(_0x2ace35['wKTdI'](_0x16d5fb[_0xce3967(0x1f8,0x25b)+'h'],AUTH_MIN_LEN)||_0x2ace35['mPFNS'](_0x16d5fb[_0x290903(0x556,0x501)+'h'],AUTH_MAX_LEN)){if(_0x2ace35[_0x290903(0x64a,0x6f3)](_0x2ace35['lKqgj'],_0xce3967(0x2ea,0x346)))return _0x290903(0x56b,0x4f7)+'auth\x20'+_0x290903(0x62b,0x588)+_0x290903(0x629,0x69b)+AUTH_MIN_LEN+'-'+AUTH_MAX_LEN+(_0xce3967(0x2f4,0x2fb)+_0x290903(0x646,0x6b3)+_0x290903(0x5c7,0x5f1)+'t\x20')+_0x16d5fb[_0x290903(0x556,0x531)+'h']+')';else delete _0x4bca5d[_0x2ace35[_0xce3967(0x2e5,0x24f)](_0x1d30e9,_0x2ace35[_0xce3967(0x330,0x28c)])],_0x2ace35[_0xce3967(0x226,0x1e1)](_0x25cd87,_0x2af6be),_0x4f18db[_0xce3967(0x27c,0x1fd)](_0xce3967(0x336,0x2d4)+_0xce3967(0x245,0x1ff)+'pired'+_0x290903(0x545,0x4d9)+_0x290903(0x5ea,0x592)+_0x290903(0x5f3,0x68a)+_0xce3967(0x288,0x21b)+_0x2aae33);}if(!BASE64URL_RE[_0x290903(0x5c8,0x581)](_0x16d5fb))return'fWlHm'===_0x2ace35[_0x290903(0x56c,0x5ec)]?_0xce3967(0x20d,0x1a3)+'p256d'+'h\x20mus'+'t\x20be\x20'+_0x54418d+'-'+_0x11dbf9+('\x20char'+_0xce3967(0x2e8,0x369)+'s\x20(go'+'t\x20')+_0x34613c['lengt'+'h']+')':_0x2ace35[_0x290903(0x54b,0x578)];return null;}function _0x16bb(){const _0x9cfdd8=['xnmhM','int','pvwTk','\x20conf','YHHqs','confi','\x20keys','be\x20ba','HRgTN','dVZUW','ribe','firgL','BOvnf','VAPID','e@moo','ZXSfo','YExJu','utf8','yfxaA','https','MOcqU','...','quire','New\x20m','Remov','WqoRz','onfig','\x20an\x20o','AUDab','BJozr','PcGuk','p256d','ed\x20-\x20','messa','NIZMe','RwLML','Grcjb','ions','\x20savi','esh','lTIPA','r:\x20','582765rfSzoF',']\x20Sub','get','scLnE','wIwDl','30VwEBfZ','searc','itPpv','ust\x20u','\x20subs','Kktvq','\x20not\x20','\x20and\x20','cjoDU','objec','oFilt','FOMYi','apply','eques','const','send\x20','ogpeR','qfsQL','rTWkZ','tarti','RnLBr','lengt','XoKXy','hoJwD','k-mes','fQNhE','KzERc','cKey','hPLzS','rNqwG','imum\x20','\x20at\x20s','s\x20req','st\x20be','3983625HHxeYP','jRIAI','ush\x20r','\x20endp','bYGLV','nEKhD','MtnsH','cMMxK','keys.','tdrnA','IjGzL','650502TfWAbn','plBkd','Error','base6','sSync','PMGOx','pvNDn','sJmZD','ZLUof','wKTdI','srZbv','erymz','int\x20e','Loade','proto','h\x20mus','-publ','sfAVO','pired','sDmit','requi','eRPXM','BRKSJ','kHfKv','cEBBw','otifi','hClOL','t\x20be\x20','HKhxX','jyPid','vapid','HIWkQ','DkTZK','GwFpi','ajffF','CEDAC','skipp','rtCkw','post','Push\x20','se64u','eeZWP','rl-en','saved','ZChyJ','jVVsy','user:','WiXee','mcMmg','kwyka','uWIwd','ed\x20fo','unsub','ed\x20ex','faile','SfsEr','IbrOr','zuhgE','rst\x20p','tails','PNEMl','d\x20fro','AhoND','o:nat','cwd','nco.p','publi','zZekS','not\x20c','hPvlV','load\x20','gDXra','etry\x20','vxJMM','2557100xoWPir','Sent\x20','2769580nikPsv','oBULZ','remov','RBEDw','\x20for\x20','kGjdT','lccdi','gify','kMnrZ','SjzpS','KKieC','ring','push-','s\x20(go','test','strin','iSfKV','int\x20i','be\x20a\x20','jyebi','[Push','catio','subsc','gured','rojhT','1OJPlIm','RJnXy','debug','fbhYS','coded','mVoOh','YVJtX','info','TPS','d\x20to\x20','statu','fDseU','YJVol','iEEHz','bamtO','rRJhM','ktuCz','readF','wUZjA','or\x20','XMXjJ','3tNjgzZ','IjIBV','cript','scrip','Faile','yuPzG','UhPAq','WLocu','efUcG','is\x20re','xceed','ion\x20f','non-e','keys','mailt','Uplin','NpaCB','uired','ZJWto','vGESf','ing',')+)+)','nJSzc','ync','mgIRU','yWmbd','pEBhS','SSOtb','(((.+','tes\x20i','Toefx','able','json','tccNY','SlbeB','ill\x20r','ileSy','rGHrT','edRjn','JJJZW','h\x20is\x20','28eQYjql','Send\x20','xeXyS','xzrrW','fig\x20s','Sendi','OTdiC','subst','BtPSn','Inval','SykNe','on\x20fi','h\x20of\x20','RoeFX','s\x20not','id\x20su','SidWa','essag','join','defau','fSmoQ','SKIZj','xDAih','ructo','be\x20','toStr','must\x20','auth\x20','rFyxS','igure','SZRqc','hmZTI','eTMSK','LnFJx','rJCbu','s\x20max','tion\x20','vLPew','on\x20to','s\x20fil','XdsGx','body','pwYtp','11308847DItNYq','lid\x20U','red','endpo','1587792OnGduB','4url-','WRIup','bPbtv','ripti','CjeEH','acter','notif','luSoc','e\x20fou','OwBEu','uplin','lized','avail','m\x20con','se\x20HT','\x20a\x20va','Oskdc','\x20char','NbnMr','tyNll','dAkfO','mpty\x20','exist','sage','vUEdt','FileS','ng\x20fr','KTYmO','baTjG','/api/','MnuPS','No\x20su','push/','ured','HBcle','error','write','ig:','ktqsb','delet','bscri','OPuIe','sCode','UJDzw','\x20for:','on\x20mu','int\x20m','then','parse','mvmEQ','gzFuY','keys\x20','RphiV','nd,\x20s','TDmqW','setVa','tartu','byUYz','ption'];_0x16bb=function(){return _0x9cfdd8;};return _0x16bb();}const SUBSCRIPTIONS_FILE=_0x5d70b3[_0x5d68bf(0x20f,0x160)](process[_0x198b38(0x101,0x103)](),_0x5d68bf(0x8c,0x103)+_0x198b38(0x95,0x125)+_0x5d68bf(0x214,0x181)+'ons.j'+'son');function _0x198b38(_0x45da1a,_0x39d7d9){return _0x2fc5(_0x39d7d9- -0x115,_0x45da1a);}let vapidConfigured=![];async function ensureVapidConfigured(){const _0x2d9400={'baTjG':_0x2133e7(0x21,0x6)+':','WbxRl':function(_0x21244c,_0xc63062){return _0x21244c===_0xc63062;},'CjeEH':'LnFJx','dwavC':_0x2133e7(0xa7,0x0)+_0x190e7d(0x49c,0x548)+_0x190e7d(0x44b,0x3c8)+_0x2133e7(-0x10b,-0xde)+_0x190e7d(0x46b,0x49b)+_0x2133e7(-0x7d,-0x74)+'tore','HRgTN':_0x2133e7(-0x156,-0x101),'JNYyB':_0x2133e7(-0x16c,-0xfc),'WiXee':function(_0x4fcbe1,_0x251104){return _0x4fcbe1===_0x251104;},'kGjdT':_0x190e7d(0x3e0,0x485),'kHfKv':_0x190e7d(0x434,0x477),'ZJWto':_0x2133e7(-0x1,-0x85)+_0x2133e7(-0x30,-0x8c)+'+$','mVoOh':'Error'+_0x2133e7(0x28,0x19)+'ng\x20su'+_0x190e7d(0x486,0x3f9)+_0x190e7d(0x498,0x3ef)+'s:','kIvhM':_0x190e7d(0x45c,0x476)+_0x190e7d(0x48c,0x49a)+'ust\x20u'+_0x2133e7(-0xa8,-0x3a)+_0x190e7d(0x3f8,0x36f),'lccdi':function(_0x1b96a7,_0x3f64b9,_0x385cb3){return _0x1b96a7(_0x3f64b9,_0x385cb3);},'Toefx':_0x190e7d(0x3bc,0x349),'RoeFX':_0x190e7d(0x413,0x493)+_0x190e7d(0x3ca,0x40f)+_0x2133e7(0xa4,0x1)+_0x2133e7(-0x47,-0xda)+'ro','WLocu':function(_0x23b694,_0x6426c3){return _0x23b694&&_0x6426c3;},'zZekS':function(_0x47b9e4,_0x1b94a8){return _0x47b9e4!==_0x1b94a8;},'KzERc':_0x190e7d(0x444,0x411),'NbnMr':_0x2133e7(0xac,0x0)+'\x20keys'+_0x2133e7(-0xe8,-0x142)+_0x2133e7(0x20,-0x3c)+_0x2133e7(0x2d,-0x82),'IbrOr':_0x2133e7(-0x185,-0x111)},_0x9302d6=(function(){const _0x5ba1e1={'WRIup':function(_0x511d60,_0x5a0311){return _0x511d60!==_0x5a0311;},'xoTBp':_0x2d9400[_0x12c055(-0xe6,-0x85)],'MOcqU':_0x2d9400['JNYyB'],'OPuIe':function(_0x98fa83,_0x453a75){function _0x149e58(_0x348f63,_0xa6ea85){return _0x12c055(_0xa6ea85,_0x348f63-0x240);}return _0x2d9400[_0x149e58(0xd4,0xa6)](_0x98fa83,_0x453a75);},'Kktvq':_0x2d9400[_0x56b9be(-0x21,-0x5)]};function _0x56b9be(_0x368b87,_0x287f05){return _0x190e7d(_0x368b87- -0x3fd,_0x287f05);}function _0x12c055(_0x39d89f,_0x1afbee){return _0x190e7d(_0x1afbee- -0x526,_0x39d89f);}if(_0x2d9400[_0x12c055(-0x175,-0x184)]===_0x2d9400['kHfKv']){let _0xf2f684=!![];return function(_0x1bcd6f,_0x8195a7){const _0x380c17={};function _0xeed1a7(_0x110a65,_0x52a31b){return _0x12c055(_0x110a65,_0x52a31b-0x501);}_0x380c17['byUYz']=_0x2d9400[_0x1aadd5(0x6bb,0x615)];const _0x5902f3=_0x380c17;function _0x1aadd5(_0x1dd1ac,_0x46b476){return _0x12c055(_0x1dd1ac,_0x46b476-0x6c1);}if(_0x2d9400['WbxRl'](_0x2d9400[_0xeed1a7(0x4c1,0x43d)],_0xeed1a7(0x4c4,0x42a))){const _0x481ce0=_0xf2f684?function(){function _0x207396(_0x1e8eef,_0x411916){return _0x1aadd5(_0x411916,_0x1e8eef- -0x4d5);}const _0x48618f={};function _0x5691e2(_0xa20f02,_0x101772){return _0x1aadd5(_0x101772,_0xa20f02- -0x6aa);}_0x48618f[_0x207396(0x26,0x71)]=_0x207396(0x122,0xa7)+_0x5691e2(-0x127,-0x11f)+_0x5691e2(-0x191,-0xff)+_0x207396(0xdc,0x122)+_0x207396(0x2b,0x26)+_0x207396(0x10e,0xf3)+_0x207396(0xaf,0xbf)+_0x5691e2(-0xfe,-0x61)+_0x207396(0x139,0xdc)+'strin'+'g';const _0x648641=_0x48618f;if(_0x5ba1e1[_0x207396(0x125,0x156)](_0x5ba1e1['xoTBp'],_0x5ba1e1[_0x207396(0x173,0x224)])){if(_0x8195a7){if(_0x5ba1e1[_0x5691e2(-0x88,-0xb)](_0x5ba1e1[_0x5691e2(-0x1ac,-0x130)],_0x5ba1e1[_0x5691e2(-0x1ac,-0x249)])){const _0x17cbc3=_0x8195a7[_0x5691e2(-0x1a5,-0x21e)](_0x1bcd6f,arguments);return _0x8195a7=null,_0x17cbc3;}else return _0x5691e2(-0x122,-0x148)+'ripti'+'on\x20mu'+'st\x20be'+_0x207396(0x17a,0x1c9)+'bject';}}else return QPSayV[_0x207396(0x26,0x7d)];}:function(){};return _0xf2f684=![],_0x481ce0;}else{const _0x570f38=new _0x291535(_0x1f10a4);if(_0x570f38[_0x1aadd5(0x591,0x534)+'col']!==MqYqru[_0x1aadd5(0x66a,0x632)])return'endpo'+_0x1aadd5(0x602,0x627)+_0x1aadd5(0x4c4,0x4fc)+_0xeed1a7(0x485,0x447)+'TPS';}};}else return _0x6acad6[_0x12c055(-0x105,-0x91)+'pidDe'+_0x56b9be(-0x37,-0xc0)](_0x469a18,_0x2b3ad5,_0x5f19fd),_0x134e46=!![],_0x52bbcc[_0x56b9be(-0x6,0x90)](_0x2d9400['dwavC']),!![];}()),_0x10f193=_0x2d9400[_0x190e7d(0x3dd,0x3b2)](_0x9302d6,this,function(){function _0x21263b(_0x5eae90,_0x277aaa){return _0x2133e7(_0x5eae90,_0x277aaa-0x183);}function _0xbb2b8f(_0x5c01c5,_0x26e973){return _0x2133e7(_0x26e973,_0x5c01c5-0x497);}return _0x10f193[_0xbb2b8f(0x438,0x444)+'ing']()['searc'+'h'](_0x2d9400[_0xbb2b8f(0x408,0x3b1)])[_0xbb2b8f(0x438,0x420)+_0xbb2b8f(0x40a,0x36c)]()['const'+_0xbb2b8f(0x436,0x4c1)+'r'](_0x10f193)[_0x21263b(0x73,0x3c)+'h'](_0x2d9400[_0x21263b(0x162,0xf4)]);});_0x10f193();function _0x190e7d(_0x28edeb,_0x55dfe5){return _0x5d68bf(_0x55dfe5,_0x28edeb-0x2e0);}if(vapidConfigured)return!![];function _0x2133e7(_0x4ea87b,_0x1f3912){return _0x5d68bf(_0x4ea87b,_0x1f3912- -0x1c6);}try{if(_0x2d9400[_0x190e7d(0x3ba,0x402)](_0x2133e7(-0xc7,-0x12f),_0x2d9400[_0x2133e7(-0x129,-0x83)]))_0x38ec5a[_0x190e7d(0x481,0x42f)](_0x2d9400[_0x2133e7(-0x2d,-0xb1)],_0x46f25a[_0x2133e7(-0x4,0x14)+'ge']);else{const _0x36ac61=await loadConfig(),_0x12737e=_0x36ac61[_0x190e7d(0x3a9,0x33f)+'Publi'+'cKey']||process.env.VAPID_PUBLIC_KEY,_0x2ec965=_0x36ac61['vapid'+'Priva'+'teKey']||process.env.VAPID_PRIVATE_KEY,_0x167cec=process.env.VAPID_EMAIL||_0x2d9400[_0x190e7d(0x43b,0x416)];if(_0x2d9400[_0x190e7d(0x40c,0x367)](_0x12737e,_0x2ec965)){if(_0x2d9400[_0x2133e7(-0x8c,-0xd8)](_0x2d9400[_0x190e7d(0x378,0x32a)],'SrHAS'))return _0x3b17b7[_0x2133e7(0x89,-0x11)+'pidDe'+_0x2133e7(-0x136,-0xe0)](_0x167cec,_0x12737e,_0x2ec965),vapidConfigured=!![],log[_0x2133e7(-0x5c,-0xaf)](_0x2d9400['dwavC']),!![];else try{_0x32d123[_0x2133e7(0x35,-0x24)+_0x190e7d(0x477,0x4f2)+_0x2133e7(0x27,-0x8a)](_0x267734,_0x3f4319['strin'+_0x190e7d(0x3de,0x39e)](_0x557fd0,null,0xf94+-0x7b8+-0x7da));}catch(_0x54a1ae){_0x3d0b7c[_0x190e7d(0x481,0x504)](_0x2d9400['mVoOh'],_0x54a1ae[_0x2133e7(0x50,0x14)+'ge']);}}return log['debug'](_0x2d9400[_0x2133e7(-0x42,-0x36)]),![];}}catch(_0x3a2190){return _0x2d9400['zZekS'](_0x2d9400[_0x2133e7(-0xd3,-0xe3)],'JpcYN')?(log['error'](_0x190e7d(0x409,0x3a9)+_0x2133e7(-0x43,-0xad)+_0x2133e7(-0x116,-0xd5)+_0x2133e7(0x5b,0x0)+_0x2133e7(-0x77,-0xa)+_0x2133e7(-0x21,-0x23),_0x3a2190['messa'+'ge']),![]):Pwsple['kIvhM'];}}async function getVapidPublicKey(){function _0x3255fd(_0x44b34c,_0xb1ceee){return _0x5d68bf(_0x44b34c,_0xb1ceee-0x27e);}const _0x2bb73d={'fSmoQ':function(_0x47ee2a){return _0x47ee2a();},'UhPAq':'BJozr'};function _0x4a8be9(_0x384111,_0x29c2aa){return _0x5d68bf(_0x29c2aa,_0x384111-0x4c5);}try{const _0x25ede7=await _0x2bb73d[_0x4a8be9(0x627,0x62a)](loadConfig);return _0x25ede7['vapid'+'Publi'+_0x3255fd(0x2f9,0x317)]||process.env.VAPID_PUBLIC_KEY||null;}catch{return _0x2bb73d[_0x3255fd(0x3fe,0x3a9)]!==_0x3255fd(0x3b3,0x454)?_0x3255fd(0x29e,0x326)+_0x4a8be9(0x62e,0x59c)+_0x3255fd(0x3ea,0x3e6)+_0x3255fd(0x3d7,0x3e4)+_0x4c629d+'-'+_0x4b523d+(_0x4a8be9(0x654,0x68b)+_0x3255fd(0x357,0x401)+_0x4a8be9(0x5c9,0x630)+'t\x20')+_0x13f180[_0x3255fd(0x2b3,0x311)+'h']+')':process.env.VAPID_PUBLIC_KEY||null;}}ensureVapidConfigured()[_0x198b38(0x1ef,0x1c5)](_0x4d9d2f=>{const _0x4a7f1b={};function _0x489f1d(_0x107a86,_0x7da0c7){return _0x198b38(_0x107a86,_0x7da0c7- -0x14d);}function _0x288f13(_0x2917e2,_0x31e373){return _0x198b38(_0x31e373,_0x2917e2-0xe1);}_0x4a7f1b['iSfKV']='VAPID'+_0x288f13(0x2b8,0x222)+_0x489f1d(-0x69,-0xb1)+_0x288f13(0x2b7,0x23d)+_0x489f1d(-0x37,-0x27)+_0x489f1d(-0x73,-0x98)+_0x489f1d(-0x6,0x81)+'p\x20-\x20w'+_0x288f13(0x241,0x1bf)+_0x489f1d(-0x51,-0x42)+_0x489f1d(-0xa,0x24)+_0x288f13(0x1de,0x191)+_0x288f13(0x19b,0x195)+_0x288f13(0x184,0x1ad)+'t';const _0x1e34d6=_0x4a7f1b;if(!_0x4d9d2f)log['info'](_0x1e34d6[_0x288f13(0x200,0x27a)]);});function loadSubscriptions(){const _0x1e5fb4={};_0x1e5fb4[_0x46c77e(0x3f8,0x3ee)]=_0x46c77e(0x3bc,0x366)+_0x8cdd6(-0xd0,-0x11b)+'must\x20'+_0x8cdd6(-0x79,-0x117)+'se64u'+_0x46c77e(0x3e9,0x38c)+_0x46c77e(0x428,0x46d),_0x1e5fb4[_0x46c77e(0x3af,0x363)]='VAPID'+_0x8cdd6(-0x7a,-0x25)+_0x46c77e(0x398,0x429)+_0x46c77e(0x4d2,0x54e)+'gured'+_0x46c77e(0x3b1,0x304)+'tartu'+'p\x20-\x20w'+_0x46c77e(0x45c,0x4c1)+_0x8cdd6(-0x146,-0x19e)+_0x46c77e(0x46d,0x4a1)+_0x46c77e(0x3f9,0x3bf)+'ush\x20r'+'eques'+'t';function _0x8cdd6(_0x2b3933,_0x2c99eb){return _0x5d68bf(_0x2c99eb,_0x2b3933- -0x239);}_0x1e5fb4[_0x46c77e(0x452,0x3ad)]='DkkBm',_0x1e5fb4['JJJZW']=_0x46c77e(0x4de,0x4bd),_0x1e5fb4['bamtO']=function(_0x1b0b1a,_0x5c78cb){return _0x1b0b1a!==_0x5c78cb;},_0x1e5fb4[_0x8cdd6(-0x87,-0x8d)]='SXkNj',_0x1e5fb4[_0x8cdd6(-0x1a9,-0x17e)]=_0x46c77e(0x484,0x3df),_0x1e5fb4['nEKhD']='No\x20su'+_0x8cdd6(-0x93,-0x4d)+'ption'+_0x8cdd6(-0xc4,-0xef)+_0x46c77e(0x49a,0x4d3)+_0x46c77e(0x4c7,0x523)+_0x46c77e(0x3a5,0x34a)+_0x46c77e(0x4ac,0x44f)+_0x8cdd6(-0x59,-0x7);const _0x4a9b92=_0x1e5fb4;function _0x46c77e(_0x6b4a1f,_0x511d14){return _0x5d68bf(_0x511d14,_0x6b4a1f-0x314);}try{if(_0xadf7e9['exist'+_0x46c77e(0x3c3,0x3e7)](SUBSCRIPTIONS_FILE)){if(_0x4a9b92[_0x46c77e(0x452,0x414)]!==_0x4a9b92['yWmbd'])return lSGkWN[_0x8cdd6(-0x155,-0xe4)];else{const _0xb891c7=_0xadf7e9[_0x46c77e(0x435,0x3e5)+'ileSy'+'nc'](SUBSCRIPTIONS_FILE,_0x4a9b92[_0x46c77e(0x460,0x3b2)]),_0x4f3978=JSON['parse'](_0xb891c7);return log[_0x8cdd6(-0x122,-0x147)]('Loade'+'d\x20'+Object['keys'](_0x4f3978)[_0x46c77e(0x3a7,0x30d)+'h']+(_0x8cdd6(-0x1b7,-0x13a)+_0x46c77e(0x43b,0x49a)+_0x8cdd6(-0x5b,-0x66))),_0x4f3978;}}}catch(_0x3d70ac){if(_0x4a9b92[_0x8cdd6(-0x11b,-0x14d)](_0x4a9b92[_0x46c77e(0x4c6,0x505)],_0x4a9b92['rTWkZ']))log[_0x8cdd6(-0x127,-0x1a5)](_0x4a9b92[_0x46c77e(0x3b9,0x452)]);else{if(!_0x3d76f1)_0x22c7d4['info'](lSGkWN[_0x46c77e(0x3af,0x44c)]);}}return{};}function saveSubscriptions(_0x1fc98a){const _0x5c9a37={};_0x5c9a37[_0x104ca7(0x630,0x677)]='(((.+'+')+)+)'+'+$',_0x5c9a37['CAWMW']=function(_0x3e2333,_0x338ded){return _0x3e2333===_0x338ded;},_0x5c9a37[_0x104ca7(0x51e,0x51d)]=_0x104ca7(0x5db,0x589),_0x5c9a37[_0x387a3c(-0xa2,-0x23)]=function(_0x2dc708,_0xbe1eca){return _0x2dc708===_0xbe1eca;},_0x5c9a37['jyebi']=_0x387a3c(-0xb0,-0xef),_0x5c9a37[_0x104ca7(0x4fd,0x516)]=_0x387a3c(-0x1cc,-0x167)+_0x104ca7(0x647,0x6ba)+'ng\x20su'+_0x104ca7(0x60e,0x635)+_0x387a3c(-0xc1,-0xed)+'s:';const _0xf365c4=_0x5c9a37;function _0x387a3c(_0x515ca0,_0x470201){return _0x5d68bf(_0x470201,_0x515ca0- -0x279);}function _0x104ca7(_0x3d85f1,_0x314cca){return _0x5d68bf(_0x314cca,_0x3d85f1-0x468);}try{_0xf365c4['CAWMW'](_0xf365c4[_0x104ca7(0x51e,0x536)],_0xf365c4[_0x387a3c(-0x1c3,-0x243)])?_0xadf7e9['write'+_0x387a3c(-0xe2,-0x184)+'ync'](SUBSCRIPTIONS_FILE,JSON[_0x387a3c(-0x173,-0x14b)+_0x387a3c(-0x17b,-0x10c)](_0x1fc98a,null,-0x1007+0x7d*0x2e+-0x66d)):_0x3e3dfe[_0x387a3c(-0xd7,-0xe2)+_0x387a3c(-0xe2,-0x5d)+'ync'](_0x431451,_0x111838['strin'+_0x387a3c(-0x17b,-0x1f6)](_0x243cb7,null,-0x1*-0x1996+-0x1*-0x1d76+-0x370a));}catch(_0x41d37d){if(_0xf365c4[_0x387a3c(-0xa2,-0x102)](_0xf365c4[_0x387a3c(-0x16f,-0x1b5)],_0x104ca7(0x55a,0x5b0)))return _0x4ca499[_0x104ca7(0x5cf,0x53d)+_0x104ca7(0x5a1,0x516)]()['searc'+'h'](vmbJgo[_0x104ca7(0x630,0x5cd)])[_0x387a3c(-0x112,-0x64)+_0x387a3c(-0x140,-0x17d)]()[_0x387a3c(-0x1ed,-0x1bb)+_0x104ca7(0x5cd,0x61b)+'r'](_0x5cfeae)['searc'+'h'](vmbJgo[_0x387a3c(-0xb1,-0xd7)]);else log[_0x104ca7(0x609,0x654)](_0xf365c4[_0x387a3c(-0x1e4,-0x291)],_0x41d37d['messa'+'ge']);}}let subscriptions=loadSubscriptions();export async function sendPushNotification(_0x480f80,_0x1989e1){const _0x8bf4a9={'uWIwd':_0x4312ab(0xc7,0x2d)+_0x4312ab(0xcc,0x4a)+_0x5232dd(0x419,0x464)+_0x4312ab(0x10d,0xfa),'ZLUof':function(_0xf1f192){return _0xf1f192();},'RBEDw':_0x5232dd(0x37b,0x363)+_0x4312ab(0x13,-0x18)+'skipp'+_0x4312ab(0x19e,0x134)+'VAPID'+_0x4312ab(0x7d,-0x21)+'confi'+'gured','vUzRw':_0x5232dd(0x40c,0x457)+'\x20not\x20'+_0x4312ab(0x182,0x119)+'gured','bYGLV':function(_0x195fad,_0x5a0894){return _0x195fad||_0x5a0894;},'eRPXM':'defau'+'lt','YHHqs':function(_0x1a308b,_0x1769aa){return _0x1a308b!==_0x1769aa;},'hPvlV':_0x4312ab(-0x22,0x81),'RwLML':_0x4312ab(0x7e,0x93)};function _0x5232dd(_0x5019ec,_0x1bd8ad){return _0x5d68bf(_0x5019ec,_0x1bd8ad-0x291);}function _0x4312ab(_0x4a6a7a,_0x2cf5d3){return _0x5d68bf(_0x4a6a7a,_0x2cf5d3- -0xa5);}const _0x2d200e=await _0x8bf4a9[_0x4312ab(0x99,0xe)](ensureVapidConfigured);if(!_0x2d200e){log[_0x4312ab(0x97,0x6d)](_0x8bf4a9[_0x5232dd(0x2ec,0x38b)]);const _0x5e11d0={};return _0x5e11d0['ok']=![],_0x5e11d0[_0x5232dd(0x451,0x432)]=_0x8bf4a9['vUzRw'],_0x5e11d0;}const _0x22ddb1=subscriptions[_0x8bf4a9[_0x4312ab(0x43,-0x1)](_0x480f80,_0x8bf4a9[_0x4312ab(0x88,0x1b)])];if(!_0x22ddb1){log[_0x4312ab(0x5,0x6d)](_0x5232dd(0x4a6,0x42e)+'bscri'+_0x5232dd(0x4dc,0x449)+_0x4312ab(0x44,0x56)+_0x4312ab(-0x77,0x34)+'\x20'+_0x480f80);const _0x10f9ac={};return _0x10f9ac['ok']=![],_0x10f9ac['error']='No\x20su'+'bscri'+'ption',_0x10f9ac;}try{if(_0x8bf4a9[_0x5232dd(0x3c3,0x44e)](_0x8bf4a9[_0x4312ab(0xe5,0x4b)],_0x8bf4a9['hPvlV']))return _0x4992e3.env.VAPID_PUBLIC_KEY||null;else{log['debug'](_0x4312ab(0x151,0xae)+'ng\x20to'+_0x5232dd(0x3c3,0x334)+'oint:'+'\x20'+_0x22ddb1[_0x4312ab(0x11d,0xd7)+_0x4312ab(0x195,0x115)][_0x4312ab(0x27,0xb0)+_0x5232dd(0x39e,0x393)](-0x2*-0x130e+0x39a*0x6+-0xb6*0x54,0x6c5*0x3+0xce6+-0x2103)+_0x4312ab(0x197,0x129));const _0x5da751=await _0x3b17b7['sendN'+_0x4312ab(-0x82,0x1f)+_0x5232dd(0x372,0x39d)+'n'](_0x22ddb1,JSON['strin'+_0x4312ab(0x35,0x59)](_0x1989e1));log['debug'](_0x4312ab(-0x49,0x51)+_0x4312ab(0x185,0xdf)+'icati'+_0x5232dd(0x413,0x405)+'\x20'+_0x480f80,_0x5da751);const _0x31820d={};return _0x31820d['ok']=!![],_0x31820d;}}catch(_0x3f2d32){log[_0x5232dd(0x498,0x432)]('Send\x20'+_0x5232dd(0x31f,0x372)+'d:',_0x3f2d32[_0x5232dd(0x3f7,0x3ab)+'sCode'],_0x3f2d32[_0x4312ab(0x181,0x135)+'ge'],_0x3f2d32[_0x5232dd(0x429,0x408)]);if(_0x3f2d32['statu'+'sCode']===-0x1*-0x8ff+0x4c5*0x5+-0x2*0xf9f){if(_0x5232dd(0x2e7,0x35c)===_0x8bf4a9[_0x4312ab(0x8a,0x137)]){const _0x7f34bd={};return _0x7f34bd[_0x4312ab(0x125,0xfc)]=_0x8bf4a9[_0x5232dd(0x2c9,0x36e)],_0x1851de[_0x4312ab(-0x8,0x75)+'s'](-0x210d*0x1+-0x14c9+0x5*0xb29)['json'](_0x7f34bd);}else delete subscriptions[_0x8bf4a9[_0x5232dd(0x2bc,0x335)](_0x480f80,_0x8bf4a9[_0x5232dd(0x2cc,0x351)])],saveSubscriptions(subscriptions),log['info'](_0x5232dd(0x3c9,0x462)+'ed\x20ex'+_0x4312ab(0xc5,0x18)+'\x20subs'+'cript'+'ion\x20f'+_0x5232dd(0x322,0x3b4)+_0x480f80);}const _0x299963={};return _0x299963['ok']=![],_0x299963[_0x4312ab(0x96,0xfc)]=_0x3f2d32[_0x5232dd(0x4c2,0x46b)+'ge'],_0x299963;}}export function setupPushRoutes(_0x2653bd,_0x260b0f){const _0x26e260={'pvNDn':_0x5c29fc(0x204,0x196)+_0x5c29fc(0x293,0x2c6)+'h\x20is\x20'+'requi'+_0x447266(0x346,0x36b),'pwYtp':function(_0x2c9b5b){return _0x2c9b5b();},'SykNe':function(_0x4135f5,_0x519d75){return _0x4135f5===_0x519d75;},'HKhxX':_0x447266(0x2e7,0x32f),'brrdw':_0x5c29fc(0x240,0x1c0)+'not\x20c'+_0x5c29fc(0x31e,0x2c1)+'ured','xHXVr':'keys.'+_0x5c29fc(0x33f,0x2c6)+'h\x20mus'+_0x5c29fc(0x22d,0x1b4)+_0x447266(0x279,0x216)+_0x5c29fc(0x1d7,0x26c)+'encod'+'ed','rtCkw':_0x447266(0x31a,0x32d)+_0x5c29fc(0x1ee,0x1cf)+'d:','tyNll':function(_0x268bb6,_0x14e8e6){return _0x268bb6===_0x14e8e6;},'fbhYS':function(_0x29cb6d,_0x55e9aa){return _0x29cb6d(_0x55e9aa);},'OSYPn':'rhWmp','jVVsy':function(_0x14ae67,_0x1ae5c6){return _0x14ae67(_0x1ae5c6);},'jyPid':_0x5c29fc(0x151,0x17d),'iEEHz':function(_0x5f229f,_0x944675){return _0x5f229f||_0x944675;},'plBkd':_0x447266(0x2e2,0x2ee),'eeZWP':_0x447266(0x368,0x3e6)+_0x5c29fc(0x218,0x294)+_0x447266(0x383,0x2d4),'ZChyJ':function(_0x46c089,_0x512a8a){return _0x46c089||_0x512a8a;},'hPLzS':_0x447266(0x32c,0x2a5)+'lt','bPdRZ':function(_0x2714b2,_0x463a45){return _0x2714b2(_0x463a45);},'XdsGx':_0x447266(0x3a6,0x35e),'edRjn':_0x5c29fc(0x263,0x235),'MtnsH':_0x5c29fc(0x1b7,0x251),'sSPvm':function(_0x17ebf8,_0x3344aa,_0x158408){return _0x17ebf8(_0x3344aa,_0x158408);},'RJnXy':function(_0xf97ec0,_0xfca562){return _0xf97ec0||_0xfca562;},'rFyxS':_0x447266(0x2ff,0x341)+'k','NpaCB':_0x5c29fc(0x20f,0x2be)+_0x447266(0x32a,0x28e)+'e','BtPSn':_0x447266(0x2a6,0x2d9),'ogpeR':function(_0x31e4da,_0x26ec47){return _0x31e4da!==_0x26ec47;},'qAoWd':'eLKgy','oBULZ':_0x447266(0x339,0x35f),'cjoDU':function(_0x12bc98,_0x23afd8){return _0x12bc98||_0x23afd8;},'firgL':function(_0x284d2a,_0x413440){return _0x284d2a(_0x413440);},'sJmZD':'Push\x20'+'send\x20'+_0x5c29fc(0x185,0x1bd)+_0x447266(0x3a4,0x442)+_0x5c29fc(0x275,0x2b4)+_0x447266(0x24f,0x27b)+_0x5c29fc(0x214,0x2ac)+_0x5c29fc(0x1cf,0x1fc),'SZRqc':_0x5c29fc(0x272,0x2b4)+_0x5c29fc(0x101,0x172)+_0x447266(0x389,0x319)+'gured','CEDAC':_0x447266(0x289,0x261),'AUDab':function(_0x358b4e){return _0x358b4e();},'Grcjb':function(_0x50bf3e,_0x371b74){return _0x50bf3e||_0x371b74;},'rojhT':_0x447266(0x366,0x363)+'push/'+_0x447266(0x294,0x2a1)+_0x447266(0x286,0x1ee)+'ic','ajffF':'/api/'+'push/'+_0x447266(0x2d8,0x28d)+_0x5c29fc(0x2f8,0x2b1),'XoKXy':_0x447266(0x366,0x3ae)+_0x5c29fc(0x24a,0x28c)+'send','AhoND':'/api/'+_0x447266(0x369,0x414)+_0x5c29fc(0x244,0x1cd)+'scrib'+'e','scLnE':_0x5c29fc(0x2a1,0x289)+_0x5c29fc(0x2ba,0x28c)+_0x5c29fc(0x1b2,0x208)+'s','WqoRz':_0x5c29fc(0x1d9,0x1f9)+']\x20Rou'+_0x5c29fc(0x2cd,0x230)+'nitia'+_0x447266(0x354,0x329)},{log:_0x5cf352,strictLimiter:_0x1fe549}=_0x260b0f;_0x2653bd[_0x5c29fc(0x2d2,0x2d3)](_0x26e260[_0x5c29fc(0x14d,0x1fd)],async(_0x319464,_0x1e1391)=>{const _0x285fa9={};_0x285fa9[_0x22b325(-0x14,0x6b)]=_0x26e260[_0x22b325(-0xa3,-0x29)];const _0x3a82c7=_0x285fa9,_0x33e5c9=await _0x26e260[_0x22b325(0x24,0x86)](getVapidPublicKey);function _0x22b325(_0x54bb00,_0x521316){return _0x5c29fc(_0x521316,_0x54bb00- -0x242);}if(!_0x33e5c9){if(_0x26e260[_0x22b325(0x4,-0x33)](_0x26e260[_0x18e43b(-0x133,-0x1c8)],_0x26e260[_0x18e43b(-0x169,-0x1c8)])){const _0x2e6f03={};return _0x2e6f03['error']=_0x26e260['brrdw'],_0x1e1391[_0x18e43b(-0x18d,-0x175)+'s'](-0x117c+0x102*-0x7+0x1a81)[_0x18e43b(-0x17f,-0x14a)](_0x2e6f03);}else return bGvxVe[_0x22b325(-0x14,0xb)];}const _0x4d3198={};function _0x18e43b(_0x2aaf11,_0x308dbf){return _0x5c29fc(_0x2aaf11,_0x308dbf- -0x37d);}_0x4d3198[_0x22b325(-0x67,-0x10d)+_0x18e43b(-0x1e6,-0x1f6)]=_0x33e5c9,_0x1e1391[_0x22b325(-0xf,-0x28)](_0x4d3198);}),_0x2653bd['post'](_0x26e260[_0x5c29fc(0x221,0x1bb)],_0x1fe549,(_0x520e8c,_0x559897)=>{const _0x1613e2={'KTYmO':_0x26e260['xHXVr'],'ktuCz':_0x26e260[_0x587f1a(0x1ad,0x126)],'gzFuY':function(_0x4408fc,_0x44fea1){return _0x26e260['tyNll'](_0x4408fc,_0x44fea1);},'efUcG':function(_0x22244f,_0x13ad4a){function _0x172ad1(_0x45253d,_0x36bdb7){return _0x587f1a(_0x45253d-0x3e8,_0x36bdb7);}return _0x26e260[_0x172ad1(0x5d8,0x534)](_0x22244f,_0x13ad4a);}};function _0x593df0(_0x536b44,_0x2ae660){return _0x447266(_0x2ae660-0x14e,_0x536b44);}function _0x587f1a(_0x3c37be,_0x5553f6){return _0x447266(_0x3c37be- -0xee,_0x5553f6);}if(_0x26e260['OSYPn']===_0x593df0(0x48a,0x41a))return YqhGwo[_0x587f1a(0x276,0x2c2)];else{const {subscription:_0x1a4654,userId:_0x37f499}=_0x520e8c[_0x593df0(0x4de,0x490)],_0x353967=_0x26e260[_0x593df0(0x3ea,0x3f1)](validatePushSubscription,_0x1a4654);if(_0x353967){if(_0x587f1a(0x1c4,0x224)===_0x26e260[_0x587f1a(0x1a5,0x16d)]){_0x28b2a3[_0x587f1a(0x27e,0x2cc)](YqhGwo[_0x593df0(0x3da,0x439)],_0x316f33[_0x593df0(0x40b,0x433)+_0x593df0(0x534,0x4c1)],_0x175ce2[_0x587f1a(0x2b7,0x2fc)+'ge'],_0x2197d7[_0x587f1a(0x254,0x2dd)]);YqhGwo[_0x587f1a(0x28d,0x25a)](_0xed8b1c['statu'+'sCode'],-0x53*0x5f+-0x2056+-0x1*-0x40bd)&&(delete _0x54199f[_0x567e83||_0x587f1a(0x23e,0x1b8)+'lt'],YqhGwo[_0x593df0(0x4a5,0x446)](_0x19f8c6,_0xa89a8c),_0x4fe67d[_0x587f1a(0x1f4,0x1f9)](_0x587f1a(0x2ae,0x331)+_0x593df0(0x47f,0x3f9)+_0x587f1a(0x19a,0x22a)+_0x587f1a(0x15f,0x1ac)+_0x587f1a(0x204,0x224)+_0x593df0(0x3e9,0x449)+_0x593df0(0x4c6,0x43c)+_0xadbc24));const _0x582390={};return _0x582390['ok']=![],_0x582390[_0x593df0(0x439,0x4ba)]=_0x30585b[_0x593df0(0x4d8,0x4f3)+'ge'],_0x582390;}else{const _0x5ecb16={};return _0x5ecb16[_0x587f1a(0x27e,0x26f)]=_0x593df0(0x3d6,0x470)+_0x593df0(0x415,0x476)+_0x587f1a(0x283,0x260)+_0x593df0(0x56a,0x4d1)+':\x20'+_0x353967,_0x559897[_0x593df0(0x3fd,0x433)+'s'](-0x6ab+-0x11b*0x11+0x1b06)[_0x593df0(0x4b5,0x45e)](_0x5ecb16);}}const _0x1b3a91=_0x26e260['iEEHz'](_0x37f499,'defau'+'lt');subscriptions[_0x1b3a91]=_0x1a4654,saveSubscriptions(subscriptions),_0x5cf352(_0x26e260['plBkd'],_0x593df0(0x3b8,0x424)+_0x593df0(0x56d,0x4fd)+_0x593df0(0x4c0,0x441)+'tion\x20'+'saved'+_0x587f1a(0x287,0x2c9)+'\x20'+_0x1b3a91);const _0x25cdeb={};_0x25cdeb['ok']=!![],_0x559897['json'](_0x25cdeb);}}),_0x2653bd[_0x5c29fc(0x115,0x1bf)](_0x26e260[_0x447266(0x25f,0x29c)],_0x1fe549,async(_0x70620c,_0x137e16)=>{function _0x41d53c(_0x505290,_0x5741f7){return _0x447266(_0x505290-0x8c,_0x5741f7);}function _0x43d4d9(_0xef0a4f,_0x1d4214){return _0x447266(_0xef0a4f-0x1b2,_0x1d4214);}const _0x421b24={'SidWa':function(_0x1b3e44,_0x29d777){function _0x66a276(_0x35af0f,_0x4d3f5a){return _0x2fc5(_0x4d3f5a-0x17,_0x35af0f);}return _0x26e260[_0x66a276(0x228,0x21b)](_0x1b3e44,_0x29d777);},'kMnrZ':_0x26e260[_0x41d53c(0x2f1,0x306)],'FOMYi':function(_0x46ca89,_0x8708d7){return _0x26e260['bPdRZ'](_0x46ca89,_0x8708d7);},'Oskdc':_0x26e260[_0x43d4d9(0x429,0x43f)]};if(_0x43d4d9(0x427,0x397)===_0x26e260[_0x43d4d9(0x4f3,0x441)])return _0x2a5d2b[_0x41d53c(0x3f8,0x379)](_0x41d53c(0x380,0x3ff)+_0x41d53c(0x370,0x2ea)+_0x41d53c(0x348,0x2aa)+_0x41d53c(0x41d,0x41d)+_0x41d53c(0x413,0x473)+_0x41d53c(0x3fa,0x483),_0x29098e['messa'+'ge']),![];else{const {userId:_0x2e9a4c,title:_0x55781c,body:_0x326a92,url:_0x6f34c,satelliteId:_0x30444c,tag:_0x57ea46}=_0x70620c[_0x43d4d9(0x4f4,0x4fd)],_0x2124fd=await _0x26e260[_0x43d4d9(0x4f5,0x50d)](ensureVapidConfigured);if(!_0x2124fd){if(_0x26e260[_0x43d4d9(0x50e,0x52f)](_0x26e260[_0x41d53c(0x3a2,0x456)],_0x26e260[_0x43d4d9(0x423,0x485)])){const {subscription:_0x12ae24,userId:_0x1e6ba6}=_0x41ed47[_0x41d53c(0x3ce,0x360)],_0x4e6399=_0x1e6657(_0x12ae24);if(_0x4e6399){const _0x27780b={};return _0x27780b[_0x43d4d9(0x51e,0x5c8)]=_0x43d4d9(0x4d4,0x49d)+_0x43d4d9(0x4da,0x54f)+'bscri'+_0x41d53c(0x40f,0x3d3)+':\x20'+_0x4e6399,_0x13c6b7[_0x41d53c(0x371,0x2e5)+'s'](-0x996+0x1b67+-0x1041)[_0x43d4d9(0x4c2,0x46b)](_0x27780b);}const _0x133a7d=dYZBTo[_0x43d4d9(0x4db,0x53b)](_0x1e6ba6,dYZBTo[_0x41d53c(0x356,0x3ee)]);_0x44dc78[_0x133a7d]=_0x12ae24,dYZBTo[_0x43d4d9(0x406,0x3d0)](_0x2d83c8,_0x20a427),_0x7a1685(dYZBTo[_0x43d4d9(0x50b,0x48d)],_0x41d53c(0x362,0x2e1)+']\x20Sub'+_0x43d4d9(0x4a5,0x43e)+_0x43d4d9(0x4ef,0x444)+_0x41d53c(0x32d,0x347)+'\x20for:'+'\x20'+_0x133a7d);const _0x5cd81e={};_0x5cd81e['ok']=!![],_0x13aafd[_0x41d53c(0x39c,0x3b5)](_0x5cd81e);}else{const _0x407324={};return _0x407324[_0x43d4d9(0x51e,0x555)]=_0x41d53c(0x329,0x322)+_0x41d53c(0x346,0x2bf)+_0x41d53c(0x42a,0x394)+_0x41d53c(0x3f6,0x43c),_0x137e16[_0x43d4d9(0x497,0x48d)+'s'](0x1eab*-0x1+-0x1*-0x2266+0x1c4*-0x1)[_0x43d4d9(0x4c2,0x48f)](_0x407324);}}const _0x1ba8f6=await _0x26e260['sSPvm'](sendPushNotification,_0x26e260[_0x41d53c(0x368,0x320)](_0x2e9a4c,_0x26e260[_0x43d4d9(0x417,0x37f)]),{'title':_0x26e260['RJnXy'](_0x55781c,_0x26e260[_0x43d4d9(0x4e7,0x4ce)]),'body':_0x26e260[_0x43d4d9(0x49a,0x4f9)](_0x326a92,_0x26e260[_0x43d4d9(0x4b2,0x52c)]),'url':_0x26e260['iEEHz'](_0x6f34c,'/'),'satelliteId':_0x30444c,'tag':_0x26e260['iEEHz'](_0x57ea46,_0x41d53c(0x3df,0x434)+_0x43d4d9(0x413,0x4a3)+_0x43d4d9(0x512,0x4a5))});if(_0x1ba8f6['ok']){const _0x4ed84a={};_0x4ed84a['ok']=!![],_0x137e16[_0x43d4d9(0x4c2,0x4be)](_0x4ed84a);}else{if('mcMmg'===_0x26e260[_0x43d4d9(0x4d3,0x41f)])_0x137e16[_0x43d4d9(0x497,0x500)+'s'](_0x1ba8f6[_0x41d53c(0x3f8,0x375)]===_0x26e260[_0x41d53c(0x32b,0x3e0)]?0x1*0x1b6f+0x22f9+-0x3cd4*0x1:0x1c18*-0x1+-0x3*-0x851+0x105*0x5)[_0x41d53c(0x39c,0x416)](_0x1ba8f6);else{_0x35ae5d['debug']('No\x20su'+_0x43d4d9(0x523,0x4e0)+'ption'+_0x43d4d9(0x478,0x510)+_0x43d4d9(0x456,0x4d6)+'\x20'+_0x2862db);const _0x36c3d6={};return _0x36c3d6['ok']=![],_0x36c3d6[_0x41d53c(0x3f8,0x3f6)]=ScQISA[_0x41d53c(0x32b,0x366)],_0x36c3d6;}}}});function _0x447266(_0x5b0c6b,_0x4485ab){return _0x198b38(_0x4485ab,_0x5b0c6b-0x1b3);}_0x2653bd[_0x5c29fc(0x1e1,0x293)+'e'](_0x26e260[_0x447266(0x2b4,0x2b6)],_0x1fe549,(_0x5e5430,_0x49b5eb)=>{function _0x5b0ca3(_0x3eea94,_0x583965){return _0x5c29fc(_0x3eea94,_0x583965-0x2ec);}function _0x11b9b7(_0x3b96f0,_0x4b5c1c){return _0x5c29fc(_0x4b5c1c,_0x3b96f0-0x81);}if(_0x26e260[_0x5b0ca3(0x50b,0x468)](_0x26e260['qAoWd'],_0x26e260[_0x5b0ca3(0x477,0x4d2)])){const {userId:_0x335d30}=_0x5e5430[_0x5b0ca3(0x5e0,0x551)],_0x336674=_0x26e260[_0x11b9b7(0x1f5,0x276)](_0x335d30,_0x26e260['hPLzS']);delete subscriptions[_0x336674],_0x26e260[_0x11b9b7(0x333,0x321)](saveSubscriptions,subscriptions),_0x5cf352(_0x26e260[_0x5b0ca3(0x4b8,0x486)],_0x11b9b7(0x27a,0x1f8)+_0x11b9b7(0x353,0x2b7)+_0x11b9b7(0x297,0x327)+_0x11b9b7(0x2e1,0x311)+_0x5b0ca3(0x4b4,0x4d3)+_0x11b9b7(0x24d,0x2ce)+_0x5b0ca3(0x578,0x5bc)+_0x336674);const _0x4c9854={};_0x4c9854['ok']=!![],_0x49b5eb[_0x11b9b7(0x2b4,0x2e1)](_0x4c9854);}else return _0x11b9b7(0x2eb,0x38d)+_0x11b9b7(0x226,0x2ac)+_0x11b9b7(0x29e,0x304)+'s\x20max'+_0x11b9b7(0x20b,0x1f0)+_0x11b9b7(0x202,0x1a1)+_0x11b9b7(0x2c9,0x242)+_0x45dfd4;});function _0x5c29fc(_0xfeebdb,_0x51edc5){return _0x198b38(_0xfeebdb,_0x51edc5-0xd6);}_0x2653bd[_0x5c29fc(0x321,0x2d3)](_0x26e260[_0x5c29fc(0x23f,0x2d4)],async(_0x180d73,_0x46a9ae)=>{function _0x4e7f4e(_0x10e276,_0x3ebdac){return _0x447266(_0x3ebdac-0x1d,_0x10e276);}function _0x4ea58d(_0x33d274,_0x23c055){return _0x447266(_0x33d274-0xe9,_0x23c055);}if(_0x4ea58d(0x45d,0x4b8)===_0x26e260[_0x4ea58d(0x382,0x333)]){_0xface08[_0x4ea58d(0x3c6,0x366)](ScQISA[_0x4e7f4e(0x236,0x29a)]);const _0x48186c={};return _0x48186c['ok']=![],_0x48186c[_0x4e7f4e(0x355,0x389)]=ScQISA[_0x4e7f4e(0x370,0x354)],_0x48186c;}else{const _0x34311a=await _0x26e260[_0x4e7f4e(0x40b,0x3bd)](getVapidPublicKey);_0x46a9ae[_0x4ea58d(0x3f9,0x4a3)]({'configured':vapidConfigured,'subscriptions':Object[_0x4e7f4e(0x35a,0x31a)](subscriptions)[_0x4ea58d(0x347,0x2af)+'h'],'publicKey':_0x26e260[_0x4ea58d(0x491,0x4e3)](_0x34311a,null)});}}),_0x5cf352(_0x447266(0x2e2,0x33b),_0x26e260[_0x5c29fc(0x230,0x2c0)]);}
@@ -1 +1 @@
1
- (function(_0x2c0fd7,_0x54137b){const _0x3444f9=_0x2c0fd7();function _0x58c9d9(_0x1ea422,_0x32a9ec){return _0x679e(_0x32a9ec-0x29e,_0x1ea422);}function _0x34678c(_0x2f176d,_0x2c182f){return _0x679e(_0x2c182f- -0x314,_0x2f176d);}while(!![]){try{const _0x2a027b=-parseInt(_0x34678c(-0x1ed,-0x258))/(0x132c+-0x3d*-0x2c+0x1da7*-0x1)+-parseInt(_0x34678c(-0x1e1,-0x185))/(0x169*-0x11+0x119*-0x11+-0x1552*-0x2)*(-parseInt(_0x58c9d9(0x4cb,0x429))/(-0x1*0x517+0x7*-0x1e1+-0x1241*-0x1))+parseInt(_0x34678c(-0x12a,-0x18e))/(-0xa9+-0x1*-0x3a5+-0x1*0x2f8)+parseInt(_0x58c9d9(0x45a,0x439))/(-0x1d02+0x1933*0x1+-0x31*-0x14)+parseInt(_0x34678c(-0x2b0,-0x261))/(-0x597+-0x1*-0x1a6+0x3f7)+parseInt(_0x58c9d9(0x36c,0x31f))/(-0x15a6+-0xa67+-0x805*-0x4)*(-parseInt(_0x58c9d9(0x3e5,0x3d4))/(-0x1712+-0xc3e*-0x2+-0x162))+parseInt(_0x58c9d9(0x347,0x30d))/(0x2*-0x1e9+-0x1*-0x2614+-0x1*0x2239)*(-parseInt(_0x58c9d9(0x37c,0x3a4))/(-0x21d3+-0x12d*-0x18+0x5a5));if(_0x2a027b===_0x54137b)break;else _0x3444f9['push'](_0x3444f9['shift']());}catch(_0x761fb4){_0x3444f9['push'](_0x3444f9['shift']());}}}(_0x3c43,0x15f*-0xf3f+-0x187e96+0x1*0x3a4852));const _0x56737e=(function(){const _0x5d7768={};_0x5d7768[_0x4b6370(0x78,0x137)]=function(_0x151a8b,_0x1029c8){return _0x151a8b===_0x1029c8;},_0x5d7768['xNoiv']=function(_0x430136,_0x4bf056){return _0x430136+_0x4bf056;},_0x5d7768[_0x4b6370(0xad,0x157)]=_0x947a6(-0xda,-0x11f);function _0x947a6(_0x325bf1,_0x1b02c6){return _0x679e(_0x325bf1- -0x14f,_0x1b02c6);}const _0x23c6ae=_0x5d7768;function _0x4b6370(_0xc6fc65,_0x390488){return _0x679e(_0x390488-0x91,_0xc6fc65);}let _0x5c90e2=!![];return function(_0x5340e3,_0x4d6ee2){const _0x2fe24e={'kYLDV':function(_0x479b6a,_0x35a2ec){function _0x1dfbe3(_0x3e2502,_0x21980e){return _0x679e(_0x3e2502- -0x99,_0x21980e);}return _0x23c6ae[_0x1dfbe3(0xd,-0x59)](_0x479b6a,_0x35a2ec);},'mpVya':_0xc87a39(0x495,0x4e9),'VwWek':function(_0x2a6b05,_0x35ba64){function _0x165fb8(_0x2dbb68,_0x5de422){return _0xc87a39(_0x2dbb68-0x73,_0x5de422);}return _0x23c6ae[_0x165fb8(0x4e3,0x546)](_0x2a6b05,_0x35ba64);},'DsVPc':_0xc71d76(-0x6c,-0x82),'Ubdjy':_0x23c6ae[_0xc71d76(-0x151,-0x95)]},_0xe9da41=_0x5c90e2?function(){function _0xd6d296(_0xd19ab,_0x4a9d44){return _0xc71d76(_0x4a9d44,_0xd19ab- -0xc7);}const _0x416813={'ewhSK':function(_0x401f74,_0x101441){function _0x366663(_0x3bccfc,_0x306dd3){return _0x679e(_0x3bccfc- -0x13d,_0x306dd3);}return _0x2fe24e[_0x366663(-0xcf,-0x12d)](_0x401f74,_0x101441);},'ArECt':_0x2fe24e[_0x54de8d(0x166,0x16e)],'QOedH':function(_0x1d916e,_0x4c17dc){function _0x1a7c77(_0x179729,_0x263492){return _0x54de8d(_0x179729,_0x263492- -0x200);}return _0x2fe24e[_0x1a7c77(0x7d,0xd4)](_0x1d916e,_0x4c17dc);}};function _0x54de8d(_0x54a5f0,_0x180524){return _0xc71d76(_0x54a5f0,_0x180524-0x256);}if(_0x2fe24e[_0xd6d296(-0x67,0x5b)]===_0x2fe24e[_0xd6d296(-0x4b,0x61)]){for(const _0x41e4a3 of _0x3150d4[_0x54de8d(0x1f0,0x1c6)+'nt']){_0x416813[_0x54de8d(0x215,0x29a)](_0x41e4a3['type'],_0x416813[_0x54de8d(0x246,0x1f9)])&&_0x41e4a3[_0xd6d296(-0x4d,-0x6b)]&&(_0xe931c4+=_0x416813[_0x54de8d(0x1b2,0x1f5)](_0x41e4a3[_0xd6d296(-0x4d,-0x64)],'\x0a'));}_0x120acf=_0xd597f8['trim']();}else{if(_0x4d6ee2){const _0x32cd89=_0x4d6ee2[_0xd6d296(-0x142,-0x171)](_0x5340e3,arguments);return _0x4d6ee2=null,_0x32cd89;}}}:function(){};_0x5c90e2=![];function _0xc87a39(_0x2d7d27,_0x101cf3){return _0x947a6(_0x2d7d27-0x40f,_0x101cf3);}function _0xc71d76(_0x52ebcd,_0x25a05f){return _0x947a6(_0x25a05f- -0xc,_0x52ebcd);}return _0xe9da41;};}()),_0x2c9d59=_0x56737e(this,function(){function _0x32d5a8(_0x36651d,_0xf81090){return _0x679e(_0x36651d-0x151,_0xf81090);}const _0x30f0f3={};function _0x5126df(_0xe35223,_0x34b072){return _0x679e(_0x34b072-0x1de,_0xe35223);}_0x30f0f3['aAAXz']=_0x5126df(0x2c7,0x2b8)+_0x32d5a8(0x32f,0x368)+'+$';const _0x126a06=_0x30f0f3;return _0x2c9d59[_0x5126df(0x21b,0x257)+_0x32d5a8(0x211,0x17d)]()[_0x5126df(0x45a,0x39e)+'h'](_0x126a06[_0x32d5a8(0x1ba,0x1ad)])[_0x32d5a8(0x1ca,0x134)+_0x32d5a8(0x211,0x2c3)]()[_0x5126df(0x314,0x269)+_0x32d5a8(0x293,0x260)+'r'](_0x2c9d59)[_0x5126df(0x380,0x39e)+'h'](_0x5126df(0x34a,0x2b8)+')+)+)'+'+$');});_0x2c9d59();function _0x1c7772(_0x4720ab,_0xfadf22){return _0x679e(_0x4720ab-0x33a,_0xfadf22);}function _0x679e(_0x679eb4,_0x5d71fc){_0x679eb4=_0x679eb4-(-0x3bc+0x575+0x3*-0x71);const _0x4af5f=_0x3c43();let _0x8567da=_0x4af5f[_0x679eb4];return _0x8567da;}function _0x3c43(){const _0x5d934c=['tory\x20','ENGVt','readF','NO_RE','YmYHl','eted','s\x20att','te:','\x20hist','conte','lqrQf','agent','role','g\x20tra','lszuB','hLGRy','\x20long','te\x20yo','filte','HAOfb','trans','sxEKl','eDzQA','negvg','(((.+','ZYnlB','enCla','lZxSM','SCaAb','start','apply','apudv','red','qmDnd','IWJNt','rOvMg','a\x20fou','n,\x20re','label','wWLvp','d\x20to\x20','now','vxjGe','UCWiZ','user:','lid\x20c','utf8','limit','JRpEa','Mioya','Ipcpr','scrip','zFOkQ','onFil','withF','fidwZ','QOedH','liteI','push','rdsZg','ArECt','dgCZU','fetch','SZnSg','OumgN','\x20sess','qzLuP','xBkhx','1770ZvAyZU','gMrhA','QenLS','ApAdf','cGhGp','son','t\x20ses','DCvmF','Zhbqu','TpHde','dcdsT','Faile','ENOEN','WKpiw','IcCzB','lengt',':upli','dvZAE','EahrM','write','poLsi','cBUuI','VIFZO','or\x20de','ory\x20f','tains','pPFsf','assis','.json','ELD','inclu','json','tamp','on\x20en','from','h\x20tra','ATION','EqcIF','PQOTl','try:\x20','SPiwk','oSXPh','BEAT.','MKtnK','[Sate','sWROG','YgYfT','\x20tran','38840rjBCYm','VDbDq','ory','dAfkR','WqEnj','slice','ay/hi','MemEK','ellit','alid\x20','pt:\x20','tup\x20s','ructo','WWLsC','sks',']\x20Ses','otDQi','ogABu','retir','RMDhN','RROR','eoJPj',']\x20Inv','If\x20no','Ovihn','ons.j','llite','MCIXu','VkFAA','nTlSE','equen','t:\x20','aLhgV','d\x20too','cked\x20','lite/','isDir','ssion','ed-','VALID','fOZAe','VVcSj','rEtfO','Canno','EARTB','LqMUn','iring','getTi','Knpwc','QvQTT','t\x20ret','cRbEZ','nk:sa','PLY','dKysf','test-','gify','mgYti',']\x20Err','min',']\x20His','TQTNK','satel',']\x20Rem','sDele','unlin','model','_ERRO','toolR','times','telli','e\x20sat','type',']\x20Lis','in\x20hi','isArr','Token','ilmZB','sWith',':main','2788516pHRqnR','tant','ur\x20he','resol','DnIMd','621141FFFyvw','sions','Yhqev','post','2AOnSkf','info','pwoye','WKjhM','name','hOCBX','fiRnN','GuZgg','nRatK','thing','join','IosUq','7533485SAFHGA','xISLN','forma','error','ewhSK','r:\x20','Wsahh','oBCsz','ywJwI','hQTPv','PzlKS','XSbih','RPPlq','trim','HWNAy','t(s)\x20','PMQsd','code','pes','mKANt','entri','xNoiv','aqaeS','hSxmy','rror:','letin','ukVEE','\x20erro','alpeJ','ching','ed:\x20','NPBZg','DsVPc','cript','versa','SNDhM','MISSI','searc','onId','d\x20at\x20',']\x20Ret','JmJCI','Jincp','unkno','ing\x20k','NAL_E','des','he\x20pr','hNEsv','Bhorz','CVjsV','XaMJM','entio','PhiNj','Iqfth','pUwbu',']\x20Pat','ector','text','strin','Ubdjy','base6','VwWek','get','sessi','\x20stor','/api/',')+)+)','bQzwt','sort','bGqgs','VzUUB','lite\x20','\x20Star','skwhY','Satel','imary','edAt','tGMwX','NkuVq','user','onKey','or\x20se','repla','readd','harac','aAAXz','\x20sate','ovnbY','hoZQQ','ted','kYLDV','69777EJNgeN','ire\x20e','d\x20con','lSuiw','mpVya','\x20foun','bOJLo','ire\x20t','dhWyF','w\x20dat','toStr','at\x20ta','ters','nk-de','d\x20is\x20','fPeld','ring','GvoVZ','910ifvFDO','onDel','DIENE','parse','bfxmc','fLsMl','Nsfoz','KyJGr','story','test','const','eted\x20','nk-up','\x20inva','messa','list\x20','no\x20Op','CKkfv','ileTy','HEART','UWfnq','oved',']\x20Fet','PBDPw','ons','total','e\x20not','ges','RCBJl','query','l\x20blo','ICLxg','updat','ion(s','lJsJg','izIUM','warn','PSWcx','main','requi','YzVxj','BZCda','Read\x20','NG_FI','azSVe','BEAT_','onId\x20','gatew',')\x20rem','subst','9023736UOBFdI','fhrSs','CbuKJ','ply\x20H','\x20need','iULIV','Uruzm','File','BtpHJ','1067019hAYmvt','JqrKH','rvdbg','INTER','ing','ile'];_0x3c43=function(){return _0x5d934c;};return _0x3c43();}import _0x3f1fa7 from'fs/promises';import _0x44df69 from'path';import{badRequest,internalError,ErrorCodes}from'../../utils/errors.js';import{sanitizeSatelliteId,isValidId}from'../../utils/id-sanitize.js';import{getOpenClawStateDir}from'../openclaw-discover.js';const AGENT_ID=process.env.OPENCLAW_AGENT_ID||_0x1c7772(0x3e1,0x38e);async function getSessionsStorePath(_0x251597){function _0x3c43c2(_0x32625d,_0x402b60){return _0x1c7772(_0x402b60- -0x2c2,_0x32625d);}function _0x5a8483(_0x50eead,_0x2ef12f){return _0x1c7772(_0x50eead- -0x4f8,_0x2ef12f);}const _0x1f6cb7={'EahrM':function(_0x4f44ff,_0x495c2f){return _0x4f44ff(_0x495c2f);},'gXlZt':_0x5a8483(-0xf1,-0x103)+'s','iULIV':_0x5a8483(0x1d,-0x4d)+_0x5a8483(-0x125,-0xda)},_0x3ea8d4=await getOpenClawStateDir(),_0x261dda=_0x1f6cb7[_0x5a8483(-0xa6,-0xcd)](sanitizeAgentId,_0x251597)||AGENT_ID;return _0x44df69[_0x5a8483(-0x25,0x5c)](_0x3ea8d4,_0x1f6cb7['gXlZt'],_0x261dda,_0x1f6cb7[_0x3c43c2(0xd1,0x130)],_0x3c43c2(0x243,0x253)+_0x5a8483(-0x6f,0x50)+_0x5a8483(-0xb3,-0x110));}async function getSessionsDir(_0x2dac08){const _0x50fe93={'dcdsT':function(_0x34f8cc){return _0x34f8cc();},'fOZAe':'agent'+'s','WqEnj':_0x2b3612(0x351,0x3ed)+'ons'},_0x3108c7=await _0x50fe93[_0x2b3612(0x309,0x322)](getOpenClawStateDir);function _0x2b3612(_0x16793c,_0x3c4a1e){return _0x1c7772(_0x3c4a1e- -0x128,_0x16793c);}function _0x5ee093(_0x242d52,_0x38af3d){return _0x1c7772(_0x242d52- -0x30b,_0x38af3d);}const _0x276a44=sanitizeAgentId(_0x2dac08)||AGENT_ID;return _0x44df69['join'](_0x3108c7,_0x50fe93[_0x5ee093(0x18d,0x105)],_0x276a44,_0x50fe93[_0x2b3612(0x3e8,0x34c)]);}function sanitizeAgentId(_0x2c23c3){const _0x14a29c={};function _0x127cda(_0x77b353,_0x392954){return _0x1c7772(_0x392954- -0x58a,_0x77b353);}function _0x59e0ce(_0x1d4bd0,_0x5f415d){return _0x1c7772(_0x1d4bd0- -0x1c4,_0x5f415d);}_0x14a29c['tGMwX']=function(_0x52a565,_0xa6f737){return _0x52a565!==_0xa6f737;};const _0x33aba9=_0x14a29c;if(!_0x2c23c3||_0x33aba9[_0x127cda(0x1b,-0x67)](typeof _0x2c23c3,'strin'+'g'))return'';return _0x2c23c3[_0x59e0ce(0x1dc,0x230)+'ce'](/[^a-z0-9-]/g,'')['subst'+_0x59e0ce(0x1f5,0x206)](0x1065*0x1+-0x1*-0x20c7+0xc4b*-0x4,0x1573*0x1+-0x2*0x556+-0xa87);}export function setupSatelliteRoutes(_0x3c58b1,_0x241e0d){const _0x4425fe={'nTlSE':function(_0x4af30c,_0x512b1d){return _0x4af30c+_0x512b1d;},'Bhorz':function(_0x3c8cb9,_0x365088,_0xb32158){return _0x3c8cb9(_0x365088,_0xb32158);},'mgYti':_0x18d509(0x4b0,0x537),'ApAdf':function(_0x392c36,_0x1ca3bb,_0x4834c5,_0x35eacb){return _0x392c36(_0x1ca3bb,_0x4834c5,_0x35eacb);},'lqrQf':_0x18d509(0x57d,0x50d)+_0x5e6e1f(0x417,0x461)+_0x18d509(0x3c3,0x416)+_0x5e6e1f(0x45b,0x40e)+_0x18d509(0x418,0x47b),'IosUq':'text','aLhgV':function(_0x412f6c,_0x5142df){return _0x412f6c+_0x5142df;},'rvdbg':function(_0x3c13eb,_0x178ea6){return _0x3c13eb!==_0x178ea6;},'pwoye':function(_0xf10244,_0x31463a,_0x213913,_0x3d0ade){return _0xf10244(_0x31463a,_0x213913,_0x3d0ade);},'lSuiw':_0x5e6e1f(0x474,0x4da)+_0x18d509(0x552,0x494)+_0x5e6e1f(0x31e,0x3d7)+_0x18d509(0x46b,0x4b8)+_0x5e6e1f(0x3ac,0x3f4)+_0x5e6e1f(0x4f3,0x455)+_0x5e6e1f(0x34c,0x3ce)+_0x5e6e1f(0x3fc,0x3e1),'alpeJ':function(_0xf39084,_0xf066b6,_0x24239f,_0x4ecd53){return _0xf39084(_0xf066b6,_0x24239f,_0x4ecd53);},'TQTNK':_0x18d509(0x45b,0x4aa)+_0x5e6e1f(0x44f,0x450)+'fetch'+'\x20hist'+'ory','BtpHJ':function(_0x5e2b75,_0x3d5eb1){return _0x5e2b75===_0x3d5eb1;},'bGqgs':_0x5e6e1f(0x436,0x478)+'T','bfxmc':'warn','hoZQQ':_0x5e6e1f(0x4e2,0x45f),'lJsJg':_0x5e6e1f(0x425,0x495),'YKyiU':'qzPPm','JmJCI':_0x18d509(0x524,0x4ca),'WKpiw':function(_0x218c3f,_0x1936de){return _0x218c3f>_0x1936de;},'QenLS':'SAtVq','ywJwI':function(_0x23cd7f,_0x56c182,_0x2e7626,_0x4e5327){return _0x23cd7f(_0x56c182,_0x2e7626,_0x4e5327);},'KyJGr':_0x18d509(0x555,0x50d)+_0x18d509(0x506,0x494)+_0x5e6e1f(0x523,0x4bd)+_0x5e6e1f(0x4af,0x438),'HAOfb':function(_0x5b0aac,_0x2b7c4d,_0x414024,_0x2cdbee){return _0x5b0aac(_0x2b7c4d,_0x414024,_0x2cdbee);},'Ovihn':_0x18d509(0x4a3,0x4fa)+_0x5e6e1f(0x4b3,0x4ce)+'ire\x20t'+_0x5e6e1f(0x5b2,0x530)+_0x18d509(0x638,0x580)+_0x18d509(0x499,0x403)+_0x18d509(0x597,0x4e9),'BZCda':function(_0x2b98d7,_0x18932c){return _0x2b98d7!==_0x18932c;},'NPBZg':'fKHHM','AFmCI':_0x18d509(0x474,0x452),'UCWiZ':function(_0x507e82,_0x571815,_0x14f342,_0x1d190d){return _0x507e82(_0x571815,_0x14f342,_0x1d190d);},'pUwbu':function(_0x550639,_0x3c88ca){return _0x550639(_0x3c88ca);},'TpHde':_0x18d509(0x45a,0x440),'SPiwk':function(_0x32d901,_0x41ce4c,_0x248dbd){return _0x32d901(_0x41ce4c,_0x248dbd);},'vxjGe':_0x5e6e1f(0x538,0x4f6),'Yhqev':'rfsEI','pJmqz':_0x18d509(0x437,0x4dc),'VkFAA':_0x5e6e1f(0x4dc,0x4fc),'PhiNj':_0x18d509(0x37e,0x420),'ZuUga':'qtdyI','Mioya':function(_0x1c6f81,_0x2cfad2,_0x5bb423){return _0x1c6f81(_0x2cfad2,_0x5bb423);},'DCvmF':_0x5e6e1f(0x44a,0x436),'ovnbY':'pnNJl','rOvMg':'cGhGp','ukVEE':function(_0x3748d3,_0x59e4ba){return _0x3748d3!==_0x59e4ba;},'tqzyB':_0x18d509(0x522,0x4a0),'nRatK':'BJspL','dAfkR':function(_0x5a8303,_0x43b1da){return _0x5a8303===_0x43b1da;},'dgCZU':_0x5e6e1f(0x4c7,0x524),'dhWyF':'XnrEo','DIENE':_0x5e6e1f(0x3f3,0x45a),'EiXaQ':function(_0x3d5169,_0x21493e){return _0x3d5169===_0x21493e;},'XaMJM':_0x18d509(0x479,0x4b3),'Wsahh':function(_0x30822b,_0x1228f9){return _0x30822b>_0x1228f9;},'goWrS':_0x5e6e1f(0x4bb,0x50c),'fiRnN':'Faile'+'d\x20to\x20'+_0x18d509(0x4b9,0x4e1)+_0x18d509(0x49b,0x516)+_0x18d509(0x598,0x4d7)+'e','zFOkQ':function(_0x58c1f9,_0x3cabee,_0x3952cc){return _0x58c1f9(_0x3cabee,_0x3952cc);},'cRbEZ':'(((.+'+_0x5e6e1f(0x5a6,0x544)+'+$','YgYfT':function(_0x3ca8fa,_0x4be190){return _0x3ca8fa===_0x4be190;},'SZnSg':function(_0x4b2b93,_0x1a53f4){return _0x4b2b93===_0x1a53f4;},'GvoVZ':_0x18d509(0x4c0,0x584),'xbNhx':function(_0x450b22,_0x460089,_0x36dfda,_0x4e1466){return _0x450b22(_0x460089,_0x36dfda,_0x4e1466);},'WKjhM':'oaGWw','DnIMd':_0x5e6e1f(0x46d,0x4cd),'WsItX':function(_0x1c1bbb,_0x165736){return _0x1c1bbb(_0x165736);},'eoJPj':function(_0x363bf1,_0x317709){return _0x363bf1(_0x317709);},'dSTLL':function(_0x40ceaf,_0x49c760,_0x5ad8ad){return _0x40ceaf(_0x49c760,_0x5ad8ad);},'VVcSj':'debug','Knpwc':function(_0x587a8f,_0x1d5a31){return _0x587a8f===_0x1d5a31;},'Iqfth':'cSsju','Zhbqu':'oocjW','WryIV':function(_0x4ece92,_0x3b42a9){return _0x4ece92(_0x3b42a9);},'aqaeS':function(_0x5851c9,_0x4f8eea){return _0x5851c9(_0x4f8eea);},'ENGVt':function(_0x58894d,_0x40a75c){return _0x58894d===_0x40a75c;},'sWROG':_0x5e6e1f(0x573,0x4d2),'nqPoY':function(_0x4c9208,_0x5ec940,_0x5d74e8){return _0x4c9208(_0x5ec940,_0x5d74e8);},'qmDnd':function(_0x260e16,_0x45cc47){return _0x260e16!==_0x45cc47;},'DyUjy':'qPXVw','MemEK':function(_0x52b1b3,_0x27969b,_0x29f030){return _0x52b1b3(_0x27969b,_0x29f030);},'oBCsz':_0x5e6e1f(0x4b8,0x423),'IIlwJ':_0x18d509(0x3c3,0x417),'CKkfv':'hseIA','SCaAb':function(_0x5ef5db,_0x2f0dc7,_0x26c73a){return _0x5ef5db(_0x2f0dc7,_0x26c73a);},'hSxmy':function(_0x85eb5a,_0x22ed35,_0x224b8c,_0x487924){return _0x85eb5a(_0x22ed35,_0x224b8c,_0x487924);},'JRpEa':function(_0x51eb6e,_0x4c71bd){return _0x51eb6e!==_0x4c71bd;},'GlyDL':_0x5e6e1f(0x4e4,0x514),'rdsZg':function(_0x343dbe,_0x75a512){return _0x343dbe!==_0x75a512;},'hOCBX':_0x5e6e1f(0x4c7,0x447),'PQOTl':function(_0x2c7861,_0x264561){return _0x2c7861===_0x264561;},'pPFsf':_0x5e6e1f(0x4bd,0x4e0)+'esult','xISLN':'tool','izIUM':_0x5e6e1f(0x502,0x53c)+'g','ICLxg':function(_0x2a3bb4,_0x5c7ed8){return _0x2a3bb4!==_0x5c7ed8;},'YOQWG':_0x18d509(0x52b,0x544),'qzLuP':_0x18d509(0x471,0x4b4),'mKsGR':function(_0x140423,_0x54f147){return _0x140423===_0x54f147;},'NkuVq':_0x5e6e1f(0x366,0x3fa)+_0x5e6e1f(0x3dc,0x414)+'OK','HWNAy':_0x5e6e1f(0x430,0x4b3)+_0x5e6e1f(0x561,0x4fe)+_0x18d509(0x3cb,0x450)+_0x5e6e1f(0x424,0x42e)+_0x18d509(0x4cc,0x568)+_0x18d509(0x492,0x480)+_0x18d509(0x3d8,0x44f)+_0x5e6e1f(0x4b0,0x4c8)+'EAT_O'+'K','RCBJl':function(_0x22885a,_0x1ad6cf){return _0x22885a===_0x1ad6cf;},'WVApA':'Execu'+_0x5e6e1f(0x410,0x439)+'ur\x20Se'+_0x18d509(0x445,0x4f4)+_0x18d509(0x55e,0x57d)+_0x18d509(0x487,0x4da)+_0x5e6e1f(0x57e,0x4ba)+'ce','VNQpw':'execu'+_0x18d509(0x3ab,0x46c)+_0x18d509(0x52c,0x521)+'artbe'+_0x5e6e1f(0x49c,0x3e0)+_0x18d509(0x51f,0x4dd),'skwhY':_0x18d509(0x574,0x4ba)+_0x5e6e1f(0x5a6,0x4ed),'YzVxj':_0x5e6e1f(0x401,0x42b)+_0x18d509(0x499,0x504),'ilmZB':_0x5e6e1f(0x471,0x50a),'ogABu':function(_0x15e864){return _0x15e864();},'EtAth':function(_0x204624,_0x29d804){return _0x204624===_0x29d804;},'PzlKS':_0x5e6e1f(0x4fd,0x541)+_0x5e6e1f(0x3f9,0x3ff),'hNEsv':_0x18d509(0x5bd,0x574)+_0x5e6e1f(0x536,0x4b5)+'son','EqcIF':_0x18d509(0x52c,0x489),'fhrSs':_0x5e6e1f(0x57a,0x52c)+'wn','oQRIb':'uplin'+'k:','WznBT':_0x18d509(0x603,0x571)+'4url','azSVe':function(_0x422c57,_0x2a4126,_0x571f10){return _0x422c57(_0x2a4126,_0x571f10);},'bkrTP':'Faile'+_0x5e6e1f(0x42f,0x450)+_0x18d509(0x4a8,0x429)+'sessi'+'ons','xBkhx':_0x5e6e1f(0x575,0x543)+_0x18d509(0x459,0x50d)+_0x18d509(0x4bf,0x4f2)+_0x5e6e1f(0x511,0x4ae)+'e','NdVVL':_0x5e6e1f(0x4ad,0x543)+_0x18d509(0x4c8,0x449)+_0x5e6e1f(0x4cd,0x4a2)+_0x18d509(0x497,0x422),'OumgN':_0x5e6e1f(0x5de,0x543)+_0x5e6e1f(0x44b,0x4da)+_0x18d509(0x44d,0x4f2)+'sessi'+_0x18d509(0x443,0x432)};function _0x5e6e1f(_0x379614,_0x5e939d){return _0x1c7772(_0x5e939d-0x2c,_0x379614);}const {log:_0x488184}=_0x241e0d;function _0x18d509(_0x4acc32,_0x21378d){return _0x1c7772(_0x21378d-0x5f,_0x4acc32);}_0x3c58b1[_0x18d509(0x466,0x527)](_0x4425fe[_0x5e6e1f(0x4c0,0x46b)],async(_0x2d4705,_0x63b6a6)=>{function _0xd3ca56(_0x1a9b3f,_0x22486f){return _0x5e6e1f(_0x22486f,_0x1a9b3f- -0x5f);}const _0x86d783={'ZYnlB':function(_0x466e4c,_0x5bdad5,_0x5ae201,_0x204c4a){function _0x16ff1e(_0x355b6b,_0x505fca){return _0x679e(_0x505fca-0x1af,_0x355b6b);}return _0x4425fe[_0x16ff1e(0x2c8,0x366)](_0x466e4c,_0x5bdad5,_0x5ae201,_0x204c4a);},'MemRG':_0x4425fe[_0x69a94e(0x327,0x34d)],'HfKTP':_0x69a94e(0x315,0x270)+_0x69a94e(0x31c,0x3be)+_0xd3ca56(0x37d,0x3a1)+_0x69a94e(0x37e,0x417)+_0xd3ca56(0x4ee,0x47b)+_0xd3ca56(0x371,0x344)+_0x69a94e(0x304,0x2bd),'Jincp':function(_0x3b421a,_0xe3fccc){function _0x7447f2(_0x2d1662,_0x34f343){return _0x69a94e(_0x2d1662- -0x36f,_0x34f343);}return _0x4425fe[_0x7447f2(-0x100,-0x146)](_0x3b421a,_0xe3fccc);},'lZxSM':_0x4425fe[_0xd3ca56(0x4e8,0x46b)],'IcCzB':function(_0x14e7c7,_0x33524b,_0x67e2bb){function _0x2df642(_0x922989,_0x56392c){return _0xd3ca56(_0x922989- -0x299,_0x56392c);}return _0x4425fe[_0x2df642(0x23a,0x27e)](_0x14e7c7,_0x33524b,_0x67e2bb);},'aYWZl':_0x69a94e(0x352,0x327),'BMptY':_0x4425fe['bfxmc']};function _0x69a94e(_0x5c85b8,_0x5845c4){return _0x5e6e1f(_0x5845c4,_0x5c85b8- -0x1b2);}if(_0x4425fe[_0x69a94e(0x220,0x17e)]===_0x4425fe[_0x69a94e(0x257,0x2fc)])_0x3b2df8(_0x69a94e(0x352,0x383),_0xd3ca56(0x439,0x3b7)+_0xd3ca56(0x457,0x3ee)+_0xd3ca56(0x479,0x50a)+_0xd3ca56(0x3c9,0x489)+'fetch'+_0xd3ca56(0x4bd,0x419)+_0x69a94e(0x354,0x364)+_0x4940ab['messa'+'ge']),_0x86d783[_0xd3ca56(0x3e2,0x3ea)](_0x209a60,_0x2cad90,_0x86d783['MemRG'],_0x2a276e['INTER'+_0xd3ca56(0x4cf,0x439)+_0x69a94e(0x2fe,0x317)]);else{const {satelliteId:_0x3dc4b5,agentId:_0xccaf65}=_0x2d4705['body'];if(!_0x3dc4b5||_0x4425fe[_0xd3ca56(0x3c5,0x47d)](typeof _0x3dc4b5,_0x69a94e(0x38a,0x3df)+'g')){if(_0x4425fe[_0x69a94e(0x26f,0x2aa)](_0x4425fe['YKyiU'],_0x4425fe[_0x69a94e(0x378,0x3cc)])){const _0xe961e1={};return _0xe961e1['ok']=!![],_0xe961e1[_0xd3ca56(0x4e2,0x4e9)+_0x69a94e(0x3a0,0x3ec)]=_0x2d9aaf,_0xe961e1['messa'+_0x69a94e(0x250,0x1d8)]=[],_0x1cd05e[_0x69a94e(0x2d9,0x2b2)](_0xe961e1);}else return badRequest(_0x63b6a6,_0x4425fe[_0xd3ca56(0x3d3,0x3c8)],ErrorCodes[_0xd3ca56(0x4c6,0x511)+_0x69a94e(0x260,0x20d)+_0x69a94e(0x2d7,0x24d)]);}if(_0x4425fe[_0x69a94e(0x2c7,0x237)](_0x3dc4b5[_0xd3ca56(0x41c,0x45e)+'h'],0x1aea+-0x1*0x22c9+0x843)){if(_0x4425fe[_0x69a94e(0x2bc,0x22f)]!==_0x69a94e(0x24c,0x20b))return _0x4425fe[_0x69a94e(0x357,0x3e7)](badRequest,_0x63b6a6,_0x4425fe[_0x69a94e(0x23c,0x2b0)],ErrorCodes[_0x69a94e(0x311,0x2aa)+_0x69a94e(0x2de,0x358)+'_ERRO'+'R']);else{if(!/^[a-f0-9-]+$/i[_0x69a94e(0x23e,0x21e)](_0x29f04f[_0xd3ca56(0x4e2,0x44f)+_0xd3ca56(0x4c8,0x42b)])){_0x144251(_0x69a94e(0x259,0x2a8),_0x69a94e(0x2e6,0x2b7)+_0x69a94e(0x304,0x356)+_0x69a94e(0x300,0x338)+_0x69a94e(0x2f3,0x395)+_0xd3ca56(0x4e2,0x4f4)+'onId\x20'+_0x69a94e(0x351,0x30e)+_0x69a94e(0x309,0x391)+_0x429299[_0x69a94e(0x38f,0x347)+_0x69a94e(0x375,0x340)]);const _0x32833b={};return _0x32833b['ok']=!![],_0x32833b['sessi'+_0xd3ca56(0x4f3,0x50b)]=_0x27ceba,_0x32833b['messa'+_0xd3ca56(0x3a3,0x3cb)]=[],_0x791b9a[_0x69a94e(0x2d9,0x219)](_0x32833b);}_0x4799fd=_0x36409c[_0xd3ca56(0x4a0,0x430)](_0x2293e5,_0x416f12['sessi'+'onId']+('.json'+'l'));}}if(_0x3dc4b5===_0x69a94e(0x25b,0x2af))return _0x4425fe[_0xd3ca56(0x3dc,0x43a)](badRequest,_0x63b6a6,_0x4425fe[_0x69a94e(0x302,0x288)],ErrorCodes[_0xd3ca56(0x464,0x49a)+_0x69a94e(0x2de,0x32f)+_0xd3ca56(0x480,0x426)+'R']);const _0x19ff4f=sanitizeSatelliteId(_0x3dc4b5);if(_0x19ff4f!==_0x3dc4b5)return _0x4425fe[_0xd3ca56(0x3b1,0x371)](_0x4425fe[_0xd3ca56(0x4c1,0x503)],_0x4425fe['AFmCI'])?_0x4425fe[_0x69a94e(0x2a1,0x2a3)](badRequest,_0x63b6a6,_0x4425fe[_0x69a94e(0x226,0x16d)],ErrorCodes[_0x69a94e(0x311,0x2cc)+_0xd3ca56(0x431,0x464)+'_ERRO'+'R']):_0x86d783[_0x69a94e(0x28f,0x317)](_0x12d974,_0x1bea3d,_0x86d783['HfKTP'],_0xee4b79[_0x69a94e(0x311,0x2ec)+_0x69a94e(0x2de,0x2c1)+_0x69a94e(0x32d,0x2a1)+'R']);const _0x51d1b4=_0xccaf65?_0x4425fe['pUwbu'](String,_0xccaf65)[_0xd3ca56(0x36d,0x377)+'ce'](/[^a-z0-9-]/g,'')['subst'+_0xd3ca56(0x386,0x412)](0x1ae3+-0x13aa+0x2b*-0x2b,0x676*-0x5+0xdd9+0x12b5)||_0x4425fe[_0x69a94e(0x2c3,0x209)]:_0x4425fe[_0xd3ca56(0x416,0x382)],_0x27cab7=['agent'+':'+_0x51d1b4+(_0x69a94e(0x2ca,0x2bf)+_0x69a94e(0x31e,0x2bb)+_0x69a94e(0x330,0x3e1)+'te:')+_0x19ff4f,_0x69a94e(0x281,0x226)+_0xd3ca56(0x48c,0x54e)+':upli'+_0xd3ca56(0x471,0x3cf)+_0xd3ca56(0x483,0x411)+_0xd3ca56(0x3d0,0x456)+_0x19ff4f,_0xd3ca56(0x3d4,0x3d0)+_0xd3ca56(0x48c,0x46b)+_0x69a94e(0x2ca,0x2af)+_0x69a94e(0x230,0x203)+'fault'+':'+_0x19ff4f,'agent'+_0xd3ca56(0x48c,0x422)+_0x69a94e(0x2ca,0x238)+_0xd3ca56(0x394,0x428)+'link-'+_0x69a94e(0x2a2,0x236)+_0x19ff4f];_0x4425fe[_0xd3ca56(0x435,0x3dc)](_0x488184,_0x4425fe['vxjGe'],_0x69a94e(0x2e6,0x3aa)+_0x69a94e(0x304,0x357)+']\x20Ret'+_0x69a94e(0x318,0x363)+_0x69a94e(0x21e,0x19b)+'llite'+'\x20'+_0x19ff4f+(',\x20try'+_0xd3ca56(0x4ce,0x419)+'eys:\x20')+_0x27cab7[_0x69a94e(0x34d,0x3ab)](',\x20'));const _0x56340d={};_0x56340d['ok']=!![],_0x56340d[_0xd3ca56(0x47b,0x4f0)+_0x69a94e(0x2af,0x25c)+'d']=_0x19ff4f,_0x56340d[_0x69a94e(0x38f,0x417)+_0x69a94e(0x3a0,0x3e1)+_0xd3ca56(0x47d,0x416)+'ted']=[],_0x56340d[_0xd3ca56(0x3dd,0x327)+_0xd3ca56(0x4c3,0x4b2)+_0x69a94e(0x32a,0x388)+_0xd3ca56(0x374,0x3c3)]=[],_0x56340d[_0x69a94e(0x243,0x1ed)+'ge']='';const _0x594fe3=_0x56340d;try{const _0x10b644=await _0x4425fe[_0xd3ca56(0x4d9,0x492)](getSessionsStorePath,_0x51d1b4),_0x28f65e=await _0x4425fe[_0xd3ca56(0x4d9,0x4f2)](getSessionsDir,_0x51d1b4);let _0x1d8be4={},_0x1cce66=![];try{if(_0x4425fe[_0x69a94e(0x26f,0x319)](_0x4425fe[_0x69a94e(0x341,0x28d)],_0x4425fe['pJmqz'])){if(_0x86d783[_0x69a94e(0x379,0x2bf)](_0x8faffb[_0x69a94e(0x360,0x31f)],_0x86d783[_0xd3ca56(0x3e4,0x342)])){const _0x44b0f5={};return _0x44b0f5['ok']=!![],_0x44b0f5['sessi'+_0xd3ca56(0x3a0,0x311)]=[],_0x806873[_0xd3ca56(0x42c,0x3fe)](_0x44b0f5);}throw _0x14da1a;}else{const _0x9c4625=await _0x3f1fa7[_0x69a94e(0x278,0x24c)+'ile'](_0x10b644,_0x69a94e(0x2a4,0x348));_0x1d8be4=JSON[_0xd3ca56(0x38b,0x2e7)](_0x9c4625);}}catch(_0x1f51fd){if(_0x4425fe['VkFAA']===_0x4425fe[_0x69a94e(0x306,0x282)]){if(_0x4425fe['BtpHJ'](_0x1f51fd[_0xd3ca56(0x4b3,0x434)],_0x4425fe['bGqgs']))_0x4425fe[_0xd3ca56(0x3c5,0x3f2)](_0x4425fe[_0x69a94e(0x384,0x34f)],_0x4425fe['ZuUga'])?_0x4425fe['Mioya'](_0x488184,_0x4425fe[_0xd3ca56(0x38c,0x420)],_0x69a94e(0x2e6,0x34d)+'llite'+']\x20Ses'+_0xd3ca56(0x493,0x4df)+'\x20stor'+_0xd3ca56(0x3a2,0x358)+_0x69a94e(0x228,0x1e9)+_0xd3ca56(0x4c9,0x568)+_0x10b644):_0x28a34b[_0xd3ca56(0x403,0x34e)](_0x579c73['trans'+_0xd3ca56(0x4c3,0x46b)+_0x69a94e(0x32a,0x340)+_0xd3ca56(0x374,0x3b5)][_0x69a94e(0x2c9,0x20e)+'h']+(_0x69a94e(0x2e9,0x2e5)+'scrip'+_0x69a94e(0x35e,0x2bf)+'delet'+'ed'));else{if(_0x4425fe[_0xd3ca56(0x3c2,0x34d)](_0x69a94e(0x249,0x1c2),_0x4425fe[_0x69a94e(0x2c1,0x313)]))_0x21c3f7+=_0x4425fe[_0xd3ca56(0x45a,0x416)](_0x584271[_0xd3ca56(0x4dc,0x4db)],'\x0a');else throw _0x1f51fd;}}else _0x4425fe[_0xd3ca56(0x4d3,0x4b7)](_0x1aed7d,_0x4425fe['mgYti'],_0x69a94e(0x2e6,0x356)+_0xd3ca56(0x457,0x3e9)+']\x20Lis'+_0x69a94e(0x2c0,0x277)+_0xd3ca56(0x493,0x48f)+'\x20erro'+_0x69a94e(0x354,0x3bd)+_0x5ee5f3[_0x69a94e(0x243,0x2fa)+'ge']),_0x151afe(_0x2445d4,_0xd3ca56(0x418,0x41e)+'d\x20to\x20'+_0xd3ca56(0x397,0x2fc)+_0x69a94e(0x38f,0x31b)+_0x69a94e(0x24d,0x300),_0x43ae5b[_0xd3ca56(0x3c6,0x3f2)+'NAL_E'+'RROR']);}for(const _0x14e3cc of _0x27cab7){if(_0x4425fe['rvdbg'](_0x4425fe[_0x69a94e(0x21f,0x1d8)],_0x4425fe[_0x69a94e(0x21f,0x27d)]))_0x36010e=_0x479817['conte'+'nt'];else{if(_0x1d8be4[_0x14e3cc]){const _0x4143bb=_0x1d8be4[_0x14e3cc];delete _0x1d8be4[_0x14e3cc],_0x1cce66=!![],_0x594fe3[_0x69a94e(0x38f,0x423)+_0xd3ca56(0x4f3,0x477)+_0x69a94e(0x32a,0x364)+_0x69a94e(0x221,0x248)][_0x69a94e(0x2b0,0x223)](_0x14e3cc),_0x4425fe[_0xd3ca56(0x3fa,0x457)](_0x488184,_0x4425fe[_0xd3ca56(0x3f3,0x4b5)],_0x69a94e(0x2e6,0x26c)+_0xd3ca56(0x457,0x4ff)+_0x69a94e(0x329,0x3e0)+'oved\x20'+'sessi'+_0x69a94e(0x2db,0x33c)+_0x69a94e(0x2e1,0x21e)+_0x14e3cc);if(_0x4143bb[_0x69a94e(0x38f,0x425)+_0xd3ca56(0x4c8,0x567)]&&/^[a-f0-9-]+$/i[_0xd3ca56(0x391,0x375)](_0x4143bb[_0xd3ca56(0x4e2,0x4a5)+_0x69a94e(0x375,0x2e9)])){const _0x344448=_0x44df69[_0x69a94e(0x34d,0x2e4)](_0x28f65e,_0x4143bb['sessi'+_0x69a94e(0x375,0x3bb)]+(_0xd3ca56(0x429,0x3dc)+'l')),_0x38cc41=_0x44df69[_0xd3ca56(0x490,0x3d4)+'ve'](_0x344448);if(!_0x38cc41[_0x69a94e(0x293,0x2bd)+_0xd3ca56(0x48b,0x4ea)](_0x44df69['resol'+'ve'](_0x28f65e))){_0x4425fe[_0x69a94e(0x2e2,0x36b)](_0x488184,_0xd3ca56(0x3ac,0x301),_0xd3ca56(0x439,0x4b7)+_0x69a94e(0x304,0x32b)+_0xd3ca56(0x4da,0x51c)+_0x69a94e(0x2dd,0x270)+'versa'+_0xd3ca56(0x3a6,0x43a)+'cked:'+'\x20'+_0x38cc41);continue;}try{if(_0x4425fe[_0x69a94e(0x25e,0x1f1)](_0x4425fe[_0xd3ca56(0x3ec,0x493)],_0x69a94e(0x2be,0x236)))return _0x4425fe[_0xd3ca56(0x410,0x38b)](_0x49b8fc,_0x12a9eb,_0x4425fe[_0x69a94e(0x280,0x1d3)],_0x209dc9[_0x69a94e(0x373,0x2fe)+_0x69a94e(0x260,0x2e6)+_0xd3ca56(0x42a,0x4ce)]);else await _0x3f1fa7[_0xd3ca56(0x47e,0x3d4)+'k'](_0x344448),_0x594fe3[_0x69a94e(0x28a,0x1ff)+_0x69a94e(0x370,0x3d5)+'sDele'+_0xd3ca56(0x374,0x34f)][_0xd3ca56(0x403,0x3ff)](_0x4143bb['sessi'+_0x69a94e(0x375,0x30b)]),_0x4425fe[_0xd3ca56(0x435,0x4f9)](_0x488184,_0x69a94e(0x344,0x287),'[Sate'+_0x69a94e(0x304,0x269)+']\x20Del'+_0xd3ca56(0x393,0x3f7)+_0xd3ca56(0x3dd,0x39d)+_0xd3ca56(0x4c3,0x49c)+':\x20'+_0x344448);}catch(_0x4b3693){_0x4425fe[_0x69a94e(0x369,0x358)](_0x4425fe['tqzyB'],_0x4425fe[_0xd3ca56(0x49e,0x479)])?_0x4425fe['rvdbg'](_0x4b3693[_0xd3ca56(0x4b3,0x4ee)],_0x4425fe[_0x69a94e(0x395,0x3d8)])&&_0x488184(_0x69a94e(0x352,0x400),_0x69a94e(0x2e6,0x2eb)+'llite'+_0xd3ca56(0x477,0x445)+'or\x20de'+_0xd3ca56(0x4bb,0x4b4)+_0x69a94e(0x283,0x29d)+'nscri'+_0xd3ca56(0x447,0x3e7)+_0x4b3693[_0x69a94e(0x243,0x1d2)+'ge']):_0x5b8acf[_0xd3ca56(0x485,0x53b)]===_0x4425fe[_0x69a94e(0x34e,0x39a)]&&_0x4377d5[_0x69a94e(0x389,0x40d)]&&(_0x1c9ae4+=_0x4425fe[_0xd3ca56(0x45d,0x45e)](_0x4611e9['text'],'\x0a'));}}}}}_0x1cce66&&await _0x3f1fa7[_0xd3ca56(0x420,0x4b8)+_0x69a94e(0x26e,0x28c)](_0x10b644,JSON['strin'+_0xd3ca56(0x475,0x510)](_0x1d8be4,null,0x2651+0x2*-0x442+-0x1dcb));const _0xa5c554=[];if(_0x4425fe[_0xd3ca56(0x41a,0x48c)](_0x594fe3[_0xd3ca56(0x4e2,0x52f)+_0x69a94e(0x3a0,0x3f3)+_0xd3ca56(0x47d,0x4e0)+_0xd3ca56(0x374,0x349)][_0x69a94e(0x2c9,0x337)+'h'],-0x395+-0xc7d+-0x1012*-0x1)){if(_0x4425fe[_0x69a94e(0x2ed,0x313)](_0x4425fe[_0x69a94e(0x2b3,0x225)],_0x4425fe[_0xd3ca56(0x37e,0x3b0)])){if(!_0x569ef5||IzAugd['rvdbg'](typeof _0x24b803,_0xd3ca56(0x4dd,0x453)+'g'))return'';return _0x5cf22b[_0x69a94e(0x21a,0x244)+'ce'](/[^a-z0-9-]/g,'')[_0xd3ca56(0x3b9,0x45f)+_0x69a94e(0x233,0x2e5)](-0xd05*0x3+-0x151c+0xd3*0x49,0xf58+0xb5*-0x13+-0x1a9);}else _0xa5c554[_0x69a94e(0x2b0,0x32a)](_0x594fe3[_0x69a94e(0x38f,0x3ab)+'onKey'+_0xd3ca56(0x47d,0x3c7)+_0x69a94e(0x221,0x291)][_0xd3ca56(0x41c,0x3c7)+'h']+(_0x69a94e(0x2b7,0x261)+_0x69a94e(0x256,0x233)+')\x20rem'+_0xd3ca56(0x39d,0x434)));}_0x4425fe[_0x69a94e(0x2c7,0x279)](_0x594fe3[_0x69a94e(0x28a,0x24c)+_0xd3ca56(0x4c3,0x51c)+_0xd3ca56(0x47d,0x513)+_0x69a94e(0x221,0x180)][_0x69a94e(0x2c9,0x299)+'h'],0x1627+0x19e6+0x1*-0x300d)&&(_0x4425fe[_0xd3ca56(0x38a,0x332)]!==_0x4425fe[_0xd3ca56(0x38a,0x326)]?_0x3a16aa[_0x69a94e(0x360,0x2ec)]!==_0x86d783[_0xd3ca56(0x3e4,0x3c8)]&&_0x86d783[_0x69a94e(0x2c8,0x345)](_0x5e9bc0,_0x86d783['aYWZl'],_0xd3ca56(0x439,0x4ef)+_0x69a94e(0x304,0x30c)+_0x69a94e(0x324,0x337)+_0x69a94e(0x2d1,0x36b)+_0x69a94e(0x368,0x2d1)+_0xd3ca56(0x3d6,0x445)+'nscri'+_0x69a94e(0x2f4,0x3b4)+_0x196254[_0x69a94e(0x243,0x203)+'ge']):_0xa5c554[_0xd3ca56(0x403,0x42f)](_0x594fe3[_0x69a94e(0x28a,0x1cf)+'cript'+'sDele'+_0xd3ca56(0x374,0x2e5)][_0xd3ca56(0x41c,0x449)+'h']+(_0xd3ca56(0x43c,0x41a)+_0x69a94e(0x2a9,0x223)+'t(s)\x20'+'delet'+'ed')));if(_0x4425fe[_0x69a94e(0x2ed,0x2a5)](_0xa5c554[_0xd3ca56(0x41c,0x477)+'h'],0xd3*-0x2e+0xca2+0x1948)){if(_0x4425fe['EiXaQ'](_0xd3ca56(0x4e6,0x4ff),_0x4425fe[_0xd3ca56(0x4d5,0x423)])){if(_0x86d783[_0x69a94e(0x379,0x36b)](_0xb77c24['code'],_0xd3ca56(0x419,0x448)+'T'))_0x2fe188(_0x86d783['BMptY'],_0xd3ca56(0x439,0x40a)+_0x69a94e(0x304,0x336)+']\x20Ses'+'sions'+'\x20stor'+_0xd3ca56(0x3a2,0x31f)+_0x69a94e(0x228,0x287)+_0x69a94e(0x376,0x3f8)+_0x169374);else throw _0x5491a3;}else _0xa5c554[_0x69a94e(0x2b0,0x232)](_0xd3ca56(0x398,0x41e)+_0x69a94e(0x290,0x2e1)+_0xd3ca56(0x37f,0x3b6)+_0x69a94e(0x29a,0x2e5)+'nd');}_0x594fe3[_0x69a94e(0x243,0x280)+'ge']=_0x69a94e(0x39a,0x32f)+_0x69a94e(0x397,0x37f)+_0x69a94e(0x2fc,0x26a)+_0xd3ca56(0x4c0,0x570)+_0xa5c554['join'](',\x20'),_0x594fe3[_0x69a94e(0x38f,0x347)+_0x69a94e(0x236,0x21c)+_0x69a94e(0x27b,0x1cc)]=_0x4425fe[_0xd3ca56(0x4a8,0x44d)](_0x594fe3[_0xd3ca56(0x4e2,0x529)+_0x69a94e(0x3a0,0x410)+_0xd3ca56(0x47d,0x534)+'ted'][_0xd3ca56(0x41c,0x4db)+'h'],-0x97e+0x1*0xe46+-0x8*0x99),_0x594fe3['trans'+_0x69a94e(0x370,0x3d2)+'Delet'+'ed']=_0x4425fe[_0xd3ca56(0x41a,0x492)](_0x594fe3[_0x69a94e(0x28a,0x328)+_0x69a94e(0x370,0x31f)+'sDele'+'ted']['lengt'+'h'],-0x1*-0x1e74+-0x22e2+0x46e*0x1),_0x63b6a6[_0x69a94e(0x2d9,0x31a)](_0x594fe3);}catch(_0x13e834){if(_0x4425fe[_0x69a94e(0x2ed,0x294)](_0x4425fe['goWrS'],_0x4425fe['goWrS']))_0x488184(_0x69a94e(0x352,0x32d),_0x69a94e(0x2e6,0x2e9)+'llite'+_0xd3ca56(0x4ca,0x45d)+_0xd3ca56(0x377,0x366)+_0xd3ca56(0x4ba,0x474)+'\x20'+_0x13e834[_0x69a94e(0x243,0x2a2)+'ge']),internalError(_0x63b6a6,_0x4425fe['fiRnN'],ErrorCodes[_0x69a94e(0x273,0x333)+_0x69a94e(0x37c,0x31d)+_0x69a94e(0x2fe,0x26e)]);else return _0x4425fe['pwoye'](_0x5a52cd,_0x3ba1c0,_0x4425fe[_0xd3ca56(0x379,0x337)],_0x490482[_0xd3ca56(0x464,0x48e)+_0xd3ca56(0x431,0x4af)+_0x69a94e(0x32d,0x31e)+'R']);}}}),_0x3c58b1[_0x18d509(0x61f,0x573)](_0x4425fe['NdVVL'],async(_0x427d71,_0x202de9)=>{const _0x422a35={'LqMUn':function(_0x302a84,_0x49ad8b){function _0x25150f(_0x5f023e,_0x48b716){return _0x679e(_0x48b716-0x377,_0x5f023e);}return _0x4425fe[_0x25150f(0x4d0,0x4ab)](_0x302a84,_0x49ad8b);},'rFCIJ':_0x4425fe[_0x3b8342(0x342,0x319)],'eDzQA':function(_0x34180f,_0x28e3bc){function _0x3b3bcc(_0x3f0c23,_0x17769a){return _0x3b8342(_0x3f0c23- -0x2e8,_0x17769a);}return _0x4425fe[_0x3b3bcc(-0x86,-0x118)](_0x34180f,_0x28e3bc);},'dvZAE':_0x4425fe[_0x3b8342(0x1e1,0x180)],'CbuKJ':_0x3b8342(0x282,0x232)+_0x3b8342(0x2e8,0x335),'JXLdE':function(_0x2dd668,_0x12afad,_0x3164ee,_0x530b3c){return _0x4425fe['xbNhx'](_0x2dd668,_0x12afad,_0x3164ee,_0x530b3c);},'VIFZO':_0x4425fe['KyJGr'],'VDbDq':function(_0x37d059,_0x3a1a62,_0x17c9b2){function _0x238073(_0x17465c,_0x5381a5){return _0x3b8342(_0x17465c- -0x518,_0x5381a5);}return _0x4425fe[_0x238073(-0x2c1,-0x372)](_0x37d059,_0x3a1a62,_0x17c9b2);},'otDQi':_0x3b8342(0x206,0x248)};function _0x326c69(_0x4fb7c3,_0x13a793){return _0x5e6e1f(_0x4fb7c3,_0x13a793- -0x584);}function _0x3b8342(_0x16c762,_0x313820){return _0x5e6e1f(_0x313820,_0x16c762- -0x205);}if(_0x4425fe[_0x326c69(0x22,-0x8c)]!==_0x4425fe[_0x3b8342(0x2eb,0x30b)]){const _0x2c1da8=_0x4425fe['WsItX'](sanitizeSatelliteId,_0x427d71[_0x326c69(-0xda,-0x180)]['satel'+_0x3b8342(0x25c,0x2e9)+'d']),_0x4a174e=_0x427d71[_0x3b8342(0x1ff,0x1b8)][_0x3b8342(0x22e,0x232)+'Id']?_0x4425fe[_0x326c69(-0x23,-0xd3)](String,_0x427d71['query'][_0x326c69(-0x15e,-0x151)+'Id'])[_0x3b8342(0x1c7,0x238)+'ce'](/[^a-z0-9-]/g,'')[_0x326c69(-0x1f4,-0x16c)+'ring'](0xca9*-0x1+-0x1*0x102b+0x1cd4,-0xc63+0x1*0x1c3d+-0xf9a)||_0x3b8342(0x208,0x2a5):_0x4425fe['TpHde'],_0x4c8beb=Math[_0x3b8342(0x2d2,0x2ac)](Math['max'](parseInt(_0x427d71['query'][_0x3b8342(0x252,0x222)],0x1*-0x967+-0x2*0x33d+0xfeb)||-0x1f0*-0x7+-0x15e4+0x886,-0x65*-0x13+-0x5f9+-0x185),-0x1174+0x16b7+0x47b*-0x1),_0x725432=_0x4425fe['SZnSg'](_0x2c1da8,_0x4425fe[_0x326c69(-0xff,-0x10f)])?_0x326c69(-0xf4,-0x151)+':'+_0x4a174e+_0x3b8342(0x2e6,0x276):_0x326c69(-0x122,-0x151)+':'+_0x4a174e+(_0x3b8342(0x277,0x330)+_0x326c69(-0x14b,-0xb4)+_0x326c69(-0xb0,-0xa2)+_0x3b8342(0x22a,0x1de))+_0x2c1da8;_0x4425fe['dSTLL'](_0x488184,_0x4425fe[_0x3b8342(0x2c0,0x25b)],'[Sate'+_0x326c69(-0xf0,-0xce)+_0x326c69(-0xdc,-0x187)+_0x326c69(-0xd8,-0x66)+_0x3b8342(0x22b,0x2d6)+_0x3b8342(0x27f,0x1df)+_0x326c69(-0x7d,-0x31)+_0x3b8342(0x2bc,0x291)+':\x20'+_0x725432);try{if(_0x4425fe[_0x326c69(-0x4f,-0xb8)](_0x4425fe[_0x326c69(-0x36,-0x4d)],_0x4425fe[_0x3b8342(0x26f,0x2ff)]))_0x195ffe[_0x3b8342(0x25d,0x2a4)]('no\x20Op'+_0x3b8342(0x23d,0x27c)+_0x3b8342(0x1d9,0x1f2)+_0x3b8342(0x247,0x2dd)+'nd');else{const _0x51b09a=await _0x4425fe['WryIV'](getSessionsStorePath,_0x4a174e),_0x1e41e2=await _0x4425fe[_0x3b8342(0x312,0x2df)](getSessionsDir,_0x4a174e);let _0x455242={};try{const _0x286cd4=await _0x3f1fa7['readF'+_0x3b8342(0x222,0x268)](_0x51b09a,_0x3b8342(0x251,0x23c));_0x455242=JSON[_0x3b8342(0x1e5,0x29b)](_0x286cd4);}catch(_0x4f1903){if(_0x4425fe[_0x326c69(-0x112,-0x174)](_0x326c69(-0x1df,-0x147),_0x3b8342(0x308,0x33f))){if(_0x4f1903[_0x326c69(-0xec,-0x72)]===_0x4425fe[_0x3b8342(0x342,0x3ca)]){if(_0x4425fe[_0x3b8342(0x224,0x21f)]('wWLvp',_0x3b8342(0x24a,0x25c))){const _0x829286={};return _0x829286['ok']=!![],_0x829286[_0x3b8342(0x33c,0x30e)+'onKey']=_0x725432,_0x829286[_0x326c69(-0x16b,-0x18f)+_0x3b8342(0x1fd,0x29b)]=[],_0x202de9[_0x3b8342(0x286,0x229)](_0x829286);}else{const _0x1d46fb={};return _0x1d46fb['ok']=!![],_0x1d46fb[_0x326c69(-0x57,-0x43)+_0x3b8342(0x34d,0x3ed)]=_0x1cca8a,_0x1d46fb[_0x326c69(-0x207,-0x18f)+'ges']=[],_0x4a67a9[_0x326c69(-0x16f,-0xf9)](_0x1d46fb);}}throw _0x4f1903;}else _0x458d03=_0xd9d32d[_0x3b8342(0x33c,0x397)+'onFil'+'e'];}const _0x262349=_0x455242[_0x725432];if(!_0x262349||!_0x262349[_0x3b8342(0x33c,0x371)+_0x326c69(0x3b,-0x5d)]&&!_0x262349['sessi'+_0x3b8342(0x258,0x29f)+'e']){if(_0x3b8342(0x2b2,0x327)===_0x3b8342(0x245,0x1c7)){if(_0x422a35[_0x326c69(-0x111,-0xbb)](_0x1fbaac[_0x326c69(-0x5d,-0x72)],_0x422a35['rFCIJ'])){const _0x5a6604={};return _0x5a6604['ok']=!![],_0x5a6604[_0x326c69(-0x98,-0x43)+'onKey']=_0x6351d,_0x5a6604[_0x326c69(-0x17f,-0x18f)+_0x326c69(-0x202,-0x182)]=[],_0x4f20ee[_0x326c69(-0x53,-0xf9)](_0x5a6604);}throw _0x5eb9a5;}else{const _0x411518={};return _0x411518['ok']=!![],_0x411518['sessi'+_0x3b8342(0x34d,0x2b3)]=_0x725432,_0x411518[_0x3b8342(0x1f0,0x21e)+'ges']=[],_0x202de9[_0x3b8342(0x286,0x33d)](_0x411518);}}let _0x16861c;if(_0x262349[_0x326c69(0x53,-0x43)+_0x3b8342(0x258,0x224)+'e'])_0x4425fe[_0x326c69(-0x168,-0xea)](_0x4425fe[_0x326c69(-0xb0,-0xeb)],'dKysf')?_0x16861c=_0x262349['sessi'+'onFil'+'e']:_0x4425fe['zFOkQ'](_0x10fc92,_0x4425fe['mgYti'],'[Sate'+_0x326c69(-0x128,-0xce)+_0x326c69(-0x79,-0xae)+_0x3b8342(0x27e,0x251)+'letin'+'g\x20tra'+'nscri'+_0x326c69(-0x140,-0xde)+_0x415b9f[_0x326c69(-0x197,-0x18f)+'ge']);else{if(!/^[a-f0-9-]+$/i[_0x326c69(-0x176,-0x194)](_0x262349[_0x3b8342(0x33c,0x3f5)+_0x326c69(-0x30,-0x5d)])){if(_0x326c69(-0xf2,-0x198)===_0x326c69(0x54,-0x3c))_0x4d0b58['push']({'text':_0x38cadc,'type':_0x422a35[_0x326c69(-0x158,-0x146)](_0x6d8f55['role'],_0x422a35['dvZAE'])?_0x422a35[_0x3b8342(0x278,0x251)]:_0x422a35[_0x326c69(-0xde,-0x169)],'timestamp':_0x15a923[_0x326c69(-0x16,-0xa3)+_0x3b8342(0x287,0x1de)]?new _0x8befa5(_0x50b8d1[_0x326c69(-0x12c,-0xa3)+_0x3b8342(0x287,0x240)])[_0x326c69(-0x12,-0xb9)+'me']():_0x54a30b[_0x326c69(0x0,-0xa3)+_0x326c69(-0x126,-0xf8)]?new _0x129567(_0x19ca4a['times'+'tamp'])[_0x3b8342(0x2c6,0x358)+'me']():_0x4ab747[_0x326c69(-0x1a7,-0x133)](),'fromGateway':!![]});else{_0x4425fe['nqPoY'](_0x488184,_0x4425fe['bfxmc'],_0x3b8342(0x293,0x1ed)+_0x3b8342(0x2b1,0x2ac)+_0x3b8342(0x2ad,0x25d)+_0x326c69(-0x2e,-0xdf)+'sessi'+_0x326c69(-0x16e,-0x16f)+'forma'+_0x326c69(-0x13e,-0xc9)+_0x262349['sessi'+_0x3b8342(0x322,0x2c1)]);const _0x467140={};return _0x467140['ok']=!![],_0x467140['sessi'+'onKey']=_0x725432,_0x467140['messa'+'ges']=[],_0x202de9['json'](_0x467140);}}_0x16861c=_0x44df69[_0x3b8342(0x2fa,0x2c8)](_0x1e41e2,_0x262349[_0x326c69(-0xeb,-0x43)+'onId']+(_0x3b8342(0x283,0x255)+'l'));}const _0x556ce2=_0x44df69[_0x3b8342(0x2ea,0x25a)+'ve'](_0x16861c);if(!_0x556ce2[_0x326c69(-0x1e3,-0x13f)+_0x3b8342(0x2e5,0x371)](_0x44df69[_0x326c69(-0x144,-0x95)+'ve'](_0x1e41e2))){if(_0x4425fe[_0x326c69(-0x99,-0x13b)]('qPXVw',_0x4425fe['DyUjy']))return ylWDEA['JXLdE'](_0x5646df,_0x3344a1,ylWDEA[_0x3b8342(0x27d,0x2d4)],_0x21e277['VALID'+_0x3b8342(0x28b,0x2e2)+_0x3b8342(0x2da,0x25a)+'R']);else{_0x4425fe[_0x326c69(-0xf3,-0xe1)](_0x488184,_0x4425fe[_0x3b8342(0x1e6,0x13d)],_0x326c69(-0x17c,-0xec)+_0x326c69(-0x120,-0xce)+']\x20Pat'+_0x326c69(-0x143,-0xf5)+_0x326c69(-0x8b,-0x61)+_0x326c69(-0x19f,-0x17f)+_0x326c69(-0xc4,-0xc6)+_0x3b8342(0x2e1,0x35f)+'story'+':\x20'+_0x556ce2);const _0x4e1350={};return _0x4e1350['ok']=!![],_0x4e1350['sessi'+_0x3b8342(0x34d,0x2c8)]=_0x725432,_0x4e1350['messa'+_0x326c69(-0x179,-0x182)]=[],_0x202de9[_0x3b8342(0x286,0x264)](_0x4e1350);}}let _0x179370='';try{_0x179370=await _0x3f1fa7[_0x3b8342(0x225,0x1ce)+'ile'](_0x16861c,_0x326c69(-0x19c,-0x12e));}catch(_0x296307){if(_0x4425fe[_0x326c69(-0x46,-0x7c)]===_0x3b8342(0x2aa,0x2cc))_0x1bdd32[_0x3b8342(0x25d,0x24c)](_0xd8b6da[_0x326c69(0xc,-0x43)+_0x3b8342(0x34d,0x300)+_0x3b8342(0x2d7,0x25b)+_0x326c69(-0x214,-0x1b1)][_0x3b8342(0x276,0x20b)+'h']+('\x20sess'+_0x3b8342(0x203,0x17e)+_0x326c69(-0x1ca,-0x16d)+_0x326c69(-0x20c,-0x188)));else{if(_0x296307[_0x3b8342(0x30d,0x2e5)]===_0x4425fe[_0x3b8342(0x342,0x2a2)]){if(_0x4425fe['rvdbg']('Qlzwm',_0x4425fe['IIlwJ'])){const _0x376787={};return _0x376787['ok']=!![],_0x376787[_0x3b8342(0x33c,0x36e)+'onKey']=_0x725432,_0x376787[_0x326c69(-0x15d,-0x18f)+'ges']=[],_0x202de9['json'](_0x376787);}else _0x4425fe[_0x3b8342(0x32d,0x299)](_0x24c7f8,_0x4425fe[_0x3b8342(0x1e6,0x1a0)],_0x326c69(-0x43,-0xec)+_0x3b8342(0x2b1,0x22a)+_0x326c69(-0x86,-0xd9)+_0x3b8342(0x2ed,0x381)+_0x326c69(-0x78,-0x42)+'e\x20not'+_0x326c69(-0x16a,-0x1aa)+_0x326c69(-0x7b,-0x5c)+_0x1b9631);}throw _0x296307;}}const _0x19e1ed=_0x4425fe[_0x326c69(-0xa2,-0xf0)](_0x10ec70,_0x179370,_0x4c8beb),_0x440701={};_0x440701['ok']=!![],_0x440701[_0x3b8342(0x33c,0x29f)+'onKey']=_0x725432,_0x440701[_0x3b8342(0x1f0,0x17a)+_0x326c69(-0x241,-0x182)]=_0x19e1ed,_0x440701[_0x326c69(-0x3e,-0x43)+_0x326c69(-0xfe,-0x5d)]=_0x262349[_0x326c69(-0xa9,-0x43)+_0x326c69(-0x92,-0x5d)],_0x202de9[_0x3b8342(0x286,0x310)](_0x440701);}}catch(_0x4438e2){if(_0x4425fe[_0x3b8342(0x21c,0x2d1)](_0x4425fe[_0x3b8342(0x1f3,0x275)],_0x4425fe[_0x326c69(-0x201,-0x18c)]))_0x4425fe[_0x3b8342(0x23f,0x18f)](_0x488184,_0x4425fe[_0x3b8342(0x2d0,0x34c)],_0x3b8342(0x293,0x1f2)+_0x3b8342(0x2b1,0x250)+_0x3b8342(0x2d3,0x226)+_0x326c69(-0xbd,-0x15c)+'fetch'+_0x3b8342(0x317,0x26d)+'r:\x20'+_0x4438e2[_0x326c69(-0x15a,-0x18f)+'ge']),_0x4425fe[_0x3b8342(0x313,0x36f)](internalError,_0x202de9,_0x3b8342(0x272,0x241)+_0x326c69(-0x1d0,-0x134)+_0x3b8342(0x261,0x19f)+_0x326c69(-0x101,-0x154)+_0x326c69(-0xd0,-0xe6),ErrorCodes[_0x326c69(-0x161,-0x15f)+'NAL_E'+_0x326c69(-0x18b,-0xd4)]);else return _0x348fa1[_0x3b8342(0x1da,0x1e4)+_0x3b8342(0x221,0x1c4)]()['searc'+'h'](IzAugd[_0x3b8342(0x2ca,0x2ff)])[_0x3b8342(0x1da,0x205)+'ing']()[_0x326c69(-0x116,-0x193)+_0x3b8342(0x2a3,0x367)+'r'](_0x386d58)['searc'+'h'](IzAugd['cRbEZ']);}}else{_0x422a35[_0x326c69(-0x11c,-0xe7)](_0x1316d4,_0x422a35[_0x3b8342(0x2a7,0x266)],'[Sate'+_0x326c69(-0x4b,-0xce)+_0x3b8342(0x334,0x324)+_0x326c69(-0xb6,-0xf5)+_0x3b8342(0x31e,0x3b0)+_0x326c69(-0x20b,-0x17f)+_0x326c69(-0x113,-0xc6)+_0x326c69(-0x117,-0x9e)+'story'+':\x20'+_0x5ec42a);const _0x3cb256={};return _0x3cb256['ok']=!![],_0x3cb256['sessi'+'onKey']=_0x3ab4b8,_0x3cb256[_0x3b8342(0x1f0,0x152)+'ges']=[],_0x3e2a67['json'](_0x3cb256);}});function _0x10ec70(_0x593184,_0x2472ab){const _0x22eed6={};function _0x12e485(_0x16dbbc,_0x1a46fb){return _0x18d509(_0x1a46fb,_0x16dbbc- -0x138);}function _0x11b7d2(_0x452c35,_0x5e8f1e){return _0x18d509(_0x452c35,_0x5e8f1e- -0x211);}_0x22eed6['rEtfO']=function(_0x312d3c,_0x67a9c6){return _0x312d3c===_0x67a9c6;};const _0x689ef3=_0x22eed6;if(_0x4425fe[_0x12e485(0x353,0x3cf)](_0x4425fe['GlyDL'],_0x4425fe['GlyDL'])){_0x4425fe[_0x12e485(0x38f,0x323)](_0x19f73e,_0x4425fe['bfxmc'],'[Sate'+'llite'+_0x12e485(0x3ad,0x3bc)+_0x11b7d2(0x349,0x2c7)+'sessi'+_0x12e485(0x310,0x2b4)+_0x12e485(0x3fe,0x496)+_0x11b7d2(0x35c,0x2dd)+_0x1a7763[_0x12e485(0x43c,0x3ba)+_0x12e485(0x422,0x3bf)]);const _0x1ce44f={};return _0x1ce44f['ok']=!![],_0x1ce44f[_0x12e485(0x43c,0x42e)+_0x12e485(0x44d,0x4a1)]=_0x14cfd3,_0x1ce44f[_0x11b7d2(0x1cd,0x217)+'ges']=[],_0x4a557f[_0x12e485(0x386,0x410)](_0x1ce44f);}else{const _0x1e2a66=_0x593184[_0x12e485(0x409,0x45e)]()['split']('\x0a')[_0x11b7d2(0x2ce,0x25c)+'r'](_0x15cb61=>_0x15cb61[_0x12e485(0x409,0x4be)]()),_0x36a836=[];for(const _0x39034a of _0x1e2a66){try{if(_0x4425fe[_0x11b7d2(0x2ef,0x285)](_0x4425fe[_0x12e485(0x3f5,0x3f6)],_0x4425fe[_0x11b7d2(0x323,0x31c)]))throw _0x3fe8de;else{const _0x16681a=JSON[_0x11b7d2(0x208,0x20c)](_0x39034a),_0x11a11f=_0x16681a[_0x12e485(0x2f0,0x319)+'ge']||_0x16681a;if(_0x4425fe[_0x12e485(0x38d,0x391)](_0x11a11f[_0x12e485(0x32f,0x3ce)],_0x4425fe[_0x11b7d2(0x2b0,0x2a8)])||_0x11a11f[_0x12e485(0x32f,0x37c)]===_0x4425fe[_0x11b7d2(0x3e1,0x324)])continue;let _0x28bd29='';if(_0x4425fe['EiXaQ'](typeof _0x11a11f[_0x12e485(0x32c,0x2f5)+'nt'],_0x4425fe[_0x11b7d2(0x2ca,0x22c)])){if(_0x4425fe[_0x12e485(0x301,0x39c)](_0x11b7d2(0x3a7,0x333),_0x4425fe['YOQWG'])){if(OgVgoY[_0x11b7d2(0x243,0x2e8)](_0x53e11f[_0x12e485(0x40d,0x4cc)],'ENOEN'+'T')){const _0x1554ed={};return _0x1554ed['ok']=!![],_0x1554ed['sessi'+'onKey']=_0x2ab6b3,_0x1554ed['messa'+_0x11b7d2(0x1ca,0x224)]=[],_0xfcc165[_0x11b7d2(0x2ce,0x2ad)](_0x1554ed);}throw _0x1b0d15;}else _0x28bd29=_0x11a11f[_0x12e485(0x32c,0x3cb)+'nt'];}else{if(Array[_0x12e485(0x3e2,0x3ac)+'ay'](_0x11a11f[_0x12e485(0x32c,0x342)+'nt'])){for(const _0x3efb8d of _0x11a11f[_0x11b7d2(0x257,0x253)+'nt']){_0x4425fe['EiXaQ'](_0x3efb8d['type'],_0x4425fe['IosUq'])&&_0x3efb8d[_0x11b7d2(0x2af,0x35d)]&&(_0x4425fe['JRpEa'](_0x4425fe[_0x12e485(0x365,0x378)],_0x4425fe['qzLuP'])?(_0x13f97b(_0x4425fe[_0x11b7d2(0x31e,0x2f7)],_0x11b7d2(0x2c9,0x2ba)+'llite'+_0x11b7d2(0x2e7,0x34b)+'ire\x20e'+_0x12e485(0x414,0x451)+'\x20'+_0x5207b5['messa'+'ge']),_0x4425fe[_0x11b7d2(0x320,0x319)](_0x54ac0a,_0x150938,_0x4425fe[_0x12e485(0x3f6,0x3b9)],_0x3673cf['INTER'+'NAL_E'+'RROR'])):_0x28bd29+=_0x4425fe[_0x11b7d2(0x2c8,0x2de)](_0x3efb8d['text'],'\x0a'));}_0x28bd29=_0x28bd29['trim']();}}if(!_0x28bd29)continue;const _0x30ae81=_0x4425fe['mKsGR'](_0x28bd29,_0x4425fe['NkuVq'])||_0x28bd29[_0x12e485(0x385,0x3fd)+_0x11b7d2(0x368,0x351)](_0x4425fe[_0x11b7d2(0x332,0x372)])||_0x28bd29[_0x12e485(0x385,0x429)+_0x12e485(0x42a,0x460)](_0x11b7d2(0x20a,0x233)+'HEART'+_0x11b7d2(0x2fe,0x2b8)+'md')||_0x28bd29[_0x12e485(0x385,0x336)+_0x12e485(0x42a,0x3b5)](_0x4425fe[_0x11b7d2(0x389,0x331)]);if(_0x30ae81)continue;if(_0x4425fe[_0x11b7d2(0x202,0x225)](_0x11a11f[_0x12e485(0x32f,0x321)],_0x12e485(0x44c,0x3a7))){const _0x1dad2c=_0x28bd29['inclu'+_0x12e485(0x42a,0x3f4)](_0x4425fe['WVApA'])||_0x28bd29[_0x12e485(0x385,0x3e7)+_0x12e485(0x42a,0x3d4)](_0x4425fe['VNQpw'])||_0x28bd29[_0x11b7d2(0x2e8,0x330)]()==='NO_RE'+_0x11b7d2(0x38e,0x2f3);if(_0x1dad2c)continue;}if(_0x4425fe[_0x11b7d2(0x292,0x2c1)](_0x11a11f[_0x12e485(0x32f,0x307)],_0x4425fe[_0x12e485(0x446,0x460)])&&_0x4425fe[_0x12e485(0x2fe,0x2e4)](_0x28bd29[_0x11b7d2(0x3f3,0x330)](),_0x4425fe[_0x12e485(0x30a,0x397)]))continue;if(_0x11a11f[_0x12e485(0x32f,0x270)]){if(_0x4425fe['dAfkR'](_0x12e485(0x42e,0x424),_0x4425fe[_0x11b7d2(0x3c7,0x30b)])){const _0x176073={};return _0x176073['ok']=!![],_0x176073[_0x12e485(0x43c,0x381)+_0x11b7d2(0x1e4,0x221)]=[],_0x5a8b1f[_0x11b7d2(0x344,0x2ad)](_0x176073);}else _0x36a836[_0x11b7d2(0x278,0x284)]({'text':_0x28bd29,'type':_0x4425fe[_0x11b7d2(0x235,0x289)](_0x11a11f[_0x12e485(0x32f,0x28e)],_0x4425fe[_0x11b7d2(0x24d,0x208)])?_0x4425fe[_0x12e485(0x2e1,0x3a0)]:_0x4425fe[_0x12e485(0x446,0x4d3)],'timestamp':_0x11a11f[_0x12e485(0x3dc,0x325)+_0x12e485(0x387,0x30f)]?new Date(_0x11a11f[_0x11b7d2(0x2b8,0x303)+_0x12e485(0x387,0x348)])[_0x11b7d2(0x275,0x2ed)+'me']():_0x16681a['times'+_0x12e485(0x387,0x307)]?new Date(_0x16681a[_0x11b7d2(0x2ce,0x303)+_0x11b7d2(0x32b,0x2ae)])[_0x12e485(0x3c6,0x307)+'me']():Date[_0x12e485(0x34c,0x339)](),'fromGateway':!![]});}}}catch{}}return _0x36a836['slice'](-_0x2472ab);}}_0x3c58b1[_0x18d509(0x5ec,0x573)](_0x4425fe[_0x5e6e1f(0x495,0x468)],async(_0x3e3e90,_0x3ddd01)=>{function _0x45e7a9(_0x25f39f,_0x4944b1){return _0x18d509(_0x4944b1,_0x25f39f- -0x13d);}function _0x1b0e6e(_0x57e936,_0x1939e2){return _0x18d509(_0x57e936,_0x1939e2- -0x388);}try{const _0x25ee6f=await _0x4425fe[_0x45e7a9(0x3a3,0x41b)](getOpenClawStateDir),_0x16f4ae=_0x44df69[_0x45e7a9(0x3f5,0x384)](_0x25ee6f,_0x45e7a9(0x329,0x2b9)+'s');let _0xa7427=[];try{const _0x50ad37={};_0x50ad37[_0x45e7a9(0x354,0x299)+_0x1b0e6e(0x156,0xa4)+_0x1b0e6e(0x22d,0x1be)]=!![],_0xa7427=await _0x3f1fa7[_0x1b0e6e(-0xd,0x78)+'ir'](_0x16f4ae,_0x50ad37);}catch(_0x37e693){if(_0x4425fe[_0x45e7a9(0x2fc,0x282)](_0x45e7a9(0x32d,0x3c8),'hLGRy')){const _0x13d3e6={};return _0x13d3e6['ok']=!![],_0x13d3e6[_0x45e7a9(0x437,0x4e0)+_0x1b0e6e(0x189,0x1fd)]=_0x31c538,_0x13d3e6['messa'+_0x1b0e6e(0x84,0xad)]=[],_0x6ca476['json'](_0x13d3e6);}else{if(_0x4425fe['EtAth'](_0x37e693['code'],_0x45e7a9(0x36e,0x38e)+'T')){const _0x419eef={};return _0x419eef['ok']=!![],_0x419eef[_0x1b0e6e(0x138,0x1ec)+_0x1b0e6e(-0x2,0xaa)]=[],_0x3ddd01['json'](_0x419eef);}throw _0x37e693;}}const _0x29f06a=[];for(const _0xe63601 of _0xa7427){if(!_0xe63601[_0x45e7a9(0x3b6,0x397)+_0x45e7a9(0x430,0x408)+'y']())continue;const _0x583851=_0xe63601[_0x45e7a9(0x3ef,0x464)];if(_0x583851[_0x1b0e6e(0xe1,0xf0)+_0x1b0e6e(0x209,0x195)](_0x45e7a9(0x3c9,0x318)))continue;const _0x4567cf=_0x44df69[_0x45e7a9(0x3f5,0x434)](_0x16f4ae,_0x583851,_0x4425fe[_0x1b0e6e(0x10d,0x1b6)],_0x4425fe[_0x1b0e6e(0x227,0x1dc)]);let _0xe15bbb;try{const _0xf7760f=await _0x3f1fa7[_0x45e7a9(0x320,0x2ca)+_0x1b0e6e(0x11d,0xd2)](_0x4567cf,_0x4425fe[_0x1b0e6e(0x146,0x13c)]);_0xe15bbb=JSON[_0x1b0e6e(0x9f,0x95)](_0xf7760f);}catch{continue;}for(const [_0x42e01c,_0x54c706]of Object[_0x1b0e6e(0x225,0x1c0)+'es'](_0xe15bbb)){const _0x313fc8=_0x42e01c['match'](/:uplink:satellite:(.+)$/);if(_0x313fc8){const _0x4ca26b=_0x313fc8[0x7*-0x161+-0x20fb+0x2aa3],_0x4d918b={};_0x4d918b[_0x1b0e6e(0x2ae,0x1ec)+'onKey']=_0x42e01c,_0x4d918b[_0x1b0e6e(0xe7,0x185)+_0x45e7a9(0x357,0x3d6)+'d']=_0x4ca26b,_0x4d918b[_0x45e7a9(0x329,0x381)+'Id']=_0x583851,_0x4d918b[_0x45e7a9(0x2fd,0x36b)+_0x45e7a9(0x444,0x3e3)]=_0x54c706[_0x1b0e6e(0x57,0xb2)+_0x1b0e6e(0x23a,0x1f9)]||0x1747+-0x6*0x25e+-0x913,_0x4d918b[_0x1b0e6e(0x12b,0x189)]=_0x54c706[_0x45e7a9(0x3d4,0x463)]||_0x4425fe[_0x1b0e6e(0x142,0xc5)],_0x4d918b[_0x1b0e6e(0x37,0xab)+_0x45e7a9(0x3de,0x3bd)+'s']=_0x54c706[_0x1b0e6e(0x121,0xab)+_0x1b0e6e(0x1ec,0x193)+'s']||0x23e4+0x9d*0x5+-0x26f5,_0x29f06a[_0x45e7a9(0x358,0x38a)](_0x4d918b);continue;}const _0x18d39=_0x54c706['label']||'';if(_0x18d39[_0x1b0e6e(0x150,0xf0)+'sWith'](_0x4425fe['oQRIb'])){const _0x49a118=_0x18d39[_0x45e7a9(0x397,0x43d)](-0x2*0x1377+-0xa6c+0x1*0x3161)[_0x1b0e6e(0x17f,0x1b9)]();if(!_0x49a118)continue;const _0x289fc7=_0x45e7a9(0x344,0x33f)+_0x1b0e6e(0x15c,0x16d)+Buffer[_0x1b0e6e(0xe5,0x139)](_0x42e01c)[_0x45e7a9(0x2d5,0x27b)+_0x45e7a9(0x31c,0x348)](_0x4425fe['WznBT'])[_0x1b0e6e(0x13d,0x14c)](-0x1ae4+0x14a4+-0xa*-0xa0,-0x112*-0x3+0xd01*0x1+-0x5*0x33b),_0x4ef623={};_0x4ef623['sessi'+_0x1b0e6e(0x1cf,0x1fd)]=_0x42e01c,_0x4ef623[_0x1b0e6e(0x16b,0x185)+'liteI'+'d']=_0x289fc7,_0x4ef623[_0x45e7a9(0x329,0x3e0)+'Id']=_0x583851,_0x4ef623[_0x45e7a9(0x3ef,0x34f)]=_0x49a118,_0x4ef623[_0x1b0e6e(0x15b,0xf9)+'ed']=!![],_0x4ef623[_0x1b0e6e(0x25,0xb2)+_0x45e7a9(0x444,0x480)]=_0x54c706['updat'+_0x45e7a9(0x444,0x4e4)]||-0x45*0x8+-0x883+-0xaab*-0x1,_0x4ef623[_0x1b0e6e(0x1c9,0x189)]=_0x54c706[_0x45e7a9(0x3d4,0x414)]||_0x4425fe[_0x1b0e6e(0x15c,0xc5)],_0x4ef623['total'+'Token'+'s']=_0x54c706[_0x45e7a9(0x2f6,0x3aa)+_0x1b0e6e(0xed,0x193)+'s']||-0x78f+-0x184c+0x1fdb,_0x29f06a['push'](_0x4ef623);}}}_0x29f06a[_0x45e7a9(0x43c,0x3f4)]((_0x11837c,_0x30edff)=>_0x30edff[_0x1b0e6e(0x2,0xb2)+_0x1b0e6e(0x168,0x1f9)]-_0x11837c[_0x45e7a9(0x2fd,0x2a2)+_0x45e7a9(0x444,0x4fb)]);const _0x1977d8={};_0x1977d8['ok']=!![],_0x1977d8[_0x45e7a9(0x437,0x4bc)+'ons']=_0x29f06a,_0x3ddd01[_0x45e7a9(0x381,0x42a)](_0x1977d8);}catch(_0x2464ac){_0x4425fe[_0x1b0e6e(0x3f,0xbe)](_0x488184,_0x4425fe[_0x1b0e6e(0xdf,0x180)],_0x1b0e6e(0x144,0x143)+_0x1b0e6e(0x1fd,0x161)+_0x1b0e6e(0x1d0,0x190)+_0x45e7a9(0x368,0x32a)+'sions'+'\x20erro'+_0x1b0e6e(0x242,0x1b1)+_0x2464ac[_0x45e7a9(0x2eb,0x2a1)+'ge']),_0x4425fe[_0x1b0e6e(0x1b5,0x1c8)](internalError,_0x3ddd01,_0x4425fe['bkrTP'],ErrorCodes['INTER'+'NAL_E'+'RROR']);}});}
1
+ (function(_0x1b58ec,_0x5f1077){function _0x13d6ab(_0x3b5a02,_0x558a28){return _0x42c5(_0x3b5a02-0x184,_0x558a28);}function _0x36b546(_0x3b7d93,_0x4121ac){return _0x42c5(_0x3b7d93-0x18b,_0x4121ac);}const _0x10a986=_0x1b58ec();while(!![]){try{const _0x488345=-parseInt(_0x36b546(0x475,0x47f))/(-0x89*0x11+-0x2*-0x8d8+-0x896*0x1)*(parseInt(_0x13d6ab(0x384,0x36f))/(-0x10c2+0x9a3*-0x2+0x240a))+-parseInt(_0x13d6ab(0x367,0x315))/(-0x805*-0x4+0x1*0x1bc9+-0x3bda)+parseInt(_0x13d6ab(0x35f,0x415))/(0x1f2*-0xb+0x378+0x11f2)*(parseInt(_0x36b546(0x3ea,0x328))/(-0x3d*-0x93+-0x155b+-0xda7))+parseInt(_0x36b546(0x44c,0x3f8))/(0x1097+-0x730+0x961*-0x1)+-parseInt(_0x13d6ab(0x425,0x467))/(-0x15f8+0x23dc+0x1*-0xddd)*(parseInt(_0x36b546(0x46a,0x4a8))/(-0x1710+-0x1ce0+0x33f8))+parseInt(_0x36b546(0x437,0x41a))/(-0x3*0xa97+-0x80f+0x27dd)+-parseInt(_0x36b546(0x447,0x3bd))/(0x35*0x8b+-0x18b9+-0x404)*(-parseInt(_0x13d6ab(0x32b,0x38b))/(0x16b4*0x1+0x5b7+-0x1c60));if(_0x488345===_0x5f1077)break;else _0x10a986['push'](_0x10a986['shift']());}catch(_0x50a250){_0x10a986['push'](_0x10a986['shift']());}}}(_0x38da,0x7f5*0x17b+0x13734+0x9*-0x2ccd));const _0x169a18=(function(){const _0x444d05={};function _0x52d721(_0x4eceb7,_0x51d395){return _0x42c5(_0x51d395- -0x201,_0x4eceb7);}_0x444d05[_0x28bca4(-0xd3,-0x14d)]=function(_0x5e396e,_0x45ef8b){return _0x5e396e!==_0x45ef8b;},_0x444d05[_0x52d721(0x21,-0x4)]=_0x28bca4(-0xa9,-0xf8)+'g';function _0x28bca4(_0x3f1e0c,_0x566a18){return _0x42c5(_0x3f1e0c- -0x295,_0x566a18);}_0x444d05[_0x28bca4(-0xeb,-0x101)]=_0x28bca4(-0xb6,0x9),_0x444d05[_0x52d721(0xdb,0xc5)]=_0x52d721(-0x25,-0x73);const _0x8f61c4=_0x444d05;let _0x2eb088=!![];return function(_0x12f44e,_0x42a47a){const _0x4b2e71={'irPHG':function(_0x507b18,_0x480f7a){return _0x8f61c4['OyLgB'](_0x507b18,_0x480f7a);},'DhkUU':_0x8f61c4[_0x22a43f(0x525,0x49e)],'piONk':_0x8f61c4[_0x3dc6a8(-0x2f,-0x5d)],'lJHBT':_0x8f61c4[_0x3dc6a8(0xe,0xbf)]},_0x20a631=_0x2eb088?function(){function _0x3a5122(_0x506874,_0x43e6b5){return _0x22a43f(_0x506874,_0x43e6b5- -0x6b);}function _0xe9e950(_0x584a3e,_0x3c1066){return _0x22a43f(_0x584a3e,_0x3c1066- -0x2ee);}if(_0x4b2e71[_0xe9e950(0x242,0x284)](_0x4b2e71[_0xe9e950(0x257,0x1a5)],_0x4b2e71['piONk'])){if(!_0x3ce461||_0x4b2e71[_0xe9e950(0x1d4,0x284)](typeof _0x2a62db,_0x4b2e71['DhkUU']))return'';return _0x4ac31c[_0xe9e950(0x272,0x225)+'ce'](/[^a-z0-9-]/g,'')[_0x3a5122(0x40a,0x480)+_0xe9e950(0x1e8,0x1ae)](0x26ce+-0x2*0xef9+-0x8dc*0x1,0x5*-0x22f+-0x2552+0x1*0x307d);}else{if(_0x42a47a){if(_0x4b2e71[_0x3a5122(0x4f9,0x507)](_0x3a5122(0x452,0x3f2),_0x4b2e71['lJHBT'])){const _0x215a73=_0x42a47a[_0x3a5122(0x457,0x4ce)](_0x12f44e,arguments);return _0x42a47a=null,_0x215a73;}else _0x2e3f05=_0x5b43fa[_0x3a5122(0x521,0x4bf)+_0xe9e950(0x1c3,0x20a)+'e'];}}}:function(){};function _0x22a43f(_0x3919e1,_0x2bcd30){return _0x52d721(_0x3919e1,_0x2bcd30-0x4a2);}function _0x3dc6a8(_0x5444d3,_0x3386de){return _0x52d721(_0x5444d3,_0x3386de- -0x6);}return _0x2eb088=![],_0x20a631;};}()),_0x3fd25b=_0x169a18(this,function(){function _0x1c6258(_0x2a78f3,_0xc5d4d7){return _0x42c5(_0x2a78f3- -0x348,_0xc5d4d7);}function _0x45748d(_0x131f77,_0x29b2ab){return _0x42c5(_0x29b2ab-0x3a5,_0x131f77);}const _0x1601f1={};_0x1601f1[_0x45748d(0x5b3,0x56c)]=_0x1c6258(-0x1b5,-0x16f)+_0x1c6258(-0x6d,-0x57)+'+$';const _0x2e5d11=_0x1601f1;return _0x3fd25b[_0x1c6258(-0x125,-0x19e)+'ing']()[_0x45748d(0x60e,0x5e5)+'h'](_0x2e5d11[_0x45748d(0x56d,0x56c)])[_0x45748d(0x599,0x5c8)+_0x1c6258(-0x8f,-0x116)]()['const'+_0x45748d(0x65e,0x5b3)+'r'](_0x3fd25b)[_0x45748d(0x67f,0x5e5)+'h'](_0x2e5d11['ppXRt']);});_0x3fd25b();import _0xc02c65 from'fs/promises';import _0x4e8200 from'path';function _0x38da(){const _0x4743f8=['w\x20dat','n,\x20re','VRjzI','NG_FI','UKwqo','BlhiP','utf8','ing','gCaaP','cked\x20','70DrMJXN','IdiMR','zgRCk','FYBTY','user:','3282714rJJwtW','PcxLi','mhXqM','FOwls','yHETH','AMfkC','TWIMR','NOqTD','\x20Star','FoCEL','NexOd','tejIq','oQobd','s\x20att','pmaBw','kKqJv','irPHG','\x20long','t\x20ses','split',']\x20Inv','no\x20Op','e\x20not','llite','APlgf','nscri',')+)+)','liteI','des','tamp','8ZTvPte','Nuelt','TxMIz','TQSsZ','thing','dBpXA','pes','\x20erro','.json','ile','BEAT.','1432346VkwFfb','pqUeW','hIldq','times','HXbKg','red','\x20stor','CFsQy','dmKYY','agent','versa','post','on\x20en','kzavK','readF','ply\x20H','IpbFf','const','ATION','assis','eys:\x20',']\x20Ses','ing\x20k','sonnC','cript','entio','retir','HaiBN','oved\x20','ssion','JzbNf','HVwxg','shJdA','EGsfD','Hjjoh','min','QYLbD','RROR','d\x20is\x20','nIQNV','telli','uqumX','RwLaY','satel','JQlPn','scrip','\x20tran','(((.+','hqMPv','oGGrb','json','query','INTER','slice','resol','acPTj','ajsLW','limit','TmiKL','Token','uhgtf','wMnvG','unkno','okchI','BCKcJ',']\x20His','model','2495933mgssnK','ory','jrAft','XVuMp','getTi','inclu','delet','pvmoy','ges','HkcLe','xkiIa','ted','mAZPk','trans','write','sks','yuCEh','ZEkYG','ellit','Faile','name','aNQNo','text','oFnbC','get','nk:sa','d\x20con','OyLgB','ur\x20he','esult','Canno','parse','ppXRt','\x20need','mnfTM','qxtGN','sWith','RxGxt','/api/','ViEkl','ENOEN','cihGW','HYwNf','t:\x20','son','lLYTk','QMYqj','max','artbe','link-','t\x20ret','vxAWn','4WEdDYS','JyHSl','HEART','ons','TZdcQ','RpvYh','ory\x20f',']\x20Lis','324786TrXXPR','execu','BEAT_','lRcJp','ed-','NaKHV','gyrRN','lengt','sDele','strin','oMPjY','EAT_O','nbbRu','ay/hi','NzmeA','piONk','imary','ChrnU','isArr','code','base6','harac','jynEp','EARTB','ring','YHAfY','iQUGq','\x20inva','bHLTe','2DIQmOB','hDMsT','XUxIS','uplin','g\x20tra','from','test','cqewx','join','kWviT','onId','CkDru','uISre','Delet','ructo','equen','letin','onKey','Tjzvw','QHjgj','he\x20pr','[Sate','push','UVHmM','dycCP','AADyj','OqDoU','lite\x20','gfzxg','withF','sort','ion(s','sVIiR',']\x20Err','ire\x20t','toStr','rNhtH',':main','total','ekrIb','bTGeZ','iIZBZ','fetch','uUgYI','type','ters','mHsXi','te:','\x20sess','in\x20hi','pt:\x20','QYiCp','yJtYU','cdcnx','tains','CcuNH','d\x20too','label','WqzOh','try:\x20','hpucZ','aLFId','entri','t(s)\x20','searc','body','\x20hist','_ERRO','VALID','sJyAy','XQzGa','ubYyN','gatew','role','subst','main','ons.j','afwzD','yBLvT','debug','enCla','ire\x20e','start','ELD','JAowS','trim',':upli','onFil','conte',')\x20rem','bIfvP','e\x20sat','edAt','bCNPa','updat','283855QanqjH','KsmAf','Read\x20','xcHyL','gQTAP','alVBQ','iring','messa','r:\x20','QMtgK','oQaOl','user','Ktlpi','te\x20yo','NiNSC','info','\x20sate','lid\x20c','RkVba','repla','now','list\x20','Bzmat','PnIBF','lite/','zeysF','mqyhg','If\x20no','4url','story','l\x20blo','SPrLE','onId\x20','pzXJy','DYTwj','eted\x20','mbucK','onDel','SPVyV','vvmQj','or\x20de','rror:','sessi','rmNHm','oxbOE','cked:','d\x20to\x20','VycGy','ileTy','a\x20fou','warn','bcyzb','WRuQy','tory\x20','FVlIQ','oved','\x20foun','apply','forma','File',']\x20Fet','sions',']\x20Pat','GmWnZ','aYdaJ','zGVSm','8572571FQgAOw','ur\x20Se','VJGLn','NAL_E',']\x20Ret','tup\x20s','nPVSa','error',']\x20Rem','d\x20at\x20','match','11893680FYDiRo','eTuUl','oXxrP','rbMwA','rKjFE','h\x20tra'];_0x38da=function(){return _0x4743f8;};return _0x38da();}import{badRequest,internalError,ErrorCodes}from'../../utils/errors.js';import{sanitizeSatelliteId,isValidId}from'../../utils/id-sanitize.js';import{getOpenClawStateDir}from'../openclaw-discover.js';const AGENT_ID=process.env.OPENCLAW_AGENT_ID||_0x1f4020(-0x3c,0x3a);async function getSessionsStorePath(_0x124d51){const _0x1a3099={'SngAZ':function(_0x5c8f9b,_0x47ca02){return _0x5c8f9b(_0x47ca02);},'Tjzvw':'agent'+'s','nIQNV':_0x11c908(-0xf7,-0x133)+_0x11c908(-0x154,-0x1de),'lRcJp':_0x2e94c2(-0x6d,-0xbf)+_0x11c908(-0x1d0,-0x170)+'son'};function _0x2e94c2(_0x51793f,_0x57acad){return _0x1f4020(_0x51793f,_0x57acad- -0x137);}const _0x1240d9=await getOpenClawStateDir();function _0x11c908(_0x920ee4,_0x2010e1){return _0x1f4020(_0x920ee4,_0x2010e1- -0x1ab);}const _0x37982a=_0x1a3099['SngAZ'](sanitizeAgentId,_0x124d51)||AGENT_ID;return _0x4e8200[_0x11c908(-0x19e,-0x1b4)](_0x1240d9,_0x1a3099[_0x11c908(-0x240,-0x1aa)],_0x37982a,_0x1a3099[_0x11c908(-0x1fc,-0x231)],_0x1a3099[_0x11c908(-0x188,-0x1d6)]);}async function getSessionsDir(_0x156355){const _0x201d8a={'uISre':function(_0x374291){return _0x374291();},'APlgf':function(_0x3d1af1,_0x2db8e2){return _0x3d1af1(_0x2db8e2);},'BCKcJ':_0x1fe1bf(-0x17,0x2f)+_0x1fe1bf(-0xc2,-0xfa)};function _0x29f5f4(_0x309760,_0x5dfce0){return _0x1f4020(_0x309760,_0x5dfce0-0x3e7);}const _0xb94d63=await _0x201d8a[_0x1fe1bf(-0x94,-0x130)](getOpenClawStateDir);function _0x1fe1bf(_0x357b2e,_0x382228){return _0x1f4020(_0x382228,_0x357b2e- -0x8f);}const _0x289897=_0x201d8a[_0x1fe1bf(0x39,0xc2)](sanitizeAgentId,_0x156355)||AGENT_ID;return _0x4e8200['join'](_0xb94d63,'agent'+'s',_0x289897,_0x201d8a[_0x29f5f4(0x2b8,0x37a)]);}function _0x1f4020(_0x5c8eae,_0x174ae0){return _0x42c5(_0x174ae0- -0x211,_0x5c8eae);}function _0x42c5(_0x5e2687,_0x8bfe81){_0x5e2687=_0x5e2687-(0x3*0x97+-0x2446+0x1*0x23f3);const _0x226d84=_0x38da();let _0x56093b=_0x226d84[_0x5e2687];return _0x56093b;}function sanitizeAgentId(_0x1aac06){const _0x281edb={};function _0x299f65(_0x2bc623,_0x5739a1){return _0x1f4020(_0x5739a1,_0x2bc623-0x56d);}_0x281edb['TQSsZ']=function(_0x3b3f30,_0x28780b){return _0x3b3f30!==_0x28780b;};const _0xbec9c7=_0x281edb;if(!_0x1aac06||_0xbec9c7[_0x299f65(0x63e,0x5ad)](typeof _0x1aac06,_0x1cb88a(0x47f,0x4cb)+'g'))return'';function _0x1cb88a(_0x3de9a5,_0x26d5e8){return _0x1f4020(_0x26d5e8,_0x3de9a5-0x4a4);}return _0x1aac06['repla'+'ce'](/[^a-z0-9-]/g,'')[_0x299f65(0x5a6,0x514)+_0x1cb88a(0x48e,0x4d9)](0xa84+-0x516*-0x7+-0x2*0x170f,0xaf2+0x4d*-0x1a+0x1*-0x2e0);}export function setupSatelliteRoutes(_0x27f80e,_0xe9fc59){const _0x5dbc72={'QMYqj':_0xa854c6(0x308,0x327)+_0xa854c6(0x31c,0x3d8)+_0x16d4dd(0x2fd,0x331)+_0xa854c6(0x357,0x3c7)+'imary'+_0xa854c6(0x3b2,0x34d)+_0xa854c6(0x41b,0x3cb),'RxGxt':function(_0x57ab00,_0x430a55){return _0x57ab00+_0x430a55;},'FoCEL':function(_0x1e5927,_0x287492){return _0x1e5927!==_0x287492;},'gQTAP':'error','rKjFE':_0x16d4dd(0x3d6,0x327),'hIldq':function(_0x1a84c3,_0x5aa488){return _0x1a84c3!==_0x5aa488;},'PcxLi':_0xa854c6(0x32f,0x31f)+'g','RpvYh':function(_0x107a70,_0x35ef1f,_0x172291,_0x178667){return _0x107a70(_0x35ef1f,_0x172291,_0x178667);},'aYdaJ':_0xa854c6(0x2d2,0x284)+'liteI'+_0xa854c6(0x2cd,0x356)+'requi'+_0xa854c6(0x432,0x371),'JAowS':function(_0x618392,_0x2dbb1d){return _0x618392>_0x2dbb1d;},'rbMwA':_0xa854c6(0x2d2,0x22c)+_0xa854c6(0x41f,0x3f6)+_0x16d4dd(0x332,0x347)+_0xa854c6(0x415,0x4ca),'bTGeZ':function(_0x52cf09,_0xd403fc){return _0x52cf09===_0xd403fc;},'bCNPa':_0xa854c6(0x38e,0x31f),'gCaaP':function(_0x28823f,_0x54a9c4){return _0x28823f(_0x54a9c4);},'xkiIa':function(_0xaf0fa5,_0x4e2cce){return _0xaf0fa5!==_0x4e2cce;},'rNhtH':_0xa854c6(0x391,0x359),'JyHSl':_0xa854c6(0x2d2,0x2c2)+'liteI'+_0xa854c6(0x304,0x3af)+_0x16d4dd(0x3d8,0x345)+'\x20inva'+_0x16d4dd(0x3b6,0x37f)+_0xa854c6(0x33b,0x36b)+_0x16d4dd(0x298,0x33c),'uhgtf':function(_0x92128e,_0x3fefa3,_0x53e2b6){return _0x92128e(_0x3fefa3,_0x53e2b6);},'NiNSC':_0xa854c6(0x3b1,0x32f),'mnfTM':_0xa854c6(0x3fb,0x430),'Gykki':function(_0x299f11,_0x57b2f9){return _0x299f11===_0x57b2f9;},'HVwxg':'ENOEN'+'T','qxtGN':function(_0x26b14f,_0x306c4a){return _0x26b14f!==_0x306c4a;},'Ktlpi':'tkMcJ','pyJdW':_0x16d4dd(0x271,0x318),'TWIMR':_0x16d4dd(0x345,0x3de),'vxAWn':'WfPIq','mbucK':function(_0x19319c,_0x65cc6){return _0x19319c!==_0x65cc6;},'RkVba':_0x16d4dd(0x2fb,0x2ad),'bHLTe':'XRxgX','mAZPk':function(_0x23729f,_0x2b7fa9,_0x47a5df){return _0x23729f(_0x2b7fa9,_0x47a5df);},'iIZBZ':_0x16d4dd(0x3c8,0x3bc),'xcHyL':function(_0x3f7c2a,_0x1174c7){return _0x3f7c2a!==_0x1174c7;},'Hjjoh':_0x16d4dd(0x39a,0x346),'ViEkl':'OcLqt','JzbNf':function(_0x4df598,_0x1cea69){return _0x4df598===_0x1cea69;},'hqMPv':function(_0x51d640,_0x5b5dc7){return _0x51d640>_0x5b5dc7;},'sonnC':function(_0x3e3f59,_0x2fa413,_0x2bec53,_0x57427f){return _0x3e3f59(_0x2fa413,_0x2bec53,_0x57427f);},'DsWSj':_0x16d4dd(0x35c,0x2c9)+_0xa854c6(0x3d0,0x37e)+_0xa854c6(0x2c1,0x263)+_0xa854c6(0x39e,0x32c)+_0xa854c6(0x2fc,0x2df)+'e','VJGLn':function(_0x19deac,_0x1d47b3){return _0x19deac===_0x1d47b3;},'xKvGx':_0x16d4dd(0x371,0x2cc),'oXxrP':function(_0x4526dd,_0x2f4c24){return _0x4526dd+_0x2f4c24;},'lfBGl':function(_0xbcf91a,_0x38c0ad){return _0xbcf91a(_0x38c0ad);},'FVlIQ':function(_0x59fef2,_0x5a0684,_0xce4d1f){return _0x59fef2(_0x5a0684,_0xce4d1f);},'mqyhg':_0xa854c6(0x392,0x323),'sVIiR':function(_0xa3f483,_0x9ffee3){return _0xa3f483(_0x9ffee3);},'alVBQ':function(_0x3dc22a,_0x20662b){return _0x3dc22a===_0x20662b;},'mhXqM':_0x16d4dd(0x499,0x400),'rmNHm':function(_0x51ec42,_0x39d79a){return _0x51ec42===_0x39d79a;},'sHJOS':'ICJyk','CZCka':_0xa854c6(0x356,0x322),'EGsfD':_0x16d4dd(0x311,0x3ad),'aLFId':function(_0x60a9b7,_0x224575,_0x13330e){return _0x60a9b7(_0x224575,_0x13330e);},'pqUeW':'warn','gMFGb':_0x16d4dd(0x478,0x3df),'XmLUr':_0x16d4dd(0x270,0x2bf),'hDMsT':_0x16d4dd(0x4a4,0x3fd),'nAQPW':function(_0x4eae1,_0x5b4d8e,_0x5bc986){return _0x4eae1(_0x5b4d8e,_0x5bc986);},'hNicD':function(_0x515e21,_0x39e8d0){return _0x515e21!==_0x39e8d0;},'ChrnU':'ubYyN','SPrLE':_0xa854c6(0x2fd,0x2de)+_0xa854c6(0x3d0,0x360)+_0x16d4dd(0x32b,0x339)+_0x16d4dd(0x3dc,0x351)+_0xa854c6(0x2eb,0x2c6),'TxMIz':_0x16d4dd(0x3f2,0x379),'WRuQy':_0x16d4dd(0x26c,0x286)+'tant','FYBTY':function(_0x3c7935,_0x3dcb8f){return _0x3c7935===_0x3dcb8f;},'dbgPR':function(_0x17fb8f,_0x44a344,_0x5f14ea){return _0x17fb8f(_0x44a344,_0x5f14ea);},'okchI':function(_0x5d199b,_0x5055ec,_0x3ee0b3,_0x1ef04d){return _0x5d199b(_0x5055ec,_0x3ee0b3,_0x1ef04d);},'cihGW':_0x16d4dd(0x317,0x29c),'oQobd':_0xa854c6(0x317,0x25b),'afwzD':'toolR'+_0x16d4dd(0x2c0,0x2d3),'NzmeA':'tool','PnIBF':_0x16d4dd(0x359,0x2c7),'bcyzb':function(_0x55e2de,_0x36f00a){return _0x55e2de===_0x36f00a;},'pzXJy':_0x16d4dd(0x33f,0x3c5),'TzjXL':'OVKyn','KsmAf':_0x16d4dd(0x261,0x2ec)+_0x16d4dd(0x384,0x2f4)+'OK','HYwNf':_0xa854c6(0x3a4,0x3dc)+_0x16d4dd(0x341,0x2ec)+_0x16d4dd(0x35c,0x3f8)+'md','oMPjY':_0xa854c6(0x3bd,0x3ca)+_0x16d4dd(0x3e1,0x3f2)+_0x16d4dd(0x26f,0x2d7)+_0xa854c6(0x411,0x4ab)+_0x16d4dd(0x329,0x28c)+_0x16d4dd(0x368,0x3c2)+_0x16d4dd(0x2ae,0x282)+_0xa854c6(0x33d,0x35a)+_0x16d4dd(0x309,0x2fd)+'K','nMMrm':'Execu'+_0x16d4dd(0x2cc,0x37b)+_0x16d4dd(0x304,0x3b1)+_0x16d4dd(0x1e1,0x290)+_0xa854c6(0x40c,0x39e)+_0x16d4dd(0x37e,0x3b5)+_0x16d4dd(0x31d,0x31e)+'ce','bPxhg':_0x16d4dd(0x258,0x2f3)+_0xa854c6(0x3af,0x425)+_0x16d4dd(0x25a,0x2d2)+_0x16d4dd(0x2cf,0x2e6)+'at\x20ta'+_0xa854c6(0x2f9,0x3b5),'QYLbD':'NO_RE'+'PLY','XUxIS':function(_0x339166,_0x3b5633){return _0x339166===_0x3b5633;},'IdiMR':_0x16d4dd(0x469,0x3d4),'XZAdF':_0x16d4dd(0x277,0x2f8),'JVHZG':function(_0x5b3a20,_0x539180){return _0x5b3a20===_0x539180;},'zeysF':function(_0x381825,_0xb1df0e,_0x156316){return _0x381825(_0xb1df0e,_0x156316);},'oQaOl':function(_0x4c42d0,_0x26aec4){return _0x4c42d0===_0x26aec4;},'jynEp':_0xa854c6(0x419,0x45c)+_0x16d4dd(0x30f,0x35f)+_0x16d4dd(0x3aa,0x3c1)+_0xa854c6(0x3d3,0x390)+'nd','uUgYI':function(_0x13c578,_0x256543){return _0x13c578+_0x256543;},'vvmQj':_0x16d4dd(0x304,0x2c9)+_0x16d4dd(0x3ff,0x39c)+_0xa854c6(0x3b7,0x479)+_0xa854c6(0x3cc,0x394)+'ons','ekrIb':_0xa854c6(0x401,0x464),'sOYzs':function(_0x4c9362){return _0x4c9362();},'mHsXi':_0x16d4dd(0x38b,0x402)+'s','XQzGa':function(_0x52dd08,_0x55da99){return _0x52dd08!==_0x55da99;},'dBpXA':_0x16d4dd(0x213,0x2ab),'nPVSa':function(_0x5e2f26,_0x57b03b){return _0x5e2f26!==_0x57b03b;},'NaKHV':_0xa854c6(0x2d3,0x27f),'FOwls':_0xa854c6(0x2c2,0x284),'oGGrb':'test-','tejIq':_0xa854c6(0x3cc,0x442)+_0xa854c6(0x321,0x3cc),'Bzmat':_0x16d4dd(0x431,0x398)+'ons.j'+_0x16d4dd(0x37b,0x2e2),'UVHmM':'chpah','kzavK':_0x16d4dd(0x3eb,0x32b),'wMnvG':_0x16d4dd(0x29a,0x2b1)+'wn','Nuelt':_0x16d4dd(0x335,0x312)+'k:','pvmoy':function(_0x539693,_0x4ec4b3){return _0x539693+_0x4ec4b3;},'jrAft':_0xa854c6(0x33a,0x2ec)+_0xa854c6(0x3be,0x400),'OqDoU':function(_0x1c5d20,_0xddc7ce,_0x1bc735){return _0x1c5d20(_0xddc7ce,_0x1bc735);},'mUrPR':function(_0x32cc8d,_0x1a43bb,_0x37d0e0,_0x8e38b0){return _0x32cc8d(_0x1a43bb,_0x37d0e0,_0x8e38b0);},'SPVyV':_0x16d4dd(0x347,0x2dc)+_0xa854c6(0x38b,0x350)+_0xa854c6(0x333,0x34c)+_0x16d4dd(0x2d3,0x38b),'YHAfY':_0x16d4dd(0x24b,0x2dc)+_0xa854c6(0x2d2,0x28e)+_0xa854c6(0x3ba,0x3ff)+_0x16d4dd(0x318,0x398)+_0x16d4dd(0x267,0x2ed)};function _0x16d4dd(_0x2d1129,_0x1f784d){return _0x1f4020(_0x2d1129,_0x1f784d-0x320);}function _0xa854c6(_0x458b2a,_0x3b885c){return _0x1f4020(_0x3b885c,_0x458b2a-0x354);}const {log:_0x2195ff}=_0xe9fc59;_0x27f80e[_0x16d4dd(0x49a,0x404)](_0xa854c6(0x310,0x340)+'satel'+_0xa854c6(0x3ba,0x40d)+'retir'+'e',async(_0x25f1e6,_0x440e54)=>{function _0x522a2e(_0x3780ae,_0x1397ae){return _0x16d4dd(_0x1397ae,_0x3780ae-0x2c2);}const _0x3ead8a={'zGVSm':_0x522a2e(0x58e,0x59f),'WqzOh':function(_0x3e6b3b,_0x3faf4d){function _0x279809(_0x2007b0,_0x2b382d){return _0x522a2e(_0x2007b0- -0x663,_0x2b382d);}return _0x5dbc72[_0x279809(-0xc6,-0x17)](_0x3e6b3b,_0x3faf4d);},'cdcnx':function(_0x5cd45c,_0x17c0e9){function _0x471143(_0x1700e0,_0x3d1385){return _0x522a2e(_0x3d1385- -0x57,_0x1700e0);}return _0x5dbc72[_0x471143(0x6c0,0x644)](_0x5cd45c,_0x17c0e9);},'yJtYU':_0x54edea(-0x102,-0x15a)+'T','YRIgo':function(_0x3e13b2,_0x2023c2,_0xfd7298){return _0x3e13b2(_0x2023c2,_0xfd7298);},'QYiCp':_0x5dbc72[_0x54edea(-0xf1,-0xc6)],'IpbFf':_0x54edea(-0x116,-0x196)+')+)+)'+'+$'};function _0x54edea(_0x37cc02,_0x42b124){return _0x16d4dd(_0x37cc02,_0x42b124- -0x438);}if(_0x5dbc72[_0x522a2e(0x681,0x689)]!==_0x5dbc72['rKjFE'])_0x2ac70f['type']===_0x3ead8a[_0x54edea(-0xe5,-0x89)]&&_0x50d716[_0x54edea(-0x1bd,-0x16c)]&&(_0x2c175d+=_0x3ead8a[_0x54edea(-0x15f,-0xef)](_0x393989[_0x522a2e(0x58e,0x52b)],'\x0a'));else{const {satelliteId:_0x578e2e,agentId:_0x182779}=_0x25f1e6[_0x522a2e(0x612,0x5e0)];if(!_0x578e2e||_0x5dbc72['hIldq'](typeof _0x578e2e,_0x5dbc72[_0x54edea(-0x101,-0x67)]))return _0x5dbc72[_0x522a2e(0x5b1,0x63b)](badRequest,_0x440e54,_0x5dbc72[_0x54edea(-0xc4,-0x8a)],ErrorCodes['MISSI'+_0x54edea(0x0,-0x74)+_0x54edea(-0x17f,-0xd6)]);if(_0x5dbc72[_0x54edea(-0x72,-0xd5)](_0x578e2e[_0x522a2e(0x5bb,0x5ad)+'h'],0xad+-0x48*0x16+-0x1*-0x5e7))return _0x5dbc72[_0x54edea(-0x98,-0x149)](badRequest,_0x440e54,_0x5dbc72[_0x522a2e(0x680,0x63e)],ErrorCodes[_0x522a2e(0x615,0x68c)+_0x522a2e(0x547,0x559)+_0x522a2e(0x614,0x658)+'R']);if(_0x5dbc72[_0x54edea(-0xf2,-0x101)](_0x578e2e,_0x5dbc72[_0x522a2e(0x62e,0x592)]))return _0x5dbc72[_0x54edea(-0x95,-0x149)](badRequest,_0x440e54,_0x522a2e(0x596,0x592)+_0x54edea(-0x118,-0x150)+_0x522a2e(0x5f3,0x57b)+'he\x20pr'+_0x54edea(-0xfa,-0x136)+_0x54edea(-0x11d,-0xba)+_0x54edea(-0x4d,-0x51),ErrorCodes[_0x522a2e(0x615,0x60f)+_0x522a2e(0x547,0x512)+_0x522a2e(0x614,0x645)+'R']);const _0x3c6c89=_0x5dbc72['gCaaP'](sanitizeSatelliteId,_0x578e2e);if(_0x5dbc72[_0x54edea(-0x151,-0x178)](_0x3c6c89,_0x578e2e)){if(_0x5dbc72[_0x54edea(-0x11d,-0x101)](_0x5dbc72[_0x54edea(-0x18c,-0x105)],_0x5dbc72[_0x522a2e(0x5f5,0x633)]))return _0x5dbc72['RpvYh'](badRequest,_0x440e54,_0x5dbc72[_0x522a2e(0x5ad,0x5e2)],ErrorCodes[_0x522a2e(0x615,0x6b5)+_0x522a2e(0x547,0x503)+_0x54edea(-0x164,-0xe6)+'R']);else _0x3ead8a[_0x54edea(-0xa4,-0xf4)](_0x3d9a37[_0x522a2e(0x5c7,0x59b)],_0x3ead8a[_0x522a2e(0x605,0x688)])&&_0x3ead8a['YRIgo'](_0x58cac1,_0x3ead8a['QYiCp'],'[Sate'+_0x522a2e(0x6a9,0x677)+_0x522a2e(0x5f2,0x67b)+_0x522a2e(0x658,0x705)+'letin'+_0x54edea(-0x1a5,-0x125)+'nscri'+'pt:\x20'+_0x464b88[_0x54edea(-0xb0,-0xc3)+'ge']);}const _0x577f94=_0x182779?String(_0x182779)[_0x54edea(-0xbc,-0xb7)+'ce'](/[^a-z0-9-]/g,'')[_0x522a2e(0x61b,0x6dc)+_0x522a2e(0x5cc,0x5e7)](0x58b+0x220c+-0x2797,0x1117+0x1f9c+-0x1*0x3073)||_0x5dbc72[_0x54edea(-0x5a,-0xcc)]:_0x54edea(-0x64,-0xde),_0x281c75=['agent'+':'+_0x577f94+(_0x54edea(-0xfd,-0xd3)+_0x54edea(-0xb9,-0x169)+_0x522a2e(0x55d,0x4b8)+_0x54edea(-0x67,-0xfa))+_0x3c6c89,_0x522a2e(0x6c4,0x69e)+':main'+_0x54edea(-0xf7,-0xd3)+_0x522a2e(0x591,0x615)+'telli'+_0x522a2e(0x600,0x56d)+_0x3c6c89,_0x54edea(-0x77,-0x36)+':main'+_0x522a2e(0x627,0x62c)+'nk-de'+'fault'+':'+_0x3c6c89,_0x54edea(0x3d,-0x36)+_0x522a2e(0x5f6,0x632)+':upli'+'nk-up'+_0x54edea(-0x138,-0x151)+_0x54edea(0x3a,-0x69)+_0x3c6c89];_0x5dbc72[_0x54edea(-0x188,-0x189)](_0x2195ff,_0x5dbc72[_0x522a2e(0x63e,0x5b7)],_0x522a2e(0x5e6,0x564)+_0x54edea(-0xca,-0x51)+_0x522a2e(0x676,0x6dc)+_0x522a2e(0x636,0x6b6)+_0x522a2e(0x640,0x5a2)+_0x522a2e(0x6a9,0x743)+'\x20'+_0x3c6c89+(',\x20try'+_0x54edea(-0x254,-0x1af)+_0x522a2e(0x549,0x573))+_0x281c75['join'](',\x20'));const _0xb9b53c={};_0xb9b53c['ok']=!![],_0xb9b53c[_0x522a2e(0x560,0x52a)+_0x54edea(-0x13,-0x4d)+'d']=_0x3c6c89,_0xb9b53c[_0x54edea(-0x3,-0xa0)+_0x522a2e(0x5e2,0x613)+_0x522a2e(0x5bc,0x5ef)+_0x522a2e(0x583,0x50c)]=[],_0xb9b53c['trans'+_0x54edea(-0x21f,-0x1ad)+_0x54edea(-0xc2,-0x13e)+_0x54edea(-0xbe,-0x177)]=[],_0xb9b53c[_0x54edea(-0x114,-0xc3)+'ge']='';const _0x9e6814=_0xb9b53c;try{const _0x19241c=await getSessionsStorePath(_0x577f94),_0x32513e=await _0x5dbc72[_0x54edea(-0xcc,-0x6f)](getSessionsDir,_0x577f94);let _0x57f402={},_0xb72e01=![];try{const _0x53e6e0=await _0xc02c65[_0x54edea(-0x1ed,-0x1b7)+_0x522a2e(0x6b9,0x609)](_0x19241c,_0x5dbc72['mnfTM']);_0x57f402=JSON[_0x522a2e(0x597,0x604)](_0x53e6e0);}catch(_0x297d57){if(_0x5dbc72['Gykki'](_0x297d57[_0x522a2e(0x5c7,0x515)],_0x5dbc72['HVwxg']))_0x2195ff(_0x522a2e(0x662,0x664),_0x522a2e(0x5e6,0x6a8)+_0x54edea(-0x3,-0x51)+']\x20Ses'+'sions'+_0x54edea(0x5d,-0x39)+_0x54edea(0x28,-0x52)+_0x54edea(-0x129,-0x92)+_0x54edea(-0x21,-0x7f)+_0x19241c);else throw _0x297d57;}for(const _0x7404ff of _0x281c75){if(_0x5dbc72['qxtGN'](_0x5dbc72[_0x522a2e(0x63c,0x6d6)],_0x5dbc72['pyJdW'])){if(_0x57f402[_0x7404ff]){if(_0x5dbc72[_0x54edea(-0x58,-0x62)]!=='pmaBw')return _0x35963a(_0x510eb0,_0x5dbc72[_0x522a2e(0x5a6,0x5ae)],_0x9e82c4[_0x54edea(-0x1a6,-0xe5)+_0x54edea(-0x14e,-0x1b3)+_0x522a2e(0x614,0x59e)+'R']);else{const _0x470e1a=_0x57f402[_0x7404ff];delete _0x57f402[_0x7404ff],_0xb72e01=!![],_0x9e6814[_0x54edea(-0xd0,-0xa0)+_0x54edea(-0xba,-0x118)+_0x54edea(-0x128,-0x13e)+_0x522a2e(0x583,0x501)][_0x54edea(-0x168,-0x113)](_0x7404ff),_0x2195ff(_0x5dbc72['NiNSC'],_0x54edea(-0x7a,-0x114)+_0x54edea(0xa,-0x51)+_0x54edea(0x2d,-0x80)+_0x522a2e(0x551,0x5a0)+'sessi'+_0x522a2e(0x6c7,0x750)+_0x54edea(-0x16b,-0xee)+_0x7404ff);if(_0x470e1a[_0x522a2e(0x65a,0x6b4)+'onId']&&/^[a-f0-9-]+$/i[_0x54edea(-0xee,-0x123)](_0x470e1a[_0x522a2e(0x65a,0x6fb)+_0x522a2e(0x5db,0x565)])){if(_0x5dbc72[_0x522a2e(0x69b,0x6ad)](_0x54edea(-0x1a7,-0x110),'KVIZx')){const _0x4e1092=_0x4e8200['join'](_0x32513e,_0x470e1a[_0x54edea(-0x3b,-0xa0)+_0x522a2e(0x5db,0x56b)]+('.json'+'l')),_0x20795e=_0x4e8200[_0x54edea(-0x24c,-0x18f)+'ve'](_0x4e1092);if(!_0x20795e[_0x54edea(-0x33,-0xd7)+_0x522a2e(0x59c,0x5ae)](_0x4e8200[_0x522a2e(0x56b,0x4b4)+'ve'](_0x32513e))){if(_0x5dbc72['bTGeZ'](_0x522a2e(0x69c,0x616),_0x5dbc72[_0x54edea(-0x153,-0x14f)])){const _0x5e617f={};return _0x5e617f['ok']=!![],_0x5e617f['sessi'+_0x54edea(-0x102,-0x118)]=_0x296a24,_0x5e617f[_0x54edea(-0x13e,-0xc3)+_0x54edea(-0xfb,-0x17a)]=[],_0x11a8a7[_0x522a2e(0x567,0x606)](_0x5e617f);}else{_0x5dbc72[_0x522a2e(0x571,0x5d7)](_0x2195ff,_0x54edea(-0xa0,-0x98),'[Sate'+_0x522a2e(0x6a9,0x657)+_0x522a2e(0x66e,0x631)+_0x522a2e(0x682,0x699)+'versa'+_0x522a2e(0x64e,0x5c4)+_0x54edea(-0xb7,-0x9d)+'\x20'+_0x20795e);continue;}}try{if(_0x5dbc72[_0x54edea(0xc,-0xa6)](_0x5dbc72[_0x522a2e(0x642,0x6e1)],_0x5dbc72[_0x54edea(-0x89,-0x12a)]))await _0xc02c65['unlin'+'k'](_0x4e1092),_0x9e6814[_0x54edea(-0x193,-0x175)+'cript'+_0x54edea(-0x96,-0x13e)+'ted'][_0x54edea(-0x64,-0x113)](_0x470e1a['sessi'+'onId']),_0x5dbc72[_0x54edea(-0x1f9,-0x176)](_0x2195ff,_0x5dbc72[_0x54edea(-0x34,-0xbc)],_0x522a2e(0x5e6,0x5f9)+_0x522a2e(0x6a9,0x61b)+']\x20Del'+_0x54edea(-0x34,-0xa7)+_0x54edea(-0x17b,-0x175)+_0x522a2e(0x54d,0x58a)+':\x20'+_0x4e1092);else return _0x2a5442(_0x5cf075,_0x522a2e(0x560,0x575)+'liteI'+'d\x20con'+_0x522a2e(0x607,0x65c)+_0x522a2e(0x5cf,0x5ed)+_0x522a2e(0x641,0x609)+_0x54edea(-0x188,-0x131)+_0x54edea(-0x128,-0xfc),_0x918b8d['VALID'+'ATION'+_0x522a2e(0x614,0x6a4)+'R']);}catch(_0x1d1b87){if(_0x5dbc72[_0x54edea(-0x22a,-0x178)](_0x5dbc72[_0x522a2e(0x5fa,0x6bd)],_0x5dbc72[_0x522a2e(0x5fa,0x667)])){const _0x4ccef7={};return _0x4ccef7['ok']=!![],_0x4ccef7[_0x54edea(-0xe7,-0xa0)+_0x522a2e(0x5e2,0x617)]=_0x4b3a75,_0x4ccef7[_0x54edea(-0x6f,-0xc3)+_0x522a2e(0x580,0x5ac)]=[],_0x1f0581['json'](_0x4ccef7);}else{if(_0x5dbc72[_0x522a2e(0x633,0x646)](_0x1d1b87[_0x54edea(-0x1bd,-0x133)],_0x5dbc72[_0x54edea(-0x114,-0x1a6)])){if(_0x5dbc72[_0x54edea(-0xae,-0x101)](_0x5dbc72[_0x54edea(-0x1d4,-0x1a3)],_0x522a2e(0x608,0x597)))_0x5dbc72[_0x54edea(-0x1c2,-0x176)](_0x2195ff,_0x54edea(-0x5c,-0x81),_0x522a2e(0x5e6,0x5af)+_0x54edea(-0x104,-0x51)+']\x20Err'+_0x522a2e(0x658,0x6c3)+_0x522a2e(0x5e1,0x58a)+_0x54edea(-0x12b,-0x125)+_0x522a2e(0x6ab,0x600)+_0x522a2e(0x603,0x62e)+_0x1d1b87[_0x522a2e(0x637,0x651)+'ge']);else return _0x2fc992[_0x54edea(-0x17a,-0x106)+_0x54edea(-0x85,-0x70)]()[_0x522a2e(0x611,0x554)+'h'](hQRNgv[_0x54edea(-0x1e9,-0x1b5)])[_0x522a2e(0x5f4,0x5df)+_0x522a2e(0x68a,0x5f5)]()[_0x522a2e(0x546,0x48c)+_0x522a2e(0x5df,0x5a2)+'r'](_0x3c1b79)[_0x54edea(-0xd5,-0xe9)+'h'](hQRNgv['IpbFf']);}}}}else _0x38c99e(_0x3ead8a[_0x522a2e(0x604,0x5c7)],_0x54edea(-0x15c,-0x114)+_0x54edea(0x39,-0x51)+']\x20Err'+_0x522a2e(0x658,0x67e)+_0x522a2e(0x5e1,0x675)+'g\x20tra'+'nscri'+'pt:\x20'+_0x47450f[_0x54edea(-0xd5,-0xc3)+'ge']);}}}}else _0x51d51c(_0x522a2e(0x662,0x6b1),_0x54edea(-0xa2,-0x114)+_0x522a2e(0x6a9,0x754)+_0x522a2e(0x54a,0x4f3)+_0x522a2e(0x66d,0x727)+_0x54edea(-0x8f,-0x39)+'e\x20not'+_0x54edea(0x26,-0x92)+_0x54edea(-0x131,-0x7f)+_0x373e7a);}_0xb72e01&&await _0xc02c65[_0x54edea(-0x215,-0x174)+_0x522a2e(0x66b,0x6dc)](_0x19241c,JSON['strin'+'gify'](_0x57f402,null,-0x1ce0+-0x25f*0xf+0x4073));const _0x55952d=[];_0x5dbc72[_0x522a2e(0x625,0x6b4)](_0x9e6814[_0x54edea(0x4,-0xa0)+'onKey'+_0x54edea(-0x191,-0x13e)+_0x522a2e(0x583,0x5ed)][_0x522a2e(0x5bb,0x558)+'h'],-0x1*0x1ae6+0x15*0x1a8+0x2*-0x3f1)&&_0x55952d[_0x522a2e(0x5e7,0x5e8)](_0x9e6814[_0x522a2e(0x65a,0x5a2)+'onKey'+_0x522a2e(0x5bc,0x5cc)+_0x522a2e(0x583,0x544)][_0x522a2e(0x5bb,0x574)+'h']+(_0x54edea(-0x44,-0xf9)+_0x522a2e(0x5f0,0x652)+_0x522a2e(0x62a,0x567)+_0x522a2e(0x667,0x61d)));if(_0x5dbc72[_0x522a2e(0x625,0x6b1)](_0x9e6814[_0x522a2e(0x585,0x50b)+_0x54edea(-0x218,-0x1ad)+'sDele'+_0x54edea(-0x234,-0x177)]['lengt'+'h'],0x201a+-0x6*-0x5a5+-0x41f8)){if(_0x5dbc72['bTGeZ'](_0x5dbc72[_0x522a2e(0x59f,0x658)],'NdmLn')){const _0x3321e4={};return _0x3321e4['ok']=!![],_0x3321e4[_0x522a2e(0x65a,0x675)+_0x522a2e(0x5e2,0x531)]=_0x1c3858,_0x3321e4[_0x54edea(-0x27,-0xc3)+'ges']=[],_0x5ace00['json'](_0x3321e4);}else _0x55952d[_0x54edea(-0x1c2,-0x113)](_0x9e6814[_0x522a2e(0x585,0x5a0)+_0x522a2e(0x54d,0x588)+_0x54edea(-0xa3,-0x13e)+_0x522a2e(0x583,0x5b4)][_0x522a2e(0x5bb,0x60e)+'h']+(_0x522a2e(0x563,0x5bb)+'scrip'+_0x522a2e(0x610,0x619)+_0x54edea(-0x167,-0x17c)+'ed'));}_0x5dbc72[_0x522a2e(0x553,0x5e9)](_0x55952d[_0x522a2e(0x5bb,0x64f)+'h'],0x1d27+-0xb3*0x35+0x7e8)&&_0x55952d['push']('no\x20Op'+_0x54edea(-0x15e,-0xd9)+'w\x20dat'+_0x54edea(-0x9d,-0x99)+'nd'),_0x9e6814['messa'+'ge']='Satel'+_0x54edea(-0xc1,-0x10e)+_0x522a2e(0x54f,0x5cf)+'ed:\x20'+_0x55952d[_0x522a2e(0x5d9,0x553)](',\x20'),_0x9e6814[_0x522a2e(0x65a,0x5b3)+_0x522a2e(0x655,0x6fd)+'eted']=_0x9e6814['sessi'+'onKey'+_0x54edea(-0x177,-0x13e)+_0x54edea(-0x1dd,-0x177)]['lengt'+'h']>0x46*-0x86+-0x1bea+0x408e,_0x9e6814['trans'+_0x522a2e(0x54d,0x5bb)+_0x54edea(-0xa3,-0x11c)+'ed']=_0x5dbc72[_0x54edea(-0x23d,-0x195)](_0x9e6814[_0x54edea(-0x1c1,-0x175)+'cript'+'sDele'+_0x54edea(-0x190,-0x177)][_0x54edea(-0x19c,-0x13f)+'h'],0x89+-0x41a+0x391),_0x440e54[_0x522a2e(0x567,0x541)](_0x9e6814);}catch(_0x25848b){_0x2195ff('error',_0x54edea(-0x16a,-0x114)+_0x522a2e(0x6a9,0x6cf)+_0x54edea(-0x6c,-0x84)+_0x54edea(-0x10e,-0xd8)+'rror:'+'\x20'+_0x25848b['messa'+'ge']),_0x5dbc72[_0x54edea(-0x25f,-0x1ae)](internalError,_0x440e54,_0x5dbc72['DsWSj'],ErrorCodes['INTER'+_0x522a2e(0x675,0x5c8)+_0x522a2e(0x55a,0x5ed)]);}}}),_0x27f80e[_0x16d4dd(0x28e,0x2ce)](_0x5dbc72[_0xa854c6(0x3c8,0x357)],async(_0x35540f,_0x149b64)=>{const _0x48dda3={'nbbRu':function(_0x5631ab,_0x43da78){return _0x5dbc72['VJGLn'](_0x5631ab,_0x43da78);},'bIfvP':_0x5dbc72['xKvGx'],'cqewx':function(_0x400738,_0x94be93){function _0x2ad247(_0x5c1723,_0x4847cf){return _0x42c5(_0x5c1723-0x336,_0x4847cf);}return _0x5dbc72[_0x2ad247(0x5e4,0x5b0)](_0x400738,_0x94be93);},'VycGy':_0x302db1(0x276,0x303),'Cqxpy':_0x5dbc72[_0x302db1(0x14e,0x1f5)]},_0x4077ef=_0x5dbc72['gCaaP'](sanitizeSatelliteId,_0x35540f[_0x302db1(0x265,0x209)][_0x302db1(0x26a,0x201)+_0x302db1(0x298,0x34e)+'d']),_0x428618=_0x35540f[_0x302db1(0x1e9,0x209)][_0x302db1(0x411,0x365)+'Id']?_0x5dbc72['lfBGl'](String,_0x35540f[_0x81922e(0x27,0xcf)][_0x302db1(0x349,0x365)+'Id'])['repla'+'ce'](/[^a-z0-9-]/g,'')['subst'+_0x302db1(0x1dd,0x26d)](0x2fa*-0x1+-0x26ba+0x29b4,0x1ef1+-0xcc5+-0x47b*0x4)||_0x5dbc72[_0x81922e(0x13e,0x195)]:_0x5dbc72[_0x81922e(0x22f,0x195)];function _0x81922e(_0x14a058,_0x9e991a){return _0x16d4dd(_0x14a058,_0x9e991a- -0x1d7);}const _0x2175a6=Math[_0x81922e(0x14e,0xbf)](Math[_0x302db1(0x1cc,0x248)](_0x5dbc72[_0x302db1(0x335,0x307)](parseInt,_0x35540f['query'][_0x81922e(0x10b,0xd5)],-0x1697+0xf6f+-0x3*-0x266)||-0xa3d*0x1+0x60e+0x461,0x3f5*0x1+-0x1*0x1d39+0x1945),0x1*-0xdbd+-0x1df2+0x2c77*0x1),_0x2a4469=_0x5dbc72[_0x302db1(0x20a,0x29a)](_0x4077ef,_0x5dbc72[_0x302db1(0x2bb,0x2cf)])?_0x302db1(0x3a4,0x365)+':'+_0x428618+':main':_0x81922e(0x2a1,0x22b)+':'+_0x428618+(_0x302db1(0x37d,0x2c8)+_0x302db1(0x1ac,0x232)+_0x81922e(0x34,0xc4)+_0x81922e(0x141,0x167))+_0x4077ef;function _0x302db1(_0x40f305,_0x2e19a9){return _0x16d4dd(_0x40f305,_0x2e19a9- -0x9d);}_0x2195ff(_0x5dbc72[_0x81922e(0x255,0x1b1)],'[Sate'+'llite'+_0x81922e(0x152,0x1d3)+'ching'+_0x81922e(0x1cd,0x17a)+_0x302db1(0x1dc,0x253)+'or\x20se'+_0x81922e(0x4e,0xb9)+':\x20'+_0x2a4469);try{const _0x45a551=await _0x5dbc72[_0x302db1(0x240,0x292)](getSessionsStorePath,_0x428618),_0x202edb=await _0x5dbc72[_0x81922e(0xef,0x158)](getSessionsDir,_0x428618);let _0x1c13ea={};try{const _0x387778=await _0xc02c65[_0x81922e(0x2,0xaa)+_0x81922e(0x2c6,0x220)](_0x45a551,_0x5dbc72[_0x81922e(0x190,0x101)]);_0x1c13ea=JSON[_0x81922e(0x9b,0xfe)](_0x387778);}catch(_0x5e96b5){if(_0x5dbc72[_0x302db1(0x2dc,0x2d6)](_0x5dbc72[_0x302db1(0x28e,0x335)],_0x302db1(0x1f2,0x2ae))){for(const _0x59c3f7 of _0x4d3c93[_0x81922e(0x144,0x190)+'nt']){_0x48dda3[_0x302db1(0x1bd,0x261)](_0x59c3f7[_0x81922e(0x194,0x164)],_0x48dda3[_0x81922e(0x203,0x192)])&&_0x59c3f7[_0x81922e(0x1a4,0xf5)]&&(_0x1b8ee5+=_0x48dda3[_0x81922e(0x10f,0x13f)](_0x59c3f7[_0x81922e(0x108,0xf5)],'\x0a'));}_0x1ef6f6=_0x46b553[_0x81922e(0x174,0x18d)]();}else{if(_0x5dbc72[_0x81922e(0x142,0x1c2)](_0x5e96b5['code'],_0x5dbc72[_0x302db1(0x234,0x1f5)])){const _0x37b27a={};return _0x37b27a['ok']=!![],_0x37b27a['sessi'+'onKey']=_0x2a4469,_0x37b27a[_0x81922e(0x257,0x19e)+'ges']=[],_0x149b64[_0x81922e(0x24,0xce)](_0x37b27a);}throw _0x5e96b5;}}const _0x5f33e3=_0x1c13ea[_0x2a4469];if(!_0x5f33e3||!_0x5f33e3[_0x81922e(0x12d,0x1c1)+_0x81922e(0xbe,0x142)]&&!_0x5f33e3[_0x302db1(0x350,0x2fb)+'onFil'+'e']){const _0x1db97d={};return _0x1db97d['ok']=!![],_0x1db97d[_0x302db1(0x31a,0x2fb)+_0x302db1(0x228,0x283)]=_0x2a4469,_0x1db97d[_0x302db1(0x36c,0x2d8)+_0x81922e(0x12a,0xe7)]=[],_0x149b64[_0x302db1(0x14b,0x208)](_0x1db97d);}let _0x5b6641;if(_0x5f33e3[_0x81922e(0x1ec,0x1c1)+_0x81922e(0x1d1,0x18f)+'e']){if(_0x5dbc72['sHJOS']===_0x5dbc72['CZCka']){if(!/^[a-f0-9-]+$/i[_0x81922e(0x1b4,0x13e)](_0xd6a5af[_0x302db1(0x2c9,0x2fb)+_0x81922e(0x14f,0x142)])){_0x5dbc72[_0x302db1(0x2e8,0x225)](_0x5e960f,'warn',_0x302db1(0x2e7,0x287)+_0x81922e(0x289,0x210)+_0x302db1(0x3ed,0x347)+'alid\x20'+_0x302db1(0x263,0x2fb)+'onId\x20'+_0x81922e(0x12d,0x1d1)+_0x302db1(0x249,0x244)+_0x413b4f[_0x302db1(0x25f,0x2fb)+'onId']);const _0x5d921b={};return _0x5d921b['ok']=!![],_0x5d921b[_0x81922e(0x1fd,0x1c1)+_0x81922e(0x1ff,0x149)]=_0x12eda2,_0x5d921b['messa'+_0x81922e(0x122,0xe7)]=[],_0x4a7736[_0x81922e(0x117,0xce)](_0x5d921b);}_0x2a7622=_0xc7fad2[_0x81922e(0x118,0x140)](_0x18b251,_0x45c5d3[_0x302db1(0x351,0x2fb)+_0x302db1(0x1f6,0x27c)]+('.json'+'l'));}else _0x5b6641=_0x5f33e3[_0x81922e(0x248,0x1c1)+_0x302db1(0x304,0x2c9)+'e'];}else{if(_0x5dbc72['xcHyL'](_0x5dbc72[_0x302db1(0x19b,0x1f7)],_0x81922e(0x2c,0xd3))){if(!/^[a-f0-9-]+$/i['test'](_0x5f33e3[_0x81922e(0x140,0x1c1)+_0x302db1(0x251,0x27c)])){_0x5dbc72[_0x81922e(0x202,0x175)](_0x2195ff,_0x5dbc72[_0x302db1(0x2ba,0x35d)],_0x302db1(0x305,0x287)+_0x302db1(0x345,0x34a)+_0x302db1(0x3f4,0x347)+'alid\x20'+_0x302db1(0x26f,0x2fb)+_0x81922e(0xfb,0x1b7)+_0x302db1(0x363,0x30b)+'t:\x20'+_0x5f33e3[_0x81922e(0x277,0x1c1)+'onId']);const _0x464be9={};return _0x464be9['ok']=!![],_0x464be9[_0x302db1(0x2cb,0x2fb)+_0x81922e(0x169,0x149)]=_0x2a4469,_0x464be9[_0x302db1(0x348,0x2d8)+'ges']=[],_0x149b64[_0x302db1(0x1cc,0x208)](_0x464be9);}_0x5b6641=_0x4e8200[_0x81922e(0x12f,0x140)](_0x202edb,_0x5f33e3[_0x302db1(0x37a,0x2fb)+'onId']+(_0x302db1(0x31f,0x359)+'l'));}else{if(_0x5dbc72[_0x81922e(0x194,0x160)](_0x53cb36[_0x302db1(0x1b4,0x268)],_0x5dbc72[_0x81922e(0x12,0xbb)])){const _0x3c9333={};return _0x3c9333['ok']=!![],_0x3c9333[_0x302db1(0x36a,0x2fb)+_0x302db1(0x286,0x283)]=_0x5a22bf,_0x3c9333['messa'+_0x302db1(0x23e,0x221)]=[],_0x497a9e[_0x302db1(0x167,0x208)](_0x3c9333);}throw _0x422644;}}const _0x418cec=_0x4e8200['resol'+'ve'](_0x5b6641);if(!_0x418cec[_0x302db1(0x261,0x2c4)+_0x81922e(0x5b,0x103)](_0x4e8200[_0x302db1(0x17c,0x20c)+'ve'](_0x202edb))){if(_0x5dbc72['gMFGb']===_0x5dbc72['XmLUr'])_0x483b14=_0x31e41a[_0x81922e(0x137,0x190)+'nt'];else{_0x2195ff(_0x302db1(0x256,0x303),_0x81922e(0xcd,0x14d)+_0x302db1(0x2d8,0x34a)+_0x81922e(0x11d,0x1d5)+_0x81922e(0x172,0x1e9)+'versa'+'l\x20blo'+_0x81922e(0x135,0x1f3)+_0x302db1(0x2a5,0x2a3)+_0x302db1(0x2cd,0x2ee)+':\x20'+_0x418cec);const _0xf072cb={};return _0xf072cb['ok']=!![],_0xf072cb[_0x302db1(0x319,0x2fb)+'onKey']=_0x2a4469,_0xf072cb[_0x302db1(0x396,0x2d8)+_0x81922e(0x32,0xe7)]=[],_0x149b64[_0x302db1(0x1f6,0x208)](_0xf072cb);}}let _0x134b49='';try{_0x134b49=await _0xc02c65[_0x302db1(0x1f0,0x1e4)+'ile'](_0x5b6641,_0x5dbc72[_0x302db1(0x17a,0x23b)]);}catch(_0xc72590){if(_0x5dbc72['hDMsT']!==_0x5dbc72[_0x302db1(0x267,0x273)]){_0x2ffa5a(_0x48dda3[_0x302db1(0x2c3,0x300)],_0x302db1(0x29d,0x287)+_0x302db1(0x326,0x34a)+_0x302db1(0x396,0x30f)+_0x302db1(0x2a0,0x323)+_0x302db1(0x2b5,0x366)+_0x81922e(0x24f,0x1b5)+_0x302db1(0x2ed,0x32d)+'in\x20hi'+_0x302db1(0x24c,0x2ee)+':\x20'+_0x82a0c1);const _0x54944f={};return _0x54944f['ok']=!![],_0x54944f[_0x302db1(0x242,0x2fb)+_0x81922e(0x88,0x149)]=_0x4da88d,_0x54944f['messa'+_0x302db1(0x161,0x221)]=[],_0x535492['json'](_0x54944f);}else{if(_0x5dbc72[_0x302db1(0x349,0x29a)](_0xc72590[_0x81922e(0xf3,0x12e)],_0x302db1(0x27b,0x241)+'T')){const _0xfe7803={};return _0xfe7803['ok']=!![],_0xfe7803[_0x302db1(0x2f1,0x2fb)+_0x81922e(0x1cf,0x149)]=_0x2a4469,_0xfe7803['messa'+_0x302db1(0x2ba,0x221)]=[],_0x149b64[_0x81922e(0x32,0xce)](_0xfe7803);}throw _0xc72590;}}const _0x4bc028=_0x5dbc72['nAQPW'](_0x2fd042,_0x134b49,_0x2175a6),_0x487a0f={};_0x487a0f['ok']=!![],_0x487a0f[_0x302db1(0x2d7,0x2fb)+_0x302db1(0x24f,0x283)]=_0x2a4469,_0x487a0f['messa'+'ges']=_0x4bc028,_0x487a0f['sessi'+_0x302db1(0x290,0x27c)]=_0x5f33e3[_0x302db1(0x2c8,0x2fb)+'onId'],_0x149b64['json'](_0x487a0f);}catch(_0x3a13a8){if(_0x5dbc72['hNicD'](_0x81922e(0xe1,0x17f),_0x5dbc72[_0x302db1(0x1e1,0x266)])){if(_0x2e0f10[_0x302db1(0x2af,0x268)]===_0x48dda3['Cqxpy']){const _0x512cea={};return _0x512cea['ok']=!![],_0x512cea[_0x302db1(0x3ac,0x2fb)+'onKey']=_0x91e49d,_0x512cea[_0x81922e(0x11d,0x19e)+_0x302db1(0x25d,0x221)]=[],_0x32b952[_0x302db1(0x1b1,0x208)](_0x512cea);}throw _0x130a09;}else _0x2195ff(_0x5dbc72['gQTAP'],'[Sate'+_0x81922e(0x266,0x210)+']\x20His'+_0x302db1(0x28a,0x306)+_0x302db1(0x349,0x29c)+'\x20erro'+_0x302db1(0x32e,0x2d9)+_0x3a13a8[_0x81922e(0x125,0x19e)+'ge']),_0x5dbc72[_0x81922e(0x1d1,0x118)](internalError,_0x149b64,_0x5dbc72[_0x81922e(0x1a3,0x1b6)],ErrorCodes[_0x81922e(0x5b,0xd0)+_0x302db1(0x2e6,0x316)+_0x302db1(0x150,0x1fb)]);}});function _0x2fd042(_0x3d03c8,_0x2f48d7){const _0x331947={'oxbOE':function(_0x22bb21,_0x5a683e,_0x15f792,_0x1ff23e){function _0x392970(_0x27e801,_0x573177){return _0x42c5(_0x573177- -0x1a0,_0x27e801);}return _0x5dbc72[_0x392970(-0xa2,0x3)](_0x22bb21,_0x5a683e,_0x15f792,_0x1ff23e);}};function _0x58e9c3(_0x74f198,_0x36727d){return _0xa854c6(_0x74f198-0x270,_0x36727d);}const _0x2c7cad=_0x3d03c8[_0x414104(-0xb5,-0x9a)]()[_0x414104(0xc,-0x1b)]('\x0a')['filte'+'r'](_0x5bca14=>_0x5bca14[_0x58e9c3(0x608,0x556)]()),_0x1993d8=[];function _0x414104(_0x322db0,_0x55919c){return _0xa854c6(_0x55919c- -0x432,_0x322db0);}for(const _0x5ca2a2 of _0x2c7cad){if(_0x5dbc72[_0x58e9c3(0x656,0x70b)](_0x5dbc72[_0x414104(-0x115,-0x11f)],_0x414104(-0x44,0x3))){const _0x5406fd={};return _0x5406fd['ok']=!![],_0x5406fd[_0x58e9c3(0x63c,0x6bf)+'ons']=[],_0x38ac1d[_0x58e9c3(0x549,0x55d)](_0x5406fd);}else try{if(_0x5dbc72[_0x58e9c3(0x680,0x68d)]===_0x58e9c3(0x537,0x494))_0x3eddc8('error',_0x58e9c3(0x5c8,0x561)+_0x414104(-0x83,-0x17)+_0x414104(0x5a,-0x4a)+'ire\x20e'+_0x58e9c3(0x63b,0x5de)+'\x20'+_0x59a56d[_0x414104(-0xb9,-0x89)+'ge']),nBFAtw[_0x58e9c3(0x63e,0x5f4)](_0x4e1c79,_0x21111d,'Faile'+_0x414104(-0xf9,-0x62)+'retir'+_0x58e9c3(0x60e,0x559)+_0x58e9c3(0x56c,0x5d7)+'e',_0x265495['INTER'+_0x58e9c3(0x657,0x6c2)+'RROR']);else{const _0x202c12=JSON[_0x414104(-0x175,-0x129)](_0x5ca2a2),_0x3fb902=_0x202c12[_0x58e9c3(0x619,0x5dd)+'ge']||_0x202c12;if(_0x3fb902[_0x414104(-0x82,-0xa6)]===_0x5dbc72[_0x414104(-0xb8,-0xa2)]||_0x5dbc72['alVBQ'](_0x3fb902[_0x58e9c3(0x5fc,0x571)],_0x5dbc72[_0x414104(-0x84,-0xfe)])){if(_0x5dbc72[_0x414104(0x80,-0x3)](_0x414104(-0x1cf,-0x137),_0x5dbc72[_0x414104(-0xf9,-0x79)]))_0x271a33[_0x58e9c3(0x5c9,0x668)]({'text':_0x554d16,'type':_0x5dbc72[_0x414104(-0x81,-0x65)](_0xd3ef90[_0x58e9c3(0x5fc,0x60c)],_0x5dbc72[_0x58e9c3(0x694,0x6c5)])?_0x5dbc72[_0x58e9c3(0x694,0x5e0)]:_0x5dbc72[_0x58e9c3(0x646,0x6fd)],'timestamp':_0x46e119[_0x58e9c3(0x6a0,0x703)+'tamp']?new _0x4a3e36(_0x1450e1[_0x58e9c3(0x6a0,0x6c0)+_0x58e9c3(0x691,0x641)])[_0x58e9c3(0x55e,0x511)+'me']():_0x317164[_0x414104(0x2f,-0x2)+_0x414104(-0x18,-0x11)]?new _0x241e3c(_0x457bbd[_0x414104(-0x6e,-0x2)+'tamp'])[_0x414104(-0x111,-0x144)+'me']():_0x2cd849[_0x58e9c3(0x626,0x638)](),'fromGateway':!![]});else continue;}let _0x921ed7='';if(_0x5dbc72[_0x58e9c3(0x672,0x679)](typeof _0x3fb902[_0x58e9c3(0x60b,0x621)+'nt'],_0x5dbc72[_0x58e9c3(0x675,0x730)]))_0x921ed7=_0x3fb902[_0x58e9c3(0x60b,0x6ae)+'nt'];else{if(Array[_0x58e9c3(0x5a8,0x650)+'ay'](_0x3fb902[_0x58e9c3(0x60b,0x5d8)+'nt'])){for(const _0x11a4f3 of _0x3fb902['conte'+'nt']){if(_0x5dbc72[_0x58e9c3(0x645,0x6be)](_0x5dbc72[_0x58e9c3(0x633,0x6a7)],_0x5dbc72[_0x414104(-0xa2,-0x6f)])){if(_0x11a4f3[_0x414104(-0xa8,-0xc3)]===_0x414104(-0x84,-0x132)&&_0x11a4f3[_0x58e9c3(0x570,0x4d8)]){if(_0x5dbc72[_0x58e9c3(0x57d,0x591)](_0x5dbc72['TzjXL'],_0x414104(0x44,-0x6e)))_0x921ed7+=_0x11a4f3[_0x58e9c3(0x570,0x60a)]+'\x0a';else{if(_0x5dbc72['FYBTY'](_0x4aaa01[_0x414104(-0x8c,-0xf9)],_0x414104(-0x159,-0x120)+'T'))_0x5dbc72['dbgPR'](_0x274cbf,_0x5dbc72[_0x58e9c3(0x69e,0x637)],_0x58e9c3(0x5c8,0x518)+_0x58e9c3(0x68b,0x6ac)+']\x20Ses'+_0x58e9c3(0x64f,0x5f4)+_0x414104(-0x87,0x1)+_0x58e9c3(0x68a,0x665)+_0x58e9c3(0x64a,0x633)+_0x58e9c3(0x65d,0x65a)+_0x423ddd);else throw _0x5dc015;}}}else _0x2da9b1[_0x414104(-0x2f,-0xd9)](_0x44cfb3[_0x58e9c3(0x567,0x4c3)+'cript'+'sDele'+_0x414104(-0x10b,-0x13d)][_0x414104(-0x148,-0x105)+'h']+(_0x58e9c3(0x545,0x587)+_0x58e9c3(0x544,0x49a)+_0x414104(-0x1c,-0xb0)+_0x414104(-0x160,-0x142)+'ed'));}_0x921ed7=_0x921ed7[_0x414104(-0x13a,-0x9a)]();}}if(!_0x921ed7)continue;const _0x4ae5bb=_0x5dbc72[_0x58e9c3(0x5db,0x518)](_0x921ed7,_0x5dbc72[_0x414104(-0x4f,-0x8f)])||_0x921ed7[_0x414104(-0x130,-0x143)+_0x414104(0xc,-0x12)](_0x414104(-0x11e,-0x112)+_0x414104(-0xe5,-0x10a)+'OK')||_0x921ed7[_0x414104(-0x148,-0x143)+_0x58e9c3(0x690,0x70f)](_0x5dbc72[_0x414104(-0x19e,-0x11e)])||_0x921ed7[_0x58e9c3(0x55f,0x54b)+'des'](_0x5dbc72[_0x58e9c3(0x5a0,0x5e1)]);if(_0x4ae5bb)continue;if(_0x3fb902[_0x414104(-0xae,-0xa6)]===_0x5dbc72['TxMIz']){const _0x23630a=_0x921ed7[_0x414104(-0x15e,-0x143)+_0x414104(-0x9f,-0x12)](_0x5dbc72['nMMrm'])||_0x921ed7['inclu'+_0x58e9c3(0x690,0x70a)](_0x5dbc72['bPxhg'])||_0x921ed7[_0x58e9c3(0x608,0x5d1)]()===_0x5dbc72[_0x414104(-0x20d,-0x167)];if(_0x23630a)continue;}if(_0x5dbc72[_0x414104(-0x1b,-0x5d)](_0x3fb902['role'],_0x5dbc72[_0x58e9c3(0x646,0x5ae)])&&_0x5dbc72[_0x58e9c3(0x645,0x601)](_0x921ed7[_0x414104(-0x137,-0x9a)](),_0x5dbc72[_0x58e9c3(0x53b,0x49d)]))continue;_0x3fb902[_0x414104(-0x87,-0xa6)]&&(_0x5dbc72[_0x58e9c3(0x5b5,0x577)](_0x5dbc72[_0x58e9c3(0x670,0x650)],_0x5dbc72['XZAdF'])?_0x2476c6[_0x414104(-0x58,-0xd9)](_0x4c49d3[_0x58e9c3(0x63c,0x6e3)+_0x58e9c3(0x5c4,0x510)+_0x58e9c3(0x59e,0x4eb)+'ted'][_0x58e9c3(0x59d,0x55e)+'h']+('\x20sess'+_0x58e9c3(0x5d2,0x53b)+_0x58e9c3(0x60c,0x5dd)+_0x414104(-0xc6,-0x59))):_0x1993d8['push']({'text':_0x921ed7,'type':_0x5dbc72['JVHZG'](_0x3fb902[_0x58e9c3(0x5fc,0x561)],_0x5dbc72[_0x414104(-0xbf,-0xe)])?_0x5dbc72[_0x58e9c3(0x694,0x610)]:_0x5dbc72[_0x414104(0x9,-0x5c)],'timestamp':_0x3fb902[_0x58e9c3(0x6a0,0x66e)+_0x414104(-0xcb,-0x11)]?new Date(_0x3fb902['times'+_0x58e9c3(0x691,0x622)])[_0x414104(-0x158,-0x144)+'me']():_0x202c12['times'+_0x58e9c3(0x691,0x5ec)]?new Date(_0x202c12[_0x58e9c3(0x6a0,0x5fa)+_0x414104(-0x37,-0x11)])[_0x58e9c3(0x55e,0x5b1)+'me']():Date[_0x414104(-0x20,-0x7c)](),'fromGateway':!![]}));}}catch{}}return _0x1993d8['slice'](-_0x2f48d7);}_0x27f80e['get'](_0x5dbc72[_0x16d4dd(0x3c8,0x30b)],async(_0x2c8738,_0x19ff95)=>{function _0x1db4a5(_0x6c152a,_0x1556fb){return _0x16d4dd(_0x1556fb,_0x6c152a-0x248);}const _0x29b5ab={'EKlyc':function(_0x54b3a8,_0x2d7ec8){function _0x114f71(_0x5af486,_0x405526){return _0x42c5(_0x5af486-0x30d,_0x405526);}return _0x5dbc72[_0x114f71(0x576,0x5b7)](_0x54b3a8,_0x2d7ec8);},'BlhiP':_0x5dbc72[_0x2d1949(0x36c,0x3b3)],'oFnbC':function(_0x26169d,_0x28d83b,_0x1fca7c,_0x310737){function _0x11d2db(_0x479490,_0x1d1dda){return _0x2d1949(_0x1d1dda- -0x512,_0x479490);}return _0x5dbc72[_0x11d2db(-0x165,-0x1ae)](_0x26169d,_0x28d83b,_0x1fca7c,_0x310737);},'VRjzI':_0x5dbc72[_0x1db4a5(0x606,0x635)],'NOqTD':_0x5dbc72[_0x1db4a5(0x550,0x57f)],'exLzk':function(_0x29689c,_0x2b8f93){function _0x5b3365(_0x44e122,_0x3832a3){return _0x1db4a5(_0x44e122- -0x200,_0x3832a3);}return _0x5dbc72[_0x5b3365(0x382,0x322)](_0x29689c,_0x2b8f93);},'sNYXT':_0x5dbc72['vvmQj']};function _0x2d1949(_0x1cf067,_0x5c1bf8){return _0x16d4dd(_0x5c1bf8,_0x1cf067-0xda);}try{if(_0x5dbc72['XUxIS'](_0x1db4a5(0x59c,0x4ee),_0x5dbc72[_0x2d1949(0x410,0x39f)])){if(_0x29b5ab['EKlyc'](_0x12532a[_0x2d1949(0x3df,0x480)],_0x29b5ab[_0x1db4a5(0x60e,0x5b4)])){const _0xe2d118={};return _0xe2d118['ok']=!![],_0xe2d118[_0x2d1949(0x472,0x43c)+_0x2d1949(0x3c7,0x379)]=[],_0x89bbcf[_0x2d1949(0x37f,0x36d)](_0xe2d118);}throw _0x259532;}else{const _0x145c4c=await _0x5dbc72['sOYzs'](getOpenClawStateDir),_0x407afc=_0x4e8200[_0x1db4a5(0x55f,0x49f)](_0x145c4c,_0x5dbc72[_0x1db4a5(0x585,0x5dc)]);let _0x21af17=[];try{if(_0x5dbc72[_0x2d1949(0x3eb,0x49d)]('yuCEh',_0x2d1949(0x3a0,0x30c))){const _0x49f83e={};_0x49f83e[_0x1db4a5(0x574,0x4e4)+_0x2d1949(0x478,0x524)+_0x2d1949(0x4ce,0x441)]=!![],_0x21af17=await _0xc02c65['readd'+'ir'](_0x407afc,_0x49f83e);}else return nlVdnJ[_0x1db4a5(0x515,0x4ec)](_0x348aae,_0x145a80,nlVdnJ[_0x2d1949(0x49d,0x52c)],_0xa446b1['VALID'+_0x1db4a5(0x4cd,0x44b)+'_ERRO'+'R']);}catch(_0x5658d3){if(_0x5dbc72[_0x1db4a5(0x5e9,0x698)](_0x5658d3[_0x1db4a5(0x54d,0x52d)],_0x2d1949(0x3b8,0x336)+'T')){if(_0x5dbc72[_0x1db4a5(0x59d,0x651)](_0x5dbc72[_0x1db4a5(0x63b,0x5a0)],_0x5dbc72[_0x2d1949(0x4cd,0x491)]))_0x101c65[_0x2d1949(0x3ff,0x408)](nlVdnJ[_0x1db4a5(0x61f,0x609)]);else{const _0x11c9ec={};return _0x11c9ec['ok']=!![],_0x11c9ec['sessi'+'ons']=[],_0x19ff95[_0x1db4a5(0x4ed,0x52e)](_0x11c9ec);}}throw _0x5658d3;}const _0x42ca60=[];for(const _0x379e00 of _0x21af17){if(_0x5dbc72[_0x2d1949(0x490,0x4e5)](_0x5dbc72[_0x1db4a5(0x53f,0x581)],_0x5dbc72[_0x1db4a5(0x61b,0x6c6)])){if(!_0x379e00['isDir'+'ector'+'y']())continue;const _0x2b7c01=_0x379e00[_0x1db4a5(0x512,0x49e)];if(_0x2b7c01[_0x1db4a5(0x5a9,0x631)+_0x2d1949(0x3b4,0x419)](_0x5dbc72[_0x2d1949(0x37e,0x317)]))continue;const _0xe74ad5=_0x4e8200[_0x2d1949(0x3f1,0x3ce)](_0x407afc,_0x2b7c01,_0x5dbc72[_0x1db4a5(0x623,0x5ad)],_0x5dbc72[_0x2d1949(0x45e,0x4b8)]);let _0x5257c9;try{if(_0x1db4a5(0x562,0x5e4)===_0x5dbc72[_0x2d1949(0x400,0x439)])_0x5afbe6+=nlVdnJ['exLzk'](_0x3343a9[_0x2d1949(0x3a6,0x428)],'\x0a');else{const _0x2b548f=await _0xc02c65['readF'+'ile'](_0xe74ad5,_0x2d1949(0x4a1,0x510));_0x5257c9=JSON[_0x2d1949(0x3af,0x36b)](_0x2b548f);}}catch{continue;}for(const [_0x514f81,_0x31196f]of Object[_0x2d1949(0x427,0x469)+'es'](_0x5257c9)){const _0x30f66b=_0x514f81[_0x1db4a5(0x602,0x5a8)](/:uplink:satellite:(.+)$/);if(_0x30f66b){if(_0x5dbc72[_0x1db4a5(0x621,0x57c)](_0x5dbc72[_0x2d1949(0x4e0,0x4bd)],_0x2d1949(0x451,0x4ad))){const _0x270907=_0x30f66b[-0x79b*-0x5+0x4*0x394+-0x3456],_0x26b12f={};_0x26b12f[_0x1db4a5(0x5e0,0x5e1)+_0x2d1949(0x3fa,0x402)]=_0x514f81,_0x26b12f['satel'+'liteI'+'d']=_0x270907,_0x26b12f['agent'+'Id']=_0x2b7c01,_0x26b12f[_0x2d1949(0x447,0x3ce)+_0x2d1949(0x445,0x483)]=_0x31196f[_0x1db4a5(0x5b5,0x5e7)+_0x2d1949(0x445,0x467)]||-0x4*0x86a+0xe51+-0x1*-0x1357,_0x26b12f[_0x2d1949(0x38f,0x3a0)]=_0x31196f[_0x2d1949(0x38f,0x439)]||_0x5dbc72['wMnvG'],_0x26b12f[_0x2d1949(0x40f,0x35a)+'Token'+'s']=_0x31196f['total'+_0x2d1949(0x388,0x354)+'s']||0x31d+0x845+-0x1f*0x5e,_0x42ca60[_0x2d1949(0x3ff,0x368)](_0x26b12f);continue;}else _0x16eda9('error',_0x1db4a5(0x56c,0x555)+_0x1db4a5(0x62f,0x595)+_0x1db4a5(0x539,0x511)+_0x2d1949(0x4bc,0x4c0)+'sions'+'\x20erro'+_0x1db4a5(0x5be,0x64a)+_0x5eb8b7[_0x2d1949(0x44f,0x506)+'ge']),_0x29b5ab[_0x1db4a5(0x515,0x516)](_0x5eabed,_0x3e23c6,_0x29b5ab['sNYXT'],_0x48b46f['INTER'+_0x2d1949(0x48d,0x42f)+_0x1db4a5(0x4e0,0x59b)]);}const _0x4c9fd4=_0x31196f['label']||'';if(_0x4c9fd4[_0x2d1949(0x43b,0x461)+_0x2d1949(0x3b4,0x341)](_0x5dbc72[_0x2d1949(0x4c9,0x54d)])){const _0x439ee3=_0x4c9fd4[_0x1db4a5(0x4f0,0x4d4)](-0x887*-0x1+-0x6ca*0x1+0x3*-0x92)['trim']();if(!_0x439ee3)continue;const _0x1abb81=_0x5dbc72[_0x1db4a5(0x505,0x57f)](_0x2d1949(0x422,0x3fe)+_0x1db4a5(0x53e,0x5f5),Buffer[_0x2d1949(0x3ee,0x3f5)](_0x514f81)[_0x2d1949(0x40c,0x3ef)+_0x1db4a5(0x610,0x54f)](_0x5dbc72[_0x2d1949(0x392,0x3e4)])[_0x2d1949(0x382,0x3a5)](0x1*0xe37+-0x202e+0x11f7,0x1*-0x41e+0x13fe+0x17*-0xb0)),_0x111143={};_0x111143[_0x2d1949(0x472,0x42f)+_0x1db4a5(0x568,0x507)]=_0x514f81,_0x111143['satel'+_0x2d1949(0x4c5,0x443)+'d']=_0x1abb81,_0x111143[_0x1db4a5(0x64a,0x616)+'Id']=_0x2b7c01,_0x111143[_0x2d1949(0x3a4,0x424)]=_0x439ee3,_0x111143[_0x1db4a5(0x590,0x506)+'ed']=!![],_0x111143[_0x2d1949(0x447,0x480)+_0x1db4a5(0x5b3,0x5a8)]=_0x31196f[_0x1db4a5(0x5b5,0x620)+_0x2d1949(0x445,0x413)]||-0x8f*0x26+0x258b+-0x1*0x1051,_0x111143[_0x2d1949(0x38f,0x3bb)]=_0x31196f[_0x2d1949(0x38f,0x417)]||_0x5dbc72[_0x2d1949(0x38a,0x3be)],_0x111143[_0x2d1949(0x40f,0x3b7)+_0x2d1949(0x388,0x407)+'s']=_0x31196f[_0x2d1949(0x40f,0x362)+_0x2d1949(0x388,0x320)+'s']||-0x299+0xa*0x139+-0x9a1,_0x42ca60['push'](_0x111143);}}}else _0x5dbc72[_0x2d1949(0x461,0x4df)](_0x343891,_0x2d1949(0x491,0x3fd),_0x1db4a5(0x56c,0x5ef)+'llite'+_0x1db4a5(0x4fc,0x566)+'tory\x20'+_0x1db4a5(0x581,0x5e4)+_0x2d1949(0x4cf,0x56a)+_0x1db4a5(0x5be,0x501)+_0x2bd784[_0x2d1949(0x44f,0x401)+'ge']),_0x5dbc72[_0x1db4a5(0x537,0x4ed)](_0xefcae9,_0x1ca381,_0x5dbc72[_0x1db4a5(0x5d5,0x601)],_0xa0c4e5[_0x1db4a5(0x4ef,0x547)+'NAL_E'+_0x1db4a5(0x4e0,0x43a)]);}_0x42ca60[_0x2d1949(0x407,0x454)]((_0x3e6e0f,_0x3eba28)=>_0x3eba28[_0x1db4a5(0x5b5,0x5ef)+_0x2d1949(0x445,0x456)]-_0x3e6e0f['updat'+_0x1db4a5(0x5b3,0x52d)]);const _0xf3ef7f={};_0xf3ef7f['ok']=!![],_0xf3ef7f['sessi'+_0x2d1949(0x3c7,0x424)]=_0x42ca60,_0x19ff95[_0x2d1949(0x37f,0x2e8)](_0xf3ef7f);}}catch(_0x57ea8a){_0x5dbc72[_0x2d1949(0x403,0x483)](_0x2195ff,_0x5dbc72[_0x2d1949(0x44c,0x49a)],'[Sate'+_0x1db4a5(0x62f,0x60f)+_0x2d1949(0x3cb,0x3ed)+_0x2d1949(0x4bc,0x4e5)+_0x1db4a5(0x5f3,0x632)+_0x1db4a5(0x63d,0x581)+_0x2d1949(0x450,0x480)+_0x57ea8a[_0x1db4a5(0x5bd,0x5ad)+'ge']),_0x5dbc72['mUrPR'](internalError,_0x19ff95,_0x5dbc72[_0x2d1949(0x46f,0x503)],ErrorCodes['INTER'+_0x1db4a5(0x5fb,0x67d)+_0x1db4a5(0x4e0,0x555)]);}});}