@camera.ui/browser 0.0.71 → 0.0.73

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 (90) hide show
  1. package/dist/bundle.js +1 -1
  2. package/dist/types/packages/client/browser/src/proxy/cameraDevice.d.ts +10 -2
  3. package/dist/types/packages/client/browser/src/proxy/deviceManager.d.ts +9 -6
  4. package/dist/types/packages/client/browser/src/proxy/pluginsManager.d.ts +4 -1
  5. package/dist/types/packages/client/browser/src/proxy/systemManager.d.ts +4 -1
  6. package/dist/types/packages/client/browser/src/socket.d.ts +6 -1
  7. package/dist/types/{server/src/camera/streaming/browser/browser-peer-connection.d.ts → packages/client/browser/src/streaming/peer-connection.d.ts} +4 -5
  8. package/dist/types/{server/src/camera/streaming/browser/browser-streaming-session.d.ts → packages/client/browser/src/streaming/streaming-session.d.ts} +8 -7
  9. package/dist/types/{server/src/camera/streaming/browser/webrtc-browser-connection.d.ts → packages/client/browser/src/streaming/webrtc-connection.d.ts} +6 -7
  10. package/dist/types/packages/client/browser/src/types.d.ts +26 -2
  11. package/dist/types/server/src/api/controllers/api.controller.d.ts +6 -0
  12. package/dist/types/server/src/api/controllers/auth.controller.d.ts +20 -0
  13. package/dist/types/server/src/api/controllers/backup.controller.d.ts +10 -0
  14. package/dist/types/server/src/api/controllers/cameras.controller.d.ts +33 -0
  15. package/dist/types/server/src/api/controllers/config.controller.d.ts +14 -0
  16. package/dist/types/server/src/api/controllers/files.controller.d.ts +8 -0
  17. package/dist/types/server/src/api/controllers/plugins.controller.d.ts +54 -0
  18. package/dist/types/server/src/api/controllers/streams.controller.d.ts +12 -0
  19. package/dist/types/server/src/api/controllers/system.controller.d.ts +14 -0
  20. package/dist/types/server/src/api/controllers/users.controller.d.ts +15 -0
  21. package/dist/types/server/src/api/database/index.d.ts +1 -1
  22. package/dist/types/server/src/api/go2rtc/api/application.d.ts +1 -1
  23. package/dist/types/server/src/api/go2rtc/api/config.d.ts +1 -1
  24. package/dist/types/server/src/api/go2rtc/api/snapshot.d.ts +1 -1
  25. package/dist/types/server/src/api/go2rtc/api/streams.d.ts +1 -1
  26. package/dist/types/server/src/api/index.d.ts +18 -0
  27. package/dist/types/server/src/api/middlewares/authPermission.middleware.d.ts +5 -0
  28. package/dist/types/server/src/api/middlewares/authValidation.middleware.d.ts +4 -0
  29. package/dist/types/server/src/api/middlewares/pagination.middleware.d.ts +3 -0
  30. package/dist/types/server/src/api/plugins/cameraui.plugin.d.ts +11 -0
  31. package/dist/types/server/src/api/plugins/database.plugin.d.ts +11 -0
  32. package/dist/types/server/src/api/plugins/go2rtc.plugin.d.ts +11 -0
  33. package/dist/types/server/src/api/plugins/logger.plugin.d.ts +7 -0
  34. package/dist/types/server/src/api/plugins/socket.plugin.d.ts +11 -0
  35. package/dist/types/server/src/api/plugins/system.plugin.d.ts +21 -0
  36. package/dist/types/server/src/api/plugins/useragent.plugin.d.ts +8 -0
  37. package/dist/types/server/src/api/routes/api.routes.d.ts +2 -0
  38. package/dist/types/server/src/api/routes/auth.routes.d.ts +2 -0
  39. package/dist/types/server/src/api/routes/backup.routes.d.ts +2 -0
  40. package/dist/types/server/src/api/routes/cameras.routes.d.ts +2 -0
  41. package/dist/types/server/src/api/routes/config.routes.d.ts +2 -0
  42. package/dist/types/server/src/api/routes/files.routes.d.ts +2 -0
  43. package/dist/types/server/src/api/routes/index.d.ts +7 -0
  44. package/dist/types/server/src/api/routes/plugins.routes.d.ts +2 -0
  45. package/dist/types/server/src/api/routes/streams.routes.d.ts +2 -0
  46. package/dist/types/server/src/api/routes/system.routes.d.ts +2 -0
  47. package/dist/types/server/src/api/routes/users.routes.d.ts +2 -0
  48. package/dist/types/server/src/api/schemas/plugins.schema.d.ts +25 -0
  49. package/dist/types/server/src/api/services/backup.service.d.ts +10 -0
  50. package/dist/types/server/src/api/utils/axios.d.ts +2 -0
  51. package/dist/types/server/src/api/utils/cert.d.ts +11 -0
  52. package/dist/types/server/src/api/utils/moveFiles.d.ts +1 -0
  53. package/dist/types/server/src/api/websocket/nsp/status.d.ts +1 -1
  54. package/dist/types/server/src/api/websocket/types.d.ts +1 -1
  55. package/dist/types/server/src/api.d.ts +5 -5
  56. package/dist/types/server/src/decoder/ffmpeg.d.ts +1 -0
  57. package/dist/types/server/src/decoder/index.d.ts +17 -6
  58. package/dist/types/server/src/decoder/types.d.ts +62 -15
  59. package/dist/types/server/src/decoder/worker/index.d.ts +42 -3
  60. package/dist/types/server/src/{camera/base → devices/camera}/cameraDevice.d.ts +5 -5
  61. package/dist/types/server/src/{camera/controller.d.ts → devices/camera/controller/index.d.ts} +6 -6
  62. package/dist/types/server/src/{camera → devices/camera/controller}/types.d.ts +11 -21
  63. package/dist/types/server/src/{camera/base → devices/camera}/index.d.ts +18 -16
  64. package/dist/types/server/src/{camera → devices/camera}/streaming/peer-connection.d.ts +10 -9
  65. package/dist/types/server/src/{camera → devices/camera}/streaming/streaming-session.d.ts +3 -3
  66. package/dist/types/server/src/{camera → devices/camera}/streaming/webrtc-connection.d.ts +4 -4
  67. package/dist/types/server/src/main.d.ts +21 -0
  68. package/dist/types/server/src/nats/constants.d.ts +1 -0
  69. package/dist/types/server/src/nats/index.d.ts +1 -1
  70. package/dist/types/server/src/nats/proxy/cameraDevice.d.ts +2 -6
  71. package/dist/types/server/src/nats/proxy/deviceManager.d.ts +1 -1
  72. package/dist/types/server/src/nats/server.d.ts +3 -2
  73. package/dist/types/server/src/nats/types.d.ts +14 -28
  74. package/dist/types/server/src/nats/websocket.d.ts +3 -2
  75. package/dist/types/server/src/plugins/base.d.ts +2 -2
  76. package/dist/types/server/src/plugins/node/logger.d.ts +2 -0
  77. package/dist/types/server/src/plugins/node/proxy/cameraDevice.d.ts +10 -6
  78. package/dist/types/server/src/plugins/node/proxy/deviceManager.d.ts +2 -2
  79. package/dist/types/server/src/plugins/node/proxy/queue.d.ts +2 -2
  80. package/dist/types/server/src/plugins/worker-ipc.d.ts +5 -2
  81. package/dist/types/server/src/services/logger/index.d.ts +3 -3
  82. package/dist/types/server/src/utils/pythonInstaller.d.ts +2 -1
  83. package/dist/types/server/src/{camera/utils → utils}/subscribed.d.ts +1 -1
  84. package/dist/types/shared/types/index.d.ts +2 -4
  85. package/package.json +4 -4
  86. package/dist/types/server/src/api/websocket/nsp/frame.d.ts +0 -10
  87. package/dist/types/server/src/camera/base/cameraDeviceBrowser.d.ts +0 -6
  88. package/dist/types/server/src/decoder/worker/runtime/base/index.d.ts +0 -36
  89. package/dist/types/server/src/decoder/worker/runtime/child-process/index.d.ts +0 -17
  90. package/dist/types/server/src/decoder/worker/runtime/worker-thread/index.d.ts +0 -22
package/dist/bundle.js CHANGED
@@ -1 +1 @@
1
- var t={275:(t,e,n)=>{t=n.nmd(t);var r="__lodash_hash_undefined__",i=9007199254740991,s="[object Arguments]",o="[object Boolean]",a="[object Date]",c="[object Function]",u="[object GeneratorFunction]",h="[object Map]",l="[object Number]",f="[object Object]",d="[object Promise]",p="[object RegExp]",g="[object Set]",y="[object String]",b="[object Symbol]",m="[object WeakMap]",v="[object ArrayBuffer]",w="[object DataView]",S="[object Float32Array]",_="[object Float64Array]",E="[object Int8Array]",O="[object Int16Array]",k="[object Int32Array]",A="[object Uint8Array]",T="[object Uint8ClampedArray]",x="[object Uint16Array]",j="[object Uint32Array]",C=/\w*$/,R=/^\[object .+?Constructor\]$/,L=/^(?:0|[1-9]\d*)$/,D={};D[s]=D["[object Array]"]=D[v]=D[w]=D[o]=D[a]=D[S]=D[_]=D[E]=D[O]=D[k]=D[h]=D[l]=D[f]=D[p]=D[g]=D[y]=D[b]=D[A]=D[T]=D[x]=D[j]=!0,D["[object Error]"]=D[c]=D[m]=!1;var B="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,F="object"==typeof self&&self&&self.Object===Object&&self,N=B||F||Function("return this")(),P=e&&!e.nodeType&&e,z=P&&t&&!t.nodeType&&t,I=z&&z.exports===P;function U(t,e){return t.set(e[0],e[1]),t}function M(t,e){return t.add(e),t}function q(t,e,n,r){var i=-1,s=t?t.length:0;for(r&&s&&(n=t[++i]);++i<s;)n=e(n,t[i],i,t);return n}function V(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}function W(t){var e=-1,n=Array(t.size);return t.forEach((function(t,r){n[++e]=[r,t]})),n}function H(t,e){return function(n){return t(e(n))}}function $(t){var e=-1,n=Array(t.size);return t.forEach((function(t){n[++e]=t})),n}var G,J=Array.prototype,K=Function.prototype,Y=Object.prototype,X=N["__core-js_shared__"],Q=(G=/[^.]+$/.exec(X&&X.keys&&X.keys.IE_PROTO||""))?"Symbol(src)_1."+G:"",Z=K.toString,tt=Y.hasOwnProperty,et=Y.toString,nt=RegExp("^"+Z.call(tt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),rt=I?N.Buffer:void 0,it=N.Symbol,st=N.Uint8Array,ot=H(Object.getPrototypeOf,Object),at=Object.create,ct=Y.propertyIsEnumerable,ut=J.splice,ht=Object.getOwnPropertySymbols,lt=rt?rt.isBuffer:void 0,ft=H(Object.keys,Object),dt=Nt(N,"DataView"),pt=Nt(N,"Map"),gt=Nt(N,"Promise"),yt=Nt(N,"Set"),bt=Nt(N,"WeakMap"),mt=Nt(Object,"create"),vt=Mt(dt),wt=Mt(pt),St=Mt(gt),_t=Mt(yt),Et=Mt(bt),Ot=it?it.prototype:void 0,kt=Ot?Ot.valueOf:void 0;function At(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Tt(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function xt(t){var e=-1,n=t?t.length:0;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function jt(t){this.__data__=new Tt(t)}function Ct(t,e,n){var r=t[e];tt.call(t,e)&&qt(r,n)&&(void 0!==n||e in t)||(t[e]=n)}function Rt(t,e){for(var n=t.length;n--;)if(qt(t[n][0],e))return n;return-1}function Lt(t,e,n,r,i,d,m){var R;if(r&&(R=d?r(t,i,d,m):r(t)),void 0!==R)return R;if(!Gt(t))return t;var L=Vt(t);if(L){if(R=function(t){var e=t.length,n=t.constructor(e);return e&&"string"==typeof t[0]&&tt.call(t,"index")&&(n.index=t.index,n.input=t.input),n}(t),!e)return function(t,e){var n=-1,r=t.length;for(e||(e=Array(r));++n<r;)e[n]=t[n];return e}(t,R)}else{var B=zt(t),F=B==c||B==u;if(Ht(t))return function(t,e){if(e)return t.slice();var n=new t.constructor(t.length);return t.copy(n),n}(t,e);if(B==f||B==s||F&&!d){if(V(t))return d?t:{};if(R=function(t){return"function"!=typeof t.constructor||Ut(t)?{}:Gt(e=ot(t))?at(e):{};var e}(F?{}:t),!e)return function(t,e){return Bt(t,Pt(t),e)}(t,function(t,e){return t&&Bt(e,Jt(e),t)}(R,t))}else{if(!D[B])return d?t:{};R=function(t,e,n,r){var i,s=t.constructor;switch(e){case v:return Dt(t);case o:case a:return new s(+t);case w:return function(t,e){var n=e?Dt(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.byteLength)}(t,r);case S:case _:case E:case O:case k:case A:case T:case x:case j:return function(t,e){var n=e?Dt(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)}(t,r);case h:return function(t,e,n){return q(e?n(W(t),!0):W(t),U,new t.constructor)}(t,r,n);case l:case y:return new s(t);case p:return function(t){var e=new t.constructor(t.source,C.exec(t));return e.lastIndex=t.lastIndex,e}(t);case g:return function(t,e,n){return q(e?n($(t),!0):$(t),M,new t.constructor)}(t,r,n);case b:return i=t,kt?Object(kt.call(i)):{}}}(t,B,Lt,e)}}m||(m=new jt);var N=m.get(t);if(N)return N;if(m.set(t,R),!L)var P=n?function(t){return function(t,e,n){var r=e(t);return Vt(t)?r:function(t,e){for(var n=-1,r=e.length,i=t.length;++n<r;)t[i+n]=e[n];return t}(r,n(t))}(t,Jt,Pt)}(t):Jt(t);return function(t,e){for(var n=-1,r=t?t.length:0;++n<r&&!1!==e(t[n],n););}(P||t,(function(i,s){P&&(i=t[s=i]),Ct(R,s,Lt(i,e,n,r,s,t,m))})),R}function Dt(t){var e=new t.constructor(t.byteLength);return new st(e).set(new st(t)),e}function Bt(t,e,n,r){n||(n={});for(var i=-1,s=e.length;++i<s;){var o=e[i],a=r?r(n[o],t[o],o,n,t):void 0;Ct(n,o,void 0===a?t[o]:a)}return n}function Ft(t,e){var n,r,i=t.__data__;return("string"==(r=typeof(n=e))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof e?"string":"hash"]:i.map}function Nt(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return function(t){return!(!Gt(t)||(e=t,Q&&Q in e))&&($t(t)||V(t)?nt:R).test(Mt(t));var e}(n)?n:void 0}At.prototype.clear=function(){this.__data__=mt?mt(null):{}},At.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},At.prototype.get=function(t){var e=this.__data__;if(mt){var n=e[t];return n===r?void 0:n}return tt.call(e,t)?e[t]:void 0},At.prototype.has=function(t){var e=this.__data__;return mt?void 0!==e[t]:tt.call(e,t)},At.prototype.set=function(t,e){return this.__data__[t]=mt&&void 0===e?r:e,this},Tt.prototype.clear=function(){this.__data__=[]},Tt.prototype.delete=function(t){var e=this.__data__,n=Rt(e,t);return!(n<0||(n==e.length-1?e.pop():ut.call(e,n,1),0))},Tt.prototype.get=function(t){var e=this.__data__,n=Rt(e,t);return n<0?void 0:e[n][1]},Tt.prototype.has=function(t){return Rt(this.__data__,t)>-1},Tt.prototype.set=function(t,e){var n=this.__data__,r=Rt(n,t);return r<0?n.push([t,e]):n[r][1]=e,this},xt.prototype.clear=function(){this.__data__={hash:new At,map:new(pt||Tt),string:new At}},xt.prototype.delete=function(t){return Ft(this,t).delete(t)},xt.prototype.get=function(t){return Ft(this,t).get(t)},xt.prototype.has=function(t){return Ft(this,t).has(t)},xt.prototype.set=function(t,e){return Ft(this,t).set(t,e),this},jt.prototype.clear=function(){this.__data__=new Tt},jt.prototype.delete=function(t){return this.__data__.delete(t)},jt.prototype.get=function(t){return this.__data__.get(t)},jt.prototype.has=function(t){return this.__data__.has(t)},jt.prototype.set=function(t,e){var n=this.__data__;if(n instanceof Tt){var r=n.__data__;if(!pt||r.length<199)return r.push([t,e]),this;n=this.__data__=new xt(r)}return n.set(t,e),this};var Pt=ht?H(ht,Object):function(){return[]},zt=function(t){return et.call(t)};function It(t,e){return!!(e=null==e?i:e)&&("number"==typeof t||L.test(t))&&t>-1&&t%1==0&&t<e}function Ut(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Y)}function Mt(t){if(null!=t){try{return Z.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function qt(t,e){return t===e||t!=t&&e!=e}(dt&&zt(new dt(new ArrayBuffer(1)))!=w||pt&&zt(new pt)!=h||gt&&zt(gt.resolve())!=d||yt&&zt(new yt)!=g||bt&&zt(new bt)!=m)&&(zt=function(t){var e=et.call(t),n=e==f?t.constructor:void 0,r=n?Mt(n):void 0;if(r)switch(r){case vt:return w;case wt:return h;case St:return d;case _t:return g;case Et:return m}return e});var Vt=Array.isArray;function Wt(t){return null!=t&&function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=i}(t.length)&&!$t(t)}var Ht=lt||function(){return!1};function $t(t){var e=Gt(t)?et.call(t):"";return e==c||e==u}function Gt(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function Jt(t){return Wt(t)?function(t,e){var n=Vt(t)||function(t){return function(t){return function(t){return!!t&&"object"==typeof t}(t)&&Wt(t)}(t)&&tt.call(t,"callee")&&(!ct.call(t,"callee")||et.call(t)==s)}(t)?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],r=n.length,i=!!r;for(var o in t)!e&&!tt.call(t,o)||i&&("length"==o||It(o,r))||n.push(o);return n}(t):function(t){if(!Ut(t))return ft(t);var e=[];for(var n in Object(t))tt.call(t,n)&&"constructor"!=n&&e.push(n);return e}(t)}t.exports=function(t){return Lt(t,!0,!0)}},512:(t,e,n)=>{t=n.nmd(t);var r="__lodash_hash_undefined__",i=1,s=2,o=9007199254740991,a="[object Arguments]",c="[object Array]",u="[object AsyncFunction]",h="[object Boolean]",l="[object Date]",f="[object Error]",d="[object Function]",p="[object GeneratorFunction]",g="[object Map]",y="[object Number]",b="[object Null]",m="[object Object]",v="[object Promise]",w="[object Proxy]",S="[object RegExp]",_="[object Set]",E="[object String]",O="[object Undefined]",k="[object WeakMap]",A="[object ArrayBuffer]",T="[object DataView]",x=/^\[object .+?Constructor\]$/,j=/^(?:0|[1-9]\d*)$/,C={};C["[object Float32Array]"]=C["[object Float64Array]"]=C["[object Int8Array]"]=C["[object Int16Array]"]=C["[object Int32Array]"]=C["[object Uint8Array]"]=C["[object Uint8ClampedArray]"]=C["[object Uint16Array]"]=C["[object Uint32Array]"]=!0,C[a]=C[c]=C[A]=C[h]=C[T]=C[l]=C[f]=C[d]=C[g]=C[y]=C[m]=C[S]=C[_]=C[E]=C[k]=!1;var R="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,L="object"==typeof self&&self&&self.Object===Object&&self,D=R||L||Function("return this")(),B=e&&!e.nodeType&&e,F=B&&t&&!t.nodeType&&t,N=F&&F.exports===B,P=N&&R.process,z=function(){try{return P&&P.binding&&P.binding("util")}catch(t){}}(),I=z&&z.isTypedArray;function U(t,e){for(var n=-1,r=null==t?0:t.length;++n<r;)if(e(t[n],n,t))return!0;return!1}function M(t){var e=-1,n=Array(t.size);return t.forEach((function(t,r){n[++e]=[r,t]})),n}function q(t){var e=-1,n=Array(t.size);return t.forEach((function(t){n[++e]=t})),n}var V,W,H,$=Array.prototype,G=Function.prototype,J=Object.prototype,K=D["__core-js_shared__"],Y=G.toString,X=J.hasOwnProperty,Q=(V=/[^.]+$/.exec(K&&K.keys&&K.keys.IE_PROTO||""))?"Symbol(src)_1."+V:"",Z=J.toString,tt=RegExp("^"+Y.call(X).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),et=N?D.Buffer:void 0,nt=D.Symbol,rt=D.Uint8Array,it=J.propertyIsEnumerable,st=$.splice,ot=nt?nt.toStringTag:void 0,at=Object.getOwnPropertySymbols,ct=et?et.isBuffer:void 0,ut=(W=Object.keys,H=Object,function(t){return W(H(t))}),ht=Ft(D,"DataView"),lt=Ft(D,"Map"),ft=Ft(D,"Promise"),dt=Ft(D,"Set"),pt=Ft(D,"WeakMap"),gt=Ft(Object,"create"),yt=It(ht),bt=It(lt),mt=It(ft),vt=It(dt),wt=It(pt),St=nt?nt.prototype:void 0,_t=St?St.valueOf:void 0;function Et(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Ot(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function kt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function At(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new kt;++e<n;)this.add(t[e])}function Tt(t){var e=this.__data__=new Ot(t);this.size=e.size}function xt(t,e){for(var n=t.length;n--;)if(Ut(t[n][0],e))return n;return-1}function jt(t){return null==t?void 0===t?O:b:ot&&ot in Object(t)?function(t){var e=X.call(t,ot),n=t[ot];try{t[ot]=void 0;var r=!0}catch(t){}var i=Z.call(t);return r&&(e?t[ot]=n:delete t[ot]),i}(t):function(t){return Z.call(t)}(t)}function Ct(t){return Gt(t)&&jt(t)==a}function Rt(t,e,n,r,o){return t===e||(null==t||null==e||!Gt(t)&&!Gt(e)?t!=t&&e!=e:function(t,e,n,r,o,u){var d=qt(t),p=qt(e),b=d?c:Pt(t),v=p?c:Pt(e),w=(b=b==a?m:b)==m,O=(v=v==a?m:v)==m,k=b==v;if(k&&Vt(t)){if(!Vt(e))return!1;d=!0,w=!1}if(k&&!w)return u||(u=new Tt),d||Jt(t)?Lt(t,e,n,r,o,u):function(t,e,n,r,o,a,c){switch(n){case T:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case A:return!(t.byteLength!=e.byteLength||!a(new rt(t),new rt(e)));case h:case l:case y:return Ut(+t,+e);case f:return t.name==e.name&&t.message==e.message;case S:case E:return t==e+"";case g:var u=M;case _:var d=r&i;if(u||(u=q),t.size!=e.size&&!d)return!1;var p=c.get(t);if(p)return p==e;r|=s,c.set(t,e);var b=Lt(u(t),u(e),r,o,a,c);return c.delete(t),b;case"[object Symbol]":if(_t)return _t.call(t)==_t.call(e)}return!1}(t,e,b,n,r,o,u);if(!(n&i)){var x=w&&X.call(t,"__wrapped__"),j=O&&X.call(e,"__wrapped__");if(x||j){var C=x?t.value():t,R=j?e.value():e;return u||(u=new Tt),o(C,R,n,r,u)}}return!!k&&(u||(u=new Tt),function(t,e,n,r,s,o){var a=n&i,c=Dt(t),u=c.length;if(u!=Dt(e).length&&!a)return!1;for(var h=u;h--;){var l=c[h];if(!(a?l in e:X.call(e,l)))return!1}var f=o.get(t);if(f&&o.get(e))return f==e;var d=!0;o.set(t,e),o.set(e,t);for(var p=a;++h<u;){var g=t[l=c[h]],y=e[l];if(r)var b=a?r(y,g,l,e,t,o):r(g,y,l,t,e,o);if(!(void 0===b?g===y||s(g,y,n,r,o):b)){d=!1;break}p||(p="constructor"==l)}if(d&&!p){var m=t.constructor,v=e.constructor;m==v||!("constructor"in t)||!("constructor"in e)||"function"==typeof m&&m instanceof m&&"function"==typeof v&&v instanceof v||(d=!1)}return o.delete(t),o.delete(e),d}(t,e,n,r,o,u))}(t,e,n,r,Rt,o))}function Lt(t,e,n,r,o,a){var c=n&i,u=t.length,h=e.length;if(u!=h&&!(c&&h>u))return!1;var l=a.get(t);if(l&&a.get(e))return l==e;var f=-1,d=!0,p=n&s?new At:void 0;for(a.set(t,e),a.set(e,t);++f<u;){var g=t[f],y=e[f];if(r)var b=c?r(y,g,f,e,t,a):r(g,y,f,t,e,a);if(void 0!==b){if(b)continue;d=!1;break}if(p){if(!U(e,(function(t,e){if(i=e,!p.has(i)&&(g===t||o(g,t,n,r,a)))return p.push(e);var i}))){d=!1;break}}else if(g!==y&&!o(g,y,n,r,a)){d=!1;break}}return a.delete(t),a.delete(e),d}function Dt(t){return function(t,e,n){var r=e(t);return qt(t)?r:function(t,e){for(var n=-1,r=e.length,i=t.length;++n<r;)t[i+n]=e[n];return t}(r,n(t))}(t,Kt,Nt)}function Bt(t,e){var n,r,i=t.__data__;return("string"==(r=typeof(n=e))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof e?"string":"hash"]:i.map}function Ft(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return function(t){return!(!$t(t)||function(t){return!!Q&&Q in t}(t))&&(Wt(t)?tt:x).test(It(t))}(n)?n:void 0}Et.prototype.clear=function(){this.__data__=gt?gt(null):{},this.size=0},Et.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},Et.prototype.get=function(t){var e=this.__data__;if(gt){var n=e[t];return n===r?void 0:n}return X.call(e,t)?e[t]:void 0},Et.prototype.has=function(t){var e=this.__data__;return gt?void 0!==e[t]:X.call(e,t)},Et.prototype.set=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=gt&&void 0===e?r:e,this},Ot.prototype.clear=function(){this.__data__=[],this.size=0},Ot.prototype.delete=function(t){var e=this.__data__,n=xt(e,t);return!(n<0||(n==e.length-1?e.pop():st.call(e,n,1),--this.size,0))},Ot.prototype.get=function(t){var e=this.__data__,n=xt(e,t);return n<0?void 0:e[n][1]},Ot.prototype.has=function(t){return xt(this.__data__,t)>-1},Ot.prototype.set=function(t,e){var n=this.__data__,r=xt(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this},kt.prototype.clear=function(){this.size=0,this.__data__={hash:new Et,map:new(lt||Ot),string:new Et}},kt.prototype.delete=function(t){var e=Bt(this,t).delete(t);return this.size-=e?1:0,e},kt.prototype.get=function(t){return Bt(this,t).get(t)},kt.prototype.has=function(t){return Bt(this,t).has(t)},kt.prototype.set=function(t,e){var n=Bt(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},At.prototype.add=At.prototype.push=function(t){return this.__data__.set(t,r),this},At.prototype.has=function(t){return this.__data__.has(t)},Tt.prototype.clear=function(){this.__data__=new Ot,this.size=0},Tt.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},Tt.prototype.get=function(t){return this.__data__.get(t)},Tt.prototype.has=function(t){return this.__data__.has(t)},Tt.prototype.set=function(t,e){var n=this.__data__;if(n instanceof Ot){var r=n.__data__;if(!lt||r.length<199)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new kt(r)}return n.set(t,e),this.size=n.size,this};var Nt=at?function(t){return null==t?[]:(t=Object(t),function(e,n){for(var r=-1,i=null==e?0:e.length,s=0,o=[];++r<i;){var a=e[r];c=a,it.call(t,c)&&(o[s++]=a)}var c;return o}(at(t)))}:function(){return[]},Pt=jt;function zt(t,e){return!!(e=null==e?o:e)&&("number"==typeof t||j.test(t))&&t>-1&&t%1==0&&t<e}function It(t){if(null!=t){try{return Y.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function Ut(t,e){return t===e||t!=t&&e!=e}(ht&&Pt(new ht(new ArrayBuffer(1)))!=T||lt&&Pt(new lt)!=g||ft&&Pt(ft.resolve())!=v||dt&&Pt(new dt)!=_||pt&&Pt(new pt)!=k)&&(Pt=function(t){var e=jt(t),n=e==m?t.constructor:void 0,r=n?It(n):"";if(r)switch(r){case yt:return T;case bt:return g;case mt:return v;case vt:return _;case wt:return k}return e});var Mt=Ct(function(){return arguments}())?Ct:function(t){return Gt(t)&&X.call(t,"callee")&&!it.call(t,"callee")},qt=Array.isArray,Vt=ct||function(){return!1};function Wt(t){if(!$t(t))return!1;var e=jt(t);return e==d||e==p||e==u||e==w}function Ht(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=o}function $t(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function Gt(t){return null!=t&&"object"==typeof t}var Jt=I?function(t){return function(e){return t(e)}}(I):function(t){return Gt(t)&&Ht(t.length)&&!!C[jt(t)]};function Kt(t){return null!=(e=t)&&Ht(e.length)&&!Wt(e)?function(t,e){var n=qt(t),r=!n&&Mt(t),i=!n&&!r&&Vt(t),s=!n&&!r&&!i&&Jt(t),o=n||r||i||s,a=o?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],c=a.length;for(var u in t)!e&&!X.call(t,u)||o&&("length"==u||i&&("offset"==u||"parent"==u)||s&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||zt(u,c))||a.push(u);return a}(t):function(t){if(n=(e=t)&&e.constructor,e!==("function"==typeof n&&n.prototype||J))return ut(t);var e,n,r=[];for(var i in Object(t))X.call(t,i)&&"constructor"!=i&&r.push(i);return r}(t);var e}t.exports=function(t,e){return Rt(t,e)}}},e={};function n(r){var i=e[r];if(void 0!==i)return i.exports;var s=e[r]={id:r,loaded:!1,exports:{}};return t[r](s,s.exports,n),s.loaded=!0,s.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var r in e)n.o(e,r)&&!n.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var r={};(()=>{n.d(r,{F:()=>hn,j:()=>fi});var t={};n.r(t),n.d(t,{hasBrowserEnv:()=>nt,hasStandardBrowserEnv:()=>rt,hasStandardBrowserWebWorkerEnv:()=>st});var e={};function i(t,e){return function(){return t.apply(e,arguments)}}n.r(e),n.d(e,{Decoder:()=>ni,Encoder:()=>ti,PacketType:()=>Zr,protocol:()=>Qr});const{toString:s}=Object.prototype,{getPrototypeOf:o}=Object,a=(t=>e=>{const n=s.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),c=t=>(t=t.toLowerCase(),e=>a(e)===t),u=t=>e=>typeof e===t,{isArray:h}=Array,l=u("undefined"),f=c("ArrayBuffer"),d=u("string"),p=u("function"),g=u("number"),y=t=>null!==t&&"object"==typeof t,b=t=>{if("object"!==a(t))return!1;const e=o(t);return!(null!==e&&e!==Object.prototype&&null!==Object.getPrototypeOf(e)||Symbol.toStringTag in t||Symbol.iterator in t)},m=c("Date"),v=c("File"),w=c("Blob"),S=c("FileList"),_=c("URLSearchParams");function E(t,e,{allOwnKeys:n=!1}={}){if(null==t)return;let r,i;if("object"!=typeof t&&(t=[t]),h(t))for(r=0,i=t.length;r<i;r++)e.call(null,t[r],r,t);else{const i=n?Object.getOwnPropertyNames(t):Object.keys(t),s=i.length;let o;for(r=0;r<s;r++)o=i[r],e.call(null,t[o],o,t)}}function O(t,e){e=e.toLowerCase();const n=Object.keys(t);let r,i=n.length;for(;i-- >0;)if(r=n[i],e===r.toLowerCase())return r;return null}const k="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,A=t=>!l(t)&&t!==k,T=(x="undefined"!=typeof Uint8Array&&o(Uint8Array),t=>x&&t instanceof x);var x;const j=c("HTMLFormElement"),C=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),R=c("RegExp"),L=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};E(n,((n,i)=>{let s;!1!==(s=e(n,i,t))&&(r[i]=s||n)})),Object.defineProperties(t,r)},D="abcdefghijklmnopqrstuvwxyz",B="0123456789",F={DIGIT:B,ALPHA:D,ALPHA_DIGIT:D+D.toUpperCase()+B},N=c("AsyncFunction"),P={isArray:h,isArrayBuffer:f,isBuffer:function(t){return null!==t&&!l(t)&&null!==t.constructor&&!l(t.constructor)&&p(t.constructor.isBuffer)&&t.constructor.isBuffer(t)},isFormData:t=>{let e;return t&&("function"==typeof FormData&&t instanceof FormData||p(t.append)&&("formdata"===(e=a(t))||"object"===e&&p(t.toString)&&"[object FormData]"===t.toString()))},isArrayBufferView:function(t){let e;return e="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&f(t.buffer),e},isString:d,isNumber:g,isBoolean:t=>!0===t||!1===t,isObject:y,isPlainObject:b,isUndefined:l,isDate:m,isFile:v,isBlob:w,isRegExp:R,isFunction:p,isStream:t=>y(t)&&p(t.pipe),isURLSearchParams:_,isTypedArray:T,isFileList:S,forEach:E,merge:function t(){const{caseless:e}=A(this)&&this||{},n={},r=(r,i)=>{const s=e&&O(n,i)||i;b(n[s])&&b(r)?n[s]=t(n[s],r):b(r)?n[s]=t({},r):h(r)?n[s]=r.slice():n[s]=r};for(let t=0,e=arguments.length;t<e;t++)arguments[t]&&E(arguments[t],r);return n},extend:(t,e,n,{allOwnKeys:r}={})=>(E(e,((e,r)=>{n&&p(e)?t[r]=i(e,n):t[r]=e}),{allOwnKeys:r}),t),trim:t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:t=>(65279===t.charCodeAt(0)&&(t=t.slice(1)),t),inherits:(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},toFlatObject:(t,e,n,r)=>{let i,s,a;const c={};if(e=e||{},null==t)return e;do{for(i=Object.getOwnPropertyNames(t),s=i.length;s-- >0;)a=i[s],r&&!r(a,t,e)||c[a]||(e[a]=t[a],c[a]=!0);t=!1!==n&&o(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},kindOf:a,kindOfTest:c,endsWith:(t,e,n)=>{t=String(t),(void 0===n||n>t.length)&&(n=t.length),n-=e.length;const r=t.indexOf(e,n);return-1!==r&&r===n},toArray:t=>{if(!t)return null;if(h(t))return t;let e=t.length;if(!g(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},forEachEntry:(t,e)=>{const n=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=n.next())&&!r.done;){const n=r.value;e.call(t,n[0],n[1])}},matchAll:(t,e)=>{let n;const r=[];for(;null!==(n=t.exec(e));)r.push(n);return r},isHTMLForm:j,hasOwnProperty:C,hasOwnProp:C,reduceDescriptors:L,freezeMethods:t=>{L(t,((e,n)=>{if(p(t)&&-1!==["arguments","caller","callee"].indexOf(n))return!1;const r=t[n];p(r)&&(e.enumerable=!1,"writable"in e?e.writable=!1:e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")}))}))},toObjectSet:(t,e)=>{const n={},r=t=>{t.forEach((t=>{n[t]=!0}))};return h(t)?r(t):r(String(t).split(e)),n},toCamelCase:t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(t,e,n){return e.toUpperCase()+n})),noop:()=>{},toFiniteNumber:(t,e)=>(t=+t,Number.isFinite(t)?t:e),findKey:O,global:k,isContextDefined:A,ALPHABET:F,generateString:(t=16,e=F.ALPHA_DIGIT)=>{let n="";const{length:r}=e;for(;t--;)n+=e[Math.random()*r|0];return n},isSpecCompliantForm:function(t){return!!(t&&p(t.append)&&"FormData"===t[Symbol.toStringTag]&&t[Symbol.iterator])},toJSONObject:t=>{const e=new Array(10),n=(t,r)=>{if(y(t)){if(e.indexOf(t)>=0)return;if(!("toJSON"in t)){e[r]=t;const i=h(t)?[]:{};return E(t,((t,e)=>{const s=n(t,r+1);!l(s)&&(i[e]=s)})),e[r]=void 0,i}}return t};return n(t,0)},isAsyncFn:N,isThenable:t=>t&&(y(t)||p(t))&&p(t.then)&&p(t.catch)};function z(t,e,n,r,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),r&&(this.request=r),i&&(this.response=i)}P.inherits(z,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:P.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const I=z.prototype,U={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((t=>{U[t]={value:t}})),Object.defineProperties(z,U),Object.defineProperty(I,"isAxiosError",{value:!0}),z.from=(t,e,n,r,i,s)=>{const o=Object.create(I);return P.toFlatObject(t,o,(function(t){return t!==Error.prototype}),(t=>"isAxiosError"!==t)),z.call(o,t.message,e,n,r,i),o.cause=t,o.name=t.name,s&&Object.assign(o,s),o};const M=z;function q(t){return P.isPlainObject(t)||P.isArray(t)}function V(t){return P.endsWith(t,"[]")?t.slice(0,-2):t}function W(t,e,n){return t?t.concat(e).map((function(t,e){return t=V(t),!n&&e?"["+t+"]":t})).join(n?".":""):e}const H=P.toFlatObject(P,{},null,(function(t){return/^is[A-Z]/.test(t)})),$=function(t,e,n){if(!P.isObject(t))throw new TypeError("target must be an object");e=e||new FormData;const r=(n=P.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(t,e){return!P.isUndefined(e[t])}))).metaTokens,i=n.visitor||u,s=n.dots,o=n.indexes,a=(n.Blob||"undefined"!=typeof Blob&&Blob)&&P.isSpecCompliantForm(e);if(!P.isFunction(i))throw new TypeError("visitor must be a function");function c(t){if(null===t)return"";if(P.isDate(t))return t.toISOString();if(!a&&P.isBlob(t))throw new M("Blob is not supported. Use a Buffer instead.");return P.isArrayBuffer(t)||P.isTypedArray(t)?a&&"function"==typeof Blob?new Blob([t]):Buffer.from(t):t}function u(t,n,i){let a=t;if(t&&!i&&"object"==typeof t)if(P.endsWith(n,"{}"))n=r?n:n.slice(0,-2),t=JSON.stringify(t);else if(P.isArray(t)&&function(t){return P.isArray(t)&&!t.some(q)}(t)||(P.isFileList(t)||P.endsWith(n,"[]"))&&(a=P.toArray(t)))return n=V(n),a.forEach((function(t,r){!P.isUndefined(t)&&null!==t&&e.append(!0===o?W([n],r,s):null===o?n:n+"[]",c(t))})),!1;return!!q(t)||(e.append(W(i,n,s),c(t)),!1)}const h=[],l=Object.assign(H,{defaultVisitor:u,convertValue:c,isVisitable:q});if(!P.isObject(t))throw new TypeError("data must be an object");return function t(n,r){if(!P.isUndefined(n)){if(-1!==h.indexOf(n))throw Error("Circular reference detected in "+r.join("."));h.push(n),P.forEach(n,(function(n,s){!0===(!(P.isUndefined(n)||null===n)&&i.call(e,n,P.isString(s)?s.trim():s,r,l))&&t(n,r?r.concat(s):[s])})),h.pop()}}(t),e};function G(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,(function(t){return e[t]}))}function J(t,e){this._pairs=[],t&&$(t,this,e)}const K=J.prototype;K.append=function(t,e){this._pairs.push([t,e])},K.toString=function(t){const e=t?function(e){return t.call(this,e,G)}:G;return this._pairs.map((function(t){return e(t[0])+"="+e(t[1])}),"").join("&")};const Y=J;function X(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Q(t,e,n){if(!e)return t;const r=n&&n.encode||X,i=n&&n.serialize;let s;if(s=i?i(e,n):P.isURLSearchParams(e)?e.toString():new Y(e,n).toString(r),s){const e=t.indexOf("#");-1!==e&&(t=t.slice(0,e)),t+=(-1===t.indexOf("?")?"?":"&")+s}return t}const Z=class{constructor(){this.handlers=[]}use(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){P.forEach(this.handlers,(function(e){null!==e&&t(e)}))}},tt={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},et={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:Y,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},nt="undefined"!=typeof window&&"undefined"!=typeof document,rt=(it="undefined"!=typeof navigator&&navigator.product,nt&&["ReactNative","NativeScript","NS"].indexOf(it)<0);var it;const st="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,ot={...t,...et},at=function(t){function e(t,n,r,i){let s=t[i++];if("__proto__"===s)return!0;const o=Number.isFinite(+s),a=i>=t.length;return s=!s&&P.isArray(r)?r.length:s,a?(P.hasOwnProp(r,s)?r[s]=[r[s],n]:r[s]=n,!o):(r[s]&&P.isObject(r[s])||(r[s]=[]),e(t,n,r[s],i)&&P.isArray(r[s])&&(r[s]=function(t){const e={},n=Object.keys(t);let r;const i=n.length;let s;for(r=0;r<i;r++)s=n[r],e[s]=t[s];return e}(r[s])),!o)}if(P.isFormData(t)&&P.isFunction(t.entries)){const n={};return P.forEachEntry(t,((t,r)=>{e(function(t){return P.matchAll(/\w+|\[(\w*)]/g,t).map((t=>"[]"===t[0]?"":t[1]||t[0]))}(t),r,n,0)})),n}return null},ct={transitional:tt,adapter:["xhr","http"],transformRequest:[function(t,e){const n=e.getContentType()||"",r=n.indexOf("application/json")>-1,i=P.isObject(t);if(i&&P.isHTMLForm(t)&&(t=new FormData(t)),P.isFormData(t))return r?JSON.stringify(at(t)):t;if(P.isArrayBuffer(t)||P.isBuffer(t)||P.isStream(t)||P.isFile(t)||P.isBlob(t))return t;if(P.isArrayBufferView(t))return t.buffer;if(P.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let s;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(t,e){return $(t,new ot.classes.URLSearchParams,Object.assign({visitor:function(t,e,n,r){return ot.isNode&&P.isBuffer(t)?(this.append(e,t.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},e))}(t,this.formSerializer).toString();if((s=P.isFileList(t))||n.indexOf("multipart/form-data")>-1){const e=this.env&&this.env.FormData;return $(s?{"files[]":t}:t,e&&new e,this.formSerializer)}}return i||r?(e.setContentType("application/json",!1),function(t,e,n){if(P.isString(t))try{return(0,JSON.parse)(t),P.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(0,JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){const e=this.transitional||ct.transitional,n=e&&e.forcedJSONParsing,r="json"===this.responseType;if(t&&P.isString(t)&&(n&&!this.responseType||r)){const n=!(e&&e.silentJSONParsing)&&r;try{return JSON.parse(t)}catch(t){if(n){if("SyntaxError"===t.name)throw M.from(t,M.ERR_BAD_RESPONSE,this,null,this.response);throw t}}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ot.classes.FormData,Blob:ot.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};P.forEach(["delete","get","head","post","put","patch"],(t=>{ct.headers[t]={}}));const ut=ct,ht=P.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),lt=Symbol("internals");function ft(t){return t&&String(t).trim().toLowerCase()}function dt(t){return!1===t||null==t?t:P.isArray(t)?t.map(dt):String(t)}function pt(t,e,n,r,i){return P.isFunction(r)?r.call(this,e,n):(i&&(e=n),P.isString(e)?P.isString(r)?-1!==e.indexOf(r):P.isRegExp(r)?r.test(e):void 0:void 0)}class gt{constructor(t){t&&this.set(t)}set(t,e,n){const r=this;function i(t,e,n){const i=ft(e);if(!i)throw new Error("header name must be a non-empty string");const s=P.findKey(r,i);(!s||void 0===r[s]||!0===n||void 0===n&&!1!==r[s])&&(r[s||e]=dt(t))}const s=(t,e)=>P.forEach(t,((t,n)=>i(t,n,e)));return P.isPlainObject(t)||t instanceof this.constructor?s(t,e):P.isString(t)&&(t=t.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim())?s((t=>{const e={};let n,r,i;return t&&t.split("\n").forEach((function(t){i=t.indexOf(":"),n=t.substring(0,i).trim().toLowerCase(),r=t.substring(i+1).trim(),!n||e[n]&&ht[n]||("set-cookie"===n?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)})),e})(t),e):null!=t&&i(e,t,n),this}get(t,e){if(t=ft(t)){const n=P.findKey(this,t);if(n){const t=this[n];if(!e)return t;if(!0===e)return function(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}(t);if(P.isFunction(e))return e.call(this,t,n);if(P.isRegExp(e))return e.exec(t);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,e){if(t=ft(t)){const n=P.findKey(this,t);return!(!n||void 0===this[n]||e&&!pt(0,this[n],n,e))}return!1}delete(t,e){const n=this;let r=!1;function i(t){if(t=ft(t)){const i=P.findKey(n,t);!i||e&&!pt(0,n[i],i,e)||(delete n[i],r=!0)}}return P.isArray(t)?t.forEach(i):i(t),r}clear(t){const e=Object.keys(this);let n=e.length,r=!1;for(;n--;){const i=e[n];t&&!pt(0,this[i],i,t,!0)||(delete this[i],r=!0)}return r}normalize(t){const e=this,n={};return P.forEach(this,((r,i)=>{const s=P.findKey(n,i);if(s)return e[s]=dt(r),void delete e[i];const o=t?function(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((t,e,n)=>e.toUpperCase()+n))}(i):String(i).trim();o!==i&&delete e[i],e[o]=dt(r),n[o]=!0})),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const e=Object.create(null);return P.forEach(this,((n,r)=>{null!=n&&!1!==n&&(e[r]=t&&P.isArray(n)?n.join(", "):n)})),e}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([t,e])=>t+": "+e)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...e){const n=new this(t);return e.forEach((t=>n.set(t))),n}static accessor(t){const e=(this[lt]=this[lt]={accessors:{}}).accessors,n=this.prototype;function r(t){const r=ft(t);e[r]||(function(t,e){const n=P.toCamelCase(" "+e);["get","set","has"].forEach((r=>{Object.defineProperty(t,r+n,{value:function(t,n,i){return this[r].call(this,e,t,n,i)},configurable:!0})}))}(n,t),e[r]=!0)}return P.isArray(t)?t.forEach(r):r(t),this}}gt.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),P.reduceDescriptors(gt.prototype,(({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(t){this[n]=t}}})),P.freezeMethods(gt);const yt=gt;function bt(t,e){const n=this||ut,r=e||n,i=yt.from(r.headers);let s=r.data;return P.forEach(t,(function(t){s=t.call(n,s,i.normalize(),e?e.status:void 0)})),i.normalize(),s}function mt(t){return!(!t||!t.__CANCEL__)}function vt(t,e,n){M.call(this,null==t?"canceled":t,M.ERR_CANCELED,e,n),this.name="CanceledError"}P.inherits(vt,M,{__CANCEL__:!0});const wt=vt,St=ot.hasStandardBrowserEnv?{write(t,e,n,r,i,s){const o=[t+"="+encodeURIComponent(e)];P.isNumber(n)&&o.push("expires="+new Date(n).toGMTString()),P.isString(r)&&o.push("path="+r),P.isString(i)&&o.push("domain="+i),!0===s&&o.push("secure"),document.cookie=o.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read:()=>null,remove(){}};function _t(t,e){return t&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)?function(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}(t,e):e}const Et=ot.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let n;function r(n){let r=n;return t&&(e.setAttribute("href",r),r=e.href),e.setAttribute("href",r),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:"/"===e.pathname.charAt(0)?e.pathname:"/"+e.pathname}}return n=r(window.location.href),function(t){const e=P.isString(t)?r(t):t;return e.protocol===n.protocol&&e.host===n.host}}():function(){return!0};function Ot(t,e){let n=0;const r=function(t,e){t=t||10;const n=new Array(t),r=new Array(t);let i,s=0,o=0;return e=void 0!==e?e:1e3,function(a){const c=Date.now(),u=r[o];i||(i=c),n[s]=a,r[s]=c;let h=o,l=0;for(;h!==s;)l+=n[h++],h%=t;if(s=(s+1)%t,s===o&&(o=(o+1)%t),c-i<e)return;const f=u&&c-u;return f?Math.round(1e3*l/f):void 0}}(50,250);return i=>{const s=i.loaded,o=i.lengthComputable?i.total:void 0,a=s-n,c=r(a);n=s;const u={loaded:s,total:o,progress:o?s/o:void 0,bytes:a,rate:c||void 0,estimated:c&&o&&s<=o?(o-s)/c:void 0,event:i};u[e?"download":"upload"]=!0,t(u)}}const kt="undefined"!=typeof XMLHttpRequest&&function(t){return new Promise((function(e,n){let r=t.data;const i=yt.from(t.headers).normalize();let s,o,{responseType:a,withXSRFToken:c}=t;function u(){t.cancelToken&&t.cancelToken.unsubscribe(s),t.signal&&t.signal.removeEventListener("abort",s)}if(P.isFormData(r))if(ot.hasStandardBrowserEnv||ot.hasStandardBrowserWebWorkerEnv)i.setContentType(!1);else if(!1!==(o=i.getContentType())){const[t,...e]=o?o.split(";").map((t=>t.trim())).filter(Boolean):[];i.setContentType([t||"multipart/form-data",...e].join("; "))}let h=new XMLHttpRequest;if(t.auth){const e=t.auth.username||"",n=t.auth.password?unescape(encodeURIComponent(t.auth.password)):"";i.set("Authorization","Basic "+btoa(e+":"+n))}const l=_t(t.baseURL,t.url);function f(){if(!h)return;const r=yt.from("getAllResponseHeaders"in h&&h.getAllResponseHeaders());!function(t,e,n){const r=n.config.validateStatus;n.status&&r&&!r(n.status)?e(new M("Request failed with status code "+n.status,[M.ERR_BAD_REQUEST,M.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):t(n)}((function(t){e(t),u()}),(function(t){n(t),u()}),{data:a&&"text"!==a&&"json"!==a?h.response:h.responseText,status:h.status,statusText:h.statusText,headers:r,config:t,request:h}),h=null}if(h.open(t.method.toUpperCase(),Q(l,t.params,t.paramsSerializer),!0),h.timeout=t.timeout,"onloadend"in h?h.onloadend=f:h.onreadystatechange=function(){h&&4===h.readyState&&(0!==h.status||h.responseURL&&0===h.responseURL.indexOf("file:"))&&setTimeout(f)},h.onabort=function(){h&&(n(new M("Request aborted",M.ECONNABORTED,t,h)),h=null)},h.onerror=function(){n(new M("Network Error",M.ERR_NETWORK,t,h)),h=null},h.ontimeout=function(){let e=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded";const r=t.transitional||tt;t.timeoutErrorMessage&&(e=t.timeoutErrorMessage),n(new M(e,r.clarifyTimeoutError?M.ETIMEDOUT:M.ECONNABORTED,t,h)),h=null},ot.hasStandardBrowserEnv&&(c&&P.isFunction(c)&&(c=c(t)),c||!1!==c&&Et(l))){const e=t.xsrfHeaderName&&t.xsrfCookieName&&St.read(t.xsrfCookieName);e&&i.set(t.xsrfHeaderName,e)}void 0===r&&i.setContentType(null),"setRequestHeader"in h&&P.forEach(i.toJSON(),(function(t,e){h.setRequestHeader(e,t)})),P.isUndefined(t.withCredentials)||(h.withCredentials=!!t.withCredentials),a&&"json"!==a&&(h.responseType=t.responseType),"function"==typeof t.onDownloadProgress&&h.addEventListener("progress",Ot(t.onDownloadProgress,!0)),"function"==typeof t.onUploadProgress&&h.upload&&h.upload.addEventListener("progress",Ot(t.onUploadProgress)),(t.cancelToken||t.signal)&&(s=e=>{h&&(n(!e||e.type?new wt(null,t,h):e),h.abort(),h=null)},t.cancelToken&&t.cancelToken.subscribe(s),t.signal&&(t.signal.aborted?s():t.signal.addEventListener("abort",s)));const d=function(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}(l);d&&-1===ot.protocols.indexOf(d)?n(new M("Unsupported protocol "+d+":",M.ERR_BAD_REQUEST,t)):h.send(r||null)}))},At={http:null,xhr:kt};P.forEach(At,((t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch(t){}Object.defineProperty(t,"adapterName",{value:e})}}));const Tt=t=>`- ${t}`,xt=t=>P.isFunction(t)||null===t||!1===t,jt=t=>{t=P.isArray(t)?t:[t];const{length:e}=t;let n,r;const i={};for(let s=0;s<e;s++){let e;if(n=t[s],r=n,!xt(n)&&(r=At[(e=String(n)).toLowerCase()],void 0===r))throw new M(`Unknown adapter '${e}'`);if(r)break;i[e||"#"+s]=r}if(!r){const t=Object.entries(i).map((([t,e])=>`adapter ${t} `+(!1===e?"is not supported by the environment":"is not available in the build")));let n=e?t.length>1?"since :\n"+t.map(Tt).join("\n"):" "+Tt(t[0]):"as no adapter specified";throw new M("There is no suitable adapter to dispatch the request "+n,"ERR_NOT_SUPPORT")}return r};function Ct(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new wt(null,t)}function Rt(t){return Ct(t),t.headers=yt.from(t.headers),t.data=bt.call(t,t.transformRequest),-1!==["post","put","patch"].indexOf(t.method)&&t.headers.setContentType("application/x-www-form-urlencoded",!1),jt(t.adapter||ut.adapter)(t).then((function(e){return Ct(t),e.data=bt.call(t,t.transformResponse,e),e.headers=yt.from(e.headers),e}),(function(e){return mt(e)||(Ct(t),e&&e.response&&(e.response.data=bt.call(t,t.transformResponse,e.response),e.response.headers=yt.from(e.response.headers))),Promise.reject(e)}))}const Lt=t=>t instanceof yt?{...t}:t;function Dt(t,e){e=e||{};const n={};function r(t,e,n){return P.isPlainObject(t)&&P.isPlainObject(e)?P.merge.call({caseless:n},t,e):P.isPlainObject(e)?P.merge({},e):P.isArray(e)?e.slice():e}function i(t,e,n){return P.isUndefined(e)?P.isUndefined(t)?void 0:r(void 0,t,n):r(t,e,n)}function s(t,e){if(!P.isUndefined(e))return r(void 0,e)}function o(t,e){return P.isUndefined(e)?P.isUndefined(t)?void 0:r(void 0,t):r(void 0,e)}function a(n,i,s){return s in e?r(n,i):s in t?r(void 0,n):void 0}const c={url:s,method:s,data:s,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:a,headers:(t,e)=>i(Lt(t),Lt(e),!0)};return P.forEach(Object.keys(Object.assign({},t,e)),(function(r){const s=c[r]||i,o=s(t[r],e[r],r);P.isUndefined(o)&&s!==a||(n[r]=o)})),n}const Bt={};["object","boolean","number","function","string","symbol"].forEach(((t,e)=>{Bt[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}}));const Ft={};Bt.transitional=function(t,e,n){function r(t,e){return"[Axios v1.6.8] Transitional option '"+t+"'"+e+(n?". "+n:"")}return(n,i,s)=>{if(!1===t)throw new M(r(i," has been removed"+(e?" in "+e:"")),M.ERR_DEPRECATED);return e&&!Ft[i]&&(Ft[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(n,i,s)}};const Nt={assertOptions:function(t,e,n){if("object"!=typeof t)throw new M("options must be an object",M.ERR_BAD_OPTION_VALUE);const r=Object.keys(t);let i=r.length;for(;i-- >0;){const s=r[i],o=e[s];if(o){const e=t[s],n=void 0===e||o(e,s,t);if(!0!==n)throw new M("option "+s+" must be "+n,M.ERR_BAD_OPTION_VALUE)}else if(!0!==n)throw new M("Unknown option "+s,M.ERR_BAD_OPTION)}},validators:Bt},Pt=Nt.validators;class zt{constructor(t){this.defaults=t,this.interceptors={request:new Z,response:new Z}}async request(t,e){try{return await this._request(t,e)}catch(t){if(t instanceof Error){let e;Error.captureStackTrace?Error.captureStackTrace(e={}):e=new Error;const n=e.stack?e.stack.replace(/^.+\n/,""):"";t.stack?n&&!String(t.stack).endsWith(n.replace(/^.+\n.+\n/,""))&&(t.stack+="\n"+n):t.stack=n}throw t}}_request(t,e){"string"==typeof t?(e=e||{}).url=t:e=t||{},e=Dt(this.defaults,e);const{transitional:n,paramsSerializer:r,headers:i}=e;void 0!==n&&Nt.assertOptions(n,{silentJSONParsing:Pt.transitional(Pt.boolean),forcedJSONParsing:Pt.transitional(Pt.boolean),clarifyTimeoutError:Pt.transitional(Pt.boolean)},!1),null!=r&&(P.isFunction(r)?e.paramsSerializer={serialize:r}:Nt.assertOptions(r,{encode:Pt.function,serialize:Pt.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let s=i&&P.merge(i.common,i[e.method]);i&&P.forEach(["delete","get","head","post","put","patch","common"],(t=>{delete i[t]})),e.headers=yt.concat(s,i);const o=[];let a=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(a=a&&t.synchronous,o.unshift(t.fulfilled,t.rejected))}));const c=[];let u;this.interceptors.response.forEach((function(t){c.push(t.fulfilled,t.rejected)}));let h,l=0;if(!a){const t=[Rt.bind(this),void 0];for(t.unshift.apply(t,o),t.push.apply(t,c),h=t.length,u=Promise.resolve(e);l<h;)u=u.then(t[l++],t[l++]);return u}h=o.length;let f=e;for(l=0;l<h;){const t=o[l++],e=o[l++];try{f=t(f)}catch(t){e.call(this,t);break}}try{u=Rt.call(this,f)}catch(t){return Promise.reject(t)}for(l=0,h=c.length;l<h;)u=u.then(c[l++],c[l++]);return u}getUri(t){return Q(_t((t=Dt(this.defaults,t)).baseURL,t.url),t.params,t.paramsSerializer)}}P.forEach(["delete","get","head","options"],(function(t){zt.prototype[t]=function(e,n){return this.request(Dt(n||{},{method:t,url:e,data:(n||{}).data}))}})),P.forEach(["post","put","patch"],(function(t){function e(e){return function(n,r,i){return this.request(Dt(i||{},{method:t,headers:e?{"Content-Type":"multipart/form-data"}:{},url:n,data:r}))}}zt.prototype[t]=e(),zt.prototype[t+"Form"]=e(!0)}));const It=zt;class Ut{constructor(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");let e;this.promise=new Promise((function(t){e=t}));const n=this;this.promise.then((t=>{if(!n._listeners)return;let e=n._listeners.length;for(;e-- >0;)n._listeners[e](t);n._listeners=null})),this.promise.then=t=>{let e;const r=new Promise((t=>{n.subscribe(t),e=t})).then(t);return r.cancel=function(){n.unsubscribe(e)},r},t((function(t,r,i){n.reason||(n.reason=new wt(t,r,i),e(n.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){this.reason?t(this.reason):this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const e=this._listeners.indexOf(t);-1!==e&&this._listeners.splice(e,1)}static source(){let t;return{token:new Ut((function(e){t=e})),cancel:t}}}const Mt=Ut,qt={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(qt).forEach((([t,e])=>{qt[e]=t}));const Vt=qt,Wt=function t(e){const n=new It(e),r=i(It.prototype.request,n);return P.extend(r,It.prototype,n,{allOwnKeys:!0}),P.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return t(Dt(e,n))},r}(ut);Wt.Axios=It,Wt.CanceledError=wt,Wt.CancelToken=Mt,Wt.isCancel=mt,Wt.VERSION="1.6.8",Wt.toFormData=$,Wt.AxiosError=M,Wt.Cancel=Wt.CanceledError,Wt.all=function(t){return Promise.all(t)},Wt.spread=function(t){return function(e){return t.apply(null,e)}},Wt.isAxiosError=function(t){return P.isObject(t)&&!0===t.isAxiosError},Wt.mergeConfig=Dt,Wt.AxiosHeaders=yt,Wt.formToJSON=t=>at(P.isHTMLForm(t)?new FormData(t):t),Wt.getAdapter=jt,Wt.HttpStatusCode=Vt,Wt.default=Wt;const Ht=Wt;class $t{interceptor;constructor(t){this.interceptor=Ht.create({baseURL:`${t}/api`}),this.interceptor.interceptors.request.use((t=>{const e=Ht.CancelToken.source();return t.cancelToken=e.token,setTimeout((()=>{e.cancel("Timeout: request took more than 15 seconds")}),15e3),t}),(t=>Promise.reject(t)))}}var Gt=function(t,e){return Gt=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},Gt(t,e)};function Jt(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Gt(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function Kt(t,e){var n,r,i,s,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(o=0)),o;)try{if(n=1,r&&(i=2&a[0]?r.return:a[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,a[1])).done)return i;switch(r=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,r=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(6===a[0]&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=e.call(t,o)}catch(t){a=[6,t],r=0}finally{n=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function Yt(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function Xt(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,s=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(r=s.next()).done;)o.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=s.return)&&n.call(s)}finally{if(i)throw i.error}}return o}function Qt(t,e,n){if(n||2===arguments.length)for(var r,i=0,s=e.length;i<s;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}function Zt(t){return this instanceof Zt?(this.v=t,this):new Zt(t)}function te(t){return"function"==typeof t}function ee(t){var e=t((function(t){Error.call(t),t.stack=(new Error).stack}));return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}Object.create,Object.create,"function"==typeof SuppressedError&&SuppressedError;var ne=ee((function(t){return function(e){t(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map((function(t,e){return e+1+") "+t.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=e}}));function re(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var ie=function(){function t(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var t,e,n,r,i;if(!this.closed){this.closed=!0;var s=this._parentage;if(s)if(this._parentage=null,Array.isArray(s))try{for(var o=Yt(s),a=o.next();!a.done;a=o.next())a.value.remove(this)}catch(e){t={error:e}}finally{try{a&&!a.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}else s.remove(this);var c=this.initialTeardown;if(te(c))try{c()}catch(t){i=t instanceof ne?t.errors:[t]}var u=this._finalizers;if(u){this._finalizers=null;try{for(var h=Yt(u),l=h.next();!l.done;l=h.next()){var f=l.value;try{ae(f)}catch(t){i=null!=i?i:[],t instanceof ne?i=Qt(Qt([],Xt(i)),Xt(t.errors)):i.push(t)}}}catch(t){n={error:t}}finally{try{l&&!l.done&&(r=h.return)&&r.call(h)}finally{if(n)throw n.error}}}if(i)throw new ne(i)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)ae(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=null!==(n=this._finalizers)&&void 0!==n?n:[]).push(e)}},t.prototype._hasParent=function(t){var e=this._parentage;return e===t||Array.isArray(e)&&e.includes(t)},t.prototype._addParent=function(t){var e=this._parentage;this._parentage=Array.isArray(e)?(e.push(t),e):e?[e,t]:t},t.prototype._removeParent=function(t){var e=this._parentage;e===t?this._parentage=null:Array.isArray(e)&&re(e,t)},t.prototype.remove=function(e){var n=this._finalizers;n&&re(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),se=ie.EMPTY;function oe(t){return t instanceof ie||t&&"closed"in t&&te(t.remove)&&te(t.add)&&te(t.unsubscribe)}function ae(t){te(t)?t():t.unsubscribe()}var ce={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},ue={setTimeout:function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];var i=ue.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,Qt([t,e],Xt(n))):setTimeout.apply(void 0,Qt([t,e],Xt(n)))},clearTimeout:function(t){var e=ue.delegate;return((null==e?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function he(t){ue.setTimeout((function(){var e=ce.onUnhandledError;if(!e)throw t;e(t)}))}function le(){}var fe=de("C",void 0,void 0);function de(t,e,n){return{kind:t,value:e,error:n}}var pe=null;function ge(t){if(ce.useDeprecatedSynchronousErrorHandling){var e=!pe;if(e&&(pe={errorThrown:!1,error:null}),t(),e){var n=pe,r=n.errorThrown,i=n.error;if(pe=null,r)throw i}}else t()}var ye=function(t){function e(e){var n=t.call(this)||this;return n.isStopped=!1,e?(n.destination=e,oe(e)&&e.add(n)):n.destination=Ee,n}return Jt(e,t),e.create=function(t,e,n){return new we(t,e,n)},e.prototype.next=function(t){this.isStopped?_e(function(t){return de("N",t,void 0)}(t),this):this._next(t)},e.prototype.error=function(t){this.isStopped?_e(de("E",void 0,t),this):(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped?_e(fe,this):(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(ie),be=Function.prototype.bind;function me(t,e){return be.call(t,e)}var ve=function(){function t(t){this.partialObserver=t}return t.prototype.next=function(t){var e=this.partialObserver;if(e.next)try{e.next(t)}catch(t){Se(t)}},t.prototype.error=function(t){var e=this.partialObserver;if(e.error)try{e.error(t)}catch(t){Se(t)}else Se(t)},t.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(t){Se(t)}},t}(),we=function(t){function e(e,n,r){var i,s,o=t.call(this)||this;return te(e)||!e?i={next:null!=e?e:void 0,error:null!=n?n:void 0,complete:null!=r?r:void 0}:o&&ce.useDeprecatedNextContext?((s=Object.create(e)).unsubscribe=function(){return o.unsubscribe()},i={next:e.next&&me(e.next,s),error:e.error&&me(e.error,s),complete:e.complete&&me(e.complete,s)}):i=e,o.destination=new ve(i),o}return Jt(e,t),e}(ye);function Se(t){var e;ce.useDeprecatedSynchronousErrorHandling?(e=t,ce.useDeprecatedSynchronousErrorHandling&&pe&&(pe.errorThrown=!0,pe.error=e)):he(t)}function _e(t,e){var n=ce.onStoppedNotification;n&&ue.setTimeout((function(){return n(t,e)}))}var Ee={closed:!0,next:le,error:function(t){throw t},complete:le},Oe="function"==typeof Symbol&&Symbol.observable||"@@observable";function ke(t){return t}var Ae=function(){function t(t){t&&(this._subscribe=t)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(t,e,n){var r=this,i=function(t){return t&&t instanceof ye||function(t){return t&&te(t.next)&&te(t.error)&&te(t.complete)}(t)&&oe(t)}(t)?t:new we(t,e,n);return ge((function(){var t=r,e=t.operator,n=t.source;i.add(e?e.call(i,n):n?r._subscribe(i):r._trySubscribe(i))})),i},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){t.error(e)}},t.prototype.forEach=function(t,e){var n=this;return new(e=Te(e))((function(e,r){var i=new we({next:function(e){try{t(e)}catch(t){r(t),i.unsubscribe()}},error:r,complete:e});n.subscribe(i)}))},t.prototype._subscribe=function(t){var e;return null===(e=this.source)||void 0===e?void 0:e.subscribe(t)},t.prototype[Oe]=function(){return this},t.prototype.pipe=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return(0===(n=t).length?ke:1===n.length?n[0]:function(t){return n.reduce((function(t,e){return e(t)}),t)})(this);var n},t.prototype.toPromise=function(t){var e=this;return new(t=Te(t))((function(t,n){var r;e.subscribe((function(t){return r=t}),(function(t){return n(t)}),(function(){return t(r)}))}))},t.create=function(e){return new t(e)},t}();function Te(t){var e;return null!==(e=null!=t?t:ce.Promise)&&void 0!==e?e:Promise}var xe=ee((function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),je=function(t){function e(){var e=t.call(this)||this;return e.closed=!1,e.currentObservers=null,e.observers=[],e.isStopped=!1,e.hasError=!1,e.thrownError=null,e}return Jt(e,t),e.prototype.lift=function(t){var e=new Ce(this,this);return e.operator=t,e},e.prototype._throwIfClosed=function(){if(this.closed)throw new xe},e.prototype.next=function(t){var e=this;ge((function(){var n,r;if(e._throwIfClosed(),!e.isStopped){e.currentObservers||(e.currentObservers=Array.from(e.observers));try{for(var i=Yt(e.currentObservers),s=i.next();!s.done;s=i.next())s.value.next(t)}catch(t){n={error:t}}finally{try{s&&!s.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}}}))},e.prototype.error=function(t){var e=this;ge((function(){if(e._throwIfClosed(),!e.isStopped){e.hasError=e.isStopped=!0,e.thrownError=t;for(var n=e.observers;n.length;)n.shift().error(t)}}))},e.prototype.complete=function(){var t=this;ge((function(){if(t._throwIfClosed(),!t.isStopped){t.isStopped=!0;for(var e=t.observers;e.length;)e.shift().complete()}}))},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var t;return(null===(t=this.observers)||void 0===t?void 0:t.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(e){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,e)},e.prototype._subscribe=function(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)},e.prototype._innerSubscribe=function(t){var e=this,n=this,r=n.hasError,i=n.isStopped,s=n.observers;return r||i?se:(this.currentObservers=null,s.push(t),new ie((function(){e.currentObservers=null,re(s,t)})))},e.prototype._checkFinalizedStatuses=function(t){var e=this,n=e.hasError,r=e.thrownError,i=e.isStopped;n?t.error(r):i&&t.complete()},e.prototype.asObservable=function(){var t=new Ae;return t.source=this,t},e.create=function(t,e){return new Ce(t,e)},e}(Ae),Ce=function(t){function e(e,n){var r=t.call(this)||this;return r.destination=e,r.source=n,r}return Jt(e,t),e.prototype.next=function(t){var e,n;null===(n=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===n||n.call(e,t)},e.prototype.error=function(t){var e,n;null===(n=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===n||n.call(e,t)},e.prototype.complete=function(){var t,e;null===(e=null===(t=this.destination)||void 0===t?void 0:t.complete)||void 0===e||e.call(t)},e.prototype._subscribe=function(t){var e,n;return null!==(n=null===(e=this.source)||void 0===e?void 0:e.subscribe(t))&&void 0!==n?n:se},e}(je),Re={now:function(){return(Re.delegate||Date).now()},delegate:void 0},Le=function(t){function e(e,n,r){void 0===e&&(e=1/0),void 0===n&&(n=1/0),void 0===r&&(r=Re);var i=t.call(this)||this;return i._bufferSize=e,i._windowTime=n,i._timestampProvider=r,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=n===1/0,i._bufferSize=Math.max(1,e),i._windowTime=Math.max(1,n),i}return Jt(e,t),e.prototype.next=function(e){var n=this,r=n.isStopped,i=n._buffer,s=n._infiniteTimeWindow,o=n._timestampProvider,a=n._windowTime;r||(i.push(e),!s&&i.push(o.now()+a)),this._trimBuffer(),t.prototype.next.call(this,e)},e.prototype._subscribe=function(t){this._throwIfClosed(),this._trimBuffer();for(var e=this._innerSubscribe(t),n=this._infiniteTimeWindow,r=this._buffer.slice(),i=0;i<r.length&&!t.closed;i+=n?1:2)t.next(r[i]);return this._checkFinalizedStatuses(t),e},e.prototype._trimBuffer=function(){var t=this,e=t._bufferSize,n=t._timestampProvider,r=t._buffer,i=t._infiniteTimeWindow,s=(i?1:2)*e;if(e<1/0&&s<r.length&&r.splice(0,r.length-s),!i){for(var o=n.now(),a=0,c=1;c<r.length&&r[c]<=o;c+=2)a=c;a&&r.splice(0,a+1)}},e}(je),De=function(t){function e(e){var n=t.call(this)||this;return n._value=e,n}return Jt(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),e.prototype._subscribe=function(e){var n=t.prototype._subscribe.call(this,e);return!n.closed&&e.next(this._value),n},e.prototype.getValue=function(){var t=this,e=t.hasError,n=t.thrownError,r=t._value;if(e)throw n;return this._throwIfClosed(),r},e.prototype.next=function(e){t.prototype.next.call(this,this._value=e)},e}(je),Be=ee((function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}}));function Fe(t){return function(e){if(function(t){return te(null==t?void 0:t.lift)}(e))return e.lift((function(e){try{return t(e,this)}catch(t){this.error(t)}}));throw new TypeError("Unable to lift unknown Observable type")}}var Ne=Array.isArray;function Pe(t,e,n,r,i){return new ze(t,e,n,r,i)}var ze=function(t){function e(e,n,r,i,s,o){var a=t.call(this,e)||this;return a.onFinalize=s,a.shouldUnsubscribe=o,a._next=n?function(t){try{n(t)}catch(t){e.error(t)}}:t.prototype._next,a._error=i?function(t){try{i(t)}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._error,a._complete=r?function(){try{r()}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._complete,a}return Jt(e,t),e.prototype.unsubscribe=function(){var e;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var n=this.closed;t.prototype.unsubscribe.call(this),!n&&(null===(e=this.onFinalize)||void 0===e||e.call(this))}},e}(ye);function Ie(t,e){return Fe((function(n,r){var i=0;n.subscribe(Pe(r,(function(n){r.next(t.call(e,n,i++))})))}))}var Ue=function(t){return t&&"number"==typeof t.length&&"function"!=typeof t};function Me(t){return te(null==t?void 0:t.then)}function qe(t){return te(t[Oe])}function Ve(t){return Symbol.asyncIterator&&te(null==t?void 0:t[Symbol.asyncIterator])}function We(t){return new TypeError("You provided "+(null!==t&&"object"==typeof t?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}var He="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function $e(t){return te(null==t?void 0:t[He])}function Ge(t){return function(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=n.apply(t,e||[]),s=[];return r={},o("next"),o("throw"),o("return"),r[Symbol.asyncIterator]=function(){return this},r;function o(t){i[t]&&(r[t]=function(e){return new Promise((function(n,r){s.push([t,e,n,r])>1||a(t,e)}))})}function a(t,e){try{(n=i[t](e)).value instanceof Zt?Promise.resolve(n.value.v).then(c,u):h(s[0][2],n)}catch(t){h(s[0][3],t)}var n}function c(t){a("next",t)}function u(t){a("throw",t)}function h(t,e){t(e),s.shift(),s.length&&a(s[0][0],s[0][1])}}(this,arguments,(function(){var e,n,r;return Kt(this,(function(i){switch(i.label){case 0:e=t.getReader(),i.label=1;case 1:i.trys.push([1,,9,10]),i.label=2;case 2:return[4,Zt(e.read())];case 3:return n=i.sent(),r=n.value,n.done?[4,Zt(void 0)]:[3,5];case 4:return[2,i.sent()];case 5:return[4,Zt(r)];case 6:return[4,i.sent()];case 7:return i.sent(),[3,2];case 8:return[3,10];case 9:return e.releaseLock(),[7];case 10:return[2]}}))}))}function Je(t){return te(null==t?void 0:t.getReader)}function Ke(t){if(t instanceof Ae)return t;if(null!=t){if(qe(t))return i=t,new Ae((function(t){var e=i[Oe]();if(te(e.subscribe))return e.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(Ue(t))return r=t,new Ae((function(t){for(var e=0;e<r.length&&!t.closed;e++)t.next(r[e]);t.complete()}));if(Me(t))return n=t,new Ae((function(t){n.then((function(e){t.closed||(t.next(e),t.complete())}),(function(e){return t.error(e)})).then(null,he)}));if(Ve(t))return Ye(t);if($e(t))return e=t,new Ae((function(t){var n,r;try{for(var i=Yt(e),s=i.next();!s.done;s=i.next()){var o=s.value;if(t.next(o),t.closed)return}}catch(t){n={error:t}}finally{try{s&&!s.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}t.complete()}));if(Je(t))return Ye(Ge(t))}var e,n,r,i;throw We(t)}function Ye(t){return new Ae((function(e){(function(t,e){var n,r,i,s,o,a,c,u;return o=this,a=void 0,u=function(){var o,a;return Kt(this,(function(c){switch(c.label){case 0:c.trys.push([0,5,6,11]),n=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=Yt(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,i){!function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)}(r,i,(e=t[n](e)).done,e.value)}))}}}(t),c.label=1;case 1:return[4,n.next()];case 2:if((r=c.sent()).done)return[3,4];if(o=r.value,e.next(o),e.closed)return[2];c.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=c.sent(),i={error:a},[3,11];case 6:return c.trys.push([6,,9,10]),r&&!r.done&&(s=n.return)?[4,s.call(n)]:[3,8];case 7:c.sent(),c.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}}))},new((c=void 0)||(c=Promise))((function(t,e){function n(t){try{i(u.next(t))}catch(t){e(t)}}function r(t){try{i(u.throw(t))}catch(t){e(t)}}function i(e){e.done?t(e.value):function(t){return t instanceof c?t:new c((function(e){e(t)}))}(e.value).then(n,r)}i((u=u.apply(o,a||[])).next())}))})(t,e).catch((function(t){return e.error(t)}))}))}function Xe(t,e,n,r,i){void 0===r&&(r=0),void 0===i&&(i=!1);var s=e.schedule((function(){n(),i?t.add(this.schedule(null,r)):this.unsubscribe()}),r);if(t.add(s),!i)return s}function Qe(t,e,n){return void 0===n&&(n=1/0),te(e)?Qe((function(n,r){return Ie((function(t,i){return e(n,t,r,i)}))(Ke(t(n,r)))}),n):("number"==typeof e&&(n=e),Fe((function(e,r){return function(t,e,n,r,i,s,o,a){var c=[],u=0,h=0,l=!1,f=function(){!l||c.length||u||e.complete()},d=function(t){return u<r?p(t):c.push(t)},p=function(t){u++;var i=!1;Ke(n(t,h++)).subscribe(Pe(e,(function(t){e.next(t)}),(function(){i=!0}),void 0,(function(){if(i)try{u--;for(;c.length&&u<r;)t=void 0,t=c.shift(),p(t);f()}catch(t){e.error(t)}var t})))};return t.subscribe(Pe(e,d,(function(){l=!0,f()}))),function(){}}(e,r,t,n)})))}function Ze(t){return t[t.length-1]}function tn(t,e){return void 0===e&&(e=0),Fe((function(n,r){n.subscribe(Pe(r,(function(n){return Xe(r,t,(function(){return r.next(n)}),e)}),(function(){return Xe(r,t,(function(){return r.complete()}),e)}),(function(n){return Xe(r,t,(function(){return r.error(n)}),e)})))}))}function en(t,e){return void 0===e&&(e=0),Fe((function(n,r){r.add(t.schedule((function(){return n.subscribe(r)}),e))}))}function nn(t,e){if(!t)throw new Error("Iterable cannot be null");return new Ae((function(n){Xe(n,e,(function(){var r=t[Symbol.asyncIterator]();Xe(n,e,(function(){r.next().then((function(t){t.done?n.complete():n.next(t.value)}))}),0,!0)}))}))}function rn(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=function(t){return function(t){return t&&te(t.schedule)}(Ze(t))?t.pop():void 0}(t),r=function(t,e){return"number"==typeof Ze(t)?t.pop():1/0}(t);return t=function(t){return 1===t.length&&Ne(t[0])?t[0]:t}(t),Fe((function(e,i){(function(t){return void 0===t&&(t=1/0),Qe(ke,t)})(r)(function(t,e){return e?function(t,e){if(null!=t){if(qe(t))return function(t,e){return Ke(t).pipe(en(e),tn(e))}(t,e);if(Ue(t))return function(t,e){return new Ae((function(n){var r=0;return e.schedule((function(){r===t.length?n.complete():(n.next(t[r++]),n.closed||this.schedule())}))}))}(t,e);if(Me(t))return function(t,e){return Ke(t).pipe(en(e),tn(e))}(t,e);if(Ve(t))return nn(t,e);if($e(t))return function(t,e){return new Ae((function(n){var r;return Xe(n,e,(function(){r=t[He](),Xe(n,e,(function(){var t,e,i;try{e=(t=r.next()).value,i=t.done}catch(t){return void n.error(t)}i?n.complete():n.next(e)}),0,!0)})),function(){return te(null==r?void 0:r.return)&&r.return()}}))}(t,e);if(Je(t))return function(t,e){return nn(Ge(t),e)}(t,e)}throw We(t)}(t,e):Ke(t)}(Qt([e],Xt(t)),n)).subscribe(i)}))}function sn(t,e){return void 0===e&&(e=ke),t=null!=t?t:on,Fe((function(n,r){var i,s=!0;n.subscribe(Pe(r,(function(n){var o=e(n);!s&&t(i,o)||(s=!1,i=o,r.next(n))})))}))}function on(t,e){return t===e}function an(t){void 0===t&&(t={});var e=t.connector,n=void 0===e?function(){return new je}:e,r=t.resetOnError,i=void 0===r||r,s=t.resetOnComplete,o=void 0===s||s,a=t.resetOnRefCountZero,c=void 0===a||a;return function(t){var e,r,s,a=0,u=!1,h=!1,l=function(){null==r||r.unsubscribe(),r=void 0},f=function(){l(),e=s=void 0,u=h=!1},d=function(){var t=e;f(),null==t||t.unsubscribe()};return Fe((function(t,p){a++,h||u||l();var g=s=null!=s?s:n();p.add((function(){0!=--a||h||u||(r=cn(d,c))})),g.subscribe(p),!e&&a>0&&(e=new we({next:function(t){return g.next(t)},error:function(t){h=!0,l(),r=cn(f,i,t),g.error(t)},complete:function(){u=!0,l(),r=cn(f,o),g.complete()}}),Ke(t).subscribe(e))}))(t)}}function cn(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(!0!==e){if(!1!==e){var i=new we({next:function(){i.unsubscribe(),t()}});return Ke(e.apply(void 0,Qt([],Xt(n)))).subscribe(i)}}else t()}class un{subscriptions=[];additionalSubscriptions=[];addSubscriptions(...t){this.subscriptions.push(...t)}addAdditionalSubscriptions(...t){this.additionalSubscriptions.push(...t)}unsubscribe(){this.subscriptions.forEach((t=>t.unsubscribe()))}unsubscribeAdditional(){this.additionalSubscriptions.forEach((t=>t.unsubscribe()))}}class hn extends un{onCallAnswered=new Le(1);onCallEnded=new Le(1);onUsingOpus=new Le(1);micState=new De(!1);hasEnded=!1;cameraDevice;connection;logger;onMicrophoneEnabled=this.createStateObservable(this.micState);get isUsingOpus(){return t=this.onUsingOpus.pipe(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return rn.apply(void 0,Qt([],Xt(t)))}(this.connection.onError.pipe(Ie((t=>{throw t}))))),new Promise((function(e,n){var r=new we({next:function(t){e(t),r.unsubscribe()},error:n,complete:function(){n(new Be)}});t.subscribe(r)}));var t}constructor(t,e,n){super(),this.cameraDevice=t,this.logger=e,this.connection=n,this.bindToConnection(n)}enableMicrophone(t){this.hasEnded||(this.connection.pc.enableMicrophone(t),this.micState.next(!0))}disableMicrophone(){this.hasEnded||(this.connection.pc.disableMicrophone(),this.micState.next(!1))}stop(){this.callEnded()}createStateObservable(t){return t.pipe(sn(((t,e)=>t===e)),an({connector:()=>new Le(1)}))}bindToConnection(t){this.addSubscriptions(t.onCallAnswered.subscribe((t=>{this.onUsingOpus.next(t.toLocaleLowerCase().includes(" opus/"))})),t.onCallEnded.subscribe((()=>this.callEnded())))}callEnded(){this.hasEnded||(this.hasEnded=!0,this.unsubscribe(),this.onCallEnded.next(),this.connection.stop())}}var ln=Array.isArray;var fn=["addListener","removeListener"],dn=["addEventListener","removeEventListener"],pn=["on","off"];function gn(t,e,n,r){if(te(n)&&(r=n,n=void 0),r)return gn(t,e,n).pipe((i=r,Ie((function(t){return function(t,e){return ln(e)?t.apply(void 0,Qt([],Xt(e))):t(e)}(i,t)}))));var i,s=Xt(function(t){return te(t.addEventListener)&&te(t.removeEventListener)}(t)?dn.map((function(r){return function(i){return t[r](e,i,n)}})):function(t){return te(t.addListener)&&te(t.removeListener)}(t)?fn.map(yn(t,e)):function(t){return te(t.on)&&te(t.off)}(t)?pn.map(yn(t,e)):[],2),o=s[0],a=s[1];if(!o&&Ue(t))return Qe((function(t){return gn(t,e,n)}))(Ke(t));if(!o)throw new TypeError("Invalid event target");return new Ae((function(t){var e=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return t.next(1<e.length?e:e[0])};return o(e),function(){return a(e)}}))}function yn(t,e){return function(n){return function(r){return t[n](e,r)}}}function bn(t){const e=[];return t.forEach((t=>{t.urls.forEach((n=>{e.push({urls:n,username:t.username,credential:t.credential})}))})),e}class mn extends un{onIceCandidate=new je;onConnectionState=new Le(1);videoTransceiver;audioTransceiver;cameraDevice;logger;pc;videoElement;constructor(t,e,n,r){super(),this.cameraDevice=t,this.logger=r,this.videoElement=e,this.pc=new RTCPeerConnection({iceServers:bn(n)}),this.audioTransceiver=this.pc.addTransceiver("audio",{direction:"sendrecv"}),this.videoTransceiver=this.pc.addTransceiver("video",{direction:"recvonly"}),this.pc.onconnectionstatechange=()=>{this.logger.debug(this.cameraDevice.name,"connectionStateChange:",this.pc.connectionState),this.onConnectionState.next(this.pc.connectionState)},this.pc.oniceconnectionstatechange=()=>{this.logger.debug(this.cameraDevice.name,"iceconnectionstatechange:",this.pc.iceConnectionState)},this.pc.onicegatheringstatechange=()=>{this.logger.debug(this.cameraDevice.name,"icegatheringstatechange:",this.pc.iceGatheringState)},this.pc.onicecandidate=t=>{t.candidate&&this.onIceCandidate.next(t.candidate)},this.pc.ontrack=t=>{this.logger.debug(this.cameraDevice.name,"ontrack:",t.track),e.srcObject?e.srcObject.addTrack(t.track):e.srcObject=new MediaStream([t.track])}}enableMicrophone(t){this.audioTransceiver.sender.replaceTrack(t)}disableMicrophone(){this.audioTransceiver.sender.replaceTrack(null)}async createOffer(){const t=await this.pc.createOffer();return await this.pc.setLocalDescription(t),t}async acceptAnswer(t){await this.pc.setRemoteDescription(t)}addIceCandidate(t){return this.pc.addIceCandidate(t)}close(){this.videoElement.srcObject=null,this.pc.close(),this.unsubscribe()}}class vn extends un{onCallAnswered=new Le(1);onCallEnded=new Le(1);onError=new Le(1);onMessage=new Le;onWsOpen;pc;ws;onOfferSent=new Le(1);hasEnded=!1;cameraDevice;logger;constructor(t,e,n,r,i){super(),this.cameraDevice=t,this.logger=i;const s=t.sources.find((t=>t.name===e));if(!s)throw new Error(`Invalid source name ${e}`);this.ws=new WebSocket(s.urls.ws.webrtc),this.pc=new mn(t,n,r,i),this.onWsOpen=gn(this.ws,"open");const o=gn(this.ws,"message"),a=gn(this.ws,"error"),c=gn(this.ws,"close");var u,h;this.addSubscriptions(o.pipe((u=t=>{const e=JSON.parse(t.data);return this.onMessage.next(e),this.handleMessage(e).catch((t=>{throw this.onError.next(t),t}))},te(h)?Qe(u,h,1):Qe(u,1))).subscribe(),a.subscribe((t=>{this.logger.error(this.cameraDevice.name,t),this.callEnded()})),c.subscribe((()=>{this.callEnded()})),this.cameraDevice.onConnected.subscribe((t=>{t||this.callEnded()})),this.onError.subscribe((t=>{this.logger.error(this.cameraDevice.name,t),this.callEnded()})),this.onWsOpen.subscribe((()=>{this.initiateCall().catch((t=>{this.logger.error(this.cameraDevice.name,t),this.callEnded()}))})),this.pc.onConnectionState.subscribe((t=>{"failed"===t&&(this.logger.error(this.cameraDevice.name,"Stream connection failed"),this.callEnded()),"closed"===t&&(this.logger.debug(this.cameraDevice.name,"Stream connection closed"),this.callEnded())})),this.pc.onIceCandidate.subscribe((async t=>{this.sendMessage({type:"webrtc/candidate",value:t.toJSON().candidate||""})})))}stop(){this.callEnded()}async initiateCall(){const{sdp:t}=await this.pc.createOffer();this.sendMessage({type:"webrtc/offer",value:t||""}),this.onOfferSent.next()}async handleMessage(t){switch(t.type){case"webrtc/answer":const e=t.value;return await this.pc.acceptAnswer({type:"answer",sdp:e}),void this.onCallAnswered.next(e);case"webrtc/candidate":return void await this.pc.addIceCandidate({candidate:t.value,sdpMid:"0"});case"error":throw new Error(t.value);default:throw new Error(t)}}sendMessage(t){this.hasEnded||this.ws.send(JSON.stringify(t))}callEnded(){this.hasEnded||(this.hasEnded=!0,this.unsubscribe(),this.onCallEnded.next(),this.pc.close(),this.ws.close())}}var wn=n(275),Sn=n.n(wn),_n=n(512),En=n.n(_n);const On="object"==typeof performance&&performance&&"function"==typeof performance.now?performance:Date,kn=new Set,An="object"==typeof process&&process?process:{},Tn=(t,e,n,r)=>{"function"==typeof An.emitWarning?An.emitWarning(t,e,n,r):console.error(`[${n}] ${e}: ${t}`)};let xn=globalThis.AbortController,jn=globalThis.AbortSignal;if(void 0===xn){jn=class{onabort;_onabort=[];reason;aborted=!1;addEventListener(t,e){this._onabort.push(e)}},xn=class{constructor(){e()}signal=new jn;abort(t){if(!this.signal.aborted){this.signal.reason=t,this.signal.aborted=!0;for(const e of this.signal._onabort)e(t);this.signal.onabort?.(t)}}};let t="1"!==An.env?.LRU_CACHE_IGNORE_AC_WARNING;const e=()=>{t&&(t=!1,Tn("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))}}Symbol("type");const Cn=t=>t&&t===Math.floor(t)&&t>0&&isFinite(t),Rn=t=>Cn(t)?t<=Math.pow(2,8)?Uint8Array:t<=Math.pow(2,16)?Uint16Array:t<=Math.pow(2,32)?Uint32Array:t<=Number.MAX_SAFE_INTEGER?Ln:null:null;class Ln extends Array{constructor(t){super(t),this.fill(0)}}class Dn{heap;length;static#t=!1;static create(t){const e=Rn(t);if(!e)return[];Dn.#t=!0;const n=new Dn(t,e);return Dn.#t=!1,n}constructor(t,e){if(!Dn.#t)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new e(t),this.length=0}push(t){this.heap[this.length++]=t}pop(){return this.heap[--this.length]}}class Bn{#e;#n;#r;#i;#s;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#o;#a;#c;#u;#h;#l;#f;#d;#p;#g;#y;#b;#m;#v;#w;#S;#_;static unsafeExposeInternals(t){return{starts:t.#m,ttls:t.#v,sizes:t.#b,keyMap:t.#c,keyList:t.#u,valList:t.#h,next:t.#l,prev:t.#f,get head(){return t.#d},get tail(){return t.#p},free:t.#g,isBackgroundFetch:e=>t.#E(e),backgroundFetch:(e,n,r,i)=>t.#O(e,n,r,i),moveToTail:e=>t.#k(e),indexes:e=>t.#A(e),rindexes:e=>t.#T(e),isStale:e=>t.#x(e)}}get max(){return this.#e}get maxSize(){return this.#n}get calculatedSize(){return this.#a}get size(){return this.#o}get fetchMethod(){return this.#s}get dispose(){return this.#r}get disposeAfter(){return this.#i}constructor(t){const{max:e=0,ttl:n,ttlResolution:r=1,ttlAutopurge:i,updateAgeOnGet:s,updateAgeOnHas:o,allowStale:a,dispose:c,disposeAfter:u,noDisposeOnSet:h,noUpdateTTL:l,maxSize:f=0,maxEntrySize:d=0,sizeCalculation:p,fetchMethod:g,noDeleteOnFetchRejection:y,noDeleteOnStaleGet:b,allowStaleOnFetchRejection:m,allowStaleOnFetchAbort:v,ignoreFetchAbort:w}=t;if(0!==e&&!Cn(e))throw new TypeError("max option must be a nonnegative integer");const S=e?Rn(e):Array;if(!S)throw new Error("invalid max value: "+e);if(this.#e=e,this.#n=f,this.maxEntrySize=d||this.#n,this.sizeCalculation=p,this.sizeCalculation){if(!this.#n&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if("function"!=typeof this.sizeCalculation)throw new TypeError("sizeCalculation set to non-function")}if(void 0!==g&&"function"!=typeof g)throw new TypeError("fetchMethod must be a function if specified");if(this.#s=g,this.#S=!!g,this.#c=new Map,this.#u=new Array(e).fill(void 0),this.#h=new Array(e).fill(void 0),this.#l=new S(e),this.#f=new S(e),this.#d=0,this.#p=0,this.#g=Dn.create(e),this.#o=0,this.#a=0,"function"==typeof c&&(this.#r=c),"function"==typeof u?(this.#i=u,this.#y=[]):(this.#i=void 0,this.#y=void 0),this.#w=!!this.#r,this.#_=!!this.#i,this.noDisposeOnSet=!!h,this.noUpdateTTL=!!l,this.noDeleteOnFetchRejection=!!y,this.allowStaleOnFetchRejection=!!m,this.allowStaleOnFetchAbort=!!v,this.ignoreFetchAbort=!!w,0!==this.maxEntrySize){if(0!==this.#n&&!Cn(this.#n))throw new TypeError("maxSize must be a positive integer if specified");if(!Cn(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#j()}if(this.allowStale=!!a,this.noDeleteOnStaleGet=!!b,this.updateAgeOnGet=!!s,this.updateAgeOnHas=!!o,this.ttlResolution=Cn(r)||0===r?r:1,this.ttlAutopurge=!!i,this.ttl=n||0,this.ttl){if(!Cn(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#C()}if(0===this.#e&&0===this.ttl&&0===this.#n)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#e&&!this.#n){const t="LRU_CACHE_UNBOUNDED";(t=>!kn.has(t))(t)&&(kn.add(t),Tn("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",t,Bn))}}getRemainingTTL(t){return this.#c.has(t)?1/0:0}#C(){const t=new Ln(this.#e),e=new Ln(this.#e);this.#v=t,this.#m=e,this.#R=(n,r,i=On.now())=>{if(e[n]=0!==r?i:0,t[n]=r,0!==r&&this.ttlAutopurge){const t=setTimeout((()=>{this.#x(n)&&this.delete(this.#u[n])}),r+1);t.unref&&t.unref()}},this.#L=n=>{e[n]=0!==t[n]?On.now():0},this.#D=(i,s)=>{if(t[s]){const o=t[s],a=e[s];if(!o||!a)return;i.ttl=o,i.start=a,i.now=n||r();const c=i.now-a;i.remainingTTL=o-c}};let n=0;const r=()=>{const t=On.now();if(this.ttlResolution>0){n=t;const e=setTimeout((()=>n=0),this.ttlResolution);e.unref&&e.unref()}return t};this.getRemainingTTL=i=>{const s=this.#c.get(i);if(void 0===s)return 0;const o=t[s],a=e[s];return o&&a?o-((n||r())-a):1/0},this.#x=i=>{const s=e[i],o=t[i];return!!o&&!!s&&(n||r())-s>o}}#L=()=>{};#D=()=>{};#R=()=>{};#x=()=>!1;#j(){const t=new Ln(this.#e);this.#a=0,this.#b=t,this.#B=e=>{this.#a-=t[e],t[e]=0},this.#F=(t,e,n,r)=>{if(this.#E(e))return 0;if(!Cn(n)){if(!r)throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");if("function"!=typeof r)throw new TypeError("sizeCalculation must be a function");if(n=r(e,t),!Cn(n))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}return n},this.#N=(e,n,r)=>{if(t[e]=n,this.#n){const n=this.#n-t[e];for(;this.#a>n;)this.#P(!0)}this.#a+=t[e],r&&(r.entrySize=n,r.totalCalculatedSize=this.#a)}}#B=t=>{};#N=(t,e,n)=>{};#F=(t,e,n,r)=>{if(n||r)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0};*#A({allowStale:t=this.allowStale}={}){if(this.#o)for(let e=this.#p;this.#z(e)&&(!t&&this.#x(e)||(yield e),e!==this.#d);)e=this.#f[e]}*#T({allowStale:t=this.allowStale}={}){if(this.#o)for(let e=this.#d;this.#z(e)&&(!t&&this.#x(e)||(yield e),e!==this.#p);)e=this.#l[e]}#z(t){return void 0!==t&&this.#c.get(this.#u[t])===t}*entries(){for(const t of this.#A())void 0===this.#h[t]||void 0===this.#u[t]||this.#E(this.#h[t])||(yield[this.#u[t],this.#h[t]])}*rentries(){for(const t of this.#T())void 0===this.#h[t]||void 0===this.#u[t]||this.#E(this.#h[t])||(yield[this.#u[t],this.#h[t]])}*keys(){for(const t of this.#A()){const e=this.#u[t];void 0===e||this.#E(this.#h[t])||(yield e)}}*rkeys(){for(const t of this.#T()){const e=this.#u[t];void 0===e||this.#E(this.#h[t])||(yield e)}}*values(){for(const t of this.#A())void 0===this.#h[t]||this.#E(this.#h[t])||(yield this.#h[t])}*rvalues(){for(const t of this.#T())void 0===this.#h[t]||this.#E(this.#h[t])||(yield this.#h[t])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(t,e={}){for(const n of this.#A()){const r=this.#h[n],i=this.#E(r)?r.__staleWhileFetching:r;if(void 0!==i&&t(i,this.#u[n],this))return this.get(this.#u[n],e)}}forEach(t,e=this){for(const n of this.#A()){const r=this.#h[n],i=this.#E(r)?r.__staleWhileFetching:r;void 0!==i&&t.call(e,i,this.#u[n],this)}}rforEach(t,e=this){for(const n of this.#T()){const r=this.#h[n],i=this.#E(r)?r.__staleWhileFetching:r;void 0!==i&&t.call(e,i,this.#u[n],this)}}purgeStale(){let t=!1;for(const e of this.#T({allowStale:!0}))this.#x(e)&&(this.delete(this.#u[e]),t=!0);return t}info(t){const e=this.#c.get(t);if(void 0===e)return;const n=this.#h[e],r=this.#E(n)?n.__staleWhileFetching:n;if(void 0===r)return;const i={value:r};if(this.#v&&this.#m){const t=this.#v[e],n=this.#m[e];if(t&&n){const e=t-(On.now()-n);i.ttl=e,i.start=Date.now()}}return this.#b&&(i.size=this.#b[e]),i}dump(){const t=[];for(const e of this.#A({allowStale:!0})){const n=this.#u[e],r=this.#h[e],i=this.#E(r)?r.__staleWhileFetching:r;if(void 0===i||void 0===n)continue;const s={value:i};if(this.#v&&this.#m){s.ttl=this.#v[e];const t=On.now()-this.#m[e];s.start=Math.floor(Date.now()-t)}this.#b&&(s.size=this.#b[e]),t.unshift([n,s])}return t}load(t){this.clear();for(const[e,n]of t){if(n.start){const t=Date.now()-n.start;n.start=On.now()-t}this.set(e,n.value,n)}}set(t,e,n={}){if(void 0===e)return this.delete(t),this;const{ttl:r=this.ttl,start:i,noDisposeOnSet:s=this.noDisposeOnSet,sizeCalculation:o=this.sizeCalculation,status:a}=n;let{noUpdateTTL:c=this.noUpdateTTL}=n;const u=this.#F(t,e,n.size||0,o);if(this.maxEntrySize&&u>this.maxEntrySize)return a&&(a.set="miss",a.maxEntrySizeExceeded=!0),this.delete(t),this;let h=0===this.#o?void 0:this.#c.get(t);if(void 0===h)h=0===this.#o?this.#p:0!==this.#g.length?this.#g.pop():this.#o===this.#e?this.#P(!1):this.#o,this.#u[h]=t,this.#h[h]=e,this.#c.set(t,h),this.#l[this.#p]=h,this.#f[h]=this.#p,this.#p=h,this.#o++,this.#N(h,u,a),a&&(a.set="add"),c=!1;else{this.#k(h);const n=this.#h[h];if(e!==n){if(this.#S&&this.#E(n)){n.__abortController.abort(new Error("replaced"));const{__staleWhileFetching:e}=n;void 0===e||s||(this.#w&&this.#r?.(e,t,"set"),this.#_&&this.#y?.push([e,t,"set"]))}else s||(this.#w&&this.#r?.(n,t,"set"),this.#_&&this.#y?.push([n,t,"set"]));if(this.#B(h),this.#N(h,u,a),this.#h[h]=e,a){a.set="replace";const t=n&&this.#E(n)?n.__staleWhileFetching:n;void 0!==t&&(a.oldValue=t)}}else a&&(a.set="update")}if(0===r||this.#v||this.#C(),this.#v&&(c||this.#R(h,r,i),a&&this.#D(a,h)),!s&&this.#_&&this.#y){const t=this.#y;let e;for(;e=t?.shift();)this.#i?.(...e)}return this}pop(){try{for(;this.#o;){const t=this.#h[this.#d];if(this.#P(!0),this.#E(t)){if(t.__staleWhileFetching)return t.__staleWhileFetching}else if(void 0!==t)return t}}finally{if(this.#_&&this.#y){const t=this.#y;let e;for(;e=t?.shift();)this.#i?.(...e)}}}#P(t){const e=this.#d,n=this.#u[e],r=this.#h[e];return this.#S&&this.#E(r)?r.__abortController.abort(new Error("evicted")):(this.#w||this.#_)&&(this.#w&&this.#r?.(r,n,"evict"),this.#_&&this.#y?.push([r,n,"evict"])),this.#B(e),t&&(this.#u[e]=void 0,this.#h[e]=void 0,this.#g.push(e)),1===this.#o?(this.#d=this.#p=0,this.#g.length=0):this.#d=this.#l[e],this.#c.delete(n),this.#o--,e}has(t,e={}){const{updateAgeOnHas:n=this.updateAgeOnHas,status:r}=e,i=this.#c.get(t);if(void 0!==i){const t=this.#h[i];if(this.#E(t)&&void 0===t.__staleWhileFetching)return!1;if(!this.#x(i))return n&&this.#L(i),r&&(r.has="hit",this.#D(r,i)),!0;r&&(r.has="stale",this.#D(r,i))}else r&&(r.has="miss");return!1}peek(t,e={}){const{allowStale:n=this.allowStale}=e,r=this.#c.get(t);if(void 0===r||!n&&this.#x(r))return;const i=this.#h[r];return this.#E(i)?i.__staleWhileFetching:i}#O(t,e,n,r){const i=void 0===e?void 0:this.#h[e];if(this.#E(i))return i;const s=new xn,{signal:o}=n;o?.addEventListener("abort",(()=>s.abort(o.reason)),{signal:s.signal});const a={signal:s.signal,options:n,context:r},c=(r,i=!1)=>{const{aborted:o}=s.signal,c=n.ignoreFetchAbort&&void 0!==r;if(n.status&&(o&&!i?(n.status.fetchAborted=!0,n.status.fetchError=s.signal.reason,c&&(n.status.fetchAbortIgnored=!0)):n.status.fetchResolved=!0),o&&!c&&!i)return u(s.signal.reason);const l=h;return this.#h[e]===h&&(void 0===r?l.__staleWhileFetching?this.#h[e]=l.__staleWhileFetching:this.delete(t):(n.status&&(n.status.fetchUpdated=!0),this.set(t,r,a.options))),r},u=r=>{const{aborted:i}=s.signal,o=i&&n.allowStaleOnFetchAbort,a=o||n.allowStaleOnFetchRejection,c=a||n.noDeleteOnFetchRejection,u=h;if(this.#h[e]===h&&(c&&void 0!==u.__staleWhileFetching?o||(this.#h[e]=u.__staleWhileFetching):this.delete(t)),a)return n.status&&void 0!==u.__staleWhileFetching&&(n.status.returnedStale=!0),u.__staleWhileFetching;if(u.__returned===u)throw r};n.status&&(n.status.fetchDispatched=!0);const h=new Promise(((e,r)=>{const o=this.#s?.(t,i,a);o&&o instanceof Promise&&o.then((t=>e(void 0===t?void 0:t)),r),s.signal.addEventListener("abort",(()=>{n.ignoreFetchAbort&&!n.allowStaleOnFetchAbort||(e(void 0),n.allowStaleOnFetchAbort&&(e=t=>c(t,!0)))}))})).then(c,(t=>(n.status&&(n.status.fetchRejected=!0,n.status.fetchError=t),u(t)))),l=Object.assign(h,{__abortController:s,__staleWhileFetching:i,__returned:void 0});return void 0===e?(this.set(t,l,{...a.options,status:void 0}),e=this.#c.get(t)):this.#h[e]=l,l}#E(t){if(!this.#S)return!1;const e=t;return!!e&&e instanceof Promise&&e.hasOwnProperty("__staleWhileFetching")&&e.__abortController instanceof xn}async fetch(t,e={}){const{allowStale:n=this.allowStale,updateAgeOnGet:r=this.updateAgeOnGet,noDeleteOnStaleGet:i=this.noDeleteOnStaleGet,ttl:s=this.ttl,noDisposeOnSet:o=this.noDisposeOnSet,size:a=0,sizeCalculation:c=this.sizeCalculation,noUpdateTTL:u=this.noUpdateTTL,noDeleteOnFetchRejection:h=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:l=this.allowStaleOnFetchRejection,ignoreFetchAbort:f=this.ignoreFetchAbort,allowStaleOnFetchAbort:d=this.allowStaleOnFetchAbort,context:p,forceRefresh:g=!1,status:y,signal:b}=e;if(!this.#S)return y&&(y.fetch="get"),this.get(t,{allowStale:n,updateAgeOnGet:r,noDeleteOnStaleGet:i,status:y});const m={allowStale:n,updateAgeOnGet:r,noDeleteOnStaleGet:i,ttl:s,noDisposeOnSet:o,size:a,sizeCalculation:c,noUpdateTTL:u,noDeleteOnFetchRejection:h,allowStaleOnFetchRejection:l,allowStaleOnFetchAbort:d,ignoreFetchAbort:f,status:y,signal:b};let v=this.#c.get(t);if(void 0===v){y&&(y.fetch="miss");const e=this.#O(t,v,m,p);return e.__returned=e}{const e=this.#h[v];if(this.#E(e)){const t=n&&void 0!==e.__staleWhileFetching;return y&&(y.fetch="inflight",t&&(y.returnedStale=!0)),t?e.__staleWhileFetching:e.__returned=e}const i=this.#x(v);if(!g&&!i)return y&&(y.fetch="hit"),this.#k(v),r&&this.#L(v),y&&this.#D(y,v),e;const s=this.#O(t,v,m,p),o=void 0!==s.__staleWhileFetching&&n;return y&&(y.fetch=i?"stale":"refresh",o&&i&&(y.returnedStale=!0)),o?s.__staleWhileFetching:s.__returned=s}}get(t,e={}){const{allowStale:n=this.allowStale,updateAgeOnGet:r=this.updateAgeOnGet,noDeleteOnStaleGet:i=this.noDeleteOnStaleGet,status:s}=e,o=this.#c.get(t);if(void 0!==o){const e=this.#h[o],a=this.#E(e);return s&&this.#D(s,o),this.#x(o)?(s&&(s.get="stale"),a?(s&&n&&void 0!==e.__staleWhileFetching&&(s.returnedStale=!0),n?e.__staleWhileFetching:void 0):(i||this.delete(t),s&&n&&(s.returnedStale=!0),n?e:void 0)):(s&&(s.get="hit"),a?e.__staleWhileFetching:(this.#k(o),r&&this.#L(o),e))}s&&(s.get="miss")}#I(t,e){this.#f[e]=t,this.#l[t]=e}#k(t){t!==this.#p&&(t===this.#d?this.#d=this.#l[t]:this.#I(this.#f[t],this.#l[t]),this.#I(this.#p,t),this.#p=t)}delete(t){let e=!1;if(0!==this.#o){const n=this.#c.get(t);if(void 0!==n)if(e=!0,1===this.#o)this.clear();else{this.#B(n);const e=this.#h[n];if(this.#E(e)?e.__abortController.abort(new Error("deleted")):(this.#w||this.#_)&&(this.#w&&this.#r?.(e,t,"delete"),this.#_&&this.#y?.push([e,t,"delete"])),this.#c.delete(t),this.#u[n]=void 0,this.#h[n]=void 0,n===this.#p)this.#p=this.#f[n];else if(n===this.#d)this.#d=this.#l[n];else{const t=this.#f[n];this.#l[t]=this.#l[n];const e=this.#l[n];this.#f[e]=this.#f[n]}this.#o--,this.#g.push(n)}}if(this.#_&&this.#y?.length){const t=this.#y;let e;for(;e=t?.shift();)this.#i?.(...e)}return e}clear(){for(const t of this.#T({allowStale:!0})){const e=this.#h[t];if(this.#E(e))e.__abortController.abort(new Error("deleted"));else{const n=this.#u[t];this.#w&&this.#r?.(e,n,"delete"),this.#_&&this.#y?.push([e,n,"delete"])}}if(this.#c.clear(),this.#h.fill(void 0),this.#u.fill(void 0),this.#v&&this.#m&&(this.#v.fill(0),this.#m.fill(0)),this.#b&&this.#b.fill(0),this.#d=0,this.#p=0,this.#g.length=0,this.#a=0,this.#o=0,this.#_&&this.#y){const t=this.#y;let e;for(;e=t?.shift();)this.#i?.(...e)}}}function Fn(){return Fe((function(t,e){var n,r=!1;t.subscribe(Pe(e,(function(t){var i=n;n=t,r&&e.next([i,t]),r=!0})))}))}function Nn(t,e){return Fe((function(n,r){var i=0;n.subscribe(Pe(r,(function(n){return t.call(e,n,i++)&&r.next(n)})))}))}class Pn{subscriptions=[];additionalSubscriptions=[];addSubscriptions(...t){this.subscriptions.push(...t)}addAdditionalSubscriptions(...t){this.additionalSubscriptions.push(...t)}unsubscribe(){this.subscriptions.forEach((t=>t.unsubscribe()))}unsubscribeAdditional(){this.additionalSubscriptions.forEach((t=>t.unsubscribe()))}}class zn extends Pn{logger;snapshotCache=new Bn({max:100,ttl:3e5});cameraSubject;cameraState=new De(!1);lightState=new De({state:!1,timestamp:0});motionState=new De({state:!1,timestamp:0,detections:[]});audioState=new De({state:!1,timestamp:0});objectState=new De({timestamp:0,detections:[]});doorbellState=new De({state:!1,timestamp:0});sirenState=new De({state:!1,timestamp:0});batteryState=new De({level:100,timestamp:0});onConnected=this.createStateObservable(this.cameraState);onLightSwitched=this.createStateObservable(this.lightState);onMotionDetected=this.createStateObservable(this.motionState);onAudioDetected=this.createStateObservable(this.audioState);onObjectDetected=this.createStateObservable(this.objectState);onDoorbellPressed=this.createStateObservable(this.doorbellState);onSirenDetected=this.createStateObservable(this.sirenState);onBatteryChanged=this.createStateObservable(this.batteryState);get id(){return this.cameraSubject.getValue()._id}get nativeId(){return this.cameraSubject.getValue().nativeId}get pluginId(){return this.cameraSubject.getValue().pluginId}get state(){return this.cameraState.getValue()}get disabled(){return this.cameraSubject.getValue().disabled}get name(){return this.cameraSubject.getValue().name}get type(){return this.cameraSubject.getValue().type}get info(){return Sn()(this.cameraSubject.getValue().info)}get isCloud(){return this.cameraSubject.getValue().isCloud}get hasLight(){return this.cameraSubject.getValue().hasLight}get hasSiren(){return this.cameraSubject.getValue().hasSiren}get hasBinarySensor(){return this.cameraSubject.getValue().hasBinarySensor}get hasBattery(){return this.cameraSubject.getValue().hasBattery}get hasMotionDetector(){return this.cameraSubject.getValue().hasMotionDetector}get hasAudioDetector(){return this.cameraSubject.getValue().hasAudioDetector}get hasObjectDetector(){return this.cameraSubject.getValue().hasObjectDetector}get hasPtz(){return this.cameraSubject.getValue().hasPtz}get hasPrebuffer(){return this.cameraSubject.getValue().hasPrebuffer}get hasIntercom(){return this.cameraSubject.getValue().hasIntercom}get motionZones(){return Sn()(this.cameraSubject.getValue().motionZones)}get objectZones(){return Sn()(this.cameraSubject.getValue().objectZones)}get sources(){return Sn()(this.cameraSubject.getValue().sources).map((t=>({...t,isPrebuffering:async()=>!1,getPrebufferRawUrl:async()=>{},getStreamInfo:async()=>{}})))}get streamSource(){return this.sources.find((t=>t.roles.includes("stream")))||this.sources[0]}get snapshotSource(){return this.sources.find((t=>t.roles.includes("snapshot")))||this.streamSource}get recordingSource(){return this.sources.find((t=>t.roles.includes("record")))||this.streamSource}get detectionSource(){return this.sources.find((t=>t.roles.includes("detect")))||this.streamSource}constructor(t,e){super(),this.logger=e,this.cameraSubject=new De(t),"native"===t.pluginId&&this.cameraState.next(!0)}getValue(t){switch(t){case"light":return Sn()(this.lightState.getValue());case"motion":return Sn()(this.motionState.getValue());case"audio":return Sn()(this.audioState.getValue());case"object":return Sn()(this.objectState.getValue());case"doorbell":return Sn()(this.doorbellState.getValue());case"siren":return Sn()(this.sirenState.getValue());case"battery":return Sn()(this.batteryState.getValue());default:throw new Error(`Unknown state: ${t}`)}}async updateState(t,e){switch(t){case"light":{const t=this.getLightState(e);t&&this.lightState.next(t)}break;case"motion":{const t=this.getMotionState(e);t&&this.motionState.next(t)}break;case"audio":{const t=this.getAudioState(e);t&&this.audioState.next(t)}break;case"object":{const t=this.getObjectState(e);t&&this.objectState.next(t)}break;case"doorbell":{const t=this.getDoorbellState(e);t&&this.doorbellState.next(t)}break;case"siren":{const t=this.getSirenState(e);t&&this.sirenState.next(t)}break;case"battery":{const t=this.getBatteryState(e);t&&this.batteryState.next(t)}break;default:throw new Error(`Unknown state: ${t}`)}}onStateChange(t){return this[`${t}State`].pipe(Fn(),Nn((([t,e])=>"boolean"==typeof t||"boolean"==typeof e?t!==e:!1===this.stateChanged(t,e))),Ie((([t,e])=>({oldState:t,newState:e}))),an({connector:()=>new Le(1)}))}onPropertyChange(t){return this.cameraSubject.pipe(Fn(),Nn((([e,n])=>!En()(e[t],n[t]))),Ie((([e,n])=>({oldData:e[t],newData:n[t]}))),an({connector:()=>new Le(1)}))}removeAllListeners(){this.lightState.complete(),this.motionState.complete(),this.audioState.complete(),this.objectState.complete(),this.doorbellState.complete(),this.sirenState.complete(),this.batteryState.complete(),this.cameraSubject.complete(),this.cameraState.complete()}getAudioState(t){if(!this.hasAudioDetector)return;const e=this.getValue("audio");return delete e.lastEvent,{...t,db:t.db||this.audioState.getValue().db,timestamp:Date.now(),lastEvent:e}}getMotionState(t){if(!this.hasMotionDetector)return;const e=this.getValue("motion");return delete e.lastEvent,{...t,timestamp:Date.now(),lastEvent:e}}getObjectState(t){if(!this.hasBattery)return;const e=this.getValue("object");return delete e.lastEvent,{...t,timestamp:Date.now(),lastEvent:e}}getDoorbellState(t){if(!this.hasBinarySensor)return;const e=this.getValue("doorbell");return delete e.lastEvent,{...t,timestamp:Date.now(),lastEvent:e}}getLightState(t){if(!this.hasLight)return;const e=this.getValue("light");return delete e.lastEvent,{...t,timestamp:Date.now(),lastEvent:e}}getSirenState(t){if(!this.hasSiren)return;const e=this.getValue("siren");return delete e.lastEvent,{...t,level:t.level||this.sirenState.getValue().level,timestamp:Date.now(),lastEvent:e}}getBatteryState(t){if(!this.hasBattery)return;const e=this.getValue("battery");return delete e.lastEvent,{...t,charging:t.charging||this.batteryState.getValue().charging,lowBattery:t.lowBattery||this.batteryState.getValue().lowBattery,timestamp:Date.now(),lastEvent:e}}createStateObservable(t){return t.pipe(sn(((t,e)=>"boolean"==typeof t||"boolean"==typeof e?t===e:!1===this.stateChanged(t,e))),an({connector:()=>new Le(1)}))}updateCamera(t){this.cameraSubject.next(t)}updateCameraState(t){this.cameraState.next(t)}stateChanged(t,e){return!(!t||!e||("boolean"==typeof t||"boolean"==typeof e?t===e:this.isAudioState(t)&&this.isAudioState(e)?t.state===e.state&&t.db===e.db:this.isMotionState(t)&&this.isMotionState(e)?t.state===e.state&&En()(t.detections,e.detections):this.isObjectState(t)&&this.isObjectState(e)?En()(t.detections,e.detections):this.isSirenState(t)&&this.isSirenState(e)?t.state===e.state&&t.level===e.level:this.isBatteryState(t)&&this.isBatteryState(e)?t.level===e.level&&t.lowBattery===e.lowBattery&&t.charging===e.charging:t.state===e.state))}isAudioState(t){return"state"in t&&"db"in t}isMotionState(t){return"state"in t&&"detections"in t}isObjectState(t){return"detections"in t}isSirenState(t){return"state"in t&&"level"in t}isBatteryState(t){return!("state"in t)&&"level"in t&&("lowBattery"in t||"charging"in t)}isGenericState(t){return"state"in t}}class In extends zn{async snapshot(t=!1){const e=this.snapshotSource.urls.www.jpegSnapshot,n=this.snapshotCache.get(this.snapshotSource._id);if(!t&&n)return n;const r=await fetch(e);if(!r.ok)throw new Error("Status Code: "+r.status);const i=await r.arrayBuffer();return i.byteLength>0&&this.snapshotCache.set(this.snapshotSource._id,i),i}async createSession(t,e){const n=await this.getIceServers(),r=new vn(this,t,e,n,this.logger);return new hn(this,this.logger,r)}}class Un extends In{socketService;get sources(){return super.sources.map((t=>({...t,isPrebuffering:async e=>this.socketService.sendRequest({name:"cameraDevice",method:"isPrebuffering",args:[{sourceName:t.name,type:e,cameraId:this.id}]}),getPrebufferRawUrl:async e=>this.socketService.sendRequest({name:"cameraDevice",method:"getPrebufferRawUrl",args:[{sourceName:t.name,type:e}]}),getStreamInfo:async()=>this.socketService.sendRequest({name:"cameraDevice",method:"getStreamInfo",args:[{sourceName:t.name}]})})))}constructor(t,e,n){super(t,n),this.socketService=e,this.listenToMessages()}connect(){return this.socketService.sendRequest({name:"cameraDevice",method:"connect",args:[{cameraId:this.id}]})}disconnect(){return this.socketService.sendRequest({name:"cameraDevice",method:"disconnect",args:[{cameraId:this.id}]})}reboot(){return this.socketService.sendRequest({name:"cameraDevice",method:"reboot",args:[{cameraId:this.id}]})}getIceServers(){return this.socketService.sendRequest({name:"cameraDevice",method:"getIceServers",args:[{cameraId:this.id}]})}async updateState(t,e){let n=!1;switch(t){case"light":n=this.stateChanged(this.lightState.getValue(),this.getLightState(e));break;case"motion":n=this.stateChanged(this.motionState.getValue(),this.getMotionState(e));break;case"audio":n=this.stateChanged(this.audioState.getValue(),this.getAudioState(e));break;case"object":n=this.stateChanged(this.objectState.getValue(),this.getObjectState(e));break;case"doorbell":n=this.stateChanged(this.doorbellState.getValue(),this.getDoorbellState(e));break;case"siren":n=this.stateChanged(this.sirenState.getValue(),this.getSirenState(e));break;case"battery":n=this.stateChanged(this.batteryState.getValue(),this.getBatteryState(e));break;default:throw new Error(`Unknown state: ${t}`)}if(n)return super.updateState(t,e),this.socketService.sendRequest({name:"cameraDevice",method:"updateState",args:[{cameraId:this.id,stateName:t,eventData:e}]})}async refreshStates(){const t=await this.socketService.sendRequest({name:"cameraDevice",method:"refreshStates",args:[{cameraId:this.id}]});this.updateCamera(t.camera),this.updateCameraState(t.cameraState);for(const[e,n]of Object.entries(t.states))super.updateState(e,n)}async cleanup(){try{this.removeAllListeners(),this.unsubscribe()}catch{}}listenToMessages(){this.socketService.socket.on("updateState",(t=>{t.cameraId===this.id&&super.updateState(t.stateName,t.data.newEvent)})),this.socketService.socket.on("updateDevice",(t=>{if(t.cameraId===this.id)switch(t.type){case"removed":this.cleanup();break;case"updated":super.updateCamera(t.data);break;case"cameraState":super.updateCameraState(t.data)}}))}}class Mn{socketService;devices=new Map;logger;constructor(t,e){this.socketService=t,this.logger=e}async getCameraById(t){let e=await this.addOrGetCamera(t);if(!e){const n=await this.socketService.sendRequest({name:"deviceManager",method:"getCameraById",args:[{id:t}]});n&&(e=await this.addOrGetCamera(n))}return e}async getCameraByName(t){let e=Array.from(this.devices.values()).find((e=>e.name===t));if(!e){const n=await this.socketService.sendRequest({name:"deviceManager",method:"getCameraByName",args:[{name:t}]});n&&(e=await this.addOrGetCamera(n))}return e}async addOrGetCamera(t){let e;if("string"==typeof t)e=Array.from(this.devices.values()).find((e=>e.id===t||e.name===t));else{const n=t;this.devices.has(n._id)?e=this.devices.get(n._id):(e=new Un(n,this.socketService,this.logger),this.devices.set(n._id,e))}return await(e?.refreshStates()),e}}class qn{socketService;logger;constructor(t,e){this.socketService=t,this.logger=e}}class Vn{socketService;logger;constructor(t,e){this.socketService=t,this.logger=e}}const Wn=Object.create(null);Wn.open="0",Wn.close="1",Wn.ping="2",Wn.pong="3",Wn.message="4",Wn.upgrade="5",Wn.noop="6";const Hn=Object.create(null);Object.keys(Wn).forEach((t=>{Hn[Wn[t]]=t}));const $n={type:"error",data:"parser error"},Gn="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===Object.prototype.toString.call(Blob),Jn="function"==typeof ArrayBuffer,Kn=t=>"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer instanceof ArrayBuffer,Yn=({type:t,data:e},n,r)=>Gn&&e instanceof Blob?n?r(e):Xn(e,r):Jn&&(e instanceof ArrayBuffer||Kn(e))?n?r(e):Xn(new Blob([e]),r):r(Wn[t]+(e||"")),Xn=(t,e)=>{const n=new FileReader;return n.onload=function(){const t=n.result.split(",")[1];e("b"+(t||""))},n.readAsDataURL(t)};function Qn(t){return t instanceof Uint8Array?t:t instanceof ArrayBuffer?new Uint8Array(t):new Uint8Array(t.buffer,t.byteOffset,t.byteLength)}let Zn;const tr="undefined"==typeof Uint8Array?[]:new Uint8Array(256);for(let t=0;t<64;t++)tr["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(t)]=t;const er="function"==typeof ArrayBuffer,nr=(t,e)=>{if("string"!=typeof t)return{type:"message",data:ir(t,e)};const n=t.charAt(0);return"b"===n?{type:"message",data:rr(t.substring(1),e)}:Hn[n]?t.length>1?{type:Hn[n],data:t.substring(1)}:{type:Hn[n]}:$n},rr=(t,e)=>{if(er){const n=(t=>{let e,n,r,i,s,o=.75*t.length,a=t.length,c=0;"="===t[t.length-1]&&(o--,"="===t[t.length-2]&&o--);const u=new ArrayBuffer(o),h=new Uint8Array(u);for(e=0;e<a;e+=4)n=tr[t.charCodeAt(e)],r=tr[t.charCodeAt(e+1)],i=tr[t.charCodeAt(e+2)],s=tr[t.charCodeAt(e+3)],h[c++]=n<<2|r>>4,h[c++]=(15&r)<<4|i>>2,h[c++]=(3&i)<<6|63&s;return u})(t);return ir(n,e)}return{base64:!0,data:t}},ir=(t,e)=>"blob"===e?t instanceof Blob?t:new Blob([t]):t instanceof ArrayBuffer?t:t.buffer,sr=String.fromCharCode(30);let or;function ar(t){return t.reduce(((t,e)=>t+e.length),0)}function cr(t,e){if(t[0].length===e)return t.shift();const n=new Uint8Array(e);let r=0;for(let i=0;i<e;i++)n[i]=t[0][r++],r===t[0].length&&(t.shift(),r=0);return t.length&&r<t[0].length&&(t[0]=t[0].slice(r)),n}function ur(t){if(t)return function(t){for(var e in ur.prototype)t[e]=ur.prototype[e];return t}(t)}ur.prototype.on=ur.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},ur.prototype.once=function(t,e){function n(){this.off(t,n),e.apply(this,arguments)}return n.fn=e,this.on(t,n),this},ur.prototype.off=ur.prototype.removeListener=ur.prototype.removeAllListeners=ur.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+t];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var i=0;i<r.length;i++)if((n=r[i])===e||n.fn===e){r.splice(i,1);break}return 0===r.length&&delete this._callbacks["$"+t],this},ur.prototype.emit=function(t){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),n=this._callbacks["$"+t],r=1;r<arguments.length;r++)e[r-1]=arguments[r];if(n){r=0;for(var i=(n=n.slice(0)).length;r<i;++r)n[r].apply(this,e)}return this},ur.prototype.emitReserved=ur.prototype.emit,ur.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},ur.prototype.hasListeners=function(t){return!!this.listeners(t).length};const hr="undefined"!=typeof self?self:"undefined"!=typeof window?window:Function("return this")();function lr(t,...e){return e.reduce(((e,n)=>(t.hasOwnProperty(n)&&(e[n]=t[n]),e)),{})}const fr=hr.setTimeout,dr=hr.clearTimeout;function pr(t,e){e.useNativeTimers?(t.setTimeoutFn=fr.bind(hr),t.clearTimeoutFn=dr.bind(hr)):(t.setTimeoutFn=hr.setTimeout.bind(hr),t.clearTimeoutFn=hr.clearTimeout.bind(hr))}class gr extends Error{constructor(t,e,n){super(t),this.description=e,this.context=n,this.type="TransportError"}}class yr extends ur{constructor(t){super(),this.writable=!1,pr(this,t),this.opts=t,this.query=t.query,this.socket=t.socket}onError(t,e,n){return super.emitReserved("error",new gr(t,e,n)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return"opening"!==this.readyState&&"open"!==this.readyState||(this.doClose(),this.onClose()),this}send(t){"open"===this.readyState&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const e=nr(t,this.socket.binaryType);this.onPacket(e)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}pause(t){}createUri(t,e={}){return t+"://"+this._hostname()+this._port()+this.opts.path+this._query(e)}_hostname(){const t=this.opts.hostname;return-1===t.indexOf(":")?t:"["+t+"]"}_port(){return this.opts.port&&(this.opts.secure&&Number(443!==this.opts.port)||!this.opts.secure&&80!==Number(this.opts.port))?":"+this.opts.port:""}_query(t){const e=function(t){let e="";for(let n in t)t.hasOwnProperty(n)&&(e.length&&(e+="&"),e+=encodeURIComponent(n)+"="+encodeURIComponent(t[n]));return e}(t);return e.length?"?"+e:""}}const br="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),mr=64,vr={};let wr,Sr=0,_r=0;function Er(t){let e="";do{e=br[t%mr]+e,t=Math.floor(t/mr)}while(t>0);return e}function Or(){const t=Er(+new Date);return t!==wr?(Sr=0,wr=t):t+"."+Er(Sr++)}for(;_r<mr;_r++)vr[br[_r]]=_r;let kr=!1;try{kr="undefined"!=typeof XMLHttpRequest&&"withCredentials"in new XMLHttpRequest}catch(t){}const Ar=kr;function Tr(t){const e=t.xdomain;try{if("undefined"!=typeof XMLHttpRequest&&(!e||Ar))return new XMLHttpRequest}catch(t){}if(!e)try{return new(hr[["Active"].concat("Object").join("X")])("Microsoft.XMLHTTP")}catch(t){}}function xr(){}const jr=null!=new Tr({xdomain:!1}).responseType;class Cr extends ur{constructor(t,e){super(),pr(this,e),this.opts=e,this.method=e.method||"GET",this.uri=t,this.data=void 0!==e.data?e.data:null,this.create()}create(){var t;const e=lr(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");e.xdomain=!!this.opts.xd;const n=this.xhr=new Tr(e);try{n.open(this.method,this.uri,!0);try{if(this.opts.extraHeaders){n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0);for(let t in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(t)&&n.setRequestHeader(t,this.opts.extraHeaders[t])}}catch(t){}if("POST"===this.method)try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(t){}try{n.setRequestHeader("Accept","*/*")}catch(t){}null===(t=this.opts.cookieJar)||void 0===t||t.addCookies(n),"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=()=>{var t;3===n.readyState&&(null===(t=this.opts.cookieJar)||void 0===t||t.parseCookies(n)),4===n.readyState&&(200===n.status||1223===n.status?this.onLoad():this.setTimeoutFn((()=>{this.onError("number"==typeof n.status?n.status:0)}),0))},n.send(this.data)}catch(t){return void this.setTimeoutFn((()=>{this.onError(t)}),0)}"undefined"!=typeof document&&(this.index=Cr.requestsCount++,Cr.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(void 0!==this.xhr&&null!==this.xhr){if(this.xhr.onreadystatechange=xr,t)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete Cr.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;null!==t&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}function Rr(){for(let t in Cr.requests)Cr.requests.hasOwnProperty(t)&&Cr.requests[t].abort()}Cr.requestsCount=0,Cr.requests={},"undefined"!=typeof document&&("function"==typeof attachEvent?attachEvent("onunload",Rr):"function"==typeof addEventListener&&addEventListener("onpagehide"in hr?"pagehide":"unload",Rr,!1));const Lr="function"==typeof Promise&&"function"==typeof Promise.resolve?t=>Promise.resolve().then(t):(t,e)=>e(t,0),Dr=hr.WebSocket||hr.MozWebSocket,Br="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase(),Fr={websocket:class extends yr{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),e=this.opts.protocols,n=Br?{}:lr(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(n.headers=this.opts.extraHeaders);try{this.ws=Br?new Dr(t,e,n):e?new Dr(t,e):new Dr(t)}catch(t){return this.emitReserved("error",t)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let e=0;e<t.length;e++){const n=t[e],r=e===t.length-1;Yn(n,this.supportsBinary,(t=>{try{this.ws.send(t)}catch(t){}r&&Lr((()=>{this.writable=!0,this.emitReserved("drain")}),this.setTimeoutFn)}))}}doClose(){void 0!==this.ws&&(this.ws.close(),this.ws=null)}uri(){const t=this.opts.secure?"wss":"ws",e=this.query||{};return this.opts.timestampRequests&&(e[this.opts.timestampParam]=Or()),this.supportsBinary||(e.b64=1),this.createUri(t,e)}check(){return!!Dr}},webtransport:class extends yr{get name(){return"webtransport"}doOpen(){"function"==typeof WebTransport&&(this.transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name]),this.transport.closed.then((()=>{this.onClose()})).catch((t=>{this.onError("webtransport error",t)})),this.transport.ready.then((()=>{this.transport.createBidirectionalStream().then((t=>{const e=function(t,e){or||(or=new TextDecoder);const n=[];let r=0,i=-1,s=!1;return new TransformStream({transform(o,a){for(n.push(o);;){if(0===r){if(ar(n)<1)break;const t=cr(n,1);s=!(128&~t[0]),i=127&t[0],r=i<126?3:126===i?1:2}else if(1===r){if(ar(n)<2)break;const t=cr(n,2);i=new DataView(t.buffer,t.byteOffset,t.length).getUint16(0),r=3}else if(2===r){if(ar(n)<8)break;const t=cr(n,8),e=new DataView(t.buffer,t.byteOffset,t.length),s=e.getUint32(0);if(s>Math.pow(2,21)-1){a.enqueue($n);break}i=s*Math.pow(2,32)+e.getUint32(4),r=3}else{if(ar(n)<i)break;const t=cr(n,i);a.enqueue(nr(s?t:or.decode(t),e)),r=0}if(0===i||i>t){a.enqueue($n);break}}}})}(Number.MAX_SAFE_INTEGER,this.socket.binaryType),n=t.readable.pipeThrough(e).getReader(),r=new TransformStream({transform(t,e){!function(t,e){Gn&&t.data instanceof Blob?t.data.arrayBuffer().then(Qn).then(e):Jn&&(t.data instanceof ArrayBuffer||Kn(t.data))?e(Qn(t.data)):Yn(t,!1,(t=>{Zn||(Zn=new TextEncoder),e(Zn.encode(t))}))}(t,(n=>{const r=n.length;let i;if(r<126)i=new Uint8Array(1),new DataView(i.buffer).setUint8(0,r);else if(r<65536){i=new Uint8Array(3);const t=new DataView(i.buffer);t.setUint8(0,126),t.setUint16(1,r)}else{i=new Uint8Array(9);const t=new DataView(i.buffer);t.setUint8(0,127),t.setBigUint64(1,BigInt(r))}t.data&&"string"!=typeof t.data&&(i[0]|=128),e.enqueue(i),e.enqueue(n)}))}});r.readable.pipeTo(t.writable),this.writer=r.writable.getWriter();const i=()=>{n.read().then((({done:t,value:e})=>{t||(this.onPacket(e),i())})).catch((t=>{}))};i();const s={type:"open"};this.query.sid&&(s.data=`{"sid":"${this.query.sid}"}`),this.writer.write(s).then((()=>this.onOpen()))}))})))}write(t){this.writable=!1;for(let e=0;e<t.length;e++){const n=t[e],r=e===t.length-1;this.writer.write(n).then((()=>{r&&Lr((()=>{this.writable=!0,this.emitReserved("drain")}),this.setTimeoutFn)}))}}doClose(){var t;null===(t=this.transport)||void 0===t||t.close()}},polling:class extends yr{constructor(t){if(super(t),this.polling=!1,"undefined"!=typeof location){const e="https:"===location.protocol;let n=location.port;n||(n=e?"443":"80"),this.xd="undefined"!=typeof location&&t.hostname!==location.hostname||n!==t.port}const e=t&&t.forceBase64;this.supportsBinary=jr&&!e,this.opts.withCredentials&&(this.cookieJar=void 0)}get name(){return"polling"}doOpen(){this.poll()}pause(t){this.readyState="pausing";const e=()=>{this.readyState="paused",t()};if(this.polling||!this.writable){let t=0;this.polling&&(t++,this.once("pollComplete",(function(){--t||e()}))),this.writable||(t++,this.once("drain",(function(){--t||e()})))}else e()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){((t,e)=>{const n=t.split(sr),r=[];for(let t=0;t<n.length;t++){const i=nr(n[t],e);if(r.push(i),"error"===i.type)break}return r})(t,this.socket.binaryType).forEach((t=>{if("opening"===this.readyState&&"open"===t.type&&this.onOpen(),"close"===t.type)return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(t)})),"closed"!==this.readyState&&(this.polling=!1,this.emitReserved("pollComplete"),"open"===this.readyState&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};"open"===this.readyState?t():this.once("open",t)}write(t){this.writable=!1,((t,e)=>{const n=t.length,r=new Array(n);let i=0;t.forEach(((t,s)=>{Yn(t,!1,(t=>{r[s]=t,++i===n&&e(r.join(sr))}))}))})(t,(t=>{this.doWrite(t,(()=>{this.writable=!0,this.emitReserved("drain")}))}))}uri(){const t=this.opts.secure?"https":"http",e=this.query||{};return!1!==this.opts.timestampRequests&&(e[this.opts.timestampParam]=Or()),this.supportsBinary||e.sid||(e.b64=1),this.createUri(t,e)}request(t={}){return Object.assign(t,{xd:this.xd,cookieJar:this.cookieJar},this.opts),new Cr(this.uri(),t)}doWrite(t,e){const n=this.request({method:"POST",data:t});n.on("success",e),n.on("error",((t,e)=>{this.onError("xhr post error",t,e)}))}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",((t,e)=>{this.onError("xhr poll error",t,e)})),this.pollXhr=t}}},Nr=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,Pr=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function zr(t){if(t.length>2e3)throw"URI too long";const e=t,n=t.indexOf("["),r=t.indexOf("]");-1!=n&&-1!=r&&(t=t.substring(0,n)+t.substring(n,r).replace(/:/g,";")+t.substring(r,t.length));let i=Nr.exec(t||""),s={},o=14;for(;o--;)s[Pr[o]]=i[o]||"";return-1!=n&&-1!=r&&(s.source=e,s.host=s.host.substring(1,s.host.length-1).replace(/;/g,":"),s.authority=s.authority.replace("[","").replace("]","").replace(/;/g,":"),s.ipv6uri=!0),s.pathNames=function(t,e){const n=e.replace(/\/{2,9}/g,"/").split("/");return"/"!=e.slice(0,1)&&0!==e.length||n.splice(0,1),"/"==e.slice(-1)&&n.splice(n.length-1,1),n}(0,s.path),s.queryKey=function(t,e){const n={};return e.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,(function(t,e,r){e&&(n[e]=r)})),n}(0,s.query),s}class Ir extends ur{constructor(t,e={}){super(),this.binaryType="arraybuffer",this.writeBuffer=[],t&&"object"==typeof t&&(e=t,t=null),t?(t=zr(t),e.hostname=t.host,e.secure="https"===t.protocol||"wss"===t.protocol,e.port=t.port,t.query&&(e.query=t.query)):e.host&&(e.hostname=zr(e.host).host),pr(this,e),this.secure=null!=e.secure?e.secure:"undefined"!=typeof location&&"https:"===location.protocol,e.hostname&&!e.port&&(e.port=this.secure?"443":"80"),this.hostname=e.hostname||("undefined"!=typeof location?location.hostname:"localhost"),this.port=e.port||("undefined"!=typeof location&&location.port?location.port:this.secure?"443":"80"),this.transports=e.transports||["polling","websocket","webtransport"],this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},e),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),"string"==typeof this.opts.query&&(this.opts.query=function(t){let e={},n=t.split("&");for(let t=0,r=n.length;t<r;t++){let r=n[t].split("=");e[decodeURIComponent(r[0])]=decodeURIComponent(r[1])}return e}(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,"function"==typeof addEventListener&&(this.opts.closeOnBeforeunload&&(this.beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this.beforeunloadEventListener,!1)),"localhost"!==this.hostname&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const e=Object.assign({},this.opts.query);e.EIO=4,e.transport=t,this.id&&(e.sid=this.id);const n=Object.assign({},this.opts,{query:e,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[t]);return new Fr[t](n)}open(){let t;if(this.opts.rememberUpgrade&&Ir.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))t="websocket";else{if(0===this.transports.length)return void this.setTimeoutFn((()=>{this.emitReserved("error","No transports available")}),0);t=this.transports[0]}this.readyState="opening";try{t=this.createTransport(t)}catch(t){return this.transports.shift(),void this.open()}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",(t=>this.onClose("transport close",t)))}probe(t){let e=this.createTransport(t),n=!1;Ir.priorWebsocketSuccess=!1;const r=()=>{n||(e.send([{type:"ping",data:"probe"}]),e.once("packet",(t=>{if(!n)if("pong"===t.type&&"probe"===t.data){if(this.upgrading=!0,this.emitReserved("upgrading",e),!e)return;Ir.priorWebsocketSuccess="websocket"===e.name,this.transport.pause((()=>{n||"closed"!==this.readyState&&(u(),this.setTransport(e),e.send([{type:"upgrade"}]),this.emitReserved("upgrade",e),e=null,this.upgrading=!1,this.flush())}))}else{const t=new Error("probe error");t.transport=e.name,this.emitReserved("upgradeError",t)}})))};function i(){n||(n=!0,u(),e.close(),e=null)}const s=t=>{const n=new Error("probe error: "+t);n.transport=e.name,i(),this.emitReserved("upgradeError",n)};function o(){s("transport closed")}function a(){s("socket closed")}function c(t){e&&t.name!==e.name&&i()}const u=()=>{e.removeListener("open",r),e.removeListener("error",s),e.removeListener("close",o),this.off("close",a),this.off("upgrading",c)};e.once("open",r),e.once("error",s),e.once("close",o),this.once("close",a),this.once("upgrading",c),-1!==this.upgrades.indexOf("webtransport")&&"webtransport"!==t?this.setTimeoutFn((()=>{n||e.open()}),200):e.open()}onOpen(){if(this.readyState="open",Ir.priorWebsocketSuccess="websocket"===this.transport.name,this.emitReserved("open"),this.flush(),"open"===this.readyState&&this.opts.upgrade){let t=0;const e=this.upgrades.length;for(;t<e;t++)this.probe(this.upgrades[t])}}onPacket(t){if("opening"===this.readyState||"open"===this.readyState||"closing"===this.readyState)switch(this.emitReserved("packet",t),this.emitReserved("heartbeat"),this.resetPingTimeout(),t.type){case"open":this.onHandshake(JSON.parse(t.data));break;case"ping":this.sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong");break;case"error":const e=new Error("server error");e.code=t.data,this.onError(e);break;case"message":this.emitReserved("data",t.data),this.emitReserved("message",t.data)}}onHandshake(t){this.emitReserved("handshake",t),this.id=t.sid,this.transport.query.sid=t.sid,this.upgrades=this.filterUpgrades(t.upgrades),this.pingInterval=t.pingInterval,this.pingTimeout=t.pingTimeout,this.maxPayload=t.maxPayload,this.onOpen(),"closed"!==this.readyState&&this.resetPingTimeout()}resetPingTimeout(){this.clearTimeoutFn(this.pingTimeoutTimer),this.pingTimeoutTimer=this.setTimeoutFn((()=>{this.onClose("ping timeout")}),this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,0===this.writeBuffer.length?this.emitReserved("drain"):this.flush()}flush(){if("closed"!==this.readyState&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&"polling"===this.transport.name&&this.writeBuffer.length>1))return this.writeBuffer;let t=1;for(let n=0;n<this.writeBuffer.length;n++){const r=this.writeBuffer[n].data;if(r&&(t+="string"==typeof(e=r)?function(t){let e=0,n=0;for(let r=0,i=t.length;r<i;r++)e=t.charCodeAt(r),e<128?n+=1:e<2048?n+=2:e<55296||e>=57344?n+=3:(r++,n+=4);return n}(e):Math.ceil(1.33*(e.byteLength||e.size))),n>0&&t>this.maxPayload)return this.writeBuffer.slice(0,n);t+=2}var e;return this.writeBuffer}write(t,e,n){return this.sendPacket("message",t,e,n),this}send(t,e,n){return this.sendPacket("message",t,e,n),this}sendPacket(t,e,n,r){if("function"==typeof e&&(r=e,e=void 0),"function"==typeof n&&(r=n,n=null),"closing"===this.readyState||"closed"===this.readyState)return;(n=n||{}).compress=!1!==n.compress;const i={type:t,data:e,options:n};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),r&&this.once("flush",r),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},e=()=>{this.off("upgrade",e),this.off("upgradeError",e),t()},n=()=>{this.once("upgrade",e),this.once("upgradeError",e)};return"opening"!==this.readyState&&"open"!==this.readyState||(this.readyState="closing",this.writeBuffer.length?this.once("drain",(()=>{this.upgrading?n():t()})):this.upgrading?n():t()),this}onError(t){Ir.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,e){"opening"!==this.readyState&&"open"!==this.readyState&&"closing"!==this.readyState||(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),"function"==typeof removeEventListener&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",t,e),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const e=[];let n=0;const r=t.length;for(;n<r;n++)~this.transports.indexOf(t[n])&&e.push(t[n]);return e}}Ir.protocol=4,Ir.protocol;const Ur="function"==typeof ArrayBuffer,Mr=t=>"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):t.buffer instanceof ArrayBuffer,qr=Object.prototype.toString,Vr="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===qr.call(Blob),Wr="function"==typeof File||"undefined"!=typeof File&&"[object FileConstructor]"===qr.call(File);function Hr(t){return Ur&&(t instanceof ArrayBuffer||Mr(t))||Vr&&t instanceof Blob||Wr&&t instanceof File}function $r(t,e){if(!t||"object"!=typeof t)return!1;if(Array.isArray(t)){for(let e=0,n=t.length;e<n;e++)if($r(t[e]))return!0;return!1}if(Hr(t))return!0;if(t.toJSON&&"function"==typeof t.toJSON&&1===arguments.length)return $r(t.toJSON(),!0);for(const e in t)if(Object.prototype.hasOwnProperty.call(t,e)&&$r(t[e]))return!0;return!1}function Gr(t){const e=[],n=t.data,r=t;return r.data=Jr(n,e),r.attachments=e.length,{packet:r,buffers:e}}function Jr(t,e){if(!t)return t;if(Hr(t)){const n={_placeholder:!0,num:e.length};return e.push(t),n}if(Array.isArray(t)){const n=new Array(t.length);for(let r=0;r<t.length;r++)n[r]=Jr(t[r],e);return n}if("object"==typeof t&&!(t instanceof Date)){const n={};for(const r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=Jr(t[r],e));return n}return t}function Kr(t,e){return t.data=Yr(t.data,e),delete t.attachments,t}function Yr(t,e){if(!t)return t;if(t&&!0===t._placeholder){if("number"==typeof t.num&&t.num>=0&&t.num<e.length)return e[t.num];throw new Error("illegal attachments")}if(Array.isArray(t))for(let n=0;n<t.length;n++)t[n]=Yr(t[n],e);else if("object"==typeof t)for(const n in t)Object.prototype.hasOwnProperty.call(t,n)&&(t[n]=Yr(t[n],e));return t}const Xr=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"],Qr=5;var Zr;!function(t){t[t.CONNECT=0]="CONNECT",t[t.DISCONNECT=1]="DISCONNECT",t[t.EVENT=2]="EVENT",t[t.ACK=3]="ACK",t[t.CONNECT_ERROR=4]="CONNECT_ERROR",t[t.BINARY_EVENT=5]="BINARY_EVENT",t[t.BINARY_ACK=6]="BINARY_ACK"}(Zr||(Zr={}));class ti{constructor(t){this.replacer=t}encode(t){return t.type!==Zr.EVENT&&t.type!==Zr.ACK||!$r(t)?[this.encodeAsString(t)]:this.encodeAsBinary({type:t.type===Zr.EVENT?Zr.BINARY_EVENT:Zr.BINARY_ACK,nsp:t.nsp,data:t.data,id:t.id})}encodeAsString(t){let e=""+t.type;return t.type!==Zr.BINARY_EVENT&&t.type!==Zr.BINARY_ACK||(e+=t.attachments+"-"),t.nsp&&"/"!==t.nsp&&(e+=t.nsp+","),null!=t.id&&(e+=t.id),null!=t.data&&(e+=JSON.stringify(t.data,this.replacer)),e}encodeAsBinary(t){const e=Gr(t),n=this.encodeAsString(e.packet),r=e.buffers;return r.unshift(n),r}}function ei(t){return"[object Object]"===Object.prototype.toString.call(t)}class ni extends ur{constructor(t){super(),this.reviver=t}add(t){let e;if("string"==typeof t){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");e=this.decodeString(t);const n=e.type===Zr.BINARY_EVENT;n||e.type===Zr.BINARY_ACK?(e.type=n?Zr.EVENT:Zr.ACK,this.reconstructor=new ri(e),0===e.attachments&&super.emitReserved("decoded",e)):super.emitReserved("decoded",e)}else{if(!Hr(t)&&!t.base64)throw new Error("Unknown type: "+t);if(!this.reconstructor)throw new Error("got binary data when not reconstructing a packet");e=this.reconstructor.takeBinaryData(t),e&&(this.reconstructor=null,super.emitReserved("decoded",e))}}decodeString(t){let e=0;const n={type:Number(t.charAt(0))};if(void 0===Zr[n.type])throw new Error("unknown packet type "+n.type);if(n.type===Zr.BINARY_EVENT||n.type===Zr.BINARY_ACK){const r=e+1;for(;"-"!==t.charAt(++e)&&e!=t.length;);const i=t.substring(r,e);if(i!=Number(i)||"-"!==t.charAt(e))throw new Error("Illegal attachments");n.attachments=Number(i)}if("/"===t.charAt(e+1)){const r=e+1;for(;++e&&","!==t.charAt(e)&&e!==t.length;);n.nsp=t.substring(r,e)}else n.nsp="/";const r=t.charAt(e+1);if(""!==r&&Number(r)==r){const r=e+1;for(;++e;){const n=t.charAt(e);if(null==n||Number(n)!=n){--e;break}if(e===t.length)break}n.id=Number(t.substring(r,e+1))}if(t.charAt(++e)){const r=this.tryParse(t.substr(e));if(!ni.isPayloadValid(n.type,r))throw new Error("invalid payload");n.data=r}return n}tryParse(t){try{return JSON.parse(t,this.reviver)}catch(t){return!1}}static isPayloadValid(t,e){switch(t){case Zr.CONNECT:return ei(e);case Zr.DISCONNECT:return void 0===e;case Zr.CONNECT_ERROR:return"string"==typeof e||ei(e);case Zr.EVENT:case Zr.BINARY_EVENT:return Array.isArray(e)&&("number"==typeof e[0]||"string"==typeof e[0]&&-1===Xr.indexOf(e[0]));case Zr.ACK:case Zr.BINARY_ACK:return Array.isArray(e)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}}class ri{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const t=Kr(this.reconPack,this.buffers);return this.finishedReconstruction(),t}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}function ii(t,e,n){return t.on(e,n),function(){t.off(e,n)}}const si=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class oi extends ur{constructor(t,e,n){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=e,n&&n.auth&&(this.auth=n.auth),this._opts=Object.assign({},n),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[ii(t,"open",this.onopen.bind(this)),ii(t,"packet",this.onpacket.bind(this)),ii(t,"error",this.onerror.bind(this)),ii(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected||(this.subEvents(),this.io._reconnecting||this.io.open(),"open"===this.io._readyState&&this.onopen()),this}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...e){if(si.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');if(e.unshift(t),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(e),this;const n={type:Zr.EVENT,data:e,options:{}};if(n.options.compress=!1!==this.flags.compress,"function"==typeof e[e.length-1]){const t=this.ids++,r=e.pop();this._registerAckCallback(t,r),n.id=t}const r=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!r||!this.connected)||(this.connected?(this.notifyOutgoingListeners(n),this.packet(n)):this.sendBuffer.push(n)),this.flags={},this}_registerAckCallback(t,e){var n;const r=null!==(n=this.flags.timeout)&&void 0!==n?n:this._opts.ackTimeout;if(void 0===r)return void(this.acks[t]=e);const i=this.io.setTimeoutFn((()=>{delete this.acks[t];for(let e=0;e<this.sendBuffer.length;e++)this.sendBuffer[e].id===t&&this.sendBuffer.splice(e,1);e.call(this,new Error("operation has timed out"))}),r),s=(...t)=>{this.io.clearTimeoutFn(i),e.apply(this,t)};s.withError=!0,this.acks[t]=s}emitWithAck(t,...e){return new Promise(((n,r)=>{const i=(t,e)=>t?r(t):n(e);i.withError=!0,e.push(i),this.emit(t,...e)}))}_addToQueue(t){let e;"function"==typeof t[t.length-1]&&(e=t.pop());const n={id:this._queueSeq++,tryCount:0,pending:!1,args:t,flags:Object.assign({fromQueue:!0},this.flags)};t.push(((t,...r)=>{if(n===this._queue[0])return null!==t?n.tryCount>this._opts.retries&&(this._queue.shift(),e&&e(t)):(this._queue.shift(),e&&e(null,...r)),n.pending=!1,this._drainQueue()})),this._queue.push(n),this._drainQueue()}_drainQueue(t=!1){if(!this.connected||0===this._queue.length)return;const e=this._queue[0];e.pending&&!t||(e.pending=!0,e.tryCount++,this.flags=e.flags,this.emit.apply(this,e.args))}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){"function"==typeof this.auth?this.auth((t=>{this._sendConnectPacket(t)})):this._sendConnectPacket(this.auth)}_sendConnectPacket(t){this.packet({type:Zr.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},t):t})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,e){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,e),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach((t=>{if(!this.sendBuffer.some((e=>String(e.id)===t))){const e=this.acks[t];delete this.acks[t],e.withError&&e.call(this,new Error("socket has been disconnected"))}}))}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Zr.CONNECT:t.data&&t.data.sid?this.onconnect(t.data.sid,t.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Zr.EVENT:case Zr.BINARY_EVENT:this.onevent(t);break;case Zr.ACK:case Zr.BINARY_ACK:this.onack(t);break;case Zr.DISCONNECT:this.ondisconnect();break;case Zr.CONNECT_ERROR:this.destroy();const e=new Error(t.data.message);e.data=t.data.data,this.emitReserved("connect_error",e)}}onevent(t){const e=t.data||[];null!=t.id&&e.push(this.ack(t.id)),this.connected?this.emitEvent(e):this.receiveBuffer.push(Object.freeze(e))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const e=this._anyListeners.slice();for(const n of e)n.apply(this,t)}super.emit.apply(this,t),this._pid&&t.length&&"string"==typeof t[t.length-1]&&(this._lastOffset=t[t.length-1])}ack(t){const e=this;let n=!1;return function(...r){n||(n=!0,e.packet({type:Zr.ACK,id:t,data:r}))}}onack(t){const e=this.acks[t.id];"function"==typeof e&&(delete this.acks[t.id],e.withError&&t.data.unshift(null),e.apply(this,t.data))}onconnect(t,e){this.id=t,this.recovered=e&&this._pid===e,this._pid=e,this.connected=!0,this.emitBuffered(),this.emitReserved("connect"),this._drainQueue(!0)}emitBuffered(){this.receiveBuffer.forEach((t=>this.emitEvent(t))),this.receiveBuffer=[],this.sendBuffer.forEach((t=>{this.notifyOutgoingListeners(t),this.packet(t)})),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach((t=>t())),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Zr.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const e=this._anyListeners;for(let n=0;n<e.length;n++)if(t===e[n])return e.splice(n,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(t),this}prependAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(t),this}offAnyOutgoing(t){if(!this._anyOutgoingListeners)return this;if(t){const e=this._anyOutgoingListeners;for(let n=0;n<e.length;n++)if(t===e[n])return e.splice(n,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(t){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){const e=this._anyOutgoingListeners.slice();for(const n of e)n.apply(this,t.data)}}}function ai(t){t=t||{},this.ms=t.min||100,this.max=t.max||1e4,this.factor=t.factor||2,this.jitter=t.jitter>0&&t.jitter<=1?t.jitter:0,this.attempts=0}ai.prototype.duration=function(){var t=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),n=Math.floor(e*this.jitter*t);t=1&Math.floor(10*e)?t+n:t-n}return 0|Math.min(t,this.max)},ai.prototype.reset=function(){this.attempts=0},ai.prototype.setMin=function(t){this.ms=t},ai.prototype.setMax=function(t){this.max=t},ai.prototype.setJitter=function(t){this.jitter=t};class ci extends ur{constructor(t,n){var r;super(),this.nsps={},this.subs=[],t&&"object"==typeof t&&(n=t,t=void 0),(n=n||{}).path=n.path||"/socket.io",this.opts=n,pr(this,n),this.reconnection(!1!==n.reconnection),this.reconnectionAttempts(n.reconnectionAttempts||1/0),this.reconnectionDelay(n.reconnectionDelay||1e3),this.reconnectionDelayMax(n.reconnectionDelayMax||5e3),this.randomizationFactor(null!==(r=n.randomizationFactor)&&void 0!==r?r:.5),this.backoff=new ai({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(null==n.timeout?2e4:n.timeout),this._readyState="closed",this.uri=t;const i=n.parser||e;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=!1!==n.autoConnect,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return void 0===t?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var e;return void 0===t?this._reconnectionDelay:(this._reconnectionDelay=t,null===(e=this.backoff)||void 0===e||e.setMin(t),this)}randomizationFactor(t){var e;return void 0===t?this._randomizationFactor:(this._randomizationFactor=t,null===(e=this.backoff)||void 0===e||e.setJitter(t),this)}reconnectionDelayMax(t){var e;return void 0===t?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,null===(e=this.backoff)||void 0===e||e.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&0===this.backoff.attempts&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new Ir(this.uri,this.opts);const e=this.engine,n=this;this._readyState="opening",this.skipReconnect=!1;const r=ii(e,"open",(function(){n.onopen(),t&&t()})),i=e=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",e),t?t(e):this.maybeReconnectOnOpen()},s=ii(e,"error",i);if(!1!==this._timeout){const t=this._timeout,n=this.setTimeoutFn((()=>{r(),i(new Error("timeout")),e.close()}),t);this.opts.autoUnref&&n.unref(),this.subs.push((()=>{this.clearTimeoutFn(n)}))}return this.subs.push(r),this.subs.push(s),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(ii(t,"ping",this.onping.bind(this)),ii(t,"data",this.ondata.bind(this)),ii(t,"error",this.onerror.bind(this)),ii(t,"close",this.onclose.bind(this)),ii(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(t){this.onclose("parse error",t)}}ondecoded(t){Lr((()=>{this.emitReserved("packet",t)}),this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,e){let n=this.nsps[t];return n?this._autoConnect&&!n.active&&n.connect():(n=new oi(this,t,e),this.nsps[t]=n),n}_destroy(t){const e=Object.keys(this.nsps);for(const t of e)if(this.nsps[t].active)return;this._close()}_packet(t){const e=this.encoder.encode(t);for(let n=0;n<e.length;n++)this.engine.write(e[n],t.options)}cleanup(){this.subs.forEach((t=>t())),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,e){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,e),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const e=this.backoff.duration();this._reconnecting=!0;const n=this.setTimeoutFn((()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),t.skipReconnect||t.open((e=>{e?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",e)):t.onreconnect()})))}),e);this.opts.autoUnref&&n.unref(),this.subs.push((()=>{this.clearTimeoutFn(n)}))}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const ui={};function hi(t,e){"object"==typeof t&&(e=t,t=void 0);const n=function(t,e="",n){let r=t;n=n||"undefined"!=typeof location&&location,null==t&&(t=n.protocol+"//"+n.host),"string"==typeof t&&("/"===t.charAt(0)&&(t="/"===t.charAt(1)?n.protocol+t:n.host+t),/^(https?|wss?):\/\//.test(t)||(t=void 0!==n?n.protocol+"//"+t:"https://"+t),r=zr(t)),r.port||(/^(http|ws)$/.test(r.protocol)?r.port="80":/^(http|ws)s$/.test(r.protocol)&&(r.port="443")),r.path=r.path||"/";const i=-1!==r.host.indexOf(":")?"["+r.host+"]":r.host;return r.id=r.protocol+"://"+i+":"+r.port+e,r.href=r.protocol+"://"+i+(n&&n.port===r.port?"":":"+r.port),r}(t,(e=e||{}).path||"/socket.io"),r=n.source,i=n.id,s=n.path,o=ui[i]&&s in ui[i].nsps;let a;return e.forceNew||e["force new connection"]||!1===e.multiplex||o?a=new ci(r,e):(ui[i]||(ui[i]=new ci(r,e)),a=ui[i]),n.query&&!e.query&&(e.query=n.queryKey),a.socket(n.path,e)}Object.assign(hi,{Manager:ci,Socket:oi,io:hi,connect:hi});class li{manager;token;get socket(){return this.manager.socket("/proxy",{auth:{token:`Bearer ${this.token}`}})}constructor(t,e){const n=t.replace("https://","wss://").replace("http://","ws://");this.token=e,this.manager=new ci(n,{reconnection:!0,reconnectionDelay:500,rejectUnauthorized:!1,autoConnect:!0,transports:["websocket"]})}sendRequest(t){return new Promise(((e,n)=>{this.socket.emit("request",t,(t=>{t.success?e(t.data):n(t.error)}))}))}close(){this.socket.emit("end"),this.socket.removeAllListeners(),this.socket.disconnect()}}class fi{api;socketService;config;logger;token;deviceManager;pluginsManager;systemManager;constructor(t){this.config=t,this.logger=t.logger||console,this.api=new $t(t.endpoint)}async connect(){return this.deviceManager&&this.pluginsManager&&this.systemManager||(this.cleanUpClient(),await this.login(),this.token=this.token||this.config.token,this.socketService=new li(this.config.endpoint,this.token),this.deviceManager=new Mn(this.socketService,this.logger),this.pluginsManager=new qn(this.socketService,this.logger),this.systemManager=new Vn(this.socketService,this.logger),this.checkSession()),{deviceManager:this.deviceManager,pluginsManager:this.pluginsManager,systemManager:this.systemManager}}async disconnect(){this.socketService?.close(),this.cleanUpClient(),this.config.username&&this.config.password&&await this.api.interceptor.post("/auth/logout",void 0,{headers:{Authorization:`Bearer ${this.token}`}})}async updateCredentials(t){this.config={...this.config,...t},this.socketService&&await this.disconnect(),await this.connect()}async login(){if(this.config.username&&this.config.password)try{const t=await this.api.interceptor.post("/auth/login",{username:this.config.username,password:this.config.password});this.token=t.data.access_token}catch(t){throw 401===t.response?.status?new Error("Invalid credentials"):new Error(`Failed to get token: ${t.message}`)}else if(this.config.token&&!this.config.skipCheck)try{await this.api.interceptor.get("/auth/check",{headers:{Authorization:`Bearer ${this.config.token}`}})}catch(t){throw new Error(`Invalid token: ${t.message}`)}this.token=this.token||this.config.token}getDeviceManager(){return this.deviceManager}getPluginsManager(){return this.pluginsManager}getSystemManager(){return this.systemManager}checkSession(){this.socketService?.socket.removeListener("invalidToken"),this.socketService?.socket.on("invalidToken",(async t=>{t===this.token&&await this.disconnect()}))}cleanUpClient(){this.deviceManager=void 0,this.pluginsManager=void 0,this.systemManager=void 0}}var di,pi,gi;!function(t){t.READY="ready",t.STARTING="starting",t.STARTED="started",t.STOPPED="stopped",t.ERROR="error",t.UNKNOWN="unknown",t.DISABLED="disabled"}(di||(di={})),function(t){t.START="start",t.STOP="stop"}(pi||(pi={})),function(t){t.READY="ready",t.RESTARTING="restarting",t.STARTING="starting",t.STARTED="started",t.STOPPED="stopped",t.ERROR="error",t.UNKNOWN="unknown"}(gi||(gi={}))})();var i=r.F,s=r.j;export{i as BrowserStreamingSession,s as CameraUiClient};
1
+ var t={275:(t,e,r)=>{t=r.nmd(t);var n="__lodash_hash_undefined__",i=9007199254740991,s="[object Arguments]",o="[object Boolean]",a="[object Date]",c="[object Function]",u="[object GeneratorFunction]",h="[object Map]",l="[object Number]",f="[object Object]",d="[object Promise]",p="[object RegExp]",y="[object Set]",b="[object String]",g="[object Symbol]",v="[object WeakMap]",m="[object ArrayBuffer]",w="[object DataView]",S="[object Float32Array]",_="[object Float64Array]",E="[object Int8Array]",O="[object Int16Array]",k="[object Int32Array]",x="[object Uint8Array]",T="[object Uint8ClampedArray]",A="[object Uint16Array]",j="[object Uint32Array]",R=/\w*$/,C=/^\[object .+?Constructor\]$/,L=/^(?:0|[1-9]\d*)$/,D={};D[s]=D["[object Array]"]=D[m]=D[w]=D[o]=D[a]=D[S]=D[_]=D[E]=D[O]=D[k]=D[h]=D[l]=D[f]=D[p]=D[y]=D[b]=D[g]=D[x]=D[T]=D[A]=D[j]=!0,D["[object Error]"]=D[c]=D[v]=!1;var B="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,P="object"==typeof self&&self&&self.Object===Object&&self,F=B||P||Function("return this")(),z=e&&!e.nodeType&&e,N=z&&t&&!t.nodeType&&t,I=N&&N.exports===z;function U(t,e){return t.set(e[0],e[1]),t}function M(t,e){return t.add(e),t}function q(t,e,r,n){var i=-1,s=t?t.length:0;for(n&&s&&(r=t[++i]);++i<s;)r=e(r,t[i],i,t);return r}function V(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}function W(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function H(t,e){return function(r){return t(e(r))}}function $(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var G,J=Array.prototype,K=Function.prototype,Y=Object.prototype,X=F["__core-js_shared__"],Q=(G=/[^.]+$/.exec(X&&X.keys&&X.keys.IE_PROTO||""))?"Symbol(src)_1."+G:"",Z=K.toString,tt=Y.hasOwnProperty,et=Y.toString,rt=RegExp("^"+Z.call(tt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),nt=I?F.Buffer:void 0,it=F.Symbol,st=F.Uint8Array,ot=H(Object.getPrototypeOf,Object),at=Object.create,ct=Y.propertyIsEnumerable,ut=J.splice,ht=Object.getOwnPropertySymbols,lt=nt?nt.isBuffer:void 0,ft=H(Object.keys,Object),dt=Ft(F,"DataView"),pt=Ft(F,"Map"),yt=Ft(F,"Promise"),bt=Ft(F,"Set"),gt=Ft(F,"WeakMap"),vt=Ft(Object,"create"),mt=Mt(dt),wt=Mt(pt),St=Mt(yt),_t=Mt(bt),Et=Mt(gt),Ot=it?it.prototype:void 0,kt=Ot?Ot.valueOf:void 0;function xt(t){var e=-1,r=t?t.length:0;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function Tt(t){var e=-1,r=t?t.length:0;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function At(t){var e=-1,r=t?t.length:0;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function jt(t){this.__data__=new Tt(t)}function Rt(t,e,r){var n=t[e];tt.call(t,e)&&qt(n,r)&&(void 0!==r||e in t)||(t[e]=r)}function Ct(t,e){for(var r=t.length;r--;)if(qt(t[r][0],e))return r;return-1}function Lt(t,e,r,n,i,d,v){var C;if(n&&(C=d?n(t,i,d,v):n(t)),void 0!==C)return C;if(!Gt(t))return t;var L=Vt(t);if(L){if(C=function(t){var e=t.length,r=t.constructor(e);return e&&"string"==typeof t[0]&&tt.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(t),!e)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(t,C)}else{var B=Nt(t),P=B==c||B==u;if(Ht(t))return function(t,e){if(e)return t.slice();var r=new t.constructor(t.length);return t.copy(r),r}(t,e);if(B==f||B==s||P&&!d){if(V(t))return d?t:{};if(C=function(t){return"function"!=typeof t.constructor||Ut(t)?{}:Gt(e=ot(t))?at(e):{};var e}(P?{}:t),!e)return function(t,e){return Bt(t,zt(t),e)}(t,function(t,e){return t&&Bt(e,Jt(e),t)}(C,t))}else{if(!D[B])return d?t:{};C=function(t,e,r,n){var i,s=t.constructor;switch(e){case m:return Dt(t);case o:case a:return new s(+t);case w:return function(t,e){var r=e?Dt(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,n);case S:case _:case E:case O:case k:case x:case T:case A:case j:return function(t,e){var r=e?Dt(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,n);case h:return function(t,e,r){return q(e?r(W(t),!0):W(t),U,new t.constructor)}(t,n,r);case l:case b:return new s(t);case p:return function(t){var e=new t.constructor(t.source,R.exec(t));return e.lastIndex=t.lastIndex,e}(t);case y:return function(t,e,r){return q(e?r($(t),!0):$(t),M,new t.constructor)}(t,n,r);case g:return i=t,kt?Object(kt.call(i)):{}}}(t,B,Lt,e)}}v||(v=new jt);var F=v.get(t);if(F)return F;if(v.set(t,C),!L)var z=r?function(t){return function(t,e,r){var n=e(t);return Vt(t)?n:function(t,e){for(var r=-1,n=e.length,i=t.length;++r<n;)t[i+r]=e[r];return t}(n,r(t))}(t,Jt,zt)}(t):Jt(t);return function(t,e){for(var r=-1,n=t?t.length:0;++r<n&&!1!==e(t[r],r););}(z||t,(function(i,s){z&&(i=t[s=i]),Rt(C,s,Lt(i,e,r,n,s,t,v))})),C}function Dt(t){var e=new t.constructor(t.byteLength);return new st(e).set(new st(t)),e}function Bt(t,e,r,n){r||(r={});for(var i=-1,s=e.length;++i<s;){var o=e[i],a=n?n(r[o],t[o],o,r,t):void 0;Rt(r,o,void 0===a?t[o]:a)}return r}function Pt(t,e){var r,n,i=t.__data__;return("string"==(n=typeof(r=e))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?i["string"==typeof e?"string":"hash"]:i.map}function Ft(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return function(t){return!(!Gt(t)||(e=t,Q&&Q in e))&&($t(t)||V(t)?rt:C).test(Mt(t));var e}(r)?r:void 0}xt.prototype.clear=function(){this.__data__=vt?vt(null):{}},xt.prototype.delete=function(t){return this.has(t)&&delete this.__data__[t]},xt.prototype.get=function(t){var e=this.__data__;if(vt){var r=e[t];return r===n?void 0:r}return tt.call(e,t)?e[t]:void 0},xt.prototype.has=function(t){var e=this.__data__;return vt?void 0!==e[t]:tt.call(e,t)},xt.prototype.set=function(t,e){return this.__data__[t]=vt&&void 0===e?n:e,this},Tt.prototype.clear=function(){this.__data__=[]},Tt.prototype.delete=function(t){var e=this.__data__,r=Ct(e,t);return!(r<0||(r==e.length-1?e.pop():ut.call(e,r,1),0))},Tt.prototype.get=function(t){var e=this.__data__,r=Ct(e,t);return r<0?void 0:e[r][1]},Tt.prototype.has=function(t){return Ct(this.__data__,t)>-1},Tt.prototype.set=function(t,e){var r=this.__data__,n=Ct(r,t);return n<0?r.push([t,e]):r[n][1]=e,this},At.prototype.clear=function(){this.__data__={hash:new xt,map:new(pt||Tt),string:new xt}},At.prototype.delete=function(t){return Pt(this,t).delete(t)},At.prototype.get=function(t){return Pt(this,t).get(t)},At.prototype.has=function(t){return Pt(this,t).has(t)},At.prototype.set=function(t,e){return Pt(this,t).set(t,e),this},jt.prototype.clear=function(){this.__data__=new Tt},jt.prototype.delete=function(t){return this.__data__.delete(t)},jt.prototype.get=function(t){return this.__data__.get(t)},jt.prototype.has=function(t){return this.__data__.has(t)},jt.prototype.set=function(t,e){var r=this.__data__;if(r instanceof Tt){var n=r.__data__;if(!pt||n.length<199)return n.push([t,e]),this;r=this.__data__=new At(n)}return r.set(t,e),this};var zt=ht?H(ht,Object):function(){return[]},Nt=function(t){return et.call(t)};function It(t,e){return!!(e=null==e?i:e)&&("number"==typeof t||L.test(t))&&t>-1&&t%1==0&&t<e}function Ut(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Y)}function Mt(t){if(null!=t){try{return Z.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function qt(t,e){return t===e||t!=t&&e!=e}(dt&&Nt(new dt(new ArrayBuffer(1)))!=w||pt&&Nt(new pt)!=h||yt&&Nt(yt.resolve())!=d||bt&&Nt(new bt)!=y||gt&&Nt(new gt)!=v)&&(Nt=function(t){var e=et.call(t),r=e==f?t.constructor:void 0,n=r?Mt(r):void 0;if(n)switch(n){case mt:return w;case wt:return h;case St:return d;case _t:return y;case Et:return v}return e});var Vt=Array.isArray;function Wt(t){return null!=t&&function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=i}(t.length)&&!$t(t)}var Ht=lt||function(){return!1};function $t(t){var e=Gt(t)?et.call(t):"";return e==c||e==u}function Gt(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function Jt(t){return Wt(t)?function(t,e){var r=Vt(t)||function(t){return function(t){return function(t){return!!t&&"object"==typeof t}(t)&&Wt(t)}(t)&&tt.call(t,"callee")&&(!ct.call(t,"callee")||et.call(t)==s)}(t)?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],n=r.length,i=!!n;for(var o in t)!e&&!tt.call(t,o)||i&&("length"==o||It(o,n))||r.push(o);return r}(t):function(t){if(!Ut(t))return ft(t);var e=[];for(var r in Object(t))tt.call(t,r)&&"constructor"!=r&&e.push(r);return e}(t)}t.exports=function(t){return Lt(t,!0,!0)}},512:(t,e,r)=>{t=r.nmd(t);var n="__lodash_hash_undefined__",i=1,s=2,o=9007199254740991,a="[object Arguments]",c="[object Array]",u="[object AsyncFunction]",h="[object Boolean]",l="[object Date]",f="[object Error]",d="[object Function]",p="[object GeneratorFunction]",y="[object Map]",b="[object Number]",g="[object Null]",v="[object Object]",m="[object Promise]",w="[object Proxy]",S="[object RegExp]",_="[object Set]",E="[object String]",O="[object Undefined]",k="[object WeakMap]",x="[object ArrayBuffer]",T="[object DataView]",A=/^\[object .+?Constructor\]$/,j=/^(?:0|[1-9]\d*)$/,R={};R["[object Float32Array]"]=R["[object Float64Array]"]=R["[object Int8Array]"]=R["[object Int16Array]"]=R["[object Int32Array]"]=R["[object Uint8Array]"]=R["[object Uint8ClampedArray]"]=R["[object Uint16Array]"]=R["[object Uint32Array]"]=!0,R[a]=R[c]=R[x]=R[h]=R[T]=R[l]=R[f]=R[d]=R[y]=R[b]=R[v]=R[S]=R[_]=R[E]=R[k]=!1;var C="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,L="object"==typeof self&&self&&self.Object===Object&&self,D=C||L||Function("return this")(),B=e&&!e.nodeType&&e,P=B&&t&&!t.nodeType&&t,F=P&&P.exports===B,z=F&&C.process,N=function(){try{return z&&z.binding&&z.binding("util")}catch(t){}}(),I=N&&N.isTypedArray;function U(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}function M(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}function q(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}var V,W,H,$=Array.prototype,G=Function.prototype,J=Object.prototype,K=D["__core-js_shared__"],Y=G.toString,X=J.hasOwnProperty,Q=(V=/[^.]+$/.exec(K&&K.keys&&K.keys.IE_PROTO||""))?"Symbol(src)_1."+V:"",Z=J.toString,tt=RegExp("^"+Y.call(X).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),et=F?D.Buffer:void 0,rt=D.Symbol,nt=D.Uint8Array,it=J.propertyIsEnumerable,st=$.splice,ot=rt?rt.toStringTag:void 0,at=Object.getOwnPropertySymbols,ct=et?et.isBuffer:void 0,ut=(W=Object.keys,H=Object,function(t){return W(H(t))}),ht=Pt(D,"DataView"),lt=Pt(D,"Map"),ft=Pt(D,"Promise"),dt=Pt(D,"Set"),pt=Pt(D,"WeakMap"),yt=Pt(Object,"create"),bt=It(ht),gt=It(lt),vt=It(ft),mt=It(dt),wt=It(pt),St=rt?rt.prototype:void 0,_t=St?St.valueOf:void 0;function Et(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function Ot(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function kt(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}function xt(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new kt;++e<r;)this.add(t[e])}function Tt(t){var e=this.__data__=new Ot(t);this.size=e.size}function At(t,e){for(var r=t.length;r--;)if(Ut(t[r][0],e))return r;return-1}function jt(t){return null==t?void 0===t?O:g:ot&&ot in Object(t)?function(t){var e=X.call(t,ot),r=t[ot];try{t[ot]=void 0;var n=!0}catch(t){}var i=Z.call(t);return n&&(e?t[ot]=r:delete t[ot]),i}(t):function(t){return Z.call(t)}(t)}function Rt(t){return Gt(t)&&jt(t)==a}function Ct(t,e,r,n,o){return t===e||(null==t||null==e||!Gt(t)&&!Gt(e)?t!=t&&e!=e:function(t,e,r,n,o,u){var d=qt(t),p=qt(e),g=d?c:zt(t),m=p?c:zt(e),w=(g=g==a?v:g)==v,O=(m=m==a?v:m)==v,k=g==m;if(k&&Vt(t)){if(!Vt(e))return!1;d=!0,w=!1}if(k&&!w)return u||(u=new Tt),d||Jt(t)?Lt(t,e,r,n,o,u):function(t,e,r,n,o,a,c){switch(r){case T:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case x:return!(t.byteLength!=e.byteLength||!a(new nt(t),new nt(e)));case h:case l:case b:return Ut(+t,+e);case f:return t.name==e.name&&t.message==e.message;case S:case E:return t==e+"";case y:var u=M;case _:var d=n&i;if(u||(u=q),t.size!=e.size&&!d)return!1;var p=c.get(t);if(p)return p==e;n|=s,c.set(t,e);var g=Lt(u(t),u(e),n,o,a,c);return c.delete(t),g;case"[object Symbol]":if(_t)return _t.call(t)==_t.call(e)}return!1}(t,e,g,r,n,o,u);if(!(r&i)){var A=w&&X.call(t,"__wrapped__"),j=O&&X.call(e,"__wrapped__");if(A||j){var R=A?t.value():t,C=j?e.value():e;return u||(u=new Tt),o(R,C,r,n,u)}}return!!k&&(u||(u=new Tt),function(t,e,r,n,s,o){var a=r&i,c=Dt(t),u=c.length;if(u!=Dt(e).length&&!a)return!1;for(var h=u;h--;){var l=c[h];if(!(a?l in e:X.call(e,l)))return!1}var f=o.get(t);if(f&&o.get(e))return f==e;var d=!0;o.set(t,e),o.set(e,t);for(var p=a;++h<u;){var y=t[l=c[h]],b=e[l];if(n)var g=a?n(b,y,l,e,t,o):n(y,b,l,t,e,o);if(!(void 0===g?y===b||s(y,b,r,n,o):g)){d=!1;break}p||(p="constructor"==l)}if(d&&!p){var v=t.constructor,m=e.constructor;v==m||!("constructor"in t)||!("constructor"in e)||"function"==typeof v&&v instanceof v&&"function"==typeof m&&m instanceof m||(d=!1)}return o.delete(t),o.delete(e),d}(t,e,r,n,o,u))}(t,e,r,n,Ct,o))}function Lt(t,e,r,n,o,a){var c=r&i,u=t.length,h=e.length;if(u!=h&&!(c&&h>u))return!1;var l=a.get(t);if(l&&a.get(e))return l==e;var f=-1,d=!0,p=r&s?new xt:void 0;for(a.set(t,e),a.set(e,t);++f<u;){var y=t[f],b=e[f];if(n)var g=c?n(b,y,f,e,t,a):n(y,b,f,t,e,a);if(void 0!==g){if(g)continue;d=!1;break}if(p){if(!U(e,(function(t,e){if(i=e,!p.has(i)&&(y===t||o(y,t,r,n,a)))return p.push(e);var i}))){d=!1;break}}else if(y!==b&&!o(y,b,r,n,a)){d=!1;break}}return a.delete(t),a.delete(e),d}function Dt(t){return function(t,e,r){var n=e(t);return qt(t)?n:function(t,e){for(var r=-1,n=e.length,i=t.length;++r<n;)t[i+r]=e[r];return t}(n,r(t))}(t,Kt,Ft)}function Bt(t,e){var r,n,i=t.__data__;return("string"==(n=typeof(r=e))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?i["string"==typeof e?"string":"hash"]:i.map}function Pt(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return function(t){return!(!$t(t)||function(t){return!!Q&&Q in t}(t))&&(Wt(t)?tt:A).test(It(t))}(r)?r:void 0}Et.prototype.clear=function(){this.__data__=yt?yt(null):{},this.size=0},Et.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},Et.prototype.get=function(t){var e=this.__data__;if(yt){var r=e[t];return r===n?void 0:r}return X.call(e,t)?e[t]:void 0},Et.prototype.has=function(t){var e=this.__data__;return yt?void 0!==e[t]:X.call(e,t)},Et.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=yt&&void 0===e?n:e,this},Ot.prototype.clear=function(){this.__data__=[],this.size=0},Ot.prototype.delete=function(t){var e=this.__data__,r=At(e,t);return!(r<0||(r==e.length-1?e.pop():st.call(e,r,1),--this.size,0))},Ot.prototype.get=function(t){var e=this.__data__,r=At(e,t);return r<0?void 0:e[r][1]},Ot.prototype.has=function(t){return At(this.__data__,t)>-1},Ot.prototype.set=function(t,e){var r=this.__data__,n=At(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this},kt.prototype.clear=function(){this.size=0,this.__data__={hash:new Et,map:new(lt||Ot),string:new Et}},kt.prototype.delete=function(t){var e=Bt(this,t).delete(t);return this.size-=e?1:0,e},kt.prototype.get=function(t){return Bt(this,t).get(t)},kt.prototype.has=function(t){return Bt(this,t).has(t)},kt.prototype.set=function(t,e){var r=Bt(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this},xt.prototype.add=xt.prototype.push=function(t){return this.__data__.set(t,n),this},xt.prototype.has=function(t){return this.__data__.has(t)},Tt.prototype.clear=function(){this.__data__=new Ot,this.size=0},Tt.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},Tt.prototype.get=function(t){return this.__data__.get(t)},Tt.prototype.has=function(t){return this.__data__.has(t)},Tt.prototype.set=function(t,e){var r=this.__data__;if(r instanceof Ot){var n=r.__data__;if(!lt||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new kt(n)}return r.set(t,e),this.size=r.size,this};var Ft=at?function(t){return null==t?[]:(t=Object(t),function(e,r){for(var n=-1,i=null==e?0:e.length,s=0,o=[];++n<i;){var a=e[n];c=a,it.call(t,c)&&(o[s++]=a)}var c;return o}(at(t)))}:function(){return[]},zt=jt;function Nt(t,e){return!!(e=null==e?o:e)&&("number"==typeof t||j.test(t))&&t>-1&&t%1==0&&t<e}function It(t){if(null!=t){try{return Y.call(t)}catch(t){}try{return t+""}catch(t){}}return""}function Ut(t,e){return t===e||t!=t&&e!=e}(ht&&zt(new ht(new ArrayBuffer(1)))!=T||lt&&zt(new lt)!=y||ft&&zt(ft.resolve())!=m||dt&&zt(new dt)!=_||pt&&zt(new pt)!=k)&&(zt=function(t){var e=jt(t),r=e==v?t.constructor:void 0,n=r?It(r):"";if(n)switch(n){case bt:return T;case gt:return y;case vt:return m;case mt:return _;case wt:return k}return e});var Mt=Rt(function(){return arguments}())?Rt:function(t){return Gt(t)&&X.call(t,"callee")&&!it.call(t,"callee")},qt=Array.isArray,Vt=ct||function(){return!1};function Wt(t){if(!$t(t))return!1;var e=jt(t);return e==d||e==p||e==u||e==w}function Ht(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=o}function $t(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function Gt(t){return null!=t&&"object"==typeof t}var Jt=I?function(t){return function(e){return t(e)}}(I):function(t){return Gt(t)&&Ht(t.length)&&!!R[jt(t)]};function Kt(t){return null!=(e=t)&&Ht(e.length)&&!Wt(e)?function(t,e){var r=qt(t),n=!r&&Mt(t),i=!r&&!n&&Vt(t),s=!r&&!n&&!i&&Jt(t),o=r||n||i||s,a=o?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],c=a.length;for(var u in t)!e&&!X.call(t,u)||o&&("length"==u||i&&("offset"==u||"parent"==u)||s&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||Nt(u,c))||a.push(u);return a}(t):function(t){if(r=(e=t)&&e.constructor,e!==("function"==typeof r&&r.prototype||J))return ut(t);var e,r,n=[];for(var i in Object(t))X.call(t,i)&&"constructor"!=i&&n.push(i);return n}(t);var e}t.exports=function(t,e){return Ct(t,e)}}},e={};function r(n){var i=e[n];if(void 0!==i)return i.exports;var s=e[n]={id:n,loaded:!1,exports:{}};return t[n](s,s.exports,r),s.loaded=!0,s.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};(()=>{r.d(n,{j:()=>Rs});var t={};r.r(t),r.d(t,{hasBrowserEnv:()=>ot,hasStandardBrowserEnv:()=>at,hasStandardBrowserWebWorkerEnv:()=>ut,origin:()=>ht});var e={};function i(t,e){return function(){return t.apply(e,arguments)}}r.r(e),r.d(e,{Decoder:()=>ws,Encoder:()=>vs,PacketType:()=>gs,protocol:()=>bs});const{toString:s}=Object.prototype,{getPrototypeOf:o}=Object,a=(t=>e=>{const r=s.call(e);return t[r]||(t[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),c=t=>(t=t.toLowerCase(),e=>a(e)===t),u=t=>e=>typeof e===t,{isArray:h}=Array,l=u("undefined"),f=c("ArrayBuffer"),d=u("string"),p=u("function"),y=u("number"),b=t=>null!==t&&"object"==typeof t,g=t=>{if("object"!==a(t))return!1;const e=o(t);return!(null!==e&&e!==Object.prototype&&null!==Object.getPrototypeOf(e)||Symbol.toStringTag in t||Symbol.iterator in t)},v=c("Date"),m=c("File"),w=c("Blob"),S=c("FileList"),_=c("URLSearchParams"),[E,O,k,x]=["ReadableStream","Request","Response","Headers"].map(c);function T(t,e,{allOwnKeys:r=!1}={}){if(null==t)return;let n,i;if("object"!=typeof t&&(t=[t]),h(t))for(n=0,i=t.length;n<i;n++)e.call(null,t[n],n,t);else{const i=r?Object.getOwnPropertyNames(t):Object.keys(t),s=i.length;let o;for(n=0;n<s;n++)o=i[n],e.call(null,t[o],o,t)}}function A(t,e){e=e.toLowerCase();const r=Object.keys(t);let n,i=r.length;for(;i-- >0;)if(n=r[i],e===n.toLowerCase())return n;return null}const j="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,R=t=>!l(t)&&t!==j,C=(L="undefined"!=typeof Uint8Array&&o(Uint8Array),t=>L&&t instanceof L);var L;const D=c("HTMLFormElement"),B=(({hasOwnProperty:t})=>(e,r)=>t.call(e,r))(Object.prototype),P=c("RegExp"),F=(t,e)=>{const r=Object.getOwnPropertyDescriptors(t),n={};T(r,((r,i)=>{let s;!1!==(s=e(r,i,t))&&(n[i]=s||r)})),Object.defineProperties(t,n)},z="abcdefghijklmnopqrstuvwxyz",N="0123456789",I={DIGIT:N,ALPHA:z,ALPHA_DIGIT:z+z.toUpperCase()+N},U=c("AsyncFunction"),M={isArray:h,isArrayBuffer:f,isBuffer:function(t){return null!==t&&!l(t)&&null!==t.constructor&&!l(t.constructor)&&p(t.constructor.isBuffer)&&t.constructor.isBuffer(t)},isFormData:t=>{let e;return t&&("function"==typeof FormData&&t instanceof FormData||p(t.append)&&("formdata"===(e=a(t))||"object"===e&&p(t.toString)&&"[object FormData]"===t.toString()))},isArrayBufferView:function(t){let e;return e="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&f(t.buffer),e},isString:d,isNumber:y,isBoolean:t=>!0===t||!1===t,isObject:b,isPlainObject:g,isReadableStream:E,isRequest:O,isResponse:k,isHeaders:x,isUndefined:l,isDate:v,isFile:m,isBlob:w,isRegExp:P,isFunction:p,isStream:t=>b(t)&&p(t.pipe),isURLSearchParams:_,isTypedArray:C,isFileList:S,forEach:T,merge:function t(){const{caseless:e}=R(this)&&this||{},r={},n=(n,i)=>{const s=e&&A(r,i)||i;g(r[s])&&g(n)?r[s]=t(r[s],n):g(n)?r[s]=t({},n):h(n)?r[s]=n.slice():r[s]=n};for(let t=0,e=arguments.length;t<e;t++)arguments[t]&&T(arguments[t],n);return r},extend:(t,e,r,{allOwnKeys:n}={})=>(T(e,((e,n)=>{r&&p(e)?t[n]=i(e,r):t[n]=e}),{allOwnKeys:n}),t),trim:t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:t=>(65279===t.charCodeAt(0)&&(t=t.slice(1)),t),inherits:(t,e,r,n)=>{t.prototype=Object.create(e.prototype,n),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),r&&Object.assign(t.prototype,r)},toFlatObject:(t,e,r,n)=>{let i,s,a;const c={};if(e=e||{},null==t)return e;do{for(i=Object.getOwnPropertyNames(t),s=i.length;s-- >0;)a=i[s],n&&!n(a,t,e)||c[a]||(e[a]=t[a],c[a]=!0);t=!1!==r&&o(t)}while(t&&(!r||r(t,e))&&t!==Object.prototype);return e},kindOf:a,kindOfTest:c,endsWith:(t,e,r)=>{t=String(t),(void 0===r||r>t.length)&&(r=t.length),r-=e.length;const n=t.indexOf(e,r);return-1!==n&&n===r},toArray:t=>{if(!t)return null;if(h(t))return t;let e=t.length;if(!y(e))return null;const r=new Array(e);for(;e-- >0;)r[e]=t[e];return r},forEachEntry:(t,e)=>{const r=(t&&t[Symbol.iterator]).call(t);let n;for(;(n=r.next())&&!n.done;){const r=n.value;e.call(t,r[0],r[1])}},matchAll:(t,e)=>{let r;const n=[];for(;null!==(r=t.exec(e));)n.push(r);return n},isHTMLForm:D,hasOwnProperty:B,hasOwnProp:B,reduceDescriptors:F,freezeMethods:t=>{F(t,((e,r)=>{if(p(t)&&-1!==["arguments","caller","callee"].indexOf(r))return!1;const n=t[r];p(n)&&(e.enumerable=!1,"writable"in e?e.writable=!1:e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")}))}))},toObjectSet:(t,e)=>{const r={},n=t=>{t.forEach((t=>{r[t]=!0}))};return h(t)?n(t):n(String(t).split(e)),r},toCamelCase:t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(t,e,r){return e.toUpperCase()+r})),noop:()=>{},toFiniteNumber:(t,e)=>null!=t&&Number.isFinite(t=+t)?t:e,findKey:A,global:j,isContextDefined:R,ALPHABET:I,generateString:(t=16,e=I.ALPHA_DIGIT)=>{let r="";const{length:n}=e;for(;t--;)r+=e[Math.random()*n|0];return r},isSpecCompliantForm:function(t){return!!(t&&p(t.append)&&"FormData"===t[Symbol.toStringTag]&&t[Symbol.iterator])},toJSONObject:t=>{const e=new Array(10),r=(t,n)=>{if(b(t)){if(e.indexOf(t)>=0)return;if(!("toJSON"in t)){e[n]=t;const i=h(t)?[]:{};return T(t,((t,e)=>{const s=r(t,n+1);!l(s)&&(i[e]=s)})),e[n]=void 0,i}}return t};return r(t,0)},isAsyncFn:U,isThenable:t=>t&&(b(t)||p(t))&&p(t.then)&&p(t.catch)};function q(t,e,r,n,i){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=t,this.name="AxiosError",e&&(this.code=e),r&&(this.config=r),n&&(this.request=n),i&&(this.response=i)}M.inherits(q,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:M.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const V=q.prototype,W={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((t=>{W[t]={value:t}})),Object.defineProperties(q,W),Object.defineProperty(V,"isAxiosError",{value:!0}),q.from=(t,e,r,n,i,s)=>{const o=Object.create(V);return M.toFlatObject(t,o,(function(t){return t!==Error.prototype}),(t=>"isAxiosError"!==t)),q.call(o,t.message,e,r,n,i),o.cause=t,o.name=t.name,s&&Object.assign(o,s),o};const H=q;function $(t){return M.isPlainObject(t)||M.isArray(t)}function G(t){return M.endsWith(t,"[]")?t.slice(0,-2):t}function J(t,e,r){return t?t.concat(e).map((function(t,e){return t=G(t),!r&&e?"["+t+"]":t})).join(r?".":""):e}const K=M.toFlatObject(M,{},null,(function(t){return/^is[A-Z]/.test(t)})),Y=function(t,e,r){if(!M.isObject(t))throw new TypeError("target must be an object");e=e||new FormData;const n=(r=M.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(t,e){return!M.isUndefined(e[t])}))).metaTokens,i=r.visitor||u,s=r.dots,o=r.indexes,a=(r.Blob||"undefined"!=typeof Blob&&Blob)&&M.isSpecCompliantForm(e);if(!M.isFunction(i))throw new TypeError("visitor must be a function");function c(t){if(null===t)return"";if(M.isDate(t))return t.toISOString();if(!a&&M.isBlob(t))throw new H("Blob is not supported. Use a Buffer instead.");return M.isArrayBuffer(t)||M.isTypedArray(t)?a&&"function"==typeof Blob?new Blob([t]):Buffer.from(t):t}function u(t,r,i){let a=t;if(t&&!i&&"object"==typeof t)if(M.endsWith(r,"{}"))r=n?r:r.slice(0,-2),t=JSON.stringify(t);else if(M.isArray(t)&&function(t){return M.isArray(t)&&!t.some($)}(t)||(M.isFileList(t)||M.endsWith(r,"[]"))&&(a=M.toArray(t)))return r=G(r),a.forEach((function(t,n){!M.isUndefined(t)&&null!==t&&e.append(!0===o?J([r],n,s):null===o?r:r+"[]",c(t))})),!1;return!!$(t)||(e.append(J(i,r,s),c(t)),!1)}const h=[],l=Object.assign(K,{defaultVisitor:u,convertValue:c,isVisitable:$});if(!M.isObject(t))throw new TypeError("data must be an object");return function t(r,n){if(!M.isUndefined(r)){if(-1!==h.indexOf(r))throw Error("Circular reference detected in "+n.join("."));h.push(r),M.forEach(r,(function(r,s){!0===(!(M.isUndefined(r)||null===r)&&i.call(e,r,M.isString(s)?s.trim():s,n,l))&&t(r,n?n.concat(s):[s])})),h.pop()}}(t),e};function X(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,(function(t){return e[t]}))}function Q(t,e){this._pairs=[],t&&Y(t,this,e)}const Z=Q.prototype;Z.append=function(t,e){this._pairs.push([t,e])},Z.toString=function(t){const e=t?function(e){return t.call(this,e,X)}:X;return this._pairs.map((function(t){return e(t[0])+"="+e(t[1])}),"").join("&")};const tt=Q;function et(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function rt(t,e,r){if(!e)return t;const n=r&&r.encode||et,i=r&&r.serialize;let s;if(s=i?i(e,r):M.isURLSearchParams(e)?e.toString():new tt(e,r).toString(n),s){const e=t.indexOf("#");-1!==e&&(t=t.slice(0,e)),t+=(-1===t.indexOf("?")?"?":"&")+s}return t}const nt=class{constructor(){this.handlers=[]}use(t,e,r){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){M.forEach(this.handlers,(function(e){null!==e&&t(e)}))}},it={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},st={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:tt,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},ot="undefined"!=typeof window&&"undefined"!=typeof document,at=(ct="undefined"!=typeof navigator&&navigator.product,ot&&["ReactNative","NativeScript","NS"].indexOf(ct)<0);var ct;const ut="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,ht=ot&&window.location.href||"http://localhost",lt={...t,...st},ft=function(t){function e(t,r,n,i){let s=t[i++];if("__proto__"===s)return!0;const o=Number.isFinite(+s),a=i>=t.length;return s=!s&&M.isArray(n)?n.length:s,a?(M.hasOwnProp(n,s)?n[s]=[n[s],r]:n[s]=r,!o):(n[s]&&M.isObject(n[s])||(n[s]=[]),e(t,r,n[s],i)&&M.isArray(n[s])&&(n[s]=function(t){const e={},r=Object.keys(t);let n;const i=r.length;let s;for(n=0;n<i;n++)s=r[n],e[s]=t[s];return e}(n[s])),!o)}if(M.isFormData(t)&&M.isFunction(t.entries)){const r={};return M.forEachEntry(t,((t,n)=>{e(function(t){return M.matchAll(/\w+|\[(\w*)]/g,t).map((t=>"[]"===t[0]?"":t[1]||t[0]))}(t),n,r,0)})),r}return null},dt={transitional:it,adapter:["xhr","http","fetch"],transformRequest:[function(t,e){const r=e.getContentType()||"",n=r.indexOf("application/json")>-1,i=M.isObject(t);if(i&&M.isHTMLForm(t)&&(t=new FormData(t)),M.isFormData(t))return n?JSON.stringify(ft(t)):t;if(M.isArrayBuffer(t)||M.isBuffer(t)||M.isStream(t)||M.isFile(t)||M.isBlob(t)||M.isReadableStream(t))return t;if(M.isArrayBufferView(t))return t.buffer;if(M.isURLSearchParams(t))return e.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let s;if(i){if(r.indexOf("application/x-www-form-urlencoded")>-1)return function(t,e){return Y(t,new lt.classes.URLSearchParams,Object.assign({visitor:function(t,e,r,n){return lt.isNode&&M.isBuffer(t)?(this.append(e,t.toString("base64")),!1):n.defaultVisitor.apply(this,arguments)}},e))}(t,this.formSerializer).toString();if((s=M.isFileList(t))||r.indexOf("multipart/form-data")>-1){const e=this.env&&this.env.FormData;return Y(s?{"files[]":t}:t,e&&new e,this.formSerializer)}}return i||n?(e.setContentType("application/json",!1),function(t,e,r){if(M.isString(t))try{return(0,JSON.parse)(t),M.trim(t)}catch(t){if("SyntaxError"!==t.name)throw t}return(0,JSON.stringify)(t)}(t)):t}],transformResponse:[function(t){const e=this.transitional||dt.transitional,r=e&&e.forcedJSONParsing,n="json"===this.responseType;if(M.isResponse(t)||M.isReadableStream(t))return t;if(t&&M.isString(t)&&(r&&!this.responseType||n)){const r=!(e&&e.silentJSONParsing)&&n;try{return JSON.parse(t)}catch(t){if(r){if("SyntaxError"===t.name)throw H.from(t,H.ERR_BAD_RESPONSE,this,null,this.response);throw t}}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:lt.classes.FormData,Blob:lt.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};M.forEach(["delete","get","head","post","put","patch"],(t=>{dt.headers[t]={}}));const pt=dt,yt=M.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),bt=Symbol("internals");function gt(t){return t&&String(t).trim().toLowerCase()}function vt(t){return!1===t||null==t?t:M.isArray(t)?t.map(vt):String(t)}function mt(t,e,r,n,i){return M.isFunction(n)?n.call(this,e,r):(i&&(e=r),M.isString(e)?M.isString(n)?-1!==e.indexOf(n):M.isRegExp(n)?n.test(e):void 0:void 0)}class wt{constructor(t){t&&this.set(t)}set(t,e,r){const n=this;function i(t,e,r){const i=gt(e);if(!i)throw new Error("header name must be a non-empty string");const s=M.findKey(n,i);(!s||void 0===n[s]||!0===r||void 0===r&&!1!==n[s])&&(n[s||e]=vt(t))}const s=(t,e)=>M.forEach(t,((t,r)=>i(t,r,e)));if(M.isPlainObject(t)||t instanceof this.constructor)s(t,e);else if(M.isString(t)&&(t=t.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim()))s((t=>{const e={};let r,n,i;return t&&t.split("\n").forEach((function(t){i=t.indexOf(":"),r=t.substring(0,i).trim().toLowerCase(),n=t.substring(i+1).trim(),!r||e[r]&&yt[r]||("set-cookie"===r?e[r]?e[r].push(n):e[r]=[n]:e[r]=e[r]?e[r]+", "+n:n)})),e})(t),e);else if(M.isHeaders(t))for(const[e,n]of t.entries())i(n,e,r);else null!=t&&i(e,t,r);return this}get(t,e){if(t=gt(t)){const r=M.findKey(this,t);if(r){const t=this[r];if(!e)return t;if(!0===e)return function(t){const e=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let n;for(;n=r.exec(t);)e[n[1]]=n[2];return e}(t);if(M.isFunction(e))return e.call(this,t,r);if(M.isRegExp(e))return e.exec(t);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,e){if(t=gt(t)){const r=M.findKey(this,t);return!(!r||void 0===this[r]||e&&!mt(0,this[r],r,e))}return!1}delete(t,e){const r=this;let n=!1;function i(t){if(t=gt(t)){const i=M.findKey(r,t);!i||e&&!mt(0,r[i],i,e)||(delete r[i],n=!0)}}return M.isArray(t)?t.forEach(i):i(t),n}clear(t){const e=Object.keys(this);let r=e.length,n=!1;for(;r--;){const i=e[r];t&&!mt(0,this[i],i,t,!0)||(delete this[i],n=!0)}return n}normalize(t){const e=this,r={};return M.forEach(this,((n,i)=>{const s=M.findKey(r,i);if(s)return e[s]=vt(n),void delete e[i];const o=t?function(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((t,e,r)=>e.toUpperCase()+r))}(i):String(i).trim();o!==i&&delete e[i],e[o]=vt(n),r[o]=!0})),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const e=Object.create(null);return M.forEach(this,((r,n)=>{null!=r&&!1!==r&&(e[n]=t&&M.isArray(r)?r.join(", "):r)})),e}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([t,e])=>t+": "+e)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...e){const r=new this(t);return e.forEach((t=>r.set(t))),r}static accessor(t){const e=(this[bt]=this[bt]={accessors:{}}).accessors,r=this.prototype;function n(t){const n=gt(t);e[n]||(function(t,e){const r=M.toCamelCase(" "+e);["get","set","has"].forEach((n=>{Object.defineProperty(t,n+r,{value:function(t,r,i){return this[n].call(this,e,t,r,i)},configurable:!0})}))}(r,t),e[n]=!0)}return M.isArray(t)?t.forEach(n):n(t),this}}wt.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),M.reduceDescriptors(wt.prototype,(({value:t},e)=>{let r=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(t){this[r]=t}}})),M.freezeMethods(wt);const St=wt;function _t(t,e){const r=this||pt,n=e||r,i=St.from(n.headers);let s=n.data;return M.forEach(t,(function(t){s=t.call(r,s,i.normalize(),e?e.status:void 0)})),i.normalize(),s}function Et(t){return!(!t||!t.__CANCEL__)}function Ot(t,e,r){H.call(this,null==t?"canceled":t,H.ERR_CANCELED,e,r),this.name="CanceledError"}M.inherits(Ot,H,{__CANCEL__:!0});const kt=Ot;function xt(t,e,r){const n=r.config.validateStatus;r.status&&n&&!n(r.status)?e(new H("Request failed with status code "+r.status,[H.ERR_BAD_REQUEST,H.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r)):t(r)}const Tt=(t,e,r=3)=>{let n=0;const i=function(t,e){t=t||10;const r=new Array(t),n=new Array(t);let i,s=0,o=0;return e=void 0!==e?e:1e3,function(a){const c=Date.now(),u=n[o];i||(i=c),r[s]=a,n[s]=c;let h=o,l=0;for(;h!==s;)l+=r[h++],h%=t;if(s=(s+1)%t,s===o&&(o=(o+1)%t),c-i<e)return;const f=u&&c-u;return f?Math.round(1e3*l/f):void 0}}(50,250);return function(t,e){let r=0;const n=1e3/e;let i=null;return function(){const e=!0===this,s=Date.now();if(e||s-r>n)return i&&(clearTimeout(i),i=null),r=s,t.apply(null,arguments);i||(i=setTimeout((()=>(i=null,r=Date.now(),t.apply(null,arguments))),n-(s-r)))}}((r=>{const s=r.loaded,o=r.lengthComputable?r.total:void 0,a=s-n,c=i(a);n=s;const u={loaded:s,total:o,progress:o?s/o:void 0,bytes:a,rate:c||void 0,estimated:c&&o&&s<=o?(o-s)/c:void 0,event:r,lengthComputable:null!=o};u[e?"download":"upload"]=!0,t(u)}),r)},At=lt.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),e=document.createElement("a");let r;function n(r){let n=r;return t&&(e.setAttribute("href",n),n=e.href),e.setAttribute("href",n),{href:e.href,protocol:e.protocol?e.protocol.replace(/:$/,""):"",host:e.host,search:e.search?e.search.replace(/^\?/,""):"",hash:e.hash?e.hash.replace(/^#/,""):"",hostname:e.hostname,port:e.port,pathname:"/"===e.pathname.charAt(0)?e.pathname:"/"+e.pathname}}return r=n(window.location.href),function(t){const e=M.isString(t)?n(t):t;return e.protocol===r.protocol&&e.host===r.host}}():function(){return!0},jt=lt.hasStandardBrowserEnv?{write(t,e,r,n,i,s){const o=[t+"="+encodeURIComponent(e)];M.isNumber(r)&&o.push("expires="+new Date(r).toGMTString()),M.isString(n)&&o.push("path="+n),M.isString(i)&&o.push("domain="+i),!0===s&&o.push("secure"),document.cookie=o.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read:()=>null,remove(){}};function Rt(t,e){return t&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)?function(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}(t,e):e}const Ct=t=>t instanceof St?{...t}:t;function Lt(t,e){e=e||{};const r={};function n(t,e,r){return M.isPlainObject(t)&&M.isPlainObject(e)?M.merge.call({caseless:r},t,e):M.isPlainObject(e)?M.merge({},e):M.isArray(e)?e.slice():e}function i(t,e,r){return M.isUndefined(e)?M.isUndefined(t)?void 0:n(void 0,t,r):n(t,e,r)}function s(t,e){if(!M.isUndefined(e))return n(void 0,e)}function o(t,e){return M.isUndefined(e)?M.isUndefined(t)?void 0:n(void 0,t):n(void 0,e)}function a(r,i,s){return s in e?n(r,i):s in t?n(void 0,r):void 0}const c={url:s,method:s,data:s,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:a,headers:(t,e)=>i(Ct(t),Ct(e),!0)};return M.forEach(Object.keys(Object.assign({},t,e)),(function(n){const s=c[n]||i,o=s(t[n],e[n],n);M.isUndefined(o)&&s!==a||(r[n]=o)})),r}const Dt=t=>{const e=Lt({},t);let r,{data:n,withXSRFToken:i,xsrfHeaderName:s,xsrfCookieName:o,headers:a,auth:c}=e;if(e.headers=a=St.from(a),e.url=rt(Rt(e.baseURL,e.url),t.params,t.paramsSerializer),c&&a.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):""))),M.isFormData(n))if(lt.hasStandardBrowserEnv||lt.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if(!1!==(r=a.getContentType())){const[t,...e]=r?r.split(";").map((t=>t.trim())).filter(Boolean):[];a.setContentType([t||"multipart/form-data",...e].join("; "))}if(lt.hasStandardBrowserEnv&&(i&&M.isFunction(i)&&(i=i(e)),i||!1!==i&&At(e.url))){const t=s&&o&&jt.read(o);t&&a.set(s,t)}return e},Bt="undefined"!=typeof XMLHttpRequest&&function(t){return new Promise((function(e,r){const n=Dt(t);let i=n.data;const s=St.from(n.headers).normalize();let o,{responseType:a}=n;function c(){n.cancelToken&&n.cancelToken.unsubscribe(o),n.signal&&n.signal.removeEventListener("abort",o)}let u=new XMLHttpRequest;function h(){if(!u)return;const n=St.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders());xt((function(t){e(t),c()}),(function(t){r(t),c()}),{data:a&&"text"!==a&&"json"!==a?u.response:u.responseText,status:u.status,statusText:u.statusText,headers:n,config:t,request:u}),u=null}u.open(n.method.toUpperCase(),n.url,!0),u.timeout=n.timeout,"onloadend"in u?u.onloadend=h:u.onreadystatechange=function(){u&&4===u.readyState&&(0!==u.status||u.responseURL&&0===u.responseURL.indexOf("file:"))&&setTimeout(h)},u.onabort=function(){u&&(r(new H("Request aborted",H.ECONNABORTED,n,u)),u=null)},u.onerror=function(){r(new H("Network Error",H.ERR_NETWORK,n,u)),u=null},u.ontimeout=function(){let t=n.timeout?"timeout of "+n.timeout+"ms exceeded":"timeout exceeded";const e=n.transitional||it;n.timeoutErrorMessage&&(t=n.timeoutErrorMessage),r(new H(t,e.clarifyTimeoutError?H.ETIMEDOUT:H.ECONNABORTED,n,u)),u=null},void 0===i&&s.setContentType(null),"setRequestHeader"in u&&M.forEach(s.toJSON(),(function(t,e){u.setRequestHeader(e,t)})),M.isUndefined(n.withCredentials)||(u.withCredentials=!!n.withCredentials),a&&"json"!==a&&(u.responseType=n.responseType),"function"==typeof n.onDownloadProgress&&u.addEventListener("progress",Tt(n.onDownloadProgress,!0)),"function"==typeof n.onUploadProgress&&u.upload&&u.upload.addEventListener("progress",Tt(n.onUploadProgress)),(n.cancelToken||n.signal)&&(o=e=>{u&&(r(!e||e.type?new kt(null,t,u):e),u.abort(),u=null)},n.cancelToken&&n.cancelToken.subscribe(o),n.signal&&(n.signal.aborted?o():n.signal.addEventListener("abort",o)));const l=function(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}(n.url);l&&-1===lt.protocols.indexOf(l)?r(new H("Unsupported protocol "+l+":",H.ERR_BAD_REQUEST,t)):u.send(i||null)}))},Pt=(t,e)=>{let r,n=new AbortController;const i=function(t){if(!r){r=!0,o();const e=t instanceof Error?t:this.reason;n.abort(e instanceof H?e:new kt(e instanceof Error?e.message:e))}};let s=e&&setTimeout((()=>{i(new H(`timeout ${e} of ms exceeded`,H.ETIMEDOUT))}),e);const o=()=>{t&&(s&&clearTimeout(s),s=null,t.forEach((t=>{t&&(t.removeEventListener?t.removeEventListener("abort",i):t.unsubscribe(i))})),t=null)};t.forEach((t=>t&&t.addEventListener&&t.addEventListener("abort",i)));const{signal:a}=n;return a.unsubscribe=o,[a,()=>{s&&clearTimeout(s),s=null}]},Ft=function*(t,e){let r=t.byteLength;if(!e||r<e)return void(yield t);let n,i=0;for(;i<r;)n=i+e,yield t.slice(i,n),i=n},zt=(t,e,r,n,i)=>{const s=async function*(t,e,r){for await(const n of t)yield*Ft(ArrayBuffer.isView(n)?n:await r(String(n)),e)}(t,e,i);let o=0;return new ReadableStream({type:"bytes",async pull(t){const{done:e,value:i}=await s.next();if(e)return t.close(),void n();let a=i.byteLength;r&&r(o+=a),t.enqueue(new Uint8Array(i))},cancel:t=>(n(t),s.return())},{highWaterMark:2})},Nt=(t,e)=>{const r=null!=t;return n=>setTimeout((()=>e({lengthComputable:r,total:t,loaded:n})))},It="function"==typeof fetch&&"function"==typeof Request&&"function"==typeof Response,Ut=It&&"function"==typeof ReadableStream,Mt=It&&("function"==typeof TextEncoder?(qt=new TextEncoder,t=>qt.encode(t)):async t=>new Uint8Array(await new Response(t).arrayBuffer()));var qt;const Vt=Ut&&(()=>{let t=!1;const e=new Request(lt.origin,{body:new ReadableStream,method:"POST",get duplex(){return t=!0,"half"}}).headers.has("Content-Type");return t&&!e})(),Wt=Ut&&!!(()=>{try{return M.isReadableStream(new Response("").body)}catch(t){}})(),Ht={stream:Wt&&(t=>t.body)};var $t;It&&($t=new Response,["text","arrayBuffer","blob","formData","stream"].forEach((t=>{!Ht[t]&&(Ht[t]=M.isFunction($t[t])?e=>e[t]():(e,r)=>{throw new H(`Response type '${t}' is not supported`,H.ERR_NOT_SUPPORT,r)})})));const Gt=It&&(async t=>{let{url:e,method:r,data:n,signal:i,cancelToken:s,timeout:o,onDownloadProgress:a,onUploadProgress:c,responseType:u,headers:h,withCredentials:l="same-origin",fetchOptions:f}=Dt(t);u=u?(u+"").toLowerCase():"text";let d,p,[y,b]=i||s||o?Pt([i,s],o):[];const g=()=>{!d&&setTimeout((()=>{y&&y.unsubscribe()})),d=!0};let v;try{if(c&&Vt&&"get"!==r&&"head"!==r&&0!==(v=await(async(t,e)=>{const r=M.toFiniteNumber(t.getContentLength());return null==r?(async t=>null==t?0:M.isBlob(t)?t.size:M.isSpecCompliantForm(t)?(await new Request(t).arrayBuffer()).byteLength:M.isArrayBufferView(t)?t.byteLength:(M.isURLSearchParams(t)&&(t+=""),M.isString(t)?(await Mt(t)).byteLength:void 0))(e):r})(h,n))){let t,r=new Request(e,{method:"POST",body:n,duplex:"half"});M.isFormData(n)&&(t=r.headers.get("content-type"))&&h.setContentType(t),r.body&&(n=zt(r.body,65536,Nt(v,Tt(c)),null,Mt))}M.isString(l)||(l=l?"cors":"omit"),p=new Request(e,{...f,signal:y,method:r.toUpperCase(),headers:h.normalize().toJSON(),body:n,duplex:"half",withCredentials:l});let i=await fetch(p);const s=Wt&&("stream"===u||"response"===u);if(Wt&&(a||s)){const t={};["status","statusText","headers"].forEach((e=>{t[e]=i[e]}));const e=M.toFiniteNumber(i.headers.get("content-length"));i=new Response(zt(i.body,65536,a&&Nt(e,Tt(a,!0)),s&&g,Mt),t)}u=u||"text";let o=await Ht[M.findKey(Ht,u)||"text"](i,t);return!s&&g(),b&&b(),await new Promise(((e,r)=>{xt(e,r,{data:o,headers:St.from(i.headers),status:i.status,statusText:i.statusText,config:t,request:p})}))}catch(e){if(g(),e&&"TypeError"===e.name&&/fetch/i.test(e.message))throw Object.assign(new H("Network Error",H.ERR_NETWORK,t,p),{cause:e.cause||e});throw H.from(e,e&&e.code,t,p)}}),Jt={http:null,xhr:Bt,fetch:Gt};M.forEach(Jt,((t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch(t){}Object.defineProperty(t,"adapterName",{value:e})}}));const Kt=t=>`- ${t}`,Yt=t=>M.isFunction(t)||null===t||!1===t,Xt=t=>{t=M.isArray(t)?t:[t];const{length:e}=t;let r,n;const i={};for(let s=0;s<e;s++){let e;if(r=t[s],n=r,!Yt(r)&&(n=Jt[(e=String(r)).toLowerCase()],void 0===n))throw new H(`Unknown adapter '${e}'`);if(n)break;i[e||"#"+s]=n}if(!n){const t=Object.entries(i).map((([t,e])=>`adapter ${t} `+(!1===e?"is not supported by the environment":"is not available in the build")));let r=e?t.length>1?"since :\n"+t.map(Kt).join("\n"):" "+Kt(t[0]):"as no adapter specified";throw new H("There is no suitable adapter to dispatch the request "+r,"ERR_NOT_SUPPORT")}return n};function Qt(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new kt(null,t)}function Zt(t){return Qt(t),t.headers=St.from(t.headers),t.data=_t.call(t,t.transformRequest),-1!==["post","put","patch"].indexOf(t.method)&&t.headers.setContentType("application/x-www-form-urlencoded",!1),Xt(t.adapter||pt.adapter)(t).then((function(e){return Qt(t),e.data=_t.call(t,t.transformResponse,e),e.headers=St.from(e.headers),e}),(function(e){return Et(e)||(Qt(t),e&&e.response&&(e.response.data=_t.call(t,t.transformResponse,e.response),e.response.headers=St.from(e.response.headers))),Promise.reject(e)}))}const te={};["object","boolean","number","function","string","symbol"].forEach(((t,e)=>{te[t]=function(r){return typeof r===t||"a"+(e<1?"n ":" ")+t}}));const ee={};te.transitional=function(t,e,r){function n(t,e){return"[Axios v1.7.2] Transitional option '"+t+"'"+e+(r?". "+r:"")}return(r,i,s)=>{if(!1===t)throw new H(n(i," has been removed"+(e?" in "+e:"")),H.ERR_DEPRECATED);return e&&!ee[i]&&(ee[i]=!0,console.warn(n(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(r,i,s)}};const re={assertOptions:function(t,e,r){if("object"!=typeof t)throw new H("options must be an object",H.ERR_BAD_OPTION_VALUE);const n=Object.keys(t);let i=n.length;for(;i-- >0;){const s=n[i],o=e[s];if(o){const e=t[s],r=void 0===e||o(e,s,t);if(!0!==r)throw new H("option "+s+" must be "+r,H.ERR_BAD_OPTION_VALUE)}else if(!0!==r)throw new H("Unknown option "+s,H.ERR_BAD_OPTION)}},validators:te},ne=re.validators;class ie{constructor(t){this.defaults=t,this.interceptors={request:new nt,response:new nt}}async request(t,e){try{return await this._request(t,e)}catch(t){if(t instanceof Error){let e;Error.captureStackTrace?Error.captureStackTrace(e={}):e=new Error;const r=e.stack?e.stack.replace(/^.+\n/,""):"";try{t.stack?r&&!String(t.stack).endsWith(r.replace(/^.+\n.+\n/,""))&&(t.stack+="\n"+r):t.stack=r}catch(t){}}throw t}}_request(t,e){"string"==typeof t?(e=e||{}).url=t:e=t||{},e=Lt(this.defaults,e);const{transitional:r,paramsSerializer:n,headers:i}=e;void 0!==r&&re.assertOptions(r,{silentJSONParsing:ne.transitional(ne.boolean),forcedJSONParsing:ne.transitional(ne.boolean),clarifyTimeoutError:ne.transitional(ne.boolean)},!1),null!=n&&(M.isFunction(n)?e.paramsSerializer={serialize:n}:re.assertOptions(n,{encode:ne.function,serialize:ne.function},!0)),e.method=(e.method||this.defaults.method||"get").toLowerCase();let s=i&&M.merge(i.common,i[e.method]);i&&M.forEach(["delete","get","head","post","put","patch","common"],(t=>{delete i[t]})),e.headers=St.concat(s,i);const o=[];let a=!0;this.interceptors.request.forEach((function(t){"function"==typeof t.runWhen&&!1===t.runWhen(e)||(a=a&&t.synchronous,o.unshift(t.fulfilled,t.rejected))}));const c=[];let u;this.interceptors.response.forEach((function(t){c.push(t.fulfilled,t.rejected)}));let h,l=0;if(!a){const t=[Zt.bind(this),void 0];for(t.unshift.apply(t,o),t.push.apply(t,c),h=t.length,u=Promise.resolve(e);l<h;)u=u.then(t[l++],t[l++]);return u}h=o.length;let f=e;for(l=0;l<h;){const t=o[l++],e=o[l++];try{f=t(f)}catch(t){e.call(this,t);break}}try{u=Zt.call(this,f)}catch(t){return Promise.reject(t)}for(l=0,h=c.length;l<h;)u=u.then(c[l++],c[l++]);return u}getUri(t){return rt(Rt((t=Lt(this.defaults,t)).baseURL,t.url),t.params,t.paramsSerializer)}}M.forEach(["delete","get","head","options"],(function(t){ie.prototype[t]=function(e,r){return this.request(Lt(r||{},{method:t,url:e,data:(r||{}).data}))}})),M.forEach(["post","put","patch"],(function(t){function e(e){return function(r,n,i){return this.request(Lt(i||{},{method:t,headers:e?{"Content-Type":"multipart/form-data"}:{},url:r,data:n}))}}ie.prototype[t]=e(),ie.prototype[t+"Form"]=e(!0)}));const se=ie;class oe{constructor(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");let e;this.promise=new Promise((function(t){e=t}));const r=this;this.promise.then((t=>{if(!r._listeners)return;let e=r._listeners.length;for(;e-- >0;)r._listeners[e](t);r._listeners=null})),this.promise.then=t=>{let e;const n=new Promise((t=>{r.subscribe(t),e=t})).then(t);return n.cancel=function(){r.unsubscribe(e)},n},t((function(t,n,i){r.reason||(r.reason=new kt(t,n,i),e(r.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){this.reason?t(this.reason):this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const e=this._listeners.indexOf(t);-1!==e&&this._listeners.splice(e,1)}static source(){let t;return{token:new oe((function(e){t=e})),cancel:t}}}const ae=oe,ce={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(ce).forEach((([t,e])=>{ce[e]=t}));const ue=ce,he=function t(e){const r=new se(e),n=i(se.prototype.request,r);return M.extend(n,se.prototype,r,{allOwnKeys:!0}),M.extend(n,r,null,{allOwnKeys:!0}),n.create=function(r){return t(Lt(e,r))},n}(pt);he.Axios=se,he.CanceledError=kt,he.CancelToken=ae,he.isCancel=Et,he.VERSION="1.7.2",he.toFormData=Y,he.AxiosError=H,he.Cancel=he.CanceledError,he.all=function(t){return Promise.all(t)},he.spread=function(t){return function(e){return t.apply(null,e)}},he.isAxiosError=function(t){return M.isObject(t)&&!0===t.isAxiosError},he.mergeConfig=Lt,he.AxiosHeaders=St,he.formToJSON=t=>ft(M.isHTMLForm(t)?new FormData(t):t),he.getAdapter=Xt,he.HttpStatusCode=ue,he.default=he;const le=he;class fe{interceptor;constructor(t){this.interceptor=le.create({baseURL:`${t}/api`}),this.interceptor.interceptors.request.use((t=>{const e=le.CancelToken.source();return t.cancelToken=e.token,setTimeout((()=>{e.cancel("Timeout: request took more than 15 seconds")}),15e3),t}),(t=>Promise.reject(t)))}}var de=r(275),pe=r.n(de),ye=r(512),be=r.n(ye);const ge="object"==typeof performance&&performance&&"function"==typeof performance.now?performance:Date,ve=new Set,me="object"==typeof process&&process?process:{},we=(t,e,r,n)=>{"function"==typeof me.emitWarning?me.emitWarning(t,e,r,n):console.error(`[${r}] ${e}: ${t}`)};let Se=globalThis.AbortController,_e=globalThis.AbortSignal;if(void 0===Se){_e=class{onabort;_onabort=[];reason;aborted=!1;addEventListener(t,e){this._onabort.push(e)}},Se=class{constructor(){e()}signal=new _e;abort(t){if(!this.signal.aborted){this.signal.reason=t,this.signal.aborted=!0;for(const e of this.signal._onabort)e(t);this.signal.onabort?.(t)}}};let t="1"!==me.env?.LRU_CACHE_IGNORE_AC_WARNING;const e=()=>{t&&(t=!1,we("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.","NO_ABORT_CONTROLLER","ENOTSUP",e))}}Symbol("type");const Ee=t=>t&&t===Math.floor(t)&&t>0&&isFinite(t),Oe=t=>Ee(t)?t<=Math.pow(2,8)?Uint8Array:t<=Math.pow(2,16)?Uint16Array:t<=Math.pow(2,32)?Uint32Array:t<=Number.MAX_SAFE_INTEGER?ke:null:null;class ke extends Array{constructor(t){super(t),this.fill(0)}}class xe{heap;length;static#t=!1;static create(t){const e=Oe(t);if(!e)return[];xe.#t=!0;const r=new xe(t,e);return xe.#t=!1,r}constructor(t,e){if(!xe.#t)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new e(t),this.length=0}push(t){this.heap[this.length++]=t}pop(){return this.heap[--this.length]}}class Te{#e;#r;#n;#i;#s;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#o;#a;#c;#u;#h;#l;#f;#d;#p;#y;#b;#g;#v;#m;#w;#S;#_;static unsafeExposeInternals(t){return{starts:t.#v,ttls:t.#m,sizes:t.#g,keyMap:t.#c,keyList:t.#u,valList:t.#h,next:t.#l,prev:t.#f,get head(){return t.#d},get tail(){return t.#p},free:t.#y,isBackgroundFetch:e=>t.#E(e),backgroundFetch:(e,r,n,i)=>t.#O(e,r,n,i),moveToTail:e=>t.#k(e),indexes:e=>t.#x(e),rindexes:e=>t.#T(e),isStale:e=>t.#A(e)}}get max(){return this.#e}get maxSize(){return this.#r}get calculatedSize(){return this.#a}get size(){return this.#o}get fetchMethod(){return this.#s}get dispose(){return this.#n}get disposeAfter(){return this.#i}constructor(t){const{max:e=0,ttl:r,ttlResolution:n=1,ttlAutopurge:i,updateAgeOnGet:s,updateAgeOnHas:o,allowStale:a,dispose:c,disposeAfter:u,noDisposeOnSet:h,noUpdateTTL:l,maxSize:f=0,maxEntrySize:d=0,sizeCalculation:p,fetchMethod:y,noDeleteOnFetchRejection:b,noDeleteOnStaleGet:g,allowStaleOnFetchRejection:v,allowStaleOnFetchAbort:m,ignoreFetchAbort:w}=t;if(0!==e&&!Ee(e))throw new TypeError("max option must be a nonnegative integer");const S=e?Oe(e):Array;if(!S)throw new Error("invalid max value: "+e);if(this.#e=e,this.#r=f,this.maxEntrySize=d||this.#r,this.sizeCalculation=p,this.sizeCalculation){if(!this.#r&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if("function"!=typeof this.sizeCalculation)throw new TypeError("sizeCalculation set to non-function")}if(void 0!==y&&"function"!=typeof y)throw new TypeError("fetchMethod must be a function if specified");if(this.#s=y,this.#S=!!y,this.#c=new Map,this.#u=new Array(e).fill(void 0),this.#h=new Array(e).fill(void 0),this.#l=new S(e),this.#f=new S(e),this.#d=0,this.#p=0,this.#y=xe.create(e),this.#o=0,this.#a=0,"function"==typeof c&&(this.#n=c),"function"==typeof u?(this.#i=u,this.#b=[]):(this.#i=void 0,this.#b=void 0),this.#w=!!this.#n,this.#_=!!this.#i,this.noDisposeOnSet=!!h,this.noUpdateTTL=!!l,this.noDeleteOnFetchRejection=!!b,this.allowStaleOnFetchRejection=!!v,this.allowStaleOnFetchAbort=!!m,this.ignoreFetchAbort=!!w,0!==this.maxEntrySize){if(0!==this.#r&&!Ee(this.#r))throw new TypeError("maxSize must be a positive integer if specified");if(!Ee(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#j()}if(this.allowStale=!!a,this.noDeleteOnStaleGet=!!g,this.updateAgeOnGet=!!s,this.updateAgeOnHas=!!o,this.ttlResolution=Ee(n)||0===n?n:1,this.ttlAutopurge=!!i,this.ttl=r||0,this.ttl){if(!Ee(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#R()}if(0===this.#e&&0===this.ttl&&0===this.#r)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#e&&!this.#r){const t="LRU_CACHE_UNBOUNDED";(t=>!ve.has(t))(t)&&(ve.add(t),we("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",t,Te))}}getRemainingTTL(t){return this.#c.has(t)?1/0:0}#R(){const t=new ke(this.#e),e=new ke(this.#e);this.#m=t,this.#v=e,this.#C=(r,n,i=ge.now())=>{if(e[r]=0!==n?i:0,t[r]=n,0!==n&&this.ttlAutopurge){const t=setTimeout((()=>{this.#A(r)&&this.delete(this.#u[r])}),n+1);t.unref&&t.unref()}},this.#L=r=>{e[r]=0!==t[r]?ge.now():0},this.#D=(i,s)=>{if(t[s]){const o=t[s],a=e[s];if(!o||!a)return;i.ttl=o,i.start=a,i.now=r||n();const c=i.now-a;i.remainingTTL=o-c}};let r=0;const n=()=>{const t=ge.now();if(this.ttlResolution>0){r=t;const e=setTimeout((()=>r=0),this.ttlResolution);e.unref&&e.unref()}return t};this.getRemainingTTL=i=>{const s=this.#c.get(i);if(void 0===s)return 0;const o=t[s],a=e[s];return o&&a?o-((r||n())-a):1/0},this.#A=i=>{const s=e[i],o=t[i];return!!o&&!!s&&(r||n())-s>o}}#L=()=>{};#D=()=>{};#C=()=>{};#A=()=>!1;#j(){const t=new ke(this.#e);this.#a=0,this.#g=t,this.#B=e=>{this.#a-=t[e],t[e]=0},this.#P=(t,e,r,n)=>{if(this.#E(e))return 0;if(!Ee(r)){if(!n)throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");if("function"!=typeof n)throw new TypeError("sizeCalculation must be a function");if(r=n(e,t),!Ee(r))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}return r},this.#F=(e,r,n)=>{if(t[e]=r,this.#r){const r=this.#r-t[e];for(;this.#a>r;)this.#z(!0)}this.#a+=t[e],n&&(n.entrySize=r,n.totalCalculatedSize=this.#a)}}#B=t=>{};#F=(t,e,r)=>{};#P=(t,e,r,n)=>{if(r||n)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0};*#x({allowStale:t=this.allowStale}={}){if(this.#o)for(let e=this.#p;this.#N(e)&&(!t&&this.#A(e)||(yield e),e!==this.#d);)e=this.#f[e]}*#T({allowStale:t=this.allowStale}={}){if(this.#o)for(let e=this.#d;this.#N(e)&&(!t&&this.#A(e)||(yield e),e!==this.#p);)e=this.#l[e]}#N(t){return void 0!==t&&this.#c.get(this.#u[t])===t}*entries(){for(const t of this.#x())void 0===this.#h[t]||void 0===this.#u[t]||this.#E(this.#h[t])||(yield[this.#u[t],this.#h[t]])}*rentries(){for(const t of this.#T())void 0===this.#h[t]||void 0===this.#u[t]||this.#E(this.#h[t])||(yield[this.#u[t],this.#h[t]])}*keys(){for(const t of this.#x()){const e=this.#u[t];void 0===e||this.#E(this.#h[t])||(yield e)}}*rkeys(){for(const t of this.#T()){const e=this.#u[t];void 0===e||this.#E(this.#h[t])||(yield e)}}*values(){for(const t of this.#x())void 0===this.#h[t]||this.#E(this.#h[t])||(yield this.#h[t])}*rvalues(){for(const t of this.#T())void 0===this.#h[t]||this.#E(this.#h[t])||(yield this.#h[t])}[Symbol.iterator](){return this.entries()}[Symbol.toStringTag]="LRUCache";find(t,e={}){for(const r of this.#x()){const n=this.#h[r],i=this.#E(n)?n.__staleWhileFetching:n;if(void 0!==i&&t(i,this.#u[r],this))return this.get(this.#u[r],e)}}forEach(t,e=this){for(const r of this.#x()){const n=this.#h[r],i=this.#E(n)?n.__staleWhileFetching:n;void 0!==i&&t.call(e,i,this.#u[r],this)}}rforEach(t,e=this){for(const r of this.#T()){const n=this.#h[r],i=this.#E(n)?n.__staleWhileFetching:n;void 0!==i&&t.call(e,i,this.#u[r],this)}}purgeStale(){let t=!1;for(const e of this.#T({allowStale:!0}))this.#A(e)&&(this.delete(this.#u[e]),t=!0);return t}info(t){const e=this.#c.get(t);if(void 0===e)return;const r=this.#h[e],n=this.#E(r)?r.__staleWhileFetching:r;if(void 0===n)return;const i={value:n};if(this.#m&&this.#v){const t=this.#m[e],r=this.#v[e];if(t&&r){const e=t-(ge.now()-r);i.ttl=e,i.start=Date.now()}}return this.#g&&(i.size=this.#g[e]),i}dump(){const t=[];for(const e of this.#x({allowStale:!0})){const r=this.#u[e],n=this.#h[e],i=this.#E(n)?n.__staleWhileFetching:n;if(void 0===i||void 0===r)continue;const s={value:i};if(this.#m&&this.#v){s.ttl=this.#m[e];const t=ge.now()-this.#v[e];s.start=Math.floor(Date.now()-t)}this.#g&&(s.size=this.#g[e]),t.unshift([r,s])}return t}load(t){this.clear();for(const[e,r]of t){if(r.start){const t=Date.now()-r.start;r.start=ge.now()-t}this.set(e,r.value,r)}}set(t,e,r={}){if(void 0===e)return this.delete(t),this;const{ttl:n=this.ttl,start:i,noDisposeOnSet:s=this.noDisposeOnSet,sizeCalculation:o=this.sizeCalculation,status:a}=r;let{noUpdateTTL:c=this.noUpdateTTL}=r;const u=this.#P(t,e,r.size||0,o);if(this.maxEntrySize&&u>this.maxEntrySize)return a&&(a.set="miss",a.maxEntrySizeExceeded=!0),this.delete(t),this;let h=0===this.#o?void 0:this.#c.get(t);if(void 0===h)h=0===this.#o?this.#p:0!==this.#y.length?this.#y.pop():this.#o===this.#e?this.#z(!1):this.#o,this.#u[h]=t,this.#h[h]=e,this.#c.set(t,h),this.#l[this.#p]=h,this.#f[h]=this.#p,this.#p=h,this.#o++,this.#F(h,u,a),a&&(a.set="add"),c=!1;else{this.#k(h);const r=this.#h[h];if(e!==r){if(this.#S&&this.#E(r)){r.__abortController.abort(new Error("replaced"));const{__staleWhileFetching:e}=r;void 0===e||s||(this.#w&&this.#n?.(e,t,"set"),this.#_&&this.#b?.push([e,t,"set"]))}else s||(this.#w&&this.#n?.(r,t,"set"),this.#_&&this.#b?.push([r,t,"set"]));if(this.#B(h),this.#F(h,u,a),this.#h[h]=e,a){a.set="replace";const t=r&&this.#E(r)?r.__staleWhileFetching:r;void 0!==t&&(a.oldValue=t)}}else a&&(a.set="update")}if(0===n||this.#m||this.#R(),this.#m&&(c||this.#C(h,n,i),a&&this.#D(a,h)),!s&&this.#_&&this.#b){const t=this.#b;let e;for(;e=t?.shift();)this.#i?.(...e)}return this}pop(){try{for(;this.#o;){const t=this.#h[this.#d];if(this.#z(!0),this.#E(t)){if(t.__staleWhileFetching)return t.__staleWhileFetching}else if(void 0!==t)return t}}finally{if(this.#_&&this.#b){const t=this.#b;let e;for(;e=t?.shift();)this.#i?.(...e)}}}#z(t){const e=this.#d,r=this.#u[e],n=this.#h[e];return this.#S&&this.#E(n)?n.__abortController.abort(new Error("evicted")):(this.#w||this.#_)&&(this.#w&&this.#n?.(n,r,"evict"),this.#_&&this.#b?.push([n,r,"evict"])),this.#B(e),t&&(this.#u[e]=void 0,this.#h[e]=void 0,this.#y.push(e)),1===this.#o?(this.#d=this.#p=0,this.#y.length=0):this.#d=this.#l[e],this.#c.delete(r),this.#o--,e}has(t,e={}){const{updateAgeOnHas:r=this.updateAgeOnHas,status:n}=e,i=this.#c.get(t);if(void 0!==i){const t=this.#h[i];if(this.#E(t)&&void 0===t.__staleWhileFetching)return!1;if(!this.#A(i))return r&&this.#L(i),n&&(n.has="hit",this.#D(n,i)),!0;n&&(n.has="stale",this.#D(n,i))}else n&&(n.has="miss");return!1}peek(t,e={}){const{allowStale:r=this.allowStale}=e,n=this.#c.get(t);if(void 0===n||!r&&this.#A(n))return;const i=this.#h[n];return this.#E(i)?i.__staleWhileFetching:i}#O(t,e,r,n){const i=void 0===e?void 0:this.#h[e];if(this.#E(i))return i;const s=new Se,{signal:o}=r;o?.addEventListener("abort",(()=>s.abort(o.reason)),{signal:s.signal});const a={signal:s.signal,options:r,context:n},c=(n,i=!1)=>{const{aborted:o}=s.signal,c=r.ignoreFetchAbort&&void 0!==n;if(r.status&&(o&&!i?(r.status.fetchAborted=!0,r.status.fetchError=s.signal.reason,c&&(r.status.fetchAbortIgnored=!0)):r.status.fetchResolved=!0),o&&!c&&!i)return u(s.signal.reason);const l=h;return this.#h[e]===h&&(void 0===n?l.__staleWhileFetching?this.#h[e]=l.__staleWhileFetching:this.delete(t):(r.status&&(r.status.fetchUpdated=!0),this.set(t,n,a.options))),n},u=n=>{const{aborted:i}=s.signal,o=i&&r.allowStaleOnFetchAbort,a=o||r.allowStaleOnFetchRejection,c=a||r.noDeleteOnFetchRejection,u=h;if(this.#h[e]===h&&(c&&void 0!==u.__staleWhileFetching?o||(this.#h[e]=u.__staleWhileFetching):this.delete(t)),a)return r.status&&void 0!==u.__staleWhileFetching&&(r.status.returnedStale=!0),u.__staleWhileFetching;if(u.__returned===u)throw n};r.status&&(r.status.fetchDispatched=!0);const h=new Promise(((e,n)=>{const o=this.#s?.(t,i,a);o&&o instanceof Promise&&o.then((t=>e(void 0===t?void 0:t)),n),s.signal.addEventListener("abort",(()=>{r.ignoreFetchAbort&&!r.allowStaleOnFetchAbort||(e(void 0),r.allowStaleOnFetchAbort&&(e=t=>c(t,!0)))}))})).then(c,(t=>(r.status&&(r.status.fetchRejected=!0,r.status.fetchError=t),u(t)))),l=Object.assign(h,{__abortController:s,__staleWhileFetching:i,__returned:void 0});return void 0===e?(this.set(t,l,{...a.options,status:void 0}),e=this.#c.get(t)):this.#h[e]=l,l}#E(t){if(!this.#S)return!1;const e=t;return!!e&&e instanceof Promise&&e.hasOwnProperty("__staleWhileFetching")&&e.__abortController instanceof Se}async fetch(t,e={}){const{allowStale:r=this.allowStale,updateAgeOnGet:n=this.updateAgeOnGet,noDeleteOnStaleGet:i=this.noDeleteOnStaleGet,ttl:s=this.ttl,noDisposeOnSet:o=this.noDisposeOnSet,size:a=0,sizeCalculation:c=this.sizeCalculation,noUpdateTTL:u=this.noUpdateTTL,noDeleteOnFetchRejection:h=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:l=this.allowStaleOnFetchRejection,ignoreFetchAbort:f=this.ignoreFetchAbort,allowStaleOnFetchAbort:d=this.allowStaleOnFetchAbort,context:p,forceRefresh:y=!1,status:b,signal:g}=e;if(!this.#S)return b&&(b.fetch="get"),this.get(t,{allowStale:r,updateAgeOnGet:n,noDeleteOnStaleGet:i,status:b});const v={allowStale:r,updateAgeOnGet:n,noDeleteOnStaleGet:i,ttl:s,noDisposeOnSet:o,size:a,sizeCalculation:c,noUpdateTTL:u,noDeleteOnFetchRejection:h,allowStaleOnFetchRejection:l,allowStaleOnFetchAbort:d,ignoreFetchAbort:f,status:b,signal:g};let m=this.#c.get(t);if(void 0===m){b&&(b.fetch="miss");const e=this.#O(t,m,v,p);return e.__returned=e}{const e=this.#h[m];if(this.#E(e)){const t=r&&void 0!==e.__staleWhileFetching;return b&&(b.fetch="inflight",t&&(b.returnedStale=!0)),t?e.__staleWhileFetching:e.__returned=e}const i=this.#A(m);if(!y&&!i)return b&&(b.fetch="hit"),this.#k(m),n&&this.#L(m),b&&this.#D(b,m),e;const s=this.#O(t,m,v,p),o=void 0!==s.__staleWhileFetching&&r;return b&&(b.fetch=i?"stale":"refresh",o&&i&&(b.returnedStale=!0)),o?s.__staleWhileFetching:s.__returned=s}}get(t,e={}){const{allowStale:r=this.allowStale,updateAgeOnGet:n=this.updateAgeOnGet,noDeleteOnStaleGet:i=this.noDeleteOnStaleGet,status:s}=e,o=this.#c.get(t);if(void 0!==o){const e=this.#h[o],a=this.#E(e);return s&&this.#D(s,o),this.#A(o)?(s&&(s.get="stale"),a?(s&&r&&void 0!==e.__staleWhileFetching&&(s.returnedStale=!0),r?e.__staleWhileFetching:void 0):(i||this.delete(t),s&&r&&(s.returnedStale=!0),r?e:void 0)):(s&&(s.get="hit"),a?e.__staleWhileFetching:(this.#k(o),n&&this.#L(o),e))}s&&(s.get="miss")}#I(t,e){this.#f[e]=t,this.#l[t]=e}#k(t){t!==this.#p&&(t===this.#d?this.#d=this.#l[t]:this.#I(this.#f[t],this.#l[t]),this.#I(this.#p,t),this.#p=t)}delete(t){let e=!1;if(0!==this.#o){const r=this.#c.get(t);if(void 0!==r)if(e=!0,1===this.#o)this.clear();else{this.#B(r);const e=this.#h[r];if(this.#E(e)?e.__abortController.abort(new Error("deleted")):(this.#w||this.#_)&&(this.#w&&this.#n?.(e,t,"delete"),this.#_&&this.#b?.push([e,t,"delete"])),this.#c.delete(t),this.#u[r]=void 0,this.#h[r]=void 0,r===this.#p)this.#p=this.#f[r];else if(r===this.#d)this.#d=this.#l[r];else{const t=this.#f[r];this.#l[t]=this.#l[r];const e=this.#l[r];this.#f[e]=this.#f[r]}this.#o--,this.#y.push(r)}}if(this.#_&&this.#b?.length){const t=this.#b;let e;for(;e=t?.shift();)this.#i?.(...e)}return e}clear(){for(const t of this.#T({allowStale:!0})){const e=this.#h[t];if(this.#E(e))e.__abortController.abort(new Error("deleted"));else{const r=this.#u[t];this.#w&&this.#n?.(e,r,"delete"),this.#_&&this.#b?.push([e,r,"delete"])}}if(this.#c.clear(),this.#h.fill(void 0),this.#u.fill(void 0),this.#m&&this.#v&&(this.#m.fill(0),this.#v.fill(0)),this.#g&&this.#g.fill(0),this.#d=0,this.#p=0,this.#y.length=0,this.#a=0,this.#o=0,this.#_&&this.#b){const t=this.#b;let e;for(;e=t?.shift();)this.#i?.(...e)}}}var Ae=function(t,e){return Ae=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},Ae(t,e)};function je(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}Ae(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)}function Re(t,e){var r,n,i,s,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&a[0]?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(6===a[0]&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=e.call(t,o)}catch(t){a=[6,t],n=0}finally{r=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function Ce(t){var e="function"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function Le(t,e){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,i,s=r.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(n=s.next()).done;)o.push(n.value)}catch(t){i={error:t}}finally{try{n&&!n.done&&(r=s.return)&&r.call(s)}finally{if(i)throw i.error}}return o}function De(t,e,r){if(r||2===arguments.length)for(var n,i=0,s=e.length;i<s;i++)!n&&i in e||(n||(n=Array.prototype.slice.call(e,0,i)),n[i]=e[i]);return t.concat(n||Array.prototype.slice.call(e))}function Be(t){return this instanceof Be?(this.v=t,this):new Be(t)}function Pe(t){return"function"==typeof t}function Fe(t){var e=t((function(t){Error.call(t),t.stack=(new Error).stack}));return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}Object.create,Object.create,"function"==typeof SuppressedError&&SuppressedError;var ze=Fe((function(t){return function(e){t(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map((function(t,e){return e+1+") "+t.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=e}}));function Ne(t,e){if(t){var r=t.indexOf(e);0<=r&&t.splice(r,1)}}var Ie=function(){function t(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var t,e,r,n,i;if(!this.closed){this.closed=!0;var s=this._parentage;if(s)if(this._parentage=null,Array.isArray(s))try{for(var o=Ce(s),a=o.next();!a.done;a=o.next())a.value.remove(this)}catch(e){t={error:e}}finally{try{a&&!a.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}else s.remove(this);var c=this.initialTeardown;if(Pe(c))try{c()}catch(t){i=t instanceof ze?t.errors:[t]}var u=this._finalizers;if(u){this._finalizers=null;try{for(var h=Ce(u),l=h.next();!l.done;l=h.next()){var f=l.value;try{qe(f)}catch(t){i=null!=i?i:[],t instanceof ze?i=De(De([],Le(i)),Le(t.errors)):i.push(t)}}}catch(t){r={error:t}}finally{try{l&&!l.done&&(n=h.return)&&n.call(h)}finally{if(r)throw r.error}}}if(i)throw new ze(i)}},t.prototype.add=function(e){var r;if(e&&e!==this)if(this.closed)qe(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(e)}},t.prototype._hasParent=function(t){var e=this._parentage;return e===t||Array.isArray(e)&&e.includes(t)},t.prototype._addParent=function(t){var e=this._parentage;this._parentage=Array.isArray(e)?(e.push(t),e):e?[e,t]:t},t.prototype._removeParent=function(t){var e=this._parentage;e===t?this._parentage=null:Array.isArray(e)&&Ne(e,t)},t.prototype.remove=function(e){var r=this._finalizers;r&&Ne(r,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),Ue=Ie.EMPTY;function Me(t){return t instanceof Ie||t&&"closed"in t&&Pe(t.remove)&&Pe(t.add)&&Pe(t.unsubscribe)}function qe(t){Pe(t)?t():t.unsubscribe()}var Ve={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},We={setTimeout:function(t,e){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=We.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,De([t,e],Le(r))):setTimeout.apply(void 0,De([t,e],Le(r)))},clearTimeout:function(t){var e=We.delegate;return((null==e?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function He(t){We.setTimeout((function(){var e=Ve.onUnhandledError;if(!e)throw t;e(t)}))}function $e(){}var Ge=Je("C",void 0,void 0);function Je(t,e,r){return{kind:t,value:e,error:r}}var Ke=null;function Ye(t){if(Ve.useDeprecatedSynchronousErrorHandling){var e=!Ke;if(e&&(Ke={errorThrown:!1,error:null}),t(),e){var r=Ke,n=r.errorThrown,i=r.error;if(Ke=null,n)throw i}}else t()}var Xe=function(t){function e(e){var r=t.call(this)||this;return r.isStopped=!1,e?(r.destination=e,Me(e)&&e.add(r)):r.destination=ir,r}return je(e,t),e.create=function(t,e,r){return new er(t,e,r)},e.prototype.next=function(t){this.isStopped?nr(function(t){return Je("N",t,void 0)}(t),this):this._next(t)},e.prototype.error=function(t){this.isStopped?nr(Je("E",void 0,t),this):(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped?nr(Ge,this):(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(Ie),Qe=Function.prototype.bind;function Ze(t,e){return Qe.call(t,e)}var tr=function(){function t(t){this.partialObserver=t}return t.prototype.next=function(t){var e=this.partialObserver;if(e.next)try{e.next(t)}catch(t){rr(t)}},t.prototype.error=function(t){var e=this.partialObserver;if(e.error)try{e.error(t)}catch(t){rr(t)}else rr(t)},t.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(t){rr(t)}},t}(),er=function(t){function e(e,r,n){var i,s,o=t.call(this)||this;return Pe(e)||!e?i={next:null!=e?e:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:o&&Ve.useDeprecatedNextContext?((s=Object.create(e)).unsubscribe=function(){return o.unsubscribe()},i={next:e.next&&Ze(e.next,s),error:e.error&&Ze(e.error,s),complete:e.complete&&Ze(e.complete,s)}):i=e,o.destination=new tr(i),o}return je(e,t),e}(Xe);function rr(t){var e;Ve.useDeprecatedSynchronousErrorHandling?(e=t,Ve.useDeprecatedSynchronousErrorHandling&&Ke&&(Ke.errorThrown=!0,Ke.error=e)):He(t)}function nr(t,e){var r=Ve.onStoppedNotification;r&&We.setTimeout((function(){return r(t,e)}))}var ir={closed:!0,next:$e,error:function(t){throw t},complete:$e},sr="function"==typeof Symbol&&Symbol.observable||"@@observable";function or(t){return t}var ar=function(){function t(t){t&&(this._subscribe=t)}return t.prototype.lift=function(e){var r=new t;return r.source=this,r.operator=e,r},t.prototype.subscribe=function(t,e,r){var n=this,i=function(t){return t&&t instanceof Xe||function(t){return t&&Pe(t.next)&&Pe(t.error)&&Pe(t.complete)}(t)&&Me(t)}(t)?t:new er(t,e,r);return Ye((function(){var t=n,e=t.operator,r=t.source;i.add(e?e.call(i,r):r?n._subscribe(i):n._trySubscribe(i))})),i},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){t.error(e)}},t.prototype.forEach=function(t,e){var r=this;return new(e=cr(e))((function(e,n){var i=new er({next:function(e){try{t(e)}catch(t){n(t),i.unsubscribe()}},error:n,complete:e});r.subscribe(i)}))},t.prototype._subscribe=function(t){var e;return null===(e=this.source)||void 0===e?void 0:e.subscribe(t)},t.prototype[sr]=function(){return this},t.prototype.pipe=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return(0===(r=t).length?or:1===r.length?r[0]:function(t){return r.reduce((function(t,e){return e(t)}),t)})(this);var r},t.prototype.toPromise=function(t){var e=this;return new(t=cr(t))((function(t,r){var n;e.subscribe((function(t){return n=t}),(function(t){return r(t)}),(function(){return t(n)}))}))},t.create=function(e){return new t(e)},t}();function cr(t){var e;return null!==(e=null!=t?t:Ve.Promise)&&void 0!==e?e:Promise}var ur=Fe((function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),hr=function(t){function e(){var e=t.call(this)||this;return e.closed=!1,e.currentObservers=null,e.observers=[],e.isStopped=!1,e.hasError=!1,e.thrownError=null,e}return je(e,t),e.prototype.lift=function(t){var e=new lr(this,this);return e.operator=t,e},e.prototype._throwIfClosed=function(){if(this.closed)throw new ur},e.prototype.next=function(t){var e=this;Ye((function(){var r,n;if(e._throwIfClosed(),!e.isStopped){e.currentObservers||(e.currentObservers=Array.from(e.observers));try{for(var i=Ce(e.currentObservers),s=i.next();!s.done;s=i.next())s.value.next(t)}catch(t){r={error:t}}finally{try{s&&!s.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}}}))},e.prototype.error=function(t){var e=this;Ye((function(){if(e._throwIfClosed(),!e.isStopped){e.hasError=e.isStopped=!0,e.thrownError=t;for(var r=e.observers;r.length;)r.shift().error(t)}}))},e.prototype.complete=function(){var t=this;Ye((function(){if(t._throwIfClosed(),!t.isStopped){t.isStopped=!0;for(var e=t.observers;e.length;)e.shift().complete()}}))},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var t;return(null===(t=this.observers)||void 0===t?void 0:t.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(e){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,e)},e.prototype._subscribe=function(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)},e.prototype._innerSubscribe=function(t){var e=this,r=this,n=r.hasError,i=r.isStopped,s=r.observers;return n||i?Ue:(this.currentObservers=null,s.push(t),new Ie((function(){e.currentObservers=null,Ne(s,t)})))},e.prototype._checkFinalizedStatuses=function(t){var e=this,r=e.hasError,n=e.thrownError,i=e.isStopped;r?t.error(n):i&&t.complete()},e.prototype.asObservable=function(){var t=new ar;return t.source=this,t},e.create=function(t,e){return new lr(t,e)},e}(ar),lr=function(t){function e(e,r){var n=t.call(this)||this;return n.destination=e,n.source=r,n}return je(e,t),e.prototype.next=function(t){var e,r;null===(r=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===r||r.call(e,t)},e.prototype.error=function(t){var e,r;null===(r=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===r||r.call(e,t)},e.prototype.complete=function(){var t,e;null===(e=null===(t=this.destination)||void 0===t?void 0:t.complete)||void 0===e||e.call(t)},e.prototype._subscribe=function(t){var e,r;return null!==(r=null===(e=this.source)||void 0===e?void 0:e.subscribe(t))&&void 0!==r?r:Ue},e}(hr),fr=function(t){function e(e){var r=t.call(this)||this;return r._value=e,r}return je(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),e.prototype._subscribe=function(e){var r=t.prototype._subscribe.call(this,e);return!r.closed&&e.next(this._value),r},e.prototype.getValue=function(){var t=this,e=t.hasError,r=t.thrownError,n=t._value;if(e)throw r;return this._throwIfClosed(),n},e.prototype.next=function(e){t.prototype.next.call(this,this._value=e)},e}(hr),dr={now:function(){return(dr.delegate||Date).now()},delegate:void 0},pr=function(t){function e(e,r,n){void 0===e&&(e=1/0),void 0===r&&(r=1/0),void 0===n&&(n=dr);var i=t.call(this)||this;return i._bufferSize=e,i._windowTime=r,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=r===1/0,i._bufferSize=Math.max(1,e),i._windowTime=Math.max(1,r),i}return je(e,t),e.prototype.next=function(e){var r=this,n=r.isStopped,i=r._buffer,s=r._infiniteTimeWindow,o=r._timestampProvider,a=r._windowTime;n||(i.push(e),!s&&i.push(o.now()+a)),this._trimBuffer(),t.prototype.next.call(this,e)},e.prototype._subscribe=function(t){this._throwIfClosed(),this._trimBuffer();for(var e=this._innerSubscribe(t),r=this._infiniteTimeWindow,n=this._buffer.slice(),i=0;i<n.length&&!t.closed;i+=r?1:2)t.next(n[i]);return this._checkFinalizedStatuses(t),e},e.prototype._trimBuffer=function(){var t=this,e=t._bufferSize,r=t._timestampProvider,n=t._buffer,i=t._infiniteTimeWindow,s=(i?1:2)*e;if(e<1/0&&s<n.length&&n.splice(0,n.length-s),!i){for(var o=r.now(),a=0,c=1;c<n.length&&n[c]<=o;c+=2)a=c;a&&n.splice(0,a+1)}},e}(hr);function yr(t){return function(e){if(function(t){return Pe(null==t?void 0:t.lift)}(e))return e.lift((function(e){try{return t(e,this)}catch(t){this.error(t)}}));throw new TypeError("Unable to lift unknown Observable type")}}function br(t,e,r,n,i){return new gr(t,e,r,n,i)}var gr=function(t){function e(e,r,n,i,s,o){var a=t.call(this,e)||this;return a.onFinalize=s,a.shouldUnsubscribe=o,a._next=r?function(t){try{r(t)}catch(t){e.error(t)}}:t.prototype._next,a._error=i?function(t){try{i(t)}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._error,a._complete=n?function(){try{n()}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._complete,a}return je(e,t),e.prototype.unsubscribe=function(){var e;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;t.prototype.unsubscribe.call(this),!r&&(null===(e=this.onFinalize)||void 0===e||e.call(this))}},e}(Xe);function vr(){return yr((function(t,e){var r,n=!1;t.subscribe(br(e,(function(t){var i=r;r=t,n&&e.next([i,t]),n=!0})))}))}function mr(t,e){return yr((function(r,n){var i=0;r.subscribe(br(n,(function(r){return t.call(e,r,i++)&&n.next(r)})))}))}function wr(t,e){return yr((function(r,n){var i=0;r.subscribe(br(n,(function(r){n.next(t.call(e,r,i++))})))}))}var Sr=function(t){return t&&"number"==typeof t.length&&"function"!=typeof t},_r="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function Er(t){if(t instanceof ar)return t;if(null!=t){if(function(t){return Pe(t[sr])}(t))return i=t,new ar((function(t){var e=i[sr]();if(Pe(e.subscribe))return e.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(Sr(t))return n=t,new ar((function(t){for(var e=0;e<n.length&&!t.closed;e++)t.next(n[e]);t.complete()}));if(function(t){return Pe(null==t?void 0:t.then)}(t))return r=t,new ar((function(t){r.then((function(e){t.closed||(t.next(e),t.complete())}),(function(e){return t.error(e)})).then(null,He)}));if(function(t){return Symbol.asyncIterator&&Pe(null==t?void 0:t[Symbol.asyncIterator])}(t))return Or(t);if(function(t){return Pe(null==t?void 0:t[_r])}(t))return e=t,new ar((function(t){var r,n;try{for(var i=Ce(e),s=i.next();!s.done;s=i.next()){var o=s.value;if(t.next(o),t.closed)return}}catch(t){r={error:t}}finally{try{s&&!s.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}t.complete()}));if(function(t){return Pe(null==t?void 0:t.getReader)}(t))return Or(function(t){return function(t,e,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,i=r.apply(t,e||[]),s=[];return n={},o("next"),o("throw"),o("return"),n[Symbol.asyncIterator]=function(){return this},n;function o(t){i[t]&&(n[t]=function(e){return new Promise((function(r,n){s.push([t,e,r,n])>1||a(t,e)}))})}function a(t,e){try{(r=i[t](e)).value instanceof Be?Promise.resolve(r.value.v).then(c,u):h(s[0][2],r)}catch(t){h(s[0][3],t)}var r}function c(t){a("next",t)}function u(t){a("throw",t)}function h(t,e){t(e),s.shift(),s.length&&a(s[0][0],s[0][1])}}(this,arguments,(function(){var e,r,n;return Re(this,(function(i){switch(i.label){case 0:e=t.getReader(),i.label=1;case 1:i.trys.push([1,,9,10]),i.label=2;case 2:return[4,Be(e.read())];case 3:return r=i.sent(),n=r.value,r.done?[4,Be(void 0)]:[3,5];case 4:return[2,i.sent()];case 5:return[4,Be(n)];case 6:return[4,i.sent()];case 7:return i.sent(),[3,2];case 8:return[3,10];case 9:return e.releaseLock(),[7];case 10:return[2]}}))}))}(t))}var e,r,n,i;throw function(t){return new TypeError("You provided "+(null!==t&&"object"==typeof t?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}(t)}function Or(t){return new ar((function(e){(function(t,e){var r,n,i,s,o,a,c,u;return o=this,a=void 0,u=function(){var o,a;return Re(this,(function(c){switch(c.label){case 0:c.trys.push([0,5,6,11]),r=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,r=t[Symbol.asyncIterator];return r?r.call(t):(t=Ce(t),e={},n("next"),n("throw"),n("return"),e[Symbol.asyncIterator]=function(){return this},e);function n(r){e[r]=t[r]&&function(e){return new Promise((function(n,i){!function(t,e,r,n){Promise.resolve(n).then((function(e){t({value:e,done:r})}),e)}(n,i,(e=t[r](e)).done,e.value)}))}}}(t),c.label=1;case 1:return[4,r.next()];case 2:if((n=c.sent()).done)return[3,4];if(o=n.value,e.next(o),e.closed)return[2];c.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=c.sent(),i={error:a},[3,11];case 6:return c.trys.push([6,,9,10]),n&&!n.done&&(s=r.return)?[4,s.call(r)]:[3,8];case 7:c.sent(),c.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}}))},new((c=void 0)||(c=Promise))((function(t,e){function r(t){try{i(u.next(t))}catch(t){e(t)}}function n(t){try{i(u.throw(t))}catch(t){e(t)}}function i(e){e.done?t(e.value):function(t){return t instanceof c?t:new c((function(e){e(t)}))}(e.value).then(r,n)}i((u=u.apply(o,a||[])).next())}))})(t,e).catch((function(t){return e.error(t)}))}))}function kr(t){void 0===t&&(t={});var e=t.connector,r=void 0===e?function(){return new hr}:e,n=t.resetOnError,i=void 0===n||n,s=t.resetOnComplete,o=void 0===s||s,a=t.resetOnRefCountZero,c=void 0===a||a;return function(t){var e,n,s,a=0,u=!1,h=!1,l=function(){null==n||n.unsubscribe(),n=void 0},f=function(){l(),e=s=void 0,u=h=!1},d=function(){var t=e;f(),null==t||t.unsubscribe()};return yr((function(t,p){a++,h||u||l();var y=s=null!=s?s:r();p.add((function(){0!=--a||h||u||(n=xr(d,c))})),y.subscribe(p),!e&&a>0&&(e=new er({next:function(t){return y.next(t)},error:function(t){h=!0,l(),n=xr(f,i,t),y.error(t)},complete:function(){u=!0,l(),n=xr(f,o),y.complete()}}),Er(t).subscribe(e))}))(t)}}function xr(t,e){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];if(!0!==e){if(!1!==e){var i=new er({next:function(){i.unsubscribe(),t()}});return Er(e.apply(void 0,De([],Le(r)))).subscribe(i)}}else t()}function Tr(t,e){return t===e}class Ar{subscriptions=[];additionalSubscriptions=[];addSubscriptions(...t){this.subscriptions.push(...t)}addAdditionalSubscriptions(...t){this.additionalSubscriptions.push(...t)}unsubscribe(){this.subscriptions.forEach((t=>t.unsubscribe()))}unsubscribeAdditional(){this.additionalSubscriptions.forEach((t=>t.unsubscribe()))}}class jr extends Ar{logger;snapshotCache=new Te({max:100,ttl:3e5});cameraSubject;cameraState=new fr(!1);lightState=new fr({state:!1,timestamp:"0"});motionState=new fr({state:!1,timestamp:"0",detections:[]});audioState=new fr({state:!1,timestamp:"0"});objectState=new fr({timestamp:"0",detections:[]});doorbellState=new fr({state:!1,timestamp:"0"});sirenState=new fr({state:!1,timestamp:"0"});batteryState=new fr({level:100,timestamp:"0"});onConnected=this.createStateObservable(this.cameraState);onLightSwitched=this.createStateObservable(this.lightState);onMotionDetected=this.createStateObservable(this.motionState);onAudioDetected=this.createStateObservable(this.audioState);onObjectDetected=this.createStateObservable(this.objectState);onDoorbellPressed=this.createStateObservable(this.doorbellState);onSirenDetected=this.createStateObservable(this.sirenState);onBatteryChanged=this.createStateObservable(this.batteryState);get id(){return this.cameraSubject.getValue()._id}get nativeId(){return this.cameraSubject.getValue().nativeId}get pluginId(){return this.cameraSubject.getValue().pluginId}get state(){return this.cameraState.getValue()}get disabled(){return this.cameraSubject.getValue().disabled}get name(){return this.cameraSubject.getValue().name}get type(){return this.cameraSubject.getValue().type}get info(){return pe()(this.cameraSubject.getValue().info)}get isCloud(){return this.cameraSubject.getValue().isCloud}get hasLight(){return this.cameraSubject.getValue().hasLight}get hasSiren(){return this.cameraSubject.getValue().hasSiren}get hasBinarySensor(){return this.cameraSubject.getValue().hasBinarySensor}get hasBattery(){return this.cameraSubject.getValue().hasBattery}get hasMotionDetector(){return this.cameraSubject.getValue().hasMotionDetector}get hasAudioDetector(){return this.cameraSubject.getValue().hasAudioDetector}get hasObjectDetector(){return this.cameraSubject.getValue().hasObjectDetector}get hasPtz(){return this.cameraSubject.getValue().hasPtz}get hasPrebuffer(){return this.cameraSubject.getValue().hasPrebuffer}get hasIntercom(){return this.cameraSubject.getValue().hasIntercom}get motionZones(){return pe()(this.cameraSubject.getValue().motionZones)}get objectZones(){return pe()(this.cameraSubject.getValue().objectZones)}get sources(){return pe()(this.cameraSubject.getValue().sources).map((t=>({...t,isPrebuffering:async()=>!1,getPrebufferRawUrl:async()=>{},getStreamInfo:async()=>{}})))}get streamSource(){return this.sources.find((t=>t.roles.includes("stream")))||this.sources[0]}get snapshotSource(){return this.sources.find((t=>t.roles.includes("snapshot")))||this.streamSource}get recordingSource(){return this.sources.find((t=>t.roles.includes("record")))||this.streamSource}get detectionSource(){return this.sources.find((t=>t.roles.includes("detect")))||this.streamSource}constructor(t,e){super(),this.logger=e,this.cameraSubject=new fr(t),"native"===t.pluginId&&this.cameraState.next(!0)}getValue(t){switch(t){case"light":return pe()(this.lightState.getValue());case"motion":return pe()(this.motionState.getValue());case"audio":return pe()(this.audioState.getValue());case"object":return pe()(this.objectState.getValue());case"doorbell":return pe()(this.doorbellState.getValue());case"siren":return pe()(this.sirenState.getValue());case"battery":return pe()(this.batteryState.getValue());default:throw new Error(`Unknown state: ${t}`)}}async updateState(t,e){switch(t){case"light":this.hasLight&&this.lightState.next(this.getLightState(e));break;case"motion":this.hasMotionDetector&&this.motionState.next(this.getMotionState(e));break;case"audio":this.hasAudioDetector&&this.audioState.next(this.getAudioState(e));break;case"object":this.hasObjectDetector&&this.objectState.next(this.getObjectState(e));break;case"doorbell":this.hasBinarySensor&&this.doorbellState.next(this.getDoorbellState(e));break;case"siren":this.hasSiren&&this.sirenState.next(this.getSirenState(e));break;case"battery":this.hasBattery&&this.batteryState.next(this.getBatteryState(e));break;default:throw new Error(`Unknown state: ${t}`)}}onStateChange(t){return this[`${t}State`].pipe(vr(),mr((([t,e])=>"boolean"==typeof t||"boolean"==typeof e?t!==e:!1===this.stateChanged(t,e))),wr((([t,e])=>({oldState:t,newState:e}))),kr({connector:()=>new pr(1)}))}onPropertyChange(t){return this.cameraSubject.pipe(vr(),mr((([e,r])=>!be()(e[t],r[t]))),wr((([e,r])=>({oldData:e[t],newData:r[t]}))),kr({connector:()=>new pr(1)}))}removeAllListeners(){this.lightState.complete(),this.motionState.complete(),this.audioState.complete(),this.objectState.complete(),this.doorbellState.complete(),this.sirenState.complete(),this.batteryState.complete(),this.cameraSubject.complete(),this.cameraState.complete()}getAudioState(t){const e=this.getValue("audio");let r;if(delete e.lastEvent,this.isStateEvent(t))r=t;else{const n={...t,timestamp:Date.now().toString()};r={...n,db:t.db||e.db,lastEvent:e.state?e:n.state?n:void 0}}return r}getMotionState(t){const e=this.getValue("motion");let r;if(delete e.lastEvent,this.isStateEvent(t))r=t;else{const n={...t,timestamp:Date.now().toString()};r={...n,lastEvent:e.state?e:n.state?n:void 0}}return r}getObjectState(t){const e=this.getValue("object");let r;if(delete e.lastEvent,this.isStateEvent(t))r=t;else{const n={...t,timestamp:Date.now().toString()};r={...n,lastEvent:e.detections.length?e:n.detections.length?n:void 0}}return r}getDoorbellState(t){const e=this.getValue("doorbell");let r;if(delete e.lastEvent,this.isStateEvent(t))r=t;else{const n={...t,timestamp:Date.now().toString()};r={...n,lastEvent:e.state?e:n.state?n:void 0}}return r}getLightState(t){const e=this.getValue("light");let r;if(delete e.lastEvent,this.isStateEvent(t))r=t;else{const n={...t,timestamp:Date.now().toString()};r={...n,lastEvent:e.state?e:n.state?n:void 0}}return r}getSirenState(t){const e=this.getValue("siren");let r;if(delete e.lastEvent,this.isStateEvent(t))r=t;else{const n={...t,timestamp:Date.now().toString()};r={...n,lastEvent:e.state?e:n.state?n:void 0}}return r}getBatteryState(t){const e=this.getValue("battery"),r=this.stateChanged(e,t);let n;if(delete e.lastEvent,this.isStateEvent(t))n=t;else{const i={...t,timestamp:Date.now().toString()};n={...i,charging:t.charging||e.charging,lowBattery:t.lowBattery||e.lowBattery,lastEvent:r?e:i}}return n}createStateObservable(t){return t.pipe((void 0===r&&(r=or),e=null!=(e=(t,e)=>"boolean"==typeof t||"boolean"==typeof e?t===e:!1===this.stateChanged(t,e))?e:Tr,yr((function(t,n){var i,s=!0;t.subscribe(br(n,(function(t){var o=r(t);!s&&e(i,o)||(s=!1,i=o,n.next(t))})))}))),kr({connector:()=>new pr(1)}));var e,r}updateCamera(t){this.cameraSubject.next(t)}updateCameraState(t){this.cameraState.next(t)}stateChanged(t,e){return!(!t||!e||("boolean"==typeof t||"boolean"==typeof e?t===e:this.isAudioState(t)&&this.isAudioState(e)?t.state===e.state&&t.db===e.db:this.isMotionState(t)&&this.isMotionState(e)?t.state===e.state&&be()(t.detections,e.detections):this.isObjectState(t)&&this.isObjectState(e)?be()(t.detections,e.detections):this.isSirenState(t)&&this.isSirenState(e)?t.state===e.state&&t.level===e.level:this.isBatteryState(t)&&this.isBatteryState(e)?t.level===e.level&&t.lowBattery===e.lowBattery&&t.charging===e.charging:t.state===e.state))}isAudioState(t){return"state"in t&&"db"in t}isMotionState(t){return"state"in t&&"detections"in t}isObjectState(t){return"detections"in t}isSirenState(t){return"state"in t&&"level"in t}isBatteryState(t){return!("state"in t)&&"level"in t&&("lowBattery"in t||"charging"in t)}isGenericState(t){return"state"in t}isStateEvent(t){return"timestamp"in t}}var Rr=function(t,e){return Rr=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},Rr(t,e)};function Cr(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}Rr(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)}function Lr(t,e){var r,n,i,s,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&a[0]?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(6===a[0]&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=e.call(t,o)}catch(t){a=[6,t],n=0}finally{r=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function Dr(t){var e="function"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function Br(t,e){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,i,s=r.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(n=s.next()).done;)o.push(n.value)}catch(t){i={error:t}}finally{try{n&&!n.done&&(r=s.return)&&r.call(s)}finally{if(i)throw i.error}}return o}function Pr(t,e,r){if(r||2===arguments.length)for(var n,i=0,s=e.length;i<s;i++)!n&&i in e||(n||(n=Array.prototype.slice.call(e,0,i)),n[i]=e[i]);return t.concat(n||Array.prototype.slice.call(e))}function Fr(t){return this instanceof Fr?(this.v=t,this):new Fr(t)}function zr(t){return"function"==typeof t}function Nr(t){var e=t((function(t){Error.call(t),t.stack=(new Error).stack}));return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}Object.create,Object.create,"function"==typeof SuppressedError&&SuppressedError;var Ir=Nr((function(t){return function(e){t(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map((function(t,e){return e+1+") "+t.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=e}}));function Ur(t,e){if(t){var r=t.indexOf(e);0<=r&&t.splice(r,1)}}var Mr=function(){function t(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var t,e,r,n,i;if(!this.closed){this.closed=!0;var s=this._parentage;if(s)if(this._parentage=null,Array.isArray(s))try{for(var o=Dr(s),a=o.next();!a.done;a=o.next())a.value.remove(this)}catch(e){t={error:e}}finally{try{a&&!a.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}else s.remove(this);var c=this.initialTeardown;if(zr(c))try{c()}catch(t){i=t instanceof Ir?t.errors:[t]}var u=this._finalizers;if(u){this._finalizers=null;try{for(var h=Dr(u),l=h.next();!l.done;l=h.next()){var f=l.value;try{Wr(f)}catch(t){i=null!=i?i:[],t instanceof Ir?i=Pr(Pr([],Br(i)),Br(t.errors)):i.push(t)}}}catch(t){r={error:t}}finally{try{l&&!l.done&&(n=h.return)&&n.call(h)}finally{if(r)throw r.error}}}if(i)throw new Ir(i)}},t.prototype.add=function(e){var r;if(e&&e!==this)if(this.closed)Wr(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=null!==(r=this._finalizers)&&void 0!==r?r:[]).push(e)}},t.prototype._hasParent=function(t){var e=this._parentage;return e===t||Array.isArray(e)&&e.includes(t)},t.prototype._addParent=function(t){var e=this._parentage;this._parentage=Array.isArray(e)?(e.push(t),e):e?[e,t]:t},t.prototype._removeParent=function(t){var e=this._parentage;e===t?this._parentage=null:Array.isArray(e)&&Ur(e,t)},t.prototype.remove=function(e){var r=this._finalizers;r&&Ur(r,e),e instanceof t&&e._removeParent(this)},t.EMPTY=function(){var e=new t;return e.closed=!0,e}(),t}(),qr=Mr.EMPTY;function Vr(t){return t instanceof Mr||t&&"closed"in t&&zr(t.remove)&&zr(t.add)&&zr(t.unsubscribe)}function Wr(t){zr(t)?t():t.unsubscribe()}var Hr={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},$r={setTimeout:function(t,e){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=$r.delegate;return(null==i?void 0:i.setTimeout)?i.setTimeout.apply(i,Pr([t,e],Br(r))):setTimeout.apply(void 0,Pr([t,e],Br(r)))},clearTimeout:function(t){var e=$r.delegate;return((null==e?void 0:e.clearTimeout)||clearTimeout)(t)},delegate:void 0};function Gr(t){$r.setTimeout((function(){var e=Hr.onUnhandledError;if(!e)throw t;e(t)}))}function Jr(){}var Kr=Yr("C",void 0,void 0);function Yr(t,e,r){return{kind:t,value:e,error:r}}var Xr=null;function Qr(t){if(Hr.useDeprecatedSynchronousErrorHandling){var e=!Xr;if(e&&(Xr={errorThrown:!1,error:null}),t(),e){var r=Xr,n=r.errorThrown,i=r.error;if(Xr=null,n)throw i}}else t()}var Zr=function(t){function e(e){var r=t.call(this)||this;return r.isStopped=!1,e?(r.destination=e,Vr(e)&&e.add(r)):r.destination=an,r}return Cr(e,t),e.create=function(t,e,r){return new nn(t,e,r)},e.prototype.next=function(t){this.isStopped?on(function(t){return Yr("N",t,void 0)}(t),this):this._next(t)},e.prototype.error=function(t){this.isStopped?on(Yr("E",void 0,t),this):(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped?on(Kr,this):(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(Mr),tn=Function.prototype.bind;function en(t,e){return tn.call(t,e)}var rn=function(){function t(t){this.partialObserver=t}return t.prototype.next=function(t){var e=this.partialObserver;if(e.next)try{e.next(t)}catch(t){sn(t)}},t.prototype.error=function(t){var e=this.partialObserver;if(e.error)try{e.error(t)}catch(t){sn(t)}else sn(t)},t.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(t){sn(t)}},t}(),nn=function(t){function e(e,r,n){var i,s,o=t.call(this)||this;return zr(e)||!e?i={next:null!=e?e:void 0,error:null!=r?r:void 0,complete:null!=n?n:void 0}:o&&Hr.useDeprecatedNextContext?((s=Object.create(e)).unsubscribe=function(){return o.unsubscribe()},i={next:e.next&&en(e.next,s),error:e.error&&en(e.error,s),complete:e.complete&&en(e.complete,s)}):i=e,o.destination=new rn(i),o}return Cr(e,t),e}(Zr);function sn(t){var e;Hr.useDeprecatedSynchronousErrorHandling?(e=t,Hr.useDeprecatedSynchronousErrorHandling&&Xr&&(Xr.errorThrown=!0,Xr.error=e)):Gr(t)}function on(t,e){var r=Hr.onStoppedNotification;r&&$r.setTimeout((function(){return r(t,e)}))}var an={closed:!0,next:Jr,error:function(t){throw t},complete:Jr},cn="function"==typeof Symbol&&Symbol.observable||"@@observable";function un(t){return t}var hn=function(){function t(t){t&&(this._subscribe=t)}return t.prototype.lift=function(e){var r=new t;return r.source=this,r.operator=e,r},t.prototype.subscribe=function(t,e,r){var n=this,i=function(t){return t&&t instanceof Zr||function(t){return t&&zr(t.next)&&zr(t.error)&&zr(t.complete)}(t)&&Vr(t)}(t)?t:new nn(t,e,r);return Qr((function(){var t=n,e=t.operator,r=t.source;i.add(e?e.call(i,r):r?n._subscribe(i):n._trySubscribe(i))})),i},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){t.error(e)}},t.prototype.forEach=function(t,e){var r=this;return new(e=ln(e))((function(e,n){var i=new nn({next:function(e){try{t(e)}catch(t){n(t),i.unsubscribe()}},error:n,complete:e});r.subscribe(i)}))},t.prototype._subscribe=function(t){var e;return null===(e=this.source)||void 0===e?void 0:e.subscribe(t)},t.prototype[cn]=function(){return this},t.prototype.pipe=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return(0===(r=t).length?un:1===r.length?r[0]:function(t){return r.reduce((function(t,e){return e(t)}),t)})(this);var r},t.prototype.toPromise=function(t){var e=this;return new(t=ln(t))((function(t,r){var n;e.subscribe((function(t){return n=t}),(function(t){return r(t)}),(function(){return t(n)}))}))},t.create=function(e){return new t(e)},t}();function ln(t){var e;return null!==(e=null!=t?t:Hr.Promise)&&void 0!==e?e:Promise}var fn=Nr((function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),dn=function(t){function e(){var e=t.call(this)||this;return e.closed=!1,e.currentObservers=null,e.observers=[],e.isStopped=!1,e.hasError=!1,e.thrownError=null,e}return Cr(e,t),e.prototype.lift=function(t){var e=new pn(this,this);return e.operator=t,e},e.prototype._throwIfClosed=function(){if(this.closed)throw new fn},e.prototype.next=function(t){var e=this;Qr((function(){var r,n;if(e._throwIfClosed(),!e.isStopped){e.currentObservers||(e.currentObservers=Array.from(e.observers));try{for(var i=Dr(e.currentObservers),s=i.next();!s.done;s=i.next())s.value.next(t)}catch(t){r={error:t}}finally{try{s&&!s.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}}}))},e.prototype.error=function(t){var e=this;Qr((function(){if(e._throwIfClosed(),!e.isStopped){e.hasError=e.isStopped=!0,e.thrownError=t;for(var r=e.observers;r.length;)r.shift().error(t)}}))},e.prototype.complete=function(){var t=this;Qr((function(){if(t._throwIfClosed(),!t.isStopped){t.isStopped=!0;for(var e=t.observers;e.length;)e.shift().complete()}}))},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var t;return(null===(t=this.observers)||void 0===t?void 0:t.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(e){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,e)},e.prototype._subscribe=function(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)},e.prototype._innerSubscribe=function(t){var e=this,r=this,n=r.hasError,i=r.isStopped,s=r.observers;return n||i?qr:(this.currentObservers=null,s.push(t),new Mr((function(){e.currentObservers=null,Ur(s,t)})))},e.prototype._checkFinalizedStatuses=function(t){var e=this,r=e.hasError,n=e.thrownError,i=e.isStopped;r?t.error(n):i&&t.complete()},e.prototype.asObservable=function(){var t=new hn;return t.source=this,t},e.create=function(t,e){return new pn(t,e)},e}(hn),pn=function(t){function e(e,r){var n=t.call(this)||this;return n.destination=e,n.source=r,n}return Cr(e,t),e.prototype.next=function(t){var e,r;null===(r=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===r||r.call(e,t)},e.prototype.error=function(t){var e,r;null===(r=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===r||r.call(e,t)},e.prototype.complete=function(){var t,e;null===(e=null===(t=this.destination)||void 0===t?void 0:t.complete)||void 0===e||e.call(t)},e.prototype._subscribe=function(t){var e,r;return null!==(r=null===(e=this.source)||void 0===e?void 0:e.subscribe(t))&&void 0!==r?r:qr},e}(dn),yn={now:function(){return(yn.delegate||Date).now()},delegate:void 0},bn=function(t){function e(e,r,n){void 0===e&&(e=1/0),void 0===r&&(r=1/0),void 0===n&&(n=yn);var i=t.call(this)||this;return i._bufferSize=e,i._windowTime=r,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=r===1/0,i._bufferSize=Math.max(1,e),i._windowTime=Math.max(1,r),i}return Cr(e,t),e.prototype.next=function(e){var r=this,n=r.isStopped,i=r._buffer,s=r._infiniteTimeWindow,o=r._timestampProvider,a=r._windowTime;n||(i.push(e),!s&&i.push(o.now()+a)),this._trimBuffer(),t.prototype.next.call(this,e)},e.prototype._subscribe=function(t){this._throwIfClosed(),this._trimBuffer();for(var e=this._innerSubscribe(t),r=this._infiniteTimeWindow,n=this._buffer.slice(),i=0;i<n.length&&!t.closed;i+=r?1:2)t.next(n[i]);return this._checkFinalizedStatuses(t),e},e.prototype._trimBuffer=function(){var t=this,e=t._bufferSize,r=t._timestampProvider,n=t._buffer,i=t._infiniteTimeWindow,s=(i?1:2)*e;if(e<1/0&&s<n.length&&n.splice(0,n.length-s),!i){for(var o=r.now(),a=0,c=1;c<n.length&&n[c]<=o;c+=2)a=c;a&&n.splice(0,a+1)}},e}(dn),gn=function(t){function e(e){var r=t.call(this)||this;return r._value=e,r}return Cr(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),e.prototype._subscribe=function(e){var r=t.prototype._subscribe.call(this,e);return!r.closed&&e.next(this._value),r},e.prototype.getValue=function(){var t=this,e=t.hasError,r=t.thrownError,n=t._value;if(e)throw r;return this._throwIfClosed(),n},e.prototype.next=function(e){t.prototype.next.call(this,this._value=e)},e}(dn),vn=Nr((function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}}));function mn(t){return function(e){if(function(t){return zr(null==t?void 0:t.lift)}(e))return e.lift((function(e){try{return t(e,this)}catch(t){this.error(t)}}));throw new TypeError("Unable to lift unknown Observable type")}}var wn=Array.isArray;function Sn(t,e,r,n,i){return new _n(t,e,r,n,i)}var _n=function(t){function e(e,r,n,i,s,o){var a=t.call(this,e)||this;return a.onFinalize=s,a.shouldUnsubscribe=o,a._next=r?function(t){try{r(t)}catch(t){e.error(t)}}:t.prototype._next,a._error=i?function(t){try{i(t)}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._error,a._complete=n?function(){try{n()}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._complete,a}return Cr(e,t),e.prototype.unsubscribe=function(){var e;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;t.prototype.unsubscribe.call(this),!r&&(null===(e=this.onFinalize)||void 0===e||e.call(this))}},e}(Zr);function En(t,e){return mn((function(r,n){var i=0;r.subscribe(Sn(n,(function(r){n.next(t.call(e,r,i++))})))}))}var On=function(t){return t&&"number"==typeof t.length&&"function"!=typeof t};function kn(t){return zr(null==t?void 0:t.then)}function xn(t){return zr(t[cn])}function Tn(t){return Symbol.asyncIterator&&zr(null==t?void 0:t[Symbol.asyncIterator])}function An(t){return new TypeError("You provided "+(null!==t&&"object"==typeof t?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}var jn,Rn,Cn,Ln="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function Dn(t){return zr(null==t?void 0:t[Ln])}function Bn(t){return function(t,e,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,i=r.apply(t,e||[]),s=[];return n={},o("next"),o("throw"),o("return"),n[Symbol.asyncIterator]=function(){return this},n;function o(t){i[t]&&(n[t]=function(e){return new Promise((function(r,n){s.push([t,e,r,n])>1||a(t,e)}))})}function a(t,e){try{(r=i[t](e)).value instanceof Fr?Promise.resolve(r.value.v).then(c,u):h(s[0][2],r)}catch(t){h(s[0][3],t)}var r}function c(t){a("next",t)}function u(t){a("throw",t)}function h(t,e){t(e),s.shift(),s.length&&a(s[0][0],s[0][1])}}(this,arguments,(function(){var e,r,n;return Lr(this,(function(i){switch(i.label){case 0:e=t.getReader(),i.label=1;case 1:i.trys.push([1,,9,10]),i.label=2;case 2:return[4,Fr(e.read())];case 3:return r=i.sent(),n=r.value,r.done?[4,Fr(void 0)]:[3,5];case 4:return[2,i.sent()];case 5:return[4,Fr(n)];case 6:return[4,i.sent()];case 7:return i.sent(),[3,2];case 8:return[3,10];case 9:return e.releaseLock(),[7];case 10:return[2]}}))}))}function Pn(t){return zr(null==t?void 0:t.getReader)}function Fn(t){if(t instanceof hn)return t;if(null!=t){if(xn(t))return i=t,new hn((function(t){var e=i[cn]();if(zr(e.subscribe))return e.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(On(t))return n=t,new hn((function(t){for(var e=0;e<n.length&&!t.closed;e++)t.next(n[e]);t.complete()}));if(kn(t))return r=t,new hn((function(t){r.then((function(e){t.closed||(t.next(e),t.complete())}),(function(e){return t.error(e)})).then(null,Gr)}));if(Tn(t))return zn(t);if(Dn(t))return e=t,new hn((function(t){var r,n;try{for(var i=Dr(e),s=i.next();!s.done;s=i.next()){var o=s.value;if(t.next(o),t.closed)return}}catch(t){r={error:t}}finally{try{s&&!s.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}t.complete()}));if(Pn(t))return zn(Bn(t))}var e,r,n,i;throw An(t)}function zn(t){return new hn((function(e){(function(t,e){var r,n,i,s,o,a,c,u;return o=this,a=void 0,u=function(){var o,a;return Lr(this,(function(c){switch(c.label){case 0:c.trys.push([0,5,6,11]),r=function(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,r=t[Symbol.asyncIterator];return r?r.call(t):(t=Dr(t),e={},n("next"),n("throw"),n("return"),e[Symbol.asyncIterator]=function(){return this},e);function n(r){e[r]=t[r]&&function(e){return new Promise((function(n,i){!function(t,e,r,n){Promise.resolve(n).then((function(e){t({value:e,done:r})}),e)}(n,i,(e=t[r](e)).done,e.value)}))}}}(t),c.label=1;case 1:return[4,r.next()];case 2:if((n=c.sent()).done)return[3,4];if(o=n.value,e.next(o),e.closed)return[2];c.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=c.sent(),i={error:a},[3,11];case 6:return c.trys.push([6,,9,10]),n&&!n.done&&(s=r.return)?[4,s.call(r)]:[3,8];case 7:c.sent(),c.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}}))},new((c=void 0)||(c=Promise))((function(t,e){function r(t){try{i(u.next(t))}catch(t){e(t)}}function n(t){try{i(u.throw(t))}catch(t){e(t)}}function i(e){e.done?t(e.value):function(t){return t instanceof c?t:new c((function(e){e(t)}))}(e.value).then(r,n)}i((u=u.apply(o,a||[])).next())}))})(t,e).catch((function(t){return e.error(t)}))}))}function Nn(t,e,r,n,i){void 0===n&&(n=0),void 0===i&&(i=!1);var s=e.schedule((function(){r(),i?t.add(this.schedule(null,n)):this.unsubscribe()}),n);if(t.add(s),!i)return s}function In(t,e,r){return void 0===r&&(r=1/0),zr(e)?In((function(r,n){return En((function(t,i){return e(r,t,n,i)}))(Fn(t(r,n)))}),r):("number"==typeof e&&(r=e),mn((function(e,n){return function(t,e,r,n,i,s,o,a){var c=[],u=0,h=0,l=!1,f=function(){!l||c.length||u||e.complete()},d=function(t){return u<n?p(t):c.push(t)},p=function(t){u++;var i=!1;Fn(r(t,h++)).subscribe(Sn(e,(function(t){e.next(t)}),(function(){i=!0}),void 0,(function(){if(i)try{u--;for(;c.length&&u<n;)t=void 0,t=c.shift(),p(t);f()}catch(t){e.error(t)}var t})))};return t.subscribe(Sn(e,d,(function(){l=!0,f()}))),function(){}}(e,n,t,r)})))}function Un(t){return t[t.length-1]}function Mn(t,e){return void 0===e&&(e=0),mn((function(r,n){r.subscribe(Sn(n,(function(r){return Nn(n,t,(function(){return n.next(r)}),e)}),(function(){return Nn(n,t,(function(){return n.complete()}),e)}),(function(r){return Nn(n,t,(function(){return n.error(r)}),e)})))}))}function qn(t,e){return void 0===e&&(e=0),mn((function(r,n){n.add(t.schedule((function(){return r.subscribe(n)}),e))}))}function Vn(t,e){if(!t)throw new Error("Iterable cannot be null");return new hn((function(r){Nn(r,e,(function(){var n=t[Symbol.asyncIterator]();Nn(r,e,(function(){n.next().then((function(t){t.done?r.complete():r.next(t.value)}))}),0,!0)}))}))}function Wn(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var r=function(t){return function(t){return t&&zr(t.schedule)}(Un(t))?t.pop():void 0}(t),n=function(t,e){return"number"==typeof Un(t)?t.pop():1/0}(t);return t=function(t){return 1===t.length&&wn(t[0])?t[0]:t}(t),mn((function(e,i){(function(t){return void 0===t&&(t=1/0),In(un,t)})(n)(function(t,e){return e?function(t,e){if(null!=t){if(xn(t))return function(t,e){return Fn(t).pipe(qn(e),Mn(e))}(t,e);if(On(t))return function(t,e){return new hn((function(r){var n=0;return e.schedule((function(){n===t.length?r.complete():(r.next(t[n++]),r.closed||this.schedule())}))}))}(t,e);if(kn(t))return function(t,e){return Fn(t).pipe(qn(e),Mn(e))}(t,e);if(Tn(t))return Vn(t,e);if(Dn(t))return function(t,e){return new hn((function(r){var n;return Nn(r,e,(function(){n=t[Ln](),Nn(r,e,(function(){var t,e,i;try{e=(t=n.next()).value,i=t.done}catch(t){return void r.error(t)}i?r.complete():r.next(e)}),0,!0)})),function(){return zr(null==n?void 0:n.return)&&n.return()}}))}(t,e);if(Pn(t))return function(t,e){return Vn(Bn(t),e)}(t,e)}throw An(t)}(t,e):Fn(t)}(Pr([e],Br(t)),r)).subscribe(i)}))}function Hn(t,e){return t===e}function $n(t,e){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];if(!0!==e){if(!1!==e){var i=new nn({next:function(){i.unsubscribe(),t()}});return Fn(e.apply(void 0,Pr([],Br(r)))).subscribe(i)}}else t()}!function(t){t.READY="ready",t.STARTING="starting",t.STARTED="started",t.STOPPED="stopped",t.ERROR="error",t.UNKNOWN="unknown",t.DISABLED="disabled"}(jn||(jn={})),function(t){t.START="start",t.STOP="stop"}(Rn||(Rn={})),function(t){t.READY="ready",t.RESTARTING="restarting",t.STARTING="starting",t.STARTED="started",t.STOPPED="stopped",t.ERROR="error",t.UNKNOWN="unknown"}(Cn||(Cn={}));class Gn{subscriptions=[];additionalSubscriptions=[];addSubscriptions(...t){this.subscriptions.push(...t)}addAdditionalSubscriptions(...t){this.additionalSubscriptions.push(...t)}unsubscribe(){this.subscriptions.forEach((t=>t.unsubscribe()))}unsubscribeAdditional(){this.additionalSubscriptions.forEach((t=>t.unsubscribe()))}}class Jn extends Gn{onCallAnswered=new bn(1);onCallEnded=new bn(1);onUsingOpus=new bn(1);micState=new gn(!1);hasEnded=!1;cameraDevice;connection;logger;onMicrophoneEnabled=this.createStateObservable(this.micState);get isUsingOpus(){return t=this.onUsingOpus.pipe(function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return Wn.apply(void 0,Pr([],Br(t)))}(this.connection.onError.pipe(En((t=>{throw t}))))),new Promise((function(e,r){var n=new nn({next:function(t){e(t),n.unsubscribe()},error:r,complete:function(){r(new vn)}});t.subscribe(n)}));var t}constructor(t,e,r){super(),this.cameraDevice=t,this.logger=e,this.connection=r,this.bindToConnection(r)}enableMicrophone(t){this.hasEnded||(this.connection.pc.enableMicrophone(t),this.micState.next(!0))}disableMicrophone(){this.hasEnded||(this.connection.pc.disableMicrophone(),this.micState.next(!1))}stop(){this.callEnded()}createStateObservable(t){return t.pipe((e=(t,e)=>t===e,void 0===r&&(r=un),e=null!=e?e:Hn,mn((function(t,n){var i,s=!0;t.subscribe(Sn(n,(function(t){var o=r(t);!s&&e(i,o)||(s=!1,i=o,n.next(t))})))}))),function(t){void 0===t&&(t={});var e=t.connector,r=void 0===e?function(){return new dn}:e,n=t.resetOnError,i=void 0===n||n,s=t.resetOnComplete,o=void 0===s||s,a=t.resetOnRefCountZero,c=void 0===a||a;return function(t){var e,n,s,a=0,u=!1,h=!1,l=function(){null==n||n.unsubscribe(),n=void 0},f=function(){l(),e=s=void 0,u=h=!1},d=function(){var t=e;f(),null==t||t.unsubscribe()};return mn((function(t,p){a++,h||u||l();var y=s=null!=s?s:r();p.add((function(){0!=--a||h||u||(n=$n(d,c))})),y.subscribe(p),!e&&a>0&&(e=new nn({next:function(t){return y.next(t)},error:function(t){h=!0,l(),n=$n(f,i,t),y.error(t)},complete:function(){u=!0,l(),n=$n(f,o),y.complete()}}),Fn(t).subscribe(e))}))(t)}}({connector:()=>new bn(1)}));var e,r}bindToConnection(t){this.addSubscriptions(t.onCallAnswered.subscribe((t=>{this.onUsingOpus.next(t.toLocaleLowerCase().includes(" opus/"))})),t.onCallEnded.subscribe((()=>this.callEnded())))}callEnded(){this.hasEnded||(this.hasEnded=!0,this.unsubscribe(),this.onCallEnded.next(),this.connection.stop())}}var Kn=Array.isArray;var Yn=["addListener","removeListener"],Xn=["addEventListener","removeEventListener"],Qn=["on","off"];function Zn(t,e,r,n){if(zr(r)&&(n=r,r=void 0),n)return Zn(t,e,r).pipe((i=n,En((function(t){return function(t,e){return Kn(e)?t.apply(void 0,Pr([],Br(e))):t(e)}(i,t)}))));var i,s=Br(function(t){return zr(t.addEventListener)&&zr(t.removeEventListener)}(t)?Xn.map((function(n){return function(i){return t[n](e,i,r)}})):function(t){return zr(t.addListener)&&zr(t.removeListener)}(t)?Yn.map(ti(t,e)):function(t){return zr(t.on)&&zr(t.off)}(t)?Qn.map(ti(t,e)):[],2),o=s[0],a=s[1];if(!o&&On(t))return In((function(t){return Zn(t,e,r)}))(Fn(t));if(!o)throw new TypeError("Invalid event target");return new hn((function(t){var e=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return t.next(1<e.length?e:e[0])};return o(e),function(){return a(e)}}))}function ti(t,e){return function(r){return function(n){return t[r](e,n)}}}function ei(t){const e=[];return t.forEach((t=>{t.urls.forEach((r=>{e.push({urls:r,username:t.username,credential:t.credential})}))})),e}class ri extends Gn{onIceCandidate=new dn;onConnectionState=new bn(1);videoTransceiver;audioTransceiver;cameraDevice;logger;pc;videoElement;constructor(t,e,r,n){super(),this.cameraDevice=t,this.logger=n,this.videoElement=e,this.pc=new RTCPeerConnection({iceServers:ei(r)}),this.audioTransceiver=this.pc.addTransceiver("audio",{direction:"sendrecv"}),this.videoTransceiver=this.pc.addTransceiver("video",{direction:"recvonly"}),this.pc.onconnectionstatechange=()=>{this.logger.debug(this.cameraDevice.name,"connectionStateChange:",this.pc.connectionState),this.onConnectionState.next(this.pc.connectionState)},this.pc.oniceconnectionstatechange=()=>{this.logger.debug(this.cameraDevice.name,"iceconnectionstatechange:",this.pc.iceConnectionState)},this.pc.onicegatheringstatechange=()=>{this.logger.debug(this.cameraDevice.name,"icegatheringstatechange:",this.pc.iceGatheringState)},this.pc.onicecandidate=t=>{t.candidate&&this.onIceCandidate.next(t.candidate)},this.pc.ontrack=t=>{this.logger.debug(this.cameraDevice.name,"ontrack:",t.track),e.srcObject?e.srcObject.addTrack(t.track):e.srcObject=new MediaStream([t.track])}}enableMicrophone(t){this.audioTransceiver.sender.replaceTrack(t)}disableMicrophone(){this.audioTransceiver.sender.replaceTrack(null)}async createOffer(){const t=await this.pc.createOffer();return await this.pc.setLocalDescription(t),t}async acceptAnswer(t){await this.pc.setRemoteDescription(t)}addIceCandidate(t){return this.pc.addIceCandidate(t)}close(){this.videoElement.srcObject=null,this.pc.close(),this.unsubscribe()}}class ni extends Gn{onCallAnswered=new bn(1);onCallEnded=new bn(1);onError=new bn(1);onMessage=new bn;onWsOpen;pc;ws;onOfferSent=new bn(1);hasEnded=!1;cameraDevice;logger;constructor(t,e,r,n,i){super(),this.cameraDevice=t,this.logger=i;const s=t.sources.find((t=>t.name===e));if(!s)throw new Error(`Invalid source name ${e}`);this.ws=new WebSocket(s.urls.ws.webrtc),this.pc=new ri(t,r,n,i),this.onWsOpen=Zn(this.ws,"open");const o=Zn(this.ws,"message"),a=Zn(this.ws,"error"),c=Zn(this.ws,"close");var u,h;this.addSubscriptions(o.pipe((u=t=>{const e=JSON.parse(t.data);return this.onMessage.next(e),this.handleMessage(e).catch((t=>{throw this.onError.next(t),t}))},zr(h)?In(u,h,1):In(u,1))).subscribe(),a.subscribe((t=>{this.logger.error(this.cameraDevice.name,t),this.callEnded()})),c.subscribe((()=>{this.callEnded()})),this.cameraDevice.onConnected.subscribe((t=>{t||this.callEnded()})),this.onError.subscribe((t=>{this.logger.error(this.cameraDevice.name,t),this.callEnded()})),this.onWsOpen.subscribe((()=>{this.initiateCall().catch((t=>{this.logger.error(this.cameraDevice.name,t),this.callEnded()}))})),this.pc.onConnectionState.subscribe((t=>{"failed"===t&&(this.logger.error(this.cameraDevice.name,"Stream connection failed"),this.callEnded()),"closed"===t&&(this.logger.debug(this.cameraDevice.name,"Stream connection closed"),this.callEnded())})),this.pc.onIceCandidate.subscribe((async t=>{this.sendMessage({type:"webrtc/candidate",value:t.toJSON().candidate||""})})))}stop(){this.callEnded()}async initiateCall(){const{sdp:t}=await this.pc.createOffer();this.sendMessage({type:"webrtc/offer",value:t||""}),this.onOfferSent.next()}async handleMessage(t){switch(t.type){case"webrtc/answer":const e=t.value;return await this.pc.acceptAnswer({type:"answer",sdp:e}),void this.onCallAnswered.next(e);case"webrtc/candidate":return void await this.pc.addIceCandidate({candidate:t.value,sdpMid:"0"});case"error":throw new Error(t.value);default:throw new Error(t)}}sendMessage(t){this.hasEnded||this.ws.send(JSON.stringify(t))}callEnded(){this.hasEnded||(this.hasEnded=!0,this.unsubscribe(),this.onCallEnded.next(),this.pc.close(),this.ws.close())}}class ii extends jr{socketService;socket;started=!1;get sources(){return super.sources.map((t=>({...t,isPrebuffering:async e=>this.socketService.sendRequest({name:"cameraDevice",method:"isPrebuffering",args:[{sourceName:t.name,type:e,cameraId:this.id,pluginId:"@camera.ui/client"}]},this.socket),getPrebufferRawUrl:async e=>this.socketService.sendRequest({name:"cameraDevice",method:"getPrebufferRawUrl",args:[{sourceName:t.name,type:e,pluginId:"@camera.ui/client"}]},this.socket),getStreamInfo:async()=>this.socketService.sendRequest({name:"cameraDevice",method:"getStreamInfo",args:[{sourceName:t.name,pluginId:"@camera.ui/client"}]},this.socket)})))}constructor(t,e,r){super(t,r),this.socketService=e;const{socket:n}=this.socketService.createManager();this.socket=n}start(){this.started||(this.listenToMessages(),this.socket.emit("joinRoom",this.id),this.started=!0)}stop(){this.cleanup()}connect(){return this.socketService.sendRequest({name:"cameraDevice",method:"connect",args:[{cameraId:this.id,pluginId:"@camera.ui/client"}]},this.socket)}disconnect(){return this.socketService.sendRequest({name:"cameraDevice",method:"disconnect",args:[{cameraId:this.id,pluginId:"@camera.ui/client"}]},this.socket)}reboot(){return this.socketService.sendRequest({name:"cameraDevice",method:"reboot",args:[{cameraId:this.id,pluginId:"@camera.ui/client"}]},this.socket)}getIceServers(){return this.socketService.sendRequest({name:"cameraDevice",method:"getIceServers",args:[{cameraId:this.id,pluginId:"@camera.ui/client"}]},this.socket)}async snapshot(t=!1){const e=this.snapshotSource.urls.www.jpegSnapshot,r=this.snapshotCache.get(this.snapshotSource._id);if(!t&&r)return r;const n=await fetch(e);if(!n.ok)throw new Error("Status Code: "+n.status);const i=await n.arrayBuffer();return i.byteLength>0&&this.snapshotCache.set(this.snapshotSource._id,i),i}async createSession(t,e){const r=await this.getIceServers(),n=new ni(this,t,e,r,this.logger);return new Jn(this,this.logger,n)}async updateState(t,e){let r=!1;switch(t){case"light":r=this.stateChanged(this.lightState.getValue(),this.getLightState(e))&&this.hasLight;break;case"motion":r=this.stateChanged(this.motionState.getValue(),this.getMotionState(e))&&this.hasMotionDetector;break;case"audio":r=this.stateChanged(this.audioState.getValue(),this.getAudioState(e))&&this.hasAudioDetector;break;case"object":r=this.stateChanged(this.objectState.getValue(),this.getObjectState(e))&&this.hasObjectDetector;break;case"doorbell":r=this.stateChanged(this.doorbellState.getValue(),this.getDoorbellState(e))&&this.hasBinarySensor;break;case"siren":r=this.stateChanged(this.sirenState.getValue(),this.getSirenState(e))&&this.hasSiren;break;case"battery":r=this.stateChanged(this.batteryState.getValue(),this.getBatteryState(e))&&this.hasBattery;break;default:throw new Error(`Unknown state: ${t}`)}if(r)return super.updateState(t,e),this.socketService.sendRequest({name:"cameraDevice",method:"updateState",args:[{cameraId:this.id,stateName:t,eventData:e,pluginId:"@camera.ui/client"}]},this.socket)}async refreshStates(){const t=await this.socketService.sendRequest({name:"cameraDevice",method:"refreshStates",args:[{cameraId:this.id,pluginId:"@camera.ui/client"}]},this.socket);super.updateCamera(t.camera),super.updateCameraState(t.cameraState);for(const[e,r]of Object.entries(t.states))super.updateState(e,r)}async cleanup(){this.removeAllListeners(),this.unsubscribe(),this.socket.disconnect(),this.started=!1}listenToMessages(){this.socket.on("updateState",(t=>{t.cameraId===this.id&&super.updateState(t.stateName,t.data.newEvent)})),this.socket.on("updateDevice",(t=>{if(t.cameraId===this.id)switch(t.type){case"removed":this.cleanup();break;case"updated":super.updateCamera(t.data);break;case"cameraState":super.updateCameraState(t.data)}}))}}class si{socketService;logger;constructor(t,e){this.socketService=t,this.logger=e}async getCameraById(t){const e=await this.socketService.sendRequest({name:"deviceManager",method:"getCameraById",args:[{id:t,pluginId:"@camera.ui/client"}]});if(e){const t=new ii(e,this.socketService,this.logger);return await t.refreshStates(),t}}async getCameraByName(t){const e=await this.socketService.sendRequest({name:"deviceManager",method:"getCameraByName",args:[{name:t,pluginId:"@camera.ui/client"}]});if(e){const t=new ii(e,this.socketService,this.logger);return await t.refreshStates(),t}}}class oi{socketService;logger;constructor(t,e){this.socketService=t,this.logger=e}}class ai{socketService;logger;constructor(t,e){this.socketService=t,this.logger=e}}const ci=Object.create(null);ci.open="0",ci.close="1",ci.ping="2",ci.pong="3",ci.message="4",ci.upgrade="5",ci.noop="6";const ui=Object.create(null);Object.keys(ci).forEach((t=>{ui[ci[t]]=t}));const hi={type:"error",data:"parser error"},li="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===Object.prototype.toString.call(Blob),fi="function"==typeof ArrayBuffer,di=t=>"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer instanceof ArrayBuffer,pi=({type:t,data:e},r,n)=>li&&e instanceof Blob?r?n(e):yi(e,n):fi&&(e instanceof ArrayBuffer||di(e))?r?n(e):yi(new Blob([e]),n):n(ci[t]+(e||"")),yi=(t,e)=>{const r=new FileReader;return r.onload=function(){const t=r.result.split(",")[1];e("b"+(t||""))},r.readAsDataURL(t)};function bi(t){return t instanceof Uint8Array?t:t instanceof ArrayBuffer?new Uint8Array(t):new Uint8Array(t.buffer,t.byteOffset,t.byteLength)}let gi;const vi="undefined"==typeof Uint8Array?[]:new Uint8Array(256);for(let t=0;t<64;t++)vi["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(t)]=t;const mi="function"==typeof ArrayBuffer,wi=(t,e)=>{if("string"!=typeof t)return{type:"message",data:_i(t,e)};const r=t.charAt(0);return"b"===r?{type:"message",data:Si(t.substring(1),e)}:ui[r]?t.length>1?{type:ui[r],data:t.substring(1)}:{type:ui[r]}:hi},Si=(t,e)=>{if(mi){const r=(t=>{let e,r,n,i,s,o=.75*t.length,a=t.length,c=0;"="===t[t.length-1]&&(o--,"="===t[t.length-2]&&o--);const u=new ArrayBuffer(o),h=new Uint8Array(u);for(e=0;e<a;e+=4)r=vi[t.charCodeAt(e)],n=vi[t.charCodeAt(e+1)],i=vi[t.charCodeAt(e+2)],s=vi[t.charCodeAt(e+3)],h[c++]=r<<2|n>>4,h[c++]=(15&n)<<4|i>>2,h[c++]=(3&i)<<6|63&s;return u})(t);return _i(r,e)}return{base64:!0,data:t}},_i=(t,e)=>"blob"===e?t instanceof Blob?t:new Blob([t]):t instanceof ArrayBuffer?t:t.buffer,Ei=String.fromCharCode(30);let Oi;function ki(t){return t.reduce(((t,e)=>t+e.length),0)}function xi(t,e){if(t[0].length===e)return t.shift();const r=new Uint8Array(e);let n=0;for(let i=0;i<e;i++)r[i]=t[0][n++],n===t[0].length&&(t.shift(),n=0);return t.length&&n<t[0].length&&(t[0]=t[0].slice(n)),r}function Ti(t){if(t)return function(t){for(var e in Ti.prototype)t[e]=Ti.prototype[e];return t}(t)}Ti.prototype.on=Ti.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},Ti.prototype.once=function(t,e){function r(){this.off(t,r),e.apply(this,arguments)}return r.fn=e,this.on(t,r),this},Ti.prototype.off=Ti.prototype.removeListener=Ti.prototype.removeAllListeners=Ti.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r,n=this._callbacks["$"+t];if(!n)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var i=0;i<n.length;i++)if((r=n[i])===e||r.fn===e){n.splice(i,1);break}return 0===n.length&&delete this._callbacks["$"+t],this},Ti.prototype.emit=function(t){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),r=this._callbacks["$"+t],n=1;n<arguments.length;n++)e[n-1]=arguments[n];if(r){n=0;for(var i=(r=r.slice(0)).length;n<i;++n)r[n].apply(this,e)}return this},Ti.prototype.emitReserved=Ti.prototype.emit,Ti.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},Ti.prototype.hasListeners=function(t){return!!this.listeners(t).length};const Ai="undefined"!=typeof self?self:"undefined"!=typeof window?window:Function("return this")();function ji(t,...e){return e.reduce(((e,r)=>(t.hasOwnProperty(r)&&(e[r]=t[r]),e)),{})}const Ri=Ai.setTimeout,Ci=Ai.clearTimeout;function Li(t,e){e.useNativeTimers?(t.setTimeoutFn=Ri.bind(Ai),t.clearTimeoutFn=Ci.bind(Ai)):(t.setTimeoutFn=Ai.setTimeout.bind(Ai),t.clearTimeoutFn=Ai.clearTimeout.bind(Ai))}class Di extends Error{constructor(t,e,r){super(t),this.description=e,this.context=r,this.type="TransportError"}}class Bi extends Ti{constructor(t){super(),this.writable=!1,Li(this,t),this.opts=t,this.query=t.query,this.socket=t.socket}onError(t,e,r){return super.emitReserved("error",new Di(t,e,r)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return"opening"!==this.readyState&&"open"!==this.readyState||(this.doClose(),this.onClose()),this}send(t){"open"===this.readyState&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const e=wi(t,this.socket.binaryType);this.onPacket(e)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}pause(t){}createUri(t,e={}){return t+"://"+this._hostname()+this._port()+this.opts.path+this._query(e)}_hostname(){const t=this.opts.hostname;return-1===t.indexOf(":")?t:"["+t+"]"}_port(){return this.opts.port&&(this.opts.secure&&Number(443!==this.opts.port)||!this.opts.secure&&80!==Number(this.opts.port))?":"+this.opts.port:""}_query(t){const e=function(t){let e="";for(let r in t)t.hasOwnProperty(r)&&(e.length&&(e+="&"),e+=encodeURIComponent(r)+"="+encodeURIComponent(t[r]));return e}(t);return e.length?"?"+e:""}}const Pi="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),Fi=64,zi={};let Ni,Ii=0,Ui=0;function Mi(t){let e="";do{e=Pi[t%Fi]+e,t=Math.floor(t/Fi)}while(t>0);return e}function qi(){const t=Mi(+new Date);return t!==Ni?(Ii=0,Ni=t):t+"."+Mi(Ii++)}for(;Ui<Fi;Ui++)zi[Pi[Ui]]=Ui;let Vi=!1;try{Vi="undefined"!=typeof XMLHttpRequest&&"withCredentials"in new XMLHttpRequest}catch(t){}const Wi=Vi;function Hi(t){const e=t.xdomain;try{if("undefined"!=typeof XMLHttpRequest&&(!e||Wi))return new XMLHttpRequest}catch(t){}if(!e)try{return new(Ai[["Active"].concat("Object").join("X")])("Microsoft.XMLHTTP")}catch(t){}}function $i(){}const Gi=null!=new Hi({xdomain:!1}).responseType;class Ji extends Ti{constructor(t,e){super(),Li(this,e),this.opts=e,this.method=e.method||"GET",this.uri=t,this.data=void 0!==e.data?e.data:null,this.create()}create(){var t;const e=ji(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");e.xdomain=!!this.opts.xd;const r=this.xhr=new Hi(e);try{r.open(this.method,this.uri,!0);try{if(this.opts.extraHeaders){r.setDisableHeaderCheck&&r.setDisableHeaderCheck(!0);for(let t in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(t)&&r.setRequestHeader(t,this.opts.extraHeaders[t])}}catch(t){}if("POST"===this.method)try{r.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(t){}try{r.setRequestHeader("Accept","*/*")}catch(t){}null===(t=this.opts.cookieJar)||void 0===t||t.addCookies(r),"withCredentials"in r&&(r.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(r.timeout=this.opts.requestTimeout),r.onreadystatechange=()=>{var t;3===r.readyState&&(null===(t=this.opts.cookieJar)||void 0===t||t.parseCookies(r)),4===r.readyState&&(200===r.status||1223===r.status?this.onLoad():this.setTimeoutFn((()=>{this.onError("number"==typeof r.status?r.status:0)}),0))},r.send(this.data)}catch(t){return void this.setTimeoutFn((()=>{this.onError(t)}),0)}"undefined"!=typeof document&&(this.index=Ji.requestsCount++,Ji.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(void 0!==this.xhr&&null!==this.xhr){if(this.xhr.onreadystatechange=$i,t)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete Ji.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;null!==t&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}function Ki(){for(let t in Ji.requests)Ji.requests.hasOwnProperty(t)&&Ji.requests[t].abort()}Ji.requestsCount=0,Ji.requests={},"undefined"!=typeof document&&("function"==typeof attachEvent?attachEvent("onunload",Ki):"function"==typeof addEventListener&&addEventListener("onpagehide"in Ai?"pagehide":"unload",Ki,!1));const Yi="function"==typeof Promise&&"function"==typeof Promise.resolve?t=>Promise.resolve().then(t):(t,e)=>e(t,0),Xi=Ai.WebSocket||Ai.MozWebSocket,Qi="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase(),Zi={websocket:class extends Bi{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),e=this.opts.protocols,r=Qi?{}:ji(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(r.headers=this.opts.extraHeaders);try{this.ws=Qi?new Xi(t,e,r):e?new Xi(t,e):new Xi(t)}catch(t){return this.emitReserved("error",t)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let e=0;e<t.length;e++){const r=t[e],n=e===t.length-1;pi(r,this.supportsBinary,(t=>{try{this.ws.send(t)}catch(t){}n&&Yi((()=>{this.writable=!0,this.emitReserved("drain")}),this.setTimeoutFn)}))}}doClose(){void 0!==this.ws&&(this.ws.close(),this.ws=null)}uri(){const t=this.opts.secure?"wss":"ws",e=this.query||{};return this.opts.timestampRequests&&(e[this.opts.timestampParam]=qi()),this.supportsBinary||(e.b64=1),this.createUri(t,e)}check(){return!!Xi}},webtransport:class extends Bi{get name(){return"webtransport"}doOpen(){"function"==typeof WebTransport&&(this.transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name]),this.transport.closed.then((()=>{this.onClose()})).catch((t=>{this.onError("webtransport error",t)})),this.transport.ready.then((()=>{this.transport.createBidirectionalStream().then((t=>{const e=function(t,e){Oi||(Oi=new TextDecoder);const r=[];let n=0,i=-1,s=!1;return new TransformStream({transform(o,a){for(r.push(o);;){if(0===n){if(ki(r)<1)break;const t=xi(r,1);s=!(128&~t[0]),i=127&t[0],n=i<126?3:126===i?1:2}else if(1===n){if(ki(r)<2)break;const t=xi(r,2);i=new DataView(t.buffer,t.byteOffset,t.length).getUint16(0),n=3}else if(2===n){if(ki(r)<8)break;const t=xi(r,8),e=new DataView(t.buffer,t.byteOffset,t.length),s=e.getUint32(0);if(s>Math.pow(2,21)-1){a.enqueue(hi);break}i=s*Math.pow(2,32)+e.getUint32(4),n=3}else{if(ki(r)<i)break;const t=xi(r,i);a.enqueue(wi(s?t:Oi.decode(t),e)),n=0}if(0===i||i>t){a.enqueue(hi);break}}}})}(Number.MAX_SAFE_INTEGER,this.socket.binaryType),r=t.readable.pipeThrough(e).getReader(),n=new TransformStream({transform(t,e){!function(t,e){li&&t.data instanceof Blob?t.data.arrayBuffer().then(bi).then(e):fi&&(t.data instanceof ArrayBuffer||di(t.data))?e(bi(t.data)):pi(t,!1,(t=>{gi||(gi=new TextEncoder),e(gi.encode(t))}))}(t,(r=>{const n=r.length;let i;if(n<126)i=new Uint8Array(1),new DataView(i.buffer).setUint8(0,n);else if(n<65536){i=new Uint8Array(3);const t=new DataView(i.buffer);t.setUint8(0,126),t.setUint16(1,n)}else{i=new Uint8Array(9);const t=new DataView(i.buffer);t.setUint8(0,127),t.setBigUint64(1,BigInt(n))}t.data&&"string"!=typeof t.data&&(i[0]|=128),e.enqueue(i),e.enqueue(r)}))}});n.readable.pipeTo(t.writable),this.writer=n.writable.getWriter();const i=()=>{r.read().then((({done:t,value:e})=>{t||(this.onPacket(e),i())})).catch((t=>{}))};i();const s={type:"open"};this.query.sid&&(s.data=`{"sid":"${this.query.sid}"}`),this.writer.write(s).then((()=>this.onOpen()))}))})))}write(t){this.writable=!1;for(let e=0;e<t.length;e++){const r=t[e],n=e===t.length-1;this.writer.write(r).then((()=>{n&&Yi((()=>{this.writable=!0,this.emitReserved("drain")}),this.setTimeoutFn)}))}}doClose(){var t;null===(t=this.transport)||void 0===t||t.close()}},polling:class extends Bi{constructor(t){if(super(t),this.polling=!1,"undefined"!=typeof location){const e="https:"===location.protocol;let r=location.port;r||(r=e?"443":"80"),this.xd="undefined"!=typeof location&&t.hostname!==location.hostname||r!==t.port}const e=t&&t.forceBase64;this.supportsBinary=Gi&&!e,this.opts.withCredentials&&(this.cookieJar=void 0)}get name(){return"polling"}doOpen(){this.poll()}pause(t){this.readyState="pausing";const e=()=>{this.readyState="paused",t()};if(this.polling||!this.writable){let t=0;this.polling&&(t++,this.once("pollComplete",(function(){--t||e()}))),this.writable||(t++,this.once("drain",(function(){--t||e()})))}else e()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){((t,e)=>{const r=t.split(Ei),n=[];for(let t=0;t<r.length;t++){const i=wi(r[t],e);if(n.push(i),"error"===i.type)break}return n})(t,this.socket.binaryType).forEach((t=>{if("opening"===this.readyState&&"open"===t.type&&this.onOpen(),"close"===t.type)return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(t)})),"closed"!==this.readyState&&(this.polling=!1,this.emitReserved("pollComplete"),"open"===this.readyState&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};"open"===this.readyState?t():this.once("open",t)}write(t){this.writable=!1,((t,e)=>{const r=t.length,n=new Array(r);let i=0;t.forEach(((t,s)=>{pi(t,!1,(t=>{n[s]=t,++i===r&&e(n.join(Ei))}))}))})(t,(t=>{this.doWrite(t,(()=>{this.writable=!0,this.emitReserved("drain")}))}))}uri(){const t=this.opts.secure?"https":"http",e=this.query||{};return!1!==this.opts.timestampRequests&&(e[this.opts.timestampParam]=qi()),this.supportsBinary||e.sid||(e.b64=1),this.createUri(t,e)}request(t={}){return Object.assign(t,{xd:this.xd,cookieJar:this.cookieJar},this.opts),new Ji(this.uri(),t)}doWrite(t,e){const r=this.request({method:"POST",data:t});r.on("success",e),r.on("error",((t,e)=>{this.onError("xhr post error",t,e)}))}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",((t,e)=>{this.onError("xhr poll error",t,e)})),this.pollXhr=t}}},ts=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,es=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function rs(t){if(t.length>2e3)throw"URI too long";const e=t,r=t.indexOf("["),n=t.indexOf("]");-1!=r&&-1!=n&&(t=t.substring(0,r)+t.substring(r,n).replace(/:/g,";")+t.substring(n,t.length));let i=ts.exec(t||""),s={},o=14;for(;o--;)s[es[o]]=i[o]||"";return-1!=r&&-1!=n&&(s.source=e,s.host=s.host.substring(1,s.host.length-1).replace(/;/g,":"),s.authority=s.authority.replace("[","").replace("]","").replace(/;/g,":"),s.ipv6uri=!0),s.pathNames=function(t,e){const r=e.replace(/\/{2,9}/g,"/").split("/");return"/"!=e.slice(0,1)&&0!==e.length||r.splice(0,1),"/"==e.slice(-1)&&r.splice(r.length-1,1),r}(0,s.path),s.queryKey=function(t,e){const r={};return e.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,(function(t,e,n){e&&(r[e]=n)})),r}(0,s.query),s}class ns extends Ti{constructor(t,e={}){super(),this.binaryType="arraybuffer",this.writeBuffer=[],t&&"object"==typeof t&&(e=t,t=null),t?(t=rs(t),e.hostname=t.host,e.secure="https"===t.protocol||"wss"===t.protocol,e.port=t.port,t.query&&(e.query=t.query)):e.host&&(e.hostname=rs(e.host).host),Li(this,e),this.secure=null!=e.secure?e.secure:"undefined"!=typeof location&&"https:"===location.protocol,e.hostname&&!e.port&&(e.port=this.secure?"443":"80"),this.hostname=e.hostname||("undefined"!=typeof location?location.hostname:"localhost"),this.port=e.port||("undefined"!=typeof location&&location.port?location.port:this.secure?"443":"80"),this.transports=e.transports||["polling","websocket","webtransport"],this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},e),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),"string"==typeof this.opts.query&&(this.opts.query=function(t){let e={},r=t.split("&");for(let t=0,n=r.length;t<n;t++){let n=r[t].split("=");e[decodeURIComponent(n[0])]=decodeURIComponent(n[1])}return e}(this.opts.query)),this.id=null,this.upgrades=null,this.pingInterval=null,this.pingTimeout=null,this.pingTimeoutTimer=null,"function"==typeof addEventListener&&(this.opts.closeOnBeforeunload&&(this.beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this.beforeunloadEventListener,!1)),"localhost"!==this.hostname&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const e=Object.assign({},this.opts.query);e.EIO=4,e.transport=t,this.id&&(e.sid=this.id);const r=Object.assign({},this.opts,{query:e,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[t]);return new Zi[t](r)}open(){let t;if(this.opts.rememberUpgrade&&ns.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))t="websocket";else{if(0===this.transports.length)return void this.setTimeoutFn((()=>{this.emitReserved("error","No transports available")}),0);t=this.transports[0]}this.readyState="opening";try{t=this.createTransport(t)}catch(t){return this.transports.shift(),void this.open()}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",(t=>this.onClose("transport close",t)))}probe(t){let e=this.createTransport(t),r=!1;ns.priorWebsocketSuccess=!1;const n=()=>{r||(e.send([{type:"ping",data:"probe"}]),e.once("packet",(t=>{if(!r)if("pong"===t.type&&"probe"===t.data){if(this.upgrading=!0,this.emitReserved("upgrading",e),!e)return;ns.priorWebsocketSuccess="websocket"===e.name,this.transport.pause((()=>{r||"closed"!==this.readyState&&(u(),this.setTransport(e),e.send([{type:"upgrade"}]),this.emitReserved("upgrade",e),e=null,this.upgrading=!1,this.flush())}))}else{const t=new Error("probe error");t.transport=e.name,this.emitReserved("upgradeError",t)}})))};function i(){r||(r=!0,u(),e.close(),e=null)}const s=t=>{const r=new Error("probe error: "+t);r.transport=e.name,i(),this.emitReserved("upgradeError",r)};function o(){s("transport closed")}function a(){s("socket closed")}function c(t){e&&t.name!==e.name&&i()}const u=()=>{e.removeListener("open",n),e.removeListener("error",s),e.removeListener("close",o),this.off("close",a),this.off("upgrading",c)};e.once("open",n),e.once("error",s),e.once("close",o),this.once("close",a),this.once("upgrading",c),-1!==this.upgrades.indexOf("webtransport")&&"webtransport"!==t?this.setTimeoutFn((()=>{r||e.open()}),200):e.open()}onOpen(){if(this.readyState="open",ns.priorWebsocketSuccess="websocket"===this.transport.name,this.emitReserved("open"),this.flush(),"open"===this.readyState&&this.opts.upgrade){let t=0;const e=this.upgrades.length;for(;t<e;t++)this.probe(this.upgrades[t])}}onPacket(t){if("opening"===this.readyState||"open"===this.readyState||"closing"===this.readyState)switch(this.emitReserved("packet",t),this.emitReserved("heartbeat"),this.resetPingTimeout(),t.type){case"open":this.onHandshake(JSON.parse(t.data));break;case"ping":this.sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong");break;case"error":const e=new Error("server error");e.code=t.data,this.onError(e);break;case"message":this.emitReserved("data",t.data),this.emitReserved("message",t.data)}}onHandshake(t){this.emitReserved("handshake",t),this.id=t.sid,this.transport.query.sid=t.sid,this.upgrades=this.filterUpgrades(t.upgrades),this.pingInterval=t.pingInterval,this.pingTimeout=t.pingTimeout,this.maxPayload=t.maxPayload,this.onOpen(),"closed"!==this.readyState&&this.resetPingTimeout()}resetPingTimeout(){this.clearTimeoutFn(this.pingTimeoutTimer),this.pingTimeoutTimer=this.setTimeoutFn((()=>{this.onClose("ping timeout")}),this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,0===this.writeBuffer.length?this.emitReserved("drain"):this.flush()}flush(){if("closed"!==this.readyState&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&"polling"===this.transport.name&&this.writeBuffer.length>1))return this.writeBuffer;let t=1;for(let r=0;r<this.writeBuffer.length;r++){const n=this.writeBuffer[r].data;if(n&&(t+="string"==typeof(e=n)?function(t){let e=0,r=0;for(let n=0,i=t.length;n<i;n++)e=t.charCodeAt(n),e<128?r+=1:e<2048?r+=2:e<55296||e>=57344?r+=3:(n++,r+=4);return r}(e):Math.ceil(1.33*(e.byteLength||e.size))),r>0&&t>this.maxPayload)return this.writeBuffer.slice(0,r);t+=2}var e;return this.writeBuffer}write(t,e,r){return this.sendPacket("message",t,e,r),this}send(t,e,r){return this.sendPacket("message",t,e,r),this}sendPacket(t,e,r,n){if("function"==typeof e&&(n=e,e=void 0),"function"==typeof r&&(n=r,r=null),"closing"===this.readyState||"closed"===this.readyState)return;(r=r||{}).compress=!1!==r.compress;const i={type:t,data:e,options:r};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),n&&this.once("flush",n),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},e=()=>{this.off("upgrade",e),this.off("upgradeError",e),t()},r=()=>{this.once("upgrade",e),this.once("upgradeError",e)};return"opening"!==this.readyState&&"open"!==this.readyState||(this.readyState="closing",this.writeBuffer.length?this.once("drain",(()=>{this.upgrading?r():t()})):this.upgrading?r():t()),this}onError(t){ns.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,e){"opening"!==this.readyState&&"open"!==this.readyState&&"closing"!==this.readyState||(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),"function"==typeof removeEventListener&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",t,e),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const e=[];let r=0;const n=t.length;for(;r<n;r++)~this.transports.indexOf(t[r])&&e.push(t[r]);return e}}ns.protocol=4,ns.protocol;const is="function"==typeof ArrayBuffer,ss=t=>"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):t.buffer instanceof ArrayBuffer,os=Object.prototype.toString,as="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===os.call(Blob),cs="function"==typeof File||"undefined"!=typeof File&&"[object FileConstructor]"===os.call(File);function us(t){return is&&(t instanceof ArrayBuffer||ss(t))||as&&t instanceof Blob||cs&&t instanceof File}function hs(t,e){if(!t||"object"!=typeof t)return!1;if(Array.isArray(t)){for(let e=0,r=t.length;e<r;e++)if(hs(t[e]))return!0;return!1}if(us(t))return!0;if(t.toJSON&&"function"==typeof t.toJSON&&1===arguments.length)return hs(t.toJSON(),!0);for(const e in t)if(Object.prototype.hasOwnProperty.call(t,e)&&hs(t[e]))return!0;return!1}function ls(t){const e=[],r=t.data,n=t;return n.data=fs(r,e),n.attachments=e.length,{packet:n,buffers:e}}function fs(t,e){if(!t)return t;if(us(t)){const r={_placeholder:!0,num:e.length};return e.push(t),r}if(Array.isArray(t)){const r=new Array(t.length);for(let n=0;n<t.length;n++)r[n]=fs(t[n],e);return r}if("object"==typeof t&&!(t instanceof Date)){const r={};for(const n in t)Object.prototype.hasOwnProperty.call(t,n)&&(r[n]=fs(t[n],e));return r}return t}function ds(t,e){return t.data=ps(t.data,e),delete t.attachments,t}function ps(t,e){if(!t)return t;if(t&&!0===t._placeholder){if("number"==typeof t.num&&t.num>=0&&t.num<e.length)return e[t.num];throw new Error("illegal attachments")}if(Array.isArray(t))for(let r=0;r<t.length;r++)t[r]=ps(t[r],e);else if("object"==typeof t)for(const r in t)Object.prototype.hasOwnProperty.call(t,r)&&(t[r]=ps(t[r],e));return t}const ys=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"],bs=5;var gs;!function(t){t[t.CONNECT=0]="CONNECT",t[t.DISCONNECT=1]="DISCONNECT",t[t.EVENT=2]="EVENT",t[t.ACK=3]="ACK",t[t.CONNECT_ERROR=4]="CONNECT_ERROR",t[t.BINARY_EVENT=5]="BINARY_EVENT",t[t.BINARY_ACK=6]="BINARY_ACK"}(gs||(gs={}));class vs{constructor(t){this.replacer=t}encode(t){return t.type!==gs.EVENT&&t.type!==gs.ACK||!hs(t)?[this.encodeAsString(t)]:this.encodeAsBinary({type:t.type===gs.EVENT?gs.BINARY_EVENT:gs.BINARY_ACK,nsp:t.nsp,data:t.data,id:t.id})}encodeAsString(t){let e=""+t.type;return t.type!==gs.BINARY_EVENT&&t.type!==gs.BINARY_ACK||(e+=t.attachments+"-"),t.nsp&&"/"!==t.nsp&&(e+=t.nsp+","),null!=t.id&&(e+=t.id),null!=t.data&&(e+=JSON.stringify(t.data,this.replacer)),e}encodeAsBinary(t){const e=ls(t),r=this.encodeAsString(e.packet),n=e.buffers;return n.unshift(r),n}}function ms(t){return"[object Object]"===Object.prototype.toString.call(t)}class ws extends Ti{constructor(t){super(),this.reviver=t}add(t){let e;if("string"==typeof t){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");e=this.decodeString(t);const r=e.type===gs.BINARY_EVENT;r||e.type===gs.BINARY_ACK?(e.type=r?gs.EVENT:gs.ACK,this.reconstructor=new Ss(e),0===e.attachments&&super.emitReserved("decoded",e)):super.emitReserved("decoded",e)}else{if(!us(t)&&!t.base64)throw new Error("Unknown type: "+t);if(!this.reconstructor)throw new Error("got binary data when not reconstructing a packet");e=this.reconstructor.takeBinaryData(t),e&&(this.reconstructor=null,super.emitReserved("decoded",e))}}decodeString(t){let e=0;const r={type:Number(t.charAt(0))};if(void 0===gs[r.type])throw new Error("unknown packet type "+r.type);if(r.type===gs.BINARY_EVENT||r.type===gs.BINARY_ACK){const n=e+1;for(;"-"!==t.charAt(++e)&&e!=t.length;);const i=t.substring(n,e);if(i!=Number(i)||"-"!==t.charAt(e))throw new Error("Illegal attachments");r.attachments=Number(i)}if("/"===t.charAt(e+1)){const n=e+1;for(;++e&&","!==t.charAt(e)&&e!==t.length;);r.nsp=t.substring(n,e)}else r.nsp="/";const n=t.charAt(e+1);if(""!==n&&Number(n)==n){const n=e+1;for(;++e;){const r=t.charAt(e);if(null==r||Number(r)!=r){--e;break}if(e===t.length)break}r.id=Number(t.substring(n,e+1))}if(t.charAt(++e)){const n=this.tryParse(t.substr(e));if(!ws.isPayloadValid(r.type,n))throw new Error("invalid payload");r.data=n}return r}tryParse(t){try{return JSON.parse(t,this.reviver)}catch(t){return!1}}static isPayloadValid(t,e){switch(t){case gs.CONNECT:return ms(e);case gs.DISCONNECT:return void 0===e;case gs.CONNECT_ERROR:return"string"==typeof e||ms(e);case gs.EVENT:case gs.BINARY_EVENT:return Array.isArray(e)&&("number"==typeof e[0]||"string"==typeof e[0]&&-1===ys.indexOf(e[0]));case gs.ACK:case gs.BINARY_ACK:return Array.isArray(e)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}}class Ss{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const t=ds(this.reconPack,this.buffers);return this.finishedReconstruction(),t}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}function _s(t,e,r){return t.on(e,r),function(){t.off(e,r)}}const Es=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class Os extends Ti{constructor(t,e,r){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=e,r&&r.auth&&(this.auth=r.auth),this._opts=Object.assign({},r),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[_s(t,"open",this.onopen.bind(this)),_s(t,"packet",this.onpacket.bind(this)),_s(t,"error",this.onerror.bind(this)),_s(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected||(this.subEvents(),this.io._reconnecting||this.io.open(),"open"===this.io._readyState&&this.onopen()),this}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...e){if(Es.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');if(e.unshift(t),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(e),this;const r={type:gs.EVENT,data:e,options:{}};if(r.options.compress=!1!==this.flags.compress,"function"==typeof e[e.length-1]){const t=this.ids++,n=e.pop();this._registerAckCallback(t,n),r.id=t}const n=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!n||!this.connected)||(this.connected?(this.notifyOutgoingListeners(r),this.packet(r)):this.sendBuffer.push(r)),this.flags={},this}_registerAckCallback(t,e){var r;const n=null!==(r=this.flags.timeout)&&void 0!==r?r:this._opts.ackTimeout;if(void 0===n)return void(this.acks[t]=e);const i=this.io.setTimeoutFn((()=>{delete this.acks[t];for(let e=0;e<this.sendBuffer.length;e++)this.sendBuffer[e].id===t&&this.sendBuffer.splice(e,1);e.call(this,new Error("operation has timed out"))}),n),s=(...t)=>{this.io.clearTimeoutFn(i),e.apply(this,t)};s.withError=!0,this.acks[t]=s}emitWithAck(t,...e){return new Promise(((r,n)=>{const i=(t,e)=>t?n(t):r(e);i.withError=!0,e.push(i),this.emit(t,...e)}))}_addToQueue(t){let e;"function"==typeof t[t.length-1]&&(e=t.pop());const r={id:this._queueSeq++,tryCount:0,pending:!1,args:t,flags:Object.assign({fromQueue:!0},this.flags)};t.push(((t,...n)=>{if(r===this._queue[0])return null!==t?r.tryCount>this._opts.retries&&(this._queue.shift(),e&&e(t)):(this._queue.shift(),e&&e(null,...n)),r.pending=!1,this._drainQueue()})),this._queue.push(r),this._drainQueue()}_drainQueue(t=!1){if(!this.connected||0===this._queue.length)return;const e=this._queue[0];e.pending&&!t||(e.pending=!0,e.tryCount++,this.flags=e.flags,this.emit.apply(this,e.args))}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){"function"==typeof this.auth?this.auth((t=>{this._sendConnectPacket(t)})):this._sendConnectPacket(this.auth)}_sendConnectPacket(t){this.packet({type:gs.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},t):t})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,e){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,e),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach((t=>{if(!this.sendBuffer.some((e=>String(e.id)===t))){const e=this.acks[t];delete this.acks[t],e.withError&&e.call(this,new Error("socket has been disconnected"))}}))}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case gs.CONNECT:t.data&&t.data.sid?this.onconnect(t.data.sid,t.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case gs.EVENT:case gs.BINARY_EVENT:this.onevent(t);break;case gs.ACK:case gs.BINARY_ACK:this.onack(t);break;case gs.DISCONNECT:this.ondisconnect();break;case gs.CONNECT_ERROR:this.destroy();const e=new Error(t.data.message);e.data=t.data.data,this.emitReserved("connect_error",e)}}onevent(t){const e=t.data||[];null!=t.id&&e.push(this.ack(t.id)),this.connected?this.emitEvent(e):this.receiveBuffer.push(Object.freeze(e))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const e=this._anyListeners.slice();for(const r of e)r.apply(this,t)}super.emit.apply(this,t),this._pid&&t.length&&"string"==typeof t[t.length-1]&&(this._lastOffset=t[t.length-1])}ack(t){const e=this;let r=!1;return function(...n){r||(r=!0,e.packet({type:gs.ACK,id:t,data:n}))}}onack(t){const e=this.acks[t.id];"function"==typeof e&&(delete this.acks[t.id],e.withError&&t.data.unshift(null),e.apply(this,t.data))}onconnect(t,e){this.id=t,this.recovered=e&&this._pid===e,this._pid=e,this.connected=!0,this.emitBuffered(),this.emitReserved("connect"),this._drainQueue(!0)}emitBuffered(){this.receiveBuffer.forEach((t=>this.emitEvent(t))),this.receiveBuffer=[],this.sendBuffer.forEach((t=>{this.notifyOutgoingListeners(t),this.packet(t)})),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach((t=>t())),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:gs.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const e=this._anyListeners;for(let r=0;r<e.length;r++)if(t===e[r])return e.splice(r,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(t),this}prependAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(t),this}offAnyOutgoing(t){if(!this._anyOutgoingListeners)return this;if(t){const e=this._anyOutgoingListeners;for(let r=0;r<e.length;r++)if(t===e[r])return e.splice(r,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(t){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){const e=this._anyOutgoingListeners.slice();for(const r of e)r.apply(this,t.data)}}}function ks(t){t=t||{},this.ms=t.min||100,this.max=t.max||1e4,this.factor=t.factor||2,this.jitter=t.jitter>0&&t.jitter<=1?t.jitter:0,this.attempts=0}ks.prototype.duration=function(){var t=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),r=Math.floor(e*this.jitter*t);t=1&Math.floor(10*e)?t+r:t-r}return 0|Math.min(t,this.max)},ks.prototype.reset=function(){this.attempts=0},ks.prototype.setMin=function(t){this.ms=t},ks.prototype.setMax=function(t){this.max=t},ks.prototype.setJitter=function(t){this.jitter=t};class xs extends Ti{constructor(t,r){var n;super(),this.nsps={},this.subs=[],t&&"object"==typeof t&&(r=t,t=void 0),(r=r||{}).path=r.path||"/socket.io",this.opts=r,Li(this,r),this.reconnection(!1!==r.reconnection),this.reconnectionAttempts(r.reconnectionAttempts||1/0),this.reconnectionDelay(r.reconnectionDelay||1e3),this.reconnectionDelayMax(r.reconnectionDelayMax||5e3),this.randomizationFactor(null!==(n=r.randomizationFactor)&&void 0!==n?n:.5),this.backoff=new ks({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(null==r.timeout?2e4:r.timeout),this._readyState="closed",this.uri=t;const i=r.parser||e;this.encoder=new i.Encoder,this.decoder=new i.Decoder,this._autoConnect=!1!==r.autoConnect,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return void 0===t?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var e;return void 0===t?this._reconnectionDelay:(this._reconnectionDelay=t,null===(e=this.backoff)||void 0===e||e.setMin(t),this)}randomizationFactor(t){var e;return void 0===t?this._randomizationFactor:(this._randomizationFactor=t,null===(e=this.backoff)||void 0===e||e.setJitter(t),this)}reconnectionDelayMax(t){var e;return void 0===t?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,null===(e=this.backoff)||void 0===e||e.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&0===this.backoff.attempts&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new ns(this.uri,this.opts);const e=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;const n=_s(e,"open",(function(){r.onopen(),t&&t()})),i=e=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",e),t?t(e):this.maybeReconnectOnOpen()},s=_s(e,"error",i);if(!1!==this._timeout){const t=this._timeout,r=this.setTimeoutFn((()=>{n(),i(new Error("timeout")),e.close()}),t);this.opts.autoUnref&&r.unref(),this.subs.push((()=>{this.clearTimeoutFn(r)}))}return this.subs.push(n),this.subs.push(s),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(_s(t,"ping",this.onping.bind(this)),_s(t,"data",this.ondata.bind(this)),_s(t,"error",this.onerror.bind(this)),_s(t,"close",this.onclose.bind(this)),_s(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(t){this.onclose("parse error",t)}}ondecoded(t){Yi((()=>{this.emitReserved("packet",t)}),this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,e){let r=this.nsps[t];return r?this._autoConnect&&!r.active&&r.connect():(r=new Os(this,t,e),this.nsps[t]=r),r}_destroy(t){const e=Object.keys(this.nsps);for(const t of e)if(this.nsps[t].active)return;this._close()}_packet(t){const e=this.encoder.encode(t);for(let r=0;r<e.length;r++)this.engine.write(e[r],t.options)}cleanup(){this.subs.forEach((t=>t())),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,e){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,e),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const e=this.backoff.duration();this._reconnecting=!0;const r=this.setTimeoutFn((()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),t.skipReconnect||t.open((e=>{e?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",e)):t.onreconnect()})))}),e);this.opts.autoUnref&&r.unref(),this.subs.push((()=>{this.clearTimeoutFn(r)}))}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Ts={};function As(t,e){"object"==typeof t&&(e=t,t=void 0);const r=function(t,e="",r){let n=t;r=r||"undefined"!=typeof location&&location,null==t&&(t=r.protocol+"//"+r.host),"string"==typeof t&&("/"===t.charAt(0)&&(t="/"===t.charAt(1)?r.protocol+t:r.host+t),/^(https?|wss?):\/\//.test(t)||(t=void 0!==r?r.protocol+"//"+t:"https://"+t),n=rs(t)),n.port||(/^(http|ws)$/.test(n.protocol)?n.port="80":/^(http|ws)s$/.test(n.protocol)&&(n.port="443")),n.path=n.path||"/";const i=-1!==n.host.indexOf(":")?"["+n.host+"]":n.host;return n.id=n.protocol+"://"+i+":"+n.port+e,n.href=n.protocol+"://"+i+(r&&r.port===n.port?"":":"+n.port),n}(t,(e=e||{}).path||"/socket.io"),n=r.source,i=r.id,s=r.path,o=Ts[i]&&s in Ts[i].nsps;let a;return e.forceNew||e["force new connection"]||!1===e.multiplex||o?a=new xs(n,e):(Ts[i]||(Ts[i]=new xs(n,e)),a=Ts[i]),r.query&&!e.query&&(e.query=r.queryKey),a.socket(r.path,e)}Object.assign(As,{Manager:xs,Socket:Os,io:As,connect:As});class js{manager;token;endpoint;get socket(){return this.manager.socket("/proxy",{auth:{token:`Bearer ${this.token}`}})}constructor(t,e){this.endpoint=t.replace("https://","wss://").replace("http://","ws://"),this.token=e,this.manager=new xs(this.endpoint,{reconnection:!1,rejectUnauthorized:!1,autoConnect:!0,transports:["websocket"]})}createManager(){const t=new xs(this.endpoint,{reconnection:!1,rejectUnauthorized:!1,autoConnect:!0,transports:["websocket"],forceNew:!0}),e=t.socket("/proxy",{auth:{token:`Bearer ${this.token}`}});return{manager:t,socket:e}}sendRequest(t,e){return e=e||this.socket,new Promise(((r,n)=>{e.emit("request",t,(t=>{t.success?r(t.data):n(t.error)}))}))}close(){this.socket.emit("end"),this.socket.removeAllListeners(),this.socket.disconnect()}}class Rs{api;socketService;config;logger;token;deviceManager;pluginsManager;systemManager;constructor(t){this.config=t,this.logger=t.logger||console,this.api=new fe(t.endpoint)}async connect(){return this.deviceManager&&this.pluginsManager&&this.systemManager||(this.cleanUpClient(),await this.login(),this.token=this.token||this.config.token,this.socketService=new js(this.config.endpoint,this.token),this.deviceManager=new si(this.socketService,this.logger),this.pluginsManager=new oi(this.socketService,this.logger),this.systemManager=new ai(this.socketService,this.logger),this.checkSession()),{deviceManager:this.deviceManager,pluginsManager:this.pluginsManager,systemManager:this.systemManager}}async disconnect(){this.socketService?.close(),this.cleanUpClient(),this.config.username&&this.config.password&&await this.api.interceptor.post("/auth/logout",void 0,{headers:{Authorization:`Bearer ${this.token}`}})}async updateCredentials(t){this.config={...this.config,...t},this.socketService&&await this.disconnect(),await this.connect()}async login(){if(this.config.username&&this.config.password)try{const t=await this.api.interceptor.post("/auth/login",{username:this.config.username,password:this.config.password});this.token=t.data.access_token}catch(t){throw 401===t.response?.status?new Error("Invalid credentials"):new Error(`Failed to get token: ${t.message}`)}else if(this.config.token&&!this.config.skipCheck)try{await this.api.interceptor.get("/auth/check",{headers:{Authorization:`Bearer ${this.config.token}`}})}catch(t){throw new Error(`Invalid token: ${t.message}`)}this.token=this.token||this.config.token}getDeviceManager(){return this.deviceManager}getPluginsManager(){return this.pluginsManager}getSystemManager(){return this.systemManager}checkSession(){this.socketService?.socket.removeListener("invalidToken"),this.socketService?.socket.on("invalidToken",(async t=>{t===this.token&&await this.disconnect()}))}cleanUpClient(){this.deviceManager=void 0,this.pluginsManager=void 0,this.systemManager=void 0}}})();var i=n.j;export{i as CameraUiClient};